Hi again.
If I find a section such as this in the sql file:
`period` enum('Day','Month','Year') NOT NULL default 'Month',
`status` enum('Active','Inactive') NOT NULL default 'Active',
`is_trial` char(3) NOT NULL default 'no',
Is it then possible for me to "translate" such a file by doing the following?
`period` enum('Tag','Monat','Jahr') NOT NULL default 'Monat',
`status` enum('Aktiv','Deaktiviert') NOT NULL default 'Aktiv',
`is_trial` char(3) NOT NULL default 'Nein',
I must have everything that's readable in the web browser translated to german.
It's not enough to translate just the template files. That might be good for a
family or a hobby portal, but not for one that's supposed to be 100% professional
in every way. Thank you.
Bookmarks