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

Block PO Boxes #301

Merged
merged 3 commits into from
Dec 6, 2023
Merged
Changes from 1 commit
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
16 changes: 12 additions & 4 deletions microsetta_interface/implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ class Source:
'Contract) Box number is missing.',
'AE14': 'US Only. The address is a Commercial Mail Receiving Agency '
'(CMRA) and the Private Mail Box (PMB or #) number is '
'missing.'
'missing.',
'AEPOBOX': 'PO Boxes are not permitted. Please enter a physical '
'address.'
},
ES_MX_KEY: {
'AE01': 'La dirección no se pudo verificar al menos hasta el nivel '
Expand Down Expand Up @@ -209,7 +211,9 @@ class Source:
'rural) o HC (Contrato de carretera).',
'AE14': 'La dirección es una Agencia receptora de correo comercial '
'(CMRA) y falta el número del buzón de correo privado (PMB '
'o #).'
'o #).',
'AEPOBOX': 'PO Boxes are not permitted. Please enter a physical '
'address.'
},
ES_ES_KEY: {
'AE01': 'La dirección no se pudo verificar al menos hasta el nivel '
Expand Down Expand Up @@ -239,7 +243,9 @@ class Source:
'rural) o HC (Contrato de carretera).',
'AE14': 'La dirección es una Agencia receptora de correo comercial '
'(CMRA) y falta el número del buzón de correo privado (PMB '
'o #).'
'o #).',
'AEPOBOX': 'PO Boxes are not permitted. Please enter a physical '
'address.'
},
JA_JP_KEY: {
'AE01': 'The address could not be verified at least up to the postal '
Expand All @@ -266,7 +272,9 @@ class Source:
'Contract) Box number is missing.',
'AE14': 'US Only. The address is a Commercial Mail Receiving Agency '
'(CMRA) and the Private Mail Box (PMB or #) number is '
'missing.'
'missing.',
'AEPOBOX': 'PO Boxes are not permitted. Please enter a physical '
'address.'
},
}

Expand Down
Loading