Merge pull request #335 from RemiHansen/master

Norwegian translations
This commit is contained in:
Michael Teeuw 2016-05-20 12:31:52 +02:00
commit 7659ff1f77
5 changed files with 65 additions and 3 deletions

View File

@ -1,6 +1,9 @@
> Please send your PR's the develop branch.
> Don't forget to add the change to changelog.md.
* Does the pull request solve a **related** issue? [yes | no] * Does the pull request solve a **related** issue? [yes | no]
* If so, can you reference the issue? * If so, can you reference the issue?
* What does the pull request accomplish? (please list) * What does the pull request accomplish? (please list)
* If it has major visual changes please add screenshots. * If it includes major visual changes please add screenshots.
DON'T FORGET TO ADD THE CHANGE TO CHANGELOG.md!

View File

@ -2,6 +2,10 @@
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.0.2] - 2016-05-20
### Added
- Norwegian Translations (nb and nn)
## [2.0.1] - 2016-05-18 ## [2.0.1] - 2016-05-18
### Added ### Added
- Changelog - Changelog

27
translations/nb.json Normal file
View File

@ -0,0 +1,27 @@
{
/* GENERAL */
"LOADING": "Laster …",
/* CALENDAR */
"TODAY": "I dag",
"TOMORROW": "I morgen",
"RUNNING": "Slutter om",
"EMPTY": "Ingen kommende arrangementer.",
/* WEATHER */
"N": "N",
"NNE": "NNØ",
"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"
}

27
translations/nn.json Normal file
View File

@ -0,0 +1,27 @@
{
/* GENERAL */
"LOADING": "Lastar …",
/* CALENDAR */
"TODAY": "I dag",
"TOMORROW": "I morgon",
"RUNNING": "Sluttar om",
"EMPTY": "Ingen komande hendingar.",
/* WEATHER */
"N": "N",
"NNE": "NNA",
"ENE": "ANA",
"E": "A",
"ESE": "ASA",
"SE": "SA",
"SSE": "SSA",
"S": "S",
"SSW": "SSV",
"SW": "SV",
"WSW": "VSV",
"W": "V",
"WNW": "VNV",
"NW": "NV",
"NNW": "NNV"
}

View File

@ -12,5 +12,6 @@ var translations = {
"fr" : "translations/fr.json", "fr" : "translations/fr.json",
"fy" : "translations/fy.json", "fy" : "translations/fy.json",
"es" : "translations/es.json", "es" : "translations/es.json",
"it" : "translations/it.json", "nb" : "translations/nb.json",
"nn" : "translations/nn.json",
}; };