Skip to content

Commit cf9854a

Browse files
committed
Theme/Default: Add france language. Close #119
1 parent dff3e86 commit cf9854a

File tree

1 file changed

+56
-0
lines changed
  • application/themes/default/language/france

1 file changed

+56
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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 &copy; Copyright %s'
56+
]);

0 commit comments

Comments
 (0)