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;