From 3d4fefcf7c5536d0e51a7ebb253af787549ebd93 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 10 Jan 2015 17:05:10 +0100 Subject: [PATCH] Some additional TODO comments for things I want to tackle eventually. #comment-only --- src/names.c | 2 +- src/report.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/names.c b/src/names.c index 8f4ed75ce..650717792 100644 --- a/src/names.c +++ b/src/names.c @@ -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)); } diff --git a/src/report.c b/src/report.c index 94f384803..efdb80268 100644 --- a/src/report.c +++ b/src/report.c @@ -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)