Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 10970062: [FileBrowser] Changed "New Folder" shortcut to Ctrl+E. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 <commands> 98 <commands>
99 <!-- We have to use U+XXXX notation here according to event.keyIdentifier 99 <!-- We have to use U+XXXX notation here according to event.keyIdentifier
100 property --> 100 property -->
101 <command id="cut" i18n-values="label:CUT_BUTTON_LABEL" 101 <command id="cut" i18n-values="label:CUT_BUTTON_LABEL"
102 shortcut="U+0058-Ctrl"></command> 102 shortcut="U+0058-Ctrl"></command>
103 <command id="copy" i18n-values="label:COPY_BUTTON_LABEL" 103 <command id="copy" i18n-values="label:COPY_BUTTON_LABEL"
104 shortcut="U+0043-Ctrl"></command> 104 shortcut="U+0043-Ctrl"></command>
105 <command id="paste" i18n-values="label:PASTE_BUTTON_LABEL" 105 <command id="paste" i18n-values="label:PASTE_BUTTON_LABEL"
106 shortcut="U+0056-Ctrl"></command> 106 shortcut="U+0056-Ctrl"></command>
107 <command id="rename" i18n-values="label:RENAME_BUTTON_LABEL" 107 <command id="rename" i18n-values="label:RENAME_BUTTON_LABEL"
108 shortcut="Enter-Ctrl U+0045-Ctrl"></command> 108 shortcut="Enter-Ctrl"></command>
109 <command id="delete" i18n-values="label:DELETE_BUTTON_LABEL" 109 <command id="delete" i18n-values="label:DELETE_BUTTON_LABEL"
110 shortcut="U+007F"></command> 110 shortcut="U+007F"></command>
111 <command id="newfolder" i18n-values="label:NEW_FOLDER_BUTTON_LABEL" 111 <command id="newfolder" i18n-values="label:NEW_FOLDER_BUTTON_LABEL"
112 shortcut="U+0020-Ctrl"></command> 112 shortcut="U+0045-Ctrl"></command>
113 113
114 <command id="unmount" i18n-values="label:UNMOUNT_DEVICE_BUTTON_LABEL" 114 <command id="unmount" i18n-values="label:UNMOUNT_DEVICE_BUTTON_LABEL"
115 ></command> 115 ></command>
116 <command id="format" i18n-values="label:FORMAT_DEVICE_BUTTON_LABEL" 116 <command id="format" i18n-values="label:FORMAT_DEVICE_BUTTON_LABEL"
117 ></command> 117 ></command>
118 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL" 118 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL"
119 ></command> 119 ></command>
120 120
121 <command id="gdata-buy-more-space" 121 <command id="gdata-buy-more-space"
122 i18n-values="label:GDATA_BUY_MORE_SPACE" 122 i18n-values="label:GDATA_BUY_MORE_SPACE"
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 <div class="progress-track"></div> 275 <div class="progress-track"></div>
276 </div> 276 </div>
277 </div> 277 </div>
278 <div class="actions" hidden></div> 278 <div class="actions" hidden></div>
279 </div> 279 </div>
280 </div> 280 </div>
281 <div id="drag-image-container"></div> 281 <div id="drag-image-container"></div>
282 <iframe id="command-dispatcher" hidden></iframe> 282 <iframe id="command-dispatcher" hidden></iframe>
283 </body> 283 </body>
284 </html> 284 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698