Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developping an administration application with Kohana 3 and I'm obviously working with a lot of forms.

The application needs to be multilangual and I'm very confused about how to manage my messages files and especially how to access them.

Does i18n support different folders and files inside the language folder?

E.g:

  • i18n
    • en
      • form
    • fr
      • form

Or does it support arrays in the language file?

i18n/fr.php

<?php defined('SYSPATH') or die('No direct script access.');

return array
(
   'common_form' => array(
                     'error_type' => 'Error message in French.',
                     'error_type_2' => 'Other error message.',
                    )


)

And if you can do that, how would you access these fields/files when you are translating a message?

Another thing I do not understand is how can I somehow link my translations to the error messages that live in the messages folder.

This is really confusing me. Also, how do you handle errors that do not have fields (errors that are not checked by Validate class)?

Thank you.

share|improve this question
Never done i18n in Kohana yet, but I have to soon, so if you can wait a bit longer, I may be able to help you. If you have found a solution, please post it here as an answer. Thanks. – alex Aug 10 '10 at 1:19

1 Answer

up vote 6 down vote accepted

messages/validate.php:

return array
(
'upload::not_empty' => __('validate.upload_empty'),
);

i18n/en.php:

return array
(
'validate.upload_empty' => 'Upload must not be empty',
);

i18n/ba.php:

return array
(
'validate.upload_empty' => 'Upload ne moze biti prazan',
);

etc. ( you define as many rules as you want ).

At least this is my practice, first time using i18n and it works well.

share|improve this answer
Thank you, this works fine and is way better than what I was planning to do! – Tobias Hourst Aug 11 '10 at 4:41
Was going to use this but noticed it says "Don't use __() in your messages files, as these files can be cached and will not work properly." in the kohana docs: kohanaframework.org/3.2/guide/kohana/files/messages – xylar May 9 '12 at 14:53
@xylar agreed, this is quite an old answer :) though in practice, you can break anything with caching so this 'solution' will still work on a smaller scale – Kemo May 10 '12 at 10:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.