Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
DiffEscapePodContent: Easy # Easy, Medium, Hard --- Determines the content of the Escape Pod when you crash land on the planet
TO
#DiffEscapePodContent: Easy # Easy, Medium, Hard --- Determines the content of the Escape Pod when you crash land on the planet
^^ This. Seen it before.
Downlaod the free Notepad++ and load both the original and your modified version. Notepad++ has .yaml syntax checking so it should point out the alignment problem quickly.
Glad to hear it.
FYI - .yaml is an emerging standard for data serialization, i.e. a way to write structered data to a serial device (i.e. a text file, comms link, client/server data, etc) in such a way that disparate systems at either end can correctly interpret the data, and its structure, without concern for big-endian, small-endian o the size of an integer.
Its a dtatbase format that has little in common with the SGML based XML markup language, except the end results.
As of version 3 it is now a compatible subset of JSON. Yaml adds the elements of mandatory unique keys and human readability to the JSON standard, while maintaining compatability with the JSON std.
Whitespace is a significant formatting element in .yaml and cant simply be swallowed as we did 30 years ago.
Hence the parser in Notepad++
see here for more, if you like.
https://en.wikipedia.org/wiki/YAML
http://www.yaml.org/start.html (Reference and Specification documents).