diff options
author | rginda@chromium.org <rginda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 21:41:32 +0000 |
---|---|---|
committer | rginda@chromium.org <rginda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 21:41:32 +0000 |
commit | a240550043436c4318b22da1335ba0c33b1418bc (patch) | |
tree | ccd57e3cc70aefaa2d54d81e18d359b8fead6857 /chrome/app | |
parent | 0f41da5958d0b708d5344846011f71940499d139 (diff) | |
download | chromium_src-a240550043436c4318b22da1335ba0c33b1418bc.zip chromium_src-a240550043436c4318b22da1335ba0c33b1418bc.tar.gz chromium_src-a240550043436c4318b22da1335ba0c33b1418bc.tar.bz2 |
File Manager: Add Cut/Copy/Paste file management
Adds keyboard handlers (Ctrl-[XCV]), task buttons (but only for copy/paste) and context menu items for all three commands.
Introduces a butter bar (which I'd like to refactor into a stand-alone lib later) with fancy transitions.
Fixes the never-worked-right canExecute updating.
Refactor resolvePath from file_manager.js to utils.js
Added small border around the preview image.
Add the document level key handler back in.
BUG=chromium-os:14803,chromium-os:17797
TEST=Manual testing on chromeos-chrome in linux
Review URL: http://codereview.chromium.org/7461044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93963 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/generated_resources.grd | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index b496c87..73241a3 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -8941,6 +8941,34 @@ Keep your key file in a safe place. You will need it to create new versions of y Cut </message> + <message name="IDS_FILE_BROWSER_SELECTION_COPIED" desc="File picker status message."> + Selection copied to clipboard. + </message> + <message name="IDS_FILE_BROWSER_SELECTION_CUT" desc="File picker status message."> + Selection cut to clipboard. + </message> + <message name="IDS_FILE_BROWSER_PASTE_STARTED" desc="File picker status message."> + Pasting... + </message> + <message name="IDS_FILE_BROWSER_PASTE_SOME_PROGRESS" desc="File picker status message. 'Item' is used here as a generic term for file or directory."> + Pasting $1 of $2 items... + </message> + <message name="IDS_FILE_BROWSER_PASTE_COMPLETE" desc="File picker status message."> + Paste complete. + </message> + <message name="IDS_FILE_BROWSER_PASTE_CANCELLED" desc="File picker status message."> + Paste cancelled. + </message> + <message name="IDS_FILE_BROWSER_PASTE_TARGET_EXISTS_ERROR" desc="File picker status message. 'Item' is used here as a generic term for file or directory."> + Paste failed, item exists: $1 + </message> + <message name="IDS_FILE_BROWSER_PASTE_FILESYSTEM_ERROR" desc="File picker status message."> + Paste failed, file system error: $1' + </message> + <message name="IDS_FILE_BROWSER_PASTE_UNEXPECTED_ERROR" desc="File picker status message."> + Paste failed, unexpected error: $1 + </message> + <message name="IDS_FILE_BROWSER_DEVICE_TYPE_FLASH" desc="Indication of mounted device type."> Flash Device </message> |