Legacy: Fix pluralization on old localization (#6894)
This commit is contained in:
parent
d2edb93340
commit
d5ec8153db
@ -215,7 +215,7 @@ async function fetchRemote(langCode: string): Promise<ApiOldLangPack | undefined
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getPluralOption(amount: number) {
|
function getPluralOption(amount: number) {
|
||||||
const langCode = currentLangCode || FALLBACK_LANG_CODE;
|
const langCode = currentLangCode?.replace('-raw', '') || FALLBACK_LANG_CODE;
|
||||||
const optionIndex = PLURAL_RULES[langCode as keyof typeof PLURAL_RULES]
|
const optionIndex = PLURAL_RULES[langCode as keyof typeof PLURAL_RULES]
|
||||||
? PLURAL_RULES[langCode as keyof typeof PLURAL_RULES](amount)
|
? PLURAL_RULES[langCode as keyof typeof PLURAL_RULES](amount)
|
||||||
: 0;
|
: 0;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user