[gnome-clocks/gnome-3-22] Revert "Fix compilation"



commit 42599f2105a927a5dc5b23b5b52838eb7104b08a
Author: Alexandre Franke <alexandre franke gmail com>
Date:   Tue Feb 14 14:06:26 2017 +0100

    Revert "Fix compilation"
    
    This reverts commit 489e66d25c7af8158c1a659cda77d8d9833c6e7b.
    It was breaking string freeze and it's not needed on the stable branch.
    https://mail.gnome.org/archives/gnome-i18n/2017-February/msg00026.html

 src/widgets.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/widgets.vala b/src/widgets.vala
index b0065b0..81a5627 100644
--- a/src/widgets.vala
+++ b/src/widgets.vala
@@ -537,7 +537,7 @@ private class SelectionMenuButton : Gtk.MenuButton {
                 if (n_items == 0) {
                     label = _("Click on items to select them");
                 } else {
-                    label = ngettext ("%u selected", "%u selected", n_items).printf (n_items);
+                    label = ngettext ("%d selected", "%d selected", n_items).printf (n_items);
                 }
                 menubutton_label.label = label;
             }


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