From 567083c9e85d1444485202d1455e8943abd0373a Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Fri, 16 Sep 2016 20:18:53 +0200 Subject: [PATCH] fix bad translation key --- src/report.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/report.c b/src/report.c index 345a76e10..64febfb44 100644 --- a/src/report.c +++ b/src/report.c @@ -939,13 +939,13 @@ static void describe(stream *out, const region * r, faction * f) WARN_STATIC_BUFFER(); if (r->seen.mode == seen_travel) { - bytes = _snprintf(bufp, size, " (%s)", LOC(f->locale, "seen_travel")); + bytes = _snprintf(bufp, size, " (%s)", LOC(f->locale, "see_travel")); } else if (r->seen.mode == seen_neighbour) { bytes = _snprintf(bufp, size, " (%s)", LOC(f->locale, "see_neighbour")); } else if (r->seen.mode == seen_lighthouse) { - bytes = _snprintf(bufp, size, " (%s)", LOC(f->locale, "seen_lighthouse")); + bytes = _snprintf(bufp, size, " (%s)", LOC(f->locale, "see_lighthouse")); } else { bytes = 0;