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

Move some more message strings to the properties file.

This commit is contained in:
Doug Kearns
2011-03-08 03:09:37 +11:00
parent 1f0a95e40d
commit c08c0dc19f
9 changed files with 27 additions and 16 deletions

View File

@@ -48,7 +48,7 @@ var IO = Module("io", {
let file = download.targetFile.path;
let size = download.size;
dactyl.echomsg({ domains: [util.getHost(url)], message: "Download of " + title + " to " + file + " finished" },
dactyl.echomsg({ domains: [util.getHost(url)], message: _("io.downloadFinished", title, file) },
1, modules.commandline.ACTIVE_WINDOW);
modules.autocommands.trigger("DownloadPost", { url: url, title: title, file: file, size: size });
}