mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 05:40:47 +00:00
Bug 1429442 - Buttons in "type control" popup in reader mode should have tooltips r=Gijs,MarcoZ
This commit is contained in:
@@ -120,6 +120,25 @@ var AboutReader = function(win, articlePromise) {
|
||||
}
|
||||
|
||||
this._loadArticle();
|
||||
|
||||
let dropdown = this._toolbarElement;
|
||||
|
||||
let elemL10nMap = {
|
||||
".minus-button": "minus",
|
||||
".plus-button": "plus",
|
||||
".content-width-minus-button": "contentwidthminus",
|
||||
".content-width-plus-button": "contentwidthplus",
|
||||
".line-height-minus-button": "lineheightminus",
|
||||
".line-height-plus-button": "lineheightplus",
|
||||
".light-button": "colorschemelight",
|
||||
".dark-button": "colorschemedark",
|
||||
".sepia-button": "colorschemesepia",
|
||||
};
|
||||
|
||||
for (let [selector, stringID] of Object.entries(elemL10nMap)) {
|
||||
dropdown.querySelector(selector).setAttribute("title",
|
||||
gStrings.GetStringFromName("aboutReader.toolbar." + stringID));
|
||||
}
|
||||
};
|
||||
|
||||
AboutReader.prototype = {
|
||||
|
||||
@@ -46,3 +46,14 @@ readerView.enter=Enter Reader View
|
||||
readerView.enter.accesskey=R
|
||||
readerView.close=Close Reader View
|
||||
readerView.close.accesskey=R
|
||||
|
||||
# These are used as tooltips in Type Control
|
||||
aboutReader.toolbar.minus = Decrease Font Size
|
||||
aboutReader.toolbar.plus = Increase Font Size
|
||||
aboutReader.toolbar.contentwidthminus = Decrease Content Width
|
||||
aboutReader.toolbar.contentwidthplus = Increase Content Width
|
||||
aboutReader.toolbar.lineheightminus = Decrease Line Height
|
||||
aboutReader.toolbar.lineheightplus = Increase Line Height
|
||||
aboutReader.toolbar.colorschemelight = Color Scheme Light
|
||||
aboutReader.toolbar.colorschemedark = Color Scheme Dark
|
||||
aboutReader.toolbar.colorschemesepia = Color Scheme Sepia
|
||||
|
||||
Reference in New Issue
Block a user