Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing translation keys #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
clone: 'Klonen',
confirm: 'Bestätigen',
create: 'Erstellen',
create_item: 'Erstelle %{item}',
delete: 'Löschen',
edit: 'Bearbeiten',
export: 'Exportieren',
Expand All @@ -19,6 +20,8 @@ module.exports = {
remove: 'Entfernen',
save: 'Speichern',
search: 'Suchen',
select_all: 'Alles auswählen',
select_row: 'Diese Reihe auswählen',
show: 'Anzeigen',
sort: 'Sortieren',
undo: 'Zurücksetzen',
Expand All @@ -27,6 +30,9 @@ module.exports = {
close: 'Schliessen',
open_menu: 'Öffnen des Menüs',
close_menu: 'Schliessen des Menüs',
update: 'Aktualisieren',
move_up: 'Nach oben',
move_down: 'Nach unten',
},
boolean: {
true: 'Ja',
Expand Down Expand Up @@ -69,6 +75,8 @@ module.exports = {
are_you_sure: 'Sind Sie sicher?',
bulk_delete_content: 'Möchten Sie "%{name}" wirklich löschen? |||| Möchten Sie diese %{smart_count} Elemente wirklich löschen?',
bulk_delete_title: 'Lösche %{name} |||| Lösche %{smart_count} %{name} Elemente',
bulk_update_content: 'Möchten Sie "%{name}" wirklich aktualisieren? |||| Möchten Sie diese %{smart_count} Elemente wirklich aktualisieren?',
bulk_update_title: 'Aktualisiere %{name} |||| Aktualisiere %{smart_count} %{name}',
delete_content: 'Möchten Sie diesen Inhalt wirklich löschen?',
delete_title: 'Lösche %{name} #%{id}',
details: 'Details',
Expand All @@ -92,6 +100,11 @@ module.exports = {
prev: 'Zurück',
skip_nav: 'Zum Inhalt springen',
},
sort: {
sort_by: 'Sortieren nach %{field} %{order}',
ASC: 'aufsteigend',
DESC: 'absteigend',
},
auth: {
auth_check_error: 'Bitte verbinden Sie sich um fortzufahren',
user_menu: 'Profil',
Expand All @@ -112,6 +125,7 @@ module.exports = {
i18n_error: 'Die Übersetzungen für die angegebene Sprache können nicht geladen werden.',
canceled: 'Aktion abgebrochen',
logged_out: 'Ihre Sitzung wurde beendet, bitte verbinden Sie sich neu.',
not_authorized: "Sie haben für diese Ressource keine Zugriffsrechte.",
},
validation: {
required: 'Benötigt',
Expand Down