Set the locale negotiator for the current configurator to support localization of text.
negotiator
The dotted Python name to a locale negotiator implementation. This attribute is required. If it begins with a dot (.), the name will be considered relative to the directory in which the ZCML file which contains this directive lives.
1 2 3 | <localenegotiator
negotiator="some.package.module.my_locale_negotiator"
/>
|
Use pyramid.config.Configurator.set_locale_negotiator() method instance during initial application setup.
See also activating_translation.