summaryrefslogtreecommitdiff
path: root/sphinx
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/application.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/application.py b/sphinx/application.py
index 18a25bd7..31b8eff4 100644
--- a/sphinx/application.py
+++ b/sphinx/application.py
@@ -152,10 +152,11 @@ class Sphinx(object):
self.translator, has_translation = locale.init(locale_dirs,
self.config.language)
if self.config.language is not None:
- if has_translation:
+ if has_translation or self.config.language == 'en':
+ # "en" never needs to be translated
self.info('done')
else:
- self.info('locale not available')
+ self.info('not available for built-in messages')
def _init_env(self, freshenv):
if freshenv: