Skip to content

Commit

Permalink
fix weeks starting with sunday (#81)
Browse files Browse the repository at this point in the history
Пн is monday in RU/UK
The array has to start with sunday Нд/Вс
  • Loading branch information
IuliiaV authored and PIGNOSE committed Jun 9, 2018
1 parent 7153d52 commit 78d17b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/configures/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ define([], () => {
es: ['Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'],
it: ['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'],
cs: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'],
uk: ['Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб', 'Нд'],
ru: ['Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб', 'Вс'],
uk: ['Нд', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'],
ru: ['Вс', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'],
},
monthsLong: {
en: ['January', 'February', 'March', 'April', 'May', 'Jun', 'July', 'August', 'September', 'October', 'November', 'December'],
Expand Down

0 comments on commit 78d17b1

Please sign in to comment.