Tagged Questions
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 ...
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
168 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 ?
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
2answers
471 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
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!
...
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
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
2answers
186 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 ...