Parse and serialize Gettext PO files.
Go to file
Mike Holly f7d70f302b Merge pull request #5 from elewinso/master
added support for CRLF files - window style
2013-10-31 07:02:48 -07:00
lib Merge pull request #5 from elewinso/master 2013-10-31 07:02:48 -07: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 Correct package name in example. 2013-07-29 11:49:59 +02:00

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!');
  });
});