diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values/strings.xml | 7 | ||||
-rw-r--r-- | app/src/main/res/xml/about_preferences.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/xml/credits_preferences.xml | 5 |
3 files changed, 11 insertions, 4 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 018969fa..bd3f0681 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -490,7 +490,10 @@ <string name="settings_bottom_app_bar_fab">Floating Action Button</string> <string name="settings_data_saving_mode">Data Saving Mode</string> <string name="settings_data_saving_mode_info_summary">In data saving mode, preview images are in lower resolution.</string> - <string name="settings_translation">Translation</string> + <string name="settings_translation_title">Translation</string> + <string name="settings_translation_summary">Translate this app on POEditor. Thanks to all contributors.</string> + <string name="settings_credits_national_flags">National Flags</string> + <string name="settings_credits_national_flags_summary">Icon made by Freepik from www.flaticon.com</string> <string name="no_link_available">Cannot get the link</string> @@ -908,7 +911,5 @@ <string name="give_award_error_message">Code: %1$d/\n Message: %2$s</string> <string name="give_award_success">Award given</string> <string name="give_award_failed">Failed</string> - <!-- TODO: Remove or change this placeholder text --> - <string name="hello_blank_fragment">Hello blank fragment</string> </resources> diff --git a/app/src/main/res/xml/about_preferences.xml b/app/src/main/res/xml/about_preferences.xml index 74a17eaa..03ba5f4e 100644 --- a/app/src/main/res/xml/about_preferences.xml +++ b/app/src/main/res/xml/about_preferences.xml @@ -12,7 +12,8 @@ <Preference android:key="translation" - app:title="@string/settings_translation" + app:title="@string/settings_translation_title" + app:summary="@string/settings_translation_summary" app:fragment="ml.docilealligator.infinityforreddit.Settings.TranslationFragment"/> <Preference diff --git a/app/src/main/res/xml/credits_preferences.xml b/app/src/main/res/xml/credits_preferences.xml index 8e622332..5e97d5f2 100644 --- a/app/src/main/res/xml/credits_preferences.xml +++ b/app/src/main/res/xml/credits_preferences.xml @@ -41,4 +41,9 @@ android:key="material_icons" app:title="@string/settings_credits_material_icons_title"/> + <Preference + app:key="national_flags" + app:title="@string/settings_credits_national_flags" + android:summary="@string/settings_credits_national_flags_summary" /> + </PreferenceScreen> |