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
Inside that folder you'll want to make a JSON file, let's call it MyDesigns.json.
Inside that file you'll want to start by creating a JSON array, so just some empty square brackets:
```
[
]
```
Inside those brackets you can start adding your designs, which will be a JSON object with the label and design properties:
```
[
{
"label": "label",
"design": "design"
}
]
```
Label will be the title that shows up when selecting your design and design will be the kitchen design string.
You can add more designs by adding extra JSON objects, separated by a comma:
```
[
{
"label": "label",
"design": "design"
},
{
"label": "label 2",
"design": "design 2"
},
{
"label": "label 3",
"design": "design 3"
}
]
```
Let me know if you need anything more, I was never great at explaining things