Use + between keys in help texts

This commit is contained in:
Yohan Boniface 2023-06-20 20:12:38 +02:00
parent 6642d4a4f4
commit 3b466c2d19

View file

@ -393,7 +393,7 @@ L.U.FeatureMixin = {
let items = ['-'] let items = ['-']
if (this.map.editedFeature !== this) { if (this.map.editedFeature !== this) {
items.push({ items.push({
text: L._('Edit this feature') + ' (⇧-click)', text: L._('Edit this feature') + ' (⇧+click)',
callback: this.edit, callback: this.edit,
context: this, context: this,
iconCls: 'umap-edit', iconCls: 'umap-edit',
@ -401,7 +401,7 @@ L.U.FeatureMixin = {
} }
items = items.concat( items = items.concat(
{ {
text: L._("Edit feature's layer") + ' (Ctrl-⇧-click)', text: L._("Edit feature's layer") + ' (Ctrl+⇧+click)',
callback: this.datalayer.edit, callback: this.datalayer.edit,
context: this.datalayer, context: this.datalayer,
iconCls: 'umap-edit', iconCls: 'umap-edit',