Good point -- maybe that should be easier to turn off. For now, you could
do something like this (after your last table definition):
for table in db.tables:
db[table]._plural = db[table]._singular
Or if you don't like the singular conversion either, you could do:
db[table]._plural = db[table]._singular = table
You can also manually define both the singular and plural labels for
individual tables via:
db.define_table('my_table', ..., singular='My Table', plural='My Tables')
Anthony
On Sunday, December 18, 2011 11:42:38 AM UTC-5, Pepe Araya wrote:
>
> Why pluralize by default!!???!
>
> that ONLY work for english language, in spanish isn't so simply like add
> "s" for everything. I hate that, is like Rails...
> please, don't go in the wrong way...
>
> can I get my WELL FORMED labels back in some way?
>
> thanks.
>