mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-04 20:55:47 +01:00
Annotate most strings which need to be explicitly localified.
This commit is contained in:
@@ -369,7 +369,10 @@ var Highlights = Module("Highlight", {
|
||||
else if (args.completeArg == 1) {
|
||||
let hl = highlight.get(args[0]);
|
||||
if (hl)
|
||||
context.completions = [[hl.value, "Current Value"], [hl.defaultValue || "", "Default Value"]];
|
||||
context.completions = [
|
||||
[hl.value, _("option.currentValue")],
|
||||
[hl.defaultValue || "", _("option.defaultValue")]
|
||||
];
|
||||
context.fork("css", 0, completion, "css");
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user