From a41905e9e8f19bce99466922ee25fef430ae59f2 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Tue, 1 Aug 2023 11:34:15 +0300 Subject: [PATCH] docs: add examples for the 'crowdin download' command --- website/mantemplates/crowdin-download.adoc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/website/mantemplates/crowdin-download.adoc b/website/mantemplates/crowdin-download.adoc index 67416ec75..7ed097109 100644 --- a/website/mantemplates/crowdin-download.adoc +++ b/website/mantemplates/crowdin-download.adoc @@ -18,3 +18,18 @@ include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-footer] === Notes - `-l`, `--language=language_code` - defines the language translations that should be downloaded from Crowdin. By default, translations are downloaded for all project's target languages. link:https://developer.crowdin.com/language-codes/[Crowdin Language Codes]. + +=== Examples + +Download multiple languages: + +---- +crowdin download -l de -l fr -l it +crowdin download --language=de --language=fr --language=it +---- + +Download all translations even if the corresponding source files are missing locally: + +---- +crowdin download --all +----