35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
<?PHP
|
|
|
|
$translations = [
|
|
"submit" => "Submit",
|
|
"options" => "Options",
|
|
"start" => "Start",
|
|
"fileUpload" => "File Uploads",
|
|
"users" => "Users",
|
|
"pages" => "Pages",
|
|
"edit" => "Edit",
|
|
"administration" => "Administration",
|
|
|
|
"usersOverview" => "Overview of All Users",
|
|
"listUsers" => "List users",
|
|
"addUser" => "Add user",
|
|
"userAdded" => "Successfully added new user: ",
|
|
"username" => "Username",
|
|
"helpUsername" => "<p>Username of the user. The user logs in with his or her username.</p><p><b>Required.</b></p>",
|
|
"email" => "Email Address",
|
|
"helpEmail" => "<p>Email address of the user. This needs to be saved, to be able to contact the user later on.</p><p><b>Required.</b></p>",
|
|
"password" => "Password",
|
|
"passwordVerify" => "Password (Verification)",
|
|
"helpPassword" => "<p>Password of the user. The password needs to be at least 8 characters long.</p><p><b>Required.</b></p>",
|
|
"realName" => "Real name",
|
|
"helpRealName" => "<p>Full, real name of the user. The full name is displayed next to entries by that person.</p><p><b>Required.</b></p>",
|
|
"helpUsers" => "<p>On this page, you can see access an overview of all users. You can also add new users here.</p>",
|
|
"helpStart" => "<p>This is the start page of md:cms.</p>",
|
|
|
|
"requiredValueMissing" => "A required value is missing.",
|
|
"passwordsDoNotMatch" => "The passwords do not match.",
|
|
"passwordTooShort" => "The passwords is too short.",
|
|
];
|
|
|
|
?>
|