Skip to content

Commit

Permalink
Merge pull request #36434 from BevapDin/bbp
Browse files Browse the repository at this point in the history
Fix extraction for translation
  • Loading branch information
ZhilkinSerg authored Dec 25, 2019
2 parents 5189297 + d697251 commit b7329f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iexamine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ void iexamine::slot_machine( player &p, const tripoint & )
add_msg( m_info, _( "You need $%d to play." ), price );
break;
}
if( !query_yn( _( played ? "Play again for $%d?" : "Insert $%d?" ), price ) ) {
if( !query_yn( played ? _( "Play again for $%d?" ) : _( "Insert $%d?" ), price ) ) {
break;
}
p.cash -= cents( price );
Expand Down

0 comments on commit b7329f6

Please sign in to comment.