diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
index 2d21e20d8c..6f5068bb58 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt
@@ -69,16 +69,16 @@ class ImportExportSavesFragment : DialogFragment() {
return if (savesFolderRoot == "") {
MaterialAlertDialogBuilder(requireContext())
.setTitle(R.string.import_export_saves)
- .setMessage("No profileID found. Launch a game first and then come back.")
+ .setMessage(R.string.import_export_saves_no_profile)
.setPositiveButton(android.R.string.ok, null)
.show()
} else {
MaterialAlertDialogBuilder(requireContext())
- .setTitle("Import/Export Saves")
- .setPositiveButton("Export") { _, _ ->
+ .setTitle(R.string.import_export_saves)
+ .setPositiveButton(R.string.export_saves) { _, _ ->
exportSave()
}
- .setNeutralButton("Import") { _, _ ->
+ .setNeutralButton(R.string.import_saves) { _, _ ->
documentPicker.launch(arrayOf("application/zip"))
}
.show()
diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml
index 9754dccd7e..d3340fe991 100644
--- a/src/android/app/src/main/res/values/strings.xml
+++ b/src/android/app/src/main/res/values/strings.xml
@@ -80,10 +80,13 @@
No file manager found
Could not open yuzu directory
Please locate the user folder with the file manager\'s side panel manually.
- Import/Export Saves
+ Import/export saves
Import or export save files
- The save files were imported successfully
- Invalid Zip directory structure: the first subfolder name must be the Title ID of the game.
+ No user profile found. Please launch a game first and retry.
+ Save files were imported successfully
+ Invalid save directory structure: The first subfolder name must be the title ID of the game.
+ Import
+ Export
Gaia isn\'t real