This commit is contained in:
Asier Isayas 2025-03-25 11:08:41 -04:00
parent c43132d5c0
commit 10b93b6cf3

View File

@ -28,6 +28,11 @@ const loadTranslationFile = async (className: string): Promise<void> => {
} catch (e) {
translations = await import(/* webpackChunkName: "Localization-en-[request]" */ `../Localization/en/${fileName}`);
}
if (className == "MaterializedViewsBuilder") {
className = "p";
}
i18n.addResourceBundle(language, className, translations.default, true);
};