diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-09-16 03:23:38 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-09-16 03:23:38 +0000 |
commit | eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e (patch) | |
tree | 7a39dfdb95a01e5fbfe38d47578b85982a6e0040 /app/src/main/res/values | |
parent | ef514a85c703464134934012b051979fa049a326 (diff) | |
download | infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar.gz infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar.bz2 infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar.lz infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar.xz infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.tar.zst infinity-for-reddit-eb5cc7d7d41c1db8548fdcab52ce04d4d1a1439e.zip |
Add an option to require authentication before going to account section in navigation drawer.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values/arrays.xml | 10 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 20 |
2 files changed, 18 insertions, 12 deletions
diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 94df20c9..695ddfeb 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -233,14 +233,4 @@ <item>1</item> <item>2</item> </string-array> - <!-- Reply Preference --> - <string-array name="reply_entries"> - <item>Reply</item> - <item>Reply to all</item> - </string-array> - - <string-array name="reply_values"> - <item>reply</item> - <item>reply_all</item> - </string-array> </resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 3e70c54d..39a228ff 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -483,6 +483,8 @@ <string name="settings_disable_swiping_between_tabs_title">Disable Swiping Between Tabs</string> <string name="settings_enable_swipe_action_title">Enable Swipe Action</string> <string name="settings_pull_to_refresh_title">Pull to Refresh</string> + <string name="settings_security_title">Security</string> + <string name="settings_require_authentication_to_go_to_account_section_in_navigation_drawer">Require Authentication to Go to Account Section in Navigation Drawer</string> <string name="no_link_available">Cannot get the link</string> @@ -882,7 +884,21 @@ <string name="block_user_failed">Failed to block user</string> <string name="view_full_comment_markdown">View Full Markdown</string> - <!-- TODO: Remove or change this placeholder text --> - <string name="hello_blank_fragment">Hello blank fragment</string> + + <string name="unlock_account_section">Unlock Account Section</string> + <!-- Preference Titles --> + <string name="messages_header">Messages</string> + <string name="sync_header">Sync</string> + + <!-- Messages Preferences --> + <string name="signature_title">Your signature</string> + <string name="reply_title">Default reply action</string> + + <!-- Sync Preferences --> + <string name="sync_title">Sync email periodically</string> + <string name="attachment_title">Download incoming attachments</string> + <string name="attachment_summary_on">Automatically download attachments for incoming emails + </string> + <string name="attachment_summary_off">Only download attachments when manually requested</string> </resources> |