Add lang attribute to more labels (re: #7963)

This commit is contained in:
Quincy Morgan
2020-09-23 10:44:38 -04:00
parent 4600ab596f
commit 9da4c4bb62
25 changed files with 55 additions and 52 deletions
+2 -2
View File
@@ -304,14 +304,14 @@ export function uiInit(context) {
.attr('target', '_blank')
.attr('href', 'https://github.com/openstreetmap/iD/issues')
.call(svgIcon('#iD-icon-bug', 'light'))
.call(uiTooltip().title(t('report_a_bug')).placement('top'));
.call(uiTooltip().title(t.html('report_a_bug')).placement('top'));
issueLinks
.append('a')
.attr('target', '_blank')
.attr('href', 'https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating')
.call(svgIcon('#iD-icon-translate', 'light'))
.call(uiTooltip().title(t('help_translate')).placement('top'));
.call(uiTooltip().title(t.html('help_translate')).placement('top'));
aboutList
.append('li')