From 94169800968eb944c7ff7995600e0a282c89dcae Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 13 Jun 2017 20:28:24 +0200 Subject: [PATCH] Added Dutch translation Added Dutch translation to Alert module --- CHANGELOG.md | 1 + modules/default/alert/alert.js | 3 ++- modules/default/alert/translations/nl.json | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 modules/default/alert/translations/nl.json diff --git a/CHANGELOG.md b/CHANGELOG.md index c442f3a7..da543183 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Add calendar option to set a separate date format for full day events. - Add ability for `currentweather` module to display indoor temperature via INDOOR_TEMPERATURE notification - Add ability to change the path of the `custom.css`. +- Add translation Dutch to Alert module. ### Updated - Added missing keys to Polish translation. diff --git a/modules/default/alert/alert.js b/modules/default/alert/alert.js index 787a0b4a..c5d3e650 100644 --- a/modules/default/alert/alert.js +++ b/modules/default/alert/alert.js @@ -30,7 +30,8 @@ Module.register("alert",{ getTranslations: function() { return { en: "translations/en.json", - de: "translations/de.json" + de: "translations/de.json", + nl: "translations/nl.json", }; }, show_notification: function(message) { diff --git a/modules/default/alert/translations/nl.json b/modules/default/alert/translations/nl.json new file mode 100644 index 00000000..9cda9089 --- /dev/null +++ b/modules/default/alert/translations/nl.json @@ -0,0 +1,4 @@ +{ + "sysTitle": "MagicMirror Notificatie", + "welcome": "Welkom, Succesvol gestart!" +}