Locale display names with inheritable data.
Examples:
>>> from zope.i18n.locales.tests.test_docstrings import \ ... LocaleInheritanceStub >>> root = LocaleInheritanceStub() >>> root.displayNames = LocaleDisplayNames() >>> root.displayNames.languages = ['en', 'de'] >>> root.displayNames.keys = ['foo', 'bar'] >>> locale = LocaleInheritanceStub(nextLocale=root) >>> locale.displayNames = LocaleDisplayNames() >>> locale.displayNames.keys = ['fu', 'bahr']
Here you can see the inheritance in action:
>>> locale.displayNames.languages ['en', 'de'] >>> locale.displayNames.keys ['fu', 'bahr']
There are no attributes in this class.
getInheritedSelf()
See zope.i18n.interfaces.locales.ILocaleInheritance
There are no known subclasses.