summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2017-05-13 19:45:26 +0200
committerPiotr Drąg <piotrdrag@gmail.com>2017-05-13 19:47:09 +0200
commit8480203d1a9a58b48322f031ec9a0c7fab73454b (patch)
tree959df9bfca2dc101421d7e9cf6e25f976603ecad
parent5713949603ca91d6f71beae0dc149bfd23bcde7c (diff)
downloadnautilus-8480203d1a9a58b48322f031ec9a0c7fab73454b.tar.gz
batch-rename-dialog: fix grammar in translatable strings
https://bugzilla.gnome.org/show_bug.cgi?id=782601
-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 4c1c27639..185fe4cb0 100644
--- a/src/nautilus-batch-rename-dialog.c
+++ b/src/nautilus-batch-rename-dialog.c
@@ -1423,25 +1423,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"));
+ _("A file must have a name."));
}
if (have_unallowed_character_slash)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("“/” is an unallowed character"));
+ _("File names cannot contain “/”."));
}
if (have_unallowed_character_dot)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("“.” is an unallowed file name"));
+ _("A file cannot be called “.”."));
}
if (have_unallowed_character_dotdot)
{
gtk_label_set_label (GTK_LABEL (dialog->conflict_label),
- _("“..” is an unallowed file name"));
+ _("A file cannot be called “..”."));
}
if (have_unallowed_character_slash || have_unallowed_character_dot || have_unallowed_character_dotdot