You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 31, 2019. It is now read-only.
Hi,
i have some request for the "autovala po" command, now the command executed to generate the pot file is; xgettext --from-code=UTF-8 -d wifi-qrcode -o wifi-qrcode.pot -p po --keyword='_' --add-comments=Translators -f po/POTFILES.in
can you add same options to the xgettext command with the relative tags in the avprj file?
The options --> tags to add are the seguent:
--package-name= --> project_name (already existing in avrpj)
--package-version= --> version (already existing in avrpj)
--copyright-holder= --> po_copyright_holder
--msgid-bugs-address= --> po_msgid_bugs_address
to have a command like this and a more complete pot file:
Hi,
i have some request for the "autovala po" command, now the command executed to generate the pot file is;
xgettext --from-code=UTF-8 -d wifi-qrcode -o wifi-qrcode.pot -p po --keyword='_' --add-comments=Translators -f po/POTFILES.incan you add same options to the xgettext command with the relative tags in the avprj file?
The options --> tags to add are the seguent:
to have a command like this and a more complete pot file:
xgettext --from-code=UTF-8 -d wifi-qrcode -o wifi-qrcode.pot -p po --keyword='_' --add-comments=Translators -f po/POTFILES.in --copyright-holder="Copyright Info" --package-name=wifi-qrcode --package-version=0.20 --msgid-bugs-address=www.mybugzilla.bugThe xgettext option are explained in this page:
https://www.gnu.org/software/gettext/manual/html_node/xgettext-Invocation.html
thanks