IncredibleHannes / TPF2-Timetables

The Timetable mod for Transport Fever 2
GNU General Public License v3.0
32 stars 19 forks source link

Update translations #53

Closed davidxuang closed 3 years ago

davidxuang commented 3 years ago
Vacuum-Tube commented 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",
        ...