From 9e2f9e03247ff818517e3155fa9c1e756e64aa4e Mon Sep 17 00:00:00 2001 From: Deeptanshu Sankhwar <31755863+Deeptanshu-sankhwar@users.noreply.github.com> Date: Wed, 11 Dec 2024 07:06:28 -0700 Subject: [PATCH] add a short reminder for data being objective during the walkthrough, fixes #10566 (#10568) --- data/core.yaml | 1 + modules/ui/intro/point.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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..