Sha256: a9973662a679fc58f1aa9693a2c94cf85e324cb8074d01b1771a6dafb8d03a30
Contents?: true
Size: 2 KB
Versions: 8
Compression:
Stored size: 2 KB
Contents
base_locale: it locales: [it] # Read and write locale data data: # Locale files to read from read: - config/locales/%{locale}.yml - config/locales/*.%{locale}.yml - config/locales/**/*.%{locale}.yml # key => file routes, matched top to bottom write: ## E.g., write devise and simple form keys to their respective files - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml'] # Catch-all - config/locales/%{locale}.yml # `i18n-tasks normalize -p` will force move the keys according to these rules # YAML / JSON serializer options, passed to load / dump / parse / serialize yaml: write: # do not wrap lines at 80 characters line_width: -1 json: write: # pretty print JSON indent: ' ' space: ' ' object_nl: "\n" array_nl: "\n" # Find translate calls search: ## Default scanner finds t() and I18n.t() calls # scanner: I18n::Tasks::Scanners::PatternWithScopeScanner ## Paths to search in, passed to File.find paths: - app/ ## Root for resolving relative keys (default) # relative_roots: # - app/views ## File.fnmatch patterns to exclude from search (default) # exclude: ["*.jpg", "*.png", "*.gif", "*.svg", "*.ico", "*.eot", "*.ttf", "*.woff", "*.pdf"] ## Or, File.fnmatch patterns to include # include: ["*.rb", "*.html.slim"] ## Google Translate # translation: # # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate # api_key: "AbC-dEf5" ## Consider these keys not missing # ignore_missing: # - 'errors.messages.{accepted,blank,invalid,too_short,too_long}' # - '{devise,simple_form}.*' ## Consider these keys used ignore_unused: - 'activerecord.*' - '{devise,kaminari,will_paginate,simple_form}.*' - 'date.*' - 'time.*' - 'titles.*' ## Exclude these keys from `i18n-tasks eq-base' report # ignore_eq_base: # all: # - common.ok # fr,es: # - common.brand ## Exclude these keys from all of the reports # ignore: # - kaminari.*
Version data entries
8 entries across 8 versions & 1 rubygems