summaryrefslogtreecommitdiff
path: root/lib/rdoc/text.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-05 01:41:25 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-05 01:41:25 +0000
commitd42d6e690e3f553b971322eae783ac6b0d4d9692 (patch)
tree2004bf4517ee7b81466c300cf30092e62e65467e /lib/rdoc/text.rb
parent670c6e8ce9d4a12bb4832e10fab27365398649bf (diff)
* lib/rdoc.rb, lib/rdoc, test/rdoc: Update to RDoc 4.2.0.alpha(313287)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/text.rb')
-rw-r--r--lib/rdoc/text.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/rdoc/text.rb b/lib/rdoc/text.rb
index 0fda72e3ae..3a58641ec1 100644
--- a/lib/rdoc/text.rb
+++ b/lib/rdoc/text.rb
@@ -103,6 +103,15 @@ module RDoc::Text
# Requires the including class to implement #formatter
def markup text
+ if @store.rdoc.options
+ locale = @store.rdoc.options.locale
+ else
+ locale = nil
+ end
+ if locale
+ i18n_text = RDoc::I18n::Text.new(text)
+ text = i18n_text.translate(locale)
+ end
parse(text).accept formatter
end