From 68548096f755d5ef9593c8eb8d2b0848d464c4cb Mon Sep 17 00:00:00 2001 From: Peter Siska Date: Tue, 7 Dec 2021 15:57:23 +0100 Subject: [PATCH] Add de_CH translation 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 0000000000..6dec341fb6 --- /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;