I need to localize a Javascript source file, and after looking for a bit, I decided to use Jed (side question: you can use it without having to use node.js, right? It wasn't clear to me reading the docs). I went through my JS files and changed all the strings that needed localizing from:
var title = "Bla bla bla";
To:
var title = i18n.translate("Bla bla bla").fetch();
Then I opened poEdit (version 1.7.4), created a new catalog, and in the keywords section, added:
translate(
i18n.translate
I then ran "Update from sources"... and poEdit doesn't find anything.
What am I doing wrong?