summaryrefslogtreecommitdiff
path: root/common/content/mow.js
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2011-03-19 21:24:51 +1100
committerDoug Kearns <dougkearns@gmail.com>2011-03-19 21:24:51 +1100
commitebfc3712e6f9ac2c15c97ecbf630ba56b1e45bc6 (patch)
treef0783cdff66474208b5a09aa907baa12e474a39f /common/content/mow.js
parentaf550c3839eafa7902ebd50dc7805e40dbadeee1 (diff)
downloadpentadactyl-ebfc3712e6f9ac2c15c97ecbf630ba56b1e45bc6.tar.gz
Localize the more prompt messages.
Diffstat (limited to 'common/content/mow.js')
-rw-r--r--common/content/mow.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/mow.js b/common/content/mow.js
index 9ace65a3..ab268002 100644
--- a/common/content/mow.js
+++ b/common/content/mow.js
@@ -278,11 +278,11 @@ var MOW = Module("mow", {
let elem = this.widget.contentDocument.documentElement;
if (showHelp)
- this.widgets.message = ["MoreMsg", "-- More -- SPACE/<C-f>/j: screen/page/line down, <C-b>/<C-u>/k: up, q: quit"];
+ this.widgets.message = ["MoreMsg", _("mow.moreHelp")];
else if (force || (options["more"] && Buffer.isScrollable(elem, 1)))
- this.widgets.message = ["MoreMsg", "-- More --"];
+ this.widgets.message = ["MoreMsg", _("mow.more")];
else
- this.widgets.message = ["Question", "Press ENTER or type command to continue"];
+ this.widgets.message = ["Question", _("mow.continue")];
},
visible: Modes.boundProperty({