Skip to content

Add proper plural forms to Croatian and Serbian decimal units #1142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Malayalam (ml): Add missing key (`datetime.distance_in_words.x_years.one`, `datetime.distance_in_words.x_years.other`, `errors.messages.in`, `errors.messages.password_too_long`, `currency.format.negative_format`, `number.format.round_mode`, `storage_units.units.eb`, `storage_units.units.pb`, `storage_units.units.zb`). Fix translation (`activerecord.errors.messages.record_invalid`, `errors.messages.other_than`, `number.currency.format.unit`)
- Serbian Cyrillic (sr): Fix date format, February typo, and RSD unit
- Basque (eu): Fixed week day abbreviations
- Croatian (hr), Serbian Cyrillic (sr) and Serbian Latin (scr): Add proper plural forms to decimal units

## 8.0.1 (2024-11-10)

Expand Down
30 changes: 25 additions & 5 deletions rails/locale/hr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,31 @@ hr:
decimal_units:
format: "%n %u"
units:
billion: milijarda
million: milijun
quadrillion: bilijarda
thousand: tisuća
trillion: bilijun
billion:
one: milijarda
few: milijarde
many: milijardi
other: milijardi
million:
one: milijun
few: milijuna
many: milijuna
other: milijuna
quadrillion:
one: bilijarda
few: bilijarde
many: bilijardi
other: bilijardi
thousand:
one: tisuća
few: tisuće
many: tisuća
other: tisuća
trillion:
one: bilijun
few: bilijuna
many: bilijuna
other: bilijuna
unit: ''
format:
delimiter: ''
Expand Down
30 changes: 25 additions & 5 deletions rails/locale/iso-639-2/scr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,31 @@ scr:
decimal_units:
format: ! '%n %u'
units:
thousand: Hiljadu
million: Milion
billion: Milijarda
trillion: Trilion
quadrillion: Kvadrilion
thousand:
one: hiljada
few: hiljade
many: hiljada
other: hiljada
million:
one: milion
few: miliona
many: miliona
other: miliona
billion:
one: milijarda
few: milijarde
many: milijardi
other: milijardi
trillion:
one: trilion
few: triliona
many: triliona
other: triliona
quadrillion:
one: kvadrilion
few: kvadriliona
many: kvadriliona
other: kvadriliona
unit: ''
format:
delimiter: ''
Expand Down
30 changes: 25 additions & 5 deletions rails/locale/sr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,31 @@ sr:
decimal_units:
format: "%n %u"
units:
billion: Милијарда
million: Милион
quadrillion: Квадрилион
thousand: Хиљаду
trillion: Трилион
billion:
one: милијарда
few: милијарде
many: милијарди
other: милијарди
million:
one: милион
few: милиона
many: милиона
other: милиона
quadrillion:
one: квадрилион
few: квадрилиона
many: квадрилиона
other: квадрилиона
thousand:
one: хиљада
few: хиљаде
many: хиљада
other: хиљада
trillion:
one: трилион
few: трилиона
many: трилиона
other: трилиона
unit: ''
format:
delimiter: ''
Expand Down
Loading