Tagged Questions

Pertaining to handling text that must change depending on the number of items involved, according to the rules of different languages.

learn more… | top users | synonyms

25
votes
8answers
5k views

Enum Naming Convention - Plural

I'm asking this question despite having read similar but not exactly what I want at http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property I found I have a ...
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 ...
3
votes
1answer
57 views

Android Strings-Resources Plural

Android allows translators to define Plurals. The following example works for me with locale 'en': <plurals name="numberOfSongsAvailable"> <item quantity="one">One song ...
3
votes
7answers
1k views

best practice(s) for singular word or plural words?

This is about best practices in general, not specific for a single language, database or whatever We all have to deal with generated output where you can be reporting "one products" or "two product". ...
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
0answers
80 views

Java - Is there an Inflector script for German language?

I am using Java Inflector library to get English words plurals. It is working fine, but i wanted to ask: Is there a similar library for German language ? I have seen the JInflector project but it ...
2
votes
2answers
57 views

Rails: Handling a scaffolding, such as “Sheep,” that has the same plural and singular form

I'm wanting to create a model called CommunicationMeans (or, alternatively, MeansOfCommunication). However, this is both the singular and plural form of this term. I ran this: $ rails g scaffold ...
2
votes
0answers
146 views

Using Plurals ends in ResourcesNotFoundException

I try to use plurals in my latest Android project (SDK9). It's driving me nuts. It always ends in an ResourcesNotFoundException. But the Resource is there - definetely: Here's that part of my ...
2
votes
1answer
78 views

What if the model in the ActiveRecord is an always plural word?

I am developing a Rails app which should rely on existing database. There are a couple of table names there which are the always plural words, like "Series". Application is not working correctly with ...
2
votes
4answers
345 views

Plural and Singular terms in PHP

I am doing an amount of users check for our website, below is the code. How can i use the word "user" if there is only 1 account and how can i use "users" if there is >1. code: $result = ...
2
votes
1answer
138 views

Internationalising sentences with two plural words

Using gettext how should a sentence with multiple numeric variables be made translatable? ngettext only takes one number as the plural parameter. The permutations that should be allowed in the below ...
1
vote
2answers
51 views

How to pluralize “There is/are N object/objects”?

Pluralizing a single word is simple: pluralize(@total_users, "user") But what if I want to print "There is/are N user/users": There are 0 users There is 1 user There are 2 users , i.e., ...
1
vote
1answer
67 views

In ICU, is it possible to use custom plural rules instead of CLDR rules

So I want to use a different plural rule than what is in the CLDR. I'm using ICU through PHP intl extension, and say I have something like this: $msg = new MessageFormatter('ar', ...
1
vote
0answers
64 views

SSRS Report Manager rules for generating Models from Data Source with plural table names

I am using the SSRS Report Manager web interface to generate Data Models for a SQL Server 2008 R2 Data Source. The database contains a number of tables with names which are plurals. In the generated ...
1
vote
1answer
101 views

Rails Singular vs. Plural resources problem

I am getting an undefined method error because my code is trying to look up a singular_object_path rather than pluralized_objects_path, which it would be able to find. I'm running Rails 3.0.9 on ...
1
vote
1answer
619 views

Rails controller method going to plural form

I'm new to rails! Ok, I am trying to set up a user signup form. It is mapped as a singular resource in the routes map.resource :user And trying to create the user through the console works fine. ...
0
votes
3answers
73 views

Mysql select on word (plural, singular)

In my Mysql DB I have a list of terms like (With First letters Capital and most of the time plurals) Hairdressers Restaurants Beauty Salons Fournitures For Restaurants On my website I have a ...
0
votes
2answers
63 views

Handle Ruby on Rails resource when the singular is also plural?

Whats the best way to handle a singular resource, that itself is plural. For example a "settings page", that displays a selection of different settings. As I am displaying a single "Settings" ...
0
votes
1answer
69 views

Magento plural support

anybody knows whether magento utilizes zend's plural in templates? So far haven't found any traces in the code I want to make use of it to display 1 review, 3 reviews
0
votes
3answers
235 views

What should I do if I named a Model in Rails 3 plural?

I created a model called UserHasMessages based on some SO postings. I think this seems to be creating some challenges for me: How do I reference it with has_many? Should I use has_many ...
0
votes
2answers
658 views

Routing trouble on Rails 3 (related to singular/plural)

I've read around the resources on how routing in Rails 3 works, but am running into some difficulties. In my app there are Blogs and my routes.rb contains: resources :blogs root :to => ...
0
votes
2answers
103 views

Wordpress, a good search plugin?

I'm looking for Wordpress plugin that just improved the search results, but doesn't add the the search box. At the moment wordpress isn't even doing plurals. So does anyone know a good plugin that ...