From e2afe4b7872a342feee0d2ebe7eccd65983cdc03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20N=C3=A6rvig=20W=C3=B8hlk?= Date: Mon, 21 Feb 2022 15:12:15 +0100 Subject: [PATCH] Add danish translation (#690) --- src/translations/da.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/translations/da.ts diff --git a/src/translations/da.ts b/src/translations/da.ts new file mode 100644 index 000000000..b23dac190 --- /dev/null +++ b/src/translations/da.ts @@ -0,0 +1,21 @@ +import { registerTranslation } from '~/utilities/localize'; +import type { Translation } from '~/utilities/localize'; + +const translation: Translation = { + $code: 'da', + $name: 'Danish', + $dir: 'ltr', + + close: 'Luk', + copy: 'Kopier', + progress: 'Status', + resize: 'Tipas størrelse', + scrollToEnd: 'Scroll til slut', + scrollToStart: 'Scroll til start', + selectAColorFromTheScreen: 'Vælg en farve fra skærmen', + toggleColorFormat: 'Skift farveformat' +}; + +registerTranslation(translation); + +export default translation;