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

Commit eedcb22

Browse files
committed
Merge pull request #3020 from WebsiteDeveloper/issue-2645
Added Localisation for the Loading... message
2 parents 45e0692 + 3f7c266 commit eedcb22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/nls/root/strings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ define({
133133
/**
134134
* ProjectManager
135135
*/
136-
136+
"PROJECT_LOADING" : "Loading\u2026",
137137
"UNTITLED" : "Untitled",
138138

139139
/**

src/project/ProjectManager.js

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

0 commit comments

Comments
 (0)