From d9ec452b95e7bd26553787b2d7f49eb72b2cb42e Mon Sep 17 00:00:00 2001 From: Nico Finkernagel Date: Wed, 20 Mar 2019 18:08:37 +0100 Subject: Added German translation (#60) + link to org repo --- i18n/de.yaml | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 i18n/de.yaml (limited to 'i18n/de.yaml') diff --git a/i18n/de.yaml b/i18n/de.yaml new file mode 100644 index 0000000..61d8cc2 --- /dev/null +++ b/i18n/de.yaml @@ -0,0 +1,131 @@ +# German language file for cState +# Version 3.0 + +- id: languageCode + translation: de +- id: languageName + translation: German +- id: languageNameShort + translation: DE + +## +## INDEX.HTML +## + +# Summary status message +- id: isDown + translation: Wir verzeichnen einen Ausfall +- id: isDisrupted + translation: Wir verzeichnen eine Störung +- id: isNotice + translation: Bitte lies die Ankündigungen +- id: isOk + translation: Alle Systeme funktionsbereit + +# No JS warning +- id: noScriptingIntro + translation: Uh oh! Es sieht aus, als wäre JavaScript bei Dir deaktiviert. Bitte +- id: noScriptingLink + translation: aktiviere die Einstellung, die verhinderdert, dass Skripte laufen. +- id: noScriptingOutro + translation: um Dein Erlebnis auf dieser Website zu verbessern. + +- id: thisIsDown + translation: Ausfall +- id: thisIsDisrupted + translation: Störung +- id: thisIsNotice + translation: Wartung +- id: thisIsOk + translation: Funktionsbereit + +# "Last checked" + "just now" +- id: lastChecked + translation: Zuletzt aktualisiert +- id: justNow + translation: gerade eben +- id: someTimeAgo + translation: her + +# Example usage: `5` + `years` +# Final result: 'Last checked 5 years ago' +# Number goes before string +# Use short variants until months +- id: yearsAgo + translation: Jahre +- id: monthsAgo + translation: Monate +- id: daysAgo + translation: t +- id: hoursAgo + translation: h +- id: minsAgo + translation: min +- id: secondsAgo + translation: s + +- id: autoRefreshNotice + translation: Wir versuchen die Daten alle fünf Minuten zu aktualisieren. + +# Incidents +- id: incidents + translation: Vorfälle +- id: incidentHistory + translation: Vorfalls Historie + +- id: resolved + translation: Gelöst # if it's less than a min +- id: inUnderAMinute + translation: in unter einer Minute # continuing the last string +- id: resolvedAfter + translation: Gelöst nach # + 19 min +- id: ofDowntime + translation: Ausfallzeit + +- id: downtimeOngoing + translation: Ungelöst! + +- id: calmBeforeTheStorm + translation: Is dies die Ruhe vor dem Sturm? +- id: noIncidentsDesc + translation: Es liegen keine Vorfälle vor. Eventuell hat der Besitzer (oder die Besitzer) noch keine Vorfälle verzeichnet. + +- id: continueReading + translation: Weiterlesen +- id: prev + translation: Nächste +- id: next + translation: Vorherige + +## +## OTHER +## + +- id: goBack + translation: Zurück zu +- id: backToTop + translation: Nach oben +- id: poweredBy + translation: Powered by + +- id: notFound + translation: Keine Daten vorhanden. +- id: notFoundText + translation: # + +- id: rss + translation: RSS abonnieren +- id: toAllUpdates + translation: alle Updates +- id: or + translation: or +- id: onlyThisFeed + translation: nur diesen Feed + +## +## v3 +## +- id: entries + translation: Einträge +- id: newestToOldest + translation: von alt nach neu -- cgit v1.2.3-70-g09d2 From c43591a6717d415e505b0d57a281e2455b88158e Mon Sep 17 00:00:00 2001 From: Mantas <11616378+mistermantas@users.noreply.github.com> Date: Wed, 20 Mar 2019 19:27:40 +0200 Subject: Add more emoji to N CMS + translation fixes #61 #60 --- i18n/de.yaml | 4 ---- i18n/tr.yaml | 2 +- static/admin/config.yml | 10 +++++----- 3 files changed, 6 insertions(+), 10 deletions(-) (limited to 'i18n/de.yaml') diff --git a/i18n/de.yaml b/i18n/de.yaml index 61d8cc2..72944f1 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -108,10 +108,6 @@ - id: poweredBy translation: Powered by -- id: notFound - translation: Keine Daten vorhanden. -- id: notFoundText - translation: # - id: rss translation: RSS abonnieren diff --git a/i18n/tr.yaml b/i18n/tr.yaml index 8e734a4..ca24f4b 100644 --- a/i18n/tr.yaml +++ b/i18n/tr.yaml @@ -78,7 +78,7 @@ - id: inUnderAMinute translation: bir dakikadan kısa bir süre içinde # continuing the last string - id: resolvedAfter - translation: Çözümlendi: # + 19 min + translation: Çözümlendi # + 19 min - id: ofDowntime translation: süren arıza sonrasında diff --git a/static/admin/config.yml b/static/admin/config.yml index bdc5913..d23bcce 100644 --- a/static/admin/config.yml +++ b/static/admin/config.yml @@ -27,14 +27,14 @@ collections: fields: - {label: "Mark as incident", name: "section", widget: "hidden", default: "issue"} - {label: "Title", name: "title", widget: "string"} - - {label: "Start date & time (your time)", name: "date", widget: "datetime"} - - {label: "Mark as resolved", name: "resolved", widget: "boolean", required: false, default: false} - - {label: "End date & time (your time)", name: "resolvedWhen", widget: "datetime", required: false} - - label: "Affected systems (use exact name, separated by commas)" + - {label: "Start date & time (your time) ⌚", name: "date", widget: "datetime"} + - {label: "Mark as resolved ✔", name: "resolved", widget: "boolean", required: false, default: false} + - {label: "End date & time (your time) ⌛", name: "resolvedWhen", widget: "datetime", required: false} + - label: "Affected systems (use exact name, separated by commas) 🧐" name: "affected" widget: "list" required: false - - label: "Severity" + - label: "Severity ⚠" name: "severity" widget: "select" options: -- cgit v1.2.3-70-g09d2 From 6917182152b18e19c1abbd121a3512a4a6587639 Mon Sep 17 00:00:00 2001 From: Nico Finkernagel Date: Mon, 25 Mar 2019 07:48:12 +0100 Subject: additional translations for german lang (#67) --- i18n/de.yaml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'i18n/de.yaml') diff --git a/i18n/de.yaml b/i18n/de.yaml index 72944f1..004c65b 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -108,6 +108,10 @@ - id: poweredBy translation: Powered by +- id: notFound + translation: Nichts vorhanden. +- id: notFoundText + translation: Dies könnte ein Problem von unserer Seite sein. Eventuell solltest du nochmal die URL überprüfen. - id: rss translation: RSS abonnieren -- cgit v1.2.3-70-g09d2