diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-02 19:23:11 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-02 19:23:11 +0100 |
commit | de2009ec2cde0ef1ede5e15bd0b9ff09a855e0de (patch) | |
tree | 632df51c445625ea31a40e315061ba8c9ecd2613 /plugins/password/localization | |
parent | 4fb36eb1a83c334a9c9cf20fa8d1caa4c9170150 (diff) |
Pulled de_CH translations from Transifex (first test)
Diffstat (limited to 'plugins/password/localization')
-rw-r--r-- | plugins/password/localization/de_CH.inc | 44 |
1 files changed, 25 insertions, 19 deletions
diff --git a/plugins/password/localization/de_CH.inc b/plugins/password/localization/de_CH.inc index 492a48df0..30a8be257 100644 --- a/plugins/password/localization/de_CH.inc +++ b/plugins/password/localization/de_CH.inc @@ -2,30 +2,36 @@ /* +-----------------------------------------------------------------------+ - | localization/de_CH/labels.inc | + | plugins/password/localization/<lang>.inc | | | - | Language file of the Roundcube Webmail client | + | Localization file of the Roundcube Webmail Password plugin | | Copyright (C) 2012, The Roundcube Dev Team | - | Licensed under the GNU General Public License | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | | | +-----------------------------------------------------------------------+ - | Author: Thomas | - +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ $labels = array(); -$labels['changepasswd'] = 'Passwort ändern'; -$labels['curpasswd'] = 'Aktuelles Passwort'; -$labels['newpasswd'] = 'Neues Passwort'; -$labels['confpasswd'] = 'Passwort Wiederholung'; -$labels['nopassword'] = 'Bitte geben Sie ein neues Passwort ein'; -$labels['nocurpassword'] = 'Bitte geben Sie Ihr aktuelles Passwort an'; -$labels['passwordincorrect'] = 'Das aktuelle Passwort ist nicht korrekt'; -$labels['passwordinconsistency'] = 'Das neue Passwort und dessen Wiederholung stimmen nicht überein'; -$labels['crypterror'] = 'Neues Passwort nicht gespeichert: Verschlüsselungsfunktion fehlt'; -$labels['connecterror'] = 'Neues Passwort nicht gespeichert: Verbindungsfehler'; -$labels['internalerror'] = 'Neues Passwort nicht gespeichert'; -$labels['passwordshort'] = 'Passwort muss mindestens $length Zeichen lang sein.'; -$labels['passwordweak'] = 'Passwort muss mindestens eine Zahl und ein Sonderzeichen enthalten.'; -$labels['passwordforbidden'] = 'Passwort enthält unzulässige Zeichen.'; +$labels['changepasswd'] = 'Passwort ändern'; +$labels['curpasswd'] = 'Aktuelles Passwort'; +$labels['newpasswd'] = 'Neues Passwort'; +$labels['confpasswd'] = 'Passwort Wiederholung'; + +$messages = array(); +$messages['nopassword'] = 'Bitte geben Sie ein neues Passwort ein'; +$messages['nocurpassword'] = 'Bitte geben Sie Ihr aktuelles Passwort an'; +$messages['passwordincorrect'] = 'Das aktuelle Passwort ist nicht korrekt'; +$messages['passwordinconsistency'] = 'Das neue Passwort und dessen Wiederholung stimmen nicht überein'; +$messages['crypterror'] = 'Neues Passwort nicht gespeichert: Verschlüsselungsfunktion fehlt'; +$messages['connecterror'] = 'Neues Passwort nicht gespeichert: Verbindungsfehler'; +$messages['internalerror'] = 'Neues Passwort nicht gespeichert'; +$messages['passwordshort'] = 'Passwort muss mindestens $length Zeichen lang sein.'; +$messages['passwordweak'] = 'Passwort muss mindestens eine Zahl und ein Sonderzeichen enthalten.'; +$messages['passwordforbidden'] = 'Passwort enthält unzulässige Zeichen.'; +?> |