# GridLocale

> _Since v3.5.0_

Translation map for the grid's built-in UI chrome, keyed by namespaced
message id (`filter.apply`, `columns.showAll`, …).

There is no shipped default map: every call site passes its English string as
an inline fallback, so an unloaded plugin costs nothing and an omitted key
simply stays English. See [`GridConfig.locale`](https://toolboxjs.com/grid/api/core/interfaces/gridconfig.md#locale).

```ts
type GridLocale = Record<string, string>
```
