[gnome-music] Fixed gettext inner ngettext
- From: Marek Černocký <mcernocky src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music] Fixed gettext inner ngettext
- Date: Fri, 21 Feb 2014 22:00:55 +0000 (UTC)
commit e378feee25173fefe2e7baedf4fc4a925081526d
Author: Marek Černocký <marek manet cz>
Date: Fri Feb 21 22:59:08 2014 +0100
Fixed gettext inner ngettext
gnomemusic/window.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gnomemusic/window.py b/gnomemusic/window.py
index 4be5134..257fc36 100644
--- a/gnomemusic/window.py
+++ b/gnomemusic/window.py
@@ -208,7 +208,7 @@ class Window(Gtk.ApplicationWindow):
count = count + 1
if count > 0:
self.toolbar._selection_menu_label.set_text(
- ngettext(_("Selected %d item"), _("Selected %d items"), count) % count)
+ ngettext("Selected %d item", "Selected %d items", count) % count)
self.selection_toolbar._add_to_playlist_button.set_sensitive(True)
self.selection_toolbar._remove_from_playlist_button.set_sensitive(True)
elif count == 0:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]