1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2010 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 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 17 <!-- The name of the application that appears in the launcher [CHAR LIMIT=15] --> 18 <string name="app_label">Downloads</string> 19 <!-- The title that appears at the top of the activity listing downloads [CHAR LIMIT=25] --> 20 <string name="download_title">Downloads</string> 21 22 <!-- Appears in lieu of the list of downloads if there are no downloads to view 23 [CHAR LIMIT=200] --> 24 <string name="no_downloads">No downloads.</string> 25 26 <!-- Default title for an item in the download list for which no title was provided by the app. 27 [CHAR LIMIT=20] --> 28 <string name="missing_title"><Unknown></string> 29 30 <!-- Menu items --> 31 32 <!-- Menu option to sort the list of downloads by the size of the downloaded file 33 [CHAR LIMIT=25] --> 34 <string name="download_menu_sort_by_size">Sort by size</string> 35 <!-- Menu option to sort the list of downloads by the date/time of the last activity related to 36 the download [CHAR LIMIT=25] --> 37 <string name="download_menu_sort_by_date">Sort by time</string> 38 39 <!-- Status messages --> 40 41 <!-- Status indicating that the download has been queued to start in the future. Appears for an 42 individual item in the download list. [CHAR LIMIT=11] --> 43 <string name="download_queued">Queued</string> 44 <!-- Status indicating that the system is currently downloading the file. Appears for an 45 individual item in the download list. [CHAR LIMIT=11] --> 46 <string name="download_running">In progress</string> 47 <!-- Status indicating that the download has completed successfully. Appears for an individual 48 item in the download list. [CHAR LIMIT=11] --> 49 <string name="download_success">Complete</string> 50 <!-- Status indicating that the download has ended without completing successfully. Appears for 51 an individual item in the download list. [CHAR LIMIT=11] --> 52 <string name="download_error">Failed</string> 53 54 <!-- Dialog/toast messages --> 55 56 <!-- Title of dialog that is shown when the user clicks a download for which no file is 57 available, either because the download hasn't started or because the download failed 58 [CHAR LIMIT=25] --> 59 <string name="dialog_title_not_available">Download Failed</string> 60 <!-- Text for dialog when user clicks on a download that failed [CHAR LIMIT=200] --> 61 <string name="dialog_failed_body">Do you want to retry downloading the file later 62 or delete it from the queue?</string> 63 <!-- Title for dialog when user clicks on a download that has not yet begun, but will be started 64 in the future. [CHAR LIMIT=25] --> 65 <string name="dialog_title_queued_body">File not yet available</string> 66 <!-- Text for dialog when user clicks on a download that has not yet begun, but will be started 67 in the future. [CHAR LIMIT=200] --> 68 <string name="dialog_queued_body">This file is queued for future download.</string> 69 <!-- Text for dialog when user clicks on a completed download but the file is missing 70 [CHAR LIMIT=200] --> 71 <string name="dialog_file_missing_body">The downloaded file cannot be found.</string> 72 <!-- Text for dialog when user clicks on a download that failed due to insufficient space on 73 external storage [CHAR LIMIT=200] --> 74 <string name="dialog_insufficient_space_on_external">Cannot finish download. There is not 75 enough space on external storage.</string> 76 <!-- Text for dialog when user clicks on a download that failed due to insufficient space on 77 the internal download cache [CHAR LIMIT=200] --> 78 <string name="dialog_insufficient_space_on_cache">Cannot finish download. There is not enough 79 space on internal download storage.</string> 80 <!-- Text for dialog when user clicks on a download that failed because it was interrupted and 81 the server doesn't support resuming downloads [CHAR LIMIT=200] --> 82 <string name="dialog_cannot_resume">Download interrupted. It cannot be resumed.</string> 83 <!-- Text for dialog when user clicks on a download that failed because the requested 84 destination file already exists [CHAR LIMIT=200] --> 85 <string name="dialog_file_already_exists">Cannot download. The destination file already exists. 86 </string> 87 <!-- Text for dialog when user clicks on a download that failed because it was requested to go 88 on the external media, which is not mounted [CHAR LIMIT=200] --> 89 <string name="dialog_media_not_found">Cannot download. The external media is not available. 90 </string> 91 <!-- Text for a toast appearing when a user clicks on a completed download, informing the user 92 that there is no application on the device that can open the file that was downloaded 93 [CHAR LIMIT=200] --> 94 <string name="download_no_application_title">Cannot open file</string> 95 96 <!-- Buttons --> 97 98 <!-- Text for button to remove the entry for a download that has not yet begun or that has 99 failed [CHAR LIMIT=25] --> 100 <string name="remove_download">Remove</string> 101 <!-- Text for button to delete a download that has completed, or to delete multiple download 102 entries [CHAR LIMIT=25] --> 103 <string name="delete_download">Delete</string> 104 <!-- Text for button to keep a download that has not yet begun [CHAR LIMIT=25] --> 105 <string name="keep_queued_download">Keep</string> 106 <!-- Text for button to cancel a download that is currently in progress [CHAR LIMIT=25] --> 107 <string name="cancel_running_download">Cancel</string> 108 <!-- Text for button appearing in a dialog to restart a download, either one that failed or one 109 for which the downloaded file is now missing [CHAR LIMIT=25] --> 110 <string name="retry_download">Retry</string> 111 <!-- Text for button appearing in the pop-up selection menu to deselect all currently selected 112 downloads in the download list [CHAR LIMIT=25] --> 113 <string name="deselect_all">Clear selection</string> 114 </resources> 115