Skip to content

Commit c52df3d

Browse files
lucasvnborgesarthurdenner
authored andcommitted
feat(locales): Adding new locales (#16)
1 parent cb79621 commit c52df3d

File tree

5 files changed

+150
-0
lines changed

5 files changed

+150
-0
lines changed

src/locales/es-ES.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
todayButton: 'Hoy',
3+
nextMonth: 'Próximo mes',
4+
previousMonth: 'Mes anterior',
5+
nextYear: 'Próximo año',
6+
previousYear: 'Año anterior',
7+
weekdays: [
8+
'Domingo',
9+
'Lunes',
10+
'Martes',
11+
'Miércoles',
12+
'Jueves',
13+
'Viernes',
14+
'Sábado',
15+
],
16+
months: [
17+
'Enero',
18+
'Febrero',
19+
'Marzo',
20+
'Abril',
21+
'Mayo',
22+
'Junio',
23+
'Julio',
24+
'Agosto',
25+
'Septiembre',
26+
'Octubre',
27+
'Noviembre',
28+
'Diciembre',
29+
],
30+
};

src/locales/fr-FR.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
todayButton: "Aujourd'hui",
3+
nextMonth: 'Mois prochain',
4+
previousMonth: 'Mois précédent',
5+
nextYear: "L'année prochaine",
6+
previousYear: 'Année précédente',
7+
weekdays: [
8+
'Dimanche',
9+
'Lundi',
10+
'Mardi',
11+
'Mercredi',
12+
'Jeudi',
13+
'Vendredi',
14+
'Samedi',
15+
],
16+
months: [
17+
'Janvier',
18+
'Février',
19+
'Mars',
20+
'Avril',
21+
'Mai',
22+
'Juin',
23+
'Juillet',
24+
'Août',
25+
'Septembre',
26+
'Octobre',
27+
'Novembre',
28+
'Décembre',
29+
],
30+
};

src/locales/it-IT.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
todayButton: 'Oggi',
3+
nextMonth: 'Prossimo mese',
4+
previousMonth: 'Mese scorso',
5+
nextYear: "L'anno prossimo",
6+
previousYear: "L'anno scorso",
7+
weekdays: [
8+
'Domenica',
9+
'Lunedì',
10+
'Martedì',
11+
'Mercoledì',
12+
'Giovedì',
13+
'Venerdì',
14+
'Sabato',
15+
],
16+
months: [
17+
'Gennaio',
18+
'Febbraio',
19+
'Marzo',
20+
'Aprile',
21+
'Maggio',
22+
'Giugno',
23+
'Luglio',
24+
'Agosto',
25+
'Settembre',
26+
'Ottobre',
27+
'Novembre',
28+
'Dicembre',
29+
],
30+
};

src/locales/ru-RU.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
todayButton: 'Cегодня',
3+
nextMonth: 'Следующий месяц',
4+
previousMonth: 'Прошлый месяц',
5+
nextYear: 'В следующем году',
6+
previousYear: 'Предыдущий год',
7+
weekdays: [
8+
'воскресенье',
9+
'понедельник',
10+
'вторник',
11+
'среда',
12+
'четверг',
13+
'пятница',
14+
'суббота',
15+
],
16+
months: [
17+
'Январь',
18+
'Февраль',
19+
'Март',
20+
'Апрель',
21+
'Май',
22+
'Июнь',
23+
'Июль',
24+
'Август',
25+
'Сентябрь',
26+
'Октябрь',
27+
'Ноябрь',
28+
'Декабрь',
29+
],
30+
};

src/locales/zh-CN.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
todayButton: '今天',
3+
nextMonth: '下个月',
4+
previousMonth: '前一个月',
5+
nextYear: '明年',
6+
previousYear: '去年',
7+
weekdays: [
8+
'星期日',
9+
'星期一',
10+
'星期二',
11+
'星期三',
12+
'星期四',
13+
'星期五',
14+
'星期六',
15+
],
16+
months: [
17+
'一月',
18+
'二月',
19+
'三月',
20+
'四月',
21+
'五月',
22+
'六月',
23+
'七月',
24+
'八月',
25+
'九月',
26+
'十月',
27+
'十一月',
28+
'十二月',
29+
],
30+
};

0 commit comments

Comments
 (0)