Title: [271855] branches/safari-611-branch/Source/WebInspectorUI
Revision
271855
Author
alanc...@apple.com
Date
2021-01-25 14:13:32 -0800 (Mon, 25 Jan 2021)

Log Message

Cherry-pick r271612. rdar://problem/73478355

    Web Inspector: `Historical Figures` string should be `Alternate Glyphs`
    https://bugs.webkit.org/show_bug.cgi?id=220731

    Reviewed by BJ Burg.

    Changed title for CSS property `font-variant-alternates` to be `Alternate Glyphs`.

    * Localizations/en.lproj/localizedStrings.js:
    * UserInterface/Views/FontDetailsPanel.js:
    (WI.FontDetailsPanel.prototype.initialLayout):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@271612 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-611-branch/Source/WebInspectorUI/ChangeLog (271854 => 271855)


--- branches/safari-611-branch/Source/WebInspectorUI/ChangeLog	2021-01-25 22:13:28 UTC (rev 271854)
+++ branches/safari-611-branch/Source/WebInspectorUI/ChangeLog	2021-01-25 22:13:32 UTC (rev 271855)
@@ -1,5 +1,36 @@
 2021-01-25  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r271612. rdar://problem/73478355
+
+    Web Inspector: `Historical Figures` string should be `Alternate Glyphs`
+    https://bugs.webkit.org/show_bug.cgi?id=220731
+    
+    Reviewed by BJ Burg.
+    
+    Changed title for CSS property `font-variant-alternates` to be `Alternate Glyphs`.
+    
+    * Localizations/en.lproj/localizedStrings.js:
+    * UserInterface/Views/FontDetailsPanel.js:
+    (WI.FontDetailsPanel.prototype.initialLayout):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@271612 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-01-19  Patrick Angle  <pan...@apple.com>
+
+            Web Inspector: `Historical Figures` string should be `Alternate Glyphs`
+            https://bugs.webkit.org/show_bug.cgi?id=220731
+
+            Reviewed by BJ Burg.
+
+            Changed title for CSS property `font-variant-alternates` to be `Alternate Glyphs`.
+
+            * Localizations/en.lproj/localizedStrings.js:
+            * UserInterface/Views/FontDetailsPanel.js:
+            (WI.FontDetailsPanel.prototype.initialLayout):
+
+2021-01-25  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r271528. rdar://problem/73477082
 
     Web Inspector: Font Details sidebar - Improve line wrapping of table row titles when space is available

Modified: branches/safari-611-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (271854 => 271855)


--- branches/safari-611-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2021-01-25 22:13:28 UTC (rev 271854)
+++ branches/safari-611-branch/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2021-01-25 22:13:32 UTC (rev 271855)
@@ -152,6 +152,8 @@
 localizedStrings["All items in \u0022%s\u0022 must be non-empty strings"] = "All items in \u0022%s\u0022 must be non-empty strings";
 localizedStrings["All items in \u0022%s\u0022 must be valid DOM nodes"] = "All items in \u0022%s\u0022 must be valid DOM nodes";
 localizedStrings["Allow Media Capture on Insecure Sites"] = "Allow Media Capture on Insecure Sites";
+/* Property title for `font-variant-alternates`. */
+localizedStrings["Alternate Glyphs @ Font Details Sidebar Property"] = "Alternate Glyphs";
 localizedStrings["An error occurred trying to load the resource."] = "An error occurred trying to load the resource.";
 localizedStrings["An error occurred trying to read the \u201C%s\u201D table."] = "An error occurred trying to read the \u201C%s\u201D table.";
 localizedStrings["An unexpected error %s occurred."] = "An unexpected error %s occurred.";
@@ -732,8 +734,6 @@
 localizedStrings["Highest: %s"] = "Highest: %s";
 /* Property value for `font-variant-ligatures: historical-ligatures`. */
 localizedStrings["Historical @ Font Details Sidebar Property Value"] = "Historical";
-/* Property title for `font-variant-alternates`. */
-localizedStrings["Historical Figures @ Font Details Sidebar Property"] = "Historical Figures";
 /* Property value for `font-variant-alternates: historical-forms`. */
 localizedStrings["Historical Forms @ Font Details Sidebar Property Value"] = "Historical Forms";
 localizedStrings["Host"] = "Host";

Modified: branches/safari-611-branch/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.js (271854 => 271855)


--- branches/safari-611-branch/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.js	2021-01-25 22:13:28 UTC (rev 271854)
+++ branches/safari-611-branch/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.js	2021-01-25 22:13:32 UTC (rev 271855)
@@ -114,7 +114,7 @@
         this._fontVariantPositionRow = new WI.DetailsSectionSimpleRow(WI.UIString("Position", "Position @ Font Details Sidebar Property", "Property title for `font-variant-position`."));
         this._fontVariantCapsRow = new WI.DetailsSectionSimpleRow(WI.UIString("Capitals", "Capitals @ Font Details Sidebar Property", "Property title for `font-variant-caps`."));
         this._fontVariantNumericRow = new WI.DetailsSectionSimpleRow(WI.UIString("Numeric", "Numeric @ Font Details Sidebar Property", "Property title for `font-variant-numeric`."));
-        this._fontVariantAlternatesRow = new WI.DetailsSectionSimpleRow(WI.UIString("Historical Figures", "Historical Figures @ Font Details Sidebar Property", "Property title for `font-variant-alternates`."));
+        this._fontVariantAlternatesRow = new WI.DetailsSectionSimpleRow(WI.UIString("Alternate Glyphs", "Alternate Glyphs @ Font Details Sidebar Property", "Property title for `font-variant-alternates`."));
         this._fontVariantEastAsianRow = new WI.DetailsSectionSimpleRow(WI.UIString("East Asian", "East Asian @ Font Details Sidebar Property", "Property title for `font-variant-east-asian`."));
         let featurePropertiesGroup = new WI.DetailsSectionGroup([this._fontVariantLigaturesRow, this._fontVariantPositionRow, this._fontVariantCapsRow, this._fontVariantNumericRow, this._fontVariantAlternatesRow, this._fontVariantEastAsianRow]);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to