gio-tool: Use "…" consistently

"gio help COMMAND" shows some arguments with "..." and some with "…",
which looks weird, e.g.:

$ gio help mount
gio mount [OPTION…] [LOCATION...]

Let's use "…" consitently.
This commit is contained in:
Ondrej Holy
2018-05-25 16:59:30 +02:00
parent 66187c4c3e
commit bc365c9b4e
14 changed files with 14 additions and 14 deletions

View File

@@ -78,7 +78,7 @@ handle_trash (int argc, char *argv[], gboolean do_help)
g_set_prgname ("gio trash");
/* Translators: commandline placeholder */
param = g_strdup_printf ("[%s...]", _("LOCATION"));
param = g_strdup_printf ("[%s]", _("LOCATION"));
context = g_option_context_new (param);
g_free (param);
g_option_context_set_help_enabled (context, FALSE);