-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang.php
26 lines (25 loc) · 697 Bytes
/
lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$langs = array(
'en' => array(
'name' => 'English',
'strings' => array(
'showcase' => 'SHOWCASE',
'templateshowcase' => 'Template showcase',
'search' => 'Search',
'tags' => 'Tags',
'import' => 'Import',
'foreditor' => 'For HTML Editor',
)
),
'fr' => array(
'name' => 'Français',
'strings' => array(
'tags' => 'Tags',
'showcase' => 'VITRINE',
'templateshowcase' => 'Vitrine de gabarits',
'search' => 'Rechercher',
'import' => 'Importer',
'foreditor' => 'Pour éditeur HTML',
)
),
);