mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
update core.yaml
This commit is contained in:
@@ -786,8 +786,9 @@ en:
|
||||
inch: in
|
||||
max_length_reached: "This string is longer than the maximum length of {maxChars} characters. Anything exceeding that length will be truncated."
|
||||
set_today: "Sets the value to today."
|
||||
set_mapillary: "Sets the current ID of mapillary"
|
||||
show_mapillary_from_field: "Show image on viewer"
|
||||
set_photo_from_viewer: "Store this photo on the currently selected map object"
|
||||
set_photo_from_field: "Use the currently displayed photo"
|
||||
show_photo_from_field: "Open image in viewer"
|
||||
background:
|
||||
title: Background
|
||||
description: Background Settings
|
||||
|
||||
@@ -183,7 +183,7 @@ export function uiFieldText(field, context) {
|
||||
.append('button')
|
||||
.attr('class', 'form-field-button mapillary-set-current')
|
||||
.call(svgIcon('#fas-rotate'))
|
||||
.attr('title', t('inspector.set_mapillary'))
|
||||
.attr('title', t('inspector.set_photo_from_field'))
|
||||
.on('click', function(d3_event) {
|
||||
d3_event.preventDefault();
|
||||
const image = service.getActiveImage();
|
||||
@@ -221,7 +221,7 @@ export function uiFieldText(field, context) {
|
||||
.append('button')
|
||||
.attr('class', 'form-field-button mapillary-show-view')
|
||||
.call(svgIcon('#fas-eye'))
|
||||
.attr('title', t('inspector.show_mapillary_from_field'))
|
||||
.attr('title', t('inspector.show_photo_from_field'))
|
||||
.on('click', function(d3_event) {
|
||||
d3_event.preventDefault();
|
||||
if ( !utilGetSetValue(input).trim()) return;
|
||||
|
||||
@@ -116,7 +116,7 @@ export function uiPhotoviewer(context) {
|
||||
})
|
||||
.append('div')
|
||||
.call(svgIcon('#iD-operation-merge'))
|
||||
.attr('title', t('inspector.set_mapillary'));
|
||||
.attr('title', t('inspector.set_photo_from_viewer'));
|
||||
}
|
||||
|
||||
function buildResizeListener(target, eventName, dispatch, options) {
|
||||
|
||||
Reference in New Issue
Block a user