From 26a26172567146ad31118b004b25b3e22ef06b65 Mon Sep 17 00:00:00 2001 From: David Martin Date: Sat, 2 Dec 2017 11:24:46 +0300 Subject: [PATCH] Ticket #3879: i18n of argument type names in --help blocks. Signed-off-by: Andrew Borodin --- src/args.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/args.c b/src/args.c index 7e6c25bb8..a9c71a09c 100644 --- a/src/args.c +++ b/src/args.c @@ -137,7 +137,7 @@ static const GOptionEntry argument_main_table[] = { "printwd", 'P', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &mc_args__last_wd_file, N_("Print last working directory to specified file"), - "" + N_("") }, #ifdef ENABLE_SUBSHELL @@ -162,7 +162,7 @@ static const GOptionEntry argument_main_table[] = { "ftplog", 'l', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &mc_args__netfs_logfile, N_("Log ftp dialog to specified file"), - "" + N_("") }, #endif /* ENABLE_VFS_FTP */ #ifdef ENABLE_VFS_SMB @@ -170,7 +170,7 @@ static const GOptionEntry argument_main_table[] = { "debuglevel", 'D', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_INT, &mc_args__debug_level, N_("Set debug level"), - "" + N_("") }, #endif /* ENABLE_VFS_SMB */ @@ -179,7 +179,7 @@ static const GOptionEntry argument_main_table[] = { "view", 'v', G_OPTION_FLAG_IN_MAIN | G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) parse_mc_v_argument, N_("Launches the file viewer on a file"), - "" + N_("") }, { @@ -187,7 +187,7 @@ static const GOptionEntry argument_main_table[] = { "edit", 'e', G_OPTION_FLAG_IN_MAIN | G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) parse_mc_e_argument, N_("Edit files"), - " ..." }, + N_(" ...") }, { NULL, '\0', 0, 0, NULL, NULL, NULL /* Complete struct initialization */ @@ -264,7 +264,7 @@ static const GOptionEntry argument_terminal_table[] = { "keymap", 'K', ARGS_TERM_OPTIONS, G_OPTION_ARG_STRING, &mc_args__keymap_file, N_("Load definitions of key bindings from specified file"), - "" + N_("") }, { @@ -306,14 +306,14 @@ static const GOptionEntry argument_color_table[] = { "colors", 'C', ARGS_COLOR_OPTIONS, G_OPTION_ARG_STRING, &mc_global.tty.command_line_colors, N_("Specifies a color configuration"), - "" + N_("") }, { "skin", 'S', ARGS_COLOR_OPTIONS, G_OPTION_ARG_STRING, &mc_global.tty.skin, N_("Show mc with specified skin"), - "" + N_("") }, {