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

Added Localisation for the Loading... message #3020

Merged
merged 2 commits into from
Mar 11, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/nls/root/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ define({
/**
* ProjectManager
*/

"PROJECT_LOADING" : "Loading\u2026",
"UNTITLED" : "Untitled",

/**
Expand Down
2 changes: 1 addition & 1 deletion src/project/ProjectManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ define(function (require, exports, module) {
themes : { theme: "brackets", url: "styles/jsTreeTheme.css", dots: false, icons: false },
//(note: our actual jsTree theme CSS lives in brackets.less; we specify an empty .css
// file because jsTree insists on loading one itself)
strings : { loading : "Loading ...", new_node : "New node" },
strings : { loading : Strings.PROJECT_LOADING, new_node : "New node" },
sort : function (a, b) {
if (brackets.platform === "win") {
// Windows: prepend folder names with a '0' and file names with a '1' so folders are listed first
Expand Down