# Split context in several files. # # By default only one file with all translations is exported and # no configuration is required. Your settings for asset pipeline # are automatically recognized. # # If you want to split translations into several files or specify # locale contexts that will be exported, just use this file to do # so. # # For more informations about the export options with this file, please # refer to the README # # # If you're going to use the Rails 3.1 asset pipeline, change # the following configuration to something like this: # # translations: # - file: "app/assets/javascripts/i18n/translations.js" # # If you're running an old version, you can use something # like this: # fallbacks: :default_locale export_i18n_js: false translations: - file: 'app/javascript/retrospring/i18n.ts' only: ['*.frontend.*', '*.views.actions.*'] prefix: "import I18n from 'i18n-js'\nimport Cookies from 'js-cookie'\n" suffix: "I18n.defaultLocale = 'en';\nI18n.locale = Cookies.get('hl') || 'en';\nexport default I18n"