1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 18:42:27 +01:00

Localize some more strings.

This commit is contained in:
Kris Maglione
2011-03-12 16:59:56 -05:00
parent 243559ec17
commit c1c97dcd54
4 changed files with 30 additions and 15 deletions

View File

@@ -396,7 +396,7 @@ var CompletionContext = Class("CompletionContext", {
}
catch (e) {
util.reportError(e);
this.message = "Error: " + e;
this.message = _("error.error", e);
}
}
// XXX
@@ -495,7 +495,7 @@ var CompletionContext = Class("CompletionContext", {
return this.cache.filtered = filtered;
}
catch (e) {
this.message = "Error: " + e;
this.message = _("error.error", e);
util.reportError(e);
return [];
}