potranslator icon indicating copy to clipboard operation
potranslator copied to clipboard

Translation of an exiting .po file

Open nad2000 opened this issue 4 years ago • 2 comments

I am using Django i18n support that generates .po files for target language directly from the app templates and .py. There are no intermediate .pot files ... Is there a simple way to update already created .po with auto-translations? Thank you!

#question

nad2000 avatar May 05 '20 10:05 nad2000

Maybe it is too late to answer for you but someone else may get help from this. I had a similar situation, but I was able to generate the pot files with make gettext command. It generates a folder with the pot files.

carlos-da-costa avatar Dec 03 '20 14:12 carlos-da-costa

I also use django and you can just use the pot file makemessages generates

./manage.py makemessages -l de --keep-pot

ChristophRob avatar Nov 09 '21 12:11 ChristophRob