Browse Source

BR fix, added missing translations

euromark 14 years ago
parent
commit
80e616e20f

+ 0 - 0
Locale/Please send me your translations and I will add them here!


+ 8 - 0
Locale/README.txt

@@ -0,0 +1,8 @@
+The .pot (template) file contains the translated strings
+copy them to your existing .po file in
+/app/locale/[language]/LC_MESSAGES/default.po
+
+For some languages there might be already out of the box translations available.
+If not, you can send them to me and I will add them.
+Note: You have to rename to default.po, as well.
+

+ 59 - 0
Locale/captcha.pot

@@ -0,0 +1,59 @@
+### Captcha Integration (Anti-Spam)
+
+msgid "Captcha"
+msgstr ""
+
+msgid "captchaExplained"
+msgstr ""
+
+msgid "calcMinus"
+msgstr ""
+
+msgid "calcPlus"
+msgstr ""
+
+msgid "calcTimes"
+msgstr ""
+
+
+msgid "captchaResultIncorrect"
+msgstr ""
+
+msgid "captchaResultTooFast"
+msgstr ""
+
+msgid "captchaIllegalContent"
+msgstr ""
+
+msgid "one"
+msgstr ""
+
+msgid "two"
+msgstr ""
+
+msgid "three"
+msgstr ""
+
+msgid "four"
+msgstr ""
+
+msgid "five"
+msgstr ""
+
+msgid "six"
+msgstr ""
+
+msgid "seven"
+msgstr ""
+
+msgid "eight"
+msgstr ""
+
+msgid "nine"
+msgstr ""
+
+msgid "ten"
+msgstr ""
+
+msgid "zero"
+msgstr ""

+ 59 - 0
Locale/captcha_de.po

@@ -0,0 +1,59 @@
+### Captcha Integration (Anti-Spam)
+
+msgid "Captcha"
+msgstr "Captcha"
+
+msgid "captchaExplained"
+msgstr "<small>Schutz vor Spam</small>"
+
+msgid "calcMinus"
+msgstr "minus"
+
+msgid "calcPlus"
+msgstr "plus"
+
+msgid "calcTimes"
+msgstr "mal"
+
+
+msgid "captchaResultIncorrect"
+msgstr "Das eingegebene Captcha-Ergebnis war nicht korrekt"
+
+msgid "captchaResultTooFast"
+msgstr "Das Formular wurde zu schnell abgeschickt - kannst du so schnell rechnen? :-)"
+
+msgid "captchaIllegalContent"
+msgstr "Illegaler Inhalt im Formular"
+
+msgid "one"
+msgstr "eins"
+
+msgid "two"
+msgstr "zwei"
+
+msgid "three"
+msgstr "drei"
+
+msgid "four"
+msgstr "vier"
+
+msgid "five"
+msgstr "fünf"
+
+msgid "six"
+msgstr "sechs"
+
+msgid "seven"
+msgstr "sieben"
+
+msgid "eight"
+msgstr "acht"
+
+msgid "nine"
+msgstr "neun"
+
+msgid "ten"
+msgstr "zehn"
+
+msgid "zero"
+msgstr "null"

+ 16 - 0
Locale/change_password.pot

@@ -0,0 +1,16 @@
+### ChangePassword Behavior
+
+msgid "valErrBetweenCharacters %s %s"
+msgstr ""
+
+msgid "valErrBetweenCharacters %s %s"
+msgstr ""
+
+msgid "valErrPwdNotMatch"
+msgstr ""
+
+msgid "valErrProvideCurrentPwd"
+msgstr ""
+
+msgid "valErrCurrentPwdIncorrect"
+msgstr ""

+ 13 - 0
Locale/change_password_de.po

@@ -0,0 +1,13 @@
+### ChangePassword Behavior
+
+msgid "valErrBetweenCharacters %s %s"
+msgstr "Zwischen %s und %s Zeichen"
+
+msgid "valErrPwdNotMatch"
+msgstr "Die beiden Passwörter stimmen nicht überein"
+
+msgid "valErrProvideCurrentPwd"
+msgstr "Bitte das bisherige Passwort eingeben"
+
+msgid "valErrCurrentPwdIncorrect"
+msgstr "Das bisherige Passwort ist nicht korrekt"

+ 4 - 0
Locale/confirmable.pot

@@ -0,0 +1,4 @@
+### Confirmable Behavior
+
+msgid "Please confirm the checkbox"
+msgstr ""

+ 6 - 1
View/Helper/CaptchaHelper.php

@@ -1,4 +1,9 @@
 <?php
+
+if (!defined('BR')) {
+	define('BR', '<br />');
+}
+
 /**
  * PHP5 / CakePHP1.3
  *
@@ -13,6 +18,7 @@
  * 2011-06-11 ms
  */
 class CaptchaHelper extends AppHelper {
+	
 	public $helpers = array('Form');
 
 	protected $defaults = array(
@@ -39,7 +45,6 @@ class CaptchaHelper extends AppHelper {
 		if (!empty($settings)) {
 			$this->settings = array_merge($this->settings, $settings);
 		}
-		
 	}