mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
* Remove all locale-dependent text from sphinx.sty, put it into Python files to enable message extraction and translation. * Use babel in the LaTeX output. * Centralize locations for labels used in every builder.
18 lines
263 B
Python
18 lines
263 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_i18n
|
|
~~~~~~~~~
|
|
|
|
Test locale features.
|
|
|
|
:copyright: 2008 by Georg Brandl.
|
|
:license: BSD.
|
|
"""
|
|
|
|
from util import *
|
|
|
|
|
|
@with_testapp(confoverrides={'language': 'de'})
|
|
def test_i18n(app):
|
|
app.builder.build_all()
|