Merge pull request #1749 from putera/develop

Adding a Malay translations
This commit is contained in:
Michael Teeuw 2019-08-06 07:48:03 +02:00 committed by GitHub
commit 1239c6716b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 1 deletions

View File

@ -11,6 +11,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
*This release is scheduled to be released on 2019-10-01.*
### Added
- Adding a Malay (Malaysian) translation for MagicMirror²
### Added
- Spanish translation for "PRECIP"

33
translations/ms-my.json Normal file
View File

@ -0,0 +1,33 @@
{
"LOADING": "Tunggu Sebentar …",
"TODAY": "Hari ini",
"TOMORROW": "Esok",
"DAYAFTERTOMORROW": "Lusa",
"RUNNING": "Berakhir dalam",
"EMPTY": "Tidak ada agenda",
"WEEK": "Minggu ke-{weekNumber}",
"N": "U",
"NNE": "UUT",
"NE": "TL",
"ENE": "TTL",
"E": "T",
"ESE": "TT",
"SE": "T",
"SSE": "ST",
"S": "S",
"SSW": "SBD",
"SW": "BD",
"WSW": "BBD",
"W": "B",
"WNW": "BBL",
"NW": "BL",
"NNW": "UBL",
"UPDATE_NOTIFICATION": "MagicMirror² mempunyai update terkini.",
"UPDATE_NOTIFICATION_MODULE": "Modul {MODULE_NAME} mempunyai update terkini.",
"UPDATE_INFO_SINGLE": "Pemasangan MagicMirror² ini mempunyai {COMMIT_COUNT} commit terkebelakang dari branch {BRANCH_NAME}.",
"UPDATE_INFO_MULTIPLE": "Pemasangan MagicMirror² ini mempunyai {COMMIT_COUNT} commit terkebelakang dari branch {BRANCH_NAME}."
}

View File

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