summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-09-26 06:26:46 +0200
committerCharles Lombardo <clombardo169@gmail.com>2023-09-26 06:26:46 +0200
commit3491ba4a06d6f9f72766971393e0cb96971347d6 (patch)
treec4e302096f20a2f5d58e66e52b9c62d27f7650f0
parentandroid: Fix case bug for installing game content (diff)
downloadyuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar.gz
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar.bz2
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar.lz
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar.xz
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.tar.zst
yuzu-3491ba4a06d6f9f72766971393e0cb96971347d6.zip
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt2
-rw-r--r--src/android/app/src/main/res/values/strings.xml1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt
index 7ca95fc23..ee490abc0 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/main/MainActivity.kt
@@ -515,7 +515,7 @@ class MainActivity : AppCompatActivity(), ThemeProvider {
if (documents.isNotEmpty()) {
IndeterminateProgressDialogFragment.newInstance(
this@MainActivity,
- R.string.install_game_content
+ R.string.installing_game_content
) {
var installSuccess = 0
var installOverwrite = 0
diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml
index 0730143bd..574290479 100644
--- a/src/android/app/src/main/res/values/strings.xml
+++ b/src/android/app/src/main/res/values/strings.xml
@@ -107,6 +107,7 @@
<string name="share_log_missing">No log file found</string>
<string name="install_game_content">Install game content</string>
<string name="install_game_content_description">Install game updates or DLC</string>
+ <string name="installing_game_content">Installing content…</string>
<string name="install_game_content_failure">Error installing file(s) to NAND</string>
<string name="install_game_content_failure_description">Please ensure content(s) are valid and that the prod.keys file is installed.</string>
<string name="install_game_content_failure_base">Installation of base games isn\'t permitted in order to avoid possible conflicts.</string>