forked from github/server
bugfixes in verschiedenen messages und in err_message
This commit is contained in:
parent
df88ebdf83
commit
980c7f69f8
3 changed files with 6 additions and 4 deletions
|
@ -279,6 +279,7 @@ msg_error(const struct unit * u, const char * cmd, const char * name, const char
|
|||
while (*ic && !isalnum(*ic)) ic++;
|
||||
while (*ic) {
|
||||
void * v = va_arg(marker, void *);
|
||||
oc = buffer;
|
||||
while (isalnum(*ic)) *oc++ = *ic++;
|
||||
*oc = '\0';
|
||||
arg_set(args, mtype, buffer, v);
|
||||
|
@ -309,6 +310,7 @@ msg_message(const char * name, const char* sig, ...)
|
|||
while (*ic && !isalnum(*ic)) ic++;
|
||||
while (*ic) {
|
||||
void * v = va_arg(marker, void *);
|
||||
oc = buffer;
|
||||
while (isalnum(*ic)) *oc++ = *ic++;
|
||||
*oc = '\0';
|
||||
arg_set(args, mtype, buffer, v);
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
</type>
|
||||
<locale name="de">
|
||||
<nr section="production">
|
||||
<text>"$unit($unit) in $region($region): '$command' - Dazu braucht man das Talent $skill"</text>
|
||||
<text>"$unit($unit) in $region($region): '$command' - Dazu braucht man das Talent $skill($skill)"</text>
|
||||
</nr>
|
||||
</locale>
|
||||
</message>
|
||||
|
|
|
@ -55,7 +55,7 @@ tunnel;en;tunnel
|
|||
site;en;foundation
|
||||
fortification;en;fortification
|
||||
tower;en;tower
|
||||
castle;en;castle
|
||||
castle;en;stronghold
|
||||
fortress;en;fortress
|
||||
citadel;en;citadel
|
||||
|
||||
|
@ -156,8 +156,8 @@ laensword;en;laen sword
|
|||
laensword_p;en;laen swords
|
||||
lance;en;lance
|
||||
lance_p;en;lances
|
||||
log;en;log
|
||||
log_p;en;logs
|
||||
log;en;wood
|
||||
log_p;en;wood
|
||||
magicbag;en;magic bag
|
||||
magicherbbag;en;bag of conservation
|
||||
mallorn;en;mallorn
|
||||
|
|
Loading…
Reference in a new issue