From 2983a86e027bb0d33e6537440a2ac64acf539851 Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Thu, 5 Dec 2013 19:15:06 -0200 Subject: [PATCH 1/8] Adding local translations. --- language/es_UY.mo | Bin 0 -> 1723 bytes language/es_UY.po | 78 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 language/es_UY.mo create mode 100644 language/es_UY.po diff --git a/language/es_UY.mo b/language/es_UY.mo new file mode 100644 index 0000000000000000000000000000000000000000..39421dccf23f12165e65649190ec157df7fdebd3 GIT binary patch literal 1723 zcmZuxy>A>v6dywPIz9wRh{T8BQ6N6VEO#~mYb_Hw#!f73a^vQ z@2~_tMWCaCzkm)>Q6XVbr=>thbaaTGg5T_|&$01J?|wHk@AEhB%^zn@e0f?h|4jxDJduU$l4|cpmF-fe!+I1U?P?3HTWBF7O=ici@x2e}K{NsZ&C{ z4m=P13b+h>5qKB)7j*sxE@J)LX(7%4&pj}W^9nHL_bxET`xy8Pa0q+~_&M-7;Mc%s zf#0|5Ux7WW{{(&sJPYF&fZqWTZuTKu^L6kW>wF0EC{dK4?MRzr%Zp;AP-eu` zSKd#o%W20tScz4+2|r@Zx{(c2*Hx=>QGCFYnSt2iPiyvp3^or`#5Nz>xXw=R?9ma+ z8@8rQ88UV&1f3!UU!Lzs)ZUe%FkGjIj2x)Puvtci+M1LuTUBaHEujZ=cluWca>cOKG+CH9|OyV2QP-&{RRyO(r3E1(HICI@>J(hK}qc(W>%Hj9Lc9VlM9HdvDjhk7yk z4m-JOGMnQ@Q(746(D_haX2WipR^M{21ND*%$y+#?F6AYVUa3%|lq8*gSvyrqP`2w+ zGF7wmOLL33op`eJs-c&bsQ239p@VH)O~z>Im{&^E#Afc_=e^kEenWd4hL$D1$DEbR zias)s-IT_fCnuiuQt~eApv`gn#Ad8jZmBl0J>frAh`UzgYsxkDGQEGtP>z1G&arLA z^13a@7-NN&9idT`OT;ffZ!t`b!gks2Ta2jM9ct{As_9q+D3c<-$5eRn181pdL(_GN1(s z{Vz@;uBb?s9%^Xd`Iu2t;r;PQFtjN)q++Tw5ZVwpD=onrgrMyZBP}l5`L&o|xY Date: Thu, 5 Dec 2013 19:15:55 -0200 Subject: [PATCH 2/8] Added translation of texts. --- config/module.config.php | 10 ++++++++++ src/GoalioForgotPassword/Form/Forgot.php | 4 ++-- src/GoalioForgotPassword/Form/Reset.php | 6 +++--- src/GoalioForgotPassword/Module.php | 8 ++++++++ view/goalio-forgot-password/email/forgot.phtml | 2 +- view/goalio-forgot-password/forgot/forgot.phtml | 4 ++-- .../forgot/passwordchanged.phtml | 6 +++--- view/goalio-forgot-password/forgot/reset.phtml | 2 +- view/goalio-forgot-password/forgot/sent.phtml | 6 +++--- 9 files changed, 33 insertions(+), 15 deletions(-) diff --git a/config/module.config.php b/config/module.config.php index bcba90b..6c87136 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -10,6 +10,16 @@ 'goalioforgotpassword_forgot' => 'GoalioForgotPassword\Controller\ForgotController', ), ), + 'translator' => array( + 'translation_file_patterns' => array( + array( + 'type' => 'gettext', + 'base_dir' => __DIR__ . '/../language', + 'pattern' => '%s.mo', + 'text_domain' => __NAMESPACE__, + ), + ), + ), 'router' => array( 'routes' => array( 'zfcuser' => array( diff --git a/src/GoalioForgotPassword/Form/Forgot.php b/src/GoalioForgotPassword/Form/Forgot.php index aacc106..8b1aa5f 100644 --- a/src/GoalioForgotPassword/Form/Forgot.php +++ b/src/GoalioForgotPassword/Form/Forgot.php @@ -21,13 +21,13 @@ public function __construct($name = null, ForgotOptionsInterface $options) $this->add(array( 'name' => 'email', 'options' => array( - 'label' => 'E-Mail', + 'label' => _('E-Mail'), ), )); $submitElement = new Element\Button('submit'); $submitElement - ->setLabel('Request new password') + ->setLabel(_('Request new password')) ->setAttributes(array( 'type' => 'submit', )); diff --git a/src/GoalioForgotPassword/Form/Reset.php b/src/GoalioForgotPassword/Form/Reset.php index 07c15e5..b102742 100644 --- a/src/GoalioForgotPassword/Form/Reset.php +++ b/src/GoalioForgotPassword/Form/Reset.php @@ -22,7 +22,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $this->add(array( 'name' => 'newCredential', 'options' => array( - 'label' => 'New Password', + 'label' => _('New Password'), ), 'attributes' => array( 'type' => 'password', @@ -32,7 +32,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $this->add(array( 'name' => 'newCredentialVerify', 'options' => array( - 'label' => 'Verify New Password', + 'label' => _('Verify New Password'), ), 'attributes' => array( 'type' => 'password', @@ -41,7 +41,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $submitElement = new Element\Button('submit'); $submitElement - ->setLabel('Set new password') + ->setLabel(_('Set new password')) ->setAttributes(array( 'type' => 'submit', )); diff --git a/src/GoalioForgotPassword/Module.php b/src/GoalioForgotPassword/Module.php index 476777c..9d4fa0a 100644 --- a/src/GoalioForgotPassword/Module.php +++ b/src/GoalioForgotPassword/Module.php @@ -3,6 +3,7 @@ use Zend\Loader\StandardAutoloader; use Zend\Loader\AutoloaderFactory; +use Zend\Mvc\ModuleRouteListener; class Module { @@ -16,6 +17,13 @@ public function getAutoloaderConfig() { ); } + public function onBootstrap($e) { + $translator = $e->getApplication()->getServiceManager()->get('translator'); + $translator + ->setLocale(\Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE'])) + ->setFallbackLocale('en_US'); + } + public function getConfig() { return include __DIR__ . '/../../config/module.config.php'; } diff --git a/view/goalio-forgot-password/email/forgot.phtml b/view/goalio-forgot-password/email/forgot.phtml index 57d502a..099fa0e 100644 --- a/view/goalio-forgot-password/email/forgot.phtml +++ b/view/goalio-forgot-password/email/forgot.phtml @@ -1,4 +1,4 @@ -You have received this email because you initiated to reset your password with us. To continue with the process, please click the link below: +translate('You have received this email because you initiated to reset your password with us. To continue with the process, please click the link below:'); ?> serverUrl($this->url('zfcuser/resetpassword', array('userId' => $this->record->getUserId(), 'token' => $this->record->getRequestKey()))); ?> \ No newline at end of file diff --git a/view/goalio-forgot-password/forgot/forgot.phtml b/view/goalio-forgot-password/forgot/forgot.phtml index f50a92a..70ae495 100644 --- a/view/goalio-forgot-password/forgot/forgot.phtml +++ b/view/goalio-forgot-password/forgot/forgot.phtml @@ -1,4 +1,4 @@ -

Forgot your password?

+

translate('Forgot your password?'); ?>

forgotForm; @@ -20,4 +20,4 @@ $form->setAttribute('method', 'post'); form()->closeTag() ?> -Back to login? +translate('Back to login.'); ?> diff --git a/view/goalio-forgot-password/forgot/passwordchanged.phtml b/view/goalio-forgot-password/forgot/passwordchanged.phtml index c4dded9..58f4a45 100644 --- a/view/goalio-forgot-password/forgot/passwordchanged.phtml +++ b/view/goalio-forgot-password/forgot/passwordchanged.phtml @@ -1,5 +1,5 @@ -

Your password has been changed.

+

translate('Your password has been changed.'); ?>

-

You can now login using your new password.

+

translate('You can now login using your new password.') ?>

-Back to login. +translate('Back to login.'); ?> diff --git a/view/goalio-forgot-password/forgot/reset.phtml b/view/goalio-forgot-password/forgot/reset.phtml index 9c28c7c..55b1f46 100644 --- a/view/goalio-forgot-password/forgot/reset.phtml +++ b/view/goalio-forgot-password/forgot/reset.phtml @@ -1,4 +1,4 @@ -

Change Password for escapeHtml($this->email); ?>

+

translate('Change Password for %s'), $this->escapeHtml($this->email)); ?>

resetForm; diff --git a/view/goalio-forgot-password/forgot/sent.phtml b/view/goalio-forgot-password/forgot/sent.phtml index bb706e9..612ba4e 100644 --- a/view/goalio-forgot-password/forgot/sent.phtml +++ b/view/goalio-forgot-password/forgot/sent.phtml @@ -1,5 +1,5 @@ -

Forgot your password?

+

translate('Forgot your password?'); ?>

-

A reminder has been sent to your e-mail address escapeHtml($this->email); ?>

+

translate('A reminder has been sent to your e-mail address %s.'), $this->escapeHtml($this->email)); ?>

-Back to login? +translate('Back to login?'); ?> From fa0dca2363f412c03eabc57d72e9a726af221306 Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Fri, 6 Dec 2013 11:53:20 -0200 Subject: [PATCH 3/8] Erased language setting from module Bootstrap, and added as comment on module config file. --- config/module.config.php | 3 +++ src/GoalioForgotPassword/Module.php | 7 ------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/config/module.config.php b/config/module.config.php index 6c87136..015d447 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -11,6 +11,9 @@ ), ), 'translator' => array( + // Change you locale here if needed, and uncomment line below with 'locale' setting. + // Don't forget to create your own translation! See ../language directory. + // 'locale' => 'en_US', 'translation_file_patterns' => array( array( 'type' => 'gettext', diff --git a/src/GoalioForgotPassword/Module.php b/src/GoalioForgotPassword/Module.php index 9d4fa0a..c23d190 100644 --- a/src/GoalioForgotPassword/Module.php +++ b/src/GoalioForgotPassword/Module.php @@ -17,13 +17,6 @@ public function getAutoloaderConfig() { ); } - public function onBootstrap($e) { - $translator = $e->getApplication()->getServiceManager()->get('translator'); - $translator - ->setLocale(\Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE'])) - ->setFallbackLocale('en_US'); - } - public function getConfig() { return include __DIR__ . '/../../config/module.config.php'; } From 09f27af650db8459c5149fbb991b1ef5e889bb78 Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Fri, 6 Dec 2013 12:21:49 -0200 Subject: [PATCH 4/8] Labels are translated automatically. --- src/GoalioForgotPassword/Form/Forgot.php | 4 ++-- src/GoalioForgotPassword/Form/Reset.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/GoalioForgotPassword/Form/Forgot.php b/src/GoalioForgotPassword/Form/Forgot.php index 8b1aa5f..aacc106 100644 --- a/src/GoalioForgotPassword/Form/Forgot.php +++ b/src/GoalioForgotPassword/Form/Forgot.php @@ -21,13 +21,13 @@ public function __construct($name = null, ForgotOptionsInterface $options) $this->add(array( 'name' => 'email', 'options' => array( - 'label' => _('E-Mail'), + 'label' => 'E-Mail', ), )); $submitElement = new Element\Button('submit'); $submitElement - ->setLabel(_('Request new password')) + ->setLabel('Request new password') ->setAttributes(array( 'type' => 'submit', )); diff --git a/src/GoalioForgotPassword/Form/Reset.php b/src/GoalioForgotPassword/Form/Reset.php index b102742..07c15e5 100644 --- a/src/GoalioForgotPassword/Form/Reset.php +++ b/src/GoalioForgotPassword/Form/Reset.php @@ -22,7 +22,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $this->add(array( 'name' => 'newCredential', 'options' => array( - 'label' => _('New Password'), + 'label' => 'New Password', ), 'attributes' => array( 'type' => 'password', @@ -32,7 +32,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $this->add(array( 'name' => 'newCredentialVerify', 'options' => array( - 'label' => _('Verify New Password'), + 'label' => 'Verify New Password', ), 'attributes' => array( 'type' => 'password', @@ -41,7 +41,7 @@ public function __construct($name = null, ForgotOptionsInterface $forgotOptions) $submitElement = new Element\Button('submit'); $submitElement - ->setLabel(_('Set new password')) + ->setLabel('Set new password') ->setAttributes(array( 'type' => 'submit', )); From 170898dc74bbd4c750cec194cd26f8431a149e3f Mon Sep 17 00:00:00 2001 From: Stijn Date: Sun, 13 Apr 2014 13:54:35 +0200 Subject: [PATCH 5/8] - Translation support --- .buildpath | 5 + .project | 22 +++ .settings/org.eclipse.php.core.prefs | 3 + language/de_DE.mo | Bin 0 -> 1713 bytes language/de_DE.po | 165 ++++++++++++++++++++++ language/es_UY.mo | Bin 1723 -> 1447 bytes language/es_UY.po | 81 ++++++----- language/fr_FR.mo | Bin 0 -> 1788 bytes language/fr_FR.po | 165 ++++++++++++++++++++++ language/ja_JP.mo | Bin 0 -> 1897 bytes language/ja_JP.po | 161 ++++++++++++++++++++++ language/msgIds.php | 24 ++++ language/nl_NL.mo | Bin 0 -> 2708 bytes language/nl_NL.po | 166 +++++++++++++++++++++++ language/pl_PL.mo | Bin 0 -> 1725 bytes language/pl_PL.po | 163 ++++++++++++++++++++++ language/ru_RU.mo | Bin 0 -> 2726 bytes language/ru_RU.po | 130 ++++++++++++++++++ src/GoalioForgotPassword/Form/Forgot.php | 2 +- view/zfc-user/user/login.phtml | 5 +- 20 files changed, 1051 insertions(+), 41 deletions(-) create mode 100644 .buildpath create mode 100644 .project create mode 100644 .settings/org.eclipse.php.core.prefs create mode 100644 language/de_DE.mo create mode 100644 language/de_DE.po create mode 100644 language/fr_FR.mo create mode 100644 language/fr_FR.po create mode 100644 language/ja_JP.mo create mode 100644 language/ja_JP.po create mode 100644 language/msgIds.php create mode 100644 language/nl_NL.mo create mode 100644 language/nl_NL.po create mode 100644 language/pl_PL.mo create mode 100644 language/pl_PL.po create mode 100644 language/ru_RU.mo create mode 100644 language/ru_RU.po diff --git a/.buildpath b/.buildpath new file mode 100644 index 0000000..0763f7c --- /dev/null +++ b/.buildpath @@ -0,0 +1,5 @@ + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..2c13488 --- /dev/null +++ b/.project @@ -0,0 +1,22 @@ + + + GoalioForgotPassword + + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.dltk.core.scriptbuilder + + + + + + org.eclipse.php.core.PHPNature + + diff --git a/.settings/org.eclipse.php.core.prefs b/.settings/org.eclipse.php.core.prefs new file mode 100644 index 0000000..eb19107 --- /dev/null +++ b/.settings/org.eclipse.php.core.prefs @@ -0,0 +1,3 @@ +eclipse.preferences.version=1 +include_path=0;/GoalioForgotPassword +use_asp_tags_as_php=false diff --git a/language/de_DE.mo b/language/de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..38874439ecfa9f226fc1fed2c6a64f6c3dd62bdd GIT binary patch literal 1713 zcma)*-EJF26vu~BD0TTL;X`~@hl^GS*sWcKs4@lOByJQ)jFq^kDi>(HdviLgI?TH4+bi;02Jl<%<8T*Kt5q#mej7o|!Y}YtH#?<@DzQ&og*m z!uu26m+|Hg;1AF5;6?Bc@Kx~4DIuN(o8WnH8+;VJ2|ffecosaY*Gupcrz3pwI7T@JaAb(EIbsPXlMcOW+02=i3GS{yymA_z1*L z6!`P|N1*rnDfj~T1z4A~TKBbpi|X-lAzksh4+UY{?HS9Tj9Qmtb4ar#&vX!*6UAbQ3B zim+EW=%va!HXOezj?XVX=tDLtnTkcs(=h@^s!5UO#iUA{?>Mnv+YkpT)wHAMEXS{i zgK{`hPTa6;w2yjjkCtJdSXej}eN)`#$OSubfNhK7wdqz8c_WQ|9v8+1dp1>Zuu-Nq z7!+-qB|*$bj^${5#ySq8V$|q=FbFmcSH%yuq~kVSX|`5_=4#NoLanv-n`^H(Tg@gE zgMB_y-p_sYcBOT}z({R#=?c@P1E+55OqO)b)?e$XzZLKPoyIOMwUj9b1B8VHuG40L zZWxw0Yw6lOLSCL}Q_LT4bsKv-d);LXT4A%{ZJ;TF0j{D=4%NSmo>2NNiZW>|ySHx) zt_N3_dOqHSP0-a*5#z?%bakj)<7TkUn$0|se!;PF)C$+aRqV{g;C-I@cC@?b54frm z=cU31`gkl|)}}DLyj(tDX`-x;ji8CGhPYLxs0HyI7*cE;4bg7O+3m z=;#?M7_Fu!*qe_}$<$qbpV01Fnv^DHI%K73jM+qEv7xTgC`C#sCm3?pn6)UIE6wvf z9wWDmZlV}xvm%H7HV^AOa1Y20HvBvxF#k2cjS@W8Gi6W~oayKh=ib?S>}HFZo$q1B as*_@ab?IjHoXvBhlYV<#o~XvZw*CQ*@yI3s literal 0 HcmV?d00001 diff --git a/language/de_DE.po b/language/de_DE.po new file mode 100644 index 0000000..6b9d4da --- /dev/null +++ b/language/de_DE.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: zf-devteam@zend.com\n" +"POT-Creation-Date: 2014-04-12 16:56+0100\n" +"PO-Revision-Date: 2014-04-12 16:56+0100\n" +"Last-Translator: Stijnhau \n" +"Language-Team: ZF Contibutors \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.4\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-Basepath: ../\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "Benutzername" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "E-Mail" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "Neue E-Mail" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "E-Mail wiederholen" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "Anzeigename" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "Passwort" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "Passwort wiederholen" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "Aktuelles Passwort" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "Neues Passwort wiederholen" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "Neues Passwort" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "Geben Sie bitte den folgenden Text ein" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "Senden" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "Anmelden" + +#: language/msgIds.php:19 +msgid "Register" +msgstr "Registrieren" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "Es wurde kein passender Eintrag gefunden" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "Zugang existiert bereits." + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "Authentifizierung fehlgeschlagen. Bitte versuchen Sie es erneut." + +#: language/msgIds.php:23 +#, fuzzy +msgid "Request new password" +msgstr "Neues Passwort" + +#: language/msgIds.php:24 +#, fuzzy +msgid "Set new password" +msgstr "Neues Passwort" + +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 +msgid "Your password has been changed." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:3 +msgid "You can now login using your new password." +msgstr "" + +#: view/goalio-forgot-password/forgot/reset.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "Passwort ändern für %s" + +#: view/goalio-forgot-password/forgot/sent.phtml:3 +#, php-format +msgid "A reminder has been sent to your e-mail address %s." +msgstr "" + +#: view/goalio-forgot-password/forgot/sent.phtml:5 +msgid "Back to login?" +msgstr "" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "Noch kein Zugang?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "Jetzt registrieren!" + +#~ msgid "Change Email for %s" +#~ msgstr "E-mail ändern für %s" + +#~ msgid "Email address changed successfully." +#~ msgstr "Ihre E-Mail wurde erflogreich aktualisiert." + +#~ msgid "Unable to update your email address. Please try again." +#~ msgstr "" +#~ "Ihre E-Mail konnte nicht erflogreich aktualisiert werden. Bitte versuchen " +#~ "Sie es erneut." + +#~ msgid "Password changed successfully." +#~ msgstr "Ihr Passwort wurde erfolgreich aktualisiert." + +#~ msgid "Unable to update your password. Please try again." +#~ msgstr "" +#~ "Ihr Passwort konnte nicht erfolgreich aktualisiert werden. Bitte " +#~ "versuchen Sie es erneut." + +#~ msgid "Hello" +#~ msgstr "Hallo" + +#~ msgid "Sign Out" +#~ msgstr "Abmelden" diff --git a/language/es_UY.mo b/language/es_UY.mo index 39421dccf23f12165e65649190ec157df7fdebd3..d57b909f618cc3e3d1aa0752d29c01175bc23e3d 100644 GIT binary patch delta 356 zcmdnZyPUiJo)F7a1|Z-BVi_P#0b*VtUIWA+@BoO7f%qX1^8v9aBZO7~(qbSvAT0`{ zy@0e9kWK*7y+FDfNXr9hNhSt{Z$P#skhTW$4Okc$gn)DokOt}xW2gr*Ko(B}(vm=W zGmtg}(r1Bm2ax^`q~(Bg2P*>u&>S$}fYNM0njOjpN`nE&BP^3`8B0ao@{7{*OB5>e zON$f=5{rw=^NUjKH;Xb!GYXjK8kp!B8Yvi>S(%z?8yHS@V3u%17c?;7@<}W%(G4j| z%qz}GEXgmjQV1@|%*xA1ELE^6hO!*ea}zUj^pf*)?Iw3KPh>RPEX!iYI5~+`YVt$Y FTL4DiJ8J*{ delta 674 zcmZwCJxClu6bJCP=S8E&;5QgWrxOATdv|E$1VuCw!7o%Sw2<*`l!0aEoY_4Qlxrm0ngpTT_8%8E(v~ z(&>I07prWtSkaVN354;Phsi%JG%fy_m=#(st+CRb`30-hnoroVxb1YYSWhzEZ956a zshXUyr$km7sXTj#`y$EWPOP-=Q=xB^8{eMM+%qosl}@r@;mV9)b21}+E&0yx$hOs$ z56b$i+@R80C^|WwaI-Rfnr9|pDdqW^8*zHb@uomzdFd2QD_5qZ&o%S@TO09~wJ@(P SJ-<|@{$49D9J6yCy?z1(+L!MD diff --git a/language/es_UY.po b/language/es_UY.po index 94c6d37..67ebec0 100644 --- a/language/es_UY.po +++ b/language/es_UY.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: Goalio Forgot Password\n" -"POT-Creation-Date: 2013-12-05 18:26-0300\n" -"PO-Revision-Date: 2013-12-05 18:27-0300\n" -"Last-Translator: Felipe Zipitria\n" +"POT-Creation-Date: 2014-04-12 16:56+0100\n" +"PO-Revision-Date: 2014-04-12 16:56+0100\n" +"Last-Translator: Stijnhau \n" "Language-Team: \n" "Language: es_UY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"X-Generator: Poedit 1.6.4\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -17,25 +17,23 @@ msgstr "" "X-Poedit-SearchPath-0: view\n" "X-Poedit-SearchPath-1: src\n" -#: src/GoalioForgotPassword/Form/Forgot.php:24 -msgid "E-Mail" -msgstr "Correo" - -#: src/GoalioForgotPassword/Form/Forgot.php:30 -msgid "Request new password" -msgstr "Solicitar nueva contraseña" - -#: src/GoalioForgotPassword/Form/Reset.php:25 -msgid "New Password" -msgstr "Nueva contraseña" +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" +"Ha recibido este correo por soliticitar un reinicio de contraseña. Para " +"continuar el proceso, por favor haga click en el enlace debajo:" -#: src/GoalioForgotPassword/Form/Reset.php:35 -msgid "Verify New Password" -msgstr "Verificar nueva contraseña" +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "¿Olvidó su contraseña?" -#: src/GoalioForgotPassword/Form/Reset.php:44 -msgid "Set new password" -msgstr "Ingresar nueva contraseña" +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "Volver a ingresar." #: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 msgid "Your password has been changed." @@ -45,16 +43,6 @@ msgstr "Su contraseña se ha cambiado." msgid "You can now login using your new password." msgstr "Ahora puede ingresar usando su nueva contraseña." -#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 -#: view/goalio-forgot-password/forgot/forgot.phtml:23 -msgid "Back to login." -msgstr "Volver a ingresar." - -#: view/goalio-forgot-password/forgot/forgot.phtml:1 -#: view/goalio-forgot-password/forgot/sent.phtml:1 -msgid "Forgot your password?" -msgstr "¿Olvidó su contraseña?" - #: view/goalio-forgot-password/forgot/reset.phtml:1 #, php-format msgid "Change Password for %s" @@ -69,10 +57,29 @@ msgstr "Se ha enviado un recordatorio a su dirección de correo %s." msgid "Back to login?" msgstr "¿Retornar al ingreso?" -#: view/goalio-forgot-password/email/forgot.phtml:2 -msgid "" -"You have received this email because you initiated to reset your password " -"with us. To continue with the process, please click the link below:" +#: view/zfc-user/user/login.phtml:1 +msgid "Sign In" msgstr "" -"Ha recibido este correo por soliticitar un reinicio de contraseña. Para " -"continuar el proceso, por favor haga click en el enlace debajo:" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "" + +#~ msgid "E-Mail" +#~ msgstr "Correo" + +#~ msgid "Request new password" +#~ msgstr "Solicitar nueva contraseña" + +#~ msgid "New Password" +#~ msgstr "Nueva contraseña" + +#~ msgid "Verify New Password" +#~ msgstr "Verificar nueva contraseña" + +#~ msgid "Set new password" +#~ msgstr "Ingresar nueva contraseña" diff --git a/language/fr_FR.mo b/language/fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..64da542e4098a9b19f6f4b7dc80ce9bed0790bb9 GIT binary patch literal 1788 zcma)+&u<$=6vu~BD7Xbm_;uiiUQtVnU|l;3Q89(4O_M4jcCEyzDlTZU`_`Vap0Q?T z9h?*5fW(0#7cOu^=ESuUTrht@FWeCP3B4jA@tyTLP8$hz<(<#I`SE_ud;W9b__qSj zOL$+y`#av(@n(-D|#LHj}JPqCePl30=CqM?D20tt3bMP(5UxLqp zWAG{PZYlo;z5)4OIe#BK0r{U&KK8f}PeMKkhI0#Gu=^_b0{AZY3w&DvmmvRp9KL~z zaOO=g2E)Fuz+nG75I^w~hT!+l;EUj|;QQb`@D=bBjE42IV8}}yB(Mbr`=(s~0(>6w zH(>Dl`%?Z940*f@o(2B^;b!qHU<|&%RPmg|h;YR-Q?VF>&mmrfQ`p1t!k-F=P{p%& zgWX^=_#blq@DuJ-TqVn~u?h91k9$gY$@iF)9^{_(q@&d2IuTcM%xbS<>6OuxN|kX^ zrFO>BF?l;8*_BFH#cEILE>l}Nw->ag#?m<_R{{$O5QS8kBW5w&EW#abWwM2q)m z{x#DeTIP{FY#EPzUFAGmPOgZ9^Ro}S#a5*wG4pvefa3@?HCbl%iop4EFSbe@Vq0}J zZRjcU!5Oig@Aj1!JC3amUQhMW-0edXGozwy%^i+?w2?$uc1T`>K1t)Cq_V{WV|~MU3zZNVy(Uu)s~|ABGs20?=8PmtJiAS7;W)T1*QMH zZ&NxSb*$7blit_{ZF_Y`_he3&UHP@r4OdW&P5-0HCT=j7U5+{|`|x(1Rt>IxH^*5= zm-o{s;i1Rc%0BDl!7~j??WgNomF7lsZ60vFTB`&dsDP-0yf?@r)fZ6!N`F9cPg=+R z!=280bZNdX_?xng)^uzVTu*~8?J8fn9kmT7%10mbC{&o+#Fax~86M9!TtjINr0+GT zTD^$r8?4z*6EIal_3CnUX?|dvrHy-S9EoZ;R1rIxSWk<}azE6sq{-M%#xQ5{At;9& zQ_S8oc6vJ*^Fgbmvu2r$7@}hm3 zhbLw1b4I(EK23fgnZi(y?W~F57iY6R3IeYAuuk|F=SSkw=N}<56g8s6pG63^Ov_|^ zMI83-0f8 q{rTz{aZ6?@!AeL*az6JeQw|-IhnXS~ldnTzA918ueJC?WHvI<^1MO`9 literal 0 HcmV?d00001 diff --git a/language/fr_FR.po b/language/fr_FR.po new file mode 100644 index 0000000..bde78a1 --- /dev/null +++ b/language/fr_FR.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-12 16:56+0100\n" +"PO-Revision-Date: 2014-04-12 16:56+0100\n" +"Last-Translator: Stijnhau \n" +"Language-Team: ZF Contibutors \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-Basepath: ../\n" +"X-Generator: Poedit 1.6.4\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "Email" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "Nouvel Email" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "Nouvel Émail (vérification)" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "Nom à afficher" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "Mot de passe" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "Mot de passe (vérification)" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "Mot de passe actuel" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "Nouveau mot de passe (vérification)" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "Merci de saisir le texte suivant" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "Valider" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "Se connecter" + +#: language/msgIds.php:19 +msgid "Register" +msgstr "Créer un compte" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "Aucun enregistrement n'a été trouvé avec cette entrée" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "Un enregistrement a été trouvé avec cette entrée" + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "Authentification échouée. Merci de réessayer." + +#: language/msgIds.php:23 +#, fuzzy +msgid "Request new password" +msgstr "Nouveau mot de passe" + +#: language/msgIds.php:24 +#, fuzzy +msgid "Set new password" +msgstr "Nouveau mot de passe" + +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 +msgid "Your password has been changed." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:3 +msgid "You can now login using your new password." +msgstr "" + +#: view/goalio-forgot-password/forgot/reset.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "Changement du mot de passe pour %s" + +#: view/goalio-forgot-password/forgot/sent.phtml:3 +#, php-format +msgid "A reminder has been sent to your e-mail address %s." +msgstr "" + +#: view/goalio-forgot-password/forgot/sent.phtml:5 +msgid "Back to login?" +msgstr "" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "Pas encore enregistré?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "Créez un compte!" + +#~ msgid "Change Email for %s" +#~ msgstr "Changement de l'émail pour %s" + +#~ msgid "Email address changed successfully." +#~ msgstr "L'émail a été modifié" + +#~ msgid "Unable to update your email address. Please try again." +#~ msgstr "" +#~ "Impossible de mettre jour votre adresse mail. Merci de réessayer " +#~ "ultérieurement." + +#~ msgid "Password changed successfully." +#~ msgstr "Le mot de passe a été modifié avec succès." + +#~ msgid "Unable to update your password. Please try again." +#~ msgstr "" +#~ "Impossible de mettre à jour votre mot de passe. Merci de réessayer " +#~ "ultérieurement" + +#~ msgid "Hello" +#~ msgstr "Bonjour" + +#~ msgid "Sign Out" +#~ msgstr "Se déconnecter" diff --git a/language/ja_JP.mo b/language/ja_JP.mo new file mode 100644 index 0000000000000000000000000000000000000000..4b2345d0a0d44be9f13e16c4677453f8483fc8fc GIT binary patch literal 1897 zcmbV~Uu+ab9LGll(F6b0Khc0@NGxJ>k2_Kua#k(0g;d*mX%9nuA=A6LyRCP-m)%)v zd1CkKpSCoJT1-=7DXFDc5ENr*Z7?yu`DWs)5y!hLPmQl8CVppcuV*n4<7Q_*`P^hC>Q}B01tv&!NcGtkc0Pt zZwBiQxD&Pq-Va^??*^{Ut^ zZwLdWlKU_o#6Vc`Fox>+t&h@0_EC!`O)Ew7OeC|qk)a~XscsY;K?j*l)23sj$UXBu7<>EVO4{#A=Wdd&Z%u*VcQm(gv(EuMOrtoheI=7a^|34IDbo!-XI3)(=!I`G^%t8J4m0?pVtLBWOK_{>DoCi87fefN-F8M#Y5SdwttHGD4aHweXl)kvJFT@d!DDn!B-*4! znzZO18f}g}-~4PO8j0Yb*2|CTD(JtS>teRh5*9P;922G$qkTdjFtW^{Eq3tLno(B} zPMZ0bLS48)hh?~y;4BZd2WXp#tM7N?ip?NvUc{xG`>SB`)|dAxpLKYq;u6WJIIhj(N7AUC*GZ9p{yjfR`UO?8Jp z&a7lM4i_x~rw}Q<{b^}*O1cZO_=zkQWzm)H$I_ja#f#FrDvQgqI3nE>D|2Jgot5sG z^hTw7y?TbMd^Wx^zYOQn>=)$;xZw@<iN zmG0-VcuIPUvUoX2<$X|^9Vt(JRf{!ADkra(&dmSwC|Q}Augoq$$!~6+_)@x;%h%qkZ4CQ; znnXWWm#3k6ecoGax~p<-39YVtH2(}KUz|ZJ%BSD0ES!~SR&agjE_z&V@LE>Y93;3T xy(`k2mBp(t=2VZouQ6A(tuDLd=5hD8Z)etRqNlfMT}>He)myx-mf8tl`(JqXzRdst literal 0 HcmV?d00001 diff --git a/language/ja_JP.po b/language/ja_JP.po new file mode 100644 index 0000000..b9bfbaf --- /dev/null +++ b/language/ja_JP.po @@ -0,0 +1,161 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-12 16:56+0100\n" +"PO-Revision-Date: 2014-04-12 16:56+0100\n" +"Last-Translator: Stijnhau \n" +"Language-Team: ZF Contibutors \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-Basepath: ../\n" +"X-Generator: Poedit 1.6.4\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "ユーザー名" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "メールアドレス" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "新しいメールアドレス" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "新しいメールアドレス (確認)" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "表示する名前" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "パスワード" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "パスワード (確認用)" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "現在のパスワード" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "新しいパスワード (確認用)" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "新しいパスワード" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "次の文章を入力してください" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "送信" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "ログイン" + +#: language/msgIds.php:19 +msgid "Register" +msgstr "登録する" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "入力にマッチしたレコードが見つかりませんでした" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "入力にマッチしたレコードが見つかりました" + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "認証に失敗しました。再度お試しください。" + +#: language/msgIds.php:23 +#, fuzzy +msgid "Request new password" +msgstr "新しいパスワード" + +#: language/msgIds.php:24 +#, fuzzy +msgid "Set new password" +msgstr "新しいパスワード" + +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 +msgid "Your password has been changed." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:3 +msgid "You can now login using your new password." +msgstr "" + +#: view/goalio-forgot-password/forgot/reset.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "%s のパスワードを変更します" + +#: view/goalio-forgot-password/forgot/sent.phtml:3 +#, php-format +msgid "A reminder has been sent to your e-mail address %s." +msgstr "" + +#: view/goalio-forgot-password/forgot/sent.phtml:5 +msgid "Back to login?" +msgstr "" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "登録は済んでいますか?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "ユーザー登録!" + +#~ msgid "Change Email for %s" +#~ msgstr "%s のメールアドレスを変更します" + +#~ msgid "Email address changed successfully." +#~ msgstr "メールアドレスの変更に成功しました。" + +#~ msgid "Unable to update your email address. Please try again." +#~ msgstr "メールアドレスを更新できません。再度お試しください。" + +#~ msgid "Password changed successfully." +#~ msgstr "パスワードの変更に成功しました。" + +#~ msgid "Unable to update your password. Please try again." +#~ msgstr "パスワードを更新できません。再度お試しください。" + +#~ msgid "Hello" +#~ msgstr "こんにちは" + +#~ msgid "Sign Out" +#~ msgstr "ログアウト" diff --git a/language/msgIds.php b/language/msgIds.php new file mode 100644 index 0000000..2c4da30 --- /dev/null +++ b/language/msgIds.php @@ -0,0 +1,24 @@ +gw{(dv;wH zcwWHwIed5DA;bajZ;+oa?-XJm_!W2<{2ts7{sle+zI<1~!{C#6UjiQiuY$Y54e)Mo z3_byV0NxLNR*ruGzJm8}z=y#f!TZ2p%J<(u)^?-p-@8kQ$MOCW$om`x?*-3-ysib_ z170oP-vxP|1|I{rz*oUf!B4<%!56_Z5P1VW$KWj9J1}|#ybiLyAHYY!KS17p7dGQ~ z?FG4i9>kD13$ouWkmtP(?g1UhIz9v!z|TR}^AlJBe+4;yf0nEuNZdaIa{ob)?Ja}& zh%5NveL5iTYe7DbG05@y2xNUmS-!M)%XjPnt*HlBwtQ@WUD($XkV;2hoN!fn(17ex@7~ zC#9p%x=0R`4}03g()UPeGt9gkt5kMvW}kEOya{Z!Mqp>W;xwXB1&Hk@Q ztihn8Sf`#GMT=s4{iGo;k<;BxG4XSA2xk$}u1yj<&I3&EdvT$(fyR3orCu6{nTQnY zbZdu>ja)HeotX`1#Cp~lXfH0N?)_u?dX_D6IX2}LuI6~<09HJOIcBVggXUP z^Qk>GA`S}a5k+u9r;_qx?og;Q93s{sRkYX2^8}7y3gx-Ei7#@jeGmIoW!uWoA|Xsh zMJI=4=xm6LIVgukUWAF}Y`{pOO&^(tpfy;H+m6mO1;acyqN->)yFsB3R-yoYr^vU4 zyw(jlI+Y7Fw9W_T(pX2qQWmE{+cxA@H;8EDNe$lEA`?|ZJE*kIw}WLzdAz9K^vLakRHi*2p2`0;}YR>IIo3^?bE@r={(lkB^NYJXd|RYLmumBU%3*T zAw#Zkq-816Ue>Gg)wxP5$(%|8T(?0A9mD)JU6?(NL*e8G$NDANRu2O z5hJc-Ba5nKN4TzJ`gTA@G*P{Ja#>uMDGS<;9$ng46qohJmX7nC#wzUjvE|}6!sSG9 zJDceUgVO=A1Q(SWh~}iuLY26@V&*YWMBA$S%g-uzei zu!F~{q6#9a4rOpEWk*vY=(?N#0g&MI;{zGl1VKc@Q$L;5LAD|;Ii(P}T>lQS*Rb1d zohOwUPy(@KA$5>rX1EISZ5C&!<1*bxDafOCdrWSURt!(KylL=Fl6@|jT*JW\n" +"Language-Team: ZF Contibutors \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Basepath: ../\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "Gebruikersnaam" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "E-mail adres" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "Nieuw e-mail adres" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "Nieuw e-mail adres verificatie" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "Bijnaam" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "Wachtwoord" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "Wachtwoord verificatie" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "Huidig wachtwoord" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "Nieuw wachtwoord verificatie" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "Nieuw wachtwoord" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "Type de volgende tekst" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "Verzend" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "Aanmelden" + +#: language/msgIds.php:19 +msgid "Register" +msgstr "Registreer" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "Er zijn geen gegevens gevonden die met de invoer overeenkomen" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "Er zijn al gegevens die met de invoer overeenkomen" + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "Inloggen mislukt. Probeer het opnieuw." + +#: language/msgIds.php:23 +msgid "Request new password" +msgstr "Vraag nieuw wachtwoord" + +#: language/msgIds.php:24 +msgid "Set new password" +msgstr "Zet nieuw wachtwoord" + +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" +"Je hebt deze e-mail ontvangen omdat je een aanvraag hebt gedaan om je " +"paswoord te veranderen. Om verder te gaan klik op onderstaande link:" + +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "Terug naar login." + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 +msgid "Your password has been changed." +msgstr "Je paswoord is veranderd." + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:3 +msgid "You can now login using your new password." +msgstr "Je kan nu inloggen met je nieuwe wachtwoord." + +#: view/goalio-forgot-password/forgot/reset.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "Wijzig het wachtwoord van %s" + +#: view/goalio-forgot-password/forgot/sent.phtml:3 +#, php-format +msgid "A reminder has been sent to your e-mail address %s." +msgstr "Een herrinering is gestuurd naar het e-mail adres %s." + +#: view/goalio-forgot-password/forgot/sent.phtml:5 +msgid "Back to login?" +msgstr "Terug naar inloggen?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "Niet geregistreerd?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "Registreren!" + +#~ msgid "Change Email for %s" +#~ msgstr "Wijzig het e-mail adres van %s" + +#~ msgid "Email address changed successfully." +#~ msgstr "Het e-mail adres is gewijzigd." + +#~ msgid "Unable to update your email address. Please try again." +#~ msgstr "" +#~ "Het is niet gelukt het e-mail adres te wijzigen. Probeer het nog eens." + +#~ msgid "Password changed successfully." +#~ msgstr "Het wachtwoord is gewijzigd." + +#~ msgid "Unable to update your password. Please try again." +#~ msgstr "Wachtwoord wijzigen mislukt. Probeer het nog eens." + +#~ msgid "Hello" +#~ msgstr "Hallo" + +#~ msgid "Sign Out" +#~ msgstr "Afmelden" + +#~ msgid "Registration is disabled" +#~ msgstr "Registratie is uitgeschakeld." diff --git a/language/pl_PL.mo b/language/pl_PL.mo new file mode 100644 index 0000000000000000000000000000000000000000..a6ff1a556526decf50a1f0f4f89157b7457eaf46 GIT binary patch literal 1725 zcma)*O^+Kj7{^U16jGpNd65t=dMZ%_0;fr}lvOD0ZnxXA>TVkCrl{Hr^3FJklZidD zJv&TJsDc|e#9>uF0Gv2fLPFxyX0IUe0T6ryu1HAyolFvh0Ab1V^W%BmZU4M<{0oNh z9Og@yW6YN^lZWuZ_ys%*{tCVho;b$X^I#1;4PFPI0B?hjfD(Kh9F+SR_!{Ip;3@EH z@G8 z7Rc1^uCn!>&|OI_;ancPc8sO7j;&|b!hXKbt}2%%qM)W2O13eCKh~5vEmkuRtZDvN zhE3z4*Hz9-E91*-Za-Vl2hyre!DcxZDH2Di9g`#`pA;@X@@%K{!FE+w)25y>OV6;~ zY=5XcyXBTBQA#jag9EvZgO1&o^U^-ww@d&|W7BPAWSxHP-WO*HtmUl64(# zn+AbM%2VWoAm&DX7*G@oA;UN-1_t-j1_%e;P`>K7Vszw>6TUaLWo z@5loc;{2!HmT;c8t!#@d-#)srm`{3Sw)`x;NIW((mZ>Z$aC)5)z zsK<#2k7#Y+Gm&UnZnLHs<%06!=x(m0PlOh1gHNB5$qSP6^}+&KjI>DP2p7cA0L6%Z zFNQTINjoKC;YL&K%k2G0PON2e|KOe-&61fFlcEc$g1W{P8y}`wfBb1w;B*HrJg&ZU xXmivTi{7w3VW<0OLFmjGyqb|bx|^teStFWS_(AB+KrAAoS@SCA>0onS?w|E_+YkT% literal 0 HcmV?d00001 diff --git a/language/pl_PL.po b/language/pl_PL.po new file mode 100644 index 0000000..64b206c --- /dev/null +++ b/language/pl_PL.po @@ -0,0 +1,163 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: zf-devteam@zend.com\n" +"POT-Creation-Date: 2014-04-12 16:57+0100\n" +"PO-Revision-Date: 2014-04-12 16:57+0100\n" +"Last-Translator: Stijnhau \n" +"Language-Team: ZF Contibutors \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.4\n" +"X-Poedit-Basepath: ../\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "Nazwa użytkownika" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "E-mail" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "Nowy e-mail" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "Powtórz nowy e-mail" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "Hasło" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "Powtórz hasło" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "Aktualne hasło" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "Powtórz nowe hasło" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "Nowe hasło" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "Proszę przepisz następujący tekst" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "Prześlij" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "Logowanie" + +#: language/msgIds.php:19 +msgid "Register" +msgstr "Rejestracja" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "Nie znaleziono konta o podanym identyfikatorze" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "Konto o podanym identyfikatorze już istnieje" + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "Logowanie nie powiodło się. Proszę spróbuj ponownie." + +#: language/msgIds.php:23 +#, fuzzy +msgid "Request new password" +msgstr "Nowe hasło" + +#: language/msgIds.php:24 +#, fuzzy +msgid "Set new password" +msgstr "Nowe hasło" + +#: view/goalio-forgot-password/email/forgot.phtml:2 +msgid "" +"You have received this email because you initiated to reset your password " +"with us. To continue with the process, please click the link below:" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:1 +#: view/goalio-forgot-password/forgot/sent.phtml:1 +msgid "Forgot your password?" +msgstr "" + +#: view/goalio-forgot-password/forgot/forgot.phtml:23 +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:5 +msgid "Back to login." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:1 +msgid "Your password has been changed." +msgstr "" + +#: view/goalio-forgot-password/forgot/passwordchanged.phtml:3 +msgid "You can now login using your new password." +msgstr "" + +#: view/goalio-forgot-password/forgot/reset.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "Zmień hasło dla %s" + +#: view/goalio-forgot-password/forgot/sent.phtml:3 +#, php-format +msgid "A reminder has been sent to your e-mail address %s." +msgstr "" + +#: view/goalio-forgot-password/forgot/sent.phtml:5 +msgid "Back to login?" +msgstr "" + +#: view/zfc-user/user/login.phtml:33 +msgid "Not registered?" +msgstr "Nie posiadasz konta?" + +#: view/zfc-user/user/login.phtml:33 +msgid "Sign up!" +msgstr "Zarejestruj się!" + +#~ msgid "Change Email for %s" +#~ msgstr "Zmień e-mail dla %s" + +#~ msgid "Email address changed successfully." +#~ msgstr "Pomyślnie zaktualizowano e-mail." + +#~ msgid "Unable to update your email address. Please try again." +#~ msgstr "" +#~ "Nie udało się zaktualizować Twojego adresu e-mail. Proszę spróbuj " +#~ "ponownie." + +#~ msgid "Password changed successfully." +#~ msgstr "Pomyślnie zmieniono hasło." + +#~ msgid "Unable to update your password. Please try again." +#~ msgstr "Nie udało się zaktualizować Twojego hasła. Proszę spróbuj ponownie." + +#~ msgid "Hello" +#~ msgstr "Witaj" + +#~ msgid "Sign Out" +#~ msgstr "Wyloguj" diff --git a/language/ru_RU.mo b/language/ru_RU.mo new file mode 100644 index 0000000000000000000000000000000000000000..f7df04348e28fec7612c6c3b2c6096f52662fa97 GIT binary patch literal 2726 zcmbu9OKcle6ozl1KHjq6_{r9>=zt2BeO3{mp%y z$A8ZF#*WQjFg(wO<0iNp3ntIQSFz5cnr}KX?wkpvze4^4-i!53 zn;AO@ZUN(9J4kkiL5gz(r1+=6ACcoM_%`M?F24`{0CI2-oa_ZpfzN<8_&hiTQa;~; zyTCb+^7$Dg`@e%vfPaH;g4^JHC-@#n=RO4Yg45tj;5^s?{sxksFF+)`vcq5m>;P%K z7u*3F;2E$4X24%SI(HO5WVah^1BXE>A^D_yDYl0(AXD%>8j?WzlMi}GLrB6N!yvo# zJcY3hgLI&W;&>3_Nt)n6s_bcu2QX0n;GrC-rx0GC7cG)5>^OHs+I9?H&}BMjT3If0 zf}2*+lf0z6JY##7!H#=awWOKWrD08@Gw2E=aiu zRiInuY1E4jzxmk666gXn-=OSu%u(36=|t;8ydD<^g@Ean@JDCNTgpB zZAWUoZq_uk4lnC!DLcVOGMXXINud{xjR?z#rtLx`c{-(aIwI&L?F6z*@B^`Un-*)+ z;&FZ;o@k4`9E-iDb0+!O@LZ4XN-gE+mYdh5?IiesG|yT&-Q!2x@aKa+C;NCcPMzI7B{zqUn%GE6Fe}~;Ae?lz=_AC21{I950vZUsM z^>MYp5x^vX)rz_rW$H`VxgG>vMP$?Ahk-nn5E%Y)ZaDy}mB8i_PB)$V21c$SsY!&i zNWRxjQ4R\n" +"Language-Team: ZF Contibutors \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.4\n" +"X-Poedit-KeywordsList: translate\n" +"X-Poedit-Basepath: ../\n" +"X-Poedit-SearchPath-0: .\n" + +#: language/msgIds.php:6 +msgid "Username" +msgstr "Логин" + +#: language/msgIds.php:7 +msgid "Email" +msgstr "Email" + +#: language/msgIds.php:8 +msgid "New Email" +msgstr "Новый email" + +#: language/msgIds.php:9 +msgid "Verify New Email" +msgstr "Подтвердите новый email" + +#: language/msgIds.php:10 +msgid "Display Name" +msgstr "Отображаемое имя" + +#: language/msgIds.php:11 +msgid "Password" +msgstr "Пароль" + +#: language/msgIds.php:12 +msgid "Password Verify" +msgstr "Подтверждение пароля" + +#: language/msgIds.php:13 +msgid "Current Password" +msgstr "Текущий пароль" + +#: language/msgIds.php:14 +msgid "Verify New Password" +msgstr "Подтверждение нового пароля" + +#: language/msgIds.php:15 +msgid "New Password" +msgstr "Новый пароль" + +#: language/msgIds.php:16 +msgid "Please type the following text" +msgstr "Пожалуйста, введите следующий текст" + +#: language/msgIds.php:17 +msgid "Submit" +msgstr "Отправить" + +#: language/msgIds.php:18 view/zfc-user/user/login.phtml:1 +msgid "Sign In" +msgstr "Вход" + +#: language/msgIds.php:19 view/zfc-user/user/register.phtml:1 +msgid "Register" +msgstr "Регистрация" + +#: language/msgIds.php:20 +msgid "No record matching the input was found" +msgstr "Нет записей, соответствующих вашему запросу" + +#: language/msgIds.php:21 +msgid "A record matching the input was found" +msgstr "Найдена запись, соответствующая вашему запросу" + +#: language/msgIds.php:22 +msgid "Authentication failed. Please try again." +msgstr "Ошибка авторизации. Пожалуйста, попробуйте еще раз." + +#: view/zfc-user/user/changeemail.phtml:1 +#, php-format +msgid "Change Email for %s" +msgstr "Изменить email для %s" + +#: view/zfc-user/user/changeemail.phtml:3 +msgid "Email address changed successfully." +msgstr "Email успешно изменен" + +#: view/zfc-user/user/changeemail.phtml:5 +msgid "Unable to update your email address. Please try again." +msgstr "Не могу изменить email. Пожалуйста, попробуйте еще раз." + +#: view/zfc-user/user/changepassword.phtml:1 +#, php-format +msgid "Change Password for %s" +msgstr "Изменить пароль для %s" + +#: view/zfc-user/user/changepassword.phtml:3 +msgid "Password changed successfully." +msgstr "Пароль успешно изменен" + +#: view/zfc-user/user/changepassword.phtml:5 +msgid "Unable to update your password. Please try again." +msgstr "Не могу изменить пароль. Пожалуйста, попробуйте еще раз." + +#: view/zfc-user/user/index.phtml:2 +msgid "Hello" +msgstr "Привет" + +#: view/zfc-user/user/index.phtml:3 +msgid "Sign Out" +msgstr "Выйти" + +#: view/zfc-user/user/login.phtml:31 +msgid "Not registered?" +msgstr "Зарегистрированы?" + +#: view/zfc-user/user/login.phtml:31 +msgid "Sign up!" +msgstr "Регистрация" + +#: view/zfc-user/user/register.phtml:5 +msgid "Registration is disabled" +msgstr "" diff --git a/src/GoalioForgotPassword/Form/Forgot.php b/src/GoalioForgotPassword/Form/Forgot.php index aacc106..4ffd9dd 100644 --- a/src/GoalioForgotPassword/Form/Forgot.php +++ b/src/GoalioForgotPassword/Form/Forgot.php @@ -21,7 +21,7 @@ public function __construct($name = null, ForgotOptionsInterface $options) $this->add(array( 'name' => 'email', 'options' => array( - 'label' => 'E-Mail', + 'label' => 'Email', ), )); diff --git a/view/zfc-user/user/login.phtml b/view/zfc-user/user/login.phtml index 5945685..3489471 100644 --- a/view/zfc-user/user/login.phtml +++ b/view/zfc-user/user/login.phtml @@ -1,4 +1,4 @@ -

Sign In

+

translate('Sign In'); ?>

loginForm; @@ -30,6 +30,5 @@ $form->setAttribute('method', 'post');
enableRegistration) : ?> -Not registered? Sign up! +translate('Not registered?'); ?> translate('Sign up!'); ?> - From fedd60aa9d459923a94b94b6ac5989475ec8b06a Mon Sep 17 00:00:00 2001 From: stijnhau Date: Sun, 13 Apr 2014 14:04:54 +0200 Subject: [PATCH 6/8] Update module.config.php Fixed translation --- config/module.config.php | 1 - 1 file changed, 1 deletion(-) diff --git a/config/module.config.php b/config/module.config.php index 015d447..64775de 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -19,7 +19,6 @@ 'type' => 'gettext', 'base_dir' => __DIR__ . '/../language', 'pattern' => '%s.mo', - 'text_domain' => __NAMESPACE__, ), ), ), From 92a97e9536a47c47b43cd3a06134fdbd039b121b Mon Sep 17 00:00:00 2001 From: stijnhau Date: Sun, 13 Apr 2014 14:04:54 +0200 Subject: [PATCH 7/8] Adeedd extra string to translate --- config/module.config.php | 1 - view/zfc-user/user/login.phtml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config/module.config.php b/config/module.config.php index 015d447..64775de 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -19,7 +19,6 @@ 'type' => 'gettext', 'base_dir' => __DIR__ . '/../language', 'pattern' => '%s.mo', - 'text_domain' => __NAMESPACE__, ), ), ), diff --git a/view/zfc-user/user/login.phtml b/view/zfc-user/user/login.phtml index 3489471..317094d 100644 --- a/view/zfc-user/user/login.phtml +++ b/view/zfc-user/user/login.phtml @@ -27,7 +27,7 @@ $form->setAttribute('method', 'post'); form()->closeTag() ?> -

