diff options
author | Christian Schneppe <christian@pix-art.de> | 2018-11-23 14:25:21 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2018-11-23 14:25:21 +0100 |
commit | e8f0927a8d64f96bde5917ef12ccb6b7d1fe0f52 (patch) | |
tree | 78875bbab6fd93fae07897ee0b3095c2c16e8382 /src/main/res | |
parent | 6969b92ac1d58617aca868d4f484b50515a516a5 (diff) |
provide option to reject subscription request when long pressing 'allow'
Diffstat (limited to 'src/main/res')
-rw-r--r-- | src/main/res/menu/block.xml | 3 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/main/res/menu/block.xml b/src/main/res/menu/block.xml index 1256f7142..0a86ef124 100644 --- a/src/main/res/menu/block.xml +++ b/src/main/res/menu/block.xml @@ -1,6 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item + android:id="@+id/reject" + android:title="@string/reject_request" /> + <item android:id="@+id/block_domain" android:title="@string/block_entire_domain" /> <item diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index d884af1ab..7aeef797f 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -841,5 +841,6 @@ <string name="delete_message_dialog_msg">Are you sure you want to delete this message?\n\n<b>Warning:</b> This will not delete copies of this message that are stored on other devices or servers.</string> <string name="feature_not_implemented">Feature not implemented</string> <string name="device_does_not_support_unknown_source_op">Your device does not support allowing app installs from unknon sources.</string> + <string name="reject_request">Reject request</string> </resources> |