-
Is there still no way to disable the default table pluralization?
I was looking for something compareable to entity framework becaues I can't use ef framework in the current project but the forced de…
-
Hi @elliotcondon
I just wanted to flag that the use of '1' in plural i18n functions like _n() shouldn't be used and instead the placeholder is more appropriate. This is mostly due to Arabic, Russi…
-
I know that pluralization can be disabled, but instead of doing naive pluralization, I found an interesting module which can help you to less naively pluralize :
https://github.com/pksunkara/inflect
-
For versatility, many vocabs have singular nouns as entries and are pluralized in the main template through the addition of an "s". This leads to issues in pluralization like "patchs" instead of "patc…
-
In the new version of i18next the JSON format for pluralization has changed. See https://www.i18next.com/misc/json-format
Specifically the suffixes have changed structure.
Are there any plans to…
-
In order to translate `read_time` correctly, some languages, namely Russian, require more complex pluralization rules for numbers. In Russian it looks like:
- Читается за 10 минут
- Читается за 1 мину…
-
Grav need support different plural forms based on languages rules.
Example: https://github.com/translate/l10n-guide/blob/master/docs/l10n/pluralforms.rst
-
`ruby-i18n/i18n` should ship with a pluralization backend compatible with CLDR.
Especially when the [README advertises](https://github.com/ruby-i18n/i18n/blob/master/README.md#features) it as such:…
-
FYI, I just made this PR against StephahHoyer's fork of this library.
StephanHoyer/translate.js#1
I thought, you might find it useful too. :-)
-
The method `String getPluralForm(String word)` in class `com.sun.codemodel.JJavaName` uses case _insensitive_ patterns to map singular words to their plural form. Because of this, the plural of `Child…