Browse Source

:memo: Add TOML translations key example (#864)

index-subcmd
David Authier Vincent Prouillet 4 years ago
parent
commit
f4b6f63d3c
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      docs/content/documentation/getting-started/configuration.md

+ 11
- 1
docs/content/documentation/getting-started/configuration.md View File

@@ -85,7 +85,17 @@ ignored_content = []
# A list of directories to search for additional `.sublime-syntax` files in.
extra_syntaxes = []

# Optional translation object. The key if present should be a language code
# Optional translation object. The key if present should be a language code.
# Example:
# default_language = "fr"
#
# [translations]
# [translations.fr]
# title = "Un titre"
#
# [translations.en]
# title = "A title"
#
[translations]

# You can put any kind of data in there and it


Loading…
Cancel
Save