Merge branch 'kasperwandahl-master' into develop

This commit is contained in:
Michael Teeuw 2016-10-01 10:53:08 +02:00
commit 4847f50093
3 changed files with 30 additions and 1 deletions

View File

@ -2,11 +2,11 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [2.1.0] - Unreleased ## [2.1.0] - Unreleased
### Added ### Added
- Finnish translation. - Finnish translation.
- Danish translation
- Method to overwrite the module's header. [See documentation.](https://github.com/MichMich/MagicMirror/tree/develop/modules#getheader) - Method to overwrite the module's header. [See documentation.](https://github.com/MichMich/MagicMirror/tree/develop/modules#getheader)
- Option to limit access to certain IP addresses based on the value of `ipWhitelist` in the `config.js`, default is access from localhost only (Issue [#456](https://github.com/MichMich/MagicMirror/issues/456)) - Option to limit access to certain IP addresses based on the value of `ipWhitelist` in the `config.js`, default is access from localhost only (Issue [#456](https://github.com/MichMich/MagicMirror/issues/456))

28
translations/da.json Normal file
View File

@ -0,0 +1,28 @@
{
/* GENERAL */
"LOADING": "Indlæser …",
/* CALENDAR */
"TODAY": "I dag",
"TOMORROW": "I morgen",
"RUNNING": "Slutter om",
"EMPTY": "Ingen kommende begivenheder.",
/* WEATHER */
"N": "N",
"NNE": "NNØ",
"NE": "NØ",
"ENE": "ØNØ",
"E": "Ø",
"ESE": "ØSØ",
"SE": "SØ",
"SSE": "SSØ",
"S": "S",
"SSW": "SSV",
"SW": "SV",
"WSW": "VSV",
"W": "V",
"WNW": "VNV",
"NW": "NV",
"NNW": "NNV"
}

View File

@ -24,4 +24,5 @@ var translations = {
"ja" : "translations/ja.json", // Japanese "ja" : "translations/ja.json", // Japanese
"pl" : "translations/pl.json", // Polish "pl" : "translations/pl.json", // Polish
"gr" : "translations/gr.json", // Greek "gr" : "translations/gr.json", // Greek
"da" : "translations/da.json", // Danish
}; };