├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── bin ├── php │ ├── add-textdomain.php │ ├── extract.php │ ├── makepot.php │ ├── node-add-textdomain.php │ ├── node-makepot.php │ ├── not-gettexted.php │ ├── pomo │ │ ├── entry.php │ │ ├── mo.php │ │ ├── plural-forms.php │ │ ├── po.php │ │ ├── streams.php │ │ └── translations.php │ └── pot-ext-meta.php └── wpi18n ├── docs └── cli.txt ├── index.js ├── lib ├── addtextdomain.js ├── makepot.js ├── msgmerge.js ├── package.js ├── pot.js └── util.js ├── package.json └── test ├── addtextdomain.js ├── fixtures ├── makepot │ ├── basic-plugin │ │ └── basic-plugin.php │ ├── nested-theme │ │ ├── include │ │ │ └── include.php │ │ └── subdir │ │ │ ├── index.php │ │ │ └── style.css │ └── plugin-with-pot │ │ ├── plugin-with-pot.php │ │ └── plugin-with-pot.pot ├── msgmerge │ ├── msgmerge-en_GB.po │ ├── msgmerge-nl_NL.po │ └── msgmerge.pot ├── packages │ ├── plugins │ │ ├── basic-plugin │ │ │ └── basic-plugin.php │ │ ├── different-slug │ │ │ └── plugin.php │ │ ├── invalid-plugin │ │ │ └── invalid-plugin.php │ │ └── plugin-headers │ │ │ └── plugin-headers.php │ └── themes │ │ ├── basic-theme │ │ ├── index.php │ │ └── style.css │ │ ├── nested-theme │ │ └── src │ │ │ ├── index.php │ │ │ └── style.css │ │ └── svn-theme │ │ └── tags │ │ └── 1.0.0 │ │ ├── index.php │ │ └── style.css └── pot │ ├── basic.pot │ └── save.pot ├── makepot.js ├── msgmerge.js ├── package.js ├── pot.js └── util.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/README.md -------------------------------------------------------------------------------- /bin/php/add-textdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/add-textdomain.php -------------------------------------------------------------------------------- /bin/php/extract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/extract.php -------------------------------------------------------------------------------- /bin/php/makepot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/makepot.php -------------------------------------------------------------------------------- /bin/php/node-add-textdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/node-add-textdomain.php -------------------------------------------------------------------------------- /bin/php/node-makepot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/node-makepot.php -------------------------------------------------------------------------------- /bin/php/not-gettexted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/not-gettexted.php -------------------------------------------------------------------------------- /bin/php/pomo/entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/entry.php -------------------------------------------------------------------------------- /bin/php/pomo/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/mo.php -------------------------------------------------------------------------------- /bin/php/pomo/plural-forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/plural-forms.php -------------------------------------------------------------------------------- /bin/php/pomo/po.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/po.php -------------------------------------------------------------------------------- /bin/php/pomo/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/streams.php -------------------------------------------------------------------------------- /bin/php/pomo/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pomo/translations.php -------------------------------------------------------------------------------- /bin/php/pot-ext-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/php/pot-ext-meta.php -------------------------------------------------------------------------------- /bin/wpi18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/bin/wpi18n -------------------------------------------------------------------------------- /docs/cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/docs/cli.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/index.js -------------------------------------------------------------------------------- /lib/addtextdomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/addtextdomain.js -------------------------------------------------------------------------------- /lib/makepot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/makepot.js -------------------------------------------------------------------------------- /lib/msgmerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/msgmerge.js -------------------------------------------------------------------------------- /lib/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/package.js -------------------------------------------------------------------------------- /lib/pot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/pot.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/package.json -------------------------------------------------------------------------------- /test/addtextdomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/test/addtextdomain.js -------------------------------------------------------------------------------- /test/fixtures/makepot/basic-plugin/basic-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/node-wp-i18n/HEAD/test/fixtures/makepot/basic-plugin/basic-plugin.php -------------------------------------------------------------------------------- /test/fixtures/makepot/nested-theme/include/include.php: -------------------------------------------------------------------------------- 1 |