Is there way of creating empty .mo file? Usually when starting new project I get stuck with this when there's no need for translations yet.
I tried this with no luck:
msgfmt /dev/null --output-file foo.mo
Is there way of creating empty .mo file? Usually when starting new project I get stuck with this when there's no need for translations yet.
I tried this with no luck:
msgfmt /dev/null --output-file foo.mo
Got it.
xgettext --force-po -f /dev/null -o foo.po
msgfmt foo.po --output-file foo.mo