summaryrefslogtreecommitdiff
path: root/common/content
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2011-03-06 03:15:01 +1100
committerDoug Kearns <dougkearns@gmail.com>2011-03-06 03:15:01 +1100
commitcae269fd32016e0b615ca2d9406c731af16b4c9b (patch)
tree05ff3e2a1b51320e7c8c39e8cd22da553854c59a /common/content
parent87a756718d5e906380f2a6b36593573a03de76b6 (diff)
downloadpentadactyl-cae269fd32016e0b615ca2d9406c731af16b4c9b.tar.gz
Move some more message strings to the properties file.
Diffstat (limited to 'common/content')
-rw-r--r--common/content/dactyl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js
index 45302e7a..dae302d9 100644
--- a/common/content/dactyl.js
+++ b/common/content/dactyl.js
@@ -475,7 +475,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
let res = true;
for (let [command, args] in commands.parseCommands(str.replace(/^'(.*)'$/, "$1"))) {
if (command === null)
- throw FailedAssertion("E492: Not a " + config.appName + " command: " + args.commandString);
+ throw FailedAssertion(_("dactyl.notCommand", config.appName, args.commandString));
res = res && command.execute(args, modifiers);
}