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!" +}