1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-10 18:04:11 +01:00

Localeify more strings.

This commit is contained in:
Kris Maglione
2011-03-15 20:14:01 -04:00
parent 4a552b14aa
commit 2d03f3f9ca
9 changed files with 63 additions and 34 deletions

View File

@@ -11,7 +11,7 @@ try {
Components.utils.import("resource://dactyl/bootstrap.jsm");
defineModule("completion", {
exports: ["CompletionContext", "Completion", "completion"],
use: ["config", "template", "util"]
use: ["config", "messages", "template", "util"]
}, this);
/**
@@ -331,7 +331,7 @@ var CompletionContext = Class("CompletionContext", {
* The message displayed at the head of the completions for the
* current context.
*/
get message() this._message || (this.waitingForTab && this.hasItems !== false ? "Waiting for <Tab>" : null),
get message() this._message || (this.waitingForTab && this.hasItems !== false ? _("completion.waitingFor", "<Tab>") : null),
set message(val) this._message = val,
/**