diff --git a/src/components/CalendarPicker/index.js b/src/components/CalendarPicker/index.js index d0103d03f959..e3630d85da26 100644 --- a/src/components/CalendarPicker/index.js +++ b/src/components/CalendarPicker/index.js @@ -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) { diff --git a/src/languages/en.js b/src/languages/en.js index 765be98ed4dc..c7e3a646837f 100755 --- a/src/languages/en.js +++ b/src/languages/en.js @@ -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: { diff --git a/src/languages/es.js b/src/languages/es.js index f7012c3d6654..cdb2a556ba6f 100644 --- a/src/languages/es.js +++ b/src/languages/es.js @@ -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', @@ -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', @@ -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: { @@ -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: {