CLI tool that fetches strings from a json file and turns them into a .po file
- well, it gives you the copypasteable contents
npm install popotter -g
you can also import it as a library and feed it json strings
const popotter = require('popotter');
const strings = popotter({
"hello": "Welcome to App™",
"body": "⚡️ Please have fun using App 🌈"
})
console.log(strings);