summaryrefslogtreecommitdiff
path: root/common/content
diff options
context:
space:
mode:
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);
}