diff options
author | Struan Donald <struan@exo.org.uk> | 2018-11-26 12:14:44 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2018-11-26 12:14:44 +0000 |
commit | 9f7794ad05b5035675d2e6d9f7848bab396457fb (patch) | |
tree | b856460a41bcb4dddc0ef4740913b1cf3b6878c4 | |
parent | b1ae952277d689134797abf1482572dd818a67ca (diff) |
[UK] fix line break in translated string
To avoid adding a new, but identical translation
-rw-r--r-- | perllib/FixMyStreet/Roles/ConfirmValidation.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Roles/ConfirmValidation.pm b/perllib/FixMyStreet/Roles/ConfirmValidation.pm index 5d407af6d..776230287 100644 --- a/perllib/FixMyStreet/Roles/ConfirmValidation.pm +++ b/perllib/FixMyStreet/Roles/ConfirmValidation.pm @@ -29,8 +29,7 @@ sub report_validation { } if ( length( $report->detail ) > $self->max_report_length ) { - $errors->{detail} = sprintf( _('Reports are limited to %s characters in - length. Please shorten your report'), $self->max_report_length ); + $errors->{detail} = sprintf( _('Reports are limited to %s characters in length. Please shorten your report'), $self->max_report_length ); } return $errors; |