2022-08-13 07:46:56 +02:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
2022-08-20 05:04:29 +02:00
|
|
|
LANGUAGES="fr es"
|
2022-08-13 07:46:56 +02:00
|
|
|
# Extract and update translation files
|
2022-08-20 05:04:29 +02:00
|
|
|
for LANGUAGE in $LANGUAGES; do
|
|
|
|
php bin/console translation:extract --dump-messages $LANGUAGE
|
|
|
|
php bin/console translation:extract --force $LANGUAGE
|
|
|
|
done
|