From 2937dbfc3a9d5d269c204c48959dc1b7799523f4 Mon Sep 17 00:00:00 2001 From: Peter Siska Date: Tue, 7 Dec 2021 16:32:56 +0100 Subject: [PATCH] Add de_CH translation (#611) Region-specific translation for German (Switzerland). Initiated from here: https://github.com/shoelace-style/shoelace/pull/609#issuecomment-987711804 --- src/translations/de_CH.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/translations/de_CH.ts diff --git a/src/translations/de_CH.ts b/src/translations/de_CH.ts new file mode 100644 index 000000000..6dec341fb --- /dev/null +++ b/src/translations/de_CH.ts @@ -0,0 +1,20 @@ +import { registerTranslation } from '../utilities/localize'; +import type { Translation } from '../utilities/localize'; + +const translation: Translation = { + $code: 'de_CH', + $name: 'Deutsch (Schweiz)', + $dir: 'ltr', + + close: "Schliessen", + copy: 'Kopieren', + progress: 'Fortschritt', + scroll_to_end: 'Zum Ende scrollen', + scroll_to_start: 'Zum Anfang scrollen', + select_a_color_from_the_screen: "Wähle eine Farbe vom Bildschirm", + toggle_color_format: 'Farbformat umschalten' +}; + +registerTranslation(translation); + +export default translation;