mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-04 07:27:42 +00:00
41 lines
941 B
Bash
Executable File
41 lines
941 B
Bash
Executable File
#!/bin/bash
|
|
|
|
no_pub_get=false
|
|
|
|
while getopts 's' flag; do
|
|
case "${flag}" in
|
|
s) no_pub_get=true ;;
|
|
esac
|
|
done
|
|
|
|
echo "Generating language files"
|
|
|
|
# Store the current working directory
|
|
original_dir=$(pwd)
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Navigate to the project root
|
|
cd ../../../appflowy_flutter
|
|
|
|
# copy the resources/translations folder to
|
|
# the appflowy_flutter/assets/translation directory
|
|
rm -rf assets/translations/
|
|
mkdir -p assets/translations/
|
|
cp -f ../resources/translations/*.json assets/translations/
|
|
|
|
if [ "$no_pub_get" = false ]; then
|
|
flutter packages pub get
|
|
fi
|
|
|
|
echo "Specifying source directory for AppFlowy Localizations."
|
|
dart run easy_localization:generate -S assets/translations/
|
|
|
|
echo "Generating language files for AppFlowy."
|
|
dart run easy_localization:generate -f keys -o locale_keys.g.dart -S assets/translations/ -s en.json
|
|
|
|
echo "Done generating language files."
|
|
|
|
# Return to the original directory
|
|
cd "$original_dir"
|