pieforms-commit Mailing List for Pieforms
Status: Alpha
Brought to you by:
oracleshinoda
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(73) |
Dec
(83) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(16) |
Feb
(19) |
Mar
(12) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(14) |
Sep
(2) |
Oct
(1) |
Nov
(2) |
Dec
(45) |
2008 |
Jan
(20) |
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2009 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
(2) |
May
(1) |
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(7) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
|
15
|
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
From: <ora...@us...> - 2009-01-16 02:38:52
|
Revision: 301 http://pieforms.svn.sourceforge.net/pieforms/?rev=301&view=rev Author: oracleshinoda Date: 2009-01-16 02:18:28 +0000 (Fri, 16 Jan 2009) Log Message: ----------- Check for the 'value' of the password field before looking at the submitted value Modified Paths: -------------- pieforms-php5/trunk/src/pieform/elements/password.php Modified: pieforms-php5/trunk/src/pieform/elements/password.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/password.php 2009-01-13 01:24:20 UTC (rev 300) +++ pieforms-php5/trunk/src/pieform/elements/password.php 2009-01-16 02:18:28 UTC (rev 301) @@ -38,13 +38,13 @@ }/*}}}*/ function pieform_element_password_get_value(Pieform $form, $element) {/*{{{*/ + if (isset($element['value'])) { + return $element['value']; + } $global = ($form->get_property('method') == 'get') ? $_GET : $_POST; if ($form->is_submitted() && isset($global[$element['name']])) { return $global[$element['name']]; } - if (isset($element['value'])) { - return $element['value']; - } return null; }/*}}}*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ora...@us...> - 2009-01-13 01:24:26
|
Revision: 300 http://pieforms.svn.sourceforge.net/pieforms/?rev=300&view=rev Author: oracleshinoda Date: 2009-01-13 01:24:20 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Added Spanish translation, thanks to Jos?\195?\169 Mar?\195?\173a P?\195?\169rez. Modified Paths: -------------- pieforms-php5/trunk/src/pieform/elements/bytes.php pieforms-php5/trunk/src/pieform/elements/calendar.php pieforms-php5/trunk/src/pieform/elements/date.php pieforms-php5/trunk/src/pieform/elements/expiry.php pieforms-php5/trunk/src/pieform/rules/before.php pieforms-php5/trunk/src/pieform/rules/email.php pieforms-php5/trunk/src/pieform/rules/integer.php pieforms-php5/trunk/src/pieform/rules/maxlength.php pieforms-php5/trunk/src/pieform/rules/maxvalue.php pieforms-php5/trunk/src/pieform/rules/minlength.php pieforms-php5/trunk/src/pieform/rules/minvalue.php pieforms-php5/trunk/src/pieform/rules/regex.php pieforms-php5/trunk/src/pieform/rules/required.php pieforms-php5/trunk/src/pieform/rules/validateoptions.php Modified: pieforms-php5/trunk/src/pieform/elements/bytes.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/bytes.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/elements/bytes.php 2009-01-13 01:24:20 UTC (rev 300) @@ -145,6 +145,13 @@ 'megabytes' => 'MB', 'invalidvalue' => '値は数値にしてください', ), + 'es.utf8' => array( + 'bytes' => 'Bytes', + 'kilobytes' => 'Kilobytes', + 'megabytes' => 'Megabytes', + 'invalidvalue' => 'El valor debe ser un número', + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/calendar.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/calendar.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/elements/calendar.php 2009-01-13 01:24:20 UTC (rev 300) @@ -164,6 +164,10 @@ 'ja.utf8' => array( 'invalidvalue' => '無効な日付/時間が指定されました' ), + 'es.utf8' => array( + 'invalidvalue' => 'Fecha/hora indicada inválida' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/date.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/date.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/elements/date.php 2009-01-13 01:24:20 UTC (rev 300) @@ -145,6 +145,11 @@ 'or' => 'or', 'notspecified' => '指定なし' ), + 'es.utf8' => array( + 'or' => 'o', + 'notspecified' => 'Sin valor' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/expiry.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/expiry.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/elements/expiry.php 2009-01-13 01:24:20 UTC (rev 300) @@ -152,6 +152,14 @@ 'years' => '年', 'noenddate' => '終了日なし' ), + 'es.utf8' => array( + 'days' => 'Días', + 'weeks' => 'Semanas', + 'months' => 'Meses', + 'years' => 'Años', + 'noenddate' => 'Sin fecha de finalización' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/before.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/before.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/before.php 2009-01-13 01:24:20 UTC (rev 300) @@ -57,6 +57,9 @@ 'ja.utf8' => array( 'before' => 'フィールド「 %s 」の後に設定することはできません' ), + 'es.utf8' => array( + 'before' => 'No puede ser posterior al campo "%s"' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/email.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/email.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/email.php 2009-01-13 01:24:20 UTC (rev 300) @@ -56,6 +56,10 @@ 'ja.utf8' => array( 'email' => 'メールアドレスが有効ではありません' ), + 'es.utf8' => array( + 'email' => 'Dirección de correo errónea' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/integer.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/integer.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/integer.php 2009-01-13 01:24:20 UTC (rev 300) @@ -53,6 +53,10 @@ 'ja.utf8' => array( 'integer' => 'フィールドは整数にしてください' ), + 'es.utf8' => array( + 'integer' => 'Este campo debe ser un número entero' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/maxlength.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/maxlength.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/maxlength.php 2009-01-13 01:24:20 UTC (rev 300) @@ -53,6 +53,10 @@ 'ja.utf8' => array( 'maxlength' => 'このフィールドは、最大半角 %d 文字にしてください' ), + 'es.utf8' => array( + 'maxlength' => 'Este campo tiene que tener como máximo %d caracteres' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/maxvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/maxvalue.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/maxvalue.php 2009-01-13 01:24:20 UTC (rev 300) @@ -53,6 +53,10 @@ 'ja.utf8' => array( 'maxvalue' => 'この値は %d 以下にしてください' ), + 'es.utf8' => array( + 'maxvalue' => 'Este valor no puede ser superior a %d' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/minlength.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/minlength.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/minlength.php 2009-01-13 01:24:20 UTC (rev 300) @@ -50,6 +50,10 @@ 'fr.utf8' => array( 'minlength' => 'Ce champ doit contenir au moins %d caractères', ), + 'es.utf8' => array( + 'minlength' => 'Este campo debe tener como mínimo %d caracteres', + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/minvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/minvalue.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/minvalue.php 2009-01-13 01:24:20 UTC (rev 300) @@ -53,6 +53,10 @@ 'ja.utf8' => array( 'minvalue' => 'この値は %d 以下にすることはできません' ), + 'es.utf8' => array( + 'minvalue' => 'Este valor no puede ser inferior a %d' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/regex.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/regex.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/regex.php 2009-01-13 01:24:20 UTC (rev 300) @@ -54,6 +54,10 @@ 'ja.utf8' => array( 'regex' => 'このフィールドは正しい形式ではありません' ), + 'es.utf8' => array( + 'regex' => 'Este campo no tiene un formato válido' + ), + ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/required.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/required.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/required.php 2009-01-13 01:24:20 UTC (rev 300) @@ -53,6 +53,9 @@ 'ja.utf8' => array( 'required' => 'このフィールドは、必須入力フィールドです。' ), + 'es.utf8' => array( + 'required' => 'Este campo es obligatorio' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/validateoptions.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/validateoptions.php 2008-12-28 23:03:13 UTC (rev 299) +++ pieforms-php5/trunk/src/pieform/rules/validateoptions.php 2009-01-13 01:24:20 UTC (rev 300) @@ -61,6 +61,10 @@ 'ja.utf8' => array( 'validateoptions' => 'オプション「 %s 」が正しくありません' ), + 'es.utf8' => array( + 'validateoptions' => 'La opción "%s" no es válida' + ), + ); }/*}}}*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |