mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-20 06:33:38 -04:00
4fa1fbd5e2
Don't show in changelog
29 lines
1.4 KiB
Bash
Executable File
29 lines
1.4 KiB
Bash
Executable File
#Launch this script to generate the .POT file used
|
||
#to update the strings to be translated.
|
||
set -e
|
||
|
||
echo "ℹ️ Listing all GDCore, GDJS and Extensions sources files to translate..."
|
||
|
||
find ../GDJS/GDJS/ -name '*.cpp' | grep -v '/Dialogs/' > /tmp/listfile.txt
|
||
find ../GDJS/GDJS/ -name '*.h' -o -name "*.hpp" | grep -v '/Dialogs/' >> /tmp/listfile.txt
|
||
find ../Extensions/ -name '*.cpp' >> /tmp/listfile.txt
|
||
find ../Extensions/ -name '*.h' -o -name "*.hpp" >> /tmp/listfile.txt
|
||
find ../Extensions/ -name '*.js' | grep -v '.umd.js' | grep -v '.min.js' | grep -v '.benchmark.js' | grep -v '.spec.js' | grep -v 'box2d.js' | grep -v '/node_modules' | grep -v '/bondage.js' | grep -v '/ExampleJsExtension' >> /tmp/listfile.txt
|
||
find ../Core/GDCore -name '*.cpp' | grep -v '/Dialogs/' >> /tmp/listfile.txt
|
||
find ../Core/GDCore -name '*.h' -o -name "*.hpp" | grep -v '/Dialogs/' >> /tmp/listfile.txt
|
||
|
||
echo "ℹ️ Generating .POT file..."
|
||
if type xgettext 2>/dev/null; then
|
||
GETTEXT=xgettext
|
||
else
|
||
GETTEXT=$(find /usr -name "xgettext" -print -quit 2>/dev/null)
|
||
fi
|
||
|
||
if type $GETTEXT 2>/dev/null; then
|
||
$GETTEXT --from-code utf-8 -o gdcore-gdcpp-gdjs-extensions-messages.pot --keyword=GD_T --no-wrap -f /tmp/listfile.txt -k_
|
||
echo "ℹ️ Translation file 'gdcore-gdcpp-gdjs-extensions-messages.pot' generated and ready to be sent to Crowdin or used in a translation software like PoEdit."
|
||
else
|
||
echo "❌ Unable to find xgettext on your system."
|
||
exit 1
|
||
fi
|