2011-12-22 16:21:27 -08:00
|
|
|
Used to load and save PO files.
|
|
|
|
|
2013-07-29 11:49:59 +02:00
|
|
|
var po = require('node-po')
|
2011-12-27 12:03:19 -08:00
|
|
|
, 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!');
|
|
|
|
});
|
|
|
|
});
|
2013-07-29 11:49:59 +02:00
|
|
|
|