97 lines
3.8 KiB
PHP
97 lines
3.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Forms Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are the default lines which match forms.
|
|
|
|
|
*/
|
|
|
|
// CREATE NEW USER FORM
|
|
'create_user_label_email' => 'E-Mail',
|
|
'create_user_ph_email' => 'E-Mail',
|
|
'create_user_icon_email' => 'fa-envelope',
|
|
|
|
'create_user_label_username' => 'Benutzername',
|
|
'create_user_ph_username' => 'Benutzername',
|
|
'create_user_icon_username' => 'fa-user',
|
|
|
|
'create_user_label_firstname' => 'Vorname',
|
|
'create_user_ph_firstname' => 'Vorname',
|
|
'create_user_icon_firstname' => 'fa-user',
|
|
|
|
'create_user_label_lastname' => 'Last Name',
|
|
'create_user_ph_lastname' => 'Last Name',
|
|
'create_user_icon_lastname' => 'fa-user',
|
|
|
|
'create_user_label_password' => 'Passwort',
|
|
'create_user_ph_password' => 'Passwort',
|
|
'create_user_icon_password' => 'fa-lock',
|
|
|
|
'create_user_label_pw_confirmation' => 'Passwort bestätigen',
|
|
'create_user_ph_pw_confirmation' => 'Passwort bestätigen',
|
|
'create_user_icon_pw_confirmation' => 'fa-lock',
|
|
|
|
'create_user_label_location' => 'Ort',
|
|
'create_user_ph_location' => 'Ort',
|
|
'create_user_icon_location' => 'fa-map-marker',
|
|
|
|
'create_user_label_bio' => 'Biographie',
|
|
'create_user_ph_bio' => 'Biographie',
|
|
'create_user_icon_bio' => 'fa-pencil',
|
|
|
|
'create_user_label_twitter_username' => 'Twitter Benutzername',
|
|
'create_user_ph_twitter_username' => 'Twitter Benutzername',
|
|
'create_user_icon_twitter_username' => 'fa-twitter',
|
|
|
|
'create_user_label_github_username' => 'GitHub Benutzername',
|
|
'create_user_ph_github_username' => 'GitHub Benutzername',
|
|
'create_user_icon_github_username' => 'fa-github',
|
|
|
|
'create_user_label_career_title' => 'Beruf',
|
|
'create_user_ph_career_title' => 'Beruf',
|
|
'create_user_icon_career_title' => 'fa-briefcase',
|
|
|
|
'create_user_label_education' => 'Schulabschluß',
|
|
'create_user_ph_education' => 'Schulabschluß',
|
|
'create_user_icon_education' => 'fa-graduation-cap',
|
|
|
|
'create_user_label_role' => 'Benutzerrolle',
|
|
'create_user_ph_role' => 'Benutzerrolle auswählen',
|
|
'create_user_icon_role' => 'fas fa-fw fas fa-shield-alt',
|
|
|
|
'create_user_button_text' => '<i class="fa fa-user-plus" aria-hidden="true"></i> Neuen Benutzer anlegen',
|
|
|
|
// EDIT USER AS ADMINISTRATOR FORM
|
|
'edit-user-admin-title' => 'Benutzer bearbeiten',
|
|
|
|
'label-username' => 'Benutzername',
|
|
'ph-username' => 'Benutzername',
|
|
|
|
'label-useremail' => 'E-Mail',
|
|
'ph-useremail' => 'E-Mail',
|
|
|
|
'label-userrole_id' => 'Zugriffstufe',
|
|
'option-label' => 'Stufe auswählen',
|
|
'option-user' => 'User',
|
|
'option-editor' => 'Editor',
|
|
'option-admin' => 'Administrator',
|
|
'submit-btn-text' => 'Benutzer bearbeiten!',
|
|
|
|
'submit-btn-icon' => 'fa-save',
|
|
'username-icon' => 'fa-user',
|
|
'useremail-icon' => 'fa-envelope-o',
|
|
|
|
'change-pw' => 'Passwort ändern',
|
|
'cancel' => 'Abbruch',
|
|
'save-changes' => '<i class="fa fa-fw fa-save" aria-hidden="true"></i> Änderungen speichern',
|
|
|
|
// Search Users Form
|
|
'search-users-ph' => 'Benutzer durchsuchen',
|
|
|
|
];
|