Tagged Questions

0
votes
3answers
114 views

Test if a word is singular or plural in Ruby on Rails

Quick question. How can I test a word to see if it is singular or plural? I'd really like: test_singularity('word') # => true test_singularity('words') # => false I bet rails is capable! …
1
vote
3answers
43 views

pluralisation/depluralisation

Does php have any function to deal with pluralising or depluralising words? Obviously it's pretty easy to take off or replace the 's' at the end of words like 'apple' but other words are not so …
0
votes
1answer
23 views

Pluralization service in Entity Framework - Visual Studio 2008?

Does any one know if there is kinda implementation/addon for VS 2008 SP1 for pluralization service in entity framework like there is gonna b in vs 2010? example: In database: Entity Order …
2
votes
2answers
187 views

How do I override rails naming conventions?

I have a model named "clothing" which I want to be the singlular (one piece of clothing). By default, rails says the plural is clothings. Right or wrong, I think it will be more readable if the …
2
votes
1answer
57 views

.NET library for pluralisation

What's the best library (if one exists) for converting nouns to and from plurals?
2
votes
2answers
127 views

Formatted pluralize

I have a case where I need to use pluralize to properly spell something. However, I need to render the html like so: <span>1</span> thing or, <span>3</span> things I …