diff --git a/function/rbe/locales/en-US/rbe.json b/function/rbe/locales/en-US/rbe.json index d0d967bb..8adbb62a 100644 --- a/function/rbe/locales/en-US/rbe.json +++ b/function/rbe/locales/en-US/rbe.json @@ -1,5 +1,6 @@ { "rbe": { + "rbe": "rbe", "label": { "func": "Mode", "init": "Send initial value", diff --git a/function/rbe/package.json b/function/rbe/package.json index 61e07f8e..1d818f94 100644 --- a/function/rbe/package.json +++ b/function/rbe/package.json @@ -1,6 +1,6 @@ { "name" : "node-red-node-rbe", - "version" : "0.2.2", + "version" : "0.2.3", "description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.", "dependencies" : { }, diff --git a/function/rbe/rbe.html b/function/rbe/rbe.html index 759c7c06..48f0c103 100644 --- a/function/rbe/rbe.html +++ b/function/rbe/rbe.html @@ -87,8 +87,8 @@ outputs:1, icon: "rbe.png", label: function() { - var ll = (this.func||"").replace("Eq","").replace("rbei","rbe")||"rbe"; - return this.name||ll||"rbe"; + var ll = (this.func||"").replace("Eq","").replace("rbei","rbe")||this._("rbe.rbe"); + return this.name||ll||this._("rbe.rbe"); }, labelStyle: function() { return this.name?"node_label_italic":""; diff --git a/social/email/61-email.html b/social/email/61-email.html index aff990e7..7f5b1c00 100644 --- a/social/email/61-email.html +++ b/social/email/61-email.html @@ -245,8 +245,11 @@ inputs:0, outputs:1, icon: "envelope.png", + paletteLabel: function() { + return this.name||this._("email.email"); + }, label: function() { - return this.name||"email"; + return this.name||this._("email.email"); }, labelStyle: function() { return (this.name)?"node_label_italic":""; diff --git a/social/email/locales/en-US/61-email.json b/social/email/locales/en-US/61-email.json index a3d1c318..b7045623 100644 --- a/social/email/locales/en-US/61-email.json +++ b/social/email/locales/en-US/61-email.json @@ -1,5 +1,6 @@ { "email": { + "email": "email", "label": { "to": "To", "server": "Server", diff --git a/social/email/package.json b/social/email/package.json index 9d107473..fffb41bd 100644 --- a/social/email/package.json +++ b/social/email/package.json @@ -1,6 +1,6 @@ { "name": "node-red-node-email", - "version": "0.1.26", + "version": "0.1.27", "description": "Node-RED nodes to send and receive simple emails", "dependencies": { "nodemailer": "^1.11.0", diff --git a/social/feedparser/32-feedparse.html b/social/feedparser/32-feedparse.html index 3581c75e..2175ad4a 100644 --- a/social/feedparser/32-feedparse.html +++ b/social/feedparser/32-feedparse.html @@ -35,7 +35,7 @@ outputs:1, icon: "feed.png", label: function() { - return this.name||this.url||"feedparser"; + return this.name||this.url||this._("feedparse.feedparse"); }, labelStyle: function() { return this.name?"node_label_italic":""; diff --git a/social/feedparser/locales/en-US/32-feedparse.json b/social/feedparser/locales/en-US/32-feedparse.json index af751a4f..2a5fd943 100644 --- a/social/feedparser/locales/en-US/32-feedparse.json +++ b/social/feedparser/locales/en-US/32-feedparse.json @@ -1,5 +1,6 @@ { "feedparse": { + "feedparse": "feedparser", "label": { "feedurl": "Feed url", "refresh": "Refresh", diff --git a/social/feedparser/package.json b/social/feedparser/package.json index 1b990d8e..cc47eba5 100644 --- a/social/feedparser/package.json +++ b/social/feedparser/package.json @@ -1,6 +1,6 @@ { "name": "node-red-node-feedparser", - "version": "0.1.11", + "version": "0.1.12", "description": "A Node-RED node to get RSS Atom feeds.", "dependencies": { "feedparser": "^2.2.9", diff --git a/utility/daemon/daemon.html b/utility/daemon/daemon.html index 6e7a5d8d..1b2f6963 100644 --- a/utility/daemon/daemon.html +++ b/utility/daemon/daemon.html @@ -64,7 +64,7 @@ icon: "arrow-in.png", align: "right", label: function() { - return this.name||this.command; + return this.name||this.command||"daemon"; }, labelStyle: function() { return this.name?"node_label_italic":""; diff --git a/utility/daemon/package.json b/utility/daemon/package.json index 089a8c26..b1ec9adc 100644 --- a/utility/daemon/package.json +++ b/utility/daemon/package.json @@ -1,6 +1,6 @@ { "name" : "node-red-node-daemon", - "version" : "0.0.18", + "version" : "0.0.19", "description" : "A Node-RED node that runs and monitors a long running system command.", "dependencies" : { },