ui: Fix untranslatable string

Closes #7761.
This commit is contained in:
Iris Morelle 2023-07-02 17:58:39 -04:00
parent 1ecc30972e
commit 6a33ca6a7b

View file

@ -1270,7 +1270,7 @@ int mouse_handler::show_attack_dialog(const map_location& attacker_loc, const ma
const int best = fill_weapon_choices(bc_vector, attacker, defender);
if(bc_vector.empty()) {
gui2::show_transient_message("No Attacks", _("This unit has no usable weapons."));
gui2::show_transient_message(_("No Attacks"), _("This unit has no usable weapons."));
return -1;
}