Fix missing conf in other languages

This commit is contained in:
Jesús 2020-05-06 11:50:20 -05:00
parent 21f377fb70
commit 92acd9273e
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -163,6 +163,21 @@ I18N_UNTRANSLATED_PAGES = 'remove'
I18N_SUBSITES = { I18N_SUBSITES = {
'de': { 'de': {
'LOCALE': ('de_DE.UTF-8'), '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': { 'en': {
'LOCALE': ('en_US.UTF-8'), 'LOCALE': ('en_US.UTF-8'),
@ -170,6 +185,7 @@ I18N_SUBSITES = {
'extension_configs': { 'extension_configs': {
'markdown.extensions.toc': { 'markdown.extensions.toc': {
'title': 'Table of Contents', 'title': 'Table of Contents',
'permalink': 'true'
}, },
'markdown.extensions.codehilite': {'css_class': 'highlight'}, 'markdown.extensions.codehilite': {'css_class': 'highlight'},
'markdown.extensions.extra': {}, 'markdown.extensions.extra': {},
@ -183,9 +199,39 @@ I18N_SUBSITES = {
}, },
'eo': { 'eo': {
'LOCALE': ('eo.UTF-8'), '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': { 'fr': {
'LOCALE': ('fr_FR.UTF-8'), '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']} JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n']}