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:40:58 +0200
commit5713949603ca91d6f71beae0dc149bfd23bcde7c (patch)
tree695a7098c859d2dbb3f46d325f7f108c5c790a67
parent0e21d1877e267edf7fa9d8e5dee734b223fc0eda (diff)
downloadnautilus-5713949603ca91d6f71beae0dc149bfd23bcde7c.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 ddc1942a6..4c1c27639 100644
--- a/src/nautilus-batch-rename-dialog.c
+++ b/src/nautilus-batch-rename-dialog.c
@@ -1429,19 +1429,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