1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 12:17:59 +01:00

More ad hoc i18n work.

This commit is contained in:
Doug Kearns
2011-03-20 00:46:11 +11:00
parent 1b197039a5
commit de04fc99d4
4 changed files with 16 additions and 8 deletions

View File

@@ -1305,7 +1305,7 @@ var CommandLine = Module("commandline", {
if (this.selected == null)
statusline.progress = "";
else
statusline.progress = "match " + (this.selected + 1) + " of " + this.items.length;
statusline.progress = _("completion.matchIndex", this.selected + 1, this.items.length);
}
if (this.items.length == 0)
@@ -1816,7 +1816,7 @@ var ItemList = Class("ItemList", {
onKeyPress: function onKeyPress(event) false
}, {
WAITING_MESSAGE: "Generating results..."
WAITING_MESSAGE: _("completion.generating")
});
// vim: set fdm=marker sw=4 ts=4 et: