Skip to content
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

[11.x] Improved translation for displaying the count of errors in the validation message #50560

Merged
merged 1 commit into from
Mar 15, 2024

Conversation

andrey-helldar
Copy link
Contributor

The #50546 (this is a fix for #50534) solved the problem of message translation. I now propose to consider improving the translation of plurals.

In English, the plural will always be "plural", but in other languages, such as Ukrainian, Russian and many others, the plural has two forms.

For example:

Count English Russian Ukrainian
1 error ошибка помилка
2 errors ошибки помилки
5 errors ошибок помилок

It turns out that now, even with the translation, there will be an incorrect definition of the plural form. For example, "и ещё 4 ошибок". There is a grammatical error here and it is correct to write "и ещё 4 ошибки".

Thus, we come to the point where we can not only bring back the old functionality I added earlier, but also improve it. What do you think about that?

// uk.json
{
    "(and :count more error)": "(та ще :count помилка)"
    "(and :count more errors)": "(та ще :count помилка)|(та ще :count помилки)|(та ще :count помилок)"
}

In this way, the current structure of phrase formation will be preserved, and it will also make it possible to do grammatically correct translations into different languages with multiple forms of plurals.

@andrey-helldar andrey-helldar changed the title Improved translation for displaying the count of errors in the validation message [11.x] Improved translation for displaying the count of errors in the validation message Mar 14, 2024
@andrey-helldar
Copy link
Contributor Author

The tests show errors, but they are not related to my code.

@taylorotwell taylorotwell merged commit c018aa1 into laravel:11.x Mar 15, 2024
28 checks passed
@andrey-helldar andrey-helldar deleted the patch/2024-03-14/19-33 branch March 15, 2024 14:37
tisnamuliarta added a commit to tisnamuliarta/laravel-shadcn that referenced this pull request Mar 22, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [laravel/framework](https://laravel.com)
([source](https://togithub.com/laravel/framework)) | `11.0.5` ->
`11.0.8` |
[![age](https://developer.mend.io/api/mc/badges/age/packagist/laravel%2fframework/11.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/packagist/laravel%2fframework/11.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/packagist/laravel%2fframework/11.0.5/11.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/packagist/laravel%2fframework/11.0.5/11.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>laravel/framework (laravel/framework)</summary>

###
[`v11.0.8`](https://togithub.com/laravel/framework/compare/v11.0.7...v11.0.8)

[Compare
Source](https://togithub.com/laravel/framework/compare/v11.0.7...v11.0.8)

###
[`v11.0.7`](https://togithub.com/laravel/framework/blob/HEAD/CHANGELOG.md#v1107---2024-03-15)

[Compare
Source](https://togithub.com/laravel/framework/compare/v11.0.6...v11.0.7)

- \[11.x] Re-add translations for ValidationException by
[@&#8203;driesvints](https://togithub.com/driesvints) in
[laravel/framework#50546
- \[11.x] Removes unused Dumpable trait by
[@&#8203;OussamaMater](https://togithub.com/OussamaMater) in
[laravel/framework#50559
- \[11.x] Fix withRouting docblock type by
[@&#8203;santigarcor](https://togithub.com/santigarcor) in
[laravel/framework#50563
- \[11.x] Fix docblock in FakeInvokedProcess.php by
[@&#8203;saMahmoudzadeh](https://togithub.com/saMahmoudzadeh) in
[laravel/framework#50568
- \[11.x] fix: Add missing InvalidArgumentException import to
Database/Schema/SqlServerBuilder by
[@&#8203;ayutaya](https://togithub.com/ayutaya) in
[laravel/framework#50573
- \[11.x] Improved translation for displaying the count of errors in the
validation message by
[@&#8203;andrey-helldar](https://togithub.com/andrey-helldar) in
[laravel/framework#50560
- \[11.x] Fix retry_after to be an integer by
[@&#8203;driesvints](https://togithub.com/driesvints) in
[laravel/framework#50580
- \[11.x] Use available `getPath()` instead of using `app_path()` to
detect if base controller exists by
[@&#8203;crynobone](https://togithub.com/crynobone) in
[laravel/framework#50583
- \[11.x] Fix doc block: `[@return](https://togithub.com/return) static`
has been modified to `[@return](https://togithub.com/return) void` by
[@&#8203;saMahmoudzadeh](https://togithub.com/saMahmoudzadeh) in
[laravel/framework#50592
- accept attributes for channels by
[@&#8203;taylorotwell](https://togithub.com/taylorotwell) in
laravel/framework@398f494

###
[`v11.0.6`](https://togithub.com/laravel/framework/blob/HEAD/CHANGELOG.md#v1106---2024-03-14)

[Compare
Source](https://togithub.com/laravel/framework/compare/v11.0.5...v11.0.6)

- \[11.x] Fix version constraints for illuminate/process by
[@&#8203;riesjart](https://togithub.com/riesjart) in
[laravel/framework#50524
- \[11.x] Update Broadcasting Install Command With Bun Support by
[@&#8203;HDVinnie](https://togithub.com/HDVinnie) in
[laravel/framework#50525
- \[11.x] Allows to comment `web` and `health` routes by
[@&#8203;nunomaduro](https://togithub.com/nunomaduro) in
[laravel/framework#50533
- \[11.x] Add generics for Arr::first() by
[@&#8203;phh](https://togithub.com/phh) in
[laravel/framework#50514
- Change default collation for MySQL by
[@&#8203;driesvints](https://togithub.com/driesvints) in
[laravel/framework#50555
- \[11.x] Fixes install:broadcasting command by
[@&#8203;joedixon](https://togithub.com/joedixon) in
[laravel/framework#50550
- \[11.x] Fix crash when configuration directory is non-existing by
[@&#8203;buismaarten](https://togithub.com/buismaarten) in
[laravel/framework#50537

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/tisnamuliarta/laravel-shadcn).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants