Bug 1130466 - Add tooltip to console log-line icon. r=jryans

This commit is contained in:
Tom Schuster 2015-02-07 16:23:14 +01:00
Родитель 36b1d7f69e
Коммит 363b86bc65
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -836,6 +836,7 @@ Messages.Simple.prototype = Heritage.extend(Messages.BaseMessage.prototype,
let icon = this.document.createElementNS(XHTML_NS, "span");
icon.className = "icon";
icon.title = l10n.getStr("severity." + this._severityNameCompat);
// Apply the current group by indenting appropriately.
// TODO: remove this once bug 778766 is fixed.

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

@ -257,3 +257,10 @@ table.index=(index)
table.iterationIndex=(iteration index)
table.key=Key
table.value=Values
# LOCALIZATION NOTE (severity.error, severity.warn, severity.info, severity.log):
# tooltip for icons next to console output
severity.error=Error
severity.warn=Warning
severity.info=Info
severity.log=Log