Tagged Questions
The pluralize tag has no wiki summary.
87
votes
25answers
3k views
Plurality in user messages
Many times, when generating messages to show to the user, the message will contain a number of something that I want to inform the customer about.
I'll give an example: The customer has selected a ...
22
votes
2answers
522 views
Pluralize English words Like LINQ to SQL Does [closed]
Possible Duplicate:
Pluralize - Singularize
The C# 4.0 (maybe older versions, but I've only tested with 4.0) Linq-to-SQL generator will pluralize your table names; even tough plurals like ...
10
votes
2answers
2k 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 ...
7
votes
3answers
1k views
i18n Pluralization
I want to be able to translate pluralized strings in i18n in rails. A string can be :
You have 2 kids
or
You have 1 kid
I know that i can use pluralize helper method, but i want to embed this in ...
7
votes
1answer
1k views
Ruby on Rails ActiveRecord: pluralization
I'm new to Rails, so forgive my ignorance of ActiveRecord. One of my models is named "campus". I ran the migration and it pluralized everything except "campus".
I thought that was lame so I added ...
6
votes
6answers
3k views
Is there a pluralize function in Ruby NOT Rails?
I am writing some Ruby code, not Rails, and I need to handle something like this:
found 1 match
found 2 matches
I have Rails installed so maybe I might be able to add a require clause at the top of ...
5
votes
2answers
372 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 ...
3
votes
3answers
167 views
How to pluralize a symbol in Ruby (on Rails)?
This works, but looks a little bit ugly:
s = :shop
s.to_s.pluralize.to_sym # => :shops
Is there a nicer way to pluralize a Symbol ?
3
votes
3answers
717 views
Android Pluralization not working, need help
I've been attempting to utilize the plurals resource with Android but have not had any luck.
Here is my resource file for my plurals:
<?xml version="1.0" encoding="utf-8"?>
<resources ...
3
votes
4answers
179 views
Can I use linq's method of pluralizing a term?
In .net 3.5 if I generate a linq to sql data context, it does some wonderful magic to pluralize names. In my code I need to pluralize some terms. Can I use whatever method Linq is using to generate ...
2
votes
2answers
33 views
Pluralize in Rails View Issues
I have a question about the pluralize function. In my view, I have the following line of code. It passes in an item with a certain number of votes to determine if it the word "Vote" should be ...
2
votes
1answer
193 views
rails 3 not pluralizing table name
I am trying to migrate from rails 2 to rails 3.
I am facing a strange problem.
The whole of application doesn't seem to pluralize the table names.
Mysql::Error: Table 'r_database.country_data' ...
2
votes
2answers
467 views
overide default pluralize for model-name in rails3
my locale is :de and I like to get this:
Sheet.model_name.human.pluralize # => Belegs
to add me a trailing "e" instead of "s"
Sheet.model_name.human.pluralize # => Belege
just for the ...
2
votes
2answers
107 views
Where are the English pluralization rules for ActiveSupport defined?
I found the ActiveSupport inflector class. Where can I find the code that initializes the inflector for English?
2
votes
1answer
241 views
Is there a way to set custom pluralizations in EDM designer 2010?
I am using VS 2010 and I have an entity 'Person'.
The pluralization-service turns its plural to 'People', I want it to be Persons.
Is there a place where I can manage the pluralizations library?
2
votes
1answer
311 views
Hibernate pluralization
I have
A MySQL database currently in production use for a CakePHP application
A Java SE application accessing the same database via Hibernate, currently in development.
I'm using the Netbeans ...
2
votes
3answers
2k 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!
...
2
votes
3answers
209 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 ...
2
votes
1answer
129 views
.NET library for pluralisation
What's the best library (if one exists) for converting nouns to and from plurals?
1
vote
1answer
46 views
rails can`t pluralize word 'affiche'
I have a model called affiche and model user
class User < ActiveRecord::Base
has_many :affiches
class Affiche < ActiveRecord::Base
belongs_to :user
And there i get an error, trying to ...
1
vote
2answers
78 views
Rails 2.3.9 pluralize model names issue
I'm developing a simple select. The thing is my code needs to be in spanish, so
instead of using Role I have to use Rol (the plurar remains the same: Roles).
So, my model name is: Rol and my ...
1
vote
3answers
92 views
Making a value plural (Greater than, Less than) in Javascript
I have the following code:
$(function(){
var total_click = 0;
$("#mapKey a.showKey").click(function(){
total_click = total_click + 1;
...
1
vote
3answers
360 views
pluralize and singularize for spanish language
sorry for my english...
I have a rails application developed to spain, therefore, all content is in spanish, so, I have a search box to search in a mysql database, all rows are in spanish, I'd like ...
1
vote
2answers
132 views
Why does Rails use plurals for new and create?
I understand why a Rails index method would use the plural form of a resource - we're showing all projects, for example.
And I understand why the show method would use the singular form - we only ...
0
votes
1answer
20 views
Pluralizing rails 3 controller manually
I have a Rails 3 controller which is not pluralized (IphoneUser) - it already has some controller methods, and a model generated.
However I'd like now rather than when it gets too late into the game, ...
0
votes
1answer
26 views
Am I using Pluralizer wrong?
Paging Jay Querido...
Downloaded the Pluralizer NuGet package. My goal is to display a string like so:
X contracts with Y partners in Z countries
If X is 1, word should change to contract. If Z is ...
0
votes
1answer
45 views
rails singularize to a / an
Is there a method that works similiar to singularize to prepend a or an according to the word?
like f(apple) # => an apple
f(carpet) #=> a carpet
thanks
0
votes
1answer
102 views
Rails 3 and Slovenian pluralization
I'd like to use t('errors', :count => 2) with slovenian translation in Rails 3.0.9 and want it to return "2 napaki" which is a special plural form for slovene language.
I have created ...
0
votes
2answers
182 views
rails 3: is there a way to use pluralize() inside a model? Seems to only work in a view
It seems pluralize() only works within a view -- is there some way that my models can use pluralize() too?
(I have methods in my model that return message strings for users that do not go to a view ...
0
votes
1answer
191 views
Entity Framework do not Pluralize my SQLServer database
I'm using .NET Framework 3.5. So I think the EF is also 3.5.
I saw something here: EF3.5 don't Singularize or Pluralize names.
Unfortunately in the current version of the Entity Framework, which ...
0
votes
1answer
244 views
Using blocktrans with “with” and “count” keywords together
Is it possible to use {% bloktrans %} with "with" and "count" at the same time?
The documentation describes only the separate using:
{% bloktrans with foo|filter as bar and baz|filter as boo %}
{% ...
0
votes
1answer
196 views
Are the CLDR pluralization rules predefined in Rails 3 or do you have to manually define them?
And if you do have to add the rules manually, where and how do you add them?
I was trying with :locale => "fr" and according to ...
0
votes
1answer
528 views
Using plural in Zend_Translate (Array adapter)
Can anybody show me example of using Zend_Translate with Array Adapter when I need to make more than one plural forms for a word. For 1 entity first, for 2 - 4 entities second, for 5 and more - third ...
0
votes
3answers
569 views
Why does entity framework pluralize and capitalize entity class names?
Why does entity framework pluralize all the class names and capitalize the first letters by default? What are the advantages of doing this ? Probably a stupid question...but just out of curiosity?
0
votes
1answer
214 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
...