Dmg -> Damage, space for #strikes modifier to match other modifiers.

This commit is contained in:
András Salamon 2005-04-25 14:50:52 +00:00
parent 04125da7be
commit 35742d4244
2 changed files with 4 additions and 4 deletions

View file

@ -1100,8 +1100,8 @@ public:
font::line_width(_("Type"),
normal_font_size,
TTF_STYLE_BOLD)));
first_row.push_back(item(bold(_("Dmg")),
font::line_width(_("Dmg"),
first_row.push_back(item(bold(_("Damage")),
font::line_width(_("Damage"),
normal_font_size,
TTF_STYLE_BOLD)));
first_row.push_back(item(bold(_("Strikes")),

View file

@ -308,7 +308,7 @@ bool attack_type::apply_modification(const config& cfg, std::string* description
}
if(description != NULL) {
desc << (increase_damage[0] == '-' ? "" : "+") << increase_damage << " " << _("Dmg");
desc << (increase_damage[0] == '-' ? "" : "+") << increase_damage << " " << _("damage");
}
}
@ -320,7 +320,7 @@ bool attack_type::apply_modification(const config& cfg, std::string* description
}
if(description != NULL) {
desc << (increase > 0 ? "+" : "") << increase << _("strikes");
desc << (increase > 0 ? "+" : "") << increase << " " << _("strikes");
}
}