diff --git a/src/main/java/com/crowdin/cli/commands/picocli/InitSubcommand.java b/src/main/java/com/crowdin/cli/commands/picocli/InitSubcommand.java index 10cd0f6e..6b5be46e 100644 --- a/src/main/java/com/crowdin/cli/commands/picocli/InitSubcommand.java +++ b/src/main/java/com/crowdin/cli/commands/picocli/InitSubcommand.java @@ -42,7 +42,7 @@ public class InitSubcommand extends GenericActCommand { @CommandLine.Option(names = {"--preserve-hierarchy"}, negatable = true, paramLabel = "...", descriptionKey = "params.preserve-hierarchy", order = -2) private Boolean preserveHierarchy; - @CommandLine.Option(names = "--quite", descriptionKey = "params.quite", order = -2) + @CommandLine.Option(names = "--quiet", descriptionKey = "params.quiet", order = -2) private boolean skipGenerateDescription; protected NewAction getAction(Actions actions) { diff --git a/src/main/resources/messages/messages.properties b/src/main/resources/messages/messages.properties index e09bc4d1..b09f91b0 100755 --- a/src/main/resources/messages/messages.properties +++ b/src/main/resources/messages/messages.properties @@ -24,7 +24,7 @@ params.source=Path to the source files params.translation=Path to the translation files params.dest=Specify file name in Crowdin params.preserve-hierarchy=Choose whether to save the directory hierarchy in the Crowdin project -params.quite=Do not ask for interactive input prompts +params.quiet=Do not ask for interactive input prompts params.skipUntranslatedStrings=Skip untranslated strings in exported files (does not work with .docx, .html, .md and other document files) params.skipUntranslatedFiles=Omit downloading not fully translated files params.keepArchive=Do not remove the downloaded archive with translations after it's extracting diff --git a/website/blog/2024-05-28-cli-v4/index.md b/website/blog/2024-05-28-cli-v4/index.md index ffc94999..db2d2b5b 100644 --- a/website/blog/2024-05-28-cli-v4/index.md +++ b/website/blog/2024-05-28-cli-v4/index.md @@ -136,7 +136,7 @@ The `generate` alias has been removed: +crowdin init ``` -New `quite` option was added to not ask for interactive input prompts. +New `quiet` option was added to not ask for interactive input prompts. ### Lint