From 6898a9dcf1f3614f5c132d4649f3d414feb6df5e Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 23 May 2012 23:02:08 +0200 Subject: Do not localize configuration options The configuration options shown in the configuration menu are meant to reflect the keys used in the configuration file. The descriptions displayed alongside each option should be sufficient for non-English speakers. Signed-off-by: Lukas Fleischer --- src/custom.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/custom.c') diff --git a/src/custom.c b/src/custom.c index ef84703..e407b00 100644 --- a/src/custom.c +++ b/src/custom.c @@ -605,16 +605,16 @@ static int print_general_options(WINDOW * win) const int YOFF = 3; int y; char *opt[NB_OPTIONS] = { - _("general.autosave = "), - _("general.autogc = "), - _("general.periodicsave = "), - _("general.confirmquit = "), - _("general.confirmdelete = "), - _("general.systemdialogs = "), - _("general.progressbar = "), - _("general.firstdayofweek = "), - _("format.outputdate = "), - _("format.inputdate = ") + "general.autosave = ", + "general.autogc = ", + "general.periodicsave = ", + "general.confirmquit = ", + "general.confirmdelete = ", + "general.systemdialogs = ", + "general.progressbar = ", + "general.firstdayofweek = ", + "format.outputdate = ", + "format.inputdate = " }; y = 0; -- cgit v1.2.3-54-g00ecf