├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── History.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── bin └── po2json ├── bower.json ├── index.js ├── lib ├── parse.js ├── parse.test.js ├── parseFile.js ├── parseFile.test.js ├── parseFileSync.js └── parseFileSync.test.js ├── package.json └── test └── fixtures ├── en-empty.json ├── en-empty.po ├── en-mf-fallback-to-msgid.json ├── en-no-header.json ├── en-no-header.po ├── es-context-jed.json ├── es-context-jedold.json ├── es-context-mf.json ├── es-context.json ├── es-context.po ├── ja-jed.json ├── ja.json ├── ja.po ├── pl-jed.json ├── pl-jedold.json ├── pl-mf-full.json ├── pl-mf.json ├── pl.json └── pl.po /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | 4 | #IDEs 5 | .idea 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/AUTHORS -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/History.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/README.md -------------------------------------------------------------------------------- /bin/po2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/bin/po2json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/bower.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/index.js -------------------------------------------------------------------------------- /lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parse.js -------------------------------------------------------------------------------- /lib/parse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parse.test.js -------------------------------------------------------------------------------- /lib/parseFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parseFile.js -------------------------------------------------------------------------------- /lib/parseFile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parseFile.test.js -------------------------------------------------------------------------------- /lib/parseFileSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parseFileSync.js -------------------------------------------------------------------------------- /lib/parseFileSync.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/lib/parseFileSync.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/en-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/en-empty.json -------------------------------------------------------------------------------- /test/fixtures/en-empty.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/en-empty.po -------------------------------------------------------------------------------- /test/fixtures/en-mf-fallback-to-msgid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/en-mf-fallback-to-msgid.json -------------------------------------------------------------------------------- /test/fixtures/en-no-header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/en-no-header.json -------------------------------------------------------------------------------- /test/fixtures/en-no-header.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/en-no-header.po -------------------------------------------------------------------------------- /test/fixtures/es-context-jed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/es-context-jed.json -------------------------------------------------------------------------------- /test/fixtures/es-context-jedold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/es-context-jedold.json -------------------------------------------------------------------------------- /test/fixtures/es-context-mf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/es-context-mf.json -------------------------------------------------------------------------------- /test/fixtures/es-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/es-context.json -------------------------------------------------------------------------------- /test/fixtures/es-context.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/es-context.po -------------------------------------------------------------------------------- /test/fixtures/ja-jed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/ja-jed.json -------------------------------------------------------------------------------- /test/fixtures/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/ja.json -------------------------------------------------------------------------------- /test/fixtures/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/ja.po -------------------------------------------------------------------------------- /test/fixtures/pl-jed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl-jed.json -------------------------------------------------------------------------------- /test/fixtures/pl-jedold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl-jedold.json -------------------------------------------------------------------------------- /test/fixtures/pl-mf-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl-mf-full.json -------------------------------------------------------------------------------- /test/fixtures/pl-mf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl-mf.json -------------------------------------------------------------------------------- /test/fixtures/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl.json -------------------------------------------------------------------------------- /test/fixtures/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeedwards/po2json/HEAD/test/fixtures/pl.po --------------------------------------------------------------------------------