Passa ai contenuti principali

install language on osTicket

this simple guide aims you to install and configure your language on osTicket i written this guide based on forum post http://osticket.com/forum/discussion/76252/installing-language-pack

instructions

  1. create folder my_language
  2. enter in folder
  3. dowload language pack from http://osticket.com/download
  4. create file php extract.php with this code
    <?php
    try {
    $phar = new Phar('da.phar');
    $phar->extractTo('./',null,true); // extract all files
    } catch (Exception $e) {
    echo "there was an error<br>";
    print_r($e);
    }
    ?>

    if you are on windows substitute direcory ‘./’ with ‘c:\xxxx’ on
    $phar->extractTo('./',null,true); // extract all files
  5. on shell you have to run script: php extract.php
  6. create in your folder site include/i18n/ folder with name language_COUNTRY. example: it_IT
  7. upload all extracted files, not extract.php and *.phar file, on your osTicket site in folder include/i18n/language_COUNTRY (include/i18n/it_IT)
  8. modify the file include/class.config.php line 157 with your language_COUNTRY
    'system_language' => 'en_US', to 'system_language' => 'it_IT',
  9. save
    Yeah! you are finished

if this guide helpful to you…

please add a review on https://plus.google.com/+BwlablaboratoriowebperilbusinessCiriè
thanks in advance

Update 2017

Now, after upload language files, you can change language in Administration preferences. No more point 8.


Commenti

Post popolari in questo blog

Ubuntu: La propria installazione di python è danneggiata. Correggere il collegamento simbolico «/usr/bin/python».

Questa è un problema, soprattutto se si vuole aggiornare la distribuzione.+ Dì la verità: hai pacioccato con le versioni di python vero? Volevi usare la 3.5 e non 2.7 e così hai aggiunto alternatives o manipolato il symlink. No? io si. Così in fase di aggiornamento mi sono bloccato. Allora per risolverlo ecco la soluzione: elimina tuttle le eventuali alternative : sudo update-alternatives –remove-all python crea il symlink alla 2.7 sudo ln -s /usr/bin/python3.5 /usr/bin/python aggiorna i permessi: sudo chmod 7777 /usr/bin/python Ora funziona tutto. La soluzione l’ho scovata qui: https://askubuntu.com/questions/448926/do-release-upgrade-python-install-is-corrupted