diff --git a/src/translations/nl.ts b/src/translations/nl.ts new file mode 100644 index 000000000..d1af50358 --- /dev/null +++ b/src/translations/nl.ts @@ -0,0 +1,20 @@ +import { registerTranslation } from '../utilities/localize'; +import type { Translation } from '../utilities/localize'; + +const translation: Translation = { + $code: 'nl', + $name: 'Dutch', + $dir: 'ltr', + + close: 'Sluiten', + copy: 'Kopiƫren', + progress: 'Voortgang', + scroll_to_end: 'Scroll naar einde', + scroll_to_start: 'Scroll naar begin', + select_a_color_from_the_screen: 'Selecteer een kleur van het scherm', + toggle_color_format: 'Wissel kleurnotatie' +}; + +registerTranslation(translation); + +export default translation;