blob: ea99fc07309095ae3937377f9e430719089bffa8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*
* German message token translations for the 'account' sprinkle.
*
* @package userfrosting\i18n\de
* @author X-Anonymous-Y
* @author kevinrombach
* @author splitt3r
*/
return [
"VALIDATE" => [
"PASSWORD_MISMATCH" => "Ihr Passwort und das Bestätigungspasswort müssen übereinstimmen.",
"USERNAME" => "Benutzernamen dürfen nur aus Kleinbuchstaben, Zahlen, '.', '-' und '_' bestehen."
]
];
|