1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-26 18:05:45 +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

@@ -385,8 +385,8 @@ var Highlights = Module("Highlight", {
let group = args[0] && highlight.get(args[0]);
if (group)
context.fork("extra", 0, this, function (context) [
[String(group.extends), "Current Value"],
[String(group.defaultExtends) || "", "Default Value"]
[String(group.extends), _("option.currentValue")],
[String(group.defaultExtends) || "", _("option.defaultValue")]
]);
context.fork("groups", 0, completion, "highlightGroup");
}