From 34bb1435615a87b544d75167073b35efa593dd34 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 22 Aug 2024 13:54:23 +0200 Subject: [PATCH] fix undefined translation string, see #10417 --- modules/ui/photoviewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/photoviewer.js b/modules/ui/photoviewer.js index 520717086..c637014f8 100644 --- a/modules/ui/photoviewer.js +++ b/modules/ui/photoviewer.js @@ -130,7 +130,7 @@ export function uiPhotoviewer(context) { .attr('class', 'set-photo-from-viewer') .call(svgIcon('#iD-icon-plus')) .call(uiTooltip() - .title(() => t.append('inspector.set_photo_from_viewer')) + .title(() => t.append('inspector.set_photo_from_viewer.enable')) .placement('right') );