UX: Rename "path" to "folder"

See https://twitter.com/browseyourlife/status/1258330913991208960

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer
2020-05-07 12:49:06 +02:00
parent 38fe8277fa
commit c318d22ca7
7 changed files with 10 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ import (
var ImportCommand = cli.Command{
Name: "import",
Aliases: []string{"mv"},
Usage: "Moves files to originals path, converts and indexes them as needed",
Usage: "Moves files to originals folder, converts and indexes them as needed",
Action: importAction,
}
@@ -61,7 +61,7 @@ func importAction(ctx *cli.Context) error {
}
if sourcePath == conf.OriginalsPath() {
return errors.New("import path is identical with originals path")
return errors.New("import folder is identical with originals")
}
log.Infof("moving media files from %s to %s", sourcePath, conf.OriginalsPath())