summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Pandelea <alexandru.pandelea@gmail.com>2016-10-03 11:45:07 +0300
committerCarlos Soriano <csoriano@gnome.org>2016-11-10 13:13:18 +0100
commit0fe196de6a2781997fd9991318f93c1b98e25d79 (patch)
treede988f199d8279fa2299a2958380a4ff5a95c9aa
parent735bdb195306db1936e52e9ec4150ef624b70bed (diff)
downloadnautilus-0fe196de6a2781997fd9991318f93c1b98e25d79.tar.gz
batch-rename-dialog: use same quote style
Instead of using \" use “ and ”. https://bugzilla.gnome.org/show_bug.cgi?id=771604
-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 4e922e7a0..d1a0dca4d 100644
--- a/src/nautilus-batch-rename-dialog.c
+++ b/src/nautilus-batch-rename-dialog.c
@@ -1412,19 +1412,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)