Bug 1473496 - Font editor: replace string IDs for localizable strings that changed value. r=flod

MozReview-Commit-ID: H9bQuOsoZkP

--HG--
extra : rebase_source : 87a6558f72fdaf388a18c78bb8edb74188b11db8
This commit is contained in:
Razvan Caliman 2018-07-05 10:38:48 +02:00
parent 4d72fb0ad1
commit 3ec682d724
2 changed files with 8 additions and 8 deletions

View File

@ -116,7 +116,7 @@ class FontEditor extends PureComponent {
{},
dom.summary(
{},
getStr("fontinspector.familiesNotUsedLabel")
getStr("fontinspector.familiesUnusedLabel")
),
familiesList
);
@ -142,8 +142,8 @@ class FontEditor extends PureComponent {
? null
: dom.details({},
dom.summary({},
dom.span({ className: "label-open" }, getStr("fontinspector.seeMore")),
dom.span({ className: "label-close" }, getStr("fontinspector.seeLess"))
dom.span({ className: "label-open" }, getStr("fontinspector.showMore")),
dom.span({ className: "label-close" }, getStr("fontinspector.showLess"))
),
moreUsedFontsList
);

View File

@ -61,12 +61,12 @@ fontinspector.fontWeightLabel=Weight
# in the font editor which allows the user to change the style of the font to italic.
fontinspector.fontItalicLabel=Italic
# LOCALIZATION NOTE (fontinspector.familiesNotUsedLabel): Label for the list in the font
# editor which contains the names of font families declared but not used.
fontinspector.familiesNotUsedLabel=Unused font families
# LOCALIZATION NOTE (fontinspector.familiesUnusedLabel): Label for the list which
# contains the names of font families declared but not used.
fontinspector.familiesUnusedLabel=Unused font families
# LOCALIZATION NOTE (fontinspector.showMore): Label for a collapsed list of fonts.
fontinspector.seeMore=See more
fontinspector.showMore=Show more
# LOCALIZATION NOTE (fontinspector.showLess): Label for an expanded list of fonts.
fontinspector.seeLess=See less
fontinspector.showLess=Show less