feat: fallback to en is a string is not found on the locale

pull/3206/head
Ryan Miller 8 months ago
parent b6c208c99c
commit a519eceb3a

@ -259,7 +259,15 @@ export const setupI18n = (params: {
if (!localizedString) {
i18nLog(`Attempted to get translation for nonexistent key: '${token}'`);
return token as T;
localizedString = en[token] as R;
if (!localizedString) {
i18nLog(
`Attempted to get translation for nonexistent key: '${token}' in fallback dictionary`
);
return token as T;
}
}
/** If a localized string does not have any arguments to substitute it is returned with no

Loading…
Cancel
Save