mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
use same string for both
This commit is contained in:
parent
a58e74b70a
commit
332ff27d8a
2 changed files with 2 additions and 5 deletions
|
@ -179,10 +179,7 @@
|
|||
<string name="download_dicts">Download more...</string>
|
||||
|
||||
<string name="confirm_save_title">Confirm save</string>
|
||||
<string name="confirm_save">This game is in play. If you save
|
||||
these changes it must be restarted. Do you want to save or
|
||||
discard these changes?</string>
|
||||
<string name="confirm_save_play">This game is in play. If you
|
||||
<string name="confirm_save">This game is in play. If you
|
||||
save these changes it must be restarted. Do you want to save
|
||||
these changes?</string>
|
||||
<string name="confirm_delete_all">Are you sure you want to
|
||||
|
|
|
@ -227,7 +227,7 @@ public class GameConfig extends XWActivity
|
|||
case CONFIRM_CHANGE_PLAY:
|
||||
dialog = new AlertDialog.Builder( this )
|
||||
.setTitle( R.string.confirm_save_title )
|
||||
.setMessage( R.string.confirm_save_play )
|
||||
.setMessage( R.string.confirm_save )
|
||||
.setPositiveButton( R.string.button_save,
|
||||
new DialogInterface.OnClickListener() {
|
||||
public void onClick( DialogInterface dlg,
|
||||
|
|
Loading…
Reference in a new issue