aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/i18n.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-04 23:51:00 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-04 23:51:00 +0530
commit087f8e16a6aa889cea2262d8f5dff2578b605c68 (patch)
tree44c9b859bf0bb9f5a427d1bdb0661a683f536b0f /railties/guides/source/i18n.textile
parent9d15a35981ccce30ffbf363de1a56944c8da4e52 (diff)
downloadrails-087f8e16a6aa889cea2262d8f5dff2578b605c68.tar.gz
rails-087f8e16a6aa889cea2262d8f5dff2578b605c68.tar.bz2
rails-087f8e16a6aa889cea2262d8f5dff2578b605c68.zip
s/ActiveRecord/Active Record according to api guidelines
Diffstat (limited to 'railties/guides/source/i18n.textile')
-rw-r--r--railties/guides/source/i18n.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/i18n.textile b/railties/guides/source/i18n.textile
index 608643b3d3..0c8e4e974d 100644
--- a/railties/guides/source/i18n.textile
+++ b/railties/guides/source/i18n.textile
@@ -809,7 +809,7 @@ That does not mean you're stuck with these limitations, though. The Ruby I18n ge
I18n.backend = Globalize::Backend::Static.new
</ruby>
-You can also use the Chain backend to chain multiple backends together. This is useful when you want to use standard translations with a Simple backend but store custom application translations in a database or other backends. For example, you could use the ActiveRecord backend and fall back to the (default) Simple backend:
+You can also use the Chain backend to chain multiple backends together. This is useful when you want to use standard translations with a Simple backend but store custom application translations in a database or other backends. For example, you could use the Active Record backend and fall back to the (default) Simple backend:
<ruby>
I18n.backend = I18n::Backend::Chain.new(I18n::Backend::ActiveRecord.new, I18n.backend)