mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 16:57:59 +01:00
Annotate most strings which need to be explicitly localified.
This commit is contained in:
@@ -321,7 +321,7 @@ var Editor = Module("editor", {
|
||||
try {
|
||||
var tmpfile = io.createTempFile();
|
||||
if (!tmpfile)
|
||||
throw Error("Couldn't create temporary file");
|
||||
throw Error(/*L*/"Couldn't create temporary file");
|
||||
|
||||
if (textBox) {
|
||||
highlight.highlightNode(textBox, origGroup + " EditorEditing");
|
||||
@@ -329,7 +329,7 @@ var Editor = Module("editor", {
|
||||
}
|
||||
|
||||
if (!tmpfile.write(text))
|
||||
throw Error("Input contains characters not valid in the current " +
|
||||
throw Error(/*L*/"Input contains characters not valid in the current " +
|
||||
"file encoding");
|
||||
|
||||
var lastUpdate = Date.now();
|
||||
|
||||
Reference in New Issue
Block a user