Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2007 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
     18     <!-- This is the name of the Download Manager application. -->
     19     <string name="app_label">Download Manager</string>
     20 
     21     <!-- Short description shown client applications describing storage location-->
     22     <string name="storage_description">Downloads</string>
     23 
     24     <!-- This is the short description of a permission associated with the
     25         Android Download Manager. It is displayed as part of the description
     26         of any application that was granted that permission.
     27         This specific permission controls access to the Download Manager by
     28         applications that initiate downloads. -->
     29     <string name="permlab_downloadManager">Access download manager.</string>
     30     <!-- This is the long description of a permission associated with the
     31         Android Download Manager. It is displayed as part of the description
     32         of any application that was granted that permission.
     33         This specific permission controls access to the Download Manager by
     34         applications that initiate downloads. -->
     35     <string name="permdesc_downloadManager">Allows the app to
     36         access the download manager and to use it to download files.
     37         Malicious apps can use this to disrupt downloads and access
     38         private information.</string>
     39 
     40     <!-- This is the short description of a permission associated with the
     41         Android Download Manager. It is displayed as part of the description
     42         of any application that was granted that permission.
     43         This specific permission controls access to some advanced (and
     44         dangerous) features from the Download Manager that are needed by
     45         system applications but aren't necessary for regular applications
     46         that just initiate plain downloads. -->
     47     <string name="permlab_downloadManagerAdvanced">Advanced download
     48         manager functions.</string>
     49     <!-- This is the long description of a permission associated with the
     50         Android Download Manager. It is displayed as part of the description
     51         of any application that was granted that permission.
     52         This specific permission controls access to some advanced (and
     53         dangerous) features from the Download Manager that are needed by
     54         system applications but aren't necessary for regular applications
     55         that just initiate plain downloads. -->
     56     <string name="permdesc_downloadManagerAdvanced">Allows the app to
     57         access the download manager\'s advanced functions.
     58         Malicious apps can use this to disrupt downloads and access
     59         private information.</string>
     60 
     61     <string name="permlab_downloadCompletedIntent">Send download
     62         notifications.</string>
     63     <!-- This is the long description of a permission associated with the
     64         Android Download Manager. It is displayed as part of the description
     65         of any application that was granted that permission.
     66         This specific permission allows an application to tell other
     67         applications that their downloads have completed. -->
     68     <string name="permdesc_downloadCompletedIntent">Allows the app
     69         to send notifications about completed downloads. Malicious apps
     70         can use this to confuse other apps that download
     71         files.</string>
     72 
     73     <!-- Title for permission to see all downloads to EXTERNAL [CHAR LIMIT=25] -->
     74     <string name="permlab_seeAllExternal" product="nosdcard">See all downloads to USB storage</string>
     75     <!-- Title for permission to see all downloads to EXTERNAL -->
     76     <string name="permlab_seeAllExternal" product="default">See all downloads to SD card</string>
     77     <!-- Description for the permission to see all downloads to EXTERNAL -->
     78     <string name="permdesc_seeAllExternal">Allows the app to see all
     79         downloads to the SD card, regardless of which app downloaded
     80         them.</string>
     81 
     82     <!-- The label for the permission to download files to the download cache
     83     that can't be automatically deleted by the download manager to free up
     84     space [CHAR LIMIT=50] -->
     85     <string name="permlab_downloadCacheNonPurgeable">Reserve space in the
     86     download cache</string>
     87     <!-- The full sentence description for the permission to download files to
     88     the download cache that can't be automatically deleted by the download
     89     manager to free up space [CHAR LIMIT=160] -->
     90     <string name="permdesc_downloadCacheNonPurgeable">Allows the app to
     91     download files to the download cache, which can\'t be automatically deleted
     92     when the download manager needs more space.</string>
     93 
     94     <!-- The label for the permission to download files through the download
     95     manager without any notification being shown to the user [CHAR LIMIT=50] -->
     96     <string name="permlab_downloadWithoutNotification">download files without
     97         notification</string>
     98 
     99     <!-- The full sentence description for the permission to download files
    100     through the download manager without any notification being shown to the
    101     user [CHAR LIMIT=160] -->
    102     <string name="permdesc_downloadWithoutNotification">Allows the app
    103     to download files through the download manager without any notification
    104     being shown to the user.</string>
    105 
    106     <!-- The label for the permission to access all downloads in the download
    107     manager, not just those owned by the calling user [CHAR LIMIT=50] -->
    108     <string name="permlab_accessAllDownloads">Access all system
    109     downloads</string>
    110 
    111     <!-- The full sentence description for the permission to access all
    112     downloads in the download manager, not just those owned by the calling user
    113     [CHAR LIMIT=160] -->
    114     <string name="permdesc_accessAllDownloads">Allows the app to view
    115     and modify all downloads initiated by any app on the system.</string>
    116 
    117 
    118     <!-- This is the title that is used when displaying the notification
    119     for a download that doesn't have a title associated with it. -->
    120     <string name="download_unknown_title">&lt;Untitled&gt;</string>
    121 
    122     <!-- When a download completes, a notification is displayed, and this
    123         string is used to indicate that the download successfully completed.
    124         Note that such a download could have been initiated by a variety of
    125         applications, including (but not limited to) the browser, an email
    126         application, a content marketplace. -->
    127     <string name="notification_download_complete">Download complete.</string>
    128 
    129     <!-- When a download completes, a notification is displayed, and this
    130         string is used to indicate that the download failed.
    131         Note that such a download could have been initiated by a variety of
    132         applications, including (but not limited to) the browser, an email
    133         application, a content marketplace. -->
    134     <string name="notification_download_failed">Download unsuccessful.</string>
    135 
    136     <!-- When a download is paused because it's too large to download over a
    137         mobile connection, and Wi-Fi is unavailable, this string is displayed in
    138         the system notification for the running download, beneath the download
    139         title and description.  Note that such a download could have been
    140         initiated by a variety of applications, including (but not limited to)
    141         the browser, an email application, a content marketplace.
    142         [CHAR LIMIT=24] -->
    143     <string name="notification_need_wifi_for_size">Download size requires Wi-Fi.</string>
    144 
    145     <!-- Notification shown when a download has been paused because a user policy
    146         has blocked network access to applications running in background. [CHAR LIMIT=24] -->
    147     <string name="notification_paused_in_background">Paused in background.</string>
    148 
    149     <!-- Title for dialog when a download exceeds the carrier-specified maximum size of downloads
    150         over the mobile network and Wi-Fi is required.  The user has the choice to either queue the
    151         download to start next time Wi-Fi is available or cancel the download altogether. [CHAR
    152         LIMIT=50] -->
    153     <string name="wifi_required_title">Download too large for operator network</string>
    154 
    155     <!-- Text for dialog when a download exceeds the carrier-specified maximum size of downloads
    156         over the mobile network and Wi-Fi is required.  The user has the choice to either queue the
    157         download to start next time Wi-Fi is available or cancel the download altogether. [CHAR
    158         LIMIT=200] -->
    159     <string name="wifi_required_body">You must use Wi-Fi to complete this
    160         <xliff:g id="size" example="12.3KB">%s
    161         </xliff:g> download. \n\nTouch <xliff:g id="queue_text" example="Queue">%s
    162         </xliff:g> to start this download the next time you\'re connected to a Wi-Fi
    163         network.</string>
    164 
    165     <!-- Title for dialog when a download exceeds the carrier-specified recommended maximum size of
    166         downloads over the mobile network, and the user may choose to start the download over mobile
    167         anyway or to queue for download to start next time a Wi-Fi connection is available [CHAR
    168         LIMIT=50] -->
    169     <string name="wifi_recommended_title">Queue for download later?</string>
    170 
    171     <!-- Text for dialog when a download exceeds the carrier-specified recommended maximum size of
    172         downloads over the mobile network, and the user may choose to start the download over mobile
    173         anyway or to queue for download to start next time a Wi-Fi connection is available [CHAR
    174         LIMIT=200] -->
    175     <string name="wifi_recommended_body">Starting this <xliff:g id="size" example="12.3KB">%s
    176         </xliff:g> download now may shorten your battery life and/or result in
    177         excessive usage of your mobile data connection, which can lead to charges by
    178         your mobile operator depending on your data plan.\n\n
    179         Touch <xliff:g id="queue_text" example="Queue">%s</xliff:g> to start this download
    180         the next time you\'re connected to a Wi-Fi network.</string>
    181 
    182 
    183     <!-- Text for button to queue a download to start next time Wi-Fi is available [CHAR LIMIT=25]
    184         -->
    185     <string name="button_queue_for_wifi">Queue</string>
    186 
    187     <!-- Text for button to cancel a download because it's too large to proceed over the mobile
    188          network and the user does not want to queue it for Wi-Fi [CHAR LIMIT=25] -->
    189     <string name="button_cancel_download">Cancel</string>
    190 
    191     <!-- Text for button to start a download over the mobile connection now, even though it's over
    192          the carrier-specified recommended maximum size for downloads over the mobile connection
    193          [CHAR LIMIT=25] -->
    194     <string name="button_start_now">Start now</string>
    195 
    196     <!-- Title summarizing active downloads. [CHAR LIMIT=32] -->
    197     <plurals name="notif_summary_active">
    198         <item quantity="one">1 file downloading</item>
    199         <item quantity="other"><xliff:g id="number">%d</xliff:g> files downloading</item>
    200     </plurals>
    201 
    202     <!-- Title summarizing waiting downloads. [CHAR LIMIT=32] -->
    203     <plurals name="notif_summary_waiting">
    204         <item quantity="one">1 file waiting</item>
    205         <item quantity="other"><xliff:g id="number">%d</xliff:g> files waiting</item>
    206     </plurals>
    207 
    208     <!-- Time remaining until download is complete. [CHAR LIMIT=32] -->
    209     <string name="download_remaining"><xliff:g id="duration" example="3 minutes">%s</xliff:g> left</string>
    210 
    211     <!-- Text for a toast appearing when a user clicks on a completed download, informing the user
    212          that there is no application on the device that can open the file that was downloaded
    213          [CHAR LIMIT=200] -->
    214     <string name="download_no_application_title">Can\'t open file</string>
    215 
    216     <!-- Label describing Downloads as a storage root [CHAR LIMIT=32] -->
    217     <string name="root_downloads">Downloads</string>
    218 
    219     <!-- Status indicating that the download has been queued to start in the future.  Appears for an
    220          individual item in the download list.  [CHAR LIMIT=24] -->
    221     <string name="download_queued">Queued</string>
    222     <!-- Status indicating that the system is currently downloading the file.  Appears for an
    223          individual item in the download list.  [CHAR LIMIT=24] -->
    224     <string name="download_running">In progress</string>
    225     <!-- Status indicating that the download has ended without completing successfully.  Appears for
    226          an individual item in the download list.  [CHAR LIMIT=24] -->
    227     <string name="download_error">Unsuccessful</string>
    228 
    229     <!-- Representation of download progress percentage when running. [CHAR LIMIT=24] -->
    230     <string name="download_running_percent">In progress, <xliff:g id="percentage" example="50%">%s</xliff:g></string>
    231 
    232 </resources>
    233