Use ⇧ instead of Shift in help messages
This commit is contained in:
parent
58cf784b7e
commit
6642d4a4f4
2 changed files with 3 additions and 3 deletions
|
@ -172,7 +172,7 @@ L.U.ToggleEditAction = L.U.BaseFeatureAction.extend({
|
|||
options: {
|
||||
toolbarIcon: {
|
||||
className: 'umap-toggle-edit',
|
||||
tooltip: L._('Toggle edit mode (Shift+Click)'),
|
||||
tooltip: L._('Toggle edit mode (⇧+Click)'),
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
@ -393,7 +393,7 @@ L.U.FeatureMixin = {
|
|||
let items = ['-']
|
||||
if (this.map.editedFeature !== this) {
|
||||
items.push({
|
||||
text: L._('Edit this feature') + ' (Shift-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-Shift-click)',
|
||||
text: L._("Edit feature's layer") + ' (Ctrl-⇧-click)',
|
||||
callback: this.datalayer.edit,
|
||||
context: this.datalayer,
|
||||
iconCls: 'umap-edit',
|
||||
|
|
Loading…
Reference in a new issue