First
This commit is contained in:
121
lang/en/lang.php
Normal file
121
lang/en/lang.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/**
|
||||
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
|
||||
* @author Francois Merciol <dokuplugin@merciol.fr>
|
||||
*
|
||||
* English language file
|
||||
*/
|
||||
|
||||
// javascript
|
||||
$lang['js'] =
|
||||
array ('pleaseWait' => 'Connection to the server in progress ...');
|
||||
|
||||
// commands
|
||||
$lang['Valid'] = 'Valid';
|
||||
$lang['add'] = 'Add';
|
||||
$lang['clear'] = 'Clear cache';
|
||||
$lang['clearAll'] = 'Clear all cache';
|
||||
$lang['clearCache'] = 'Clear cache'; // XXX
|
||||
$lang['created'] = 'Created';
|
||||
$lang['modify'] = 'Modify';
|
||||
$lang['modifyAll'] = 'Modify All';
|
||||
$lang['prop'] = 'Suggest';
|
||||
$lang['remove'] = 'Remove';
|
||||
$lang['selected'] = 'Selected';
|
||||
$lang['show'] = 'Show';
|
||||
$lang['test'] = 'Test';
|
||||
|
||||
$lang['repeatType'] = array ('day' => 'days', 'week' => 'weeks', 'dayMonth' => 'months', 'dateMonth' => 'months', 'year' => 'years');
|
||||
|
||||
// placeholder
|
||||
$lang['titlePH'] = 'event title';
|
||||
$lang['leadPH'] = 'Lead paragraph / organisation team / context / ... (optional)';
|
||||
$lang['posterPH'] = 'http://... (optional)';
|
||||
$lang['paperPH'] = 'http://... (optional)';
|
||||
$lang['remarkPH'] = 'explanation / comments / remarks / ... (optional)';
|
||||
$lang['ratePH'] = 'x € / y € (optional)';
|
||||
$lang['cityPH'] = 'city (or INSEE code) +!!enter!!';
|
||||
$lang['addrPH'] = '1, rue de la Tannerie ~br~ 56 000 +!!enter!!';
|
||||
$lang['datePH'] = 'mm/dd/aa';
|
||||
$lang['hourPH'] = '--h-- (ex: 09h30-15h)';
|
||||
$lang['rootMoveDatePH'] = 'mm/dd/aa (move until this date)';
|
||||
|
||||
// messages
|
||||
$lang['days'] = array ('sunday' => 'S', 'monday' => 'M', 'tuesday' => 'T', 'wednesday' => 'W', 'friday' => 'F', 'thursday' => 'T', 'saturday' => 'S');
|
||||
$lang['enterTip'] = 'Press \'enter\' to update this field!';
|
||||
|
||||
$lang['who'] = 'Who';
|
||||
$lang['audience'] = 'Audience';
|
||||
$lang['shared'] = array ('', 'Shared');
|
||||
$lang['proposedBy'] = 'Proposed by';
|
||||
$lang['what'] = 'What';
|
||||
$lang['title'] = 'Title';
|
||||
$lang['lead'] = 'Lead paragraph';
|
||||
$lang['posterURL'] = 'Poster';
|
||||
$lang['paperURL'] = 'Paper';
|
||||
$lang['remark'] = 'Topic';
|
||||
$lang['rate'] = 'Rate';
|
||||
$lang['where'] = 'Where';
|
||||
$lang['city'] = 'Commune';
|
||||
$lang['addresse'] = 'Addresse';
|
||||
$lang['when'] = 'When';
|
||||
$lang['allDates'] = 'All dates';
|
||||
$lang['inverted'] = 'Inverted';
|
||||
$lang['noEvent'] = 'No event';
|
||||
$lang['validation'] = 'Validation';
|
||||
$lang['proposition'] = 'Proposition';
|
||||
$lang['reactiveMap'] = 'Interactive map!';
|
||||
$lang['toComplet'] = 'To complete';
|
||||
|
||||
$lang['audienceChoice'] = 'For whom ?';
|
||||
$lang['memberChoice'] = 'Proposed by ?';
|
||||
$lang['eventTypeChoice'] = 'What kind of event ?';
|
||||
|
||||
$lang['from'] = 'from';
|
||||
$lang['to'] = 'to';
|
||||
$lang['fromHour'] = 'from';
|
||||
$lang['toHour'] = 'to';
|
||||
$lang['at'] = 'at';
|
||||
$lang['all'] = 'all';
|
||||
$lang['each'] = 'each';
|
||||
|
||||
$lang['startError'] = "Validation couldn't be performed because:";
|
||||
$lang['noAudienceError'] = 'audience miss';
|
||||
$lang['noMemberError'] = 'member miss';
|
||||
$lang['noTypeError'] = 'event type miss';
|
||||
$lang['noWhereError'] = 'place miss';
|
||||
$lang['noTitleError'] = 'title miss';
|
||||
$lang['mktimeError'] = 'unsupported date (OVH server limitation is : 13 decembre 1901 < YYYY-mm-dd < 20 janvier 2038)';
|
||||
$lang['pastError'] = 'date out of bounds';
|
||||
$lang['pastToError'] = 'end date before start :-D';
|
||||
$lang['badDateError'] = 'inappropriate date';
|
||||
$lang['notMemberError'] = 'not member';
|
||||
|
||||
$lang['addEvent'] = 'Add an event';
|
||||
$lang['proposedEvent'] = 'Suggest an event';
|
||||
|
||||
$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.";
|
||||
|
||||
$lang['notifySubject'] = '[Schedule] New proposal !';
|
||||
$lang['notifyContent'] = "A new proposal is done.\n\n";
|
||||
|
||||
// toolTip
|
||||
$lang['tipPrevM'] = 'Previous mounth';
|
||||
$lang['tipNextM'] = 'Next mounth';
|
||||
|
||||
// format
|
||||
$lang['dateFormat'] = 'mdY';
|
||||
// $lang['orderedFormat'] = function ($num) { // XXX pb OVH
|
||||
// if ($num < 1)
|
||||
// return $num;
|
||||
// switch ($num) {
|
||||
// case 1:
|
||||
// return '1st';
|
||||
// default:
|
||||
// return "{$num}th";
|
||||
// }
|
||||
// };
|
||||
|
||||
$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');
|
||||
|
||||
?>
|
29
lang/en/settings.php
Normal file
29
lang/en/settings.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
|
||||
* @author Francois Merciol <dokuplugin@merciol.fr>
|
||||
*
|
||||
* English language file
|
||||
*/
|
||||
|
||||
// for the configuration manager
|
||||
$lang['scheduleGroup'] = 'in this group one can add event';
|
||||
$lang['adminGroup'] = 'admin group with all rights on events';
|
||||
$lang['dataDir'] = 'directory contains XML file per group';
|
||||
$lang['groupsDir'] = 'directory where group names could be find';
|
||||
$lang['noSchedule'] = 'forbiden group names';
|
||||
$lang['scheduleDir'] = 'wiki page for schedule (contains one dir per group)';
|
||||
$lang['sharedDir'] = 'directory for shared events';
|
||||
$lang['scheduleWhat'] = 'type of events per categrory (c1:w1,w2|c2:w3,w4|c3:w5,w6,w7)';
|
||||
$lang['scheduleAudience'] = 'type of public';
|
||||
$lang['iconName'] = 'logo name of the group which define an event (a1,a2,a3)';
|
||||
$lang['iconWidth'] = 'logo width of the group which define an event';
|
||||
$lang['repeatPosition'] = 'Repeat event position (grouped on top or isolated)';
|
||||
$lang['bubblePosition'] = 'tooltips position of calendar';
|
||||
|
||||
$lang['useMap'] = 'Display map';
|
||||
$lang['defaultCenter'] = "Empty map default localization (lat, lon)";
|
||||
$lang['defaultZoom'] = "Default zoom";
|
||||
$lang['migrate'] = 'Performe data migration';
|
||||
$lang['showOldValues'] = 'Highlight non migrate data';
|
||||
?>
|
121
lang/fr/lang.php
Normal file
121
lang/fr/lang.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/**
|
||||
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
|
||||
* @author Francois Merciol <dokuplugin@merciol.fr>
|
||||
*
|
||||
* French language file
|
||||
*/
|
||||
|
||||
// javascript
|
||||
$lang['js'] =
|
||||
array ('pleaseWait' => 'Connexion avec le serveur en cours ...');
|
||||
|
||||
// commands
|
||||
$lang['add'] = 'Ajouter';
|
||||
$lang['clear'] = 'Effacer le cache';
|
||||
$lang['clearAll'] = 'Effacer tout les caches';
|
||||
$lang['clearCache'] = 'Effacer le cache'; // XXX
|
||||
$lang['created'] = 'Créer';
|
||||
$lang['modify'] = 'Modifier';
|
||||
$lang['modifyAll'] = 'Modifier Tout';
|
||||
$lang['prop'] = 'Proposer';
|
||||
$lang['remove'] = 'Supprimer';
|
||||
$lang['selected'] = 'Selectionner';
|
||||
$lang['show'] = 'Montrer';
|
||||
$lang['test'] = 'Tester';
|
||||
$lang['valid'] = 'Valider';
|
||||
|
||||
$lang['repeatType'] = array ('day' => 'jour', 'week' => 'semaine', 'dayMonth' => 'mois', 'dateMonth' => 'mois', 'year' => 'ans');
|
||||
|
||||
// placeholder
|
||||
$lang['titlePH'] = "titre de l'évènement";
|
||||
$lang['leadPH'] = 'Chapeau éditorial / organisateur / contexte / ... (facultatif)';
|
||||
$lang['posterPH'] = 'http://... (facultatif)';
|
||||
$lang['paperPH'] = 'http://... (facultatif)';
|
||||
$lang['remarkPH'] = 'texte explicatif / commentaires / remarques / ... (facultatif)';
|
||||
$lang['ratePH'] = 'x € / y € (facultatif)';
|
||||
$lang['cityPH'] = 'commune (ou code INSEE) +!!entrée!!';
|
||||
$lang['addrPH'] = '1, rue de la Tannerie ~br~ 56 000 +!!entrée!!';
|
||||
$lang['datePH'] = 'jj/mm/aa';
|
||||
$lang['hourPH'] = '--h-- (ex: 09h30-15h)';
|
||||
$lang['rootMoveDatePH'] = "jj/mm/aa (déplace jusqu'à cette date)";
|
||||
|
||||
// messages
|
||||
$lang['days'] = array ('dimanche' => 'D', 'lundi' => 'L', 'mardi' => 'M', 'mercredi' => 'M', 'jeudi' => 'J', 'vendredi' => 'V', 'samedi' => 'S');
|
||||
$lang['enterTip'] = 'Appuyez sur \'entrée\' pour mettre à jour ce champ !';
|
||||
|
||||
$lang['who'] = 'Qui';
|
||||
$lang['audience'] = 'Auditoire';
|
||||
$lang['shared'] = array ('', 'Partagé');
|
||||
$lang['proposedBy'] = 'Proposé par';
|
||||
$lang['what'] = 'Quoi';
|
||||
$lang['title'] = 'Titre ';
|
||||
$lang['lead'] = 'Chapeau éditorial ';
|
||||
$lang['posterURL'] = 'Affiche ';
|
||||
$lang['paperURL'] = 'Article ';
|
||||
$lang['remark'] = 'Sujet ';
|
||||
$lang['rate'] = 'Tarif ';
|
||||
$lang['where'] = 'Où ';
|
||||
$lang['city'] = 'Commune ';
|
||||
$lang['addresse'] = 'Adresse ';
|
||||
$lang['when'] = 'Quand ';
|
||||
$lang['allDates'] = 'Toutes dates';
|
||||
$lang['inverted'] = 'Inverser';
|
||||
$lang['noEvent'] = "Pas d'évènement";
|
||||
$lang['validation'] = 'Validation';
|
||||
$lang['proposition'] = 'Proposition';
|
||||
$lang['reactiveMap'] = 'Carte interactive !';
|
||||
$lang['toComplet'] = 'À compléter';
|
||||
|
||||
$lang['audienceChoice'] = 'Quelle audience ?';
|
||||
$lang['memberChoice'] = 'Proposé par ?';
|
||||
$lang['eventTypeChoice'] = "Quelle nature d'évènement ?";
|
||||
|
||||
$lang['from'] = 'du';
|
||||
$lang['to'] = 'au';
|
||||
$lang['fromHour'] = 'de';
|
||||
$lang['toHour'] = 'à';
|
||||
$lang['at'] = 'à';
|
||||
$lang['all'] = 'chaque';
|
||||
$lang['each'] = 'chaque';
|
||||
|
||||
$lang['startError'] = 'Certaines informations ne permettent pas la validation :';
|
||||
$lang['noAudienceError'] = "manque d'auditoire";
|
||||
$lang['noMemberError'] = 'manque de membre';
|
||||
$lang['noTypeError'] = "manque de nature d'évènement";
|
||||
$lang['noWhereError'] = 'manque de lieu';
|
||||
$lang['noTitleError'] = 'manque de titre';
|
||||
$lang['mktimeError'] = 'date non gérée (pour OVH : 13 decembre 1901 < YYYY-mm-dd < 20 janvier 2038)';
|
||||
$lang['pastError'] = 'début en dehors des limites indiquées';
|
||||
$lang['pastToError'] = 'date de fin avant le début :-D';
|
||||
$lang['badDateError'] = 'date incorrecte';
|
||||
$lang['notMemberError'] = 'non membre';
|
||||
|
||||
$lang['addEvent'] = 'Ajouter un évènement';
|
||||
$lang['proposedEvent'] = 'Proposer un évènement';
|
||||
|
||||
$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.";
|
||||
|
||||
$lang['notifySubject'] = '[Agenda] Nouvelle proposition !';
|
||||
$lang['notifyContent'] = "Une nouvelle proposition a été faite.\n\n";
|
||||
|
||||
// toolTip
|
||||
$lang['tipPrevM'] = 'Mois précédent';
|
||||
$lang['tipNextM'] = 'Mois suivant';
|
||||
|
||||
// format
|
||||
$lang['dateFormat'] = 'dmY';
|
||||
// $lang['orderedFormat'] = function ($num) { // XXX pb OVH
|
||||
// if ($num < 1)
|
||||
// return $num;
|
||||
// switch ($num) {
|
||||
// case 1:
|
||||
// return '1er';
|
||||
// default:
|
||||
// return "{$num}e";
|
||||
// }
|
||||
// };
|
||||
|
||||
$lang['orderedFormat'] = array (1 => '1er', 2 => '2e', 3 => '3e', 4 => '4e', 5 => '5e', 6 => '6e', 7 => '7e', 8 => '8e', 9 => '9e', 10 => '10e', 11 => '11e', 12 => '12e', 13 => '13e', 14 => '14e', 15 => '15e', 16 => '16e', 17 => '17e', 18 => '18e', 19 => '19e', 20 => '20e', 21 => '21e', 22 => '22e', 23 => '23e', 24 => '24e', 25 => '25e', 26 => '26e', 27 => '27e', 28 => '28e', 29 => '29e', 30 => '30e', 31 => '31e');
|
||||
|
||||
?>
|
33
lang/fr/settings.php
Normal file
33
lang/fr/settings.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
|
||||
* @author Francois Merciol <dokuplugin@merciol.fr>
|
||||
*
|
||||
* French language file
|
||||
*/
|
||||
|
||||
// for the configuration manager
|
||||
$lang['scheduleGroup'] = 'en appartenant à ce groupe, on a accès au formulaire pour ajouter des évènements';
|
||||
$lang['adminGroup'] = 'le groupe qui à tous les droits sur les évènements';
|
||||
$lang['dataDir'] = 'répertoire où sont placés les fichiers XML des évènements par entité';
|
||||
$lang['groupsDir'] = 'répertoire où se trouve les entités dans le wiki';
|
||||
$lang['noSchedule'] = 'liste des entité (séparé par ",") ne devant pas créer des évènements';
|
||||
$lang['scheduleDir'] = 'page wiki de gestion de l\'agenda (contient un répertoire par entité)';
|
||||
$lang['sharedDir'] = 'répertoire regroupant les évènements partagés par tous les groupes';
|
||||
$lang['scheduleWhat'] = 'liste des types d\'évènement par catégorie (c1:t1,t2|c2:t3,t4|c3:t5,t6,t7)';
|
||||
$lang['scheduleAudience'] = 'les différents auditoires attendus pour les évènement (a1,a2,a3)';
|
||||
$lang['iconName'] = 'nom du logo du groupe qui à créé l\'évènement';
|
||||
$lang['iconWidth'] = 'largeur logo du groupe qui à créé l\'évènement';
|
||||
$lang['repeatPosition'] = 'Position des évènements répétés (groupé en haut ou séparé)';
|
||||
$lang['repeatPosition_o_grouped'] = 'groupé';
|
||||
$lang['repeatPosition_o_isolated'] = 'séparé';
|
||||
$lang['bubblePosition'] = 'Position des info-bulles du calendrier';
|
||||
$lang['bubblePosition_o_left'] = 'gauche';
|
||||
$lang['bubblePosition_o_right'] = 'droite';
|
||||
|
||||
$lang['useMap'] = 'Affiche une carte de localisation';
|
||||
$lang['defaultCenter'] = "Position par défaut d'une carte vide (lat, lon)";
|
||||
$lang['defaultZoom'] = "Zoom par défaut";
|
||||
$lang['migrate'] = 'Effectue une migration des données';
|
||||
$lang['showOldValues'] = 'Souligne les données non migrées';
|
||||
?>
|
Reference in New Issue
Block a user