We are officially unavailable due National Holidays from 10 April 2024 to 12 April 2024. During these days support time could be a little bit high. As soon as we will be back, we will reply to you on an urgent basis

Okay
  Print

How to Translate language in Worketic?

Translation of strings is termed as localization in laravel official documention.

You can change language according to your need in worketic by following the steps given below.

  • Go to project main folder you will find "resources" folder e.g worketic > resources 


  • There you will find a folder named "lang"  


  • In which there are language folders like "en", "de" etc. 


  • If your required folder exist then you need to do the following steps for translating or changing words

    • you can find 6 files containing application translation you can change words value as you required.

    • you can find most of the translation in lang.php file.

Create New Language

If your required folder not exist then you can create new language by following steps

  • Create your language folder with its code name e.g "en", "de" etc.

  • Copy all the files from "en" folder and paste it in your folder that you want your application to be translated in.  


  • All files contain the translated strings of the whole application. You have to translate all files manually.
  • Go to project main folder (root) -> app folder -> Helper.php 


  • Open Helper.php find (getTranslatedLang) function add your created language in list e.g 
    'fr' => array( 'code' => 'fr', 'title' => 'French', ), 
  • Go to Admin Dashboard -> General Settings you will find "Language Settings" option if you do previous step correctly you will find your language in the dropdown as shown in image below. 


  • select your language and click save. 


  • If language not change then go to Admin Dashboard -> General Settings > Cache clear or clear all the cache from there as shown in below image. 



For more information regrading translation in laravel you can consult its documention Laravel Localization