From 5767cf007681bcdfba15fb0d58e95a6cfa48d952 Mon Sep 17 00:00:00 2001 From: guinux Date: Fri, 10 Mar 2017 10:21:22 +0100 Subject: [PATCH] fix building string translation --- src/transaction.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transaction.vala b/src/transaction.vala index a827456..ed84bb8 100644 --- a/src/transaction.vala +++ b/src/transaction.vala @@ -1045,7 +1045,7 @@ namespace Pamac { async void build_aur_packages () { string pkgname = to_build_queue.pop_head (); - string action = dgettext (null, "Building %s".printf (pkgname)) + "..."; + string action = dgettext (null, "Building %s").printf (pkgname) + "..."; reset_progress_box (action); build_cancellable.reset (); start_progressbar_pulse ();