forked from github/server
- i18n for ravaged regions.
This commit is contained in:
parent
79dc9acf5f
commit
dd378fc8e8
2 changed files with 8 additions and 3 deletions
|
@ -1069,9 +1069,9 @@ describe(FILE * F, const region * r, int partial, faction * f)
|
|||
|
||||
/* Produktionsreduktion */
|
||||
a = a_find(r->attribs, &at_reduceproduction);
|
||||
if(a) {
|
||||
sprintf(buf, "Die Region ist verwüstet, der Boden karg.");
|
||||
rparagraph(F, buf, 0, 0, 0);
|
||||
if (a) {
|
||||
const char * str = LOC(f->locale, "nr_reduced_production");
|
||||
rparagraph(F, str, 0, 0, 0);
|
||||
}
|
||||
|
||||
if (edges) rnl(F);
|
||||
|
|
|
@ -7462,6 +7462,11 @@
|
|||
<text locale="en">a connection to another road</text>
|
||||
</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">
|
||||
<text locale="de">eine unvollständige Straße</text>
|
||||
<text locale="en">an incomplete road</text>
|
||||
|
|
Loading…
Reference in a new issue