From f8cef71eedb3ad5a6e8f4c87db7537b4ac3efedd Mon Sep 17 00:00:00 2001 From: Bruce Martin Date: Tue, 26 Nov 2019 13:35:01 -0800 Subject: [PATCH] help text changes (#1061) * requested CLI help changes for launch sub-command * update file name prose * more wording changes * more PR requests --- client/src/components/autosave/filenameDialog.js | 9 ++++++--- server/cli/launch.py | 8 ++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/client/src/components/autosave/filenameDialog.js b/client/src/components/autosave/filenameDialog.js index b6e06a49..e8fb5c0d 100644 --- a/client/src/components/autosave/filenameDialog.js +++ b/client/src/components/autosave/filenameDialog.js @@ -74,7 +74,7 @@ class FilenameDialog extends React.Component { color: Colors.ORANGE3 }} > - {"Filename cannot be blank"} + {"Name cannot be blank"} ); } else if (err === "characters") { @@ -115,7 +115,7 @@ class FilenameDialog extends React.Component { >
-

Name your collection of user generated annotations:

+

Name your annotations collection:

- You can find your collection at:{" "} + Your annotations are stored in this file: {filenameText}-{idhash}.csv

+

+ (We added a unique ID to your filename) +

diff --git a/server/cli/launch.py b/server/cli/launch.py index 5cf50e51..1226098f 100644 --- a/server/cli/launch.py +++ b/server/cli/launch.py @@ -82,16 +82,16 @@ def common_args(func): show_default=True, multiple=False, metavar="", - help="CSV file containing user annotations; will be overwritten. Created if does not exist.",) + help="CSV file to initialize editing of existing annotations; will be altered in-place. " + "Incompatible with --annotations-output-dir.",) @click.option( "--experimental-annotations-output-dir", default=None, show_default=False, multiple=False, metavar="", - help="Directory where annotation CSV files will be written (directory must exist). " - "Defaults to current directory.", - ) + help="Directory of where to save output annotations; filename will be specified in the application. " + "Incompatible with --annotations-input-file.",) @click.option( "--backed", "-b",