Merge pull request #1622 from JasMich/develop

Develop
This commit is contained in:
Michael Teeuw 2019-03-28 19:12:17 +01:00 committed by GitHub
commit f0939b8af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 1 deletions

View File

@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added ### Added
- Italian translation for "Feels" - Italian translation for "Feels"
- Basic Klingon (tlhIngan Hol) translations
- Disabled the screensaver on raspbian with installation script - Disabled the screensaver on raspbian with installation script
- Added option to truncate the number of vertical lines a calendar item can span if `wrapEvents` is enabled. - Added option to truncate the number of vertical lines a calendar item can span if `wrapEvents` is enabled.
- Danish translation for "Feels" and "Weeks" - Danish translation for "Feels" and "Weeks"

35
translations/tlh.json Normal file
View File

@ -0,0 +1,35 @@
{
"LOADING": "loS …",
"TODAY": "DaHjaj",
"TOMORROW": "wa'leS",
"DAYAFTERTOMORROW": "cha'leS",
"RUNNING": "Dor",
"EMPTY": "Sumbe' wanI'.",
"WEEK": "Hogh (terran) {weekNumber}",
"N": "N",
"NNE": "NNE",
"NE": "NE",
"ENE": "ENE",
"E": "chan",
"ESE": "ESE",
"SE": "SE",
"SSE": "SSE",
"S": "S",
"SSW": "SSW",
"SW": "tIng",
"WSW": "WSW",
"W": "W",
"WNW": "WNW",
"NW": "'ev",
"NNW": "NNW",
"UPDATE_NOTIFICATION": " De'chu' MagicMirror² lI'laH.",
"UPDATE_NOTIFICATION_MODULE": "bobcho' {MODULE_NAME} lI'laH De'chu.",
"UPDATE_INFO_SINGLE": "The current installation is {COMMIT_COUNT} commit behind on the {BRANCH_NAME} branch.",
"UPDATE_INFO_MULTIPLE": "The current installation is {COMMIT_COUNT} commits behind on the {BRANCH_NAME} branch.",
"FEELS": "jem"
}

View File

@ -39,7 +39,8 @@ var translations = {
"bg" : "translations/bg.json", // Bulgarian "bg" : "translations/bg.json", // Bulgarian
"cs" : "translations/cs.json", // Czech "cs" : "translations/cs.json", // Czech
"hr" : "translations/hr.json", // Croatian "hr" : "translations/hr.json", // Croatian
"sk" : "translations/sk.json" // Slovak "sk" : "translations/sk.json", // Slovak
"tlh" : "translations/tlh.json" // Klingon
}; };
if (typeof module !== "undefined") {module.exports = translations;} if (typeof module !== "undefined") {module.exports = translations;}