File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919
2020if (empty ($ lang ) || !is_array ($ lang ))
2121{
22- $ lang = array () ;
22+ $ lang = [] ;
2323}
2424
2525// DEVELOPERS PLEASE NOTE
3535// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
3636//
3737// Some characters you may want to copy&paste:
38- // ’ » “ ” …
38+ // ’ « » “ ” …
3939//
4040
4141/*
4848*
4949* Translators: Feel free to not translate these language strings
5050*/
51- $ lang = array_merge ($ lang , array (
51+ $ lang = array_merge ($ lang , [
5252 'EXCEPTION_FIELD_MISSING ' => 'Un champ obligatoire est manquant ' ,
5353 'EXCEPTION_INVALID_ARGUMENT ' => 'Argument spécifié incorrect pour `%1$s`. Motif : %2$s ' ,
5454 'EXCEPTION_OUT_OF_BOUNDS ' => 'Le champ `%1$s` a reçu une donnée incohérente ' ,
5555 'EXCEPTION_TOO_LONG ' => 'La donnée saisie était plus longue que la longueur maximale possible. ' ,
5656 'EXCEPTION_NOT_UNIQUE ' => 'La donnée n’était pas unique. ' ,
5757 'EXCEPTION_UNEXPECTED_VALUE ' => 'Le champ `%1$s` a reçu une donnée inattendue. Motif : %2$s ' ,
5858 'EXCEPTION_ILLEGAL_CHARACTERS ' => 'La donnée contenait des caractères interdits. ' ,
59- ) );
59+ ] );
You can’t perform that action at this time.
0 commit comments