From d181d38469426f9ccb4fb6881bf1817131893220 Mon Sep 17 00:00:00 2001 From: "M. Yilmaz SUSLU" Date: Sat, 18 Jul 2015 01:15:05 +0300 Subject: [PATCH] Improved localization docs #8 --- data/docs/04.Localization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/docs/04.Localization.md b/data/docs/04.Localization.md index 788b266..2e92250 100644 --- a/data/docs/04.Localization.md +++ b/data/docs/04.Localization.md @@ -2,7 +2,7 @@ ZF2 Boilerplate ships with a ready-to-use **Translator Service** to easily create multi-lingual applications. A custom translator factory creates a properly configured `translator` service instance and performs few additinal tasks to see translated validation messages which provided by ZF2. Factory located at `Core\Service\Factory\TranslatorServiceFactory`, you can check out or customize it by your requirements. ## Multi-Language application -You can create additonal language files which are necessary for your app under the [languages](../module/Core/language) folder. Following same convention will be enough. Current language is english (`en`) and fallback language is english (`en`) too by default. If you wish to change the default langauge, modify `translator` > `locale` config key in `Core` > `config` > `module.config.php` +You can create additonal language files which are necessary for your app under the [languages](/module/Core/language) folder. Following same convention will be enough. Current language is english (`en`) and fallback language is english (`en`) too by default. If you wish to change the default langauge, modify `translator` > `locale` config key in `Core` > `config` > `module.config.php` ## Usage of the Translator service In your controllers, grab the `translator` service instance via serviceLocator and use it: