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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?php
// ############################################################################
// # #
// # Description: Texte du site #
// # #
// ############################################################################
$text = [
"incl_form_admin" => [
"btManageJob" => "Manage job categories",
"btManageUser" => "Manage users",
"btManageMission" => "Manage missions",
"formJobAddEn" => "Name in English",
"formJobAddFr" => "Name in French",
"submitJobAdd" => "Add",
"selJobDel" => "Choose a job to delete",
"submitJobDel" => "Delete",
"formDel" => "ID to delete",
"submitDel" => "Delete",
],
"incl_global_footer" => [
"main" => "Made by Debulois Quentin for my professional folder.<br>Handmade from December 2021 to April 2022",
],
"incl_form_userInfo" => [
"h2" => "Informations about the user.",
"lastname" => "Last name",
"firstname" => "First name",
"phoneNumber" => "Phone number",
"adress" => "Adress",
"zipCode" => "Zip code",
"city" => "City",
"myJobs" => "My jobs",
"jobsSel" => "Jobs",
"jobsAdd" => "Add",
"degree" => "Degree",
"capability" => "Capacities",
"description" => "Descriptions",
"submit" => "Modify"
],
"incl_form_login" => [
"h2" => "Login",
"email" => "Email",
"password" => "Password",
"rememberMe" => "Remember me",
"submit" => "Sign-in"
],
"incl_form_mission" => [
"h2" => "Form to register a mission",
"subject" => "Subject",
"review" => "Review",
"proId" => "Pro ID",
"submit" => "Register",
"jobsSel" => "Jobs"
],
"incl_table_myMission" => [
"pendingMission" => "Pending missions",
"ongoingMission" => "Ongoing missions",
"completedMission" => "Completed missions",
"noPending" => "There is actually no pending missions.",
"noOngoing" => "There is actually no ongoing missions.",
"noCompleted" => "There is actually no completed missions.",
"accept" => "Accept",
"validate" => "Validate"
],
"incl_global_navbar" => [
"h2" => "AlphaJob",
"btnSearch" => "Search",
"btnInfos" => "Modif. infos",
"btnMission" => "Register mission",
"btnMyMission" => "My missions",
"btnAdmin" => "Administration",
"btnLogin" => "Sign-in",
"btnLogout" => "Loggout",
"btnRegister" => "Sign-up",
"lang" => "Language",
"btnLang" => "Select"
],
"incl_form_register" => [
"h2" => "Form to sign-up",
"email" => "Email",
"password" => "Password",
"passNotice" => "The password must have at least:",
"passLength" => "8 characters,",
"passUpper" => "one uppercase,",
"passNumb" => "one number,",
"passSpecial" => "one special character.",
"notice" => "\"Admin\" is here for the purpose of the exam only:",
"isAdmin" => "Admin",
"isPro" => "Pro",
"isClient" => "Client",
"submit" => "Sign-up"
],
"incl_index_search" => [
"h2" => "Search a professional",
"searchBarName" => "Search by name",
"searchBarJob" => "Search by job",
"or" => "or",
"submit" => "Search",
"noResult" => "No result.",
"moreInfo" => "Infos",
"mandate" => "Mandate"
],
"incl_index_slideshow" => [
"slide1" => "Find the right proffessional for you.<br><br>For all your needs.<br><br><span>AlphaJob</span>",
"slide2" => "Only the bests proffessionals can register!<br><br>Quality of work guarantee!<br><br><span>AlphaJob</span>",
"slide3" => "Find the bests offers for your website today.<br><br>Discover our ready to use solutions.<br><br><span>AlphaJob</span>"
]
];
?>
|