diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-07-17 15:38:07 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-07-17 15:38:07 +0000 |
commit | 7302edac089182e0c8d1564d2208c71662290e66 (patch) | |
tree | 0db383b7e3fd81c5cace769775b6f2a29a56f42b /app/src/main/res | |
parent | 4edbfab34821d5cb2af30f7bb0a930cd0cfe7bc7 (diff) | |
download | infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar.gz infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar.bz2 infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar.lz infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar.xz infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.tar.zst infinity-for-reddit-7302edac089182e0c8d1564d2208c71662290e66.zip |
Different save options when saving the online theme.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/arrays.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 93951ccb..adb1cb64 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -692,4 +692,10 @@ <item>1</item> </string-array> + <string-array name="save_theme_options"> + <item>@string/save_locally</item> + <item>@string/save_online</item> + <item>@string/save_locally_and_online</item> + </string-array> + </resources> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 6c91674c..898df6ed 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -965,10 +965,13 @@ <string name="duplicate_theme_name_dialog_message">A theme in the database is also called %1$s. Do you want to change the name of this imported theme?</string> <string name="rename">Rename</string> <string name="override">Override</string> - <string name="override_online_theme_question">Override online theme?</string> - <string name="override_online_theme_message">You uploaded this theme so you can make changes.</string> - <string name="save_to_local">Save to local</string> - <string name="online_theme_modified">Online theme modified.</string> + <string name="save_theme_options_title">Save options</string> + <string name="save_theme_options_message">You uploaded this theme so you can make changes.</string> + <string name="save_locally">Save locally</string> + <string name="save_online">Save online</string> + <string name="save_locally_and_online">Save both locally and online</string> + <string name="theme_saved_locally">Theme saved locally</string> + <string name="theme_saved_online">Theme saved online</string> <string name="upload_theme_failed">Failed to upload this theme. Try again later.</string> <string name="color_picker">Color Picker</string> |