[nautilus/gnome-3-24] batch-rename-dialog: fix grammar in translatable strings



commit a502e23d92eb063841141a6df7ba92042dad8fa0
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Sat May 13 19:45:26 2017 +0200

    batch-rename-dialog: fix grammar in translatable strings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=782601

 src/nautilus-batch-rename-dialog.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/nautilus-batch-rename-dialog.c b/src/nautilus-batch-rename-dialog.c
index 6c7e49b..035905c 100644
--- a/src/nautilus-batch-rename-dialog.c
+++ b/src/nautilus-batch-rename-dialog.c
@@ -1415,19 +1415,19 @@ have_unallowed_character (NautilusBatchRenameDialog *dialog)
     if (have_unallowed_character_slash)
     {
         gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
-                             _("“/” is an unallowed character"));
+                             _("File names cannot contain “/”."));
     }
 
     if (have_unallowed_character_dot)
     {
         gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
-                             _("“.” is an unallowed file name"));
+                             _("A file cannot be called “.”."));
     }
 
     if (have_unallowed_character_dotdot)
     {
         gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
-                             _("“..” is an unallowed file name"));
+                             _("A file cannot be called “..”."));
     }
 
     if (have_unallowed_character_slash || have_unallowed_character_dot || have_unallowed_character_dotdot)


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