Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-02-25 16:16:09 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-03-03 17:18:38 +0300
commit6faef281505e1e4ba89d6af2058613d1d387dd46 (patch)
tree4734fe29d42042ee9bb0fab69087c8ffeb224e73 /sphinx/theming.py
parent1f5b40c291fc9cc16c323ef6aa4cd417b929bf0f (diff)
Make console and warning messages translatable
Diffstat (limited to 'sphinx/theming.py')
-rw-r--r--sphinx/theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/theming.py b/sphinx/theming.py
index bfd7e68ae..5944a3751 100644
--- a/sphinx/theming.py
+++ b/sphinx/theming.py
@@ -133,7 +133,7 @@ class Theme(object):
for option, value in iteritems(overrides):
if option not in options:
- logger.warning('unsupported theme option %r given' % option)
+ logger.warning(__('unsupported theme option %r given') % option)
else:
options[option] = value