summaryrefslogtreecommitdiff
path: root/src/nautilus-batch-rename-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nautilus-batch-rename-dialog.c')
-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