How can I use PHP's gettext in conjunction with python's gettext?
- by dd
I have an app that I'm migrating portions of to Django, but python and php have a different string format. E.g.
"Hello %1s" in php vs. "Hello {0}" or "Hello {name}" in python.
We'll be maintaining both apps for a while, but is there a way to use the python format in PHP or vice versa?