Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11328 from t895/string-aggregation
Android: Migrate all strings to strings.xml
  • Loading branch information
JosJuice committed Dec 6, 2022
2 parents a9a603b + dbfcbcb commit d34c4c6
Show file tree
Hide file tree
Showing 3 changed files with 452 additions and 244 deletions.
Expand Up @@ -20,8 +20,9 @@ public class OnlineUpdateRegionSelectDialogFragment extends DialogFragment
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState)
{
String[] items = {getString(R.string.europe), getString(
R.string.japan), getString(R.string.korea), getString(R.string.united_states)};
String[] items =
{getString(R.string.country_europe), getString(R.string.country_japan), getString(
R.string.country_korea), getString(R.string.country_usa)};
int checkedItem = -1;

return new MaterialAlertDialogBuilder(requireContext())
Expand Down

0 comments on commit d34c4c6

Please sign in to comment.