File: config-sample.yaml

package info (click to toggle)
ruby-gettext-setup 0.34-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 292 kB
  • sloc: ruby: 807; makefile: 5
file content (26 lines) | stat: -rw-r--r-- 1,075 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
# This is the project-specific configuration file for setting up
# fast_gettext for your project.
gettext:
  # This is used for the name of the .pot and .po files; they will be
  # called <project_name>.pot?
  project_name: 'sinatra-i18n'
  # This is used in comments in the .pot and .po files to indicate what
  # project the files belong to and should bea little more descriptive than
  # <project_name>
  package_name: Sinatra i18n demo
  # The locale that the default messages in the .pot file are in
  default_locale: en
  # The email used for sending bug reports.
  bugs_address: docs@puppetlabs.com
  # The holder of the copyright.
  copyright_holder: Puppet Labs, LLC.
  # This determines which comments in code should be eligible for translation.
  # Any comments that start with this string will be externalized. (Leave
  # empty to include all.)
  comments_tag: TRANSLATORS
  # Patterns for +Dir.glob+ used to find all files that might contain
  # translatable content, relative to the project root directory
  source_files:
    - 'app.rb'
    - 'lib/**/*.rb'