tDo not translate TRUE and FALSE on printout, since the inputs are not translated anyway (to maintain config. file portability). - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 1b60c91d0ec611630b359e22360bfd254aa5d81d
(DIR) parent a8ca550ea7f7d7ae726114d3f472c79482a768cd
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Tue, 15 Oct 2002 13:40:11 +0000
Do not translate TRUE and FALSE on printout, since the inputs are not
ttranslated anyway (to maintain config. file portability).
Diffstat:
M src/configfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/configfile.c b/src/configfile.c
t@@ -105,7 +105,7 @@ static void WriteConfigValue(FILE *fp, Converter *conv, int GlobalIndex,
} else if (Globals[GlobalIndex].BoolVal) {
fprintf(fp, "%s = %s\n", GlobalName,
*GetGlobalBoolean(GlobalIndex, StructIndex) ?
- _("TRUE") : _("FALSE"));
+ "TRUE" : "FALSE");
} else if (Globals[GlobalIndex].PriceVal) {
gchar *prstr = pricetostr(*GetGlobalPrice(GlobalIndex, StructIndex));