Title: [227016] branches/safari-605-branch/Source/WebInspectorUI

Diff

Modified: branches/safari-605-branch/Source/WebInspectorUI/ChangeLog (227015 => 227016)


--- branches/safari-605-branch/Source/WebInspectorUI/ChangeLog	2018-01-17 05:03:36 UTC (rev 227015)
+++ branches/safari-605-branch/Source/WebInspectorUI/ChangeLog	2018-01-17 05:03:38 UTC (rev 227016)
@@ -1,5 +1,20 @@
 2018-01-16  Jason Marcell  <[email protected]>
 
+        Cherry-pick r226821. rdar://problem/36568038
+
+    2018-01-11  Joseph Pecoraro  <[email protected]>
+
+            Web Inspector: Rename "Query String" section as "Query String Parameters" for clarity
+            https://bugs.webkit.org/show_bug.cgi?id=181464
+
+            Reviewed by Darin Adler.
+
+            * Localizations/en.lproj/localizedStrings.js:
+            * UserInterface/Views/ResourceHeadersContentView.js:
+            (WI.ResourceHeadersContentView.prototype.initialLayout):
+
+2018-01-16  Jason Marcell  <[email protected]>
+
         Cherry-pick r226765. rdar://problem/36568045
 
     2018-01-10  Joseph Pecoraro  <[email protected]>

Modified: branches/safari-605-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (227015 => 227016)


--- branches/safari-605-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2018-01-17 05:03:36 UTC (rev 227015)
+++ branches/safari-605-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2018-01-17 05:03:38 UTC (rev 227016)
@@ -721,6 +721,7 @@
 localizedStrings["Pseudo Element"] = "Pseudo Element";
 localizedStrings["Query Parameters"] = "Query Parameters";
 localizedStrings["Query String"] = "Query String";
+localizedStrings["Query String Parameters"] = "Query String Parameters";
 localizedStrings["Query returned no results."] = "Query returned no results.";
 localizedStrings["Queued"] = "Queued";
 localizedStrings["Radial Gradient"] = "Radial Gradient";

Modified: branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js (227015 => 227016)


--- branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js	2018-01-17 05:03:36 UTC (rev 227015)
+++ branches/safari-605-branch/Source/WebInspectorUI/UserInterface/Views/ResourceHeadersContentView.js	2018-01-17 05:03:38 UTC (rev 227016)
@@ -75,7 +75,7 @@
         this._refreshResponseHeadersSection();
 
         if (this._resource.urlComponents.queryString) {
-            this._queryStringSection = new WI.ResourceDetailsSection(WI.UIString("Query String"));
+            this._queryStringSection = new WI.ResourceDetailsSection(WI.UIString("Query String Parameters"));
             this.element.appendChild(this._queryStringSection.element);
             this._refreshQueryStringSection();
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to