From d6972512e2f8f0cfc4ea922e07807ea64e951f52 Mon Sep 17 00:00:00 2001 From: BevapDin Date: Fri, 29 Nov 2019 20:38:57 +0100 Subject: [PATCH] Fix translation: gettext does not recognize both strings in the original syntax. See "lang/po/cataclysm-dda.pot" - it does currently not contain the second string. --- src/iexamine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iexamine.cpp b/src/iexamine.cpp index 1cfe3eb6450cf..204d4a4ed327b 100644 --- a/src/iexamine.cpp +++ b/src/iexamine.cpp @@ -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 );