Julen
Julen
I was hitting the same issue and @eyesofkids' workaround works perfectly (thank you!). After having the workaround in place, I was diving into React's source code to at least try...
The workaround suddenly broke in Chrome 53+ and it seems it is not valid anymore because [they changed the order `compositionend` is fired](https://chromium.googlesource.com/chromium/src/+/afce9d93e76f2ff81baaa088a4ea25f67d1a76b3%5E%21/): previously it happened before `textInput`, now after...
That's been available since Django 1.9, it was https://code.djangoproject.com/ticket/15053
I'm almost certainly sure the code for L20N support can be considered dead, because [L20N is deprecated](https://github.com/l20n) on its own (later on superseded by [Fluent](https://projectfluent.org/)). Likewise, given that Mozilla is...
@unho that's used in Virtaal for its local TM feature.
`translate.storage.versioncontrol` looks dead to me too — this was used in past versions of Pootle for implementing VCS integration.
Gettext is a bilingual format (as opposed to Java properties), so what you get is expected and totally fine.
What you just did above converts .properties to .po; isn't that what you are looking for? As said, Gettext is a bilingual format, if you expect monolingual format behavior (key...
cc @friedelwolff just in case.
I tried with the simplest snippet I could come up with using `noteStore.getNoteWithResultSpec()`: ```js var Evernote = require('evernote'); var TOKEN = ''; var noteGUID = ''; var client = new...