diff options
author | Debashish Chatterjee <debashishc@google.com> | 2011-06-13 16:20:30 +0100 |
---|---|---|
committer | Debashish Chatterjee <debashishc@google.com> | 2011-06-15 15:57:09 +0100 |
commit | 52e8d24f8492116f0b49b147576ce13a5f913aa2 (patch) | |
tree | b79b1d8c38b062b545fabb0ac6b15eb9798ca2d5 /res/values | |
parent | 59f6477e10203617f504857f7e9aee2fda393f4f (diff) | |
download | packages_providers_ContactsProvider-52e8d24f8492116f0b49b147576ce13a5f913aa2.zip packages_providers_ContactsProvider-52e8d24f8492116f0b49b147576ce13a5f913aa2.tar.gz packages_providers_ContactsProvider-52e8d24f8492116f0b49b147576ce13a5f913aa2.tar.bz2 |
Voicemail provider implementation within ContactsProvider.
- New voicemail provider class
- all voicemail operations restricted to only 'voicemail' call type.
- new voicemail permissions (currently defined in the manifest file
itself)
Change-Id: I32b916c5b4a53e93bafbecf7df7bee3f5e27fee6
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/strings.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 0e39d61..78b3620 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -4,9 +4,9 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - + http://www.apache.org/licenses/LICENSE-2.0 - + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,7 +22,7 @@ <!-- What to show in messaging that refers to this provider, e.g. AccountSyncSettings --> <string name="provider_label">Contacts</string> - + <!-- Ticker for the notification shown when updating contacts fails because of memory shortage --> <string name="upgrade_out_of_memory_notification_ticker">Contact upgrade needs more memory</string> @@ -31,11 +31,16 @@ <!-- Text for the notification shown when updating contacts fails because of memory shortage --> <string name="upgrade_out_of_memory_notification_text">Select to complete the upgrade.</string> - + <!-- The name of the default contact directory --> <string name="default_directory">Contacts</string> <!-- The name of the invisible local contact directory --> <string name="local_invisible_directory">Other</string> + <string name="read_write_own_voicemail_label">read and write own voicemails</string> + <string name="read_write_own_voicemail_description">The application is allowed to store and access only voicemails it owns on the device.</string> + <string name="read_write_all_voicemail_label">read and write all voicemails</string> + <string name="read_write_all_voicemail_description">The application is allowed to store and access all voicemails on the device.</string> + </resources> |