mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1117889 - Fix hard-coded general data caption in about:telemetry. r=gfritzsche
This commit is contained in:
parent
d054da5c23
commit
b0a6e8b4fa
@ -119,7 +119,8 @@ let GeneralData = {
|
||||
let table = document.createElement("table");
|
||||
|
||||
let caption = document.createElement("caption");
|
||||
caption.appendChild(document.createTextNode("General data\n"));
|
||||
let captionString = bundle.GetStringFromName("generalDataTitle");
|
||||
caption.appendChild(document.createTextNode(captionString + "\n"));
|
||||
table.appendChild(caption);
|
||||
|
||||
let headings = document.createElement("tr");
|
||||
|
@ -7,6 +7,8 @@
|
||||
# - %2$S will be replaced with the value of the toolkit.telemetry.server_owner preference
|
||||
pageSubtitle = This page shows the information about performance, hardware, usage and customizations collected by Telemetry. This information is submitted to %1$S to help improve %2$S.
|
||||
|
||||
generalDataTitle = General Data
|
||||
|
||||
generalDataHeadingName = Name
|
||||
|
||||
generalDataHeadingValue = Value
|
||||
|
Loading…
Reference in New Issue
Block a user