0.0.4 • Published 7 years ago

node-checktextdomain v0.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

NPM version code style: prettier

node-checktextdomain

Checks and corrects incorrect gettext functions and text domains.

Getting Started

npm install node-checktextdomain --D
const checktextdomain = require('node-checktextdomain');

//checktextdomain(glob pattern, config);
const errors = checktextdomain('twentyseventeen/**/*.php', config);
const default_config = {
    text_domain: null,
	keywords: [
		'__:1,2d',
		'_e:1,2d',
		'_x:1,2c,3d',
		'esc_html__:1,2d',
		'esc_html_e:1,2d',
		'esc_html_x:1,2c,3d',
		'esc_attr__:1,2d',
		'esc_attr_e:1,2d',
		'esc_attr_x:1,2c,3d',
		'_ex:1,2c,3d',
		'_n:1,2,4d',
		'_nx:1,2,4c,5d',
		'_n_noop:1,2,3d',
		'_nx_noop:1,2,3c,4d',
	],
	correct_domain: false, // set true to fix text domains
	encoding: 'utf-8',
}
0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago