This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 314
Locale
neuronet.io edited this page Mar 19, 2019
·
3 revisions
You can set locale as locale
option like this:
/* other options */
locale: {
'name':'fr',
'Now': 'Aujourd\'hui',
'X-Scale': 'Zoom',
'Y-Scale': 'Interligne',
'Task list width': 'Liste',
'Before/After': 'Période',
'Display task list': 'Liste',
'weekStart':1,
'weekdays': 'Dimanche_Lundi_Mardi_Mercredi_Jeudi_Vendredi_Samedi'.split('_'),
'months': 'Janvier_Février_Mars_Avril_Mai_Juin_Juillet_Août_Septembre_Octobre_Novembre_Décembre'.split('_'),
'monthsShort': 'janv_févr_mars_avril_mai_juin_juil_août_sept_oct_nov_déc'.split('_'),
'relativeTime': {
'future': 'dans %s',
'past': 'il y a %s',
's': 'quelques secondes',
'm': 'une minute',
'mm': '%d minutes',
'h': 'une heure',
'hh': '%d heures',
'd': 'un jour',
'dd': '%d jours',
'M': 'un mois',
'MM': '%d mois',
'y': 'un an',
'yy': '%d ans'
},
'ordinal': (n) => {
const o = n === 1 ? 'er' : ''
return `${n}${o}`
}
}