From: Wilfried Göesgens Date: Thu, 6 Jul 2006 21:04:18 +0000 (+0000) Subject: * don't translate citadel commands! X-Git-Tag: v7.86~3998 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0dcbf713ac10921a9af84938640fa1696448a8c5 * don't translate citadel commands! --- 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");