2022-04-18 20:35:08 +00:00
..
2021-07-09 20:48:23 +00:00
2021-01-19 19:33:38 +02:00
2021-12-11 07:20:05 +00:00
2021-06-12 21:17:24 +02:00
2022-03-19 10:25:47 +00:00
2021-02-21 23:16:21 +00:00
2021-01-19 19:33:38 +02:00
2022-03-19 06:52:50 +00:00
2021-01-19 19:33:38 +02:00
2021-01-19 19:33:38 +02:00
2022-03-21 06:44:54 +02:00
2021-01-19 19:33:38 +02:00
2021-11-19 10:40:57 +00:00
2021-01-19 19:33:38 +02:00

To use an existing locale:

  • Open inc/settings.php with a text editor
  • Find the lang option and set it to the locale you want to use. Example: $this->lang = 'es_ES.utf8';

To create a new locale (example being "es_ES"):

  • Copy lang/en_US.utf8.php to a new file (e.g. lang/es_ES.utf8.php)
  • Edit the new file, change "class en_US" to "class es_ES" so it looks like this:
<?php
class es_ES {
    public function __construct() {
       ...
    }
}
  • Translate all array assignments, e.g. $array["title.bans"] = 'Baneos';