Some additional TODO comments for things I want to tackle eventually. #comment-only

This commit is contained in:
Enno Rehling 2015-01-10 17:05:10 +01:00
parent 9ce9cddd1f
commit 3d4fefcf7c
2 changed files with 2 additions and 1 deletions

View File

@ -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));
}

View File

@ -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)