summaryrefslogtreecommitdiffstats
path: root/res/values/strings.xml
blob: 657c92eba8354db25e8a41524d6cc07c627c5910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2007 The Android Open Source Project

     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.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<resources>
    <!-- Used beneath the progress bar to indicate content downloaded -->
    <string name="download_running">Downloading </string>
    <!-- Used beneath the progress bar to indicate download about to start -->
    <string name="download_pending">Starting download\u2026</string>
    <!-- Used beneath the progress bar to indicate download has not started yet and is waiting for network -->
    <string name="download_pending_network">Waiting for network\u2026</string>
    <!-- Used beneath the progress bar to indicate download has started but is paused and is waiting for network -->
    <string name="download_running_paused">Waiting for network\u2026 </string>
    <!-- Title to show when the UI doesn't yet know the content that is being downloaded -->
    <string name="download_unknown_title">&lt;Untitled&gt;</string>
    
    <string name="permlab_downloadManager">Access download manager.</string>
    <string name="permdesc_downloadManager">Allows the application to
        access the download manager and to use it to download files.
        Malicious applications can use this to disrupt downloads and access
        private information.</string>

    <string name="permlab_downloadData">Access download data.</string>
    <string name="permdesc_downloadData">Allows the application to
        access information about all downloads in the download manager.
        Malicious applications can use this to severely disrupt downloads
        and access private information.</string>

    <string name="permlab_cacheFilesystem">Use system cache.</string>
    <string name="permdesc_cacheFilesystem">Allows the application
        to directly access, modify and delete the system cache. Malicious
        applications can use this to severely disrupt downloads and
        other applications, and to access private data.</string>

    <string name="permlab_downloadOtaUpdate">Download OTA update.</string>
    <string name="permdesc_downloadOtaUpdate">Allows the application
        to specify that it wants to download files in the internal
        cache with the filename that is reserved for OTA updates.
        Malicious applications can use this to prevent OTA updates from
        getting downloaded.</string>

    <string name="permlab_downloadCompletedIntent">Send download
        notifications.</string>
    <string name="permdesc_downloadCompletedIntent">Allows the application
        to send notifications about completed downloads. Malicious applications
        can use this to confuse other applications that download
        files.</string>

    <!-- used to separate filenames in the download notifications -->
    <string name="notification_filename_separator">", "</string>

    <!-- used to list that there are more than 2 files in a notification -->
    <string name="notification_filename_extras">" and %d more"</string>

    <!-- information line shown in the notifications for completed downloads -->
    <string name="notification_download_complete">Download complete</string>

    <!-- information line shown in the notifications for failed downloads -->
    <string name="notification_download_failed">Download unsuccessful</string>


</resources>