{"library":"po-gettext-loader","title":"po-gettext-loader","description":"A webpack loader that converts GNU gettext PO files to JSON using gettext-parser. Version 1.0.0 is the latest stable release, published once. It integrates into webpack build pipelines for i18n workflows, outputting JSON that can be further processed by json-loader. Simpler than using gettext tools directly, but has no active maintenance or updates. Differentiates by offering a direct Webpack integration without additional configuration.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install po-gettext-loader"],"cli":null},"imports":["import PoGettextLoader from 'po-gettext-loader'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.po$/,\n        use: [\n          { loader: 'json-loader' },\n          { loader: 'po-gettext-loader' }\n        ]\n      }\n    ]\n  }\n};\n// Then import .po files:\nimport translations from './messages.po';","lang":"javascript","description":"Shows webpack configuration to load .po files, converting them to JSON then bundling.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}