Parse and serialize Gettext PO files.
Go to file
2013-09-12 14:01:37 +03:00
lib added support for CRLF files - window style 2013-09-12 14:01:37 +03: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!');
  });
});