Textfehler behoben bei Spruchanalyse

This commit is contained in:
Enno Rehling 2002-09-22 14:49:04 +00:00
parent 6a8b681884
commit b41b312998
2 changed files with 16 additions and 12 deletions

View File

@ -187,11 +187,11 @@ magicanalyse_region(region *r, unit *mage, int force)
if(c->flag & CURSE_NOAGE) { if(c->flag & CURSE_NOAGE) {
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_region_noage%u:mage%r:region%s:spell", "analyse_region_noage%u:mage%r:region%s:spell",
mage, r, LOC(lang, c->type->cname))); mage, r, LOC(lang, mkname("spell", c->type->cname))));
}else{ }else{
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_region_age%u:mage%r:region%s:spell%i:months", "analyse_region_age%u:mage%r:region%s:spell%i:months",
mage, r, LOC(lang, c->type->cname), mon)); mage, r, LOC(lang, mkname("spell", c->type->cname)), mon));
} }
} else { } else {
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
@ -228,11 +228,11 @@ magicanalyse_unit(unit *u, unit *mage, int force)
if(c->flag & CURSE_NOAGE){ if(c->flag & CURSE_NOAGE){
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_unit_noage%u:mage%u:unit%s:spell", "analyse_unit_noage%u:mage%u:unit%s:spell",
mage, u, LOC(lang, c->type->cname))); mage, u, LOC(lang, mkname("spell", c->type->cname))));
}else{ }else{
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_unit_age%u:mage%u:unit%s:spell%i:months", "analyse_unit_age%u:mage%u:unit%s:spell%i:months",
mage, u, LOC(lang, c->type->cname), mon)); mage, u, LOC(lang, mkname("spell", c->type->cname)), mon));
} }
} else { } else {
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
@ -269,11 +269,11 @@ magicanalyse_building(building *b, unit *mage, int force)
if(c->flag & CURSE_NOAGE){ if(c->flag & CURSE_NOAGE){
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_building_age%u:mage%b:building%s:spell", "analyse_building_age%u:mage%b:building%s:spell",
mage, b, LOC(lang, c->type->cname))); mage, b, LOC(lang, mkname("spell", c->type->cname))));
}else{ }else{
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_building_age%u:mage%b:building%s:spell%i:months", "analyse_building_age%u:mage%b:building%s:spell%i:months",
mage, b, LOC(lang, c->type->cname))); mage, b, LOC(lang, mkname("spell", c->type->cname)), mon));
} }
} else { } else {
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
@ -311,11 +311,11 @@ magicanalyse_ship(ship *sh, unit *mage, int force)
if(c->flag & CURSE_NOAGE){ if(c->flag & CURSE_NOAGE){
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_ship_noage%u:mage%h:ship%s:spell", "analyse_ship_noage%u:mage%h:ship%s:spell",
mage, sh, LOC(lang, c->type->cname))); mage, sh, LOC(lang, mkname("spell", c->type->cname))));
}else{ }else{
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,
"analyse_ship_age%u:mage%h:ship%s:spell", "analyse_ship_age%u:mage%h:ship%s:spell%i:months",
mage, sh, LOC(lang, c->type->cname))); mage, sh, LOC(lang, mkname("spell", c->type->cname)), mon));
} }
} else { } else {
add_message(&mage->faction->msgs, new_message(mage->faction, add_message(&mage->faction->msgs, new_message(mage->faction,

View File

@ -3565,9 +3565,9 @@
</string> </string>
</namespace> </namespace>
<namespace name="spell"> <namespace name="spell">
<string name="blessedharvest"> <string name="generous">
<text locale="de">Segen der Erde</text> <text locale="de">Hohes Lied der Gaukelei</text>
<text locale="en">Blessed Harvest</text> <text locale="en">Song of Genrosity</text>
</string> </string>
<string name="gwyrrdearnsilver"> <string name="gwyrrdearnsilver">
<text locale="de">Viehheilung</text> <text locale="de">Viehheilung</text>
@ -3885,6 +3885,10 @@
<text locale="de">Schöne Träume</text> <text locale="de">Schöne Träume</text>
<text locale="en">Pleasant Dreams</text> <text locale="en">Pleasant Dreams</text>
</string> </string>
<string name="blessedharvest">
<text locale="de">Segen der Erde</text>
<text locale="en">Blessed Harvest</text>
</string>
<string name="illaundestroymagic"> <string name="illaundestroymagic">
<text locale="de">Traumbilder entwirren</text> <text locale="de">Traumbilder entwirren</text>
<text locale="en">Remove Dreams</text> <text locale="en">Remove Dreams</text>