-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.inc
82 lines (77 loc) · 5.2 KB
/
lang.inc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
$text = array('title' => array('fr' => 'La Vie est un Jeu',
'en' => 'Life is a Game'),
'50m' => array('fr' => 'Mets ta vie en jeu.<br>Chaque jour, de nouveaux objectifs pour<br>transformer ta vie en une extraordinaire aventure !',
'en' => '"Life is a game" is a multi-platform application that allow you yo add a plug-in in your real life : The achievement module!'),
'details' => array('fr' => 'En savoir plus »',
'en' => 'Learn more »'),
'err_lang' => array('fr' => 'Cette langue n\'existe pas !',
'en' => 'This language is not supported!'),
'head2' => array('fr' => 'Des défis au quotidien',
'en' => 'Self-decide goals'),
'head1' => array('fr' => 'Gagne des points à chaque réussite',
'en' => 'Win points for every success'),
'head3' => array('fr' => 'Partage avec ton réseau social',
'en' => 'Share with your social network'),
'content2' => array('fr' => 'Fais de ta vie un défi quotidien en te fixant des objectifs sous forme de missions regroupées en aventures. Découvre des millions de propositions de nouvelles missions à réaliser chaque jour en fonction de ton profil et de tes préférences. Ton quotidien ne sera plus jamais répétitif !',
'en' => 'Turn your life into a game, challenge yourself every day through objectives that will lead you to great adventures ! Millions of activities, for everyone, everywhere, all the time. Say goodbye to routine !'),
'content1' => array('fr' => 'Un véritable jeu dans lequel tu incarnes ton propre personnage : toi-même, dans ta vie réelle, pour gagner des points te permettant de gagner des items et monter des niveaux !',
'en' => 'Be yourself in a real game : your life, yourself as a character. Earn points and items through achievements and gain levels.'),
'content3' => array('fr' => 'Partage tes exploits en texte, en photos et en vidéos avec ton entourage grâce aux réseaux sociaux : Facebook, Google+, Twitter, ...',
'en' => 'Share your exploits with your circle of friends, with text, photos or videos, through Facebook, Google+, Twitter, ...'),
'participate_title' => array('fr' => 'Envie de participer à l\'aventure ?',
'en' => 'Want to join in the fun?'),
'participate' => array('fr' => 'Notre projet est encore en plein développement. C\'est pour ça que ce site ne donne pas beaucoup d\'information.<br>Si tu veux faire partie des premiers à mettre ta vie en jeu, inscris-toi avec ton adresse e-mail :',
'en' => 'Our project is not ready yet. That\'s why this website is empty.<br>If you want to be one of the first whose life is a game, subscribe with your email address:'),
'confirm_email' => array('fr' => 'Merci de participer à cette aventure ! On vous contactera très bientôt.',
'en' => 'Thanks for joining us in this funny adventure! We will contact you ASAP.'),
'report_epitech' => array('fr' => 'Rapport Intranet Epitech',
'en' => 'Epitech Intranet Report'),
'whatiseip' => array('fr' => 'L\'Epitech Innovative Project (EIP) est l\'étape principale dans le cursus des étudiants à Epitech, celle qui le fait passer de son statut d\'étudiant à celui de professionnel à part entière . Chaque année, les équipes travaillent ainsi en groupe sur leur projet de fin d’études.',
'en' => 'EIP means Epitech Innovative Projects. It\'s an end of study project for all the Epitech students.'),
'school' => array('fr' => 'École', 'en' => 'School'),
'promo' => array('fr' => 'Promo', 'en' => 'Promo'),
'city' => array('fr' => 'Ville', 'en' => 'City'),
'nick' => array('fr' => 'Pseudo', 'en' => 'Nickname'),
'site' => array('fr' => 'Page internet', 'en' => 'Website'),
'tech4' => array('fr' => 'Destination à l\'étranger en 2012-2013', 'en' => 'Destination abroad in 2012-2013'),
'menu' => array('menu' => array('section' => array('home' => array('fr' => 'Accueil',
'en' => 'Home',
'link' => '?home',
'icon' => 'home'),
'team' => array('fr' => 'L\'équipe',
'en' => 'Team',
'link' => '?team',
'icon' => 'user'),
'blog' => array('fr' => 'Blog',
'en' => 'Blog',
'link' => '?blog',
'icon' => 'th-list'),
)
),
'dev' => array('section' => array('sources' => array('fr' => 'GitHub',
'en' => 'GitHub',
'link_fr' => 'https://github.com/LaVieEstUnJeu/',
'link_en' => 'https://github.com/LaVieEstUnJeu/',
'icon' => 'cog'),
)
),
'eip' => array('section' => array('eip' => array('fr' => 'EIP',
'en' => 'EIP',
'link' => '?eip',
'icon' => 'briefcase'),
)
),
'lang' => array('dropdown' => array('fr' => '',
'en' => '',
'icon' => 'globe'),
'section' => array('fr' => array('fr' => 'Français',
'en' => 'Français',
'link' => '?lang_fr'),
'en' => array('fr' => 'English',
'en' => 'English',
'link' => '?lang_en')
)
)
),
);