claus wrote:This is great stuff!!!
Just wrap any text with @@ like so: @@my super text@@
you can use it wit alt tags for images, title tags for links, text within your content, within your templates....
Every time a user with a new (browser) language setting is hitting the site, a new file will be placed into /template/lemplate_lang like en-us.php, de-de.php. Now you only need to translate it:
$i18n_tokens['Land / Sprache wählen'] = 'Choose Country / Language';
As I've said before: great stuff

Hi, if I understand, all the phrases in my site that I would link to translate must be enclosed in @@my text@@, so when a new user come to my site (with, for example, an italian browser) a file (in this example, it-it.php) is created.
So now I must open the file, translate the text in italian and put this
$i18n_tokens['Land / Sprache wählen'] = 'Choose Country / Language';
and the new language is avalaible for the italian user (only with respect to the translated text, obviously).
It's correct?