Skip to content

Commit

Permalink
Fix translation:
Browse files Browse the repository at this point in the history
gettext does not recognize both strings in the original syntax.

See "lang/po/cataclysm-dda.pot" - it does currently not contain the second string.
  • Loading branch information
BevapDin committed Dec 25, 2019
1 parent 5189297 commit d697251
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 d697251

Please sign in to comment.