# Locales

## Change locale

To change the locales of this resource, follow these simple steps:

1. Go to `configs/sh_config.lua`.
2. Find the line:

```lua
CONFIG.Locale = 'en'
```

1. Replace 'en' with one of the locales listed in the locales directory.

## Create your own locale

If you want to create your own locales, follow these steps:

1. Duplicate one of the existing locale files.
2. Rename the duplicated file to your desired locale, e.g., `your_locale_here.lua`.
3. Open the duplicated file and modify its contents to match your desired locale.

**Example:**

```lua
Locales['your_locale_here'] = {
    -- Write all your text here in your desired locale.
}
```

That's it! By following these steps, you can easily change or create your own locales for the resource.
