help text changes (#1061)

* requested CLI help changes for launch sub-command

* update file name prose

* more wording changes

* more PR requests
This commit is contained in:
Bruce Martin
2019-11-26 13:35:01 -08:00
committed by GitHub
parent bb3032ea2f
commit f8cef71eed
2 changed files with 10 additions and 7 deletions

View File

@@ -74,7 +74,7 @@ class FilenameDialog extends React.Component {
color: Colors.ORANGE3
}}
>
{"Filename cannot be blank"}
{"Name cannot be blank"}
</span>
);
} else if (err === "characters") {
@@ -115,7 +115,7 @@ class FilenameDialog extends React.Component {
>
<div className={Classes.DIALOG_BODY}>
<div style={{ marginBottom: 20 }}>
<p>Name your collection of user generated annotations:</p>
<p>Name your annotations collection:</p>
<InputGroup
autoFocus
value={filenameText}
@@ -137,11 +137,14 @@ class FilenameDialog extends React.Component {
</div>
<div>
<p>
You can find your collection at:{" "}
Your annotations are stored in this file:
<code className="bp3-code">
{filenameText}-{idhash}.csv
</code>
</p>
<p style={{ fontStyle: "italic" }}>
(We added a unique ID to your filename)
</p>
</div>
</div>
<div className={Classes.DIALOG_FOOTER}>

View File

@@ -82,16 +82,16 @@ def common_args(func):
show_default=True,
multiple=False,
metavar="<path>",
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="<directory path>",
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",