mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
8 lines
345 B
Ruby
8 lines
345 B
Ruby
require 'translate'
|
|
|
|
# TODO: Use new method available_locales once Rails is upgraded, see:
|
|
# http://github.com/svenfuchs/i18n/commit/411f8fe7c8f3f89e9b6b921fa62ed66cb92f3af4
|
|
def I18n.valid_locales
|
|
I18n.backend.send(:init_translations) unless I18n.backend.initialized?
|
|
backend.send(:translations).keys.reject { |locale| locale == :root }
|
|
end
|