Tom's Obvious, Minimal Language.

TOML aims to be a minimal configuration file format that's easy to read due to obvious semantics. TOML is designed to map unambiguously to a hash table. TOML should be easy to parse into data structures in a wide variety of languages.

You can either import and export the localizable toml files manually on the dashboard or you can automate your toml translation process with the Applanga Localization CLI. Please note - exported file might look differently than the imported file due to the format's multiple ways of string presentation.

File Extension
.toml
CLI format key
toml
CLI Supported
true
SDK Supported
false
String Description Supported
false
Pluralization Supported
false

Example:

empty_string_key = ""
simple_key = "Most basic translation."
with_line_break_key = """\
  The quick brown \
  fox jumps over \
  the lazy dog.\
  """
"nested.key" = "A nested key"
array_key = [
    "first entry",
    "second entry",
    "third entry"
  ]
[table]
first_key = "First table value"
second_key = "Second table value"
[[array_of_tables]]
key_at_position_zero = "value"
key_at_position_one = "value2"