grunt-pot
grunt-pot copied to clipboard
Scan files and creates a .pot file using xgettext
Nothing abnormal going in here. ``` pot: { build: { options: { text_domain: text_domain, dest: 'build/languages/', keywords: ['gettext', '__', '_e'] }, files: { src: ['build/**'], expand: true } } }...
Hi Stephen @stephenharris , I wasn't able to run the msgmerge from within the `pot`. Running it manually from the shell worked fine, but not from Grunt. The patch below...
These two options require quoting; Windows only knows about double quotes for that. The task consequently fails with "unable to find file" returned from xgettext
I tried to run grunt pot on windows more than once but failed, the result was https://www.dropbox.com/s/w1q1nzddbla1zsz/grunt-pot.png?dl=0
Being able to customize these lines from the header of the .pot file through options would be nice: `````` # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT...