Sha256: 25b864135fc5785970303e010a46f5d53cf30e586385270c67b7c7bbfe4b4a15
Contents?: true
Size: 1.28 KB
Versions: 21
Compression:
Stored size: 1.28 KB
Contents
# i18n data storage data: # The default YAML adapter supports reading from and writing to YAML files adapter: yaml # adapter options read: - 'config/locales/%{locale}.yml' - 'config/locales/*.%{locale}.yml' write: # keys matched top to bottom - ['devise.*', 'config/locales/devise.%{locale}.yml'] # default catch-all (same as ['*', 'config/locales/%{locale}.yml']) - 'config/locales/%{locale}.yml' # i18n usage search in source search: # search these directories (relative to your Rails.root directory, default: 'app/') paths: - 'app/' - 'vendor/' # include only files matching this glob pattern (default: blank = include all files) include: - '*.rb' - '*.html.*' - '*.file' # explicitly exclude files (default: blank = exclude no files) exclude: '*.js' # search uses grep under the hood # do not report these keys ever ignore: - ignore.a # do not report these keys as unused ignore_unused: - ignore_unused.a # do not report these keys as missing: ignore_missing: - ignored_missing_key.a # one key to ignore - ignored_pattern.* # ignore the whole pattern # do not report these keys when they have the same value as the base locale version ignore_eq_base: all: - ignore_eq_base_all.a es: - ignore_eq_base_es.a
Version data entries
21 entries across 21 versions & 1 rubygems