Modification A03

This commit is contained in:
Deltacms 2022-04-19 18:21:58 +02:00
parent 5235936ccd
commit 1036348eb8
1 changed files with 19 additions and 2 deletions

View File

@ -48,7 +48,7 @@ class common {
// Numéro de version
const DELTA_UPDATE_URL = 'https://update.deltacms.fr/master/';
const DELTA_VERSION = '4.1.03';
const DELTA_VERSION = '4.1.04';
const DELTA_UPDATE_CHANNEL = "v4";
public static $actions = [];
@ -178,6 +178,10 @@ class common {
'nl' => 'Néerlandais (nl)',
'pt' => 'Portugais (pt)',
'sv' => 'Suédois (sv)',
'br' => 'Breton (br)',
'ca' => 'Catalan (ca)',
'co' => 'Corse (co)',
'eu' => 'Basque (eu)',
'none' => 'Autre langue'
];
public static $i18nList_en = [
@ -193,6 +197,10 @@ class common {
'nl' => 'Dutch (nl)',
'pt' => 'Portuguese (pt)',
'sv' => 'Swedish (sv)',
'br' => 'Breton (br)',
'ca' => 'Catalan (ca)',
'co' => 'Corsican (co)',
'eu' => 'Basque (eu)',
'none' => 'Other language'
];
public static $i18nList_int = [
@ -207,7 +215,16 @@ class common {
'nl' => 'Nederlands (nl)',
'pt' => 'Português (pt)',
'fi' => 'Suomalainen (fi)',
'sv' => 'Svenska (sv)'
'sv' => 'Svenska (sv)',
'br' => 'Brezhoneg (br)',
'ca' => 'Català (ca)',
'co' => 'Corsu (co)',
'eu' => 'Euskara (eu)',
'none' => 'Other language (?)'
];
// Langues non prises en charge par la traduction automatique
public static $i18nListSiteOnly = [
'br' => 'Breton (br)'
];
// Langue courante
public static $i18n;