Is it POSSIBLE ??? Editing the SQL File like this ...
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.
Re: Is it POSSIBLE ??? Editing the SQL File like this ...
It's probably going to be pretty hard to change something like that as changing the commands to be language localized would also require you to edit what's being inputted into the system. Since you cannot edit the PHP files for vShare, I don't think that what you are wanting to do is possible. One thing to note is that SQL is not read by the browser. SQL is a server-side language (along with PHP). That code is only executed by the server.