-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
[String] Add Spanish inflector with some rules #58228
Conversation
Hey! I see that this is your first PR. That is great! Welcome! Symfony has a contribution guide which I suggest you to read. In short:
Review the GitHub status checks of your pull request and try to solve the reported issues. If some tests are failing, try to see if they are failing because of this change. When two Symfony core team members approve this change, it will be merged and you will become an official Symfony contributor! I am going to sit back now and wait for the reviews. Cheers! Carsonbot |
Hey! Thanks for your PR. You are targeting branch "7.2" but it seems your PR description refers to branch "7.2 for features". Cheers! Carsonbot |
src/Symfony/Component/String/Tests/Inflector/SpanishInflectorTest.php
Outdated
Show resolved
Hide resolved
src/Symfony/Component/String/Tests/Inflector/SpanishInflectorTest.php
Outdated
Show resolved
Hide resolved
@OskarStark thanks for comment about return typing 😄 |
'/.*(piés)$/i', | ||
]; | ||
|
||
private const UNINFLECTED = '/^(lunes|martes|miércoles|jueves|viernes|análisis|torax|no|yo|pies|sí)$/i'; |
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.
no
and sí
have valid plurals according to RAE: noes
and síes
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.
Hi @javiereguiluz I'll follow the guidelines from this page (as my other reference seems too complex). I've noticed that most rules have been implemented, but we're still facing a significant issue with accented words. Unfortunately, there doesn't seem to be a way to make exceptions for them at this time.
4c80994
to
76a1b5f
Compare
Thank you @dennistobar. |
I missed this PR, I think we could also improve Twig filters If @dennistobar you are available to do it, I let you the priority. If not, let me know, I can find a moment to make the PR. |
Hi @welcoMattic. I'll try to do it, but is there any guide to follow to do commit?. I'm a newbie in OSS at large scale and I afraid to break something 😅 |
@dennistobar you can get inspired with my previous PR here : https://github.com/twigphp/Twig/pull/4107/files |
Hi @welcoMattic I just created the PR... thanks for your guidance 😄 |
…plural (dennistobar) This PR was squashed before being merged into the 3.x branch. Discussion ---------- [String] Add SpanishInflector support for singular and plural This PR implement a new Inflector using Spanish (ISO Code = es) implemented in this PR symfony/symfony#58228. * I sort the list of supported Inflectors to follow some rule (alphabet?) * I just change invalid test from "it" to "qq" (qq doesn't exist as valid ISO code, but it is italian... don't be evil if anyone want to create the italian inflector 😅 ) Commits ------- 290a923 [String] Add SpanishInflector support for singular and plural
This PR will create the Spanish Inflector using some easy rules (vowels and some ending letters). There are some problems about the accented words (ie: abdomen/abdómenes), so there is no way to create rules to change it :( some rules are taken from RAE
I used the
FrenchInflector
as base to create this file and the test suite.