Bug 406738 - No longer show the kind of updates in 'Show Update History' as they are all marked as "security updates" r=florian

MozReview-Commit-ID: 1TTK5vPRnfT

--HG--
extra : rebase_source : 7d7dd108e8cab840c4029f995b6802b6cae23d1b
This commit is contained in:
Sylvestre Ledru 2017-10-19 11:36:25 +02:00
Родитель 5503bf6a6c
Коммит 52773cd64b
3 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -20,9 +20,6 @@ updateNightlyName=%1$S %2$S %3$S nightly
intro_major=Do you want to upgrade to %1$S %2$S now?
intro_minor=A security and stability update for %1$S is available:
updateType_major=New Version
updateType_minor=Security Update
# LOCALIZATION NOTE: When present %S is brandShortName
verificationError=%S could not confirm the integrity of the update package.
resumePausedAfterCloseTitle=Software Update

Просмотреть файл

@ -38,7 +38,6 @@ var gUpdateHistory = {
this._view.appendChild(element);
element.name = bundle.getFormattedString("updateFullName",
[update.name, update.buildID]);
element.type = bundle.getString("updateType_" + update.type);
element.installDate = this._formatDate(update.installDate);
if (update.detailsURL)
element.detailsURL = update.detailsURL;

Просмотреть файл

@ -33,7 +33,6 @@
<xul:label xbl:inherits="href=detailsURL,hidden=hideDetailsURL" class="text-link"
value="&update.details.label;"/>
</xul:hbox>
<xul:label class="update-type" xbl:inherits="value=type"/>
<xul:grid>
<xul:columns>
<xul:column class="update-label-column"/>
@ -61,9 +60,6 @@
<property name="installDate"
onget="return this.getAttribute('installDate');"
onset="this.setAttribute('installDate', val); return val;"/>
<property name="type"
onget="return this.getAttribute('type');"
onset="this.setAttribute('type', val); return val;"/>
<property name="hideDetailsURL"
onget="return this.getAttribute('hideDetailsURL');"
onset="this.setAttribute('hideDetailsURL', val); return val;"/>