diff options
author | Struan Donald <struan@exo.org.uk> | 2011-06-06 12:32:43 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-06-06 12:32:43 +0100 |
commit | 75fe00034fc5be24e2222cf116656fc350b98e67 (patch) | |
tree | df8d29092083025a818688d496e26913ed2a3a7f /perllib/FixMyStreet/App/Controller/Contact.pm | |
parent | c297e65b2fb0cf61c5d6a3b2caa477c473fccd96 (diff) | |
parent | 1aa62d33e4e038e9edf994084603086eff26b6ac (diff) |
Merge branch 'migrate_to_catalyst' of ssh://git.mysociety.org/data/git/public/fixmystreet into migrate_to_catalyst
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Contact.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Contact.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Contact.pm b/perllib/FixMyStreet/App/Controller/Contact.pm index b179680d0..c74597f3b 100644 --- a/perllib/FixMyStreet/App/Controller/Contact.pm +++ b/perllib/FixMyStreet/App/Controller/Contact.pm @@ -101,9 +101,9 @@ sub validate : Private { my ( %field_errors, @errors ); my %required = ( - name => _('Please give your name'), - em => _('Please give your email'), - subject => _('Please give a subject'), + name => _('Please enter your name'), + em => _('Please enter your email'), + subject => _('Please enter a subject'), message => _('Please write a message') ); @@ -113,7 +113,7 @@ sub validate : Private { } unless ( $field_errors{em} ) { - $field_errors{em} = _('Please give a valid email address') + $field_errors{em} = _('Please enter a valid email address') if !mySociety::EmailUtil::is_valid_email( $c->req->param('em') ); } |