Ticket #3879: helpargs.diff

File helpargs.diff, 2.0 KB (added by dmartina, 6 years ago)

Patch file for args.c

  • src/args.c

    old new  
    137137     "printwd", 'P', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, 
    138138     &mc_args__last_wd_file, 
    139139     N_("Print last working directory to specified file"), 
    140      "<file>" 
     140     N_("<file>") 
    141141    }, 
    142142 
    143143#ifdef ENABLE_SUBSHELL 
     
    162162     "ftplog", 'l', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, 
    163163     &mc_args__netfs_logfile, 
    164164     N_("Log ftp dialog to specified file"), 
    165      "<file>" 
     165     N_("<file>") 
    166166    }, 
    167167#endif /* ENABLE_VFS_FTP */ 
    168168#ifdef ENABLE_VFS_SMB 
     
    170170     "debuglevel", 'D', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_INT, 
    171171     &mc_args__debug_level, 
    172172     N_("Set debug level"), 
    173      "<integer>" 
     173     N_("<integer>") 
    174174    }, 
    175175#endif /* ENABLE_VFS_SMB */ 
    176176 
     
    179179     "view", 'v', G_OPTION_FLAG_IN_MAIN | G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, 
    180180     (gpointer) parse_mc_v_argument, 
    181181     N_("Launches the file viewer on a file"), 
    182      "<file>" 
     182     N_("<file>") 
    183183    }, 
    184184 
    185185    { 
     
    187187     "edit", 'e', G_OPTION_FLAG_IN_MAIN | G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, 
    188188     (gpointer) parse_mc_e_argument, 
    189189     N_("Edit files"), 
    190      "<file> ..." }, 
     190     N_("<file> ...") }, 
    191191 
    192192    { 
    193193     NULL, '\0', 0, 0, NULL, NULL, NULL /* Complete struct initialization */ 
     
    264264     "keymap", 'K', ARGS_TERM_OPTIONS, G_OPTION_ARG_STRING, 
    265265     &mc_args__keymap_file, 
    266266     N_("Load definitions of key bindings from specified file"), 
    267      "<file>" 
     267     N_("<file>") 
    268268    }, 
    269269 
    270270    { 
     
    306306     "colors", 'C', ARGS_COLOR_OPTIONS, G_OPTION_ARG_STRING, 
    307307     &mc_global.tty.command_line_colors, 
    308308     N_("Specifies a color configuration"), 
    309      "<string>" 
     309     N_("<string>") 
    310310    }, 
    311311 
    312312    { 
    313313     "skin", 'S', ARGS_COLOR_OPTIONS, G_OPTION_ARG_STRING, 
    314314     &mc_global.tty.skin, 
    315315     N_("Show mc with specified skin"), 
    316      "<string>" 
     316     N_("<string>") 
    317317    }, 
    318318 
    319319    {