Skip to content

Commit

Permalink
Backporting CleverRaven#52243 Add missing translation in aiming UI
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettDong committed Nov 27, 2021
1 parent 9adb9a7 commit 54113a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ranged.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3178,9 +3178,9 @@ void target_ui::panel_cursor_info( int &text_y )
{
std::string label_range;
if( src == dst ) {
label_range = string_format( "Range: %d", range );
label_range = string_format( _( "Range: %d" ), range );
} else {
label_range = string_format( "Range: %d/%d", dist_fn( dst ), range );
label_range = string_format( _( "Range: %d/%d" ), dist_fn( dst ), range );
}
if( status == Status::OutOfRange && mode != TargetMode::Turrets ) {
// Since each turret has its own range, highlighting cursor
Expand Down

0 comments on commit 54113a5

Please sign in to comment.