We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6429fb4 commit ef9c691Copy full SHA for ef9c691
Catalogue/Operation/ReplaceOperation.php
@@ -37,11 +37,8 @@ protected function processDomain($domain): void
37
'new' => [],
38
'obsolete' => [],
39
];
40
- if (\defined(\sprintf('%s::INTL_DOMAIN_SUFFIX', MessageCatalogueInterface::class))) {
41
- $intlDomain = $domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX;
42
- } else {
43
- $intlDomain = $domain;
44
- }
+
+ $intlDomain = $domain . '+intl-icu' /* MessageCatalogueInterface::INTL_DOMAIN_SUFFIX */;
45
46
foreach ($this->source->all($domain) as $id => $message) {
47
$messageDomain = $this->source->defines($id, $intlDomain) ? $intlDomain : $domain;
0 commit comments