summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2017-05-13 19:40:58 +0200
committerPiotr Drąg <piotrdrag@gmail.com>2017-05-13 19:55:53 +0200
commit1d22e8e4f64cd9c43af2b33118a806786808ddc6 (patch)
treeb4a9dab5f80209049dd9c3f05cdcedaf6151378f
parent8d556c53e376708850f1f1be0234dce241249266 (diff)
downloadnautilus-1d22e8e4f64cd9c43af2b33118a806786808ddc6.tar.gz
batch-rename-dialog: mark strings as translatable
https://bugzilla.gnome.org/show_bug.cgi?id=782601
-rw-r--r--src/nautilus-batch-rename-dialog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nautilus-batch-rename-dialog.c b/src/nautilus-batch-rename-dialog.c
index c3a4be26f..6c7e49b64 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)