summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2015-02-03 10:03:55 +0100
committerCarlos Soriano <csoriano@gnome.org>2015-02-03 10:08:26 +0100
commit168adccb55633e3612e5dab5813243f72ac2465b (patch)
tree90f7c46324ac9a0a922bdfffe7f893c5c65d301d
parent888912d79aa8e6d647990389a244f40ff60ae40e (diff)
downloadnautilus-168adccb55633e3612e5dab5813243f72ac2465b.tar.gz
nautilus-view: Use singular even if not necessary
Even if the singular form is never used, we have to put the sentence in singular for the singular form for ngettext
-rw-r--r--src/nautilus-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-view.c b/src/nautilus-view.c
index be86cd42d..a5d12d2dd 100644
--- a/src/nautilus-view.c
+++ b/src/nautilus-view.c
@@ -6136,7 +6136,7 @@ update_selection_menu (NautilusView *view)
show_stop = (selection != NULL && selection_count == 1);
show_detect_media = (selection != NULL && selection_count == 1);
start_stop_type = G_DRIVE_START_STOP_TYPE_UNKNOWN;
- item_label = g_strdup_printf (ngettext ("New Folder with Selection (%'d Items)",
+ item_label = g_strdup_printf (ngettext ("New Folder with Selection (%'d Item)",
"New Folder with Selection (%'d Items)",
selection_count),
selection_count);