---
title: "Important: #88045 - Locales dependencies configuration"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:important-88045"
source: "Changelog/9.5.x/Important-88045-LocalesDependenciesConfiguration.rst"
typo3-version: "9.5.x"
typo3-major: 9
type: "important"
issue: 88045
forge: "https://forge.typo3.org/issues/88045"
tags: ["Frontend", "ext:extbase"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Important: #88045 - Locales dependencies configuration {#important-88045}

See [forge#88045](https://forge.typo3.org/issues/88045)

## Description {#description}

Due to a bug in `\TYPO3\CMS\Extbase\Utility\LocalizationUtility` the configured dependencies for
a (custom) locale were not taken into account.

One could circumvent this bug by declaring the following configuration as a workaround:

```php
$GLOBALS['TYPO3_CONF_VARS']['SYS']['localization']['locales']['dependencies'] = [
   'de_AT' => [
      ['de']
   ]
];
```

Since this bug now has been fixed, installations using these kinds of workaround need to update
their configuration as described in the [official documentation](https://docs.typo3.org/m/typo3/reference-coreapi/9.5/en-us/ApiOverview/Internationalization/ManagingTranslations.html#custom-languages).
