******************************************************************** D R U P A L M O D U L E ******************************************************************** Name: i18n module Author: Jose A. Reyero Email: drupal at reyero dot net ******************************************************************** INSTALLATION: 1. Create folder 'modules/i18n' 2. Copy all the modules files, keeping directory structure, to the folder 'modules/i18n/' 3. To use url rewriting, this line should be added to your configuration file: include 'modules/i18n/i18n.inc' 4. For content translation, this module can manage language dependent tables. Yo need to: This feature is experimental ------------------------------------------------ 4.1. Modify $db_prefix and add $db_prefix_i18n in .conf file. This is a sample: $db_prefix=array ( 'default' => 'prefix_', // The default prefix ); $db_prefix_i18n = array ( // '**' will be replaced by language code at runtime. 'node' => 'prefix_**_' 'vocabulary' => 'drupalco_**_', 'term_synonim'=> 'drupalco_**_', 'term_data' => 'drupalco_**_', ); 4.2. Create table copys for each language: prefix_es_node, prefix_en_node, etc... *Any* table can be made language dependant. Just think about whether it makes sense. Suggested tables to be made language dependant are node tables, taxonomy tables....