Skip to content
Closed
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
6 changes: 3 additions & 3 deletions src/components/CalendarPicker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import * as StyleUtils from '../../styles/StyleUtils';
class CalendarPicker extends React.PureComponent {
constructor(props) {
super(props);

this.monthNames = moment.localeData(props.preferredLocale).months();
this.daysOfWeek = moment.localeData(props.preferredLocale).weekdays();
this.monthNames =_.map(moment.localeData(props.preferredLocale).months(), month => month.replace(/^\w/, c => c.toUpperCase()));
this.daysOfWeek = _.map(moment.localeData(props.preferredLocale).weekdays(), day => day.toUpperCase());

let currentDateView = props.value;
if (props.selectedYear) {
Expand Down
2 changes: 1 addition & 1 deletion src/languages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ export default {
},
},
reimbursementAccountLoadingAnimation: {
oneMoment: 'One Moment',
oneMoment: 'One moment',
explanationLine: 'We’re taking a look at your information. You will be able to continue with next steps shortly.',
},
session: {
Expand Down
8 changes: 4 additions & 4 deletions src/languages/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default {
invite: 'Invitar',
here: 'aquí',
date: 'Fecha',
dob: 'Fecha de Nacimiento',
dob: 'Fecha de nacimiento',
currentYear: 'Año actual',
currentMonth: 'Mes actual',
ssnLast4: 'Últimos 4 dígitos de su SSN',
Expand All @@ -69,7 +69,7 @@ export default {
stateOrProvince: 'Estado / Provincia',
country: 'País',
zip: 'Código postal',
zipPostCode: 'Código Postal',
zipPostCode: 'Código postal',
whatThis: '¿Qué es esto?',
iAcceptThe: 'Acepto los ',
remove: 'Eliminar',
Expand Down Expand Up @@ -143,7 +143,7 @@ export default {
notAllowedExtension: 'Los archivos adjuntos deben ser de uno de los siguientes tipos: ',
},
avatarCropModal: {
title: 'Editar Foto',
title: 'Editar foto',
description: 'Arrastra, haz zoom y rota tu imagen para que quede como te gusta.',
},
composer: {
Expand Down Expand Up @@ -906,7 +906,7 @@ export default {
},
},
reimbursementAccountLoadingAnimation: {
oneMoment: 'Un Momento',
oneMoment: 'Un momento',
explanationLine: 'Estamos verificando tu información y podrás continuar con los siguientes pasos en unos momentos.',
},
session: {
Expand Down