Index: Source/WebCore/inspector/front-end/TimelinePanel.js |
=================================================================== |
--- Source/WebCore/inspector/front-end/TimelinePanel.js (revision 112843) |
+++ Source/WebCore/inspector/front-end/TimelinePanel.js (working copy) |
@@ -268,11 +268,11 @@ |
if (InspectorFrontendHost.canSaveAs()) { |
this._shortcuts[shortcut.makeKey("s", modifiers.CtrlOrMeta)] = this._saveToFile.bind(this); |
- section.addKey(shortcut.shortcutToString("s", modifiers.CtrlOrMeta), WebInspector.UIString("Save Timeline data\u2026")); |
+ section.addKey(shortcut.shortcutToString("s", modifiers.CtrlOrMeta), WebInspector.UIString("Save timeline data")); |
} |
this._shortcuts[shortcut.makeKey("o", modifiers.CtrlOrMeta)] = this._fileSelectorElement.click.bind(this._fileSelectorElement); |
- section.addKey(shortcut.shortcutToString("o", modifiers.CtrlOrMeta), WebInspector.UIString("Load Timeline data\u2026")); |
+ section.addKey(shortcut.shortcutToString("o", modifiers.CtrlOrMeta), WebInspector.UIString("Load timeline data")); |
}, |
_createFileSelector: function() |
@@ -293,8 +293,8 @@ |
{ |
var contextMenu = new WebInspector.ContextMenu(); |
if (InspectorFrontendHost.canSaveAs()) |
- contextMenu.appendItem(WebInspector.UIString("&Save Timeline data\u2026"), this._saveToFile.bind(this)); |
- contextMenu.appendItem(WebInspector.UIString("L&oad Timeline data\u2026"), this._fileSelectorElement.click.bind(this._fileSelectorElement)); |
+ contextMenu.appendItem(WebInspector.UIString("Save Timeline data\u2026"), this._saveToFile.bind(this)); |
+ contextMenu.appendItem(WebInspector.UIString("Load Timeline data\u2026"), this._fileSelectorElement.click.bind(this._fileSelectorElement)); |
contextMenu.show(event); |
}, |