diff --git a/shiftregister/app/forms.py b/shiftregister/app/forms.py index 8ce890e..d349f06 100644 --- a/shiftregister/app/forms.py +++ b/shiftregister/app/forms.py @@ -15,7 +15,7 @@ def text_input(): def validate_allowed_countries(value): if not f"{value.country_code}" in global_preferences["helper__allowed_countries"]: raise ValidationError( - "Vorwahl nicht erlaubt, bitte wende dich an den Infopoint" + "Vorwahl nicht erlaubt, bitte wende dich an den Infopoint oder schicke uns eine Mail" ) return value