-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
msgmerge not updating PO files #17
Comments
Does the executed script match exactly the command you've tried manually? My only thought is that the values of (Clutching at straws, to be honest, because I can't replicate the issue. I've not tested it on Windows, so there's every possibility it is related to the operating system - but I would have expected an error message in such instance). |
Hi @stephenharris, thanks for answering! Yes, the command I tried is exactly the same that your task "pot.js" file should be executing. I know that because I outputted Just for testing purposes, I have tried the solution that @tivnet proposes in issue #11... and it worked! So my guess the issue comes from Thanks Stephen! |
We are having this exact issue on MacOS but only with one project where we can't figure out what's different (compared to others). |
Hi @stephenharris!
great plugin! I'm just having trouble updating .PO files. I set
msgmerge: true
but no update is happening.GNU gettext tools are in my system (Windows 8.1) and in PATH.
I added some log messages to your "pot.js" file so I can trace if execution goes through your code... and it does! But
exec( 'msgmerge -U ' + poFile + ' ' + potFile, function(error, stdout, stderr) {} );
seems to do nothing.No error is thrown and the process finishes with an exit code of 0.
If I manually execute the command
msgmerge -U fileNme.po fileName.pot
from Win command line... it works, .PO files get updated.Any idea what I'm missing??
Thank you very much!
The text was updated successfully, but these errors were encountered: