From 3b466c2d19d39ee9e39ac3c3afd9acea9b3549fc Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Tue, 20 Jun 2023 20:12:38 +0200 Subject: [PATCH] Use + between keys in help texts --- umap/static/umap/js/umap.features.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index 8862ab66..02d421b0 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -393,7 +393,7 @@ L.U.FeatureMixin = { let items = ['-'] if (this.map.editedFeature !== this) { items.push({ - text: L._('Edit this feature') + ' (⇧-click)', + text: L._('Edit this feature') + ' (⇧+click)', callback: this.edit, context: this, iconCls: 'umap-edit', @@ -401,7 +401,7 @@ L.U.FeatureMixin = { } items = items.concat( { - text: L._("Edit feature's layer") + ' (Ctrl-⇧-click)', + text: L._("Edit feature's layer") + ' (Ctrl+⇧+click)', callback: this.datalayer.edit, context: this.datalayer, iconCls: 'umap-edit',