Add missing space / dot.

This commit is contained in:
Severin Glöckner 2022-08-22 12:17:26 +02:00
parent 9e01a80d3d
commit 5155a55723
2 changed files with 2 additions and 2 deletions

View file

@ -1069,7 +1069,7 @@ std::vector<topic> generate_unit_topics(const bool sort_generated, const std::st
}
// TRANSLATORS: this is expected to say "[Dunefolk are] a group of units, all of whom are Humans",
// or "[Quenoth Elves are] a group of units, all of whom are Elves".
text << VGETTEXT("This is a group of units, all of whom are <ref>dst='$topic_id' text='$help_taxonomy'</ref>", symbols) << "\n\n";
text << VGETTEXT("This is a group of units, all of whom are <ref>dst='$topic_id' text='$help_taxonomy'</ref>.", symbols) << "\n\n";
}
if (!subgroups.empty()) {

View file

@ -233,7 +233,7 @@ std::string terrain_topic_generator::operator()() const {
ss << "Combined: " << (type_.is_combined() ? "Yes" : "No") << "\n";
ss << "Nonnull: " << (type_.is_nonnull() ? "Yes" : "No") << "\n";
ss << "Terrain string:" << type_.number() << "\n";
ss << "Terrain string: " << type_.number() << "\n";
ss << "Hide in Editor: " << (type_.hide_in_editor() ? "Yes" : "No") << "\n";
ss << "Editor Group: " << type_.editor_group() << "\n";