Skip to content

Commit

Permalink
Clarify message
Browse files Browse the repository at this point in the history
The improvement will not be sold from every city the player owns, but
from every selected city.
  • Loading branch information
blabber authored and lmoureaux committed Jan 5, 2025
1 parent 9100131 commit 7a68485
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/views/view_cities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,8 @@ void city_widget::sell(const struct impr_type *building)
if (selected_cities.size() == 1) {
buf = QString(_("Are you sure you want to sell the %1?")).arg(imprname);
} else {
buf = QString(_("Do you really wish to sell every %1?")).arg(imprname);
buf = QString(_("Do you really wish to sell all selected %1?"))
.arg(imprname);
}

ask->setStandardButtons(QMessageBox::Cancel | QMessageBox::Yes);
Expand Down

0 comments on commit 7a68485

Please sign in to comment.