Title: [96596] trunk/Source/WebCore
Revision
96596
Author
vse...@chromium.org
Date
2011-10-04 08:49:50 -0700 (Tue, 04 Oct 2011)

Log Message

Web Inspector: Timeline panel shortcut for filtering short records should have shorter description.
https://bugs.webkit.org/show_bug.cgi?id=69333

Reviewed by Pavel Feldman.

* English.lproj/localizedStrings.js:
* inspector/front-end/TimelinePanel.js:
(WebInspector.TimelinePanel.prototype._registerShortcuts):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96595 => 96596)


--- trunk/Source/WebCore/ChangeLog	2011-10-04 15:39:46 UTC (rev 96595)
+++ trunk/Source/WebCore/ChangeLog	2011-10-04 15:49:50 UTC (rev 96596)
@@ -1,3 +1,14 @@
+2011-10-04  Vsevolod Vlasov  <vse...@chromium.org>
+
+        Web Inspector: Timeline panel shortcut for filtering short records should have shorter description.
+        https://bugs.webkit.org/show_bug.cgi?id=69333
+
+        Reviewed by Pavel Feldman.
+
+        * English.lproj/localizedStrings.js:
+        * inspector/front-end/TimelinePanel.js:
+        (WebInspector.TimelinePanel.prototype._registerShortcuts):
+
 2011-10-04  Andreas Kling  <kl...@webkit.org>
 
         Shrink StyleRareNonInheritedData.

Modified: trunk/Source/WebCore/English.lproj/localizedStrings.js


(Binary files differ)

Modified: trunk/Source/WebCore/inspector/front-end/TimelinePanel.js (96595 => 96596)


--- trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-10-04 15:39:46 UTC (rev 96595)
+++ trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-10-04 15:49:50 UTC (rev 96596)
@@ -239,7 +239,7 @@
 
         var shortRecordThresholdTitle = Number.secondsToString(WebInspector.TimelinePanel.shortRecordThreshold);
         this._shortcuts[shortcut.makeKey("f", modifiers.Shift | modifiers.CtrlOrMeta)] = this._toggleFilterButtonClicked.bind(this);
-        section.addKey(shortcut.shortcutToString("f", modifiers.Shift | modifiers.CtrlOrMeta), WebInspector.UIString("Toggle filter for the records that are shorter than %s", shortRecordThresholdTitle));
+        section.addKey(shortcut.shortcutToString("f", modifiers.Shift | modifiers.CtrlOrMeta), WebInspector.UIString("Filter out records shorter than %s", shortRecordThresholdTitle));
 
         this._shortcuts[shortcut.makeKey("s", modifiers.CtrlOrMeta)] = this._saveToFile.bind(this);
         section.addKey(shortcut.shortcutToString("s", modifiers.CtrlOrMeta), WebInspector.UIString("Save Timeline data\u2026"));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to