Pomo
Pomo copied to clipboard
Pomo is a JS implementation of GNU gettext in a compact module; it reads PO files, eventually MO files, and can load them from AJAX, special <link> tags and literal strings
Variables do not work when returnStrings = true is set. See the following minimal example: ``` javascript let po = 'msgid "foo %d"\nmsgstr "bar %d"\n'; Pomo.load(po, { format: 'po', mode:...
I tried to get a context message and found it. ``` --- a/src/dist/pomo.js +++ b/src/dist/pomo.js @@ -854,8 +854,8 @@ var Pomo = function () { var entry = me.storage.contents[domain][escaped]; if...
# Translations of aaaa aa module # msgid "" msgstr "" "Project-Id-Version: aa:aa (7.x-3.12)\n" "POT-Creation-Date: 2015-06-30 01:28+0000\n" "PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n" "Language-Team: aaaa aaa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n"...
It currently says it cannot load them from the relative path it is attempting to. It should be able to without much issue, but I currently do not really have...