Fix typos in translatable strings

This commit is contained in:
Piotr Drąg 2016-08-17 20:34:38 +02:00
parent ec2a7cc710
commit 3f0ff576a7
3 changed files with 3 additions and 3 deletions

View File

@ -184,7 +184,7 @@ handle_copy (int argc, char *argv[], gboolean do_help)
error = NULL;
uri = g_file_get_uri (target);
g_print (_("%s: overwrite '%s' ? "), argv[0], uri);
g_print (_("%s: overwrite '%s'? "), argv[0], uri);
g_free (uri);
if (fgets (line, sizeof (line), stdin) &&

View File

@ -71,7 +71,7 @@ handle_mkdir (int argc, char *argv[], gboolean do_help)
if (argc < 2)
{
show_help (context, _("No locations gives"));
show_help (context, _("No locations given"));
return 1;
}

View File

@ -178,7 +178,7 @@ handle_move (int argc, char *argv[], gboolean do_help)
error = NULL;
uri = g_file_get_uri (target);
g_print (_("%s: overwrite '%s' ? "), argv[0], uri);
g_print (_("%s: overwrite '%s'? "), argv[0], uri);
g_free (uri);
if (fgets (line, sizeof (line), stdin) &&
(line[0] == 'y' || line[0] == 'Y'))