blob: 6b335841ad6b0d06c1d1f3759adb657a2b7bdfd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?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)
*
* US English message token translations for the 'account' sprinkle.
*
* @package userfrosting\i18n\en_US
* @author Alexander Weissman
*/
return [
"VALIDATE" => [
"PASSWORD_MISMATCH" => "Your password and confirmation password must match.",
"USERNAME" => "Username may consist only of lowercase letters, numbers, '.', '-', and '_'."
]
];
|