Skip to content

Commit

Permalink
feat(locales): Adding new locales (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvnborges authored and arthurdenner committed Nov 5, 2018
1 parent cb79621 commit c52df3d
Show file tree
Hide file tree
Showing 5 changed files with 150 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/locales/es-ES.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
export default {
todayButton: 'Hoy',
nextMonth: 'Próximo mes',
previousMonth: 'Mes anterior',
nextYear: 'Próximo año',
previousYear: 'Año anterior',
weekdays: [
'Domingo',
'Lunes',
'Martes',
'Miércoles',
'Jueves',
'Viernes',
'Sábado',
],
months: [
'Enero',
'Febrero',
'Marzo',
'Abril',
'Mayo',
'Junio',
'Julio',
'Agosto',
'Septiembre',
'Octubre',
'Noviembre',
'Diciembre',
],
};
30 changes: 30 additions & 0 deletions src/locales/fr-FR.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
export default {
todayButton: "Aujourd'hui",
nextMonth: 'Mois prochain',
previousMonth: 'Mois précédent',
nextYear: "L'année prochaine",
previousYear: 'Année précédente',
weekdays: [
'Dimanche',
'Lundi',
'Mardi',
'Mercredi',
'Jeudi',
'Vendredi',
'Samedi',
],
months: [
'Janvier',
'Février',
'Mars',
'Avril',
'Mai',
'Juin',
'Juillet',
'Août',
'Septembre',
'Octobre',
'Novembre',
'Décembre',
],
};
30 changes: 30 additions & 0 deletions src/locales/it-IT.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
export default {
todayButton: 'Oggi',
nextMonth: 'Prossimo mese',
previousMonth: 'Mese scorso',
nextYear: "L'anno prossimo",
previousYear: "L'anno scorso",
weekdays: [
'Domenica',
'Lunedì',
'Martedì',
'Mercoledì',
'Giovedì',
'Venerdì',
'Sabato',
],
months: [
'Gennaio',
'Febbraio',
'Marzo',
'Aprile',
'Maggio',
'Giugno',
'Luglio',
'Agosto',
'Settembre',
'Ottobre',
'Novembre',
'Dicembre',
],
};
30 changes: 30 additions & 0 deletions src/locales/ru-RU.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
export default {
todayButton: 'Cегодня',
nextMonth: 'Следующий месяц',
previousMonth: 'Прошлый месяц',
nextYear: 'В следующем году',
previousYear: 'Предыдущий год',
weekdays: [
'воскресенье',
'понедельник',
'вторник',
'среда',
'четверг',
'пятница',
'суббота',
],
months: [
'Январь',
'Февраль',
'Март',
'Апрель',
'Май',
'Июнь',
'Июль',
'Август',
'Сентябрь',
'Октябрь',
'Ноябрь',
'Декабрь',
],
};
30 changes: 30 additions & 0 deletions src/locales/zh-CN.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
export default {
todayButton: '今天',
nextMonth: '下个月',
previousMonth: '前一个月',
nextYear: '明年',
previousYear: '去年',
weekdays: [
'星期日',
'星期一',
'星期二',
'星期三',
'星期四',
'星期五',
'星期六',
],
months: [
'一月',
'二月',
'三月',
'四月',
'五月',
'六月',
'七月',
'八月',
'九月',
'十月',
'十一月',
'十二月',
],
};

1 comment on commit c52df3d

@vercel
Copy link

@vercel vercel bot commented on c52df3d Nov 5, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.