diff --git a/data/core.yaml b/data/core.yaml index 71957c05f..497f81ebb 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -2213,6 +2213,7 @@ en: feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." fields_info: "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure." add_name: "Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe.**" + add_reminder: "All entered information should be objective and verifiable." add_close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, press the {button} button or `{esc}` to close the feature editor.**" reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details.**" diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 0e40c9403..c104ca617 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -215,7 +215,7 @@ export function uiIntroPoint(context, reveal) { // reset pane, in case user happened to change it.. context.container().select('.inspector-wrap .panewrap').style('right', '0%'); - var addNameString = helpHtml('intro.points.fields_info') + '{br}' + helpHtml('intro.points.add_name'); + var addNameString = helpHtml('intro.points.fields_info') + '{br}' + helpHtml('intro.points.add_name') + '{br}' + helpHtml('intro.points.add_reminder'); timeout(function() { // It's possible for the user to add a name in a previous step..