summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2017-08-18 14:48:49 +0200
committerCarlos Soriano <csoriano@gnome.org>2017-08-18 14:50:36 +0200
commit9db624072b1c6b44fb9633e3f490942ba02f613d (patch)
tree2b9eda35d0ff27a7855d89a38742dbf2f65cb8f4
parent017a90beb6d68788bfffcedcf2b9ba3fa7116ec7 (diff)
downloadnautilus-9db624072b1c6b44fb9633e3f490942ba02f613d.tar.gz
batch-rename-dialog: Use better wording
Nautilus was using "unallowed" which sounds odd and also "file name" when in reality can also be folders. https://bugzilla.gnome.org/show_bug.cgi?id=771114
-rw-r--r--src/nautilus-batch-rename-dialog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nautilus-batch-rename-dialog.c b/src/nautilus-batch-rename-dialog.c
index e3ad0bc3e..6f65350a3 100644
--- a/src/nautilus-batch-rename-dialog.c
+++ b/src/nautilus-batch-rename-dialog.c
@@ -1425,25 +1425,25 @@ have_unallowed_character (NautilusBatchRenameDialog *dialog)
if (have_empty_name)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("A file must have a name."));
+ _("Name cannot be empty."));
}
if (have_unallowed_character_slash)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("File names cannot contain “/”."));
+ _("Name cannot contain “/”."));
}
if (have_unallowed_character_dot)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("A file cannot be called “.”."));
+ _("“.” is not a valid name."));
}
if (have_unallowed_character_dotdot)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("A file cannot be called “..”."));
+ _("“..” is not a valid name."));
}
if (have_unallowed_character_slash || have_unallowed_character_dot || have_unallowed_character_dotdot