Usage for apps of multiple languages.
$this->translate ("some text");
If you specify other languages confg/config.ini file this way:
translations = pl
phpway will create new file pl.php in config/dictionary/ directory
config/dictionary/pl.php
with new content.
$text['some text']='some text';
Here you can type text in polish language.
$text['some text']='jakis tekst';
To show your app with polish language change your URL to:
http://example.com/pl/ http://example.com/pl/controller/action . . .
