-
Notifications
You must be signed in to change notification settings - Fork 26
/
i18n.toml
26 lines (21 loc) · 970 Bytes
/
i18n.toml
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
# (Optional) Specify which subcrates to perform localization within,
# the subcrate needs to have its own `i18n.toml`.
subcrates = ["i18n-build"]
# (Required) The language identifier of the language used in the
# source code for gettext system, and the primary fallback language
# (for which all strings must be present) when using the fluent
# system.
fallback_language = "en-US"
# (Optional) Use the gettext localization system.
[gettext]
# (Required) The languages that the software will be translated into.
target_languages = ["ru", "de", "fr"]
# (Required) Path to the output directory, relative to `i18n.toml` of
# the crate being localized.
output_dir = "i18n"
# (Optional) The reporting address for msgid bugs. This is the email
# address or URL to which the translators shall report bugs in the
# untranslated strings.
msg_bugs_address = "[email protected]"
# (Optional) Set the copyright holder for the generated files.
copyright_holder = "Luke Frisken"