Forgot your password?

+

translate("Forgot your password?"); ?>

enableRegistration) : ?> translate('Not registered?'); ?> translate('Sign up!'); ?> From 8e63c5623361397459b6d02d4bee1f554361630b Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Tue, 15 Apr 2014 11:37:52 -0300 Subject: [PATCH 8/8] Erased Eclipse owned files. --- .buildpath | 5 ----- .project | 22 ---------------------- .settings/org.eclipse.php.core.prefs | 3 --- 3 files changed, 30 deletions(-) delete mode 100644 .buildpath delete mode 100644 .project delete mode 100644 .settings/org.eclipse.php.core.prefs diff --git a/.buildpath b/.buildpath deleted file mode 100644 index 0763f7c..0000000 --- a/.buildpath +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/.project b/.project deleted file mode 100644 index 2c13488..0000000 --- a/.project +++ /dev/null @@ -1,22 +0,0 @@ - - - GoalioForgotPassword - - - - - - org.eclipse.wst.validation.validationbuilder - - - - - org.eclipse.dltk.core.scriptbuilder - - - - - - org.eclipse.php.core.PHPNature - - diff --git a/.settings/org.eclipse.php.core.prefs b/.settings/org.eclipse.php.core.prefs deleted file mode 100644 index eb19107..0000000 --- a/.settings/org.eclipse.php.core.prefs +++ /dev/null @@ -1,3 +0,0 @@ -eclipse.preferences.version=1 -include_path=0;/GoalioForgotPassword -use_asp_tags_as_php=false

Forgot your password?