1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 18:45:47 +01:00

Move some more message strings to the properties file.

This commit is contained in:
Doug Kearns
2011-03-13 03:10:59 +11:00
parent 55267dddff
commit 27de24f852
14 changed files with 64 additions and 29 deletions

View File

@@ -202,8 +202,8 @@ var IO = Module("io", {
this._scriptNames.push(file.path);
dactyl.echomsg(_("io.sourcingEnd", filename.quote()), 2);
dactyl.log(_("dactyl.sourced", filename), 3);
dactyl.log("Sourced: " + filename, 3);
return context;
}
catch (e) {
@@ -622,7 +622,7 @@ var IO = Module("io", {
}
catch (e) {
dactyl.echoerr(_("io.notWriteable"), file.path.quote());
dactyl.log("Could not write to " + file.path + ": " + e.message); // XXX
dactyl.log(_("error.notWriteable", file.path, e.message)); // XXX
}
}, {
argCount: "*", // FIXME: should be "?" but kludged for proper error message