[gnome-boxes/gnome-3-22] Revert "selectionbar: Fix printf format string"



commit e52015eb99ff92a19ae5fb0ec0b891ad49ee5109
Author: Zeeshan Ali <zeenix gmail com>
Date:   Wed Nov 2 17:32:23 2016 +0100

    Revert "selectionbar: Fix printf format string"
    
    This reverts commit 875e057f47cb5a3b4326cd5704ea8b8ab9990b1e.
    
    This breaks string freeze.

 src/selectionbar.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/selectionbar.vala b/src/selectionbar.vala
index 845abce..e7440e6 100644
--- a/src/selectionbar.vala
+++ b/src/selectionbar.vala
@@ -172,6 +172,6 @@ private class Boxes.Selectionbar: Gtk.Revealer {
         if (items == 0)
             open_btn.label = C_("0 items selected", "_Open in new window");
         else
-            open_btn.label = ngettext ("_Open in new window", "_Open in %u new windows", items).printf 
(items);
+            open_btn.label = ngettext ("_Open in new window", "_Open in %d new windows", items).printf 
(items);
     }
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]