Closed davidxuang closed 3 years ago
Tipp for multi line strings: You can avoid the "\n" .. stuff with the following syntax:
return {
en = {
mod_name = "My mod",
mod_desc = [[
This is a description.
The whole block is recognized as text, making it easier to deal with line breaks.
...
]],
translation_string = "My translation", -- this is the same like below
["translation_string"] = "My translation",
...