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 131c9cd commit 85176d1Copy full SHA for 85176d1
src/Umbraco.Web.UI.Client/src/packages/core/localization/registry/localization.registry.ts
@@ -67,7 +67,9 @@ export class UmbLocalizationRegistry {
67
if (!translations.length) return;
68
69
if (diff.length) {
70
- const filteredTranslations = translations.filter((t) => diff.some((ext) => ext.meta.culture === t.$code));
+ const filteredTranslations = translations.filter((t) =>
71
+ diff.some((ext) => ext.meta.culture.toLowerCase() === t.$code),
72
+ );
73
umbLocalizationManager.registerManyLocalizations(filteredTranslations);
74
}
75
0 commit comments