Fix missing conf in other languages
This commit is contained in:
parent
21f377fb70
commit
92acd9273e
@ -163,6 +163,21 @@ I18N_UNTRANSLATED_PAGES = 'remove'
|
||||
I18N_SUBSITES = {
|
||||
'de': {
|
||||
'LOCALE': ('de_DE.UTF-8'),
|
||||
'MARKDOWN': {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.toc': {
|
||||
'title': 'Inhaltsverzeichnis',
|
||||
'permalink': 'true'
|
||||
},
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
'markdown.extensions.footnotes': {
|
||||
'BACKLINK_TITLE': 'Springe zurück zu footnote %d im text'
|
||||
},
|
||||
'markdown.extensions.meta': {},
|
||||
},
|
||||
'output_format': 'html5',
|
||||
}
|
||||
},
|
||||
'en': {
|
||||
'LOCALE': ('en_US.UTF-8'),
|
||||
@ -170,6 +185,7 @@ I18N_SUBSITES = {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.toc': {
|
||||
'title': 'Table of Contents',
|
||||
'permalink': 'true'
|
||||
},
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
@ -183,9 +199,39 @@ I18N_SUBSITES = {
|
||||
},
|
||||
'eo': {
|
||||
'LOCALE': ('eo.UTF-8'),
|
||||
'MARKDOWN': {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.toc': {
|
||||
'title': 'Enhavtabelo',
|
||||
'permalink': 'true'
|
||||
},
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
'markdown.extensions.footnotes': {
|
||||
'BACKLINK_TITLE': 'Saltu al footnote %d en la teksto'
|
||||
},
|
||||
'markdown.extensions.meta': {},
|
||||
},
|
||||
'output_format': 'html5',
|
||||
}
|
||||
},
|
||||
'fr': {
|
||||
'LOCALE': ('fr_FR.UTF-8'),
|
||||
'MARKDOWN': {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.toc': {
|
||||
'title': 'Table des matières',
|
||||
'permalink': 'true'
|
||||
},
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
'markdown.extensions.footnotes': {
|
||||
'BACKLINK_TITLE': 'Revenir à la footnote %d dans le texte'
|
||||
},
|
||||
'markdown.extensions.meta': {},
|
||||
},
|
||||
'output_format': 'html5',
|
||||
}
|
||||
},
|
||||
}
|
||||
JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n']}
|
||||
|
Loading…
x
Reference in New Issue
Block a user