From d45770d4d1eee6838fe0667cb74b7aa3a41307f8 Mon Sep 17 00:00:00 2001 From: hugomflavio Date: Sun, 8 Sep 2024 16:52:14 -0400 Subject: [PATCH] update 'TRANS' comments --- server/unithand.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/server/unithand.cpp b/server/unithand.cpp index 300282c829..bd5dd4b66e 100644 --- a/server/unithand.cpp +++ b/server/unithand.cpp @@ -3765,19 +3765,20 @@ static bool unit_bombard(struct unit *punit, struct tile *ptile, for (auto player_to_notify : players_to_notify) { notify_player( player_to_notify, ptile, E_UNIT_BOMB_DEF, ftc_server, - /* TRANS: Your units at [tile] have been bombarded by the French - Bomber.*/ + /* TRANS: Your units at (x, y) have been bombarded by the French + green Bomber [id:123].*/ _("Your units at %s were bombarded by a %s %s %s [id:%d]."), tile_link(ptile), nation_adjective_for_player(pplayer), unit_veteran_level_string(punit), unit_name_translation(punit), punit->id); } // Notify the player that bombarded - notify_player(pplayer, ptile, E_UNIT_BOMB_ATT, ftc_server, - /* TRANS: Your Bomber bombarded [coords?].*/ - _("Your %s %s [id:%d] bombarded the units at %s."), - unit_veteran_level_string(punit), - unit_name_translation(punit), punit->id, tile_link(ptile)); + notify_player( + pplayer, ptile, E_UNIT_BOMB_ATT, ftc_server, + /* TRANS: Your green Bomber [id:123] bombarded the units at (x, y).*/ + _("Your %s %s [id:%d] bombarded the units at %s."), + unit_veteran_level_string(punit), unit_name_translation(punit), + punit->id, tile_link(ptile)); unit_did_action(punit); unit_forget_last_activity(punit);