Bug 1117889 - Fix hard-coded general data caption in about:telemetry. r=gfritzsche

This commit is contained in:
Gabriel Machado 2015-02-04 16:06:48 +00:00
parent 4bc0047497
commit 0bcf668a82
2 changed files with 4 additions and 1 deletions

View File

@ -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");

View File

@ -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