This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( 'APCAL_CNST_LOADED' ) ) { |
||
4 | |||
5 | define( 'APCAL_CNST_LOADED' , 1 ) ; |
||
6 | |||
7 | // the language file for jscalendar "DHTML Date/Time Selector" |
||
8 | define('_APCAL_JS_CALENDAR','calendar-en.js'); |
||
9 | |||
10 | // format for jscalendar. see common/jscalendar/doc/html/reference.html |
||
11 | define('_APCAL_JSFMT_YMDN','%d %B %Y (%A)'); |
||
12 | |||
13 | // format for date() see http://jp.php.net/date |
||
14 | define('_APCAL_DTFMT_MINUTE','i'); |
||
15 | |||
16 | // definition of orders Y:year M:month W:week D:day N:dayname O:operand |
||
17 | define('_APCAL_FMT_MD','%2$s %1$s') ; |
||
18 | define('_APCAL_FMT_YMD','%1$s %2$s %3$s') ; |
||
19 | define('_APCAL_FMT_YMDN','%4$s %3$s %2$s %1$s'); |
||
20 | define('_APCAL_FMT_YMDO','%4$s%3$s%2$s%1$s'); |
||
21 | define('_APCAL_FMT_YMW','%1$s %2$s %3$s') ; |
||
22 | define('_APCAL_FMT_YW','Semaine %2$s %1$s'); |
||
23 | define('_APCAL_FMT_DHI','%1$s %2$s:%3$s'); |
||
24 | define('_APCAL_FMT_HI','%1$s:%2$s'); |
||
25 | |||
26 | // formats for sprintf() |
||
27 | define('_APCAL_FMT_YEAR_MONTH','%2$s %1$s') ; |
||
28 | define('_APCAL_FMT_YEAR','<font size="-1">ANNEE </font>%s') ; |
||
29 | define('_APCAL_FMT_WEEKNO','SEMAINE %s'); |
||
30 | |||
31 | define('_APCAL_ICON_LIST','Vue Liste'); |
||
32 | define('_APCAL_ICON_DAILY','Vue Journalière') ; |
||
33 | define('_APCAL_ICON_WEEKLY','Vue Hebdomadaire') ; |
||
34 | define('_APCAL_ICON_MONTHLY','Vue Mensuelle') ; |
||
35 | define('_APCAL_ICON_YEARLY','Vue Annuelle') ; |
||
36 | |||
37 | define('_APCAL_MB_SHOWALLCAT','Toutes les catégories'); |
||
38 | |||
39 | define("_APCAL_MB_LINKTODAY","Aujourd'hui") ; |
||
40 | define('_APCAL_MB_NOSUBJECT','(Pas de Sujet)') ; |
||
41 | define('_APCAL_MB_PREV_DATE','Hier') ; |
||
42 | define('_APCAL_MB_NEXT_DATE','Demain') ; |
||
43 | define('_APCAL_MB_PREV_WEEK','Semaine précédente') ; |
||
44 | define('_APCAL_MB_NEXT_WEEK','Semaine suivante') ; |
||
45 | define('_APCAL_MB_PREV_MONTH','Mois précédent') ; |
||
46 | define('_APCAL_MB_NEXT_MONTH','Mois suivant') ; |
||
47 | define('_APCAL_MB_PREV_YEAR','Année précédente') ; |
||
48 | define('_APCAL_MB_NEXT_YEAR','Année suivante') ; |
||
49 | |||
50 | |||
51 | define("_APCAL_MB_NOEVENT","Pas d'évènements") ; |
||
52 | define('_APCAL_MB_ADDEVENT','Ajouter un évènement') ; |
||
53 | define('_APCAL_MB_CONTINUING','(continuer)') ; |
||
54 | define('_APCAL_MB_RESTEVENT_PRE','plus') ; |
||
55 | define('_APCAL_MB_RESTEVENT_SUF','événement(s)') ; |
||
56 | define('_APCAL_MB_TIMESEPARATOR','--') ; |
||
57 | |||
58 | define('_APCAL_MB_ALLDAY_EVENT','Journée Entière') ; |
||
59 | define('_APCAL_MB_LONG_EVENT','Afficher via une barre') ; |
||
60 | define('_APCAL_MB_LONG_SPECIALDAY','Afficher comme un Jour Spécial (Anniv. par exemple)') ; |
||
61 | |||
62 | define('_APCAL_MB_PUBLIC','Public') ; |
||
63 | define('_APCAL_MB_PRIVATE','Privé') ; |
||
64 | define('_APCAL_MB_PRIVATETARGET',' parmi %s') ; |
||
65 | |||
66 | define("_APCAL_MB_LINK_TO_RRULE1ST","Sauter jusqu'au premier évènement ") ; |
||
67 | define("_APCAL_MB_RRULE1ST","C'est le premier évènement") ; |
||
68 | |||
69 | define('_APCAL_MB_EVENT_NOTREGISTER','Non enregistré') ; |
||
70 | define('_APCAL_MB_EVENT_ADMITTED','Approuvé') ; |
||
71 | define("_APCAL_MB_EVENT_NEEDADMIT","En attente d'approbation") ; |
||
72 | |||
73 | define('_APCAL_MB_TITLE_EVENTINFO',"Informations sur l'évènement") ; |
||
74 | define('_APCAL_MB_SUBTITLE_EVENTDETAIL',"Détails de l'évènement") ; |
||
75 | define('_APCAL_MB_SUBTITLE_EVENTEDIT',"Editer l'évènement") ; |
||
76 | |||
77 | define('_APCAL_MB_HOUR_SUF',':') ; |
||
78 | define('_APCAL_MB_MINUTE_SUF','') ; |
||
79 | |||
80 | define('_APCAL_MB_ORDER_ASC','Croissant'); |
||
81 | define('_APCAL_MB_ORDER_DESC','Décroissant'); |
||
82 | define('_APCAL_MB_SORTBY','Trié par:'); |
||
83 | define('_APCAL_MB_CURSORTEDBY','Evènements actuellement triés par:'); |
||
84 | |||
85 | define('_APCAL_MB_LABEL_CHECKEDITEMS','Les événements cochés sont:'); |
||
86 | define('_APCAL_MB_LABEL_OUTPUTICS','Exporter dans iCalendar'); |
||
87 | |||
88 | define('_APCAL_MB_ICALSELECTPLATFORM','Sélectionner la plateforme'); |
||
89 | |||
90 | define('_APCAL_TH_SUMMARY','Intitulé') ; |
||
91 | define('_APCAL_TH_TIMEZONE','Fuseau Horaire NE PAS MODIFIER SVP') ; |
||
92 | define('_APCAL_TH_STARTDATETIME','Date de début') ; |
||
93 | define('_APCAL_TH_ENDDATETIME','Date de fin') ; |
||
94 | define('_APCAL_TH_ALLDAYOPTIONS','Option Journée Entière') ; |
||
95 | define('_APCAL_TH_LOCATION','Lieu') ; |
||
96 | |||
97 | define('_APCAL_TH_CONTACT','Contact') ; |
||
98 | define('_APCAL_TH_CATEGORIES','Catégories'); |
||
99 | define('_APCAL_TH_SUBMITTER','Auteur'); |
||
100 | define('_APCAL_TH_CLASS','Type') ; |
||
101 | define('_APCAL_TH_DESCRIPTION','Description') ; |
||
102 | define('_APCAL_TH_RRULE','Périodicité') ; |
||
103 | define('_APCAL_TH_ADMISSIONSTATUS','Statut') ; |
||
104 | define('_APCAL_TH_LASTMODIFIED','Dernière modification'); |
||
105 | |||
106 | define("_APCAL_NTC_MONTHLYBYMONTHDAY","(Numéro d'entrée)") ; |
||
107 | define('_APCAL_NTC_EXTRACTLIMIT','** Seulement %s évènements au maximum sont générés.') ; |
||
108 | define("_APCAL_NTC_NUMBEROFNEEDADMIT","(%s éléments nécessitent une approbation)") ; |
||
109 | |||
110 | define('_APCAL_OPT_PRIVATEMYSELF','seulement moi') ; |
||
111 | define('_APCAL_OPT_PRIVATEGROUP','groupe %s') ; |
||
112 | define('_APCAL_OPT_PRIVATEINVALID','(groupe invalide)') ; |
||
113 | |||
114 | define('_APCAL_MB_OP_AFTER','Après'); |
||
115 | define('_APCAL_MB_OP_BEFORE','Avant'); |
||
116 | define('_APCAL_MB_OP_ON','Sur'); |
||
117 | define('_APCAL_MB_OP_ALL','Tout'); |
||
118 | |||
119 | define("_APCAL_CNFM_SAVEAS_YN","Etes-vous d'accord pour sauvegarder ceci comme nouvel enregistrement ?") ; |
||
120 | define("_APCAL_CNFM_DELETE_YN","Etes-vous d'accord pour supprimer cet enregistrement ?") ; |
||
121 | |||
122 | define('_APCAL_ERR_INVALID_EVENT_ID','Erreur: EventID non trouvé') ; |
||
123 | define('_APCAL_ERR_NOPERM_TO_SHOW',"Erreur: Vous n'avez pas la permission de voir") ; |
||
124 | define('_APCAL_ERR_NOPERM_TO_OUTPUTICS',"Erreur: Vous n'avez pas la permission d'extraire iCalendar") ; |
||
125 | define("_APCAL_ERR_LACKINDISPITEM","L'élément %s est vide.<br />Retournez en cliquant sur le bouton Précédent de notre navigateur web") ; |
||
126 | |||
127 | define('_APCAL_BTN_JUMP','Saut') ; |
||
128 | define('_APCAL_BTN_NEWINSERTED','Nouvelle insertion') ; |
||
129 | define('_APCAL_BTN_SUBMITCHANGES',' Modifier! ') ; |
||
130 | define('_APCAL_BTN_SAVEAS','Sauvegarder sous') ; |
||
131 | define('_APCAL_BTN_DELETE','Effacer') ; |
||
132 | define('_APCAL_BTN_DELETE_ONE','Supprimer seulement un seul enregistrement'); |
||
133 | define('_APCAL_BTN_EDITEVENT','Editer') ; |
||
134 | define('_APCAL_BTN_RESET','Réinitialiser') ; |
||
135 | define('_APCAL_BTN_OUTPUTICS_WIN','iCalendar(Win)') ; |
||
136 | define('_APCAL_BTN_OUTPUTICS_MAC','iCalendar(Mac)') ; |
||
137 | define('_APCAL_BTN_PRINT','Imprimer'); |
||
138 | define('_APCAL_BTN_IMPORT','Importer!'); |
||
139 | define('_APCAL_BTN_UPLOAD','Uploader!'); |
||
140 | define('_APCAL_BTN_EXPORT','Exporter!'); |
||
141 | define('_APCAL_BTN_EXTRACT','Extraire'); |
||
142 | define('_APCAL_BTN_ADMIT','Accepter'); |
||
143 | define('_APCAL_BTN_MOVE','Déplacer'); |
||
144 | define('_APCAL_BTN_COPY','Copier'); |
||
145 | |||
146 | define('_APCAL_RR_EVERYDAY','Chaque jour') ; |
||
147 | define('_APCAL_RR_EVERYWEEK','Chaque semaine') ; |
||
148 | define('_APCAL_RR_EVERYMONTH','Chaque mois') ; |
||
149 | define('_APCAL_RR_EVERYYEAR','Chaque année') ; |
||
150 | define('_APCAL_RR_FREQDAILY','Journalier') ; |
||
151 | define('_APCAL_RR_FREQWEEKLY','Hebdomadaire') ; |
||
152 | define('_APCAL_RR_FREQMONTHLY','Mensuel') ; |
||
153 | define('_APCAL_RR_FREQYEARLY','Annuel') ; |
||
154 | define('_APCAL_RR_FREQDAILY_PRE','Pendant ') ; |
||
155 | define('_APCAL_RR_FREQWEEKLY_PRE','Pendant ') ; |
||
156 | define('_APCAL_RR_FREQMONTHLY_PRE','Pendant ') ; |
||
157 | define('_APCAL_RR_FREQYEARLY_PRE','Pendant ') ; |
||
158 | define('_APCAL_RR_FREQDAILY_SUF','jour(s)') ; |
||
159 | define('_APCAL_RR_FREQWEEKLY_SUF','semaine(s)') ; |
||
160 | define('_APCAL_RR_FREQMONTHLY_SUF','mois') ; |
||
161 | define('_APCAL_RR_FREQYEARLY_SUF','année(s)') ; |
||
162 | define('_APCAL_RR_PERDAY','tous les %s jours') ; |
||
163 | define('_APCAL_RR_PERWEEK','toutes les %s semaines') ; |
||
164 | define('_APCAL_RR_PERMONTH','tous les %s mois') ; |
||
165 | define('_APCAL_RR_PERYEAR','tous les %s ans') ; |
||
166 | define('_APCAL_RR_COUNT','<br />%s fois') ; |
||
167 | define("_APCAL_RR_UNTIL","<br />jusqu'à %s") ; |
||
168 | define('_APCAL_RR_R_NORRULE','Récurrence Non') ; |
||
169 | define('_APCAL_RR_R_YESRRULE','Récurrence Oui') ; |
||
170 | define('_APCAL_RR_OR','ou') ; |
||
171 | define('_APCAL_RR_S_NOTSELECTED','- non sélectionné -') ; |
||
172 | define('_APCAL_RR_S_SAMEASBDATE','Identique à la date de début') ; |
||
173 | define('_APCAL_RR_R_NOCOUNTUNTIL','Pas de conditions de fin') ; |
||
174 | define('_APCAL_RR_R_USECOUNT_PRE','répéter') ; |
||
175 | define('_APCAL_RR_R_USECOUNT_SUF','fois') ; |
||
176 | define("_APCAL_RR_R_USEUNTIL","jusqu'à") ; |
||
177 | |||
178 | // Added by goffy for online registration handling |
||
179 | define('_APCAL_RO_CANCEL','Action annulée'); |
||
180 | define('_APCAL_RO_RADIO_YES','Oui'); |
||
181 | define('_APCAL_RO_RADIO_NO','Non'); |
||
182 | |||
183 | define('_APCAL_RO_ONLINE_POSS','Pour ces événements, l'inscription en ligne est possible. '); |
||
184 | define('_APCAL_RO_ONLINE_POSS_2','Pour cet événement, l'inscription en ligne est possible. '); |
||
185 | define('_APCAL_RO_ONLY_MEMBERS','L'inscription en ligne n'est possible que pour les utilisateurs enregistrés. '); |
||
186 | define('_APCAL_RO_ONLINE_NO','L'inscription en ligne n'est pas activée pour cet événement'); |
||
187 | define('_APCAL_RO_ONLINE_YES','L'inscription en ligne est activée pour cet événement'); |
||
188 | define('_APCAL_RO_ONLINE_ACTIVATE','Activer l'inscription en ligne pour cet événement'); |
||
189 | define('_APCAL_RO_ONLINE_DEACTIVATE','Ne pas utiliser l'inscription en ligne pour cet événement'); |
||
190 | define('_APCAL_RO_ONLINE','Inscriptions'); |
||
191 | define('_APCAL_RO_BTN_ADD','S'inscrire'); |
||
192 | define('_APCAL_RO_BTN_ADDMORE','Modifier ou ajouter une inscription'); |
||
193 | define('_APCAL_RO_BTN_REMOVE','Se désinscrire'); |
||
194 | define('_APCAL_RO_ENABLE_ONLINE','Inscription en ligne'); |
||
195 | define('_APCAL_RO_NOMEMBERS','Il n'y a pas d'inscription pour cet événement'); |
||
196 | define('_APCAL_RO_BTN_LISTMEMBERS','Liste des participants'); |
||
197 | define('_APCAL_RO_SUCCESS_ADD','Vous vous êtes inscrit à cet événement avec succès'); |
||
198 | define('_APCAL_RO_SUCCESS_REMOVE','Vous vous êtes désinscrit de cet événement avec succès'); |
||
199 | define('_APCAL_RO_UNAME','Personnes inscrites'); |
||
200 | define('_APCAL_RO_FIRSTNAME','Prénom'); |
||
201 | define('_APCAL_RO_LASTNAME','Nom'); |
||
202 | define('_APCAL_RO_EMAIL','Courriel'); |
||
203 | define('_APCAL_RO_EXTRAINFO1',''); //use it as you want; if you keep it blank, it will be invisible; if you change later, it has no effect on the data himself |
||
204 | define('_APCAL_RO_EXTRAINFO2',''); //use it as you want, if you keep it blank, it will be invisible |
||
205 | define('_APCAL_RO_EXTRAINFO3',''); //use it as you want, if you keep it blank, it will be invisible |
||
206 | define('_APCAL_RO_EXTRAINFO4',''); //use it as you want, if you keep it blank, it will be invisible |
||
207 | define('_APCAL_RO_EXTRAINFO5',''); //use it as you want, if you keep it blank, it will be invisible |
||
208 | |||
209 | define('_APCAL_RO_BTN_CONF_ADD','Confirmer l'inscription'); |
||
210 | define('_APCAL_RO_BTN_CONF_ADD_MORE','Confirmer votre inscription et invitez plus de gens'); |
||
211 | define('_APCAL_RO_BTN_CONF_REMOVE','Confirmer la désinscription'); |
||
212 | define('_APCAL_RO_BTN_CANCEL','Annuler'); |
||
213 | define('_APCAL_RO_EVENT','événement'); |
||
214 | define('_APCAL_RO_TITLE1','S'inscrire à un événement'); |
||
215 | define('_APCAL_RO_OBLIGATORY','Ces champs sont obligatoires'); |
||
216 | |||
217 | define('_APCAL_RO_ERROR_REMOVE','Une erreur est survenue lors de votre désinscription'); |
||
218 | define('_APCAL_RO_ERROR_ADD','Une erreur est survenue lors de votre inscription'); |
||
219 | define('_APCAL_RO_BTN_BACK','Retour en arrière'); |
||
220 | define('_APCAL_RO_BACK','Vous serez redirigé vers la page précédente'); |
||
221 | define('_APCAL_RO_ONLINE2','Inscriptions en ligne'); |
||
222 | define('_APCAL_RO_ACTION','Action'); |
||
223 | |||
224 | define('_APCAL_RO_TITLE2','Activer l'inscription en ligne pour cet événement'); |
||
225 | define('_APCAL_RO_BTN_RO_EDIT','Modifier l'inscription en ligne'); |
||
226 | define('_APCAL_RO_BTN_RO_DEACTIVATE','Supprimer l'inscription en ligne'); |
||
227 | define('_APCAL_RO_BTN_RO_ACTIVATE','Activer'); |
||
228 | define('_APCAL_RO_QUANTITY','Nombre maximal de participants<br/>(0 = sans limite)'); |
||
229 | define('_APCAL_RO_QUANTITY2','Nombre maximal de participants'); |
||
230 | define('_APCAL_RO_DATELIMIT','Date limite pour l'inscription en ligne'); |
||
231 | define('_APCAL_RO_EMAIL_NOTIFY','Adresse courriel pour les notifications (Laissez vide si vous ne voulez pas recevoir de notifications)'); |
||
232 | define('_APCAL_RO_BTN_CONF_ACTIVATE','Confirmer'); |
||
233 | define('_APCAL_RO_ERROR_RO_ACTIVATE','Une erreur est survenue lors de l'activation de l'inscription en ligne'); |
||
234 | define('_APCAL_RO_SUCCESS_RO_ACTIVATE','Inscription en ligne activé avec succès'); |
||
235 | define('_APCAL_RO_ERROR_RO_DEACTIVATE','Une erreur est survenue lors de la désactivation de l'inscription en ligne'); |
||
236 | define('_APCAL_RO_SUCCESS_RO_DEACTIVATE','Inscription en ligne désactivé avec succès'); |
||
237 | define('_APCAL_RO_ERROR_FULL','Il n'y a plus de places disponible pour cet événement'); |
||
238 | define('_APCAL_RO_ERROR_TIMEOUT','La date limite d'inscription est dépassé'); |
||
239 | define('_APCAL_RO_ERROR_OBLIGATORY','Veuillez remplir les champs obligatoire \"%f\"'); |
||
240 | define('_APCAL_RO_BTN_CONF_SAVE','Sauvegarder'); |
||
241 | define('_APCAL_RO_BTN_CONF_EDIT','Sauvegarder les changements'); |
||
242 | |||
243 | define('_APCAL_RO_MAIL_SUBJ_ADD','Info registration'); |
||
244 | define('_APCAL_RO_MAIL_SUBJ_REMOVE','Info de-registration'); |
||
245 | define('_APCAL_RO_MAIL_SUBJ_TEXT','Information sur l'événement'); |
||
246 | define('_APCAL_RO_DATE','Date'); |
||
247 | define('_APCAL_RO_LOCATION','Emplacement'); |
||
248 | define('_APCAL_RO_LINK','Lien vers l'événement'); |
||
249 | define('_APCAL_RO_TITLE3','Liste des inscriptions existantes'); |
||
250 | define('_APCAL_RO_TITLE4','Envoyer un courriel à tous les participants'); |
||
251 | define('_APCAL_RO_MAIL_SENDER','Expéditeur'); |
||
252 | define('_APCAL_RO_MAIL_SUBJ','Objet'); |
||
253 | define('_APCAL_RO_MAIL_BODY1','Texte du courriel'); |
||
254 | define('_APCAL_RO_MAIL_BODY2','Les expressions entre accolades seront remplacées (ex: {NAME} sera remplacé par le prénom et le nom)'); |
||
255 | define('_APCAL_RO_BTN_SEND','Envoyer'); |
||
256 | define('_APCAL_RO_MAILSENT',' message(s) envoyé(s)'); |
||
257 | |||
258 | define('_APCAL_RO_TITLE5','Modifier les inscriptions'); |
||
259 | define('_APCAL_RO_BTN_EDIT','Modifier'); |
||
260 | define('_APCAL_RO_SUCCESS_EDIT','Modification des informations d'inscriptions réuissies'); |
||
261 | define('_APCAL_RO_ERROR_EDIT','Une erreur est survenue lors de la modification de l'inscription'); |
||
262 | define('_APCAL_RO_SEND_CONF1','Confirmation par courriel'); |
||
263 | define('_APCAL_RO_SEND_CONF2','Envoyé à'); |
||
264 | define('_APCAL_RO_SEND_CONF3','Envoyer une confirmation par courriel: '); |
||
265 | |||
266 | define('_APCAL_RO_REDIRECT','Vous serez redirigé vers l'activation des inscriptions en ligne'); |
||
267 | define('_APCAL_RO_SUCCESS_NEW_EVENT','Événement créé avec succès'); |
||
268 | define('_APCAL_RO_SUCCESS_DELETE_EVENT','Événement supprimé avec succès'); |
||
269 | define('_APCAL_RO_SUCCESS_UPDATE_EVENT','Événement modifié avec succès'); |
||
270 | define('_APCAL_RO_SUCCESS_COPY_EVENT','Événement copié avec succès'); |
||
271 | |||
272 | } |
||
273 | |||
274 | ?> |
||
0 ignored issues
–
show
|
Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.
A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.