From 945066809dc18f6e26123098e1b6e1d7a948660b Mon Sep 17 00:00:00 2001 From: Martin Mandl Date: Mon, 3 Jan 2022 20:49:08 +0100 Subject: [PATCH] fixed help text --- Command/TranslationPullCommand.php | 2 +- Command/TranslationPushCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/TranslationPullCommand.php b/Command/TranslationPullCommand.php index 511c7cae..bf0ab656 100644 --- a/Command/TranslationPullCommand.php +++ b/Command/TranslationPullCommand.php @@ -81,7 +81,7 @@ protected function configure() Full example: - php %command.full_name% provider --force --domains=messages,validators --locales=en + php %command.full_name% provider --force --domains=messages --domains=validators --locales=en This command pulls all translations associated with the messages and validators domains for the en locale. Local translations for the specified domains and locale are deleted if they're not present on the provider and overwritten if it's the case. diff --git a/Command/TranslationPushCommand.php b/Command/TranslationPushCommand.php index b28d3e10..ad6b6769 100644 --- a/Command/TranslationPushCommand.php +++ b/Command/TranslationPushCommand.php @@ -79,7 +79,7 @@ protected function configure() Full example: - php %command.full_name% provider --force --delete-missing --domains=messages,validators --locales=en + php %command.full_name% provider --force --delete-missing --domains=messages --domains=validators --locales=en This command pushes all translations associated with the messages and validators domains for the en locale. Provider translations for the specified domains and locale are deleted if they're not present locally and overwritten if it's the case.