proper translation of items in the faction pool.

This commit is contained in:
Enno Rehling 2005-07-26 20:39:36 +00:00
parent 30e4a626f2
commit 5ebac77a1c
1 changed files with 1 additions and 1 deletions

View File

@ -1173,7 +1173,7 @@ report_computer(FILE * F, faction * f, struct seen_region ** seen, const faction
fprintf(F, "\"%s\";banner\n", f->banner);
for (itm=f->items; itm; itm=itm->next) {
int in = itm->number;
const char * ic = LOC(f->locale, resourcename(itm->type->rtype, in));
const char * ic = resourcename(itm->type->rtype, in);
if (itm==f->items) fputs("GEGENSTAENDE\n", F);
fprintf(F, "%d;%s\n", in, add_translation(ic, LOC(f->locale, ic)));
}