summaryrefslogtreecommitdiffstats
path: root/ui/res/values/strings.xml
Commit message (Collapse)AuthorAgeFilesLines
* Edits to strings to use UI text standards.Claudia de Veaux2011-11-101-13/+13
| | | | | | | | | * We use contractions now. * We avoid using forms of "fail". Bug: 5165745 Bug: 5162667 Change-Id: Iae9098cbb37e78f94204c34137c87ed46425879e
* bug:3514045 fix formatted stringsVasu Nori2011-03-071-1/+1
| | | | Change-Id: I41e5cdb43f596466cd51e737858c2196ca8f9aab
* bug:3404934 implement share as one of the menu optionsVasu Nori2011-03-021-8/+7
| | | | Change-Id: I51fec5314722d2ec046f8d2acd60c77efd120f74
* bug:3308769 add CAB options to downloads appVasu Nori2011-02-251-4/+11
| | | | Change-Id: I9bb1374b7ca0053210274e5d6981b2f2dcf6bfca
* bug:3083060 UI tweaks to DownloadManager screensVasu Nori2010-10-191-2/+6
| | | | Change-Id: I3c7ee819077d344072deee4cfd61f883c64da758
* Improve how the download manager reports paused statuses.Steve Howard2010-09-291-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change makes the download manager report more detail when a download is paused. Rather than always reporting status RUNNING_PAUSED, there are now four different statuses: * paused by the app * waiting to retry after a network error * waiting for network connectivity * queued for wifi due to size limits This allows a few improvements: * code deciding when to run a download can be improved and cleaned up (I've taken some extra steps in cleaning up this particular code) * notification code no longer has to rely on the in-memory-only "mPausedReason" member of DownloadInfo; instead, it knows from the status that the download is queued for wifi, and can display the appropriate string. This moves the string fetching out into the UI-specific logic and is a sign that this is really the right way to do things. And finally, the real motivation for this change: I've changed the meaning of "Queued" in the downloads UI so it now means "Queued for WiFi'. This is what was originally intended, I'd misunderstood. What was formerly known as "Queued", a download that hadn't started, is now displayed as "In progress" (it's always a transient state so it's basically meaningless anyway). Otherwise it remains the same (in particular, downloads paused for other reasons are still reported as "In progress"). I've also increased some of the logging in DownloadThread a bit, as this change initally introduced some bugs that were impossible to track down without that logging. There have been other bug reports that were impossible to diagnose and these few extra log statements should really help, without cluttering logs too much. I've taken care to avoid potentially introducing any PII into the logs. Change-Id: Id0b8d65fc8e4406ad7ffa1439ffc22a0281b051f
* Improve file error reporting + new detailed error messages in UISteve Howard2010-09-201-0/+19
| | | | | | | | | | | * support new error code for "destination file already exists" * improve error handling for various file error cases to return a more specific error code when appropriate * make UI support more detailed error messages for some cases * use Uri.getPath() instead of Uri.getSchemeSpecificPart() for file URIs Change-Id: Icb01d4d3b47c7776be3ddcd8347212e950cd023e
* New assets for download manager UI.Steve Howard2010-09-201-1/+1
| | | | | | Includes new launcher icon and new icon/string for sorting by time. Change-Id: I5b87da9d5fa53184b1a3096f25e0d45678aa1700
* Further work on the new downloads UI.Steve Howard2010-09-101-0/+13
| | | | | | | | | | | | | | | | | | | | * add support for downloads not visible in the UI * add support for restarting failed downloads and downloads for which the file is missing * add "clear selection" button to selection menu * fix DateSortedExpandableListAdapter to ensure the view refreshes properly anytime the underlying data changes * make DownloadList handle when a selected download gets deleted by another app * make DownloadList close a dialog for a pending download when the download starts * show a dialog when the user tries to open a download but the file is missing * display "<Unknown>" when no title is provided for a download * add a test case for DownloadManager.orderBy() (should've gone in the previous commit) Change-Id: Ibf3062e8228e7f2c1270be24d8d5527dfb064658
* First pass at new system UI for download manager.Steve Howard2010-09-081-0/+78
This is the initial checkin for a new system UI for the download manager. This UI shows all entries present in the Download Manager database, sorted by either date or size. It allows the user to monitor status, open files, and delete/cancel entries. The code was initially copied from the "Downloads" page of packages/apps/Browser, since the design is based on that UI. Much of the code is changed, although DateSortedExpandableListAdapter is nearly identical. The code is not quite finished, but this is very much a working first pass. Change-Id: I7fe102e9f2998e57d893cc3c0f5f6da1cf2db549