fix building string translation

This commit is contained in:
guinux 2017-03-10 10:21:22 +01:00
parent aff27cad10
commit 5767cf0076
1 changed files with 1 additions and 1 deletions

View File

@ -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 ();