aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2018-11-26 12:14:44 +0000
committerStruan Donald <struan@exo.org.uk>2018-11-26 12:14:44 +0000
commit9f7794ad05b5035675d2e6d9f7848bab396457fb (patch)
treeb856460a41bcb4dddc0ef4740913b1cf3b6878c4 /perllib
parentb1ae952277d689134797abf1482572dd818a67ca (diff)
[UK] fix line break in translated string
To avoid adding a new, but identical translation
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/Roles/ConfirmValidation.pm3
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;