Skip to content

Commit

Permalink
fixed so fallbacks and fallback tags could be loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lang authored and Sven Fuchs committed Nov 20, 2009
1 parent 2634735 commit e49a521
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/i18n/locale.rb
@@ -1,6 +1,6 @@
module I18n
module Locale
autoload :Fallbacks, 'lib/i18n/locale/fallbacks'
autoload :Tag, 'lib/i18n/locale/tag'
autoload :Fallbacks, 'i18n/locale/fallbacks'
autoload :Tag, 'i18n/locale/tag'
end
end
6 changes: 3 additions & 3 deletions lib/i18n/locale/tag.rb
Expand Up @@ -3,9 +3,9 @@
module I18n
module Locale
module Tag
autoload :Parents, 'lib/i18n/locale/tag/parents'
autoload :Rfc4646, 'lib/i18n/locale/tag/rfc4646'
autoload :Simple, 'lib/i18n/locale/tag/simple'
autoload :Parents, 'i18n/locale/tag/parents'
autoload :Rfc4646, 'i18n/locale/tag/rfc4646'
autoload :Simple, 'i18n/locale/tag/simple'

class << self
# Returns the current locale tag implementation. Defaults to +I18n::Locale::Tag::Simple+.
Expand Down

0 comments on commit e49a521

Please sign in to comment.