require 'active_support/core_ext/class/attribute_accessors' module Tolk module Config class << self # Mapping : a hash of the type { 'ar' => 'Arabic' } attr_accessor :mapping # Dump locale path by default the locales folder (config/locales) attr_accessor :dump_path # primary locale to not be overriden by default locale in development mode attr_accessor :primary_locale_name # exclude locales tokens from gems attr_accessor :exclude_gems_token def reset @exclude_gems_token = false @dump_path = Proc.new { "#{Rails.application.root}/config/locales" } @mapping = { 'ar' => 'Arabic', 'bs' => 'Bosnian', 'bg' => 'Bulgarian', 'ca' => 'Catalan', 'cs' => 'Czech', 'da' => 'Danish', 'de' => 'German', 'el' => 'Greek', 'en' => 'English', 'es' => 'Spanish', 'et' => 'Estonian', 'fa' => 'Persian', 'fi' => 'Finnish', 'fr' => 'French', 'he' => 'Hebrew', 'hr' => 'Croatian', 'hu' => 'Hungarian', 'id' => 'Indonesian', 'is' => 'Icelandic', 'it' => 'Italian', 'ja' => 'Japanese', 'ko' => 'Korean', 'lo' => 'Lao', 'lt' => 'Lithuanian', 'lv' => 'Latvian', 'mk' => 'Macedonian', 'nl' => 'Dutch', 'no' => 'Norwegian', 'pl' => 'Polish', 'pt-BR' => 'Portuguese (Brazilian)', 'pt-PT' => 'Portuguese (Portugal)', 'ro' => 'Romanian', 'ru' => 'Russian', 'sv' => 'Swedish', 'sk' => 'Slovak', 'sl' => 'Slovene', 'sr' => 'Serbian', 'sw' => 'Swahili', 'th' => 'Thai', 'tr' => 'Turkish', 'uk' => 'Ukrainian', 'vi' => 'Vietnamese', 'zh-CN' => 'Chinese (Simplified)', 'zh-TW' => 'Chinese (Traditional)' } end end # Set default values for configuration options on load self.reset end end