summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2015-03-06 14:58:32 +0100
committerCarlos Soriano <csoriano@gnome.org>2015-03-06 14:58:32 +0100
commitee6b81e5161d5c67e5a4f3b4ae59b544e11c0c17 (patch)
tree61ac40d9ed54a19f8d80c2a733d143cad657901c
parent1bfd36c4d54b6eaded7b9d9a423c639e5941bf27 (diff)
downloadnautilus-ee6b81e5161d5c67e5a4f3b4ae59b544e11c0c17.tar.gz
nautilus-window: add translator comments
-rw-r--r--src/nautilus-window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 607551e81..3ecd3fc88 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -1540,9 +1540,12 @@ nautilus_window_notification_delete_get_label (NautilusFileUndoInfo *undo_info,
length = g_list_length (files);
if (length == 1) {
file_label = g_file_get_basename (files->data);
+ /* Translators: only one item has been deleted and %s is its name. */
label = g_strdup_printf (_("ā€œ%sā€ deleted"), file_label);
g_free (file_label);
} else {
+ /* Translators: one or more items might have been deleted, and %d
+ * is the count. */
label = g_strdup_printf (ngettext ("%d file deleted", "%d files deleted", length), length);
}