Branch of from node-po.

This commit is contained in:
Ruben Vermeersch 2013-12-20 09:34:21 +01:00
parent 363ed2c791
commit d4c406e7f6
2 changed files with 19 additions and 5 deletions

View File

@ -1,7 +1,7 @@
Used to load and save PO files.
```js
var PO = require('node-po');
var PO = require('pofile');
PO.load('text.po', function (err, po) {
// Handle err if needed
@ -14,3 +14,7 @@ PO.load('text.po', function (err, po) {
});
});
```
## Credits
Originally based on node-po (written by Michael Holly).

View File

@ -1,12 +1,19 @@
{
"name": "node-po",
"name": "pofile",
"description": "Parse and serialize Gettext PO files.",
"version": "0.1.1",
"author": "Mike Holly",
"homepage": "http://github.com/mikejholly/node-po",
"author": {
"name": "Ruben Vermeersch",
"email": "ruben@savanne.be",
"url": "http://savanne.be/"
},
"contributors": [
"Mike Holly"
],
"homepage": "http://github.com/rubenv/pofile",
"repository": {
"type": "git",
"url": "http://github.com/mikejholly/node-po.git"
"url": "http://github.com/rubenv/pofile.git"
},
"main": "./lib/po",
"keywords": [
@ -19,6 +26,9 @@
"scripts": {
"test": "grunt test"
},
"directories": {
"test": "test"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",