[gnome-boxes/gnome-3-20] Revert "selection-toolbar: Fix printf format string"



commit 6c3354a13e4ac1337c5cc6cb4199f7ede3ea9f4c
Author: Zeeshan Ali <zeenix gmail com>
Date:   Wed Nov 2 17:31:52 2016 +0100

    Revert "selection-toolbar: Fix printf format string"
    
    This reverts commit 5b18f9d79b8d44d2183e6dc001d5af9504f372d8.
    
    This breaks string freeze.

 src/selection-toolbar.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/selection-toolbar.vala b/src/selection-toolbar.vala
index 261991f..b258047 100644
--- a/src/selection-toolbar.vala
+++ b/src/selection-toolbar.vala
@@ -43,7 +43,7 @@ private class Boxes.SelectionToolbar: HeaderBar {
         if (items > 0) {
             // This goes with the "Click on items to select them" string and is about selection of items 
(boxes)
             // when the main collection view is in selection mode.
-            menu_button_label.label = ngettext ("%u selected", "%u selected", items).printf (items);
+            menu_button_label.label = ngettext ("%d selected", "%d selected", items).printf (items);
         } else {
             menu_button_label.label = _("(Click on items to select them)");
         }


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