Merge pull request #225 from paviro/v2-beta

Added translaions to the alert module
This commit is contained in:
Michael Teeuw 2016-04-23 17:32:06 +02:00
commit 4248ae7792
3 changed files with 22 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Module.register("alert",{
//Position
position: "center",
//shown at startup
welcome_message: "Welcome, start was successful!"
welcome_message: true,
},
getScripts: function() {
return ["classie.js", "modernizr.custom.js", "notificationFx.js"];
@ -26,6 +26,13 @@ Module.register("alert",{
getStyles: function() {
return ["ns-default.css"];
},
// Define required translations.
getTranslations: function() {
return {
en: "translations/en.json",
de: "translations/de.json"
};
},
show_notification: function(message) {
if (this.config.effect == "slide") {this.config.effect = this.config.effect + "-" + this.config.position;}
message = "<span class='thin' style='line-height: 35px; font-size:24px' color='#4A4A4A'>" + message.title + "</span><br /><span class='light' style='font-size:28px;line-height: 30px;'>" + message.message + "</span>";
@ -111,7 +118,12 @@ Module.register("alert",{
this.alerts = {};
this.setPosition(this.config.position);
if (this.config.welcome_message) {
this.show_notification({title: "MagicMirror Notification", message: this.config.welcome_message});
if (this.config.welcome_message == true){
this.show_notification({title: this.translate("sysTitle"), message: this.translate("welcome")});
}
else{
this.show_notification({title: this.translate("sysTitle"), message: this.config.welcome_message});
}
}
Log.info("Starting module: " + this.name);
}

View File

@ -0,0 +1,4 @@
{
"sysTitle": "MagicMirror Benachrichtigung",
"welcome": "Willkommen, Start war erfolgreich!"
}

View File

@ -0,0 +1,4 @@
{
"sysTitle": "MagicMirror Notification",
"welcome": "Welcome, start was successful!"
}