1 // ========================================================================== 2 // Project: SproutCore - JavaScript Application Framework 3 // Copyright: ©2006-2011 Strobe Inc. and contributors. 4 // Portions ©2008-2011 Apple Inc. All rights reserved. 5 // License: Licensed under MIT license (see license.js) 6 // ========================================================================== 7 8 SC.stringsFor('fr', { 9 '_SC.DateTime.dayNames': 'Dimanche Lundi Mardi Mercredi Jeudi Vendredi Samedi', 10 '_SC.DateTime.abbreviatedDayNames': 'Dim Lun Mar Mer Jeu Ven Sam', 11 '_SC.DateTime.monthNames': 'Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Decembre', 12 '_SC.DateTime.abbreviatedMonthNames': 'Janv Févr Mars Avr Mai Juin Juil Août Sept Oct Nov Déc', 13 '_SC.DateTime.AMPMNames':'AM PM', 14 15 '_SC.DateTime.now' : 'Maintenant', 16 '_SC.DateTime.secondIn' : 'Dans un instant', 17 '_SC.DateTime.secondsIn' : 'Dans %e secondes', 18 '_SC.DateTime.minuteIn' : 'Dans une minute', 19 '_SC.DateTime.minutesIn' : 'Dans %e minutes', 20 '_SC.DateTime.hourIn' : 'Dans une heure', 21 '_SC.DateTime.hoursIn' : 'Dans environ %e heures', 22 '_SC.DateTime.dayIn' : 'Demain à %H:%M', 23 '_SC.DateTime.daysIn' : '%A à %H:%M', 24 '_SC.DateTime.weekIn' : 'La semaine prochaine', 25 '_SC.DateTime.weeksIn' : 'Dans %e semaines', 26 '_SC.DateTime.monthIn' : 'Le mois prochain', 27 '_SC.DateTime.monthsIn' : 'Dans %e mois', 28 '_SC.DateTime.yearIn' : 'L\'an prochain', 29 '_SC.DateTime.yearsIn' : 'Dans %e ans', 30 31 '_SC.DateTime.secondAgo' : 'Il y a un instant', 32 '_SC.DateTime.secondsAgo' : 'Il y a %e secondes', 33 '_SC.DateTime.minuteAgo' : 'Il y a une minute', 34 '_SC.DateTime.minutesAgo' : 'Il y a %e minutes', 35 '_SC.DateTime.hourAgo' : 'Il y a une heure', 36 '_SC.DateTime.hoursAgo' : 'Il y a %e heures', 37 '_SC.DateTime.dayAgo' : 'Hier à %H:%M', 38 '_SC.DateTime.daysAgo' : '%A à %H:%M', 39 '_SC.DateTime.weekAgo' : 'Il y a une semaine', 40 '_SC.DateTime.weeksAgo' : 'Il y a %e semaines', 41 '_SC.DateTime.monthAgo' : 'Il y a un mois', 42 '_SC.DateTime.monthsAgo' : 'Il y a %e mois', 43 '_SC.DateTime.yearAgo' : 'L\'an dernier', 44 '_SC.DateTime.yearsAgo' : 'Il y a %e ans' 45 }); 46