- i18n for ravaged regions.

This commit is contained in:
Enno Rehling 2007-09-02 19:06:21 +00:00
parent 79dc9acf5f
commit dd378fc8e8
2 changed files with 8 additions and 3 deletions

View File

@ -1070,8 +1070,8 @@ describe(FILE * F, const region * r, int partial, faction * f)
/* Produktionsreduktion */ /* Produktionsreduktion */
a = a_find(r->attribs, &at_reduceproduction); a = a_find(r->attribs, &at_reduceproduction);
if (a) { if (a) {
sprintf(buf, "Die Region ist verwüstet, der Boden karg."); const char * str = LOC(f->locale, "nr_reduced_production");
rparagraph(F, buf, 0, 0, 0); rparagraph(F, str, 0, 0, 0);
} }
if (edges) rnl(F); if (edges) rnl(F);

View File

@ -7462,6 +7462,11 @@
<text locale="en">a connection to another road</text> <text locale="en">a connection to another road</text>
</string> </string>
<string name="nr_reduced_production">
<text locale="de">Die Region ist verwüstet, der Boden karg.</text>
<text locale="en">The region is ravaged, the ground infertile.</text>
</string>
<string name="nr_an_incomplete_road"> <string name="nr_an_incomplete_road">
<text locale="de">eine unvollständige Straße</text> <text locale="de">eine unvollständige Straße</text>
<text locale="en">an incomplete road</text> <text locale="en">an incomplete road</text>