This commit is contained in:
Sebastien Guibert 2011-03-06 19:19:25 +01:00
parent 140960360c
commit 296b5360e0
1 changed files with 51 additions and 2 deletions

View File

@ -34,7 +34,7 @@ Partly based on this module https://github.com/GeertDD/kohana-lang
'fr' => array(
'i18n' => 'fr_FR',
'locale' => array('fr_FR.utf-8'),
'label' => 'français',
'label' => 'français',
),
'de' => array(
'i18n' => 'de_DE',
@ -45,4 +45,53 @@ Partly based on this module https://github.com/GeertDD/kohana-lang
),
);
###
### Example
If you try to access http://www.domain.tld/, the module will redirect it to http://www.domain.tld/en/ for example.
Let's say we have a product page, with kohana 3 we'd have something like :
Route::set('product.details', 'products/<product_id>-<product_slug>', array(
'product_id' => '[0-9]+',
'product_slug' => '.+',
))->defaults(array(
'controller' => 'product',
'action' => 'details',
'product_id' => NULL,
'product_slug' => '',
));
If you try to access http://www.domain.tld/products/12-my-product, it will redirect to http://www.domain.tld/en/products/12-my-product.
Now, I'm on the same page in french http://www.domain.tld/fr/products/12-my-product, but I'd like to translate it and set "produits" instead of "products". You can use the "Routes" object (notice the S at the end) to set multiple routes for each language.
Routes::set('product.details', array(
'en' => 'products/<product_id>-<product_slug>',
'fr' => 'produits/<product_id>-<product_slug>',
), array(
'product_id' => '[0-9]+',
'product_slug' => '.+',
))->defaults(array(
'controller' => 'product',
'action' => 'details',
'product_id' => NULL,
'product_slug' => '',
));
This creates 2 routes, the default language (english here) is required. If we have a third language like "de", it will use "en". The thing is, both url http://www.domain.tld/fr/products/12-my-product and http://www.domain.tld/en/produits/12-my-product will still work. To make sure this is not an issue, you should use reverse routing everywhere. With Route::get('product/details')->uri(array('product_id' => 12, 'product_slug' => 'my_product')), you'll get the complete uri with the current language code. To get another language, just pass a second paramter to Route::get('product/details', 'en').
### Language selector menu
To access the current language, you can use Request::$lang.
### Input
If you have any suggestions, found a bug or anything, feel free to share.