From 3d423076d9a8cb1d8cbc5bbc68ab335e5e474bbb Mon Sep 17 00:00:00 2001 From: Kevin Granade Date: Fri, 12 Apr 2019 15:40:37 -0700 Subject: [PATCH] Translate footstep strings --- src/monmove.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/monmove.cpp b/src/monmove.cpp index b108640b07245..afe2577c30ddb 100644 --- a/src/monmove.cpp +++ b/src/monmove.cpp @@ -783,15 +783,15 @@ void monster::footsteps( const tripoint &p ) if( volume == 0 ) { return; } - std::string footstep = "footsteps."; + std::string footstep = _( "footsteps." ); if( type->in_species( BLOB ) ) { - footstep = "plop."; + footstep = _( "plop." ); } else if( type->in_species( ZOMBIE ) ) { - footstep = "shuffling."; + footstep = _( "shuffling." ); } else if( type->in_species( ROBOT ) ) { - footstep = "mechanical whirring."; + footstep = _( "mechanical whirring." ); } else if( type->in_species( WORM ) ) { - footstep = "rustle."; + footstep = _( "rustle." ); } int dist = rl_dist( p, g->u.pos() ); sounds::add_footstep( p, volume, dist, this, footstep );