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
(1) |
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
(1) |
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
From: <ora...@us...> - 2008-07-13 03:58:28
|
Revision: 295 http://pieforms.svn.sourceforge.net/pieforms/?rev=295&view=rev Author: oracleshinoda Date: 2008-07-12 20:58:37 -0700 (Sat, 12 Jul 2008) Log Message: ----------- Added Japanese translation, thanks to Mits 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/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-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/elements/bytes.php 2008-07-13 03:58:37 UTC (rev 295) @@ -139,6 +139,12 @@ 'megabytes' => 'Mégaoctets', 'invalidvalue' => 'Valeur doit être un nombre', ), + 'ja.utf8' => array( + 'bytes' => 'バイト', + 'kilobytes' => 'キロバイト', + 'megabytes' => 'メガバイト', + 'invalidvalue' => '値は数値にしてください', + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/calendar.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/calendar.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/elements/calendar.php 2008-07-13 03:58:37 UTC (rev 295) @@ -161,6 +161,9 @@ 'fr.utf8' => array( 'invalidvalue' => 'Date/Heure indiquée invalide' ), + 'ja.utf8' => array( + 'invalidvalue' => '無効な日付/時間が指定されました' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/date.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/date.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/elements/date.php 2008-07-13 03:58:37 UTC (rev 295) @@ -141,6 +141,10 @@ 'or' => 'ou', 'notspecified' => 'Non indiqué' ), + 'ja.utf8' => array( + 'or' => 'or', + 'notspecified' => '指定なし' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/elements/expiry.php =================================================================== --- pieforms-php5/trunk/src/pieform/elements/expiry.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/elements/expiry.php 2008-07-13 03:58:37 UTC (rev 295) @@ -145,6 +145,13 @@ 'years' => 'Années', 'noenddate' => 'Pas de date de fin' ), + 'ja.utf8' => array( + 'days' => '日', + 'weeks' => '週', + 'months' => '月', + 'years' => '年', + 'noenddate' => '終了日なし' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/before.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/before.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/before.php 2008-07-13 03:58:37 UTC (rev 295) @@ -54,6 +54,9 @@ 'fr.utf8' => array( 'before' => 'Ceci ne peut pas être placé après le champ "%s"' ), + 'ja.utf8' => array( + 'before' => 'フィールド「 %s 」の後に設定することはできません' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/email.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/email.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/email.php 2008-07-13 03:58:37 UTC (rev 295) @@ -53,6 +53,9 @@ 'fr.utf8' => array( 'email' => 'Cette adresse de courriel n\'est pas valide' ), + 'ja.utf8' => array( + 'email' => 'メールアドレスが有効ではありません' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/integer.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/integer.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/integer.php 2008-07-13 03:58:37 UTC (rev 295) @@ -50,6 +50,9 @@ 'fr.utf8' => array( 'integer' => 'Ce champ doit être un nombre entier' ), + 'ja.utf8' => array( + 'integer' => 'フィールドは整数にしてください' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/maxlength.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/maxlength.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/maxlength.php 2008-07-13 03:58:37 UTC (rev 295) @@ -50,6 +50,9 @@ 'fr.utf8' => array( 'maxlength' => 'Ce champ ne peut pas contenir plus de %d signes' ), + 'ja.utf8' => array( + 'maxlength' => 'このフィールドは、最大半角 %d 文字にしてください' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/maxvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/maxvalue.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/maxvalue.php 2008-07-13 03:58:37 UTC (rev 295) @@ -50,6 +50,9 @@ 'fr.utf8' => array( 'maxvalue' => 'Cette valeur ne peut pas supérieure à %d' ), + 'ja.utf8' => array( + 'maxvalue' => 'この値は %d 以下にしてください' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/minvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/minvalue.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/minvalue.php 2008-07-13 03:58:37 UTC (rev 295) @@ -50,6 +50,9 @@ 'fr.utf8' => array( 'minvalue' => 'Cette valeur ne peut pas être inférieure à %d' ), + 'ja.utf8' => array( + 'minvalue' => 'この値は %d 以下にすることはできません' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/regex.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/regex.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/regex.php 2008-07-13 03:58:37 UTC (rev 295) @@ -51,6 +51,9 @@ 'fr.utf8' => array( 'regex' => 'Ce champ n\'a pas une forme correcte' ), + 'ja.utf8' => array( + 'regex' => 'このフィールドは正しい形式ではありません' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/required.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/required.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/required.php 2008-07-13 03:58:37 UTC (rev 295) @@ -50,6 +50,9 @@ 'fr.utf8' => array( 'required' => 'Ce champ est obligatoire' ), + 'ja.utf8' => array( + 'required' => 'このフィールドは、必須入力フィールドです。' + ), ); }/*}}}*/ Modified: pieforms-php5/trunk/src/pieform/rules/validateoptions.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/validateoptions.php 2008-07-07 03:16:10 UTC (rev 294) +++ pieforms-php5/trunk/src/pieform/rules/validateoptions.php 2008-07-13 03:58:37 UTC (rev 295) @@ -58,6 +58,9 @@ 'fr.utf8' => array( 'validateoptions' => 'Cette option "%s" n\'est pas valide' ), + 'ja.utf8' => array( + 'validateoptions' => 'オプション「 %s 」が正しくありません' + ), ); }/*}}}*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |