|
| 1 | +<?php defined('BASEPATH') OR exit('No direct script access allowed'); |
| 2 | + |
| 3 | +if(!isset($lang) || !is_array($lang)) |
| 4 | + $lang = []; |
| 5 | + |
| 6 | +/** |
| 7 | + * - RTL ----------------------------------------------------- |
| 8 | + * ----------------------------------------------------------- |
| 9 | + */ |
| 10 | +$lang['isRTL'] = 0; |
| 11 | + |
| 12 | +/** |
| 13 | + * - Global -------------------------------------------------- |
| 14 | + * ----------------------------------------------------------- |
| 15 | + */ |
| 16 | +$lang = array_merge($lang, [ |
| 17 | + 'global_or' => 'ou', |
| 18 | + 'global_icon' => 'Icône', |
| 19 | + 'global_okay' => 'D\'accord', |
| 20 | + 'global_accept' => 'Accepter', |
| 21 | + 'global_reject' => 'Refuser', |
| 22 | + 'global_cancel' => 'Annuler', |
| 23 | + 'global_online' => 'En ligne', |
| 24 | + 'global_offline' => 'Hors ligne', |
| 25 | + 'global_loading' => 'Chargement...', |
| 26 | + 'global_user_avatar' => 'Avatar de %s' |
| 27 | +]); |
| 28 | + |
| 29 | +/** |
| 30 | + * - Main Template ------------------------------------------- |
| 31 | + * ----------------------------------------------------------- |
| 32 | + */ |
| 33 | +$lang = array_merge($lang, [ |
| 34 | + # Logo |
| 35 | + 'logo' => 'Bienvenue sur %s', |
| 36 | + |
| 37 | + # Menu |
| 38 | + 'nav' => 'Navigation', |
| 39 | + |
| 40 | + # User buttons |
| 41 | + 'account' => 'Compte', |
| 42 | + 'register' => 'S\'inscrire', |
| 43 | + |
| 44 | + # Banner 1 |
| 45 | + 'banner01_text01' => 'Bienvenue sur %s', |
| 46 | + 'banner01_text02' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', |
| 47 | + |
| 48 | + # Banner 2 |
| 49 | + 'banner02_text01' => 'Apprenez comment', |
| 50 | + 'banner02_text02' => 'vous connecter', |
| 51 | + 'banner02_text03' => 'à nos royaumes', |
| 52 | + 'banner02_text04' => 'cliquez pour lire', |
| 53 | + |
| 54 | + # Copyright |
| 55 | + 'copyright' => '%s © Copyright %s' |
| 56 | +]); |
0 commit comments