mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Android: Add a couple of missing translation strings
This commit is contained in:
parent
1893bfd248
commit
196f53ab80
|
@ -641,7 +641,7 @@ public class EmulationActivity extends AppCompatActivity implements SurfaceHolde
|
|||
CharSequence[] items = new CharSequence[numPaths + 1];
|
||||
for (int i = 0; i < numPaths; i++)
|
||||
items[i] = GameListEntry.getFileNameForPath(paths[i]);
|
||||
items[numPaths] = "Select New File...";
|
||||
items[numPaths] = getString(R.string.emulation_activity_change_disc_select_new_file);
|
||||
|
||||
builder.setSingleChoiceItems(items, (currentPath < numPaths) ? currentPath : -1, (dialogInterface, i) -> {
|
||||
dialogInterface.dismiss();
|
||||
|
|
|
@ -8,6 +8,6 @@
|
|||
android:id="@+id/game_list_entry_menu_resume_game"
|
||||
android:title="@string/menu_game_list_entry_resume_game" />
|
||||
<item
|
||||
android:id="@+id/game_list_entry_menu_properties"
|
||||
android:id="@+id/menu_game_list_entry_game_properties"
|
||||
android:title="Game Properties" />
|
||||
</menu>
|
|
@ -231,4 +231,6 @@
|
|||
<string name="action_show_game_grid">Grid View</string>
|
||||
<string name="settings_touch_gliding">Touch Gliding</string>
|
||||
<string name="settings_summary_touch_gliding">Allows you to press multiple controller face buttons by dragging your finger along the screen.</string>
|
||||
<string name="menu_game_list_entry_game_properties">Game Properties</string>
|
||||
<string name="emulation_activity_change_disc_select_new_file">Select New File...</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue