From 2f4fe8a011383857e964d9b1cc0933bf76aacb3e Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Tue, 20 Jun 2023 20:22:17 +0200 Subject: [PATCH] Uppercase "Click" --- 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 02d421b0..9b7ac8b2 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',