Aarni Koskela

Results 589 comments of Aarni Koskela
trafficstars

```jinja {% trans %}Lecture {{ article.readtime.minutes }}mn{% endtrans %} ``` is indeed wrong – as [described in the documentation for Jinja's i18n tags](https://jinja.palletsprojects.com/en/stable/templates/#i18n), you would need to bind any "complex"...

A PR to get the plural forms from the CLDR would be welcome! It would be grand to see a diff between the old and new entries, too.

Come to think of it, this paves the way nicely for https://github.com/python-babel/babel/issues/30; we can now derive a `FuzzyLocale` class or similar that doesn't validate as strictly. :)

Moved this out of the next point release due to the warning above.

@mitsuhiko: Would you have time to give this a look? :)

This will probably need some rethinking wrt fuzzy locale support...

@JonathanRRogers Hey, sorry for the delay with the patch :crying_cat_face: This looks mostly like a nice patch, though adding an additional return value to extractors should probably be dealt with...

Hey and sorry it's taken us ages to get back to this PR. 😞 Anyway I'm thinking we could do better here – what if we import the lossless, detailed...

Hi @stkao05 – #832 landed today, so this would need to be rebased :)

Interesting! Do you have any benchmarks as to how much memory this is actually saving? Also, dunno if it'd help, but there's the [`sys.intern()`](https://docs.python.org/3.6/library/sys.html#sys.intern) function too.