diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-03-19 21:24:51 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-03-19 21:24:51 +1100 |
commit | ebfc3712e6f9ac2c15c97ecbf630ba56b1e45bc6 (patch) | |
tree | f0783cdff66474208b5a09aa907baa12e474a39f /common/content/mow.js | |
parent | af550c3839eafa7902ebd50dc7805e40dbadeee1 (diff) | |
download | pentadactyl-ebfc3712e6f9ac2c15c97ecbf630ba56b1e45bc6.tar.gz |
Localize the more prompt messages.
Diffstat (limited to 'common/content/mow.js')
-rw-r--r-- | common/content/mow.js | 6 |
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({ |