From 4562abdd013ab66839e168231233762edc8aa5cc Mon Sep 17 00:00:00 2001 From: Switzerbaden Date: Mon, 15 Nov 2021 17:48:03 +0100 Subject: [PATCH 1/4] Allow all source files to be filtered --- wp-user-profiles.php | 88 +++++++++++++++++++++++++------------------- 1 file changed, 51 insertions(+), 37 deletions(-) diff --git a/wp-user-profiles.php b/wp-user-profiles.php index a193cfc..84d6aac 100644 --- a/wp-user-profiles.php +++ b/wp-user-profiles.php @@ -28,46 +28,60 @@ function _wp_user_profiles() { // Get the plugin path $plugin_path = plugin_dir_path( __FILE__ ) . 'wp-user-profiles/'; + + // Core Files + $sources = array( + // Sections + 'includes/sections/base.php', + 'includes/sections/profile.php', + 'includes/sections/account.php', + 'includes/sections/options.php', + 'includes/sections/other.php', + 'includes/sections/permissions.php', + 'includes/sections/sites.php', - // Sections - require_once $plugin_path . 'includes/sections/base.php'; - require_once $plugin_path . 'includes/sections/profile.php'; - require_once $plugin_path . 'includes/sections/account.php'; - require_once $plugin_path . 'includes/sections/options.php'; - require_once $plugin_path . 'includes/sections/other.php'; - require_once $plugin_path . 'includes/sections/permissions.php'; - require_once $plugin_path . 'includes/sections/sites.php'; + // Meta Boxes + 'includes/metaboxes/all-status.php', + 'includes/metaboxes/account-email.php', + 'includes/metaboxes/account-language.php', + 'includes/metaboxes/account-password.php', + 'includes/metaboxes/account-applications.php', + 'includes/metaboxes/account-sessions.php', + 'includes/metaboxes/options-color-scheme.php', + 'includes/metaboxes/options-contact.php', + 'includes/metaboxes/options-personal.php', + 'includes/metaboxes/other-all.php', + 'includes/metaboxes/permissions-capabilities.php', + 'includes/metaboxes/permissions-roles.php', + 'includes/metaboxes/profile-about.php', + 'includes/metaboxes/profile-name.php', + 'includes/metaboxes/sites-list.php', + 'includes/metaboxes/sites-primary.php', - // Meta Boxes - require_once $plugin_path . 'includes/metaboxes/all-status.php'; - require_once $plugin_path . 'includes/metaboxes/account-email.php'; - require_once $plugin_path . 'includes/metaboxes/account-language.php'; - require_once $plugin_path . 'includes/metaboxes/account-password.php'; - require_once $plugin_path . 'includes/metaboxes/account-applications.php'; - require_once $plugin_path . 'includes/metaboxes/account-sessions.php'; - require_once $plugin_path . 'includes/metaboxes/options-color-scheme.php'; - require_once $plugin_path . 'includes/metaboxes/options-contact.php'; - require_once $plugin_path . 'includes/metaboxes/options-personal.php'; - require_once $plugin_path . 'includes/metaboxes/other-all.php'; - require_once $plugin_path . 'includes/metaboxes/permissions-capabilities.php'; - require_once $plugin_path . 'includes/metaboxes/permissions-roles.php'; - require_once $plugin_path . 'includes/metaboxes/profile-about.php'; - require_once $plugin_path . 'includes/metaboxes/profile-name.php'; - require_once $plugin_path . 'includes/metaboxes/sites-list.php'; - require_once $plugin_path . 'includes/metaboxes/sites-primary.php'; + // Required Files + 'includes/admin.php', + 'includes/capabilities.php', + 'includes/dependencies.php', + 'includes/common.php', + 'includes/help.php', + 'includes/metaboxes.php', + 'includes/screen-options.php', + 'includes/sections.php', + 'includes/sponsor.php', + 'includes/status.php', + 'includes/hooks.php' + ); - // Required Files - require_once $plugin_path . 'includes/admin.php'; - require_once $plugin_path . 'includes/capabilities.php'; - require_once $plugin_path . 'includes/dependencies.php'; - require_once $plugin_path . 'includes/common.php'; - require_once $plugin_path . 'includes/help.php'; - require_once $plugin_path . 'includes/metaboxes.php'; - require_once $plugin_path . 'includes/screen-options.php'; - require_once $plugin_path . 'includes/sections.php'; - require_once $plugin_path . 'includes/sponsor.php'; - require_once $plugin_path . 'includes/status.php'; - require_once $plugin_path . 'includes/hooks.php'; + $files = array(); + foreach( $sources as $key => $source ) { + $files[ $key ] = $plugin_path . $source; + } + // Allow for filtering of the Core Files + $core_files = apply_filters( 'wp_user_profiles_core_files', $files, $sources ); + + foreach( $core_files as $file ) { + require_once( $file ); + } // Load translations load_plugin_textdomain( 'wp-user-profiles' ); From 3af052acbc29662c678072204e67081d04ce6bd0 Mon Sep 17 00:00:00 2001 From: Switzerbaden Date: Mon, 15 Nov 2021 18:08:44 +0100 Subject: [PATCH 2/4] corrected a typo in the comment --- wp-user-profiles/includes/sections.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-user-profiles/includes/sections.php b/wp-user-profiles/includes/sections.php index d3dcdee..48bef46 100644 --- a/wp-user-profiles/includes/sections.php +++ b/wp-user-profiles/includes/sections.php @@ -89,7 +89,7 @@ function wp_user_profiles_register_other_section() { } /** - * Register the "Options" section + * Register the "Persissions" section * * @since 0.2.0 * From aeeaac56fb1d291d2e05b91686c2db6fc00d823c Mon Sep 17 00:00:00 2001 From: Switzerbaden Date: Mon, 17 Jan 2022 20:20:50 +0100 Subject: [PATCH 3/4] added missing strings to pot file --- .../assets/languages/wp-user-profiles.pot | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/wp-user-profiles/assets/languages/wp-user-profiles.pot b/wp-user-profiles/assets/languages/wp-user-profiles.pot index bd9609b..4d877e3 100644 --- a/wp-user-profiles/assets/languages/wp-user-profiles.pot +++ b/wp-user-profiles/assets/languages/wp-user-profiles.pot @@ -111,6 +111,18 @@ msgstr "" msgid "Confirm use of weak password" msgstr "" +#: wp-user-profiles/includes/metaboxes/account-password.php:70 +msgid "Password Reset" +msgstr "" + +#: wp-user-profiles/includes/metaboxes/account-password.php:74 +msgid "Send Password Reset Email" +msgstr "" + +#: wp-user-profiles/includes/metaboxes/account-password.php:78 +msgid "Sending this email does not force-change their password." +msgstr "" + #: wp-user-profiles/includes/metaboxes/account-sessions.php:29 #: wp-user-profiles/includes/metaboxes/account-sessions.php:41 #: wp-user-profiles/includes/metaboxes/account-sessions.php:53 From de26eb0c232d0fa38b1c63e6f5514b8171874a04 Mon Sep 17 00:00:00 2001 From: Switzerbaden Date: Mon, 17 Jan 2022 20:21:03 +0100 Subject: [PATCH 4/4] added de_DE language files --- .../languages/wp-user-profiles-de_DE.mo | Bin 0 -> 11263 bytes .../languages/wp-user-profiles-de_DE.po | 515 ++++++++++++++++++ 2 files changed, 515 insertions(+) create mode 100644 wp-user-profiles/assets/languages/wp-user-profiles-de_DE.mo create mode 100644 wp-user-profiles/assets/languages/wp-user-profiles-de_DE.po diff --git a/wp-user-profiles/assets/languages/wp-user-profiles-de_DE.mo b/wp-user-profiles/assets/languages/wp-user-profiles-de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..ec8db117be1024cd4b62f1a45aab0851fe130627 GIT binary patch literal 11263 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: Please enter a nickname." +msgstr "FEHLER:: Bitte geben Sie einen Spitznamen ein." + +#: wp-user-profiles/includes/sections/profile.php:96 +msgid "ERROR: Please enter a username." +msgstr "FEHLER:: Bitte geben Sie einen Benutzernamen ein." + +#: wp-user-profiles/includes/sections/profile.php:91 +msgid "ERROR: This username is already registered. Please choose another one." +msgstr "FEHLER:: Dieser Benutzername ist bereits registriert. Bitte wählen Sie einen anderen." + +#: wp-user-profiles/includes/sections/profile.php:86 +msgid "ERROR: This username is invalid because it uses illegal characters. Please enter a valid username." +msgstr "FEHLER:: Dieser Benutzername ist ungültig, da er verbotene Zeichen benutzt. Bitte geben Sie einen gültigen Benutzernamen ein." + +#: wp-user-profiles/includes/sections/profile.php:58 +msgctxt "users user-admin edit screen" +msgid "Contact" +msgstr "Kontaktinfo" + +#: wp-user-profiles/includes/sections/profile.php:46 +msgctxt "users user-admin edit screen" +msgid "About" +msgstr "Über den Benutzer" + +#: wp-user-profiles/includes/sections/profile.php:35 +msgctxt "users user-admin edit screen" +msgid "Name" +msgstr "Name" + +#: wp-user-profiles/includes/sections/permissions.php:133 +msgid "Some capabilities may be uniquely granted" +msgstr "Manche Berechtigungen können einzeln vergeben werden" + +#: wp-user-profiles/includes/sections/permissions.php:132 +msgid "In some cases, you may have more than one role" +msgstr "In manchen Fällen können Sie mehr als eine Rolle haben" + +#: wp-user-profiles/includes/sections/permissions.php:131 +msgid "Your role determines what you are able to do" +msgstr "Ihre Rolle entscheidet darüber, welche Aktionen Sie durchführen können" + +#: wp-user-profiles/includes/sections/permissions.php:130 +msgid "This is where role & capability settings can be found." +msgstr "Hier finden Sie Einstellungen zu Rollen und Berechtigungen." + +#: wp-user-profiles/includes/sections/permissions.php:46 +msgctxt "users user-admin edit screen" +msgid "Additional Capabilities" +msgstr "Zusätzliche Berechtigungen" + +#: wp-user-profiles/includes/sections/permissions.php:35 +msgctxt "users user-admin edit screen" +msgid "Roles" +msgstr "Rollen" + +#: wp-user-profiles/includes/sections/options.php:109 +msgid "Comment Moderation Shortcuts" +msgstr "Tastaturkürzel für die Kommentarmoderation" + +#: wp-user-profiles/includes/sections/options.php:107 +msgid "Color Schemes" +msgstr "Farbschemata" + +#: wp-user-profiles/includes/sections/options.php:48 +msgctxt "users user-admin edit screen" +msgid "Personal Options" +msgstr "Persönliche Optionen" + +#: wp-user-profiles/includes/sections/options.php:106 +msgid "This is where most options & site preferences can be found." +msgstr "Hier finden Sie die meisten Optionen und Website-Einstellungen." + +#: wp-user-profiles/includes/sections/options.php:36 +msgctxt "users user-admin edit screen" +msgid "Color Scheme" +msgstr "Farbschema" + +#: wp-user-profiles/includes/sections/account.php:181 +msgid "Sessions are logged from each device you login from" +msgstr "Sessions werden von jedem Gerät, von dem Sie sich anmelden, gespeichert" + +#: wp-user-profiles/includes/sections/account.php:180 +msgid "The language you pick will be used wherever it is supported." +msgstr "Die hier ausgewählte Sprache wird verwendet, wo immer sie unterstützt wird." + +#: wp-user-profiles/includes/sections/account.php:120 +msgid "ERROR: Please enter the same password in both password fields." +msgstr "FEHLER: Bitte geben Sie ein identisches Passwort in beiden Passwort-Feldern ein." + +#: wp-user-profiles/includes/sections/account.php:115 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "FEHLER: Passwörter dürfen nicht das Zeichen \"\\\" enthalten." + +#: wp-user-profiles/includes/sections/account.php:68 +msgctxt "users user-admin edit screen" +msgid "Sessions" +msgstr "Sessions" + +#: wp-user-profiles/includes/sections/account.php:57 +msgctxt "users user-admin edit screen" +msgid "Language" +msgstr "Sprache" + +#: wp-user-profiles/includes/sections/account.php:46 +msgctxt "users user-admin edit screen" +msgid "Password" +msgstr "Passwort" + +#: wp-user-profiles/includes/metaboxes.php:52 +msgctxt "users user-admin edit screen" +msgid "Status" +msgstr "Status" + +#: wp-user-profiles/includes/capabilities.php:76 +msgid "Invalid user ID." +msgstr "Ungültige Benutzer-ID." + +#: wp-user-profiles/includes/metaboxes/sites-primary.php:62 +msgid "This user is not a member of any sites." +msgstr "Dieser Benutzer ist auf keiner Website Mitglied." + +#: wp-user-profiles/includes/metaboxes/sites-primary.php:61 +msgid "You are not a member of any sites." +msgstr "Sie sind auf keiner Website Mitglied." + +#: wp-user-profiles/includes/metaboxes/sites-primary.php:42 +msgid "Primary Site" +msgstr "Primäre Website" + +#: wp-user-profiles/includes/metaboxes/profile-name.php:97 +msgid "Display name publicly as" +msgstr "Name öffentlich anzeigen als" + +#: wp-user-profiles/includes/metaboxes/profile-name.php:86 +msgid "Nickname" +msgstr "Spitzname" + +#: wp-user-profiles/includes/metaboxes/profile-name.php:77 +msgid "Last Name" +msgstr "Nachname" + +#: wp-user-profiles/includes/metaboxes/profile-name.php:68 +msgid "First Name" +msgstr "Vorname" + +#: wp-user-profiles/includes/metaboxes/profile-name.php:61 +msgid "Usernames cannot be changed." +msgstr "Benutzernamen können nicht geändert werden." + +#: wp-user-profiles/includes/metaboxes/profile-name.php:58 +msgid "Username" +msgstr "Benutzername" + +#: wp-user-profiles/includes/metaboxes/profile-about.php:45 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Teilen Sie ein paar biografische Informationen, um Ihr Profil zu ergänzen. Die Informationen könnten öffentlich sichtbar sein." + +#: wp-user-profiles/includes/metaboxes/profile-about.php:39 +msgid "Biographical Info" +msgstr "Biografische Angaben" + +#: wp-user-profiles/includes/metaboxes/profile-about.php:30 +msgid "Website" +msgstr "Website" + +#: wp-user-profiles/includes/metaboxes/permissions-roles.php:108 +msgid "— No role for this site —" +msgstr "— Keine Rolle auf dieser Website —" + +#: wp-user-profiles/includes/metaboxes/permissions-roles.php:57 +msgid "This user has no role on any sites" +msgstr "Dieser Benutzer hat auf keiner Website eine Rolle" + +#: wp-user-profiles/includes/metaboxes/permissions-roles.php:56 +msgid "You have no role on any sites." +msgstr "Sie haben auf keiner Website eine Rolle." + +#: wp-user-profiles/includes/metaboxes/permissions-roles.php:50 +msgid "No Sites" +msgstr "Keine Websites" + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:86 +msgid "No additional capabilities" +msgstr "Keine zusätzlichen Berechtigungen" + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:79 +msgid "Denied: %s" +msgstr "Verweigert: %s" + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:78 +msgid "Allowed: %s" +msgstr "Erlaubt: %s" + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:66 +msgid "Capabilities" +msgstr "Berechtigungen" + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:39 +msgid "Super Admin" +msgstr "Super-Administrator" + +#: wp-user-profiles/includes/metaboxes/options-personal.php:103 +msgid "Show Toolbar when viewing site" +msgstr "Werkzeugleiste für mich auf der Website anzeigen" + +#: wp-user-profiles/includes/metaboxes/options-personal.php:97 +#: wp-user-profiles/includes/metaboxes/options-personal.php:100 +msgid "Toolbar" +msgstr "Werkzeugleiste" + +#: wp-user-profiles/includes/metaboxes/options-personal.php:86 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Tastaturkürzel für die Kommentarmoderation aktivieren." + +#: wp-user-profiles/includes/metaboxes/options-personal.php:83 +msgid "Keyboard Shortcuts" +msgstr "Tastaturkürzel" + +#: wp-user-profiles/includes/metaboxes/options-personal.php:58 +msgid "Disable the visual editor when writing" +msgstr "Beim Schreiben den visuellen Editor nicht benutzen" + +#: wp-user-profiles/includes/metaboxes/options-personal.php:55 +#: wp-user-profiles/includes/sections/options.php:108 +msgid "Visual Editor" +msgstr "Visueller Editor" + +#: wp-user-profiles/includes/metaboxes/options-color-scheme.php:26 +msgid "Admin Color Scheme" +msgstr "Farbschema verwalten" + +#: wp-user-profiles/includes/metaboxes/all-status.php:68 +msgid "Update" +msgstr "Aktualisieren" + +#: wp-user-profiles/includes/metaboxes/all-status.php:67 +msgid "View User" +msgstr "Benutzer ansehen" + +#: wp-user-profiles/includes/metaboxes/all-status.php:54 +msgid "Registered on: %1$s" +msgstr "Registriert am: %1$s" + +#: wp-user-profiles/includes/metaboxes/all-status.php:44 +msgid "Spammer" +msgstr "Spam" + +#: wp-user-profiles/includes/metaboxes/all-status.php:42 +msgid "Active" +msgstr "Aktiv" + +#. translators: 1: User's display name. +#: wp-user-profiles/includes/metaboxes/account-sessions.php:77 +msgid "%s has not logged in yet." +msgstr "%s hat sich noch nicht angemeldet." + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:72 +#: wp-user-profiles/includes/metaboxes/all-status.php:43 +msgid "Inactive" +msgstr "Inaktiv" + +#. translators: 1: User's display name. +#: wp-user-profiles/includes/metaboxes/account-sessions.php:63 +msgid "Log %s out of all locations." +msgstr "%s an allen Plätzen abmelden." + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:59 +msgid "Log Out Everywhere" +msgstr "Überall abmelden" + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:37 +msgid "You are only logged in at this location." +msgstr "Sie sind nur an diesem Ort angemeldet." + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:35 +#: wp-user-profiles/includes/metaboxes/account-sessions.php:47 +msgid "Log Out Everywhere Else" +msgstr "Überall sonst abmelden" + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:33 +#: wp-user-profiles/includes/metaboxes/account-sessions.php:45 +#: wp-user-profiles/includes/metaboxes/account-sessions.php:57 +msgid "Sessions" +msgstr "Sessions" + +#: wp-user-profiles/includes/metaboxes/account-password.php:62 +#: wp-user-profiles/assets/js/user-profiles.js:42 +msgid "Confirm use of weak password" +msgstr "Bitte bestätigen Sie die Verwendung des schwachen Passwortes" + +#: wp-user-profiles/includes/metaboxes/account-password.php:58 +msgid "Confirm Password" +msgstr "Passwort bestätigen" + +#: wp-user-profiles/includes/metaboxes/account-password.php:47 +msgid "Repeat New Password" +msgstr "Neues Passwort wiederholen" + +#: wp-user-profiles/includes/metaboxes/account-password.php:70 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: wp-user-profiles/includes/metaboxes/account-password.php:74 +msgid "Send Password Reset Email" +msgstr "E-Mail zum Zurücksetzen des Passworts senden" + +#: wp-user-profiles/includes/metaboxes/account-password.php:74 +msgid "Sending this email does not force-change their password." +msgstr "Durch das Senden dieser E-Mail wird das Passwort nicht zwangsweise geändert." + +#: wp-user-profiles/includes/metaboxes/account-password.php:38 +#: wp-user-profiles/includes/metaboxes/account-password.php:40 +msgid "Cancel" +msgstr "Abbrechen" + +#: wp-user-profiles/includes/metaboxes/account-password.php:36 +#: wp-user-profiles/assets/js/user-profiles.js:76 +msgid "Hide" +msgstr "Ausblenden" + +#: wp-user-profiles/includes/metaboxes/account-password.php:34 +#: wp-user-profiles/assets/js/user-profiles.js:71 +msgid "Hide password" +msgstr "Passwort ausblenden" + +#: wp-user-profiles/includes/metaboxes/account-password.php:26 +msgid "New Password" +msgstr "Neues Passwort" + +#: wp-user-profiles/includes/metaboxes/account-language.php:37 +msgid "Language" +msgstr "Sprache" + +#: wp-user-profiles/includes/metaboxes/account-email.php:41 +msgid "There is a pending change of your email to %1$s. Cancel" +msgstr "Eine Änderung Ihrer E-Mail-Adresse in %1$s steht noch aus. Abbrechen" + +#: wp-user-profiles/includes/metaboxes/account-email.php:30 +#: wp-user-profiles/includes/metaboxes/profile-name.php:87 +msgid "(required)" +msgstr "(erforderlich)" + +#: wp-user-profiles/includes/help.php:21 +msgid "Some information may be displayed publicly on the site." +msgstr "Manche Informationen könnten auf der Website öffentlich dargestellt werden." + +#: wp-user-profiles/includes/common.php:446 +msgid "User updated." +msgstr "Benutzer aktualisiert." + +#: wp-user-profiles/includes/admin.php:643 +msgctxt "user" +msgid "Add Existing" +msgstr "Bestehenden hinzufügen" + +#: wp-user-profiles/includes/admin.php:639 +msgctxt "user" +msgid "Add New" +msgstr "Neu hinzufügen" + +#: wp-user-profiles/includes/admin.php:336 +#: wp-user-profiles/includes/metaboxes/account-applications.php:101 +#: wp-user-profiles/assets/js/app-passwords.js:212 +#: wp-user-profiles/assets/js/user-profiles.js:179 +msgid "Dismiss this notice." +msgstr "Diese Mitteilung ausblenden." + +#: wp-user-profiles/includes/admin.php:329 +msgid "← Back to Users" +msgstr "← Zurück zu Benutzer" + +#: wp-user-profiles/includes/admin.php:147 +#: wp-user-profiles/includes/admin.php:148 +#: wp-user-profiles/includes/admin.php:216 +#: wp-user-profiles/includes/admin.php:217 +#: wp-user-profiles/includes/sections.php:23 +msgid "Profile" +msgstr "Profil" + +#: wp-user-profiles/includes/sections/account.php:35 +msgctxt "users user-admin edit screen" +msgid "Email" +msgstr "E-Mail-Adresse" + +#: wp-user-profiles/includes/sections/account.php:151 +msgid "ERROR: Please enter an email address." +msgstr "FEHLER: Bitte geben Sie eine E-Mail-Adresse ein." + +#: wp-user-profiles/includes/sections/account.php:155 +msgid "ERROR: The email address is not correct." +msgstr "FEHLER: Diese E-Mail-Adresse ist nicht korrekt." + +#: wp-user-profiles/includes/sections/account.php:159 +msgid "ERROR: This email is already in use." +msgstr "FEHLER: Diese E-Mail-Adresse wird bereits verwendet." + +#: wp-user-profiles/includes/sections/account.php:178 +msgid "Your email address is used for receiving notifications from this site" +msgstr "Ihre E-Mail-Adresse wird dazu verwendet, Benachrichtigungen von dieser Website zu erhalten." + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:53 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Diesem Benutzer können nicht die Super-Administratoren-Rechte entzogen werden, da dieser Benutzer als E-Mail-Adresse die des Netzwerk-Administrators hat." + +#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:47 +msgid "Grant this user super admin privileges for the Network." +msgstr "Diesem Benutzer Super-Administratoren-Rechte für das gesamte Netzwerk erteilen." + +#: wp-user-profiles/includes/metaboxes/account-email.php:29 +msgid "Email" +msgstr "E-Mail-Adresse" + +#: wp-user-profiles/includes/help.php:22 +msgid "Always use a strong password, and never give your login information to anyone." +msgstr "Verwenden Sie immer ein sicheres Passwort und geben Sie Ihre Anmeldedaten niemals an Dritte weiter." + +#: wp-user-profiles/includes/metaboxes/account-password.php:51 +msgid "Type your new password again." +msgstr "Geben Sie Ihr neues Passwort ein weiteres Mal ein." + +#: wp-user-profiles/includes/sections/account.php:179 +msgid "Passwords should be lengthy and complex to help keep your account secure" +msgstr "Passwörter sollten lang und komplex sein, um Ihr Konto abzusichern." + +#: wp-user-profiles/includes/sections.php:41 +msgid "Account" +msgstr "Konto" + +#: wp-user-profiles/includes/sections/account.php:177 +msgid "This is where important account information can be found." +msgstr "Hier finden Sie wichtige Informationen zu Ihrem Konto." + +#: wp-user-profiles/includes/metaboxes/account-sessions.php:49 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Haben Sie Ihr Smartphone verloren oder an einem öffentlich zugänglichen Computer Ihr Konto angemeldet gelassen? Sie können sich überall sonst abmelden und hier angemeldet bleiben."