mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Undo Naming/PredicateName change in i18next.cr
This commit is contained in:
parent
f6de341043
commit
b75e5cfba6
1 changed files with 2 additions and 2 deletions
|
@ -189,7 +189,7 @@ module I18next::Plurals
|
|||
|
||||
# Emulate the `rule.numbers.size == 2 && rule.numbers[0] == 1` check
|
||||
# from original i18next code
|
||||
private def simple_plural?(form : PluralForms) : Bool
|
||||
private def is_simple_plural(form : PluralForms) : Bool
|
||||
case form
|
||||
when .single_gt_one? then return true
|
||||
when .single_not_one? then return true
|
||||
|
@ -211,7 +211,7 @@ module I18next::Plurals
|
|||
idx = SuffixIndex.get_index(plural_form, count)
|
||||
|
||||
# Simple plurals are handled differently in all versions (but v4)
|
||||
if @simplify_plural_suffix && simple_plural?(plural_form)
|
||||
if @simplify_plural_suffix && is_simple_plural(plural_form)
|
||||
return (idx == 1) ? "_plural" : ""
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue