# LocalizationEditorSettings

> Provides editor access to the active localization settings for the project.

## Definition

* **Type:** Class
* **Namespace:** [Unity.Localization.Editor](/engine/6000.7/script-reference/unity/localization/editor.md)
* **Assembly:** UnityEditor

```csharp
public static class LocalizationEditorSettings
```

## Remarks

The active settings are stored as an [EditorBuildSettings](/engine/6000.7/script-reference/unityeditor/editorbuildsettings.md) config object and included in player builds. Use ActiveSettings to read or assign them, and [LocalizationEditorSettings.CollectionsChanged](/engine/6000.7/script-reference/unity/localization/editor/localizationeditorsettings/collectionschanged.md) to react to [ResourceTableCollection](/engine/6000.7/script-reference/unity/localization/editor/resourcetablecollection.md) assets being created, imported, or deleted.

## Static Methods

| Method                                                                                                                         | Description                                                                                            |
| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| [AddTable](/engine/6000.7/script-reference/unity/localization/editor/localizationeditorsettings/addtable.md)                   | Adds a table for a locale to a collection, or returns the collection's existing table for that locale. |
| [CreateStringEntry](/engine/6000.7/script-reference/unity/localization/editor/localizationeditorsettings/createstringentry.md) | Adds a string key to a collection across every one of its locale tables.                               |

## Static Events

| Member                                                                                                                           | Description                                                      |
| -------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- |
| [CollectionsChanged](/engine/6000.7/script-reference/unity/localization/editor/localizationeditorsettings/collectionschanged.md) | Occurs when the set of table collections in the project changes. |
| [LocalesChanged](/engine/6000.7/script-reference/unity/localization/editor/localizationeditorsettings/localeschanged.md)         | Occurs when the set of available locales in the project changes. |
