mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Added missing NLS strings to sidebar and index.mst
This commit is contained in:
committed by
Nick O'Leary
parent
9bbd6a70b8
commit
409fa49234
@@ -304,8 +304,7 @@ RED.library = (function() {
|
||||
// }
|
||||
//}
|
||||
//if (exists) {
|
||||
// $("#node-dialog-library-save-type").html(options.type);
|
||||
// $("#node-dialog-library-save-name").html(fullpath);
|
||||
// $("#node-dialog-library-save-content").html(RED._("library.dialogSaveOverwrite",{libraryType:options.type,libraryName:fullpath}));
|
||||
// $("#node-dialog-library-save-confirm").dialog( "open" );
|
||||
// return;
|
||||
//}
|
||||
|
@@ -25,7 +25,7 @@ RED.sidebar.config = (function() {
|
||||
|
||||
function show() {
|
||||
if (!RED.sidebar.containsTab("config")) {
|
||||
RED.sidebar.addTab("config",content,true);
|
||||
RED.sidebar.addTab(RED._("sidebar.config"),content,true);
|
||||
}
|
||||
refresh();
|
||||
RED.sidebar.show("config");
|
||||
|
@@ -36,7 +36,7 @@ RED.sidebar.info = (function() {
|
||||
|
||||
function show() {
|
||||
if (!RED.sidebar.containsTab("info")) {
|
||||
RED.sidebar.addTab("info",content,false);
|
||||
RED.sidebar.addTab(RED._("sidebar.info"),content,false);
|
||||
}
|
||||
RED.sidebar.show("info");
|
||||
}
|
||||
|
@@ -56,7 +56,7 @@ RED.workspaces = (function() {
|
||||
RED.nodes.dirty(true);
|
||||
} else {
|
||||
$( "#node-dialog-delete-workspace" ).dialog('option','workspace',ws);
|
||||
$( "#node-dialog-delete-workspace-name" ).text(ws.label);
|
||||
$( "#node-dialog-delete-workspace-content" ).text(RED._("workspaces.deleteDialog",{label:ws.label}));
|
||||
$( "#node-dialog-delete-workspace" ).dialog('open');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user