Feature #86913
closedSupport for locale based language files
100%
Description
It would be great if TYPO3 could finally support locale based language files like "en_RS.locallang.xlf".
We do work with hundreds of language variants in multiple multi domain setups. And it is pretty awkward to take care of a list of custom languages like:
// Add custom languages
$GLOBALS['TYPO3_CONF_VARS']['SYS']['localization']['locales']['user'] = array(
'en_DE' => 'en_DE',
'en_AT' => 'en_AT',
'en_NL' => 'en_NL',
'en_UK' => 'en_UK',
'en_TR' => 'en_TR',
'en_DK' => 'en_DK',
'en_SE' => 'en_SE',
'en_BA' => 'en_BA',
'en_RS' => 'en_RS',
'en_HR' => 'en_HR',
'fr_BE' => 'fr_BE',
'en_GR' => 'en_GR',
);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['localization']['locales']['dependencies'] = array(
'en_DE' => array('en'),
'en_AT' => array('en'),
'en_NL' => array('en'),
'en_UK' => array('en'),
'en_TR' => array('en'),
'en_DK' => array('en'),
'en_SE' => array('en'),
'en_BA' => array('en'),
'en_RS' => array('en'),
'en_HR' => array('en'),
'fr_BE' => array('fr'),
'en_GR' => array('en'),
);
It would be great if TYPO3 would support these locale based language files out of the box.
Updated by Gerrit Code Review almost 2 years ago
- Status changed from New to Under Review
Patch set 7 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 8 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 9 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 10 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 11 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 12 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 13 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 14 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 15 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 16 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Gerrit Code Review almost 2 years ago
Patch set 17 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77375
Updated by Benni Mack almost 2 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset c0952199ae29f31d57d33e7aba81bef19d725c60.
Updated by Benni Mack almost 2 years ago
- Status changed from Resolved to Closed