1<?php 2/** 3 * @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html 4 * @author Francois Merciol <dokuplugin@merciol.fr> 5 * 6 * English language file 7 */ 8 9// javascript 10$lang['js'] = 11 array ('pleaseWait' => 'Connection to the server in progress ...'); 12 13// commands 14$lang['Valid'] = 'Valid'; 15$lang['add'] = 'Add'; 16$lang['clear'] = 'Clear cache'; 17$lang['clearAll'] = 'Clear all cache'; 18$lang['clearCache'] = 'Clear cache'; // XXX 19$lang['created'] = 'Created'; 20$lang['modify'] = 'Modify'; 21$lang['modifyAll'] = 'Modify All'; 22$lang['prop'] = 'Suggest'; 23$lang['remove'] = 'Remove'; 24$lang['selected'] = 'Selected'; 25$lang['show'] = 'Show'; 26$lang['test'] = 'Test'; 27 28$lang['repeatType'] = array ('day' => 'days', 'week' => 'weeks', 'dayMonth' => 'months', 'dateMonth' => 'months', 'year' => 'years'); 29 30// placeholder 31$lang['titlePH'] = 'event title'; 32$lang['leadPH'] = 'Lead paragraph / organisation team / context / ... (optional)'; 33$lang['posterPH'] = 'http://... (optional)'; 34$lang['paperPH'] = 'http://... (optional)'; 35$lang['remarkPH'] = 'explanation / comments / remarks / ... (optional)'; 36$lang['ratePH'] = 'x € / y € (optional)'; 37$lang['cityPH'] = 'city (or INSEE code) +!!enter!!'; 38$lang['addrPH'] = '1, rue de la Tannerie ~br~ 56 000 +!!enter!!'; 39$lang['datePH'] = 'mm/dd/aa'; 40$lang['hourPH'] = '--h-- (ex: 09h30-15h)'; 41$lang['rootMoveDatePH'] = 'mm/dd/aa (move until this date)'; 42 43// messages 44$lang['days'] = array ('sunday' => 'S', 'monday' => 'M', 'tuesday' => 'T', 'wednesday' => 'W', 'friday' => 'F', 'thursday' => 'T', 'saturday' => 'S'); 45$lang['enterTip'] = 'Press \'enter\' to update this field!'; 46 47$lang['who'] = 'Who'; 48$lang['audience'] = 'Audience'; 49$lang['shared'] = array ('', 'Shared'); 50$lang['proposedBy'] = 'Proposed by'; 51$lang['what'] = 'What'; 52$lang['title'] = 'Title'; 53$lang['lead'] = 'Lead paragraph'; 54$lang['posterURL'] = 'Poster'; 55$lang['paperURL'] = 'Paper'; 56$lang['remark'] = 'Topic'; 57$lang['rate'] = 'Rate'; 58$lang['where'] = 'Where'; 59$lang['city'] = 'Commune'; 60$lang['addresse'] = 'Addresse'; 61$lang['when'] = 'When'; 62$lang['allDates'] = 'All dates'; 63$lang['inverted'] = 'Inverted'; 64$lang['noEvent'] = 'No event'; 65$lang['validation'] = 'Validation'; 66$lang['proposition'] = 'Proposition'; 67$lang['reactiveMap'] = 'Interactive map!'; 68$lang['toComplet'] = 'To complete'; 69 70$lang['audienceChoice'] = 'For whom ?'; 71$lang['memberChoice'] = 'Proposed by ?'; 72$lang['eventTypeChoice'] = 'What kind of event ?'; 73 74$lang['from'] = 'from'; 75$lang['to'] = 'to'; 76$lang['fromHour'] = 'from'; 77$lang['toHour'] = 'to'; 78$lang['at'] = 'at'; 79$lang['all'] = 'all'; 80$lang['each'] = 'each'; 81 82$lang['startError'] = "Validation couldn't be performed because:"; 83$lang['noAudienceError'] = 'audience miss'; 84$lang['noMemberError'] = 'member miss'; 85$lang['noTypeError'] = 'event type miss'; 86$lang['noWhereError'] = 'place miss'; 87$lang['noTitleError'] = 'title miss'; 88$lang['mktimeError'] = 'unsupported date (OVH server limitation is : 13 decembre 1901 < YYYY-mm-dd < 20 janvier 2038)'; 89$lang['pastError'] = 'date out of bounds'; 90$lang['pastToError'] = 'end date before start :-D'; 91$lang['badDateError'] = 'inappropriate date'; 92$lang['notMemberError'] = 'not member'; 93 94$lang['addEvent'] = 'Add an event'; 95$lang['proposedEvent'] = 'Suggest an event'; 96 97$lang['propSuccess'] = "Votre proposition est enregistrée. Nous allons vérifier qu'elle est conforme à l'esprit du FSL avant de la mettre en ligne. Merci de votre contributon."; 98 99$lang['notifySubject'] = '[Schedule] New proposal !'; 100$lang['notifyContent'] = "A new proposal is done.\n\n"; 101 102// toolTip 103$lang['tipPrevM'] = 'Previous mounth'; 104$lang['tipNextM'] = 'Next mounth'; 105 106// format 107$lang['dateFormat'] = 'mdY'; 108// $lang['orderedFormat'] = function ($num) { // XXX pb OVH 109// if ($num < 1) 110// return $num; 111// switch ($num) { 112// case 1: 113// return '1st'; 114// default: 115// return "{$num}th"; 116// } 117// }; 118 119$lang['orderedFormat'] = array (1 => '1st', 2 => '2th', 3 => '3th', 4 => '4th', 5 => '5th', 6 => '6th', 7 => '7th', 8 => '8th', 9 => '9th', 10 => '10th', 11 => '11th', 12 => '12th', 13 => '13th', 14 => '14th', 15 => '15th', 16 => '16th', 17 => '17th', 18 => '18th', 19 => '19th', 20 => '20th', 21 => '21th', 22 => '22th', 23 => '23th', 24 => '24th', 25 => '25th', 26 => '26th', 27 => '27th', 28 => '28th', 29 => '29th', 30 => '30th', 31 => '31th'); 120 121?> 122