Updated language, removed chinese from language dropdown

This commit is contained in:
Bart
2021-01-06 20:10:27 +01:00
parent 7f9783aeb1
commit 22d760bbda
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@
],
"totalDistance": 1073.0,
"totalTime": 342342,
"description": "Deze route laat u leuke events verspreid door breda zien! Probeer de escaperooms uit, een event bij de koepel, of een leuk feest bij MEZZ! Met deze route loopt u langs ze allemaal.",
"description": "This route will show you different and fun events scattered all around Breda! Try the escape rooms, an event at the dome or a fun party at MEZZ! With this route you walk past them all.",
"imageURL": "escaping_room"
},
{
@@ -86,7 +86,7 @@
],
"totalDistance": 955.0,
"totalTime": 342342,
"description": "Met deze route bezoekt u alle snackbars en restaurants in het centrum van Breda!",
"description": "With this route you'll visit all the snack bars and restaurants in the city centre of Breda!\n",
"imageURL": "kees_kroket"
}
]

View File

@@ -96,7 +96,7 @@ public class SettingsFragment extends Fragment {
private void initializeLanguageDropdown(View view) {
Spinner languageDropdown = view.findViewById(R.id.dropdown_menu_Settings);
String[] items = new String[]{getResources().getString(R.string.Dutch), getResources().getString(R.string.English), getResources().getString(R.string.Chinese)};
String[] items = new String[]{getResources().getString(R.string.Dutch), getResources().getString(R.string.English)};
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<>(getActivity(), android.R.layout.simple_spinner_dropdown_item, items);
languageDropdown.setAdapter(arrayAdapter);