summaryrefslogtreecommitdiff
path: root/src/lib-popt
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-05-17 20:13:59 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-05-17 20:13:59 +0000
commitc2b2d45bd62ce410ba7ca8ac920d340b9ed1a527 (patch)
tree0d8256390680d8b7c34b9e294d9749e69db195c8 /src/lib-popt
parentfe5c94b050650c8b8f20278ea413fb1cc8d093dc (diff)
downloadirssi-c2b2d45bd62ce410ba7ca8ac920d340b9ed1a527.zip
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
Diffstat (limited to 'src/lib-popt')
-rw-r--r--src/lib-popt/popthelp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib-popt/popthelp.c b/src/lib-popt/popthelp.c
index 493726e0..c1876d74 100644
--- a/src/lib-popt/popthelp.c
+++ b/src/lib-popt/popthelp.c
@@ -21,8 +21,8 @@ static void displayArgs(poptContext con, enum poptCallbackReason foo,
struct poptOption poptHelpOptions[] = {
{ NULL, '\0', POPT_ARG_CALLBACK, (void *)&displayArgs, '\0', NULL },
- { "help", '?', 0, NULL, '?', N_("Show this help message") },
- { "usage", '\0', 0, NULL, 'u', N_("Display brief usage message") },
+ { "help", '?', 0, NULL, '?', "Show this help message" },
+ { "usage", '\0', 0, NULL, 'u', "Display brief usage message" },
{ NULL, '\0', 0, NULL, 0 }
} ;