mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
girepository: Provide placeholders for positional parameters
Otherwise, correct invocation isn't clear from the --help output. This does not introduce new translated strings: FILE was already translated. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
@@ -37,6 +37,7 @@ int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
GIRepository *repository = NULL;
|
||||
gchar *param;
|
||||
gchar *output = NULL;
|
||||
gchar **includedirs = NULL;
|
||||
gboolean show_all = FALSE;
|
||||
@@ -60,7 +61,10 @@ main (int argc, char *argv[])
|
||||
|
||||
setlocale (LC_ALL, "");
|
||||
|
||||
context = g_option_context_new ("");
|
||||
/* Translators: commandline placeholder */
|
||||
param = g_strdup_printf ("%s…", _("FILE"));
|
||||
context = g_option_context_new (param);
|
||||
g_free (param);
|
||||
g_option_context_add_main_entries (context, options, NULL);
|
||||
if (!g_option_context_parse (context, &argc, &argv, &error))
|
||||
{
|
||||
|
Reference in New Issue
Block a user