diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-03-11 05:39:38 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-03-11 05:39:38 +1100 |
commit | 1094eb2412f87c267997c3872ec74350577539cf (patch) | |
tree | 51ab89f4815d99852c2d4cc4d358f2157dfc924c | |
parent | de64d3f600d2e379c50ba7b6c1a0dd33cdb4f84a (diff) | |
download | pentadactyl-1094eb2412f87c267997c3872ec74350577539cf.tar.gz |
Fix erroneous message key use in :extadd.
--HG--
extra : rebase_source : b63c12fc8bdaebdca1d622e1b124bf729583cf12
-rw-r--r-- | common/modules/addons.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/modules/addons.jsm b/common/modules/addons.jsm index f460948f..7e8242ae 100644 --- a/common/modules/addons.jsm +++ b/common/modules/addons.jsm @@ -393,7 +393,7 @@ var Addons = Module("addons", { else if (file.isDirectory()) dactyl.echoerr(_("addon.cantInstallDir", file.path.quote())); else - dactyl.echoerr(_("io.notReadable-1", file.path)); + dactyl.echoerr(_("io.notReadable", file.path)); }, { argCount: "1", completer: function (context) { |