mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
include number of tiles in trade confirm message
This commit is contained in:
parent
d8266f6a2c
commit
5343b054a5
4 changed files with 4 additions and 4 deletions
|
@ -1194,7 +1194,7 @@
|
|||
<!-- Text of dialog asking user to confirm a move that exchanges
|
||||
tiles (instead of forming a new word to earn points) -->
|
||||
<string name="query_trade_fmt">Are you sure you want to exchange the
|
||||
selected tiles (%1$s)?</string>
|
||||
%1$d selected tiles (%2$s)?</string>
|
||||
|
||||
<!-- ############################################################
|
||||
# :Screens:
|
||||
|
|
|
@ -1022,7 +1022,7 @@
|
|||
<!-- Text of dialog asking user to confirm a move that exchanges
|
||||
tiles (instead of forming a new word to earn points) -->
|
||||
<string name="query_trade_fmt">Era uoy erus uoy tnaw ot egnahcxe eht
|
||||
detceles selit (%1$s?)</string>
|
||||
%1$d detceles selit (%2$s?)</string>
|
||||
<!-- ############################################################
|
||||
# :Screens:
|
||||
# Chat screen
|
||||
|
|
|
@ -1022,7 +1022,7 @@
|
|||
<!-- Text of dialog asking user to confirm a move that exchanges
|
||||
tiles (instead of forming a new word to earn points) -->
|
||||
<string name="query_trade_fmt">ARE YOU SURE YOU WANT TO EXCHANGE THE
|
||||
SELECTED TILES (%1$s)?</string>
|
||||
%1$d SELECTED TILES (%2$s)?</string>
|
||||
<!-- ############################################################
|
||||
# :Screens:
|
||||
# Chat screen
|
||||
|
|
|
@ -1561,7 +1561,7 @@ public class BoardDelegate extends DelegateBase
|
|||
public boolean confirmTrade( String[] tiles )
|
||||
{
|
||||
m_dlgTitle = R.string.info_title;
|
||||
m_dlgBytes = getString( R.string.query_trade_fmt,
|
||||
m_dlgBytes = getString( R.string.query_trade_fmt, tiles.length,
|
||||
TextUtils.join( ", ", tiles ) );
|
||||
return 0 != waitBlockingDialog( DlgID.QUERY_REQUEST_BLK, 0 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue