forked from github/server
Some additional TODO comments for things I want to tackle eventually. #comment-only
This commit is contained in:
parent
9ce9cddd1f
commit
3d4fefcf7c
2 changed files with 2 additions and 1 deletions
|
@ -275,7 +275,7 @@ static const char *dragon_name(const unit * u)
|
|||
if (anzahl > 1) {
|
||||
const char *no_article = strchr((const char *)str, ' ');
|
||||
assert(no_article);
|
||||
/* TODO: GERMAN */
|
||||
// TODO: localization
|
||||
sprintf(name, "Die %sn von %s", no_article + 1, rname(u->region,
|
||||
default_locale));
|
||||
}
|
||||
|
|
|
@ -1100,6 +1100,7 @@ static void describe(FILE * F, const seen_region * sr, faction * f)
|
|||
if (rule_region_owners()) {
|
||||
const faction *owner = region_get_owner(r);
|
||||
if (owner != NULL) {
|
||||
// TODO: localization
|
||||
bytes = _snprintf(bufp, size, " Die Region ist im Besitz von %s.",
|
||||
factionname(owner));
|
||||
if (wrptr(&bufp, &size, bytes) != 0)
|
||||
|
|
Loading…
Reference in a new issue