Yes, Python .26 is only supported by TG 1.1.
> I have a problem with i18n now. The applications still uses kid, so
> I checked that the config has the at least following settings:
> Still, the static strings inside of my kid-templates won't be
> translated at all.
I just checked this. It seems that the new template engine option
loading introduced an unintended change, which breaks i18n for kid, if
you configure it according to the documentation.
> tg.defaultview = "kid"
> session_filter.on = True
> i18n.run_template_filter = True
> i18n.default_locale = "en"
For now, you need to add
kid.i18n.run_template_filter = True
to your configuration as well, and things should work again. We will fix
this in the next 1.1 release [1] so that the old way of configuring
things works again.
Chris
This is fixed in SVN r6872 now. kid.i18n.run_template_filter now
defaults to True if i18n.run_template_filter is enabled and Kid is
available.
I.e. you can still turn off the translation filter for Kid templates
only, if you set i18n.run_template_filter to True and
kid.i18n.run_template_filter to False in your configuration.
Chris