mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
28 lines
856 B
YAML
28 lines
856 B
YAML
# 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.
|
|
#
|
|
# 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:
|
|
#
|
|
# translations:
|
|
# - file: "public/javascripts/translations.js"
|
|
# only: "*"
|
|
#
|
|
|
|
translations:
|
|
- file: 'app/assets/javascripts/i18n/en.js'
|
|
only: 'en.js.*'
|
|
- file: 'app/assets/javascripts/i18n/admin.en.js'
|
|
only: 'en.admin_js.*' |