Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 95f88ca

Browse files
Added Localisation for the Loading... message
1 parent 8d3915a commit 95f88ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/nls/root/strings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ define({
132132
/**
133133
* ProjectManager
134134
*/
135-
135+
"PROJECT_LOADING" : "Loading ...",
136136
"UNTITLED" : "Untitled",
137137

138138
/**

src/project/ProjectManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ define(function (require, exports, module) {
396396
themes : { theme: "brackets", url: "styles/jsTreeTheme.css", dots: false, icons: false },
397397
//(note: our actual jsTree theme CSS lives in brackets.less; we specify an empty .css
398398
// file because jsTree insists on loading one itself)
399-
strings : { loading : "Loading ...", new_node : "New node" },
399+
strings : { loading : Strings.PROJECT_LOADING, new_node : "New node" },
400400
sort : function (a, b) {
401401
if (brackets.platform === "win") {
402402
// Windows: prepend folder names with a '0' and file names with a '1' so folders are listed first

0 commit comments

Comments
 (0)