pages/gen_translations.sh

16 lines
266 B
Bash
Raw Permalink Normal View History

2023-05-14 18:49:11 +00:00
#!/bin/bash
2023-05-14 18:38:00 +00:00
cd content
for lang in de es fr ru
do
for file in _index help/openai help/hugginface
do
echo "Generating $lang/${file}.md"
2023-05-14 19:36:20 +00:00
~/.local/bin/md2po "${file}.md" -p "$lang/${file}.md.po" --save "$lang/${file}.md"
2023-05-14 18:38:00 +00:00
done
done
2023-05-14 18:49:11 +00:00
2023-05-14 19:14:02 +00:00
cd ..