Metadata: Improve CLI command descriptions #1736

This commit is contained in:
Michael Mayer
2021-11-18 03:02:10 +01:00
parent 73ffa53397
commit 9da2e92fb6
12 changed files with 18 additions and 19 deletions

View File

@@ -18,7 +18,7 @@ import (
// ResetCommand resets the index and removes sidecar files after confirmation.
var ResetCommand = cli.Command{
Name: "reset",
Usage: "Resets the index and removes JSON / YAML sidecar files",
Usage: "Resets the index and removes generated sidecar files",
Action: resetAction,
}
@@ -27,7 +27,7 @@ func resetAction(ctx *cli.Context) error {
log.Warnf("YOU ARE ABOUT TO RESET THE INDEX AND REMOVE ALL JSON / YAML SIDECAR FILES")
removeIndexPrompt := promptui.Prompt{
Label: "Reset index database incl all albums and metadata?",
Label: "Reset index database including albums and metadata?",
IsConfirm: true,
}