Changeset 271612 in webkit
- Timestamp:
- Jan 19, 2021 1:26:40 PM (18 months ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Localizations/en.lproj/localizedStrings.js (modified) (2 diffs)
-
UserInterface/Views/FontDetailsPanel.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r271528 r271612 1 2021-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 1 14 2021-01-15 Patrick Angle <pangle@apple.com> 2 15 -
trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
r271410 r271612 153 153 localizedStrings["All items in \u0022%s\u0022 must be valid DOM nodes"] = "All items in \u0022%s\u0022 must be valid DOM nodes"; 154 154 localizedStrings["Allow Media Capture on Insecure Sites"] = "Allow Media Capture on Insecure Sites"; 155 /* Property title for `font-variant-alternates`. */ 156 localizedStrings["Alternate Glyphs @ Font Details Sidebar Property"] = "Alternate Glyphs"; 155 157 localizedStrings["An error occurred trying to load the resource."] = "An error occurred trying to load the resource."; 156 158 localizedStrings["An error occurred trying to read the \u201C%s\u201D table."] = "An error occurred trying to read the \u201C%s\u201D table."; … … 736 738 /* Property value for `font-variant-ligatures: historical-ligatures`. */ 737 739 localizedStrings["Historical @ Font Details Sidebar Property Value"] = "Historical"; 738 /* Property title for `font-variant-alternates`. */739 localizedStrings["Historical Figures @ Font Details Sidebar Property"] = "Historical Figures";740 740 /* Property value for `font-variant-alternates: historical-forms`. */ 741 741 localizedStrings["Historical Forms @ Font Details Sidebar Property Value"] = "Historical Forms"; -
trunk/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.js
r271329 r271612 115 115 this._fontVariantCapsRow = new WI.DetailsSectionSimpleRow(WI.UIString("Capitals", "Capitals @ Font Details Sidebar Property", "Property title for `font-variant-caps`.")); 116 116 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`.")); 118 118 this._fontVariantEastAsianRow = new WI.DetailsSectionSimpleRow(WI.UIString("East Asian", "East Asian @ Font Details Sidebar Property", "Property title for `font-variant-east-asian`.")); 119 119 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.