mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
remove "State" from state string
This commit is contained in:
parent
f03579dd14
commit
03fedd6cbc
2 changed files with 2 additions and 3 deletions
|
@ -265,8 +265,7 @@
|
|||
<string name="summary_fmt_relay">%s via Relay, room \"%s\"</string>
|
||||
<string name="summary_fmt_sms">%s via SMS, dialing %s</string>
|
||||
<string name="gameOver">Game over</string>
|
||||
<string name="movesf">Moves played: %d</string>
|
||||
<string name="statef">State: %s</string>
|
||||
<string name="movesf">%d moves played</string>
|
||||
|
||||
<!-- about dialog stuff -->
|
||||
<string name="about_versf">Crosswords for Android, Version %s,
|
||||
|
|
|
@ -277,7 +277,7 @@ public class CurGameInfo {
|
|||
result = String.format( context.getString(R.string.movesf),
|
||||
summary.nMoves );
|
||||
}
|
||||
return String.format( context.getString(R.string.statef), result );
|
||||
return result;
|
||||
}
|
||||
|
||||
public boolean addPlayer()
|
||||
|
|
Loading…
Reference in a new issue