# Language Support (/docs/orbit-studios-resources/orbit-craftingsystem/language-support)



# Language Support [#language-support]

`orbit-craftingsystem` includes locale files in `resources/[orbit]/orbit-craftingsystem/locales`.

## Available Locales [#available-locales]

| Locale  | File      |
| ------- | --------- |
| English | `en.json` |
| German  | `de.json` |
| Spanish | `es.json` |
| French  | `fr.json` |
| Italian | `it.json` |
| Swedish | `sv.json` |
| Turkish | `tr.json` |

## Set The Locale [#set-the-locale]

Set the active `ox_lib` locale in `server.cfg`.

```properties title="server.cfg"
setr ox:locale en
```

Change `en` to the locale file name without `.json`.

```properties title="server.cfg"
setr ox:locale sv
```

## Edit Text [#edit-text]

Edit the matching JSON file to change labels, descriptions, errors, and UI messages.

```json title="resources/[orbit]/orbit-craftingsystem/locales/en.json"
{
  "example_key": "Example text"
}
```

Keep JSON valid: use double quotes, commas between entries, and no trailing comma after the final entry.
