[nautilus/gnome-3-24] batch-rename-dialog: mark strings as translatable



commit 1d22e8e4f64cd9c43af2b33118a806786808ddc6
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Sat May 13 19:40:58 2017 +0200

    batch-rename-dialog: mark strings as translatable
    
    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 c3a4be2..6c7e49b 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");
+                             _("“/” is an unallowed character"));
     }
 
     if (have_unallowed_character_dot)
     {
         gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
-                             "“.” is an unallowed file name");
+                             _("“.” is an unallowed file name"));
     }
 
     if (have_unallowed_character_dotdot)
     {
         gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
-                             "“..” is an unallowed file name");
+                             _("“..” is an unallowed file name"));
     }
 
     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]