Parse and serialize Gettext PO files.
6b2cb2e71e
This will massively shrink the browserified footprint. |
||
---|---|---|
lib | ||
test | ||
tests | ||
.gitignore | ||
.jshintrc | ||
.travis.yml | ||
Gruntfile.coffee | ||
LICENSE | ||
package.json | ||
README.md |
Used to load and save PO files.
var po = require('node-po')
, fs = require('fs')
po.load('text.po', function(_po){
console.log(_po.headers);
console.log(_po.items);
_po.save('copy.po', function(){
console.log('We copied a PO file for no reason!');
});
});