Skip to content

Latest commit

 

History

History

babel-plugin-makepot

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Babel Plugin Makepot

Babel plugin used to scan JavaScript files for use of localization functions. It then compiles these into a gettext POT formatted file as a template for translation. By default the output file will be written to gettext.pot of the root project directory. This can be overridden using the "output" option of the plugin.

{
	"plugins": [
		[
			"@wordpress/babel-plugin-makepot",
			{ "output": "languages/myplugin.pot" }
		]
	]
}

Installation

Install the module:

npm install @wordpress/babel-plugin-makepot --save-dev

Note: This package requires Node.js 12.0.0 or later. It is not compatible with older versions.



Code is Poetry.