summaryrefslogtreecommitdiffstats
path: root/tools/wixl
diff options
context:
space:
mode:
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");