diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Default.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index 1f1086c21..c20dbf6a3 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -763,7 +763,7 @@ sub council_rss_alert_options { { type => 'council', id => sprintf( 'district:%s:%s', $district->{id}, $district->{id_name} ), - text => sprintf( _('%s'), $district->{name}), + text => $district->{name}, rss_text => sprintf( _('RSS feed of %s'), $district->{name}), uri => $self->uri( '/rss/reports/' . $district->{short_name} ), }, @@ -777,7 +777,7 @@ sub council_rss_alert_options { { type => 'council', id => sprintf( 'county:%s:%s', $county->{id}, $county->{id_name} ), - text => sprintf( _('%s'), $county->{name}), + text => $county->{name}, rss_text => sprintf( _('RSS feed of %s'), $county->{name}), uri => $self->uri( '/rss/reports/' . $county->{short_name} ), }, |