From b69a90b060eea355ae5a35f0a0f9eb0d32c1d3af Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Thu, 11 Apr 2013 20:39:39 +0200 Subject: wixl: mark a few more translatable strings --- tools/wixl/wixl.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/wixl') 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"); -- cgit