fix name/rename group dialog title

This commit is contained in:
Eric House 2012-12-29 11:53:18 -08:00
parent 498ca99020
commit e58e520f70
2 changed files with 3 additions and 3 deletions

View file

@ -2146,7 +2146,7 @@
which will also be deleted.)</string>
<string name="rename_group_label">Change the name of this group to:</string>
<string name="game_rename_group_title">Rename group</string>
<string name="game_name_group_title">Name group</string>
<string name="cannot_delete_default_group">The group for new games
cannot be deleted."</string>

View file

@ -222,7 +222,7 @@ public class GamesList extends XWExpandableListActivity
};
dialog = buildNamerDlg( m_adapter.groupName( m_groupid ),
R.string.rename_group_label,
R.string.game_rename_group_title,
R.string.game_name_group_title,
lstnr, RENAME_GROUP );
break;
@ -236,7 +236,7 @@ public class GamesList extends XWExpandableListActivity
}
};
dialog = buildNamerDlg( "", R.string.newgroup_label,
R.string.game_rename_title,
R.string.game_name_group_title,
lstnr, RENAME_GROUP );
Utils.setRemoveOnDismiss( this, dialog, id );
break;