JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<script src="http://hastebin.com/raw/cocidunapu.js"></script>

JavaScript

var i18n = new Jed({
    // Generally output by a .po file conversion
    locale_data: {
        "messages": {
            "": {
                "domain": "messages",
                "lang": "en",
                "plural_forms": "nplurals=2; plural=(n != 1);"
            },
            "some key": [null, "some value"]
        }
    },
    "domain": "messages"
});

$('body').text( i18n.gettext("some key") );