Skip to content

Commit

Permalink
Help: marked "Level" string in unit topic description translatable
Browse files Browse the repository at this point in the history
I apparently forgot to do this at some point... Fixes one of the issues mentioned in #2732.
  • Loading branch information
Vultraz committed Mar 26, 2018
1 parent a8539cf commit 0a67e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/help/help_topic_generators.cpp
Expand Up @@ -242,7 +242,7 @@ std::string unit_topic_generator::operator()() const {

const int screen_width = CVideo::get_singleton().get_width();

ss << "Level " << type_.level();
ss << _("Level") << " " << type_.level();
ss << "\n\n";

ss << "<img>src='" << male_type.image();
Expand Down

0 comments on commit 0a67e97

Please sign in to comment.