From 0dcbf713ac10921a9af84938640fa1696448a8c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 6 Jul 2006 21:04:18 +0000 Subject: [PATCH] * don't translate citadel commands! --- webcit/inetconf.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/webcit/inetconf.c b/webcit/inetconf.c index 85f98153b..bee9bc2a8 100644 --- a/webcit/inetconf.c +++ b/webcit/inetconf.c @@ -35,12 +35,13 @@ void display_inetconf(void) char *ic_boxtitle[ic_max]; char *ic_desc[ic_max]; - ic_keyword[0] = _("localhost"); - ic_keyword[1] = _("directory"); - ic_keyword[2] = _("gatewaydomain"); - ic_keyword[3] = _("smarthost"); - ic_keyword[4] = _("rbl"); - ic_keyword[5] = _("spamassassin"); + /* DON'T NEVER EVER AGAIN TRANSLATE CITADEL COMMANDS! */ + ic_keyword[0] = "localhost"; + ic_keyword[1] = "directory"; + ic_keyword[2] = "gatewaydomain"; + ic_keyword[3] = "smarthost"; + ic_keyword[4] = "rbl"; + ic_keyword[5] = "spamassassin"; ic_boxtitle[0] = _("Local host aliases"); ic_boxtitle[1] = _("Directory domains"); -- 2.30.2