The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
117 views

identify plurals of noun in java

I've seen people asked similar questions but without any good answer. I now encountered the same question, can anyone help? See below: Input: a list of words output: identify nouns in their plural ...
1
vote
3answers
692 views

Any standalone PHP inflector available?

As a title, is there any good PHP inflector for pluralizing and singularizing english words in PHP? Possibly standalone and available on GitHub, i know that there is some sort of implementation in ...
1
vote
1answer
583 views

Java inflector to convert plurals to singular forms

I am using the Java Inflector library to convert singular forms to plurals, example : 2 boat => 2 boats. However, it fails when the inputs are already plural. 1 boats => boats, butterflies => ...
3
votes
1answer
536 views

Define a singular rule in the bootstrap for Inflector

I'm using CakePHP 2.1 and need to define an Inflector rule for the word "Software", because CakePHP is converting all references to the plural form "Softwares" which isn't correct. Cake is looking for ...
2
votes
2answers
202 views

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 ...
0
votes
1answer
2k views

Rails 3 ActiveRecord Table Name Issue

I'm on Windows XP... Ruby 1.9.2 Rails 3.0.9 MS SQL Server 2005 I'm using tiny_tds + activerecord-sqlserver-adapter In my database I have table named t4. I have created a model like this: rails ...
4
votes
1answer
448 views

Is the proper Rails inflection of underscore 'underscoreize'?

It seems that with Rails/AR and the Inflector methods added to String by ActiveSupport, I would expect that by default, Nested::ClassDerived::FromAR.name.tableize == ...
0
votes
2answers
410 views

CakePHP: Use Inflector Class over whole array

I need to use Inflector::slug() over all results fetched from my database, which are, of course, retrieved in an array. Is it possible somehow, or I'll need to loop each result and slugify it? ...
4
votes
2answers
2k views

Rails 3 Inflection Problem

I'm having a problem with generating scaffold for a Regatta. When I run rails g scaffold Regatta name:string start_date:datetime I get a model named regattum and a controller called ...
3
votes
2answers
595 views

CakePHP Inflector slug issue

When I use: Inflector::slug("My Lovely & long slug"); On my local server I get: My_Lovely_long_slug When I use it on my server I get: Lo_l_lo_lu What gives? This issue is also affecting ...
0
votes
2answers
548 views

How do you customize transliterations in a Rails 3 app?

Ultimately, I would like to use Inflector.parameterize to create slugs for article heading that have a bunch of unicode chars in them (e.g. "ḤellẒ no" => "hellz-no"). According to ...
3
votes
2answers
788 views

Where is the appropriate place to define inflector rules in CakePHP 1.3?

In CakePHP 1.2, custom inflector rules could be defined in a file app/config/inflections.php. This file was removed in CakePHP 1.3. Instead, the documentation prescribes using the Inflector::rules ...
13
votes
4answers
2k views

Alternatives to Inflector.Net

I want to use inflector.net in my project. Just googled and it seems to have gone. :-< http://andrewpeters.net/inflectornet/ Are there any alternatives? EDIT (11 May 2011): It looks like ...