Help: marked "Level" string in unit topic description translatable

I apparently forgot to do this at some point... Fixes one of the issues mentioned in #2732.

(cherry-picked from commit 0a67e9725c02989ed625d527725a5accec4dbdce)
This commit is contained in:
Charles Dang 2018-03-26 12:18:14 +11:00
parent 3f98bdb04b
commit 6e59f4a800

View File

@ -242,7 +242,7 @@ std::string unit_topic_generator::operator()() const {
const int screen_width = CVideo::get_singleton().get_width(); const int screen_width = CVideo::get_singleton().get_width();
ss << "Level " << type_.level(); ss << _("Level") << " " << type_.level();
ss << "\n\n"; ss << "\n\n";
ss << "<img>src='" << male_type.image(); ss << "<img>src='" << male_type.image();