- Add Bulgarian translations for MagicMirror² and Alert module

This commit is contained in:
Kalin Koychev 2017-10-13 21:51:21 +03:00
parent da16172244
commit 39d0142993
4 changed files with 39 additions and 1 deletions

View File

@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add option to use [Nunjucks](https://mozilla.github.io/nunjucks/) templates in modules. (See `helloworld` module as an example.)
- Add Bulgarian translations for MagicMirror² and Alert module
### Updated

View File

@ -0,0 +1,4 @@
{
"sysTitle": "MagicMirror нотификация",
"welcome": "Добре дошли, стартирането беше успешно"
}

32
translations/bg.json Normal file
View File

@ -0,0 +1,32 @@
{
"LOADING": "Зареждане …",
"TODAY": "Днес",
"TOMORROW": "Утре",
"DAYAFTERTOMORROW": "Вдругиден",
"RUNNING": "Свършва на",
"EMPTY": "Няма предстоящи събития.",
"WEEK": "Седмица {weekNumber}",
"N": "С",
"NNE": "ССИ",
"NE": "СИ",
"ENE": "ИСИ",
"E": "И",
"ESE": "ИЮИ",
"SE": "ЮИ",
"SSE": "ЮЮИ",
"S": "Ю",
"SSW": "ЮЮЗ",
"SW": "ЮЗ",
"WSW": "ЗЮЗ",
"W": "З",
"WNW": "ЗСЗ",
"NW": "СЗ",
"NNW": "ССЗ",
"UPDATE_NOTIFICATION": "Налична актуализация за MagicMirror².",
"UPDATE_NOTIFICATION_MODULE": "Налична актуализация за MODULE_NAME модул.",
"UPDATE_INFO": "Текущата инсталация е изостанала с COMMIT_COUNT къмита на клон BRANCH_NAME."
}

View File

@ -34,7 +34,8 @@ var translations = {
"et" : "translations/et.json", // Estonian
"kr" : "translations/kr.json", // Korean
"ro" : "translations/ro.json", // Romanian
"cy" : "translations/cy.json" // Welsh (Cymraeg)
"cy" : "translations/cy.json", // Welsh (Cymraeg)
"bg" : "translations/bg.json" // Bulgarian
};
if (typeof module !== "undefined") {module.exports = translations;}