Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change spanish month names to lowercase #1414

Merged
merged 1 commit into from
Mar 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locale/es-do.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const locale = {
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
months: 'Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre'.split('_'),
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
monthsShort: 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
weekStart: 1,
relativeTime: {
Expand Down
2 changes: 1 addition & 1 deletion src/locale/es-pr.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const locale = {
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
months: 'Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre'.split('_'),
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
weekStart: 1,
formats: {
LT: 'h:mm A',
Expand Down
2 changes: 1 addition & 1 deletion src/locale/es-us.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const locale = {
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
months: 'Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre'.split('_'),
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
monthsShort: 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
relativeTime: {
future: 'en %s',
Expand Down
2 changes: 1 addition & 1 deletion src/locale/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const locale = {
weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
months: 'Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre'.split('_'),
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
weekStart: 1,
formats: {
LT: 'H:mm',
Expand Down
26 changes: 13 additions & 13 deletions test/locale.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const NOT_SUPPORTED_LOCALE_STRING = 'not_supported_locale_string'
it('Uses spanish locale through constructor', () => { // not recommend
expect(dayjs('2018-4-28', { locale: es })
.format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
})

it('set locale for one instance only', () => {
Expand All @@ -27,7 +27,7 @@ it('set locale for one instance only', () => {

expect(dayjs('2018-4-28')
.locale(es).format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')

expect(dayjs('2018-4-28')
.format(format))
Expand All @@ -40,7 +40,7 @@ it('set global locale', () => {
.toBe('Saturday 28, April')
dayjs.locale(es)
expect(dayjs('2018-4-28').format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
dayjs.locale('en')
expect(dayjs('2018-4-28').format(format))
.toBe('Saturday 28, April')
Expand All @@ -63,10 +63,10 @@ it('immutable instance locale', () => {
expect(origin.format(format))
.toBe('Saturday 28, April')
expect(origin.locale('es').format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
const changed = origin.locale('es')
expect(changed.format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
expect(origin.format(format))
.toBe('Saturday 28, April')
})
Expand All @@ -86,30 +86,30 @@ describe('Instance locale inheritance', () => {

it('Clone', () => {
expect(esDayjs.clone().format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
expect(dayjs(esDayjs).format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
})

it('StartOf EndOf', () => {
expect(esDayjs.startOf('year').format(format))
.toBe('lunes 1, Enero')
.toBe('lunes 1, enero')
expect(esDayjs.endOf('day').format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
})

it('Set', () => {
expect(esDayjs.set('year', 2017).format(format))
.toBe('viernes 28, Abril')
.toBe('viernes 28, abril')
})

it('Add', () => {
expect(esDayjs.add(1, 'year').format(format))
.toBe('domingo 28, Abril')
.toBe('domingo 28, abril')
expect(esDayjs.add(1, 'month').format(format))
.toBe('lunes 28, Mayo')
.toBe('lunes 28, mayo')
expect(esDayjs.add(1, 'minute').format(format))
.toBe('sábado 28, Abril')
.toBe('sábado 28, abril')
})

it('dayjs.locale() returns locale name', () => {
Expand Down