Unverified Commit b7598204 authored by Gaia Castronovo's avatar Gaia Castronovo Committed by GitHub

[skip changelog] Use correct plurality for word in error message (#1954)

The `lib search` command accepts search keywords as an argument. All libraries with metadata within the search scope
matching those keywords will be returned.

Previously, the error message used the singular form "library". Since the command is as likely to be used to search for
libraries, using the plural form "libraries" is more appropriate.

Users opened a task inside Transifex requesting this change.
Co-authored-by: default avatarper1234 <accounts@perglass.com>
parent 13f22553
......@@ -76,7 +76,7 @@ func runSearchCommand(cmd *cobra.Command, args []string) {
Query: (strings.Join(args, " ")),
})
if err != nil {
feedback.Errorf(tr("Error searching for Library: %v"), err)
feedback.Errorf(tr("Error searching for Libraries: %v"), err)
os.Exit(errorcodes.ErrGeneric)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment