diff options
author | Dominik <dominik@dominikschuermann.de> | 2012-11-16 02:34:21 +0100 |
---|---|---|
committer | Dominik <dominik@dominikschuermann.de> | 2012-11-16 02:34:21 +0100 |
commit | bbddc4c56dbb71c536aac736d197bcc8e49f6769 (patch) | |
tree | b4f255f9108495e754baee5e1ebe6ce5d2c40109 /org_apg/res | |
parent | 0f3164c5b58f1f368a2710e0c653bb911d74df6d (diff) | |
download | open-keychain-bbddc4c56dbb71c536aac736d197bcc8e49f6769.tar.gz open-keychain-bbddc4c56dbb71c536aac736d197bcc8e49f6769.tar.bz2 open-keychain-bbddc4c56dbb71c536aac736d197bcc8e49f6769.zip |
implemented security model
Diffstat (limited to 'org_apg/res')
-rw-r--r-- | org_apg/res/values/strings.xml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/org_apg/res/values/strings.xml b/org_apg/res/values/strings.xml index 3f1692023..fe807e36c 100644 --- a/org_apg/res/values/strings.xml +++ b/org_apg/res/values/strings.xml @@ -229,7 +229,7 @@ <string name="qrScanImportSuccess">Successfully validated and imported key</string> <string name="listInformation">Long press one entry in this list to show more options!</string> <string name="listEmpty">This list is empty!</string> - + <!-- error_lowerCase: phrases, no punctuation, all lowercase, they will be put after "errorMessage", e.g. "Error: file not found" @@ -260,7 +260,7 @@ <string name="error_wrongPassPhrase">wrong passphrase</string> <string name="error_savingKeys">error saving some key(s)</string> <string name="error_couldNotExtractPrivateKey">could not extract private key</string> - + <!-- progress_lowerCase: lowercase, phrases, usually ending in '…' --> <string name="progress_done">done.</string> <string name="progress_initializing">initializing…</string> @@ -298,11 +298,13 @@ <string name="progress_queryingServer">querying %s…</string> <!-- permission strings --> - <string name="permission_read_key_details_label">Read key details from APG.</string> - <string name="permission_read_key_details_description">Read key details of public and secret keys stored in APG, such as key ID and user IDs. The keys themselves can NOT be read.</string> - <string name="permission_store_blobs_label">Store blobs to en/decrypt with APG.</string> - <string name="permission_store_blobs_description">Store and read files on the android file system through APG. It cannot read files of other applications.</string> - + <string name="permission_group_label">APG</string> + <string name="permission_group_description">Permissions to use APG</string> + <string name="permission_read_key_database_label">Read key details of public and secret keys (The keys themselves can NOT be read.)</string> + <string name="permission_read_key_database_description">Read key details of public and secret keys stored in APG, such as key ID and user IDs. The keys themselves can NOT be read.</string> + <string name="permission_access_api_label">Encrypt/Sign/Decrypt/Create keys without user interaction</string> + <string name="permission_access_api_description">Encrypt/Sign/Decrypt/Create keys (by using Intents or Remote Service) without user interaction</string> + <!-- action strings --> <string name="action_encrypt">Encrypt</string> <string name="action_decrypt">Decrypt</string> |