aboutsummaryrefslogtreecommitdiffstats
path: root/lib/i18n_fixes.rb
diff options
context:
space:
mode:
authorRobin Houston <robin.houston@gmail.com>2012-02-03 13:39:24 +0000
committerRobin Houston <robin.houston@gmail.com>2012-02-03 13:39:24 +0000
commitbf4bbc351dae8e97d09b87434cef4f44eea4d73a (patch)
tree2f43c9c02205fec1fb68cdcb66735d5b1ee3172f /lib/i18n_fixes.rb
parentea04caec95cea132143997a1870ae8dd1fc0db5c (diff)
parent14b5be69dc2dc3c4dd817feb0b5a8402fc343db4 (diff)
Merge branch 'release/0.5' into develop
Diffstat (limited to 'lib/i18n_fixes.rb')
-rw-r--r--lib/i18n_fixes.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/i18n_fixes.rb b/lib/i18n_fixes.rb
index fad258a72..6e684d44a 100644
--- a/lib/i18n_fixes.rb
+++ b/lib/i18n_fixes.rb
@@ -22,9 +22,9 @@ def gettext_interpolate(string, values)
if escaped
pattern
elsif INTERPOLATION_RESERVED_KEYS.include?(pattern)
- raise ReservedInterpolationKey.new(pattern, string)
+ raise I18n::ReservedInterpolationKey.new(pattern, string)
elsif !values.include?(key)
- raise MissingInterpolationArgument.new(pattern, string)
+ raise I18n::MissingInterpolationArgument.new(pattern, string)
else
values[key].to_s
end