Skip to content

Commit

Permalink
Merge pull request #28043 from ishpaul777/fix/inconsistent-error-for-…
Browse files Browse the repository at this point in the history
…zip-code

fix error for zip code in bank account step
  • Loading branch information
luacmartins committed Sep 27, 2023
2 parents 4b0db94 + ac8aaa8 commit d511065
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ export default {
noBankAccountSelected: 'Please choose an account',
taxID: 'Please enter a valid tax ID number',
website: 'Please enter a valid website',
zipCode: 'Please enter a valid zip code',
zipCode: `Incorrect zip code format. Acceptable format: ${CONST.COUNTRY_ZIP_REGEX_DATA.US.samples}`,
phoneNumber: 'Please enter a valid phone number',
companyName: 'Please enter a valid legal business name',
addressCity: 'Please enter a valid city',
Expand Down
2 changes: 1 addition & 1 deletion src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ export default {
noBankAccountSelected: 'Por favor, elige una cuenta bancaria',
taxID: 'Por favor, introduce un número de identificación fiscal válido',
website: 'Por favor, introduce un sitio web válido',
zipCode: 'Por favor, introduce un código postal válido',
zipCode: `Formato de código postal incorrecto. Formato aceptable: ${CONST.COUNTRY_ZIP_REGEX_DATA.US.samples}`,
phoneNumber: 'Por favor, introduce un teléfono válido',
companyName: 'Por favor, introduce un nombre comercial legal válido',
addressCity: 'Por favor, introduce una ciudad válida',
Expand Down

0 comments on commit d511065

Please sign in to comment.