diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-01-21 11:54:16 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-01-21 11:54:44 +0000 |
commit | 24fcbfb3705060845d16b6fbe4c3da1e5e12eea2 (patch) | |
tree | 0099af841e972258620630ed99e33837402812a5 /perllib/FixMyStreet | |
parent | be3b9b2cb124f7381eba00ae1d701a50beccb056 (diff) |
No need to translate this string at present.
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Problem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Problem.pm b/perllib/FixMyStreet/DB/Result/Problem.pm index 92c5c160a..e42e7110a 100644 --- a/perllib/FixMyStreet/DB/Result/Problem.pm +++ b/perllib/FixMyStreet/DB/Result/Problem.pm @@ -611,7 +611,7 @@ sub meta_line { if ($c->user_exists and $c->user->has_permission_to('view_body_contribute_details', $problem->bodies_str_ids) and $problem->name ne $problem->user->name) { - $problem_name = sprintf( _('%s (%s)'), $problem->name, $problem->user->name ); + $problem_name = sprintf('%s (%s)', $problem->name, $problem->user->name ); } if ( $problem->service and $category && $category ne _('Other') ) { |