-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add Serbian cyrillic language #2283
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
Add Serbian cyrillic language #2283
Conversation
Use Serbian latin only for sr-Latn Use Serbian cyrillic for everything else
| internal class SerbianLanguage { | ||
| public const string Culture = "sr"; | ||
| internal class SerbianLatinLanguage { | ||
| public const string Culture = "sr-Latn"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can introduce breaking change, because sr culture will now be used on cyrillic version.
|
hi @rammba thanks for this. I'm happy with this change, but breaking changes can only occur in major releases, so please could you re-target this PR to the |
|
Thanks for the input. I've changed base branch as you suggested. Do you maybe know when is planned to go live with v12? |
|
There's no planned release date at the moment as I currently have other priorities in life. If I get time over the christmas holidays I hope to pick it up again but I can't definitely promise that'll be the case. |
|
Thanks for the info. You can merge these changes then. I'm looking forward to see it live soon 🚀 |
|
Hey @JeremySkinner, I just noticed that there is no migration to v12 document. Should it be added only for these, or also for some other changes on this branch? |
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [FluentValidation](https://fluentvalidation.net/) ([source](https://github.com/JeremySkinner/fluentvalidation)) | nuget | minor | `12.0.0` -> `12.1.0` | | [HtmlAgilityPack](http://html-agility-pack.net/) ([source](https://github.com/zzzprojects/html-agility-pack)) | nuget | patch | `1.12.2` -> `1.12.4` | | [OpenAI](https://github.com/openai/openai-dotnet/tree/OpenAI_2.7.0) ([source](https://github.com/openai/openai-dotnet)) | nuget | minor | `2.3.0` -> `2.7.0` | | [Roslynator.Analyzers](https://github.com/dotnet/roslynator) | nuget | patch | `4.14.0` -> `4.14.1` | --- ### Release Notes <details> <summary>JeremySkinner/fluentvalidation (FluentValidation)</summary> ### [`v12.1.0`](https://github.com/FluentValidation/FluentValidation/releases/tag/12.1.0) [Compare Source](FluentValidation/FluentValidation@12.0.0...12.1.0) ### Release notes [Please read the upgrade guide if you are moving from 11.x to 12.x](https://docs.fluentvalidation.net/en/latest/upgrading-to-12.html) #### Changes in 12.1.0 - Add Tamil language ([#​2334](FluentValidation/FluentValidation#2334)) - Add Telugu language ([#​2333](FluentValidation/FluentValidation#2333)) - Fixes to Japanese translations ([#​2340](FluentValidation/FluentValidation#2340)) #### Changes in 12.0.0 - Drops support for netstandard2.0, netstandard2.1, .net 5, .net 6 and .net 7. Minimum supported platform is now .net 8. - Add support for dependent rules for custom rules ([#​2170](FluentValidation/FluentValidation#2170)) - Removes deprecated DI extensions - Removes deprecated transform methods ([#​2027](FluentValidation/FluentValidation#2027)) - Remove the ability to disable the root-model null check ([#​2069](FluentValidation/FluentValidation#2069)) - Use Zomp.SyncMethodGenerator to clean up internal sync/async code paths and increase performance ([#​2136](FluentValidation/FluentValidation#2136)) - Add Serbian (Cyrillic) language; rename existing Serbian to Serbian (Latin) ([#​2283](FluentValidation/FluentValidation#2283)) ### Downloads Binaries can be downloaded from nuget: - [FluentValidation](http://nuget.org/packages/fluentvalidation) - Main package </details> <details> <summary>zzzprojects/html-agility-pack (HtmlAgilityPack)</summary> ### [`v1.12.4`](https://github.com/zzzprojects/html-agility-pack/releases/tag/v1.12.4) ##### Download the library **[here](https://www.nuget.org/packages/HtmlAgilityPack/)** **ADDED:** New property `OriginalOuterLength` for OuterLength is incorrect, refering to the reconstructed OuterHtml and not the original [#​602](zzzprojects/html-agility-pack#602) **FIX...
Hello @JeremySkinner, I'm adding Serbian cyrillic with these changes.
As you probably don't know, cyrillic version is kind of official language for us. All legal papers, documents, etc must be written on cyrillic. In that sense, I've added it here as well.
I must point potential breaking change here, because I moved usage of sr culture to newly created cyrillic language. As an additional explanation, all Serbians knows both cyrillic and latin perfectly. Basically it's the usage of the same letters, only on different letter groups.
Is this somehow problematic for your library?
I hope you will agree to add this change to the library. Please tell me if I missed to configure or change something.