Skip to content

Commit

Permalink
paraphrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
zenseii committed Jan 16, 2025
1 parent a77b5a8 commit e4cc7cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fheroes2/battle/battle_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3293,13 +3293,13 @@ void Battle::Interface::OpenAutoModeDialog( const Unit & unit, Actions & actions
std::string msg = _( "The computer continues the combat for you at the currently set combat speed." );
msg += "\n\n";
msg += _(
"autoCombat|This can be interrupted at any moment by pressing the Auto Combat hotkey or the default Cancel key, or by left or right clicking anywhere on the game screen." );
"autoCombat|This can be interrupted at any moment by pressing the Auto Combat hotkey or the default Cancel key, or by performing a left or right click anywhere on the game screen." );
fheroes2::showStandardTextMessage( _( "Auto Combat" ), msg, Dialog::ZERO );
}
else if ( le.isMouseRightButtonPressedInArea( buttonQuickCombat.area() ) ) {
std::string msg = _( "The combat is quickly resolved from the current state." );
std::string msg = _( "The combat is resolved from the current state and ended." );
msg += "\n\n";
msg += _( "quickCombat|This action cannot be undone once executed." );
msg += _( "quickCombat|This cannot be undone." );
fheroes2::showStandardTextMessage( _( "Quick Combat" ), msg, Dialog::ZERO );
}
}
Expand Down

0 comments on commit e4cc7cc

Please sign in to comment.