Parse and serialize Gettext PO files.
Go to file
Mike Holly e964e6e927 Merge pull request #8 from saelfaer/master
Update parsing of headers
2013-10-31 07:01:13 -07:00
lib Update parsing of headers 2013-10-31 14:13:25 +01:00
tests Fixed msgid_plural error 2012-01-15 11:31:07 -08:00
LICENSE Initial commit 2011-12-21 22:50:01 -08:00
package.json Fixed export bug. 2012-01-02 16:06:32 -08:00
README.md Added an example to the readme 2011-12-27 12:03:19 -08:00

Used to load and save PO files.

var po = require('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!');
  });
});