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

[String] Add Spanish inflector with some rules #58228

Merged
merged 1 commit into from
Sep 18, 2024

Conversation

dennistobar
Copy link
Contributor

@dennistobar dennistobar commented Sep 11, 2024

Q A
Branch? 7.2
Bug fix? no
New feature? yes
Deprecations? no
License MIT

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.

@carsonbot
Copy link

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:

  • Always add tests
  • Keep backward compatibility (see https://symfony.com/bc).
  • Bug fixes must be submitted against the lowest maintained branch where they apply (see https://symfony.com/releases)
  • Features and deprecations must be submitted against the 7.2 branch.

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!
If this PR is merged in a lower version branch, it will be merged up to all maintained branches within a few days.

I am going to sit back now and wait for the reviews.

Cheers!

Carsonbot

@carsonbot
Copy link

Hey!

Thanks for your PR. You are targeting branch "7.2" but it seems your PR description refers to branch "7.2 for features".
Could you update the PR description or change target branch? This helps core maintainers a lot.

Cheers!

Carsonbot

@carsonbot carsonbot changed the title [String] [Inflector] Add Spanish Inflector with some rules [Inflector][String] Add Spanish Inflector with some rules Sep 11, 2024
@carsonbot carsonbot changed the title [Inflector][String] Add Spanish Inflector with some rules [String] Add Spanish Inflector with some rules Sep 11, 2024
@OskarStark OskarStark changed the title [String] Add Spanish Inflector with some rules [String] Add Spanish inflector with some rules Sep 11, 2024
@dennistobar
Copy link
Contributor Author

@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';
Copy link
Member

@javiereguiluz javiereguiluz Sep 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

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.

Verified

This commit was signed with the committer’s verified signature.
fabpot Fabien Potencier
@fabpot
Copy link
Member

fabpot commented Sep 18, 2024

Thank you @dennistobar.

@fabpot fabpot merged commit be7f31c into symfony:7.2 Sep 18, 2024
6 of 8 checks passed
@welcoMattic
Copy link
Member

I missed this PR, I think we could also improve Twig filters plural and singular by adding this new Inflector here https://github.com/twigphp/Twig/blob/3.x/extra/string-extra/StringExtension.php#L79

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.

@dennistobar
Copy link
Contributor Author

I missed this PR, I think we could also improve Twig filters plural and singular by adding this new Inflector here https://github.com/twigphp/Twig/blob/3.x/extra/string-extra/StringExtension.php#L79

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 😅

@welcoMattic
Copy link
Member

@dennistobar you can get inspired with my previous PR here : https://github.com/twigphp/Twig/pull/4107/files
If you need some help, you can join the Symfony Devs Slack and ask on #support channel or reach me directly ;) https://symfony.com/slack

@dennistobar
Copy link
Contributor Author

Hi @welcoMattic I just created the PR... thanks for your guidance 😄

fabpot added a commit to twigphp/Twig that referenced this pull request Nov 3, 2024

Verified

This commit was signed with the committer’s verified signature.
fabpot Fabien Potencier
…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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants