### Features

#### Translations configuration options

```yaml
translations:
  dir: translations       # translations directory
  formats: ['yaml', 'mo'] # translations files format (`yaml` and `mo` by default)
```

Refer to the [documentation](/documentation/configuration/#translations).

#### Translations cache options

```yaml
cache:
  dir: '.cache' # cache directory
  translations:
    dir: 'translations' # translations cache directory
    enabled: true       # enables translations cache
```

Refer to the [documentation](/documentation/configuration/#cache).

#### New command to clear translations cache

Use the following command to remove the translations cache directory:

```bash
php cecil.phar cache:clear:translations
```

### Fixes

- Create a default `translator` to always support the `trans` tag or filter, even if there is not translations
