diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-03-25 22:37:16 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-03-25 22:37:16 -0400 |
commit | 204f8ca25c713e3420023786c37a31385bdbc4f3 (patch) | |
tree | a14eda819a197d61ef93ea17068b555c63dd577e /common/content/statusline.js | |
parent | 75bf52f46f272c5e1db885648aad6ab768657ccc (diff) | |
download | pentadactyl-204f8ca25c713e3420023786c37a31385bdbc4f3.tar.gz |
Annotate most strings which need to be explicitly localified.
Diffstat (limited to 'common/content/statusline.js')
-rw-r--r-- | common/content/statusline.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/statusline.js b/common/content/statusline.js index b36b238f..3a5f3d2e 100644 --- a/common/content/statusline.js +++ b/common/content/statusline.js @@ -308,7 +308,7 @@ var StatusLine = Module("statusline", { else if (typeof progress == "number") { let progressStr = ""; if (this._progress <= 0) - progressStr = "[ Loading... ]"; + progressStr = /*L*/"[ Loading... ]"; else if (this._progress < 1) { let progress = Math.round(this._progress * 20); progressStr = "[" |