8000 [PropertyAccess] Add french singular for words like typologies > typologie by CaporalDead · Pull Request #13721 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[PropertyAccess] Add french singular for words like typologies > typologie #13721

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fix typos
  • Loading branch information
CaporalDead committed Feb 17, 2015
commit 08b38056ba3a6b6cd0a89b34052364a9a697cf9f
2 changes: 1 addition & 1 deletion src/Symfony/Component/PropertyAccess/StringUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class StringUtil
// accesses (access), addresses (address), kisses (kiss)
array('sess', 4, true, false, 'ss'),

// analyses (analysis), ellipses (ellipsis), funguses (fungus),
// analyses (analysis), ellipses (ellipsis), fungi (fungus),
// neuroses (neurosis), theses (thesis), emphases (emphasis),
// oases (oasis), crises (crisis), houses (house), bases (base),
// atlases (atlas)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/PropertyAccess/Tests/StringUtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ public function singularifyProvider()
array('formulae', 'formula'),
array('formulas', 'formula'),
array('fungi', 'fungus'),
array('funguses', array('fungus', 'funguse', 'fungusis')),
array('fungi', array('fungus', 'funguse', 'fungusis')),
array('garages', array('garag', 'garage')),
array('geese', 'goose'),
array('halves', array('half', 'halve', 'halff')),
array('hats', 'hat'),
array('heroes', array('hero', 'heroe')),
array('heroes', array('hero', 'hero')),
array('hippopotamuses', array('hippopotamus', 'hippopotamuse', 'hippopotamusis')), //hippopotami
array('hoaxes', 'hoax'),
array('hooves', array('hoof', 'hoove', 'hooff')),
Expand Down
0