forked from github/server
resname local-isiert
This commit is contained in:
parent
f9a3a3a48c
commit
e70aaad0f7
|
@ -1347,7 +1347,9 @@ manufacture(unit * u, const item_type * itype, int want)
|
||||||
if (c!=0)
|
if (c!=0)
|
||||||
strcat(ch++, ",");
|
strcat(ch++, ",");
|
||||||
n=cons->materials[c].number / cons->reqsize;
|
n=cons->materials[c].number / cons->reqsize;
|
||||||
sprintf(ch, " %d %s", n?n:1, resname(cons->materials[c].type, cons->materials[c].number==1));
|
sprintf(ch, " %d %s", n?n:1,
|
||||||
|
locale_string(u->faction->locale,
|
||||||
|
resname(cons->materials[c].type, cons->materials[c].number!=1)));
|
||||||
ch = ch+strlen(ch);
|
ch = ch+strlen(ch);
|
||||||
}
|
}
|
||||||
strcat(ch,".");
|
strcat(ch,".");
|
||||||
|
@ -1635,7 +1637,9 @@ create_potion(unit * u, const potion_type * ptype, int want)
|
||||||
if (c!=0)
|
if (c!=0)
|
||||||
strcat(ch++, ",");
|
strcat(ch++, ",");
|
||||||
n=cons->materials[c].number / cons->reqsize;
|
n=cons->materials[c].number / cons->reqsize;
|
||||||
sprintf(ch, " %d %s", n?n:1, resname(cons->materials[c].type, cons->materials[c].number==1));
|
sprintf(ch, " %d %s", n?n:1,
|
||||||
|
locale_string(u->faction->locale,
|
||||||
|
resname(cons->materials[c].type, cons->materials[c].number!=1)));
|
||||||
ch = ch+strlen(ch);
|
ch = ch+strlen(ch);
|
||||||
}
|
}
|
||||||
strcat(ch,".");
|
strcat(ch,".");
|
||||||
|
|
|
@ -799,7 +799,10 @@ build_building(unit * u, const building_type * btype, int want)
|
||||||
int n;
|
int n;
|
||||||
if (c!=0) strcat(ch++, ",");
|
if (c!=0) strcat(ch++, ",");
|
||||||
n = cons->materials[c].number / cons->reqsize;
|
n = cons->materials[c].number / cons->reqsize;
|
||||||
sprintf(ch, " %d %s", n?n:1, resname(cons->materials[c].type, cons->materials[c].number==1));
|
sprintf(ch, " %d %s", n?n:1,
|
||||||
|
locale_string(u->faction->locale,
|
||||||
|
resname(cons->materials[c].type, cons->materials[c].number!=1))
|
||||||
|
);
|
||||||
ch = ch+strlen(ch);
|
ch = ch+strlen(ch);
|
||||||
}
|
}
|
||||||
strcat(ch,".");
|
strcat(ch,".");
|
||||||
|
|
|
@ -1069,12 +1069,14 @@ cancast(unit * u, spell * sp, int level, int range, char * cmd)
|
||||||
if (b == false) {
|
if (b == false) {
|
||||||
scat(", ");
|
scat(", ");
|
||||||
icat(itemanz);
|
icat(itemanz);
|
||||||
scat(resname(res, (itemanz == 1 ? 0 : 1)));
|
scat(locale_string(u->faction->locale,
|
||||||
|
resname(res, (itemanz == 1 ? 0 : 1))));
|
||||||
} else {
|
} else {
|
||||||
sprintf(buf, "%s in %s: 'ZAUBER %s' Für diesen Zauber fehlen "
|
sprintf(buf, "%s in %s: 'ZAUBER %s' Für diesen Zauber fehlen "
|
||||||
"noch %d ", unitname(u), regionid(u->region), sp->name,
|
"noch %d ", unitname(u), regionid(u->region), sp->name,
|
||||||
itemanz);
|
itemanz);
|
||||||
scat(resname(res, (itemanz == 1 ? 0 : 1)));
|
scat(locale_string(u->faction->locale,
|
||||||
|
resname(res, (itemanz == 1 ? 0 : 1))));
|
||||||
b = false;
|
b = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue