mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-24 09:04:02 +02:00
Make raw tag editor display option tooltips translatable
This commit is contained in:
@@ -8,6 +8,8 @@ en:
|
||||
copy: copy
|
||||
view_on: view on {domain}
|
||||
favorite: favorite
|
||||
list: list
|
||||
text: text
|
||||
toolbar:
|
||||
inspect: Inspect
|
||||
undo_redo: Undo / Redo
|
||||
|
||||
@@ -109,7 +109,7 @@ export function uiRawTagEditor(context) {
|
||||
.attr('class', function(d) {
|
||||
return 'raw-tag-option raw-tag-option-' + d.id + (_tagView === d.id ? ' selected' : '');
|
||||
})
|
||||
.attr('title', function(d) { return d.id; })
|
||||
.attr('title', function(d) { return t('icons.' + d.id); })
|
||||
.on('click', function(d) {
|
||||
_tagView = d.id;
|
||||
context.storage('raw-tag-editor-view', d.id);
|
||||
|
||||
Reference in New Issue
Block a user