Changeset 271612 in webkit


Ignore:
Timestamp:
Jan 19, 2021 1:26:40 PM (18 months ago)
Author:
Patrick Angle
Message:

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):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r271528 r271612  
     12021-01-19  Patrick Angle  <pangle@apple.com>
     2
     3        Web Inspector: `Historical Figures` string should be `Alternate Glyphs`
     4        https://bugs.webkit.org/show_bug.cgi?id=220731
     5
     6        Reviewed by BJ Burg.
     7
     8        Changed title for CSS property `font-variant-alternates` to be `Alternate Glyphs`.
     9
     10        * Localizations/en.lproj/localizedStrings.js:
     11        * UserInterface/Views/FontDetailsPanel.js:
     12        (WI.FontDetailsPanel.prototype.initialLayout):
     13
    1142021-01-15  Patrick Angle  <pangle@apple.com>
    215
  • trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js

    r271410 r271612  
    153153localizedStrings["All items in \u0022%s\u0022 must be valid DOM nodes"] = "All items in \u0022%s\u0022 must be valid DOM nodes";
    154154localizedStrings["Allow Media Capture on Insecure Sites"] = "Allow Media Capture on Insecure Sites";
     155/* Property title for `font-variant-alternates`. */
     156localizedStrings["Alternate Glyphs @ Font Details Sidebar Property"] = "Alternate Glyphs";
    155157localizedStrings["An error occurred trying to load the resource."] = "An error occurred trying to load the resource.";
    156158localizedStrings["An error occurred trying to read the \u201C%s\u201D table."] = "An error occurred trying to read the \u201C%s\u201D table.";
     
    736738/* Property value for `font-variant-ligatures: historical-ligatures`. */
    737739localizedStrings["Historical @ Font Details Sidebar Property Value"] = "Historical";
    738 /* Property title for `font-variant-alternates`. */
    739 localizedStrings["Historical Figures @ Font Details Sidebar Property"] = "Historical Figures";
    740740/* Property value for `font-variant-alternates: historical-forms`. */
    741741localizedStrings["Historical Forms @ Font Details Sidebar Property Value"] = "Historical Forms";
  • trunk/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.js

    r271329 r271612  
    115115        this._fontVariantCapsRow = new WI.DetailsSectionSimpleRow(WI.UIString("Capitals", "Capitals @ Font Details Sidebar Property", "Property title for `font-variant-caps`."));
    116116        this._fontVariantNumericRow = new WI.DetailsSectionSimpleRow(WI.UIString("Numeric", "Numeric @ Font Details Sidebar Property", "Property title for `font-variant-numeric`."));
    117         this._fontVariantAlternatesRow = new WI.DetailsSectionSimpleRow(WI.UIString("Historical Figures", "Historical Figures @ Font Details Sidebar Property", "Property title for `font-variant-alternates`."));
     117        this._fontVariantAlternatesRow = new WI.DetailsSectionSimpleRow(WI.UIString("Alternate Glyphs", "Alternate Glyphs @ Font Details Sidebar Property", "Property title for `font-variant-alternates`."));
    118118        this._fontVariantEastAsianRow = new WI.DetailsSectionSimpleRow(WI.UIString("East Asian", "East Asian @ Font Details Sidebar Property", "Property title for `font-variant-east-asian`."));
    119119        let featurePropertiesGroup = new WI.DetailsSectionGroup([this._fontVariantLigaturesRow, this._fontVariantPositionRow, this._fontVariantCapsRow, this._fontVariantNumericRow, this._fontVariantAlternatesRow, this._fontVariantEastAsianRow]);
Note: See TracChangeset for help on using the changeset viewer.