diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-06-08 15:05:50 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-06-08 16:13:51 +0200 |
| commit | 6a092f24e01b6448f4e5601968db82720c9397de (patch) | |
| tree | dd647f6edf6c5bacad5ac1f5dfd53de4d8baf5d9 /docs | |
| parent | cc74f8a4f79b1d0d8a4b57bdd78bdc99d18a3faa (diff) | |
Allow build of translated documentation
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/Makefile | 3 | ||||
| -rw-r--r-- | docs/conf.py | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile index 2a8bcd7101..a2c926c7ea 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -6,11 +6,12 @@ SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build +LANGUAGE = # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -n -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +ALLSPHINXOPTS = -n -d $(BUILDDIR)/doctrees -D language=$(LANGUAGE) $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . diff --git a/docs/conf.py b/docs/conf.py index a01ddb60b8..feff99b6f4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,6 +77,9 @@ django_next_version = '1.6' # for a list of supported languages. #language = None +# Location for .po/.mo translation files used when language is set +locale_dirs = ['locale/'] + # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' |
