Skip to content

Commit

Permalink
Rename "Edit Features" to "Multiple Selection"
Browse files Browse the repository at this point in the history
This is a minor change in wording, but want to set us up to be able
to do more interesting things with multiple selections.
  • Loading branch information
bhousel committed Aug 25, 2021
1 parent ea5b1d5 commit c129671
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions data/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@ en:
live: live
lose_changes: "You have unsaved changes. Switching the map server will discard them. Are you sure you want to switch servers?"
dev: dev
rapid_multiselect: Multiple Selection
rapid_splash:
welcome: Introducing AI-assisted mapping!
text: "Select the {rapidicon} option to start the RapiD walkthrough. If you're new to OSM and haven't mapped before, select the first {walkthrough} option. Finally, click the last {edit} option if you want to get straight to mapping. You can always access the walkthrough later from the help menu."
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/entity_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function uiEntityEditor(context) {
.merge(headerEnter);

header.selectAll('h3')
.html(_entityIDs.length === 1 ? t.html('inspector.edit') : t.html('inspector.edit_features'));
.html(_entityIDs.length === 1 ? t.html('inspector.edit') : t.html('rapid_multiselect'));

header.selectAll('.preset-reset')
.on('click', function() {
Expand Down

0 comments on commit c129671

Please sign in to comment.