mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
Getting rid of gettext, moved some _(..) texts to themes and left some error
messages hard coded. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1503 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
fe5c94b050
commit
c2b2d45bd6
28 changed files with 61 additions and 950 deletions
|
|
@ -52,12 +52,10 @@ void args_execute(int argc, char *argv[])
|
|||
while ((nextopt = poptGetNextOpt(con)) > 0) ;
|
||||
|
||||
if (nextopt != -1) {
|
||||
printf(_("Error on option %s: %s.\n"
|
||||
"Run '%s --help' to see a full list of "
|
||||
"available command line options.\n"),
|
||||
poptBadOption(con, 0),
|
||||
poptStrerror(nextopt),
|
||||
argv[0]);
|
||||
printf("Error on option %s: %s.\n"
|
||||
"Run '%s --help' to see a full list of "
|
||||
"available command line options.\n",
|
||||
poptBadOption(con, 0), poptStrerror(nextopt), argv[0]);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue