summaryrefslogtreecommitdiffstats
path: root/tools/wixl
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-04-11 20:39:39 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-04-12 03:31:20 +0200
commitb69a90b060eea355ae5a35f0a0f9eb0d32c1d3af (patch)
treea80a8d206d099bdae9024c83bc6e29c552676219 /tools/wixl
parent457124ebc3e6a13894888d45f408d2706e5e3f78 (diff)
downloadmsitools-b69a90b060eea355ae5a35f0a0f9eb0d32c1d3af.tar.gz
msitools-b69a90b060eea355ae5a35f0a0f9eb0d32c1d3af.tar.xz
msitools-b69a90b060eea355ae5a35f0a0f9eb0d32c1d3af.zip
wixl: mark a few more translatable strings
Diffstat (limited to 'tools/wixl')
-rw-r--r--tools/wixl/wixl.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/wixl/wixl.vala b/tools/wixl/wixl.vala
index 24dd179..25b6c9e 100644
--- a/tools/wixl/wixl.vala
+++ b/tools/wixl/wixl.vala
@@ -97,7 +97,7 @@ namespace Wixl {
foreach (var arg in files) {
if (verbose)
- print ("Loading %s...\n", arg);
+ print (_("Loading %s...\n"), arg);
var file = File.new_for_commandline_arg (arg);
builder.load_file (file, preproc);
builder.add_path (file.get_parent ().get_path ());
@@ -107,10 +107,10 @@ namespace Wixl {
return 0;
if (verbose)
- print ("Building %s...\n", output);
+ print (_("Building %s...\n"), output);
var msi = builder.build ();
if (verbose)
- print ("Writing %s...\n", output);
+ print (_("Writing %s...\n"), output);
msi.build (output);
} catch (GLib.Error error) {
printerr (error.message + "\n");