I haven't really worked with translation, yet. But I'm going to be
getting into it in a big way. I have
db.define_table('content',Field('title'),Field('body'))
I want to enter title and body in English, but then translate to other
languages.
Let's say I do this:
rows=db(db.content.id>0).select()
for row in rows:
trans_title=T(row.title)
trans_body=T(row.body)
Will something like that work?
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.