Merge branch 'localization-de' of git://github.com/robertlandes/BookStack into r…
…obertlandes-localization-de
Showing
7 changed files
with
266 additions
and
0 deletions
resources/lang/de/activities.php
0 → 100644
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +return [ | ||
| 4 | + | ||
| 5 | + /** | ||
| 6 | + * Activity text strings. | ||
| 7 | + * Is used for all the text within activity logs & notifications. | ||
| 8 | + */ | ||
| 9 | + | ||
| 10 | + // Pages | ||
| 11 | + 'page_create' => 'Seite erstellt', | ||
| 12 | + 'page_create_notification' => 'Seite erfolgreich erstellt', | ||
| 13 | + 'page_update' => 'Seite aktualisiert', | ||
| 14 | + 'page_update_notification' => 'Seite erfolgreich aktualisiert', | ||
| 15 | + 'page_delete' => 'Seite gelöscht', | ||
| 16 | + 'page_delete_notification' => 'Seite erfolgreich gelöscht', | ||
| 17 | + 'page_restore' => 'Seite wiederhergstellt', | ||
| 18 | + 'page_restore_notification' => 'Seite erfolgreich wiederhergstellt', | ||
| 19 | + 'page_move' => 'Seite verschoben', | ||
| 20 | + | ||
| 21 | + // Chapters | ||
| 22 | + 'chapter_create' => 'Kapitel erstellt', | ||
| 23 | + 'chapter_create_notification' => 'Kapitel erfolgreich erstellt', | ||
| 24 | + 'chapter_update' => 'Kapitel aktualisiert', | ||
| 25 | + 'chapter_update_notification' => 'Kapitel erfolgreich aktualisiert', | ||
| 26 | + 'chapter_delete' => 'Kapitel gelöscht', | ||
| 27 | + 'chapter_delete_notification' => 'Kapitel erfolgreich gelöscht', | ||
| 28 | + 'chapter_move' => 'Kapitel verschoben', | ||
| 29 | + | ||
| 30 | + // Books | ||
| 31 | + 'book_create' => 'Buch erstellt', | ||
| 32 | + 'book_create_notification' => 'Buch erfolgreich erstellt', | ||
| 33 | + 'book_update' => 'Buch aktualisiert', | ||
| 34 | + 'book_update_notification' => 'Buch erfolgreich aktualisiert', | ||
| 35 | + 'book_delete' => 'Buch gelöscht', | ||
| 36 | + 'book_delete_notification' => 'Buch erfolgreich gelöscht', | ||
| 37 | + 'book_sort' => 'Buch sortiert', | ||
| 38 | + 'book_sort_notification' => 'Buch erfolgreich neu sortiert', | ||
| 39 | + | ||
| 40 | +]; |
resources/lang/de/auth.php
0 → 100644
| 1 | +<?php | ||
| 2 | +return [ | ||
| 3 | + /* | ||
| 4 | + |-------------------------------------------------------------------------- | ||
| 5 | + | Authentication Language Lines | ||
| 6 | + |-------------------------------------------------------------------------- | ||
| 7 | + | | ||
| 8 | + | The following language lines are used during authentication for various | ||
| 9 | + | messages that we need to display to the user. You are free to modify | ||
| 10 | + | these language lines according to your application's requirements. | ||
| 11 | + | | ||
| 12 | + */ | ||
| 13 | + 'failed' => 'Dies sind keine gültigen Anmeldedaten.', | ||
| 14 | + 'throttle' => 'Zu viele Anmeldeversuche. Bitte versuchen sie es in :seconds Sekunden erneut.', | ||
| 15 | + | ||
| 16 | + /** | ||
| 17 | + * Email Confirmation Text | ||
| 18 | + */ | ||
| 19 | + 'email_confirm_subject' => 'Bestätigen sie ihre E-Mail Adresse bei :appName', | ||
| 20 | + 'email_confirm_greeting' => 'Danke, dass sie :appName beigetreten sind!', | ||
| 21 | + 'email_confirm_text' => 'Bitte bestätigen sie ihre E-Mail Adresse, indem sie auf den Button klicken:', | ||
| 22 | + 'email_confirm_action' => 'E-Mail Adresse bestätigen', | ||
| 23 | + 'email_confirm_send_error' => 'Bestätigungs-E-Mail benötigt, aber das System konnte die E-Mail nicht versenden. Kontaktieren sie den Administrator, um sicherzustellen, dass das Sytsem korrekt eingerichtet ist.', | ||
| 24 | + 'email_confirm_success' => 'Ihre E-Mail Adresse wurde bestätigt!', | ||
| 25 | + 'email_confirm_resent' => 'Bestätigungs-E-Mail wurde erneut versendet, bitte überprüfen sie ihren Posteingang.', | ||
| 26 | +]; |
resources/lang/de/errors.php
0 → 100644
resources/lang/de/pagination.php
0 → 100644
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +return [ | ||
| 4 | + | ||
| 5 | + /* | ||
| 6 | + |-------------------------------------------------------------------------- | ||
| 7 | + | Pagination Language Lines | ||
| 8 | + |-------------------------------------------------------------------------- | ||
| 9 | + | | ||
| 10 | + | The following language lines are used by the paginator library to build | ||
| 11 | + | the simple pagination links. You are free to change them to anything | ||
| 12 | + | you want to customize your views to better match your application. | ||
| 13 | + | | ||
| 14 | + */ | ||
| 15 | + | ||
| 16 | + 'previous' => '« Vorherige', | ||
| 17 | + 'next' => 'Nächste »', | ||
| 18 | + | ||
| 19 | +]; |
resources/lang/de/passwords.php
0 → 100644
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +return [ | ||
| 4 | + | ||
| 5 | + /* | ||
| 6 | + |-------------------------------------------------------------------------- | ||
| 7 | + | Password Reminder Language Lines | ||
| 8 | + |-------------------------------------------------------------------------- | ||
| 9 | + | | ||
| 10 | + | The following language lines are the default lines which match reasons | ||
| 11 | + | that are given by the password broker for a password update attempt | ||
| 12 | + | has failed, such as for an invalid token or invalid new password. | ||
| 13 | + | | ||
| 14 | + */ | ||
| 15 | + | ||
| 16 | + 'password' => 'Passörter müssen mindestens sechs Zeichen enthalten und die Wiederholung muss identisch sein.', | ||
| 17 | + 'user' => "Wir können keinen Benutzer mit dieser E-Mail Adresse finden.", | ||
| 18 | + 'token' => 'Dieser Passwort-Reset-Token ist ungültig.', | ||
| 19 | + 'sent' => 'Wir haben ihnen eine E-Mail mit einem Link zum Zurücksetzen des Passworts zugesendet!', | ||
| 20 | + 'reset' => 'Ihr Passwort wurde zurückgesetzt!', | ||
| 21 | + | ||
| 22 | +]; |
resources/lang/de/settings.php
0 → 100644
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +return [ | ||
| 4 | + | ||
| 5 | + /** | ||
| 6 | + * Settings text strings | ||
| 7 | + * Contains all text strings used in the general settings sections of BookStack | ||
| 8 | + * including users and roles. | ||
| 9 | + */ | ||
| 10 | + | ||
| 11 | + 'settings' => 'Einstellungen', | ||
| 12 | + 'settings_save' => 'Einstellungen speichern', | ||
| 13 | + | ||
| 14 | + 'app_settings' => 'Anwendungseinstellungen', | ||
| 15 | + 'app_name' => 'Anwendungsname', | ||
| 16 | + 'app_name_desc' => 'Dieser Name wird im Header und E-Mails angezeigt.', | ||
| 17 | + 'app_name_header' => 'Anwendungsname im Header anzeigen?', | ||
| 18 | + 'app_public_viewing' => 'Öffentliche Ansicht erlauben?', | ||
| 19 | + 'app_secure_images' => 'Erh&oml;hte Sicherheit für Bilduploads aktivieren?', | ||
| 20 | + 'app_secure_images_desc' => 'Aus Leistungsgründen sind alle Bilder öffentlich sichtbar. Diese Option fügt zufällige, schwer zu eratene, Zeichenketten vor die Bild-URLs hinzu. Stellen sie sicher, dass Verzeichnindexes deaktiviert sind, um einen einfachen Zugrif zu verhindern.', | ||
| 21 | + 'app_editor' => 'Seiteneditor', | ||
| 22 | + 'app_editor_desc' => 'Wählen sie den Editor aus, der von allen Benutzern genutzt werden soll, um Seiten zu editieren.', | ||
| 23 | + 'app_custom_html' => 'Benutzerdefinierter HTML <head> Inhalt', | ||
| 24 | + 'app_custom_html_desc' => 'Jeder Inhalt, der hier hinzugefügt wird, wird am Ende der <head> Sektion jeder Seite eingefügt. Diese kann praktisch sein, um CSS Styles anzupassen oder Analytics Code hinzuzufügen.', | ||
| 25 | + 'app_logo' => 'Anwendungslogo', | ||
| 26 | + 'app_logo_desc' => 'Dieses Bild sollte 43px hoch sein. <br>Größere Bilder werden verkleinert.', | ||
| 27 | + 'app_primary_color' => 'Primäre Anwendungsfarbe', | ||
| 28 | + 'app_primary_color_desc' => 'Dies sollte ein HEX Wert sein. <br>Leer lassen des Feldes setzt auf die Standard-Anwendungsfarbe zurück.', | ||
| 29 | + | ||
| 30 | + 'reg_settings' => 'Registrierungseinstellungen', | ||
| 31 | + 'reg_allow' => 'Registrierung erlauben?', | ||
| 32 | + 'reg_default_role' => 'Standard-Benutzerrolle nach Registrierung', | ||
| 33 | + 'reg_confirm_email' => 'Bestätigung per E-Mail erforderlich?', | ||
| 34 | + 'reg_confirm_email_desc' => 'Falls die Einschränkung für; Domains genutzt wird, ist die Bestätigung per E-Mail zwingend erforderlich und der untenstehende Wert wird ignoriert.', | ||
| 35 | + 'reg_confirm_restrict_domain' => 'Registrierung auf bestimmte Domains einschränken', | ||
| 36 | + 'reg_confirm_restrict_domain_desc' => 'Fügen sie eine, durch Komma getrennte, Liste von E-Mail Domains hinzu, auf die die Registrierung eingeschränkt werden soll. Benutzern wird eine E-Mail gesendet, um ihre E-Mail Adresse zu bestätigen, bevor sie diese Anwendung nutzen können. <br> Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung ändern.', | ||
| 37 | + 'reg_confirm_restrict_domain_placeholder' => 'Keine Einschränkung gesetzt', | ||
| 38 | + | ||
| 39 | +]; |
resources/lang/de/validation.php
0 → 100644
| 1 | +<?php | ||
| 2 | + | ||
| 3 | +return [ | ||
| 4 | + | ||
| 5 | + /* | ||
| 6 | + |-------------------------------------------------------------------------- | ||
| 7 | + | Validation Language Lines | ||
| 8 | + |-------------------------------------------------------------------------- | ||
| 9 | + | | ||
| 10 | + | following language lines contain default error messages used by | ||
| 11 | + | validator class. Some of these rules have multiple versions such | ||
| 12 | + | as size rules. Feel free to tweak each of these messages here. | ||
| 13 | + | | ||
| 14 | + */ | ||
| 15 | + | ||
| 16 | + 'accepted' => ':attribute muss akzeptiert werden.', | ||
| 17 | + 'active_url' => ':attribute ist keine valide URL.', | ||
| 18 | + 'after' => ':attribute muss ein Datum nach :date sein.', | ||
| 19 | + 'alpha' => ':attribute kann nur Buchstaben enthalten.', | ||
| 20 | + 'alpha_dash' => ':attribute kann nur Buchstaben, Zahlen und Bindestriche enthalten.', | ||
| 21 | + 'alpha_num' => ':attribute kann nur Buchstaben und Zahlen enthalten.', | ||
| 22 | + 'array' => ':attribute muss eine Array sein.', | ||
| 23 | + 'before' => ':attribute muss ein Datum vor :date sein.', | ||
| 24 | + 'between' => [ | ||
| 25 | + 'numeric' => ':attribute muss zwischen :min und :max liegen.', | ||
| 26 | + 'file' => ':attribute muss zwischen :min und :max Kilobytes groß sein.', | ||
| 27 | + 'string' => ':attribute muss zwischen :min und :max Zeichen lang sein.', | ||
| 28 | + 'array' => ':attribute muss zwischen :min und :max Elemente enthalten.', | ||
| 29 | + ], | ||
| 30 | + 'boolean' => ':attribute Feld muss wahr oder falsch sein.', | ||
| 31 | + 'confirmed' => ':attribute Bestätigung stimmt nicht überein.', | ||
| 32 | + 'date' => ':attribute ist kein valides Datum.', | ||
| 33 | + 'date_format' => ':attribute entspricht nicht dem Format :format.', | ||
| 34 | + 'different' => ':attribute und :other müssen unterschiedlich sein.', | ||
| 35 | + 'digits' => ':attribute muss :digits Stellen haben.', | ||
| 36 | + 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', | ||
| 37 | + 'email' => ':attribute muss eine valide E-Mail Adresse sein.', | ||
| 38 | + 'filled' => ':attribute Feld ist erforderlich.', | ||
| 39 | + 'exists' => 'Markiertes :attribute ist ungültig.', | ||
| 40 | + 'image' => ':attribute muss ein Bild sein.', | ||
| 41 | + 'in' => 'Markiertes :attribute ist ungültig.', | ||
| 42 | + 'integer' => ':attribute muss eine Zahl sein.', | ||
| 43 | + 'ip' => ':attribute muss eine valide IP-Adresse sein.', | ||
| 44 | + 'max' => [ | ||
| 45 | + 'numeric' => ':attribute darf nicht größer als :max sein.', | ||
| 46 | + 'file' => ':attribute darf nicht größer als :max Kilobyte sein.', | ||
| 47 | + 'string' => ':attribute darf nicht länger als :max Zeichen sein.', | ||
| 48 | + 'array' => ':attribute darf nicht mehr als :max Elemente enthalten.', | ||
| 49 | + ], | ||
| 50 | + 'mimes' => ':attribute muss eine Datei vom Typ: :values sein.', | ||
| 51 | + 'min' => [ | ||
| 52 | + 'numeric' => ':attribute muss mindestens :min. sein', | ||
| 53 | + 'file' => ':attribute muss mindestens :min Kilobyte groß sein.', | ||
| 54 | + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', | ||
| 55 | + 'array' => ':attribute muss mindesten :min Elemente enthalten.', | ||
| 56 | + ], | ||
| 57 | + 'not_in' => 'Markiertes :attribute ist ungültig.', | ||
| 58 | + 'numeric' => ':attribute muss eine Zahl sein.', | ||
| 59 | + 'regex' => ':attribute Format ist ungültig.', | ||
| 60 | + 'required' => ':attribute Feld ist erforderlich.', | ||
| 61 | + 'required_if' => ':attribute Feld ist erforderlich, wenn :other :value ist.', | ||
| 62 | + 'required_with' => ':attribute Feld ist erforderlich, wenn :values vorhanden ist.', | ||
| 63 | + 'required_with_all' => ':attribute Feld ist erforderlich, wenn :values vorhanden sind.', | ||
| 64 | + 'required_without' => ':attribute Feld ist erforderlich, wenn :values nicht vorhanden ist.', | ||
| 65 | + 'required_without_all' => ':attribute Feld ist erforderlich, wenn :values nicht vorhanden sind.', | ||
| 66 | + 'same' => ':attribute und :other muss übereinstimmen.', | ||
| 67 | + 'size' => [ | ||
| 68 | + 'numeric' => ':attribute muss :size sein.', | ||
| 69 | + 'file' => ':attribute muss :size Kilobytes groß sein.', | ||
| 70 | + 'string' => ':attribute muss :size Zeichen lang sein.', | ||
| 71 | + 'array' => ':attribute muss :size Elemente enthalten.', | ||
| 72 | + ], | ||
| 73 | + 'string' => ':attribute muss eine Zeichenkette sein.', | ||
| 74 | + 'timezone' => ':attribute muss eine valide zeitzone sein.', | ||
| 75 | + 'unique' => ':attribute wird bereits verwendet.', | ||
| 76 | + 'url' => ':attribute ist kein valides Format.', | ||
| 77 | + | ||
| 78 | + /* | ||
| 79 | + |-------------------------------------------------------------------------- | ||
| 80 | + | Custom Validation Language Lines | ||
| 81 | + |-------------------------------------------------------------------------- | ||
| 82 | + | | ||
| 83 | + | Here you may specify custom validation messages for attributes using the | ||
| 84 | + | convention "attribute.rule" to name lines. This makes it quick to | ||
| 85 | + | specify a specific custom language line for a given attribute rule. | ||
| 86 | + | | ||
| 87 | + */ | ||
| 88 | + | ||
| 89 | + 'custom' => [ | ||
| 90 | + 'attribute-name' => [ | ||
| 91 | + 'rule-name' => 'custom-message', | ||
| 92 | + ], | ||
| 93 | + ], | ||
| 94 | + | ||
| 95 | + /* | ||
| 96 | + |-------------------------------------------------------------------------- | ||
| 97 | + | Custom Validation Attributes | ||
| 98 | + |-------------------------------------------------------------------------- | ||
| 99 | + | | ||
| 100 | + | following language lines are used to swap attribute place-holders | ||
| 101 | + | with something more reader friendly such as E-Mail Address instead | ||
| 102 | + | of "email". This simply helps us make messages a little cleaner. | ||
| 103 | + | | ||
| 104 | + */ | ||
| 105 | + | ||
| 106 | + 'attributes' => [], | ||
| 107 | + | ||
| 108 | +]; |
-
Please register or sign in to post a comment