diff options
author | Struan Donald <struan@exo.org.uk> | 2012-04-03 14:39:45 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-04-03 14:39:45 +0100 |
commit | 1923dc99b708511570fe5bf207ff63362c55ca9b (patch) | |
tree | 3d63276f897bc0183d98aa98f315dec25fe317af | |
parent | d3e033d5426144dcc7bf0da3170fbf2361d22ba6 (diff) | |
parent | a16e71730cf86cd48773ffbd8390c65e1dc2fc6a (diff) |
Merge branch 'send-report-rewrite' into bromley-new-send-reports
Conflicts:
bin/send-reports
perllib/FixMyStreet/Geocode/Bing.pm
web/js/map-OpenLayers.js
25 files changed, 6910 insertions, 2327 deletions
diff --git a/bin/kasabi b/bin/kasabi index dcec1e78f..986032084 100755 --- a/bin/kasabi +++ b/bin/kasabi @@ -1,5 +1,6 @@ #!/usr/bin/env python +import sys import datetime import json import os.path @@ -11,6 +12,7 @@ import pytassium import psycopg2 import psycopg2.extras from rdfchangesets import BatchChangeSet +from rdflib.namespace import XSD # Set up data access config = yaml.load(open(os.path.abspath(os.path.join(os.path.dirname(__file__), '../conf/general.yml')))) @@ -28,15 +30,18 @@ def main(): # Fetch reports that have changed recently #response, data = dataset.select('select (max(?lastupdate) as ?max) where { ?report <http://data.kasabi.com/dataset/fixmystreet/def/lastUpdate> ?lastupdate }') #max_lastUpdate = data[1][0]['max'] - last_hour = datetime.datetime.now().replace(minute=0, second=0, microsecond=0) - datetime.timedelta(hours=1) - cursor.execute(""" + query = """ SELECT id, latitude, longitude, used_map, council, category, title, detail, (photo IS NOT NULL) as photo, confirmed, lastupdate, whensent, state FROM problem WHERE state not in ('unconfirmed', 'partial') - AND date_trunc('hour', lastupdate) = %s - """, (last_hour,)) + """ + if len(sys.argv) > 1 and sys.argv[1].isdigit(): + cursor.execute("%s AND id=%%s" % query, (sys.argv[1],)) + else: + last_hour = datetime.datetime.now().replace(minute=0, second=0, microsecond=0) - datetime.timedelta(hours=1) + cursor.execute("%s AND date_trunc('hour', lastupdate) = %%s" % query, (last_hour,)) # AND lastupdate > %s # """, (max_lastUpdate,)) @@ -50,8 +55,8 @@ def main(): # Canonicalise some values report['latitude'] = round(report['latitude'], 6) # <10cm report['longitude'] = round(report['longitude'], 6) - report['title'] = report['title'].replace('"', r'\"') # Escape double quotes - report['detail'] = report['detail'].replace('"', r'\"') + report['title'] = tidy_string(report['title']) + report['detail'] = tidy_string(report['detail']) report['confirmed'] = report['confirmed'].replace(microsecond=0).isoformat() # Don't want microseconds report['lastupdate'] = report['lastupdate'].replace(microsecond=0).isoformat() report['council'] = sorted(re.sub('\|.*', '', report['council']).split(',')) # Remove missing councils @@ -78,6 +83,10 @@ def main(): changeset.add_report(report, states) changeset.apply() +# Escape double quotes and backslashes, remove carriage returns +def tidy_string(s): + return s.replace('\r', '').replace('\\', '\\\\').replace('"', r'\"') + class FixMyStreetChangeSet(object): """Something that hosts either or both of a BatchChangeSet and a Turtle string for sending to Kasabi. Changes are done by removing all triples @@ -106,7 +115,13 @@ class FixMyStreetChangeSet(object): def apply(self): if len(self.changeset.changesets): - response, data = self.dataset.apply_changeset(self.changeset) + #response, data = self.dataset.apply_changeset(self.changeset) + # XXX Do everything the above call does, but additionally escape carriage returns to prevent 409 error + api = self.dataset.get_api('update') + g = self.changeset.getGraph() + data = g.serialize(format='xml') + data = data.replace('\r', ' ') + response, data = api.client.request(api.uri, "POST", body=data, headers={"accept" : "*/*", 'content-type':'application/vnd.talis.changeset+xml', 'X_KASABI_APIKEY':api.apikey}) if response.status not in range(200, 300): print 'Error:', response.status, response.reason, data if self.data: @@ -118,11 +133,12 @@ class FixMyStreetChangeSet(object): uri = 'http://data.kasabi.com/dataset/fixmystreet/report/{id}'.format(**report) response, data = self.dataset.select('select ?p ?o where {{ <{0}> ?p ?o }}'.format(uri)) for row in data[1]: - # XXX This throws an error + # Need to set the datatype correctly for the lastUpdate if str(row['p']) == 'http://data.kasabi.com/dataset/fixmystreet/def/lastUpdate': - continue - if re.match('http://data.kasabi.com/dataset/fixmystreet/report/\d+/status/\d+$', str(row['o'])): - uri2 = str(row['o']) + row['o'].datatype = XSD.dateTime + # Delete the referenced statuses + if re.match('http://data.kasabi.com/dataset/fixmystreet/report/\d+/status/\d+$', unicode(row['o'])): + uri2 = unicode(row['o']) response2, data2 = self.dataset.select('select ?p ?o where {{ <{0}> ?p ?o }}'.format(uri2)) for row2 in data2[1]: self.changeset.remove(uri2, row2['p'], row2['o']) diff --git a/bin/send-reports b/bin/send-reports index 4181ba17e..16296dc5b 100755 --- a/bin/send-reports +++ b/bin/send-reports @@ -10,597 +10,13 @@ use strict; use warnings; require 5.8.0; -use Digest::MD5; -use Encode; -use Error qw(:try); -use JSON; -use LWP::UserAgent; -use LWP::Simple; -use CGI; # Trying awkward kludge +use CGI; # XXX use CronFns; -use FixMyStreet::App; - -use EastHantsWSDL; -use Utils; use mySociety::Config; -use mySociety::EmailUtil; -use mySociety::MaPit; -use mySociety::Web qw(ent); - -use Open311; - -# maximum number of webservice attempts to send before not trying any more (XXX may be better in config?) -use constant SEND_FAIL_RETRIES_CUTOFF => 3; - -# specific council numbers -use constant COUNCIL_ID_EAST_HANTS => 2330; - -use constant MAX_LINE_LENGTH => 132; - -# send_method config values found in by-area config data, for selecting to appropriate method -use constant SEND_METHOD_EMAIL => 'email'; -use constant SEND_METHOD_OPEN311 => 'open311'; -use constant SEND_METHOD_EAST_HANTS => 'easthants'; -use constant SEND_METHOD_LONDON => 'london'; - -# Set up site, language etc. -my ($verbose, $nomail) = CronFns::options(); -my $base_url = mySociety::Config::get('BASE_URL'); -my $site = CronFns::site($base_url); - -my $unsent = FixMyStreet::App->model("DB::Problem")->search( { - state => [ 'confirmed', 'fixed' ], - whensent => undef, - council => { '!=', undef }, -} ); - -my %sending_skipped_by_method = (); - -my (%notgot, %note); -while (my $row = $unsent->next) { - - my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker($row->cobrand)->new(); - - # Cobranded and non-cobranded messages can share a database. In this case, the conf file - # should specify a vhost to send the reports for each cobrand, so that they don't get sent - # more than once if there are multiple vhosts running off the same database. The email_host - # call checks if this is the host that sends mail for this cobrand. - next unless $cobrand->email_host(); - $cobrand->set_lang_and_domain($row->lang, 1); - if ( $row->is_from_abuser ) { - $row->update( { state => 'hidden' } ); - next; - } - - # Due to multiple councils, it's possible to want to send both by email *and* another method - # NB: might need to revist this if multiple councils have custom send methods - my $send_email = 0; - my $send_method = 0; - - # Template variables for the email - my $email_base_url = $cobrand->base_url_for_emails($row->cobrand_data); - my %h = map { $_ => $row->$_ } qw/id title detail name category latitude longitude used_map/; - map { $h{$_} = $row->user->$_ } qw/email phone/; - $h{confirmed} = DateTime::Format::Pg->format_datetime( $row->confirmed->truncate (to => 'second' ) ); - - $h{query} = $row->postcode; - $h{url} = $email_base_url . '/report/' . $row->id; - $h{phone_line} = $h{phone} ? _('Phone:') . " $h{phone}\n\n" : ''; - if ($row->photo) { - $h{has_photo} = _("This web page also contains a photo of the problem, provided by the user.") . "\n\n"; - $h{image_url} = $email_base_url . '/photo/' . $row->id . '.full.jpeg'; - } else { - $h{has_photo} = ''; - $h{image_url} = ''; - } - $h{fuzzy} = $row->used_map ? _('To view a map of the precise location of this issue') - : _('The user could not locate the problem on a map, but to see the area around the location they entered'); - $h{closest_address} = ''; - - # If we are in the UK include eastings and northings, and nearest stuff - $h{easting_northing} = ''; - if ( $cobrand->country eq 'GB' ) { - - ( $h{easting}, $h{northing} ) = Utils::convert_latlon_to_en( $h{latitude}, $h{longitude} ); - - # email templates don't have conditionals so we need to farmat this here - $h{easting_northing} # - = "Easting: $h{easting}\n\n" # - . "Northing: $h{northing}\n\n"; - - } - - if ( $row->used_map ) { - $h{closest_address} = $cobrand->find_closest( $h{latitude}, $h{longitude}, $row ); - } - - my (@to, @recips, $template, $areas_info, @open311_councils); - if ($site eq 'emptyhomes') { - - my $council = $row->council; - $areas_info = mySociety::MaPit::call('areas', $council); - my $name = $areas_info->{$council}->{name}; - my $contact = FixMyStreet::App->model("DB::Contact")->find( { - deleted => 0, - area_id => $council, - category => 'Empty property', - } ); - my ($council_email, $confirmed, $note) = ( $contact->email, $contact->confirmed, $contact->note ); - unless ($confirmed) { - $note = 'Council ' . $council . ' deleted' unless $note; - $council_email = 'N/A' unless $council_email; - $notgot{$council_email}{$row->category}++; - $note{$council_email}{$row->category} = $note; - next; - } - - push @to, [ $council_email, $name ]; - @recips = ($council_email); - $send_method = 0; - $send_email = 1; - $template = Utils::read_file("$FindBin::Bin/../templates/email/emptyhomes/" . $row->lang . "/submit.txt"); - - } else { - - # XXX Needs locks! - my @all_councils = split /,|\|/, $row->council; - my ($councils, $missing) = $row->council =~ /^([\d,]+)(?:\|([\d,]+))?/; - my @councils = split(/,/, $councils); - $areas_info = mySociety::MaPit::call('areas', \@all_councils); - my (@dear, %recips); - my $all_confirmed = 1; - foreach my $council (@councils) { - my $name = $areas_info->{$council}->{name}; - push @dear, $name; - - # look in the DB to determine if there is a special handler for this council (e.g., open311, or custom) - my $council_config = FixMyStreet::App->model("DB::Open311conf")->search( { area_id => $council} )->first; - $send_method = $council_config->send_method if $council_config; - if ($council == COUNCIL_ID_EAST_HANTS) { # E. Hants have a web service - $send_method = SEND_METHOD_EAST_HANTS; # TODO: delete? should be in the db - $h{category} = 'Customer Services' if $h{category} eq 'Other'; - } - - # if council lookup provided no explicit send_method, maybe there's some other criterion for setting it: - if (! $send_method) { - if ($council != 2482 && $areas_info->{$council}->{type} eq 'LBO') { # London - $send_method = SEND_METHOD_LONDON; - } - } - $send_email = 1 unless $send_method; # default to email if nothing explicit was provided - - # currently: open311 without an endpoint is useless, so check the endpoint is set - if ($send_method && $send_method eq SEND_METHOD_OPEN311) { - if ($council_config->endpoint) { - if ($send_method eq SEND_METHOD_OPEN311) { - push @open311_councils, $council_config; - } - } else { - print "Warning: no endpoint specified in config data for council=$council (will try email instead)\n"; - $send_method = 0; - $send_email = 1; - } - } - - if ($send_email) { - my $contact = FixMyStreet::App->model("DB::Contact")->find( { - deleted => 0, - area_id => $council, - category => $row->category - } ); - my ($council_email, $confirmed, $note) = ( $contact->email, $contact->confirmed, $contact->note ); - $council_email = essex_contact($row->latitude, $row->longitude) if $council == 2225; - $council_email = oxfordshire_contact($row->latitude, $row->longitude) if $council == 2237 && $council_email eq 'SPECIAL'; - unless ($confirmed) { - $all_confirmed = 0; - $note = 'Council ' . $row->council . ' deleted' - unless $note; - $council_email = 'N/A' unless $council_email; - $notgot{$council_email}{$row->category}++; - $note{$council_email}{$row->category} = $note; - } - push @to, [ $council_email, $name ]; - $recips{$council_email} = 1; - } - } - @recips = keys %recips; - next unless $all_confirmed; - - $template = 'submit.txt'; - $template = 'submit-brent.txt' if $row->council eq 2488 || $row->council eq 2237; - my $template_path = FixMyStreet->path_to( "templates", "email", $cobrand->moniker, $template )->stringify; - $template_path = FixMyStreet->path_to( "templates", "email", "default", $template )->stringify - unless -e $template_path; - $template = Utils::read_file( $template_path ); - - if ($h{category} eq _('Other')) { - $h{category_footer} = _('this type of local problem'); - $h{category_line} = ''; - } else { - $h{category_footer} = "'" . $h{category} . "'"; - $h{category_line} = sprintf(_("Category: %s"), $h{category}) . "\n\n"; - } - - $h{councils_name} = join(_(' and '), @dear); - if ($h{category} eq _('Other')) { - $h{multiple} = @dear>1 ? "[ " . _("This email has been sent to both councils covering the location of the problem, as the user did not categorise it; please ignore it if you're not the correct council to deal with the issue, or let us know what category of problem this is so we can add it to our system.") . " ]\n\n" - : ''; - } else { - $h{multiple} = @dear>1 ? "[ " . _("This email has been sent to several councils covering the location of the problem, as the category selected is provided for all of them; please ignore it if you're not the correct council to deal with the issue.") . " ]\n\n" - : ''; - } - $h{missing} = ''; - if ($missing) { - my $name = $areas_info->{$missing}->{name}; - $h{missing} = '[ ' - . sprintf(_('We realise this problem might be the responsibility of %s; however, we don\'t currently have any contact details for them. If you know of an appropriate contact address, please do get in touch.'), $name) - . " ]\n\n"; - } - - } - - unless ($send_method || $send_email) { - die 'Report not going anywhere for ID ' . $row->id . '!'; - } - - if (mySociety::Config::get('STAGING_SITE')) { - # on a staging server send emails to ourselves rather than the councils - # ...webservice calls will only go through if explictly allowed here: - my @testing_councils = ( 2482 ); - unless (grep {$row->council eq $_} @testing_councils) { - @recips = ( mySociety::Config::get('CONTACT_EMAIL') ); - $send_method = 0; - $send_email = 1; - } - } elsif ($site eq 'emptyhomes') { - my $council = $row->council; - my $country = $areas_info->{$council}->{country}; - if ($country eq 'W') { - push @recips, 'shelter@' . mySociety::Config::get('EMAIL_DOMAIN'); - } else { - push @recips, 'eha@' . mySociety::Config::get('EMAIL_DOMAIN'); - } - } - - # Special case for this parish council - # if ($address && $address =~ /Sprowston/ && $row->council == 2233 && $row->category eq 'Street lighting') { - # $h{councils_name} = 'Sprowston Parish Council'; - # my $e = 'parishclerk' . '@' . 'sprowston-pc.gov.uk'; - # @to = ( [ $e, $h{councils_name} ] ); - # @recips = ($e); - # } - - # Multiply results together, so one success counts as a success. - my $result = -1; - - if ($send_email) { - $result *= FixMyStreet::App->send_email_cron( - { - _template_ => $template, - _parameters_ => \%h, - To => \@to, - From => [ $row->user->email, $row->name ], - }, - mySociety::Config::get('CONTACT_EMAIL'), - \@recips, - $nomail - ); - } - - if ($send_method eq SEND_METHOD_EAST_HANTS) { - $h{message} = construct_easthants_message(%h); - if (!$nomail) { - $result *= post_easthants_message(%h); - } - } elsif ($send_method eq SEND_METHOD_LONDON) { - $h{message} = construct_london_message(%h); - if (!$nomail) { - $result *= post_london_report( $row, %h ); - } - } elsif ($send_method eq SEND_METHOD_OPEN311) { - foreach my $conf ( @open311_councils ) { - print 'posting to end point for ' . $conf->area_id . "\n" if $verbose; - - # Extra bromley fields - if ( $row->council =~ /2482/ ) { - if ( $row->send_fail_count > 0 ) { - next if bromley_retry_timeout( $row ); - } - - my $extra = $row->extra; - push @$extra, { name => 'northing', value => $h{northing} }; - push @$extra, { name => 'easting', value => $h{easting} }; - push @$extra, { name => 'report_url', value => $h{url} }; - push @$extra, { name => 'service_request_id_ext', value => $row->id }; - push @$extra, { name => 'report_title', value => $row->title }; - push @$extra, { name => 'public_anonymity_required', value => $row->anonymous ? 'TRUE' : 'FALSE' }; - push @$extra, { name => 'email_alerts_requested', value => 'FALSE' }; # always false as can never request them - push @$extra, { name => 'requested_datetime', value => $row->confirmed }; - $row->extra( $extra ); - } - - my $contact = FixMyStreet::App->model("DB::Contact")->find( { - deleted => 0, - area_id => $conf->area_id, - category => $row->category - } ); - - my $open311 = Open311->new( - jurisdiction => $conf->jurisdiction, - endpoint => $conf->endpoint, - api_key => $conf->api_key, - ); - - # non standard west berks end points - if ( $row->council =~ /2619/ ) { - $open311->endpoints( { services => 'Services', requests => 'Requests' } ); - } - - # required to get round issues with CRM constraints - if ( $row->council =~ /2218/ ) { - $row->user->name( $row->user->id . ' ' . $row->user->name ); - } - - my $resp = $open311->send_service_request( $row, \%h, $contact->email ); - - # make sure we don't save user changes from above - if ( $row->council =~ /2218/ or $row->council =~ /2482/ ) { - $row->discard_changes(); - } - - if ( $resp ) { - $row->external_id( $resp ); - $result *= 0; - } else { - $result *= 1; - update_send_fail_data( $row, 'Open311 failed' ); - # temporary fix to resolve some issues with west berks - if ( $row->council =~ /2619/ ) { - $result *= 0; - } - } - } - } - - if ($result == mySociety::EmailUtil::EMAIL_SUCCESS) { - $row->update( { - whensent => \'ms_current_timestamp()', - lastupdate => \'ms_current_timestamp()', - } ); - } -} - -if ($verbose) { - print "Council email addresses that need checking:\n" if keys %notgot; - foreach my $e (keys %notgot) { - foreach my $c (keys %{$notgot{$e}}) { - print $notgot{$e}{$c} . " problem, to $e category $c (" . $note{$e}{$c}. ")\n"; - } - } -} - -# not conditional on verbose because these can be considered failures (more relevant than one-off error messages?) -if (keys %sending_skipped_by_method) { - my $c = 0; - print "\nProblem reports that send-reports did not attempt to send because retries >= " . SEND_FAIL_RETRIES_CUTOFF . ":\n"; - foreach my $send_method (sort keys %sending_skipped_by_method) { - printf " %-24s %4d\n", "$send_method:", $sending_skipped_by_method{$send_method}; - $c+=$sending_skipped_by_method{$send_method}; - } - printf " %-24s %4d\n", "Total:", $c; -} - -sub _get_district_for_contact { - my ( $lat, $lon ) = @_; - my $district = - mySociety::MaPit::call( 'point', "4326/$lon,$lat", type => 'DIS' ); - ($district) = keys %$district; - return $district; -} - -# Essex has different contact addresses depending upon the district -# Might be easier if we start storing in the db all areas covered by a point -# Will do for now :) -sub essex_contact { - my $district = _get_district_for_contact(@_); - my $email; - $email = 'eastarea' if $district == 2315 || $district == 2312; - $email = 'midarea' if $district == 2317 || $district == 2314 || $district == 2316; - $email = 'southarea' if $district == 2319 || $district == 2320 || $district == 2310; - $email = 'westarea' if $district == 2309 || $district == 2311 || $district == 2318 || $district == 2313; - die "Returned district $district which is not in Essex!" unless $email; - return "highways.$email\@essexcc.gov.uk"; -} - -# Oxfordshire has different contact addresses depending upon the district -sub oxfordshire_contact { - my $district = _get_district_for_contact(@_); - my $email; - $email = 'northernarea' if $district == 2419 || $district == 2420 || $district == 2421; - $email = 'southernarea' if $district == 2417 || $district == 2418; - die "Returned district $district which is not in Oxfordshire!" unless $email; - return "$email\@oxfordshire.gov.uk"; -} - -# East Hampshire - -sub construct_easthants_message { - my %h = @_; - my $message = ''; - $message .= "[ This report was also sent to the district council covering the location of the problem, as the user did not categorise it; please ignore if you're not the correct council to deal with the issue. ]\n\n" - if $h{multiple}; - $message .= <<EOF; -Subject: $h{title} - -Details: $h{detail} - -$h{fuzzy}, or to provide an update on the problem, please visit the following link: - -$h{url} - -$h{closest_address} -EOF - return $message; -} - -my $eh_service; -sub post_easthants_message { - my %h = @_; - my $return = 1; - $eh_service ||= EastHantsWSDL->on_fault(sub { my($soap, $res) = @_; die ref $res ? $res->faultstring : $soap->transport->status, "\n"; }); - try { - # ServiceName, RemoteCreatedBy, Salutation, FirstName, Name, Email, Telephone, HouseNoName, Street, Town, County, Country, Postcode, Comments, FurtherInfo, ImageURL - my $message = ent(encode_utf8($h{message})); - my $name = ent(encode_utf8($h{name})); - my $result = $eh_service->INPUTFEEDBACK( - $h{category}, 'FixMyStreet', '', '', $name, $h{email}, $h{phone}, - '', '', '', '', '', '', $message, 'Yes', $h{image_url} - ); - $return = 0 if $result eq 'Report received'; - } otherwise { - my $e = shift; - print "Caught an error: $e\n"; - }; - return $return; -} - -# London - -sub construct_london_message { - my %h = @_; - return <<EOF, -A user of FixMyStreet has submitted the following report of a local -problem that they believe might require your attention. - -Subject: $h{title} - -Details: $h{detail} - -$h{fuzzy}, or to provide an update on the problem, please visit the -following link: - -$h{url} - -$h{closest_address} -Yours, -The FixMyStreet team -EOF -} - -sub post_london_report { - my ( $problem, %h ) = @_; - my $phone = $h{phone}; - my $mobile = ''; - if ($phone && $phone =~ /^\s*07/) { - $mobile = $phone; - $phone = ''; - } - my ($first, $last) = $h{name} =~ /^(\S*)(?: (.*))?$/; - my %params = ( - Key => mySociety::Config::get('LONDON_REPORTIT_KEY'), - Signature => Digest::MD5::md5_hex( $h{confirmed} . mySociety::Config::get('LONDON_REPORTIT_SECRET') ), - Type => Utils::london_categories()->{$h{category}}, - RequestDate => $h{confirmed}, - RequestMethod => 'Web', - ExternalId => $h{url}, - 'Customer.Title' => '', - 'Customer.FirstName' => $first, - 'Customer.Surname' => $last, - 'Customer.Email' => $h{email}, - 'Customer.Phone' => $phone, - 'Customer.Mobile' => $mobile, - 'ProblemDescription' => $h{message}, - ); - if ($h{used_map}) { - $params{'Location.Latitude'} = $h{latitude}; - $params{'Location.Longitude'} = $h{longitude}; - } elsif (mySociety::PostcodeUtil::is_valid_postcode($h{query})) { - # Didn't use map, and entered postcode, so use that. - $params{'Location.Postcode'} = $h{query}; - } else { - # Otherwise, lat/lon is all we have, even if it's wrong. - $params{'Location.Latitude'} = $h{latitude}; - $params{'Location.Longitude'} = $h{longitude}; - } - if ($h{has_photo}) { - $params{'Document1.Name'} = 'Photograph'; - $params{'Document1.MimeType'} = 'image/jpeg'; - $params{'Document1.URL'} = $h{image_url}; - $params{'Document1.URLPublic'} = 'true'; - } - my $browser = LWP::UserAgent->new; - my $response = $browser->post( mySociety::Config::get('LONDON_REPORTIT_URL'), \%params ); - my $out = $response->content; - if ($response->code ne 200) { - print "Failed to post $h{id} to London API, response was " . $response->code . " $out\n"; - return 1; - } - my ($id) = $out =~ /<caseid>(.*?)<\/caseid>/; - my ($org) = $out =~ /<organisation>(.*?)<\/organisation>/; - my ($team) = $out =~ /<team>(.*?)<\/team>/; - - $org = london_lookup($org); - $problem->external_id( $id ); - $problem->external_body( $org ); - $problem->external_team( $team ); - return 0; -} - -# Nearest things - -sub london_lookup { - my $org = shift || ''; - my $str = "Unknown ($org)"; - open(FP, "$FindBin::Bin/../data/dft.csv"); - while (<FP>) { - /^(.*?),(.*)/; - if ($org eq $1) { - $str = $2; - last; - } - } - close FP; - return $str; -} - - -# tests send_fail_count agains cutoff limit -# args: problem (row from problem db) -# returns false if there is no cutoff, otherwise error message -sub does_exceed_cutoff_limit { - my ($problem, $council_name) = @_; - my $err_msg = ""; - if ($problem->send_fail_count >= SEND_FAIL_RETRIES_CUTOFF) { - $sending_skipped_by_method{$council_name || '?'}++; - $council_name &&= " to $council_name"; - $err_msg = "skipped: problem id=" . $problem->id . " send$council_name has failed " - . $problem->send_fail_count . " times, cutoff is " . SEND_FAIL_RETRIES_CUTOFF; - } - return $err_msg; -} - -# update_send_fail_data records the failure (of a webservice send) -# args: problem (row from problem db) -# returns: no return value (updates record) -sub update_send_fail_data { - my ($problem, $err_msg) = @_; - $problem->update( { - send_fail_count => $problem->send_fail_count + 1, - send_fail_timestamp => \'ms_current_timestamp()', - send_fail_reason => $err_msg - } ); -} - -sub bromley_retry_timeout { - my $row = shift; +use FixMyStreet::App; - my $tz = DateTime::TimeZone->new( name => 'local' ); - my $now = DateTime->now( time_zone => $tz ); - my $diff = $now - $row->send_fail_timestamp; - if ( $diff->in_units( 'minutes' ) < 30 ) { - return 1; - } +my $site = CronFns::site(mySociety::Config::get('BASE_URL')); +CronFns::language($site); - return 0; -} +FixMyStreet::App->model('DB::Problem')->send_reports(); diff --git a/carton.lock b/carton.lock index bbee10724..1f73bfad4 100644 --- a/carton.lock +++ b/carton.lock @@ -1,7 +1,7 @@ { "modules" : { "App::cpanminus" : { - "dist" : "App-cpanminus-1.5006", + "dist" : "App-cpanminus-1.5007", "module" : "App::cpanminus", "mymeta" : { "abstract" : "Get, unpack, build and install modules from CPAN.", @@ -44,17 +44,17 @@ } }, "release_status" : "stable", - "version" : "1.5006" + "version" : "1.5007" }, "name" : "App::cpanminus", - "pathname" : "M/MI/MIYAGAWA/App-cpanminus-1.5006.tar.gz", + "pathname" : "M/MI/MIYAGAWA/App-cpanminus-1.5007.tar.gz", "provides" : { "App::cpanminus" : { "file" : "App/cpanminus.pm", - "version" : "1.5006" + "version" : "1.5007" } }, - "version" : "1.5006" + "version" : "1.5007" }, "AppConfig" : { "dist" : "AppConfig-1.66", @@ -3552,6 +3552,110 @@ }, "version" : "2.09" }, + "Compress::Raw::Bzip2" : { + "dist" : "Compress-Raw-Bzip2-2.048", + "module" : "Compress::Raw::Bzip2", + "mymeta" : { + "abstract" : "Low-Level Interface to bzip2 compression library", + "author" : [ + "Paul Marquess <pmqs@cpan.org>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Compress-Raw-Bzip2", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : {} + } + }, + "release_status" : "stable", + "version" : "2.048" + }, + "name" : "Compress::Raw::Bzip2", + "pathname" : "P/PM/PMQS/Compress-Raw-Bzip2-2.048.tar.gz", + "provides" : { + "Compress::Raw::Bzip2" : { + "file" : "Compress/Raw/Bzip2.pm", + "version" : "2.048" + } + }, + "version" : "2.048" + }, + "Compress::Raw::Zlib" : { + "dist" : "Compress-Raw-Zlib-2.048", + "module" : "Compress::Raw::Zlib", + "mymeta" : { + "abstract" : "unknown", + "author" : [ + "unknown" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Compress-Raw-Zlib", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : {} + } + }, + "release_status" : "stable", + "version" : "2.048" + }, + "name" : "Compress::Raw::Zlib", + "pathname" : "P/PM/PMQS/Compress-Raw-Zlib-2.048.tar.gz", + "provides" : { + "Compress::Raw::Zlib" : { + "file" : "Compress/Raw/Zlib.pm", + "version" : "2.048" + } + }, + "version" : "2.048" + }, "Config::Any" : { "dist" : "Config-Any-0.20", "module" : "Config::Any", @@ -11305,6 +11409,70 @@ }, "version" : "1.27" }, + "Digest::HMAC" : { + "dist" : "Digest-HMAC-1.03", + "module" : "Digest::HMAC_MD5", + "mymeta" : { + "abstract" : "Keyed-Hashing for Message Authentication", + "author" : [ + "Gisle Aas <gisle@activestate.com>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.57_05, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Digest-HMAC", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "Digest::MD5" : "2", + "Digest::SHA" : "1", + "perl" : "5.004" + } + } + }, + "release_status" : "stable", + "version" : "1.03" + }, + "name" : "Digest::HMAC", + "pathname" : "G/GA/GAAS/Digest-HMAC-1.03.tar.gz", + "provides" : { + "Digest::HMAC" : { + "file" : "Digest/HMAC.pm", + "version" : "1.03" + }, + "Digest::HMAC_MD5" : { + "file" : "Digest/HMAC_MD5.pm", + "version" : "1.01" + }, + "Digest::HMAC_SHA1" : { + "file" : "Digest/HMAC_SHA1.pm", + "version" : "1.03" + } + }, + "version" : "1.01" + }, "Digest::SHA1" : { "dist" : "Digest-SHA1-2.13", "module" : "Digest::SHA1", @@ -12000,6 +12168,7 @@ "runtime" : { "requires" : { "Mail::Address" : 0, + "Net::DNS" : 0, "Test::More" : 0, "perl" : "5.006" } @@ -12441,6 +12610,287 @@ }, "version" : "1.32" }, + "ExtUtils::CBuilder" : { + "dist" : "ExtUtils-CBuilder-0.280202", + "module" : "ExtUtils::CBuilder", + "mymeta" : { + "abstract" : "Compile and link C code for Perl modules", + "author" : [ + "Ken Williams <kwilliams@cpan.org>", + "The Perl 5 Porters" + ], + "dynamic_config" : 0, + "generated_by" : "Dist::Zilla version 4.200001, CPAN::Meta::Converter version 2.102400, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "ExtUtils-CBuilder", + "prereqs" : { + "build" : { + "requires" : { + "Test::More" : "0.47" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.31" + } + }, + "runtime" : { + "requires" : { + "Cwd" : 0, + "File::Basename" : 0, + "File::Spec" : "3.13", + "File::Temp" : 0, + "IO::File" : 0, + "IPC::Cmd" : 0, + "Text::ParseWords" : 0 + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.perl.org/rt3/" + }, + "homepage" : "http://search.cpan.org/dist/ExtUtils-CBuilder", + "repository" : { + "type" : "git", + "url" : "git://github.com/dagolden/extutils-cbuilder.git" + } + }, + "version" : "0.280202", + "x_Dist_Zilla" : { + "plugins" : [ + { + "class" : "Dist::Zilla::Plugin::VersionFromModule", + "name" : "VersionFromModule", + "version" : "0.08" + }, + { + "class" : "Dist::Zilla::Plugin::CheckExtraTests", + "name" : "CheckExtraTests", + "version" : "0.004" + }, + { + "class" : "Dist::Zilla::Plugin::CheckChangesHasContent", + "name" : "CheckChangesHasContent", + "version" : "0.003" + }, + { + "class" : "Dist::Zilla::Plugin::GatherDir", + "name" : "@Filter/GatherDir", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::PruneCruft", + "name" : "@Filter/PruneCruft", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::ManifestSkip", + "name" : "@Filter/ManifestSkip", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::MetaYAML", + "name" : "@Filter/MetaYAML", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::License", + "name" : "@Filter/License", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::Readme", + "name" : "@Filter/Readme", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::ExecDir", + "name" : "@Filter/ExecDir", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::ShareDir", + "name" : "@Filter/ShareDir", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::MakeMaker", + "name" : "@Filter/MakeMaker", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::Manifest", + "name" : "@Filter/Manifest", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::TestRelease", + "name" : "@Filter/TestRelease", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::ConfirmRelease", + "name" : "@Filter/ConfirmRelease", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::UploadToCPAN", + "name" : "@Filter/UploadToCPAN", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::PruneFiles", + "name" : "PruneFiles", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::DualLife", + "name" : "DualLife", + "version" : "0.01" + }, + { + "class" : "Dist::Zilla::Plugin::MetaConfig", + "name" : "MetaConfig", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::MetaJSON", + "name" : "MetaJSON", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::PodSyntaxTests", + "name" : "PodSyntaxTests", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::EOLTests", + "name" : "EOLTests", + "version" : "0.02" + }, + { + "class" : "Dist::Zilla::Plugin::Prereqs", + "config" : { + "Dist::Zilla::Plugin::Prereqs" : { + "phase" : "runtime", + "type" : "requires" + } + }, + "name" : "Prereqs", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::Prereqs", + "config" : { + "Dist::Zilla::Plugin::Prereqs" : { + "phase" : "test", + "type" : "requires" + } + }, + "name" : "TestRequires", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::MetaResources", + "name" : "MetaResources", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":InstallModules", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":TestFiles", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":ExecFiles", + "version" : "4.200001" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":ShareFiles", + "version" : "4.200001" + } + ], + "zilla" : { + "class" : "Dist::Zilla::Dist::Builder", + "config" : { + "is_trial" : 0 + }, + "version" : "4.200001" + } + } + }, + "name" : "ExtUtils::CBuilder", + "pathname" : "D/DA/DAGOLDEN/ExtUtils-CBuilder-0.280202.tar.gz", + "provides" : { + "ExtUtils::CBuilder" : { + "file" : "ExtUtils/CBuilder.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Base" : { + "file" : "ExtUtils/CBuilder/Base.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::Unix" : { + "file" : "ExtUtils/CBuilder/Platform/Unix.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::VMS" : { + "file" : "ExtUtils/CBuilder/Platform/VMS.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::Windows" : { + "file" : "ExtUtils/CBuilder/Platform/Windows.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::Windows::BCC" : { + "file" : "ExtUtils/CBuilder/Platform/Windows/BCC.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::Windows::GCC" : { + "file" : "ExtUtils/CBuilder/Platform/Windows/GCC.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::Windows::MSVC" : { + "file" : "ExtUtils/CBuilder/Platform/Windows/MSVC.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::aix" : { + "file" : "ExtUtils/CBuilder/Platform/aix.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::cygwin" : { + "file" : "ExtUtils/CBuilder/Platform/cygwin.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::darwin" : { + "file" : "ExtUtils/CBuilder/Platform/darwin.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::dec_osf" : { + "file" : "ExtUtils/CBuilder/Platform/dec_osf.pm", + "version" : "0.280202" + }, + "ExtUtils::CBuilder::Platform::os2" : { + "file" : "ExtUtils/CBuilder/Platform/os2.pm", + "version" : "0.280202" + } + }, + "version" : "0.280202" + }, "ExtUtils::MakeMaker" : { "dist" : "ExtUtils-MakeMaker-6.62", "module" : "ExtUtils::MakeMaker", @@ -12509,6 +12959,38 @@ "name" : "ExtUtils::MakeMaker", "pathname" : "M/MS/MSCHWERN/ExtUtils-MakeMaker-6.62.tar.gz", "provides" : { + "CPAN::Meta" : { + "file" : "CPAN/Meta.pm", + "version" : "2.112150" + }, + "CPAN::Meta::Converter" : { + "file" : "CPAN/Meta/Converter.pm", + "version" : "2.112150" + }, + "CPAN::Meta::Feature" : { + "file" : "CPAN/Meta/Feature.pm", + "version" : "2.112150" + }, + "CPAN::Meta::History" : { + "file" : "CPAN/Meta/History.pm", + "version" : "2.112150" + }, + "CPAN::Meta::Prereqs" : { + "file" : "CPAN/Meta/Prereqs.pm", + "version" : "2.112150" + }, + "CPAN::Meta::Spec" : { + "file" : "CPAN/Meta/Spec.pm", + "version" : "2.112150" + }, + "CPAN::Meta::Validator" : { + "file" : "CPAN/Meta/Validator.pm", + "version" : "2.112150" + }, + "CPAN::Meta::YAML" : { + "file" : "CPAN/Meta/YAML.pm", + "version" : "0.003" + }, "DynaLoader" : { "file" : "ExtUtils/Mkbootstrap.pm" }, @@ -12604,6 +13086,10 @@ "file" : "ExtUtils/MakeMaker/Config.pm", "version" : "6.62" }, + "ExtUtils::Manifest" : { + "file" : "ExtUtils/Manifest.pm", + "version" : "1.58" + }, "ExtUtils::Mkbootstrap" : { "file" : "ExtUtils/Mkbootstrap.pm", "version" : "6.62" @@ -12616,15 +13102,156 @@ "file" : "ExtUtils/testlib.pm", "version" : "6.62" }, + "JSON::PP" : { + "file" : "JSON/PP.pm", + "version" : "2.27104" + }, + "JSON::PP::Boolean" : { + "file" : "JSON/PP.pm" + }, + "JSON::PP::Compat5006" : { + "file" : "JSON/PP/Compat5006.pm", + "version" : "1.09" + }, + "JSON::PP::IncrParser" : { + "file" : "JSON/PP.pm", + "version" : "1.01" + }, "MM" : { "file" : "ExtUtils/MM.pm" }, "MY" : { "file" : "ExtUtils/MakeMaker.pm" + }, + "Parse::CPAN::Meta" : { + "file" : "Parse/CPAN/Meta.pm", + "version" : "1.4401" + }, + "Version::Requirements" : { + "file" : "Version/Requirements.pm", + "version" : "0.101020" + }, + "charstar" : { + "file" : "version/vpp.pm" + }, + "version" : { + "file" : "version.pm", + "version" : "0.88" + }, + "version::vpp" : { + "file" : "version/vpp.pm", + "version" : "0.88" + }, + "warnings" : { + "file" : "version/vpp.pm" } }, "version" : "6.62" }, + "ExtUtils::ParseXS" : { + "dist" : "ExtUtils-ParseXS-3.15", + "module" : "ExtUtils::ParseXS", + "mymeta" : { + "abstract" : "converts Perl XS code into C code", + "author" : [ + "Ken Williams <ken@mathforum.org>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.113640, CPAN::Meta::Converter version 2.112150", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "ExtUtils-ParseXS", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.46" + } + }, + "runtime" : { + "requires" : { + "Carp" : 0, + "Cwd" : 0, + "DynaLoader" : 0, + "Exporter" : 0, + "ExtUtils::CBuilder" : 0, + "ExtUtils::MakeMaker" : "6.46", + "File::Basename" : 0, + "File::Spec" : 0, + "Symbol" : 0, + "Test::More" : "0.47" + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.perl.org/rt3/" + }, + "repository" : { + "type" : "git", + "url" : "git://perl5.git.perl.org/gitroot/perl.git" + } + }, + "version" : "3.15" + }, + "name" : "ExtUtils::ParseXS", + "pathname" : "S/SM/SMUELLER/ExtUtils-ParseXS-3.15.tar.gz", + "provides" : { + "ExtUtils::ParseXS" : { + "file" : "ExtUtils/ParseXS.pm", + "version" : "3.15" + }, + "ExtUtils::ParseXS::Constants" : { + "file" : "ExtUtils/ParseXS/Constants.pm", + "version" : "3.15" + }, + "ExtUtils::ParseXS::CountLines" : { + "file" : "ExtUtils/ParseXS/CountLines.pm", + "version" : "3.15" + }, + "ExtUtils::ParseXS::Utilities" : { + "file" : "ExtUtils/ParseXS/Utilities.pm", + "version" : "3.15" + }, + "ExtUtils::Typemaps" : { + "file" : "ExtUtils/Typemaps.pm", + "version" : "3.15" + }, + "ExtUtils::Typemaps::Cmd" : { + "file" : "ExtUtils/Typemaps/Cmd.pm", + "version" : "3.15" + }, + "ExtUtils::Typemaps::InputMap" : { + "file" : "ExtUtils/Typemaps/InputMap.pm", + "version" : "3.15" + }, + "ExtUtils::Typemaps::OutputMap" : { + "file" : "ExtUtils/Typemaps/OutputMap.pm", + "version" : "3.15" + }, + "ExtUtils::Typemaps::Type" : { + "file" : "ExtUtils/Typemaps/Type.pm", + "version" : "3.15" + } + }, + "version" : "3.15" + }, "FCGI" : { "dist" : "FCGI-0.74", "module" : "FCGI", @@ -14449,6 +15076,175 @@ }, "version" : "0.24" }, + "IO::Compress" : { + "dist" : "IO-Compress-2.048", + "module" : "IO::Compress::Bzip2", + "mymeta" : { + "abstract" : "IO Interface to compressed data files/buffers", + "author" : [ + "Paul Marquess <pmqs@cpan.org>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "IO-Compress", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "Compress::Raw::Bzip2" : "2.048", + "Compress::Raw::Zlib" : "2.048", + "Scalar::Util" : 0 + } + } + }, + "release_status" : "stable", + "version" : "2.048" + }, + "name" : "IO::Compress", + "pathname" : "P/PM/PMQS/IO-Compress-2.048.tar.gz", + "provides" : { + "Compress::Zlib" : { + "file" : "Compress/Zlib.pm", + "version" : "2.048" + }, + "File::GlobMapper" : { + "file" : "File/GlobMapper.pm", + "version" : "1.000" + }, + "IO::Compress::Adapter::Bzip2" : { + "file" : "IO/Compress/Adapter/Bzip2.pm", + "version" : "2.048" + }, + "IO::Compress::Adapter::Deflate" : { + "file" : "IO/Compress/Adapter/Deflate.pm", + "version" : "2.048" + }, + "IO::Compress::Adapter::Identity" : { + "file" : "IO/Compress/Adapter/Identity.pm", + "version" : "2.048" + }, + "IO::Compress::Base" : { + "file" : "IO/Compress/Base.pm", + "version" : "2.048" + }, + "IO::Compress::Base::Common" : { + "file" : "IO/Compress/Base/Common.pm", + "version" : "2.048" + }, + "IO::Compress::Bzip2" : { + "file" : "IO/Compress/Bzip2.pm", + "version" : "2.048" + }, + "IO::Compress::Deflate" : { + "file" : "IO/Compress/Deflate.pm", + "version" : "2.048" + }, + "IO::Compress::Gzip" : { + "file" : "IO/Compress/Gzip.pm", + "version" : "2.048" + }, + "IO::Compress::Gzip::Constants" : { + "file" : "IO/Compress/Gzip/Constants.pm", + "version" : "2.048" + }, + "IO::Compress::RawDeflate" : { + "file" : "IO/Compress/RawDeflate.pm", + "version" : "2.048" + }, + "IO::Compress::Zip" : { + "file" : "IO/Compress/Zip.pm", + "version" : "2.048" + }, + "IO::Compress::Zip::Constants" : { + "file" : "IO/Compress/Zip/Constants.pm", + "version" : "2.048" + }, + "IO::Compress::Zlib::Constants" : { + "file" : "IO/Compress/Zlib/Constants.pm", + "version" : "2.048" + }, + "IO::Compress::Zlib::Extra" : { + "file" : "IO/Compress/Zlib/Extra.pm", + "version" : "2.048" + }, + "IO::Uncompress::Adapter::Bunzip2" : { + "file" : "IO/Uncompress/Adapter/Bunzip2.pm", + "version" : "2.048" + }, + "IO::Uncompress::Adapter::Identity" : { + "file" : "IO/Uncompress/Adapter/Identity.pm", + "version" : "2.048" + }, + "IO::Uncompress::Adapter::Inflate" : { + "file" : "IO/Uncompress/Adapter/Inflate.pm", + "version" : "2.048" + }, + "IO::Uncompress::AnyInflate" : { + "file" : "IO/Uncompress/AnyInflate.pm", + "version" : "2.048" + }, + "IO::Uncompress::AnyUncompress" : { + "file" : "IO/Uncompress/AnyUncompress.pm", + "version" : "2.048" + }, + "IO::Uncompress::Base" : { + "file" : "IO/Uncompress/Base.pm", + "version" : "2.048" + }, + "IO::Uncompress::Bunzip2" : { + "file" : "IO/Uncompress/Bunzip2.pm", + "version" : "2.048" + }, + "IO::Uncompress::Gunzip" : { + "file" : "IO/Uncompress/Gunzip.pm", + "version" : "2.048" + }, + "IO::Uncompress::Inflate" : { + "file" : "IO/Uncompress/Inflate.pm", + "version" : "2.048" + }, + "IO::Uncompress::RawInflate" : { + "file" : "IO/Uncompress/RawInflate.pm", + "version" : "2.048" + }, + "IO::Uncompress::Unzip" : { + "file" : "IO/Uncompress/Unzip.pm", + "version" : "2.048" + }, + "U64" : { + "file" : "IO/Compress/Base/Common.pm" + }, + "Zlib::OldDeflate" : { + "file" : "Compress/Zlib.pm" + }, + "Zlib::OldInflate" : { + "file" : "Compress/Zlib.pm" + } + }, + "version" : "2.048" + }, "IO::String" : { "dist" : "IO-String-1.08", "module" : "IO::String", @@ -14740,6 +15536,90 @@ }, "version" : "3.230" }, + "JSON" : { + "dist" : "JSON-2.53", + "module" : "JSON", + "mymeta" : { + "abstract" : "JSON (JavaScript Object Notation) encoder/decoder", + "author" : [ + "Makamaka Hannyaharamitu, E<lt>makamaka[at]cpan.orgE<gt>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.56, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "JSON", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "Test::More" : 0 + } + } + }, + "release_status" : "stable", + "resources" : { + "repository" : { + "url" : "http://github.com/makamaka/JSON" + } + }, + "version" : "2.53" + }, + "name" : "JSON", + "pathname" : "M/MA/MAKAMAKA/JSON-2.53.tar.gz", + "provides" : { + "JSON" : { + "file" : "JSON.pm", + "version" : "2.53" + }, + "JSON::Backend::PP" : { + "file" : "JSON.pm" + }, + "JSON::Boolean" : { + "file" : "JSON.pm" + }, + "JSON::PP" : { + "file" : "JSON/backportPP.pm", + "version" : "2.27200" + }, + "JSON::PP5005" : { + "file" : "JSON/backportPP/Compat5005.pm", + "version" : "1.10" + }, + "JSON::PP56" : { + "file" : "JSON/backportPP/Compat5006.pm", + "version" : "1.08" + }, + "JSON::PP::IncrParser" : { + "file" : "JSON/backportPP.pm", + "version" : "1.01" + }, + "JSON::backportPP::Boolean" : { + "file" : "JSON/backportPP.pm" + } + }, + "version" : "2.53" + }, "LWP" : { "dist" : "libwww-perl-6.03", "module" : "LWP", @@ -15025,6 +15905,222 @@ }, "version" : "0.33" }, + "Locale::Maketext" : { + "dist" : "Locale-Maketext-1.22", + "module" : "Locale::Maketext", + "mymeta" : { + "abstract" : "framework for localization", + "author" : [ + "unknown" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930001, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Locale-Maketext", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "I18N::LangTags" : "0.31", + "I18N::LangTags::Detect" : 0, + "Test::More" : 0 + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.perl.org/perlbug/" + }, + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://perl5.git.perl.org/perl.git/tree/HEAD:/dist/Locale-Maketext" + }, + "x_MailingList" : "http://lists.perl.org/list/perl5-porters.html" + }, + "version" : "1.22" + }, + "name" : "Locale::Maketext", + "pathname" : "T/TO/TODDR/Locale-Maketext-1.22.tar.gz", + "provides" : { + "Locale::Maketext" : { + "file" : "Locale/Maketext.pm", + "version" : "1.22" + }, + "Locale::Maketext::Guts" : { + "file" : "Locale/Maketext/Guts.pm", + "version" : "1.20" + }, + "Locale::Maketext::GutsLoader" : { + "file" : "Locale/Maketext/GutsLoader.pm", + "version" : "1.20" + } + }, + "version" : "1.22" + }, + "Locale::Maketext::Lexicon" : { + "dist" : "Locale-Maketext-Lexicon-0.91", + "module" : "Locale::Maketext::Lexicon", + "mymeta" : { + "abstract" : "Use other catalog formats in Maketext", + "author" : [ + "Audrey Tang <cpan@audreyt.org>" + ], + "dynamic_config" : 0, + "generated_by" : "Module::Install version 1.01, CPAN::Meta::Converter version 2.112150", + "license" : [ + "mit" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Locale-Maketext-Lexicon", + "no_index" : { + "directory" : [ + "inc", + "t" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.42", + "Test::More" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.42" + } + }, + "runtime" : { + "recommends" : { + "HTML::Parser" : "3.56", + "Lingua::EN::Sentence" : "0.25", + "PPI" : "1.203", + "Template" : "2.20", + "Template::Constants" : "2.75", + "YAML" : "0.66", + "YAML::Loader" : "0.66" + }, + "requires" : { + "Locale::Maketext" : "1.17", + "perl" : "5.005" + } + } + }, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://opensource.org/licenses/mit-license.php" + ] + }, + "version" : "0.91" + }, + "name" : "Locale::Maketext::Lexicon", + "pathname" : "D/DR/DRTECH/Locale-Maketext-Lexicon-0.91.tar.gz", + "provides" : { + "Locale::Maketext::Extract" : { + "file" : "Locale/Maketext/Extract.pm", + "version" : "0.38" + }, + "Locale::Maketext::Extract::Plugin::Base" : { + "file" : "Locale/Maketext/Extract/Plugin/Base.pm" + }, + "Locale::Maketext::Extract::Plugin::FormFu" : { + "file" : "Locale/Maketext/Extract/Plugin/FormFu.pm" + }, + "Locale::Maketext::Extract::Plugin::FormFu::Extractor" : { + "file" : "Locale/Maketext/Extract/Plugin/FormFu.pm" + }, + "Locale::Maketext::Extract::Plugin::Generic" : { + "file" : "Locale/Maketext/Extract/Plugin/Generic.pm" + }, + "Locale::Maketext::Extract::Plugin::Mason" : { + "file" : "Locale/Maketext/Extract/Plugin/Mason.pm" + }, + "Locale::Maketext::Extract::Plugin::PPI" : { + "file" : "Locale/Maketext/Extract/Plugin/PPI.pm" + }, + "Locale::Maketext::Extract::Plugin::Perl" : { + "file" : "Locale/Maketext/Extract/Plugin/Perl.pm" + }, + "Locale::Maketext::Extract::Plugin::TT2" : { + "file" : "Locale/Maketext/Extract/Plugin/TT2.pm" + }, + "Locale::Maketext::Extract::Plugin::TT2::Directive" : { + "file" : "Locale/Maketext/Extract/Plugin/TT2.pm" + }, + "Locale::Maketext::Extract::Plugin::TT2::Parser" : { + "file" : "Locale/Maketext/Extract/Plugin/TT2.pm" + }, + "Locale::Maketext::Extract::Plugin::TextTemplate" : { + "file" : "Locale/Maketext/Extract/Plugin/TextTemplate.pm", + "version" : "0.31" + }, + "Locale::Maketext::Extract::Plugin::TextTemplate::Parser" : { + "file" : "Locale/Maketext/Extract/Plugin/TextTemplate.pm" + }, + "Locale::Maketext::Extract::Plugin::YAML" : { + "file" : "Locale/Maketext/Extract/Plugin/YAML.pm" + }, + "Locale::Maketext::Extract::Plugin::YAML::Extractor" : { + "file" : "Locale/Maketext/Extract/Plugin/YAML.pm" + }, + "Locale::Maketext::Extract::Run" : { + "file" : "Locale/Maketext/Extract/Run.pm" + }, + "Locale::Maketext::Lexicon" : { + "file" : "Locale/Maketext/Lexicon.pm", + "version" : "0.91" + }, + "Locale::Maketext::Lexicon::Auto" : { + "file" : "Locale/Maketext/Lexicon/Auto.pm", + "version" : "0.10" + }, + "Locale::Maketext::Lexicon::Extract::Run" : { + "file" : "Locale/Maketext/Extract/Run.pm", + "version" : "0.35" + }, + "Locale::Maketext::Lexicon::Gettext" : { + "file" : "Locale/Maketext/Lexicon/Gettext.pm", + "version" : "0.17" + }, + "Locale::Maketext::Lexicon::Msgcat" : { + "file" : "Locale/Maketext/Lexicon/Msgcat.pm", + "version" : "0.03" + }, + "Locale::Maketext::Lexicon::Tie" : { + "file" : "Locale/Maketext/Lexicon/Tie.pm", + "version" : "0.05" + } + }, + "version" : "0.91" + }, "Log::Log4perl" : { "dist" : "Log-Log4perl-1.34", "module" : "Log::Log4perl", @@ -15673,6 +16769,313 @@ }, "version" : "0.06" }, + "Module::Build" : { + "dist" : "Module-Build-0.3800", + "module" : "Module::Build", + "mymeta" : { + "abstract" : "Build and install Perl modules", + "author" : [ + "Ken Williams <kwilliams@cpan.org>", + "Development questions, bug reports, and patches should be sent to the\nModule-Build mailing list at <module-build@perl.org>." + ], + "dynamic_config" : 0, + "generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Module-Build", + "prereqs" : { + "build" : { + "requires" : { + "File::Temp" : "0.15", + "Parse::CPAN::Meta" : "1.4401", + "Test::Harness" : "3.16", + "Test::More" : "0.49" + } + }, + "runtime" : { + "recommends" : { + "ExtUtils::Install" : "0.3", + "ExtUtils::Manifest" : "1.54" + }, + "requires" : { + "CPAN::Meta" : "2.110420", + "Cwd" : 0, + "Data::Dumper" : 0, + "ExtUtils::CBuilder" : "0.27", + "ExtUtils::Install" : 0, + "ExtUtils::Manifest" : 0, + "ExtUtils::Mkbootstrap" : 0, + "ExtUtils::ParseXS" : "2.21", + "File::Basename" : 0, + "File::Compare" : 0, + "File::Copy" : 0, + "File::Find" : 0, + "File::Path" : 0, + "File::Spec" : "0.82", + "Getopt::Long" : 0, + "IO::File" : 0, + "Module::Metadata" : "1.000002", + "Perl::OSType" : "1", + "Test::Harness" : 0, + "Text::Abbrev" : 0, + "Text::ParseWords" : 0, + "perl" : "5.006001", + "version" : "0.87" + } + } + }, + "provides" : { + "Module::Build" : { + "file" : "lib/Module/Build.pm", + "version" : "0.3800" + }, + "Module::Build::Base" : { + "file" : "lib/Module/Build/Base.pm", + "version" : "0.3800" + }, + "Module::Build::Compat" : { + "file" : "lib/Module/Build/Compat.pm", + "version" : "0.3800" + }, + "Module::Build::Config" : { + "file" : "lib/Module/Build/Config.pm", + "version" : "0.3800" + }, + "Module::Build::Cookbook" : { + "file" : "lib/Module/Build/Cookbook.pm", + "version" : "0.3800" + }, + "Module::Build::Dumper" : { + "file" : "lib/Module/Build/Dumper.pm", + "version" : "0.3800" + }, + "Module::Build::ModuleInfo" : { + "file" : "lib/Module/Build/ModuleInfo.pm", + "version" : "0.3800" + }, + "Module::Build::Notes" : { + "file" : "lib/Module/Build/Notes.pm", + "version" : "0.3800" + }, + "Module::Build::PPMMaker" : { + "file" : "lib/Module/Build/PPMMaker.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Amiga" : { + "file" : "lib/Module/Build/Platform/Amiga.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Default" : { + "file" : "lib/Module/Build/Platform/Default.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::EBCDIC" : { + "file" : "lib/Module/Build/Platform/EBCDIC.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::MPEiX" : { + "file" : "lib/Module/Build/Platform/MPEiX.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::MacOS" : { + "file" : "lib/Module/Build/Platform/MacOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::RiscOS" : { + "file" : "lib/Module/Build/Platform/RiscOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Unix" : { + "file" : "lib/Module/Build/Platform/Unix.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::VMS" : { + "file" : "lib/Module/Build/Platform/VMS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::VOS" : { + "file" : "lib/Module/Build/Platform/VOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Windows" : { + "file" : "lib/Module/Build/Platform/Windows.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::aix" : { + "file" : "lib/Module/Build/Platform/aix.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::cygwin" : { + "file" : "lib/Module/Build/Platform/cygwin.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::darwin" : { + "file" : "lib/Module/Build/Platform/darwin.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::os2" : { + "file" : "lib/Module/Build/Platform/os2.pm", + "version" : "0.3800" + }, + "Module::Build::PodParser" : { + "file" : "lib/Module/Build/PodParser.pm", + "version" : "0.3800" + }, + "Module::Build::Version" : { + "file" : "lib/Module/Build/Version.pm", + "version" : "0.87" + }, + "Module::Build::YAML" : { + "file" : "lib/Module/Build/YAML.pm", + "version" : "1.41" + }, + "inc::latest" : { + "file" : "lib/inc/latest.pm", + "version" : "0.3800" + }, + "inc::latest::private" : { + "file" : "lib/inc/latest/private.pm", + "version" : "0.3800" + } + }, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://github.com/dagolden/module-build/" + }, + "x_MailingList" : "mailto:module-build@perl.org" + }, + "version" : "0.3800" + }, + "name" : "Module::Build", + "pathname" : "D/DA/DAGOLDEN/Module-Build-0.3800.tar.gz", + "provides" : { + "Module::Build" : { + "file" : "Module/Build.pm", + "version" : "0.3800" + }, + "Module::Build::Base" : { + "file" : "Module/Build/Base.pm", + "version" : "0.3800" + }, + "Module::Build::Compat" : { + "file" : "Module/Build/Compat.pm", + "version" : "0.3800" + }, + "Module::Build::Config" : { + "file" : "Module/Build/Config.pm", + "version" : "0.3800" + }, + "Module::Build::ConfigData" : { + "file" : "Module/Build/ConfigData.pm" + }, + "Module::Build::Cookbook" : { + "file" : "Module/Build/Cookbook.pm", + "version" : "0.3800" + }, + "Module::Build::Dumper" : { + "file" : "Module/Build/Dumper.pm", + "version" : "0.3800" + }, + "Module::Build::ModuleInfo" : { + "file" : "Module/Build/ModuleInfo.pm", + "version" : "0.3800" + }, + "Module::Build::Notes" : { + "file" : "Module/Build/Notes.pm", + "version" : "0.3800" + }, + "Module::Build::PPMMaker" : { + "file" : "Module/Build/PPMMaker.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Amiga" : { + "file" : "Module/Build/Platform/Amiga.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Default" : { + "file" : "Module/Build/Platform/Default.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::EBCDIC" : { + "file" : "Module/Build/Platform/EBCDIC.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::MPEiX" : { + "file" : "Module/Build/Platform/MPEiX.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::MacOS" : { + "file" : "Module/Build/Platform/MacOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::RiscOS" : { + "file" : "Module/Build/Platform/RiscOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Unix" : { + "file" : "Module/Build/Platform/Unix.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::VMS" : { + "file" : "Module/Build/Platform/VMS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::VOS" : { + "file" : "Module/Build/Platform/VOS.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::Windows" : { + "file" : "Module/Build/Platform/Windows.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::aix" : { + "file" : "Module/Build/Platform/aix.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::cygwin" : { + "file" : "Module/Build/Platform/cygwin.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::darwin" : { + "file" : "Module/Build/Platform/darwin.pm", + "version" : "0.3800" + }, + "Module::Build::Platform::os2" : { + "file" : "Module/Build/Platform/os2.pm", + "version" : "0.3800" + }, + "Module::Build::PodParser" : { + "file" : "Module/Build/PodParser.pm", + "version" : "0.3800" + }, + "Module::Build::Version" : { + "file" : "Module/Build/Version.pm", + "version" : "0.87" + }, + "Module::Build::YAML" : { + "file" : "Module/Build/YAML.pm", + "version" : "1.41" + }, + "inc::latest" : { + "file" : "inc/latest.pm", + "version" : "0.3800" + }, + "inc::latest::private" : { + "file" : "inc/latest/private.pm", + "version" : "0.3800" + } + }, + "version" : "0.3800" + }, "Module::Extract::Namespaces" : { "dist" : "Module-Extract-Namespaces-0.14", "module" : "Module::Extract::Namespaces", @@ -15908,6 +17311,60 @@ }, "version" : "0.10" }, + "Module::Metadata" : { + "dist" : "Module-Metadata-1.000007", + "module" : "Module::Metadata", + "mymeta" : { + "abstract" : "Gather package and POD information from perl module files", + "author" : [ + "Ken Williams <kwilliams@cpan.org>, Randy W. Sims <RandyS@ThePierianSpring.org>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Module-Metadata", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "version" : "0.87" + } + } + }, + "release_status" : "stable", + "version" : "1.000007" + }, + "name" : "Module::Metadata", + "pathname" : "D/DA/DAGOLDEN/Module-Metadata-1.000007.tar.gz", + "provides" : { + "Module::Metadata" : { + "file" : "Module/Metadata.pm", + "version" : "1.000007" + } + }, + "version" : "1.000007" + }, "Module::Runtime" : { "dist" : "Module-Runtime-0.011", "module" : "Module::Runtime", @@ -18161,6 +19618,301 @@ }, "version" : "1.28" }, + "Net::DNS" : { + "dist" : "Net-DNS-0.68", + "module" : "Net::DNS", + "mymeta" : { + "abstract" : "Perl DNS resolver module", + "author" : [ + "Olaf Kolkman <olaf@net-dns.org>" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.56, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Net-DNS", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "Digest::HMAC_MD5" : "1", + "Digest::MD5" : "2.12", + "Digest::SHA" : "5.23", + "IO::Socket" : 0, + "MIME::Base64" : "2.11", + "Test::More" : "0.18" + } + } + }, + "release_status" : "stable", + "version" : "0.68" + }, + "name" : "Net::DNS", + "pathname" : "O/OL/OLAF/Net-DNS-0.68.tar.gz", + "provides" : { + "Net::DNS" : { + "file" : "Net/DNS.pm", + "version" : "0.68" + }, + "Net::DNS::Domain" : { + "file" : "Net/DNS/Domain.pm", + "version" : "964" + }, + "Net::DNS::DomainName" : { + "file" : "Net/DNS/DomainName.pm", + "version" : "964" + }, + "Net::DNS::DomainName1035" : { + "file" : "Net/DNS/DomainName.pm" + }, + "Net::DNS::DomainName2535" : { + "file" : "Net/DNS/DomainName.pm" + }, + "Net::DNS::Header" : { + "file" : "Net/DNS/Header.pm", + "version" : "968" + }, + "Net::DNS::Mailbox" : { + "file" : "Net/DNS/Mailbox.pm", + "version" : "970" + }, + "Net::DNS::Mailbox1035" : { + "file" : "Net/DNS/Mailbox.pm" + }, + "Net::DNS::Mailbox2535" : { + "file" : "Net/DNS/Mailbox.pm" + }, + "Net::DNS::Nameserver" : { + "file" : "Net/DNS/Nameserver.pm", + "version" : "970" + }, + "Net::DNS::Packet" : { + "file" : "Net/DNS/Packet.pm", + "version" : "969" + }, + "Net::DNS::Question" : { + "file" : "Net/DNS/Question.pm", + "version" : "971" + }, + "Net::DNS::RR" : { + "file" : "Net/DNS/RR.pm", + "version" : "969" + }, + "Net::DNS::RR::A" : { + "file" : "Net/DNS/RR/A.pm", + "version" : "932" + }, + "Net::DNS::RR::AAAA" : { + "file" : "Net/DNS/RR/AAAA.pm", + "version" : "932" + }, + "Net::DNS::RR::AFSDB" : { + "file" : "Net/DNS/RR/AFSDB.pm", + "version" : "932" + }, + "Net::DNS::RR::APL" : { + "file" : "Net/DNS/RR/APL.pm", + "version" : "684" + }, + "Net::DNS::RR::APL::ApItem" : { + "file" : "Net/DNS/RR/APL/ApItem.pm", + "version" : "684" + }, + "Net::DNS::RR::CERT" : { + "file" : "Net/DNS/RR/CERT.pm", + "version" : "932" + }, + "Net::DNS::RR::CNAME" : { + "file" : "Net/DNS/RR/CNAME.pm", + "version" : "932" + }, + "Net::DNS::RR::DHCID" : { + "file" : "Net/DNS/RR/DHCID.pm", + "version" : "718" + }, + "Net::DNS::RR::DNAME" : { + "file" : "Net/DNS/RR/DNAME.pm", + "version" : "932" + }, + "Net::DNS::RR::EID" : { + "file" : "Net/DNS/RR/EID.pm", + "version" : "932" + }, + "Net::DNS::RR::HINFO" : { + "file" : "Net/DNS/RR/HINFO.pm", + "version" : "932" + }, + "Net::DNS::RR::HIP" : { + "file" : "Net/DNS/RR/HIP.pm", + "version" : "718" + }, + "Net::DNS::RR::IPSECKEY" : { + "file" : "Net/DNS/RR/IPSECKEY.pm", + "version" : "932" + }, + "Net::DNS::RR::ISDN" : { + "file" : "Net/DNS/RR/ISDN.pm", + "version" : "932" + }, + "Net::DNS::RR::KX" : { + "file" : "Net/DNS/RR/KX.pm", + "version" : "684" + }, + "Net::DNS::RR::LOC" : { + "file" : "Net/DNS/RR/LOC.pm", + "version" : "932" + }, + "Net::DNS::RR::MB" : { + "file" : "Net/DNS/RR/MB.pm", + "version" : "932" + }, + "Net::DNS::RR::MG" : { + "file" : "Net/DNS/RR/MG.pm", + "version" : "932" + }, + "Net::DNS::RR::MINFO" : { + "file" : "Net/DNS/RR/MINFO.pm", + "version" : "932" + }, + "Net::DNS::RR::MR" : { + "file" : "Net/DNS/RR/MR.pm", + "version" : "932" + }, + "Net::DNS::RR::MX" : { + "file" : "Net/DNS/RR/MX.pm", + "version" : "932" + }, + "Net::DNS::RR::NAPTR" : { + "file" : "Net/DNS/RR/NAPTR.pm", + "version" : "932" + }, + "Net::DNS::RR::NIMLOC" : { + "file" : "Net/DNS/RR/NIMLOC.pm", + "version" : "932" + }, + "Net::DNS::RR::NS" : { + "file" : "Net/DNS/RR/NS.pm", + "version" : "932" + }, + "Net::DNS::RR::NSAP" : { + "file" : "Net/DNS/RR/NSAP.pm", + "version" : "932" + }, + "Net::DNS::RR::NULL" : { + "file" : "Net/DNS/RR/NULL.pm", + "version" : "932" + }, + "Net::DNS::RR::OPT" : { + "file" : "Net/DNS/RR/OPT.pm", + "version" : "932" + }, + "Net::DNS::RR::PTR" : { + "file" : "Net/DNS/RR/PTR.pm", + "version" : "966" + }, + "Net::DNS::RR::PX" : { + "file" : "Net/DNS/RR/PX.pm", + "version" : "932" + }, + "Net::DNS::RR::RP" : { + "file" : "Net/DNS/RR/RP.pm", + "version" : "932" + }, + "Net::DNS::RR::RT" : { + "file" : "Net/DNS/RR/RT.pm", + "version" : "932" + }, + "Net::DNS::RR::SOA" : { + "file" : "Net/DNS/RR/SOA.pm", + "version" : "932" + }, + "Net::DNS::RR::SPF" : { + "file" : "Net/DNS/RR/SPF.pm", + "version" : "932" + }, + "Net::DNS::RR::SRV" : { + "file" : "Net/DNS/RR/SRV.pm", + "version" : "932" + }, + "Net::DNS::RR::SSHFP" : { + "file" : "Net/DNS/RR/SSHFP.pm", + "version" : "932" + }, + "Net::DNS::RR::TKEY" : { + "file" : "Net/DNS/RR/TKEY.pm", + "version" : "932" + }, + "Net::DNS::RR::TSIG" : { + "file" : "Net/DNS/RR/TSIG.pm", + "version" : "932" + }, + "Net::DNS::RR::TXT" : { + "file" : "Net/DNS/RR/TXT.pm", + "version" : "932" + }, + "Net::DNS::RR::Unknown" : { + "file" : "Net/DNS/RR/Unknown.pm", + "version" : "932" + }, + "Net::DNS::RR::X25" : { + "file" : "Net/DNS/RR/X25.pm", + "version" : "932" + }, + "Net::DNS::Resolver" : { + "file" : "Net/DNS/Resolver.pm", + "version" : "955" + }, + "Net::DNS::Resolver::Base" : { + "file" : "Net/DNS/Resolver/Base.pm", + "version" : "932" + }, + "Net::DNS::Resolver::Cygwin" : { + "file" : "Net/DNS/Resolver/Cygwin.pm", + "version" : "932" + }, + "Net::DNS::Resolver::Recurse" : { + "file" : "Net/DNS/Resolver/Recurse.pm", + "version" : "932" + }, + "Net::DNS::Resolver::UNIX" : { + "file" : "Net/DNS/Resolver/UNIX.pm", + "version" : "932" + }, + "Net::DNS::Resolver::Win32" : { + "file" : "Net/DNS/Resolver/Win32.pm", + "version" : "932" + }, + "Net::DNS::Text" : { + "file" : "Net/DNS/Text.pm", + "version" : "965" + }, + "Net::DNS::Update" : { + "file" : "Net/DNS/Update.pm", + "version" : "970" + } + }, + "version" : "0.68" + }, "Net::Domain::TLD" : { "dist" : "Net-Domain-TLD-1.68", "module" : "Net::Domain::TLD", @@ -19835,6 +21587,81 @@ }, "version" : "0.24" }, + "Perl::OSType" : { + "dist" : "Perl-OSType-1.002", + "module" : "Perl::OSType", + "mymeta" : { + "abstract" : "Map Perl operating system names to generic types", + "author" : [ + "David Golden <dagolden@cpan.org>" + ], + "dynamic_config" : 0, + "generated_by" : "Dist::Zilla version 4.102341, CPAN::Meta::Converter version 2.102400, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Perl-OSType", + "no_index" : { + "directory" : [ + "t", + "xt", + "examples", + "corpus" + ], + "package" : [ + "DB" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "File::Find" : 0, + "File::Temp" : 0, + "Test::More" : "0.88", + "constant" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.31" + } + }, + "runtime" : { + "requires" : { + "Exporter" : 0 + } + } + }, + "provides" : { + "Perl::OSType" : { + "file" : "lib/Perl/OSType.pm", + "version" : "1.002" + } + }, + "release_status" : "stable", + "resources" : { + "homepage" : "http://github.com/dagolden/perl-ostype/tree", + "repository" : { + "type" : "git", + "url" : "git://github.com/dagolden/perl-ostype.git" + } + }, + "version" : "1.002" + }, + "name" : "Perl::OSType", + "pathname" : "D/DA/DAGOLDEN/Perl-OSType-1.002.tar.gz", + "provides" : { + "Perl::OSType" : { + "file" : "Perl/OSType.pm", + "version" : "1.002" + } + }, + "version" : "1.002" + }, "Probe::Perl" : { "dist" : "Probe-Perl-0.01", "module" : "Probe::Perl", @@ -24473,6 +26300,68 @@ }, "version" : "0.36" }, + "XML::NamespaceSupport" : { + "dist" : "XML-NamespaceSupport-1.11", + "module" : "XML::NamespaceSupport", + "mymeta" : { + "abstract" : "a simple generic namespace support class", + "author" : [ + "Robin Berjon, robin@knowscape.com, with lots of it having been done" + ], + "dynamic_config" : 0, + "generated_by" : "Module::Install version 0.95, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "XML-NamespaceSupport", + "no_index" : { + "directory" : [ + "inc", + "t" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.42", + "Test::More" : "0.47" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.42" + } + }, + "runtime" : { + "requires" : {} + } + }, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "type" : "git", + "url" : "git://github.com/perigrin/xml-namespacesupport.git" + } + }, + "version" : "1.11" + }, + "name" : "XML::NamespaceSupport", + "pathname" : "P/PE/PERIGRIN/XML-NamespaceSupport-1.11.tar.gz", + "provides" : { + "XML::NamespaceSupport" : { + "file" : "XML/NamespaceSupport.pm", + "version" : "1.11" + } + }, + "version" : "1.11" + }, "XML::Parser" : { "dist" : "XML-Parser-2.41", "module" : "XML::Parser", @@ -24683,6 +26572,154 @@ }, "version" : "1.49" }, + "XML::SAX" : { + "dist" : "XML-SAX-0.99", + "module" : "XML::SAX", + "mymeta" : { + "abstract" : "unknown", + "author" : [ + "unknown" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.55_02, CPAN::Meta::Converter version 2.112150", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "XML-SAX", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "File::Temp" : 0, + "XML::NamespaceSupport" : "0.03", + "XML::SAX::Base" : "1.05" + } + } + }, + "release_status" : "stable", + "version" : "0.99" + }, + "name" : "XML::SAX", + "pathname" : "G/GR/GRANTM/XML-SAX-0.99.tar.gz", + "provides" : { + "XML::SAX" : { + "file" : "XML/SAX.pm", + "version" : "0.99" + }, + "XML::SAX::DocumentLocator" : { + "file" : "XML/SAX/DocumentLocator.pm" + }, + "XML::SAX::ParserFactory" : { + "file" : "XML/SAX/ParserFactory.pm", + "version" : "1.01" + }, + "XML::SAX::PurePerl" : { + "file" : "XML/SAX/PurePerl.pm", + "version" : "0.99" + }, + "XML::SAX::PurePerl::DebugHandler" : { + "file" : "XML/SAX/PurePerl/DebugHandler.pm" + }, + "XML::SAX::PurePerl::Exception" : { + "file" : "XML/SAX/PurePerl/Exception.pm" + }, + "XML::SAX::PurePerl::Productions" : { + "file" : "XML/SAX/PurePerl/Productions.pm" + }, + "XML::SAX::PurePerl::Reader" : { + "file" : "XML/SAX/PurePerl/Reader.pm" + }, + "XML::SAX::PurePerl::Reader::Stream" : { + "file" : "XML/SAX/PurePerl/Reader/Stream.pm" + }, + "XML::SAX::PurePerl::Reader::String" : { + "file" : "XML/SAX/PurePerl/Reader/String.pm" + }, + "XML::SAX::PurePerl::Reader::URI" : { + "file" : "XML/SAX/PurePerl/Reader/URI.pm" + } + }, + "version" : "0.99" + }, + "XML::SAX::Base" : { + "dist" : "XML-SAX-Base-1.08", + "module" : "XML::SAX::Base", + "mymeta" : { + "abstract" : "Base class for SAX Drivers and Filters", + "author" : [ + "Grant McLean <grantm@cpan.org>" + ], + "dynamic_config" : 0, + "generated_by" : "Dist::Zilla version 4.200004, CPAN::Meta::Converter version 2.101670, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "XML-SAX-Base", + "prereqs" : { + "build" : { + "requires" : { + "Test::More" : "0.88" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.31" + } + }, + "runtime" : { + "requires" : {} + } + }, + "release_status" : "stable", + "resources" : { + "repository" : { + "type" : "git", + "url" : "git://github.com/grantm/XML-SAX-Base.git" + } + }, + "version" : "1.08" + }, + "name" : "XML::SAX::Base", + "pathname" : "G/GR/GRANTM/XML-SAX-Base-1.08.tar.gz", + "provides" : { + "XML::SAX::Base" : { + "file" : "XML/SAX/Base.pm", + "version" : "1.08" + }, + "XML::SAX::Base::NoHandler" : { + "file" : "XML/SAX/Base.pm", + "version" : "1.08" + }, + "XML::SAX::Exception" : { + "file" : "XML/SAX/Exception.pm", + "version" : "1.08" + } + }, + "version" : "1.08" + }, "XML::Simple" : { "dist" : "XML-Simple-2.18", "module" : "XML::Simple", @@ -24721,7 +26758,8 @@ "runtime" : { "requires" : { "Test::Simple" : "0.41", - "XML::Parser" : 0 + "XML::NamespaceSupport" : "1.04", + "XML::SAX" : 0 } } }, @@ -25372,6 +27410,60 @@ } }, "version" : "0.21" + }, + "parent" : { + "dist" : "parent-0.225", + "module" : "parent", + "mymeta" : { + "abstract" : "unknown", + "author" : [ + "unknown" + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.50, CPAN::Meta::Converter version 2.112150", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "parent", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "Test::More" : "0.4" + } + } + }, + "release_status" : "stable", + "version" : "0.225" + }, + "name" : "parent", + "pathname" : "C/CO/CORION/parent-0.225.tar.gz", + "provides" : { + "parent" : { + "file" : "parent.pm", + "version" : "0.225" + } + }, + "version" : "0.225" } }, "version" : "0.9" diff --git a/locale/FixMyStreet.po b/locale/FixMyStreet.po index b08ce69da..fabc9ec80 100644 --- a/locale/FixMyStreet.po +++ b/locale/FixMyStreet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: matthew@mysociety.org\n" -"POT-Creation-Date: 2011-10-21 15:56+0100\n" +"POT-Creation-Date: 2012-03-28 19:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <team@fixmystreet.com>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: bin/send-reports:183 perllib/FixMyStreet/DB/Result/Problem.pm:535 +#: bin/send-reports:184 perllib/FixMyStreet/DB/Result/Problem.pm:549 msgid " and " msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid " and <strong>we will now send it to the council</strong>" msgstr "" -#: templates/web/default/report/new/councils_text_all.html:10 templates/web/default/report/new/councils_text_all.html:3 templates/web/default/report/new/councils_text_none.html:14 templates/web/default/report/new/councils_text_none.html:17 templates/web/default/report/new/councils_text_some.html:20 templates/web/default/report/new/councils_text_some.html:23 templates/web/default/report/new/councils_text_some.html:5 templates/web/emptyhomes/report/new/all_councils_text.html:2 +#: templates/web/default/report/new/councils_text_all.html:10 templates/web/default/report/new/councils_text_all.html:3 templates/web/default/report/new/councils_text_none.html:14 templates/web/default/report/new/councils_text_none.html:17 templates/web/default/report/new/councils_text_some.html:20 templates/web/default/report/new/councils_text_some.html:23 templates/web/default/report/new/councils_text_some.html:5 templates/web/emptyhomes/report/new/councils_text_all.html:2 templates/web/fixmystreet/report/new/councils_text_all.html:10 templates/web/fixmystreet/report/new/councils_text_all.html:3 templates/web/fixmystreet/report/new/councils_text_none.html:12 templates/web/fixmystreet/report/new/councils_text_none.html:15 templates/web/fixmystreet/report/new/councils_text_some.html:20 templates/web/fixmystreet/report/new/councils_text_some.html:23 templates/web/fixmystreet/report/new/councils_text_some.html:5 msgid " or " msgstr "" @@ -85,23 +85,23 @@ msgstr "" msgid "%d weeks" msgstr "" -#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:14 +#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:14 templates/web/emptyhomes/reports/council.html:11 templates/web/emptyhomes/reports/council.html:13 msgid "%s - Summary reports" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:844 perllib/FixMyStreet/Cobrand/Default.pm:858 +#: perllib/FixMyStreet/Cobrand/Default.pm:792 perllib/FixMyStreet/Cobrand/Default.pm:806 msgid "%s ward, %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:466 +#: perllib/FixMyStreet/DB/Result/Problem.pm:480 msgid "%s, reported anonymously at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:468 +#: perllib/FixMyStreet/DB/Result/Problem.pm:482 msgid "%s, reported by %s at %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:875 perllib/FixMyStreet/Cobrand/Default.pm:889 +#: perllib/FixMyStreet/Cobrand/Default.pm:823 perllib/FixMyStreet/Cobrand/Default.pm:837 msgid "%s, within %s ward" msgstr "" @@ -117,23 +117,23 @@ msgstr "" msgid "(Email in abuse table)" msgstr "" -#: templates/web/default/alert/list.html:53 +#: templates/web/default/alert/list.html:51 templates/web/fixmystreet/alert/_list.html:24 msgid "(a default distance which covers roughly 200,000 people)" msgstr "" -#: templates/web/default/alert/list.html:58 +#: templates/web/default/alert/list.html:56 templates/web/fixmystreet/alert/_list.html:28 msgid "(alternatively the RSS feed can be customised, within" msgstr "" -#: templates/web/default/around/around_map_list_items.html:10 templates/web/default/around/on_map_list_items.html:7 +#: templates/web/default/around/around_map_list_items.html:10 templates/web/default/around/on_map_list_items.html:7 templates/web/default/reports/council.html:134 templates/web/fixmystreet/around/around_map_list_items.html:12 templates/web/fixmystreet/around/on_map_list_items.html:9 msgid "(fixed)" msgstr "" -#: templates/web/default/index.html:12 templates/web/default/index.html:8 +#: templates/web/default/index.html:12 templates/web/default/index.html:8 templates/web/fixmystreet/index.html:30 msgid "(like graffiti, fly tipping, broken paving slabs, or street lighting)" msgstr "" -#: templates/web/default/reports/council.html:133 +#: templates/web/default/reports/council.html:131 templates/web/default/reports/council.html:152 msgid "(not sent to council)" msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "(optional)" msgstr "" -#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:130 templates/web/default/reports/council.html:150 msgid "(sent to both)" msgstr "" @@ -149,19 +149,19 @@ msgstr "" msgid "(we never show your email address or phone number)" msgstr "" -#: templates/web/default/report/display.html:217 +#: templates/web/default/report/display.html:214 msgid "(we never show your email)" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:279 +#: perllib/FixMyStreet/App/Controller/Admin.pm:281 msgid "*unknown*" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:534 perllib/FixMyStreet/App/Controller/Report/New.pm:566 perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:549 perllib/FixMyStreet/App/Controller/Report/New.pm:581 perllib/FixMyStreet/DB/Result/Problem.pm:337 msgid "-- Pick a category --" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:520 perllib/FixMyStreet/DB/Result/Problem.pm:320 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:535 perllib/FixMyStreet/DB/Result/Problem.pm:343 msgid "-- Pick a property type --" msgstr "" @@ -169,10 +169,6 @@ msgstr "" msgid ". You can <a href=\"%s\">view the problem on this site</a>." msgstr "" -#: templates/web/default/footer.html:13 templates/web/reading/footer.html:16 -msgid "<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org\"><span id=\"logoie\"></span></a>" -msgstr "" - #: templates/web/default/questionnaire/completed.html:25 msgid "<p style=\"font-size:150%\">Thank you very much for filling in our questionnaire; glad to hear it’s been fixed.</p>" msgstr "" @@ -186,7 +182,7 @@ msgid "" "</p>" msgstr "" -#: templates/web/default/questionnaire/index.html:37 +#: templates/web/default/questionnaire/index.html:35 msgid "" "<p>Getting empty homes back into use can be difficult, but by now a good council\n" "will have made a lot of progress and reported what they have done on the\n" @@ -199,7 +195,7 @@ msgid "" "href=\"http://www.emptyhomes.com/getinvolved/campaign.html\">http://www.emptyhomes.com/getinvolved/campaign.html</a>.</p>\n" msgstr "" -#: templates/web/default/questionnaire/index.html:28 +#: templates/web/default/questionnaire/index.html:26 msgid "" "<p>Getting empty homes back into use can be difficult. You shouldn’t expect\n" "the property to be back into use yet. But a good council will have started work\n" @@ -217,7 +213,7 @@ msgid "" "site and leave an update.</p>" msgstr "" -#: templates/web/default/around/display_location.html:71 templates/web/default/around/display_location.html:73 +#: templates/web/default/around/display_location.html:70 templates/web/default/around/display_location.html:72 templates/web/emptyhomes/around/display_location.html:36 templates/web/emptyhomes/around/display_location.html:38 msgid "<small>If you cannot see the map, <a href='%s' rel='nofollow'>skip this step</a>.</small>" msgstr "" @@ -225,6 +221,18 @@ msgstr "" msgid "<strong>%d</strong> live problems" msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:169 +msgid "<strong>No</strong> Let me confirm my report by email" +msgstr "" + +#: templates/web/fixmystreet/report/display.html:153 +msgid "<strong>No</strong> Let me confirm my update by email" +msgstr "" + +#: templates/web/fixmystreet/auth/general.html:46 +msgid "<strong>No</strong> let me sign in by email" +msgstr "" + #: templates/web/default/auth/general.html:55 msgid "<strong>No</strong>, I do not, let me sign in by email:" msgstr "" @@ -233,27 +241,27 @@ msgstr "" msgid "<strong>No</strong>, let me confirm my report by email:" msgstr "" -#: templates/web/default/report/display.html:170 +#: templates/web/default/report/display.html:169 msgid "<strong>No</strong>, let me confirm my update by email:" msgstr "" -#: templates/web/default/auth/general.html:37 templates/web/default/report/display.html:148 templates/web/default/report/new/fill_in_details_form.html:140 -msgid "<strong>Yes</strong>, I have a password:" +#: templates/web/default/auth/general.html:37 templates/web/default/report/display.html:147 templates/web/default/report/new/fill_in_details_form.html:140 templates/web/fixmystreet/auth/general.html:32 templates/web/fixmystreet/auth/general.html:34 templates/web/fixmystreet/report/display.html:136 templates/web/fixmystreet/report/new/fill_in_details_form.html:151 +msgid "<strong>Yes</strong> I have a password" msgstr "" -#: templates/web/default/static/about.html:1 templates/web/default/static/about.html:3 templates/web/emptyhomes/header.html:31 templates/web/emptyhomes/static/about.html:1 templates/web/emptyhomes/static/about.html:3 +#: templates/web/default/static/about.html:1 templates/web/default/static/about.html:3 templates/web/emptyhomes/header.html:29 templates/web/emptyhomes/static/about.html:1 templates/web/emptyhomes/static/about.html:3 msgid "About us" msgstr "" -#: templates/web/default/admin/council_contacts.html:57 +#: templates/web/default/admin/council_contacts.html:62 msgid "Add new category" msgstr "" -#: templates/web/default/my/my.html:56 +#: templates/web/default/my/my.html:56 templates/web/fixmystreet/my/my.html:56 msgid "Added %s" msgstr "" -#: templates/web/default/auth/change_password.html:29 +#: templates/web/default/auth/change_password.html:29 templates/web/fixmystreet/auth/change_password.html:29 msgid "Again:" msgstr "" @@ -265,7 +273,7 @@ msgstr "" msgid "Alert %d disabled (created %s)" msgstr "" -#: templates/web/default/report/display.html:222 +#: templates/web/default/report/display.html:219 templates/web/fixmystreet/report/display.html:193 msgid "Alert me to future updates" msgstr "" @@ -273,31 +281,35 @@ msgstr "" msgid "All" msgstr "" +#: templates/web/default/reports/index.html:3 +msgid "All Reports" +msgstr "" + #: templates/web/default/admin/council_list.html:44 msgid "All confirmed" msgstr "" -#: templates/web/default/footer.html:8 templates/web/emptyhomes/header.html:28 templates/web/fiksgatami/footer.html:7 templates/web/reading/footer.html:8 +#: templates/web/bromley/footer.html:37 templates/web/default/footer.html:11 templates/web/fiksgatami/footer.html:7 templates/web/fiksgatami/nn/footer.html:7 templates/web/fixmystreet/footer.html:49 templates/web/reading/footer.html:8 msgid "All reports" msgstr "" -#: templates/web/default/report/new/councils_text_some.html:2 +#: templates/web/default/report/new/councils_text_some.html:2 templates/web/fixmystreet/report/new/councils_text_some.html:2 msgid "All the information you provide here will be sent to" msgstr "" -#: templates/web/default/report/new/councils_text_all.html:3 templates/web/default/report/new/councils_text_all.html:5 +#: templates/web/default/report/new/councils_text_all.html:3 templates/web/default/report/new/councils_text_all.html:5 templates/web/fixmystreet/report/new/councils_text_all.html:3 templates/web/fixmystreet/report/new/councils_text_all.html:5 msgid "All the information you provide here will be sent to <strong>%s</strong> or a relevant local body such as <strong>TfL</strong>, via the London Report-It system." msgstr "" -#: templates/web/default/report/new/councils_text_all.html:10 templates/web/default/report/new/councils_text_all.html:12 templates/web/default/report/new/fill_in_details_form.html:11 templates/web/default/report/new/fill_in_details_form.html:13 +#: templates/web/default/report/new/councils_text_all.html:10 templates/web/default/report/new/councils_text_all.html:12 templates/web/default/report/new/fill_in_details_form.html:11 templates/web/default/report/new/fill_in_details_form.html:13 templates/web/fixmystreet/report/new/councils_text_all.html:10 templates/web/fixmystreet/report/new/councils_text_all.html:12 templates/web/fixmystreet/report/new/fill_in_details_form.html:6 templates/web/fixmystreet/report/new/fill_in_details_form.html:8 msgid "All the information you provide here will be sent to <strong>%s</strong>." msgstr "" -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 templates/web/emptyhomes/report/new/all_councils_text.html:4 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 templates/web/emptyhomes/report/new/councils_text_all.html:4 msgid "All the information you provide here will be sent to <strong>%s</strong>. On the site, we will show the subject and details of the problem, plus your name if you give us permission." msgstr "" -#: templates/web/default/questionnaire/index.html:62 +#: templates/web/default/questionnaire/index.html:60 templates/web/fixmystreet/questionnaire/index.html:54 msgid "An update marked this problem as fixed." msgstr "" @@ -305,16 +317,20 @@ msgstr "" msgid "Anonymous" msgstr "" -#: templates/web/default/admin/report_edit.html:17 templates/web/default/admin/update_edit.html:14 +#: templates/web/default/admin/report_edit.html:26 templates/web/default/admin/update_edit.html:14 msgid "Anonymous:" msgstr "" -#: templates/web/default/footer.html:29 -msgid "Are you a developer? Would you like to contribute to FixMyStreet?" +#: templates/web/default/footer.html:26 +msgid "Are you a <strong>developer</strong>? Would you like to contribute to FixMyStreet?" msgstr "" -#: templates/web/default/footer.html:26 -msgid "Are you from a council? Would you like better integration with FixMyStreet?" +#: templates/web/fixmystreet/footer.html:18 +msgid "Are you a developer?" +msgstr "" + +#: templates/web/fixmystreet/footer.html:22 +msgid "Are you from a council?" msgstr "" #: templates/web/default/open311/index.html:17 @@ -329,11 +345,7 @@ msgstr "" msgid "Ban email address" msgstr "" -#: templates/web/default/footer.html:16 templates/web/reading/footer.html:14 -msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" -msgstr "" - -#: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/footer.html:16 templates/web/fiksgatami/nn/footer.html:16 msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a> and maintained by <a href=\"http://www.nuug.no/\">NUUG</a>" msgstr "" @@ -341,7 +353,11 @@ msgstr "" msgid "By Date" msgstr "" -#: templates/web/default/admin/council_contacts.html:26 templates/web/default/admin/index.html:36 templates/web/default/admin/list_flagged.html:14 templates/web/default/admin/search_reports.html:17 +#: templates/web/fixmystreet/around/display_location.html:75 templates/web/fixmystreet/around/display_location.html:77 +msgid "Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>" +msgstr "" + +#: templates/web/default/admin/council_contacts.html:31 templates/web/default/admin/index.html:36 templates/web/default/admin/list_flagged.html:14 templates/web/default/admin/search_reports.html:17 templates/web/fixmystreet/report/new/fill_in_details_form.html:72 msgid "Category" msgstr "" @@ -349,27 +365,31 @@ msgstr "" msgid "Category fix rate for problems > 4 weeks old" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 perllib/FixMyStreet/App/Controller/Report/New.pm:567 templates/web/default/admin/council_contacts.html:63 templates/web/default/admin/council_edit.html:23 templates/web/default/admin/report_edit.html:29 templates/web/default/report/new/fill_in_details_form.html:67 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:552 perllib/FixMyStreet/App/Controller/Report/New.pm:582 templates/web/default/admin/council_contacts.html:68 templates/web/default/admin/council_edit.html:23 templates/web/default/admin/report_edit.html:25 templates/web/default/report/new/fill_in_details_form.html:67 msgid "Category:" msgstr "" -#: bin/send-reports:180 +#: bin/send-reports:181 msgid "Category: %s" msgstr "" -#: templates/web/default/auth/change_password.html:1 templates/web/default/auth/change_password.html:3 templates/web/default/auth/change_password.html:33 +#: templates/web/default/auth/change_password.html:1 templates/web/default/auth/change_password.html:3 templates/web/default/auth/change_password.html:33 templates/web/fixmystreet/auth/change_password.html:1 templates/web/fixmystreet/auth/change_password.html:3 templates/web/fixmystreet/auth/change_password.html:33 msgid "Change Password" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:24 templates/web/default/report/display.html:85 templates/web/default/report/display.html:87 +#: templates/web/fixmystreet/around/display_location.html:72 +msgid "Click map to report a problem" +msgstr "" + +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:24 templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:20 templates/web/default/report/display.html:84 templates/web/default/report/display.html:86 templates/web/fixmystreet/report/display.html:79 templates/web/fixmystreet/report/display.html:81 msgid "Closed" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:627 +#: perllib/FixMyStreet/DB/Result/Problem.pm:641 msgid "Closed by council" msgstr "" -#: templates/web/default/my/my.html:32 +#: templates/web/default/my/my.html:32 templates/web/fixmystreet/my/my.html:32 msgid "Closed reports" msgstr "" @@ -377,7 +397,7 @@ msgstr "" msgid "Closed:" msgstr "" -#: templates/web/default/around/display_location.html:102 templates/web/default/around/display_location.html:104 +#: templates/web/default/around/display_location.html:101 templates/web/default/around/display_location.html:103 msgid "Closest nearby problems <small>(within %skm)</small>" msgstr "" @@ -397,27 +417,27 @@ msgstr "" msgid "Cobrand:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:349 +#: perllib/FixMyStreet/App/Controller/Admin.pm:351 msgid "Configuration updated" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:359 +#: perllib/FixMyStreet/App/Controller/Admin.pm:361 msgid "Configuration updated - contacts will be generated automatically later" msgstr "" -#: templates/web/default/admin/council_contacts.html:119 +#: templates/web/default/admin/council_contacts.html:124 msgid "Configure Open311" msgstr "" -#: templates/web/default/admin/council_contacts.html:96 +#: templates/web/default/admin/council_contacts.html:101 msgid "Configure Open311 integration" msgstr "" -#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:38 msgid "Confirm" msgstr "" -#: templates/web/default/auth/token.html:1 +#: templates/web/default/auth/token.html:1 templates/web/fixmystreet/auth/token.html:1 msgid "Confirm account" msgstr "" @@ -425,7 +445,7 @@ msgstr "" msgid "Confirmation" msgstr "" -#: templates/web/default/admin/council_contacts.html:28 templates/web/default/admin/council_contacts.html:73 templates/web/default/admin/council_edit.html:28 templates/web/default/admin/council_edit.html:43 templates/web/default/admin/stats.html:5 +#: templates/web/default/admin/council_contacts.html:33 templates/web/default/admin/council_contacts.html:78 templates/web/default/admin/council_edit.html:28 templates/web/default/admin/council_edit.html:43 templates/web/default/admin/stats.html:5 msgid "Confirmed" msgstr "" @@ -433,23 +453,23 @@ msgstr "" msgid "Confirmed:" msgstr "" -#: templates/web/fiksgatami/footer.html:10 +#: templates/web/fiksgatami/footer.html:10 templates/web/fiksgatami/nn/footer.html:10 msgid "Contact" msgstr "" -#: templates/web/default/footer.html:17 templates/web/reading/footer.html:15 +#: templates/web/default/footer.html:24 msgid "Contact FixMyStreet" msgstr "" -#: templates/web/default/contact/index.html:1 templates/web/default/contact/index.html:2 templates/web/default/contact/submit.html:1 +#: templates/web/default/contact/index.html:1 templates/web/default/contact/index.html:2 templates/web/default/contact/submit.html:1 templates/web/fixmystreet/contact/index.html:1 templates/web/fixmystreet/contact/index.html:2 msgid "Contact Us" msgstr "" -#: templates/web/default/contact/index.html:6 templates/web/default/contact/submit.html:3 +#: templates/web/default/contact/index.html:6 templates/web/default/contact/submit.html:3 templates/web/fixmystreet/contact/index.html:7 msgid "Contact the team" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1105 perllib/FixMyStreet/App/Controller/Admin.pm:1133 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1107 perllib/FixMyStreet/App/Controller/Admin.pm:1135 msgid "Could not find user" msgstr "" @@ -457,7 +477,7 @@ msgstr "" msgid "Council" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:977 templates/web/default/admin/council_list.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:979 templates/web/default/admin/council_list.html:1 msgid "Council contacts" msgstr "" @@ -481,7 +501,7 @@ msgstr "" msgid "Create a report" msgstr "" -#: templates/web/default/admin/council_contacts.html:87 +#: templates/web/default/admin/council_contacts.html:92 msgid "Create category" msgstr "" @@ -501,10 +521,14 @@ msgstr "" msgid "Currently has 1+ deleted" msgstr "" -#: templates/web/default/admin/council_contacts.html:29 templates/web/default/admin/council_contacts.html:76 templates/web/default/admin/council_edit.html:29 templates/web/default/admin/council_edit.html:44 +#: templates/web/default/admin/council_contacts.html:34 templates/web/default/admin/council_contacts.html:81 templates/web/default/admin/council_edit.html:29 templates/web/default/admin/council_edit.html:44 msgid "Deleted" msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:64 +msgid "Details" +msgstr "" + #: templates/web/default/admin/report_edit.html:14 templates/web/default/report/new/fill_in_details_form.html:61 msgid "Details:" msgstr "" @@ -513,11 +537,11 @@ msgstr "" msgid "Diligency prize league table" msgstr "" -#: templates/web/default/auth/general.html:32 +#: templates/web/default/auth/general.html:32 templates/web/fixmystreet/auth/general.html:29 templates/web/fixmystreet/report/display.html:133 templates/web/fixmystreet/report/new/fill_in_details_form.html:147 msgid "Do you have a FixMyStreet password?" msgstr "" -#: templates/web/default/questionnaire/index.html:72 +#: templates/web/default/questionnaire/index.html:70 templates/web/fixmystreet/questionnaire/index.html:64 msgid "Don’t know" msgstr "" @@ -541,19 +565,19 @@ msgstr "" msgid "Editor" msgstr "" -#: templates/web/default/admin/council_contacts.html:27 templates/web/default/admin/council_edit.html:42 templates/web/default/admin/list_flagged.html:12 templates/web/default/admin/list_flagged.html:35 templates/web/default/admin/list_updates.html:8 templates/web/default/admin/search_abuse.html:11 templates/web/default/admin/search_reports.html:15 templates/web/default/admin/search_users.html:13 +#: templates/web/default/admin/council_contacts.html:32 templates/web/default/admin/council_edit.html:42 templates/web/default/admin/list_flagged.html:12 templates/web/default/admin/list_flagged.html:35 templates/web/default/admin/list_updates.html:8 templates/web/default/admin/search_abuse.html:11 templates/web/default/admin/search_reports.html:15 templates/web/default/admin/search_users.html:13 templates/web/fixmystreet/auth/general.html:20 templates/web/fixmystreet/report/display.html:125 msgid "Email" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1081 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1083 msgid "Email added to abuse list" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1078 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1080 msgid "Email already in abuse list" msgstr "" -#: templates/web/default/around/display_location.html:84 +#: templates/web/default/around/display_location.html:83 msgid "Email me new local problems" msgstr "" @@ -561,19 +585,19 @@ msgstr "" msgid "Email me updates" msgstr "" -#: templates/web/default/admin/council_contacts.html:68 templates/web/default/admin/council_edit.html:26 templates/web/default/admin/report_edit.html:31 templates/web/default/admin/update_edit.html:24 templates/web/default/admin/user_edit.html:11 templates/web/default/alert/updates.html:13 templates/web/default/report/display.html:39 +#: templates/web/default/admin/council_contacts.html:73 templates/web/default/admin/council_edit.html:26 templates/web/default/admin/report_edit.html:31 templates/web/default/admin/update_edit.html:24 templates/web/default/admin/user_edit.html:11 templates/web/default/alert/updates.html:13 templates/web/default/report/display.html:39 msgid "Email:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:522 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 msgid "Empty flat or maisonette" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:521 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:536 msgid "Empty house or bungalow" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:524 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:539 msgid "Empty office or other commercial" msgstr "" @@ -581,11 +605,11 @@ msgstr "" msgid "Empty property details form" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:525 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:540 msgid "Empty pub or bar" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:526 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:541 msgid "Empty public building - school, hospital, etc." msgstr "" @@ -601,7 +625,7 @@ msgstr "" msgid "End month:" msgstr "" -#: templates/web/default/around/around_index.html:10 templates/web/default/around/around_index.html:13 templates/web/default/index.html:24 templates/web/default/index.html:27 +#: templates/web/default/around/around_index.html:10 templates/web/default/around/around_index.html:13 templates/web/default/index.html:24 templates/web/default/index.html:27 templates/web/emptyhomes/index.html:40 templates/web/emptyhomes/index.html:43 templates/web/fixmystreet/around/around_index.html:10 templates/web/fixmystreet/around/around_index.html:13 templates/web/fixmystreet/index.html:32 templates/web/fixmystreet/index.html:35 msgid "Enter a nearby GB postcode, or street name and area" msgstr "" @@ -609,19 +633,23 @@ msgstr "" msgid "Enter a nearby postcode, or street name and area" msgstr "" -#: templates/web/default/auth/general.html:64 templates/web/default/report/display.html:177 templates/web/default/report/new/fill_in_details_form.html:169 +#: templates/web/default/auth/general.html:64 templates/web/default/report/display.html:176 templates/web/default/report/new/fill_in_details_form.html:169 msgid "Enter a new password:" msgstr "" -#: templates/web/default/index.html:45 +#: templates/web/fixmystreet/auth/general.html:57 templates/web/fixmystreet/report/display.html:165 templates/web/fixmystreet/report/new/fill_in_details_form.html:194 +msgid "Enter a password" +msgstr "" + +#: templates/web/default/index.html:44 templates/web/emptyhomes/index.html:60 templates/web/fixmystreet/index.html:55 msgid "Enter details of the problem" msgstr "" -#: templates/web/default/auth/token.html:5 templates/web/default/errors/generic.html:1 templates/web/default/errors/generic.html:3 templates/web/default/tokens/abuse.html:1 templates/web/default/tokens/abuse.html:3 templates/web/default/tokens/error.html:1 templates/web/default/tokens/error.html:3 +#: templates/web/default/auth/token.html:5 templates/web/default/errors/generic.html:1 templates/web/default/errors/generic.html:3 templates/web/default/tokens/abuse.html:1 templates/web/default/tokens/abuse.html:3 templates/web/default/tokens/error.html:1 templates/web/default/tokens/error.html:3 templates/web/fixmystreet/auth/token.html:5 msgid "Error" msgstr "" -#: templates/web/default/admin/council_contacts.html:9 templates/web/default/admin/council_edit.html:18 +#: templates/web/default/admin/council_contacts.html:11 templates/web/default/admin/council_edit.html:18 msgid "Example postcode %s" msgstr "" @@ -633,18 +661,18 @@ msgstr "" msgid "Failed to send message. Please try again, or <a href=\"mailto:%s\">email us</a>." msgstr "" -#: templates/web/default/footer.html:27 -msgid "Find out about FixMyStreet for councils" -msgstr "" - -#: templates/web/default/questionnaire/index.html:81 +#: templates/web/default/questionnaire/index.html:79 templates/web/fixmystreet/questionnaire/index.html:73 msgid "First time" msgstr "" -#: templates/web/default/header.html:29 templates/web/fiksgatami/header.html:16 templates/web/reading/header.html:31 +#: templates/web/fiksgatami/header.html:16 templates/web/fiksgatami/nn/header.html:16 msgid "Fix<span id=\"my\">My</span>Street" msgstr "" +#: templates/web/default/header.html:24 +msgid "FixMyStreet" +msgstr "" + #: templates/web/default/admin/header.html:13 msgid "FixMyStreet admin:" msgstr "" @@ -653,14 +681,18 @@ msgstr "" msgid "FixMyStreet administration" msgstr "" -#: templates/web/default/alert/index.html:6 +#: templates/web/fixmystreet/static/for_councils.html:1 +msgid "FixMyStreet for Councils" +msgstr "" + +#: templates/web/default/alert/index.html:6 templates/web/fixmystreet/alert/index.html:6 msgid "" "FixMyStreet has a variety of RSS feeds and email alerts for local problems, including\n" "alerts for all problems within a particular ward or council, or all problems\n" "within a certain distance of a particular location." msgstr "" -#: templates/web/default/alert/list.html:100 +#: templates/web/default/alert/list.html:98 templates/web/fixmystreet/alert/_list.html:69 msgid "" "FixMyStreet sends different categories of problem\n" "to the appropriate council, so problems within the boundary of a particular council\n" @@ -670,19 +702,19 @@ msgid "" "for the county council." msgstr "" -#: templates/web/default/admin/index.html:36 templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:24 templates/web/default/report/display.html:85 templates/web/default/report/display.html:87 +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:20 templates/web/default/admin/index.html:36 templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:20 templates/web/default/report/display.html:84 templates/web/default/report/display.html:86 templates/web/fixmystreet/report/display.html:79 templates/web/fixmystreet/report/display.html:81 msgid "Fixed" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:21 msgid "Fixed - Council" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:21 msgid "Fixed - User" msgstr "" -#: templates/web/default/my/my.html:27 +#: templates/web/default/my/my.html:27 templates/web/fixmystreet/my/my.html:27 msgid "Fixed reports" msgstr "" @@ -702,7 +734,7 @@ msgstr "" msgid "Flagged:" msgstr "" -#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:24 templates/web/default/reports/council.html:87 templates/web/emptyhomes/reports/council.html:19 msgid "Follow a ward link to view only reports within that ward." msgstr "" @@ -710,7 +742,7 @@ msgstr "" msgid "For council(s):" msgstr "" -#: templates/web/default/faq/faq-en-gb.html:1 templates/web/emptyhomes/faq/faq-cy.html:1 templates/web/emptyhomes/faq/faq-en-gb.html:1 templates/web/fiksgatami/faq/faq-nb.html:1 +#: templates/web/default/faq/faq-en-gb.html:1 templates/web/emptyhomes/faq/faq-cy.html:1 templates/web/emptyhomes/faq/faq-en-gb.html:1 templates/web/fiksgatami/faq/faq-nb.html:1 templates/web/fiksgatami/nn/faq/faq-nn.html:1 templates/web/fixmystreet/faq/faq-en-gb.html:1 msgid "Frequently Asked Questions" msgstr "" @@ -722,11 +754,19 @@ msgstr "" msgid "GeoRSS on Google Maps" msgstr "" -#: templates/web/default/alert/list.html:112 +#: templates/web/fixmystreet/report/display.html:28 +msgid "Get updates" +msgstr "" + +#: templates/web/default/reports/council.html:72 +msgid "Get updates of problems in this %s" +msgstr "" + +#: templates/web/default/alert/list.html:110 templates/web/fixmystreet/alert/_list.html:78 msgid "Give me an RSS feed" msgstr "" -#: templates/web/default/alert/index.html:24 templates/web/default/around/around_index.html:17 templates/web/default/index.html:33 +#: templates/web/default/alert/index.html:24 templates/web/default/around/around_index.html:17 templates/web/default/index.html:33 templates/web/emptyhomes/index.html:49 templates/web/fixmystreet/alert/index.html:25 templates/web/fixmystreet/around/around_index.html:20 templates/web/fixmystreet/index.html:42 msgid "Go" msgstr "" @@ -738,47 +778,51 @@ msgstr "" msgid "Graph of problem creation by status over time" msgstr "" -#: templates/web/default/reports/index.html:5 templates/web/emptyhomes/reports/index.html:5 +#: templates/web/default/reports/index.html:8 templates/web/emptyhomes/reports/index.html:5 msgid "Greyed-out lines are councils that no longer exist." msgstr "" -#: templates/web/default/questionnaire/index.html:63 +#: templates/web/default/questionnaire/index.html:61 templates/web/fixmystreet/questionnaire/index.html:55 msgid "Has this problem been fixed?" msgstr "" -#: templates/web/default/questionnaire/index.html:76 +#: templates/web/default/questionnaire/index.html:74 templates/web/fixmystreet/questionnaire/index.html:68 msgid "Have you ever reported a problem to a council before, or is this your first time?" msgstr "" -#: templates/web/default/footer.html:10 templates/web/emptyhomes/header.html:30 templates/web/fiksgatami/footer.html:9 templates/web/reading/footer.html:10 +#: templates/web/bromley/footer.html:41 templates/web/default/footer.html:15 templates/web/emptyhomes/header.html:28 templates/web/fiksgatami/footer.html:9 templates/web/fiksgatami/nn/footer.html:9 templates/web/fixmystreet/footer.html:53 templates/web/reading/footer.html:10 msgid "Help" msgstr "" -#: templates/web/default/alert/list.html:39 +#: templates/web/default/alert/list.html:37 templates/web/fixmystreet/alert/_list.html:8 msgid "Here are the types of local problem alerts for ‘%s’." msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:25 templates/web/default/admin/update_edit.html:19 +#: templates/web/bromley/header.html:46 templates/web/fixmystreet/header.html:46 +msgid "Hi %s" +msgstr "" + +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:21 templates/web/default/admin/update_edit.html:19 msgid "Hidden" msgstr "" -#: templates/web/default/around/display_location.html:54 -msgid "Hide pins" +#: templates/web/default/around/display_location.html:58 templates/web/fixmystreet/around/display_location.html:58 +msgid "Hide old" msgstr "" -#: templates/web/default/around/display_location.html:59 -msgid "Hide stale reports" +#: templates/web/default/around/display_location.html:53 templates/web/fixmystreet/around/display_location.html:54 +msgid "Hide pins" msgstr "" #: templates/web/default/admin/council_edit.html:38 msgid "History" msgstr "" -#: templates/web/default/index.html:40 +#: templates/web/default/index.html:39 templates/web/emptyhomes/index.html:55 templates/web/fixmystreet/index.html:50 msgid "How to report a problem" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:587 +#: perllib/FixMyStreet/App/Controller/Admin.pm:592 msgid "I am afraid you cannot confirm unconfirmed reports." msgstr "" @@ -798,19 +842,19 @@ msgstr "" msgid "ID" msgstr "" -#: templates/web/default/report/new/councils_text_none.html:11 templates/web/default/report/new/councils_text_none.html:12 +#: templates/web/default/report/new/councils_text_none.html:11 templates/web/default/report/new/councils_text_none.html:12 templates/web/fixmystreet/report/new/councils_text_none.html:10 templates/web/fixmystreet/report/new/councils_text_none.html:9 msgid "If you submit a problem here the subject and details of the problem will be public, but the problem will <strong>not</strong> be reported to the council." msgstr "" -#: templates/web/emptyhomes/report/new/no_councils_text.html:9 +#: templates/web/emptyhomes/report/new/councils_text_none.html:9 msgid "If you submit a report here it will be left on the site, but not reported to the council – please still leave your report, so that we can show to the council the activity in their area." msgstr "" -#: templates/web/default/auth/token.html:23 templates/web/default/email_sent.html:24 +#: templates/web/default/auth/token.html:23 templates/web/default/email_sent.html:24 templates/web/fixmystreet/auth/token.html:23 msgid "If you use web-based email or have 'junk mail' filters, you may wish to check your bulk/spam mail folders: sometimes, our messages are marked that way." msgstr "" -#: templates/web/default/questionnaire/index.html:85 +#: templates/web/default/questionnaire/index.html:83 templates/web/fixmystreet/questionnaire/index.html:77 msgid "" "If you wish to leave a public update on the problem, please enter it here\n" "(please note it will not be sent to the council). For example, what was\n" @@ -821,11 +865,11 @@ msgstr "" msgid "Illegal ID" msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:102 +#: perllib/FixMyStreet/App/Controller/Alert.pm:100 msgid "Illegal feed selection" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:24 templates/web/default/report/display.html:85 templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:20 templates/web/default/report/display.html:84 templates/web/default/report/display.html:86 templates/web/fixmystreet/report/display.html:79 templates/web/fixmystreet/report/display.html:81 msgid "In Progress" msgstr "" @@ -833,8 +877,8 @@ msgstr "" msgid "In addition, the following attributes that are not part of the Open311 v2 specification are returned: agency_sent_datetime, title (also returned as part of description), interface_used, comment_count, requestor_name (only present if requestor allowed the name to be shown on this site)." msgstr "" -#: templates/web/default/around/display_location.html:61 -msgid "Include stale reports" +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:29 +msgid "In progress" msgstr "" #: templates/web/default/admin/stats.html:76 @@ -849,7 +893,7 @@ msgstr "" msgid "Invalid agency_responsible value %s" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:897 +#: perllib/FixMyStreet/App/Controller/Admin.pm:899 msgid "Invalid end date" msgstr "" @@ -857,11 +901,11 @@ msgstr "" msgid "Invalid format %s specified." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:887 +#: perllib/FixMyStreet/App/Controller/Admin.pm:889 msgid "Invalid start date" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:23 templates/web/default/report/display.html:85 templates/web/default/report/display.html:86 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:19 templates/web/default/report/display.html:84 templates/web/default/report/display.html:85 templates/web/fixmystreet/report/display.html:79 templates/web/fixmystreet/report/display.html:80 msgid "Investigating" msgstr "" @@ -869,11 +913,11 @@ msgstr "" msgid "It is worth noting however that the process can sometimes be slow, especially if the property is in very poor repair or the owner is unwilling to act. In most cases it can take six months or more before you can expect to see anything change and sometimes there may be considerable barries to a property being brought back into use. This doesn’t mean the council isn’t doing anything. We encourage councils to update the website so you can see what is happening. It may be a long process, but you reporting your concerns about this property to the council is a valuable first step." msgstr "" -#: templates/web/default/auth/general.html:44 templates/web/default/report/display.html:157 templates/web/default/report/new/fill_in_details_form.html:149 +#: templates/web/default/auth/general.html:44 templates/web/default/report/display.html:156 templates/web/default/report/new/fill_in_details_form.html:149 templates/web/fixmystreet/auth/general.html:42 templates/web/fixmystreet/report/display.html:149 templates/web/fixmystreet/report/new/fill_in_details_form.html:164 msgid "Keep me signed in on this computer" msgstr "" -#: templates/web/default/admin/council_contacts.html:30 +#: templates/web/default/admin/council_contacts.html:35 msgid "Last editor" msgstr "" @@ -885,31 +929,31 @@ msgstr "" msgid "Last update:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:983 +#: perllib/FixMyStreet/App/Controller/Admin.pm:985 msgid "List Flagged" msgstr "" -#: templates/web/default/admin/council_contacts.html:11 +#: templates/web/default/admin/council_contacts.html:13 msgid "List all reported problems" msgstr "" -#: templates/web/default/report/new/fill_in_details_form.html:68 +#: templates/web/default/report/new/fill_in_details_form.html:68 templates/web/fixmystreet/report/new/fill_in_details_form.html:73 msgid "Loading..." msgstr "" -#: templates/web/default/alert/choose.html:1 templates/web/default/alert/choose.html:3 templates/web/default/alert/index.html:1 templates/web/default/alert/index.html:3 templates/web/default/alert/list.html:1 templates/web/default/alert/list.html:5 templates/web/default/alert/updates.html:1 templates/web/default/tokens/confirm_alert.html:1 templates/web/default/tokens/confirm_alert.html:3 +#: templates/web/default/alert/choose.html:1 templates/web/default/alert/choose.html:3 templates/web/default/alert/index.html:1 templates/web/default/alert/index.html:3 templates/web/default/alert/list.html:1 templates/web/default/alert/list.html:5 templates/web/default/alert/updates.html:1 templates/web/default/tokens/confirm_alert.html:1 templates/web/default/tokens/confirm_alert.html:3 templates/web/emptyhomes/alert/index.html:1 templates/web/emptyhomes/alert/index.html:3 templates/web/fixmystreet/alert/choose.html:1 templates/web/fixmystreet/alert/choose.html:3 templates/web/fixmystreet/alert/index.html:1 templates/web/fixmystreet/alert/index.html:3 templates/web/fixmystreet/alert/list.html:1 templates/web/fixmystreet/alert/list.html:5 templates/web/fixmystreet/alert/updates.html:1 msgid "Local RSS feeds and email alerts" msgstr "" -#: templates/web/default/alert/list.html:1 templates/web/default/alert/list.html:12 templates/web/default/alert/list.html:14 templates/web/default/alert/list.html:3 +#: templates/web/default/alert/list.html:1 templates/web/default/alert/list.html:12 templates/web/default/alert/list.html:14 templates/web/default/alert/list.html:3 templates/web/fixmystreet/alert/list.html:1 templates/web/fixmystreet/alert/list.html:12 templates/web/fixmystreet/alert/list.html:14 templates/web/fixmystreet/alert/list.html:3 msgid "Local RSS feeds and email alerts for ‘%s’" msgstr "" -#: templates/web/default/footer.html:9 templates/web/emptyhomes/header.html:29 templates/web/fiksgatami/footer.html:8 templates/web/reading/footer.html:9 +#: templates/web/bromley/footer.html:39 templates/web/default/footer.html:13 templates/web/fiksgatami/footer.html:8 templates/web/fiksgatami/nn/footer.html:8 templates/web/fixmystreet/footer.html:51 templates/web/reading/footer.html:9 msgid "Local alerts" msgstr "" -#: templates/web/default/index.html:44 +#: templates/web/default/index.html:43 templates/web/emptyhomes/index.html:59 templates/web/fixmystreet/index.html:54 msgid "Locate the problem on a map of the area" msgstr "" @@ -917,6 +961,10 @@ msgstr "" msgid "Map © <a id=\"osm_link\" href=\"http://www.openstreetmap.org/\">OpenStreetMap</a> and contributors, <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">CC-BY-SA</a>" msgstr "" +#: templates/web/fixmystreet/contact/index.html:86 +msgid "Message" +msgstr "" + #: templates/web/default/contact/index.html:90 msgid "Message:" msgstr "" @@ -933,7 +981,7 @@ msgstr "" msgid "More problems nearby" msgstr "" -#: templates/web/default/admin/list_flagged.html:11 templates/web/default/admin/list_flagged.html:34 templates/web/default/admin/list_updates.html:7 templates/web/default/admin/search_reports.html:14 templates/web/default/admin/search_users.html:12 templates/web/default/reports/index.html:10 templates/web/emptyhomes/reports/index.html:10 templates/web/fiksgatami/reports/index.html:9 +#: templates/web/default/admin/list_flagged.html:11 templates/web/default/admin/list_flagged.html:34 templates/web/default/admin/list_updates.html:7 templates/web/default/admin/search_reports.html:14 templates/web/default/admin/search_users.html:12 templates/web/default/reports/index.html:15 templates/web/emptyhomes/reports/index.html:10 templates/web/fiksgatami/nn/reports/index.html:9 templates/web/fiksgatami/reports/index.html:9 templates/web/fixmystreet/auth/general.html:52 templates/web/fixmystreet/report/display.html:181 templates/web/fixmystreet/report/new/fill_in_details_form.html:114 templates/web/fixmystreet/report/new/fill_in_details_form.html:171 msgid "Name" msgstr "" @@ -941,7 +989,7 @@ msgstr "" msgid "Name:" msgstr "" -#: templates/web/default/footer.html:4 templates/web/fiksgatami/footer.html:3 templates/web/reading/footer.html:4 +#: templates/web/fiksgatami/footer.html:3 templates/web/fiksgatami/nn/footer.html:3 templates/web/reading/footer.html:4 msgid "Navigation" msgstr "" @@ -949,19 +997,29 @@ msgstr "" msgid "Nearest named road to the pin placed on the map (automatically generated using OpenStreetMap): %s%s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:564 +#: perllib/FixMyStreet/Cobrand/Default.pm:480 msgid "Nearest postcode to the pin placed on the map (automatically generated): %s (%sm away)" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:553 perllib/FixMyStreet/Cobrand/Default.pm:588 +#: perllib/FixMyStreet/Cobrand/Default.pm:469 perllib/FixMyStreet/Cobrand/Default.pm:520 msgid "Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s" msgstr "" +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:242 +msgid "" +"Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s\n" +"\n" +msgstr "" + #: templates/web/default/email_sent.html:20 msgid "Nearly Done! Now check your email..." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:309 +#: templates/web/default/reports/index.html:16 +msgid "New <br>problems" +msgstr "" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:311 msgid "New category contact added" msgstr "" @@ -973,7 +1031,7 @@ msgstr "" msgid "New local reports on reportemptyhomes.com" msgstr "" -#: templates/web/default/reports/council.html:92 templates/web/default/reports/council.html:93 templates/web/default/reports/index.html:11 templates/web/emptyhomes/reports/index.html:11 templates/web/fiksgatami/reports/index.html:10 +#: templates/web/emptyhomes/reports/index.html:11 templates/web/fiksgatami/nn/reports/index.html:10 templates/web/fiksgatami/reports/index.html:10 msgid "New problems" msgstr "" @@ -1021,11 +1079,11 @@ msgstr "" msgid "New state" msgstr "" -#: templates/web/default/front/news.html:8 templates/web/fiksgatami/front/news.html:9 +#: templates/web/fiksgatami/front/news.html:9 templates/web/fiksgatami/nn/front/news.html:9 templates/web/fixmystreet/front/news.html:8 msgid "New!" msgstr "" -#: templates/web/default/admin/council_contacts.html:39 templates/web/default/admin/council_contacts.html:40 templates/web/default/admin/council_edit.html:4 templates/web/default/admin/list_updates.html:30 templates/web/default/admin/list_updates.html:31 templates/web/default/admin/list_updates.html:32 templates/web/default/admin/problem_row.html:19 templates/web/default/admin/report_edit.html:19 templates/web/default/admin/report_edit.html:40 templates/web/default/admin/update_edit.html:16 templates/web/default/questionnaire/creator_fixed.html:16 templates/web/default/questionnaire/index.html:109 templates/web/default/questionnaire/index.html:70 +#: templates/web/default/admin/council_contacts.html:44 templates/web/default/admin/council_contacts.html:45 templates/web/default/admin/council_edit.html:4 templates/web/default/admin/list_updates.html:30 templates/web/default/admin/list_updates.html:31 templates/web/default/admin/list_updates.html:32 templates/web/default/admin/problem_row.html:19 templates/web/default/admin/report_edit.html:28 templates/web/default/admin/report_edit.html:40 templates/web/default/admin/update_edit.html:16 templates/web/default/questionnaire/creator_fixed.html:16 templates/web/default/questionnaire/index.html:107 templates/web/default/questionnaire/index.html:68 templates/web/fixmystreet/questionnaire/index.html:101 templates/web/fixmystreet/questionnaire/index.html:62 msgid "No" msgstr "" @@ -1033,7 +1091,7 @@ msgstr "" msgid "No council" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:297 +#: perllib/FixMyStreet/DB/Result/Problem.pm:320 msgid "No council selected" msgstr "" @@ -1053,11 +1111,11 @@ msgstr "" msgid "No info at all" msgstr "" -#: templates/web/default/around/around_map_list_items.html:15 +#: templates/web/default/around/around_map_list_items.html:15 templates/web/fixmystreet/around/around_map_list_items.html:24 msgid "No problems found." msgstr "" -#: templates/web/default/around/on_map_list_items.html:12 +#: templates/web/default/around/on_map_list_items.html:12 templates/web/fixmystreet/around/on_map_list_items.html:21 msgid "No problems have been reported yet." msgstr "" @@ -1069,11 +1127,11 @@ msgstr "" msgid "Not reported before" msgstr "" -#: templates/web/default/report/_main.html:9 +#: templates/web/default/report/_main.html:9 templates/web/emptyhomes/report/display.html:24 templates/web/fixmystreet/report/_main.html:11 msgid "Not reported to council" msgstr "" -#: templates/web/default/admin/council_contacts.html:31 templates/web/default/admin/council_edit.html:46 +#: templates/web/default/admin/council_contacts.html:36 templates/web/default/admin/council_edit.html:46 msgid "Note" msgstr "" @@ -1081,7 +1139,7 @@ msgstr "" msgid "Note that when including unconfirmed reports we use the date the report was created which may not be in the same month the report was confirmed so the numbers may jump about a little" msgstr "" -#: templates/web/default/admin/council_contacts.html:80 templates/web/default/admin/council_edit.html:31 +#: templates/web/default/admin/council_contacts.html:85 templates/web/default/admin/council_edit.html:31 msgid "Note:" msgstr "" @@ -1089,27 +1147,31 @@ msgstr "" msgid "Note: <strong>%s</strong>" msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:146 +msgid "Now to submit your report…" +msgstr "" + #: templates/web/default/report/new/fill_in_details_form.html:131 msgid "Now to submit your report… do you have a FixMyStreet password?" msgstr "" -#: templates/web/default/report/display.html:139 -msgid "Now to submit your update… do you have a FixMyStreet password?" +#: templates/web/fixmystreet/report/display.html:132 +msgid "Now to submit your update…" msgstr "" -#: templates/web/default/report/display.html:26 templates/web/default/report/updates.html:23 -msgid "Offensive? Unsuitable? Tell us" +#: templates/web/default/report/display.html:138 +msgid "Now to submit your update… do you have a FixMyStreet password?" msgstr "" -#: templates/web/default/reports/council.html:115 templates/web/default/reports/council.html:116 -msgid "Old fixed" +#: templates/web/default/report/display.html:26 templates/web/default/report/update.html:16 +msgid "Offensive? Unsuitable? Tell us" msgstr "" -#: templates/web/default/reports/council.html:109 templates/web/default/reports/council.html:110 -msgid "Old problems, state unknown" +#: templates/web/default/reports/index.html:18 +msgid "Old / unknown <br>problems" msgstr "" -#: templates/web/default/reports/index.html:13 templates/web/fiksgatami/reports/index.html:12 +#: templates/web/fiksgatami/nn/reports/index.html:12 templates/web/fiksgatami/reports/index.html:12 msgid "Old problems,<br>state unknown" msgstr "" @@ -1117,19 +1179,27 @@ msgstr "" msgid "Old state" msgstr "" -#: templates/web/default/reports/index.html:15 templates/web/emptyhomes/reports/index.html:14 templates/web/fiksgatami/reports/index.html:14 +#: templates/web/default/reports/index.html:20 +msgid "Older <br>fixed" +msgstr "" + +#: templates/web/default/reports/index.html:17 +msgid "Older <br>problems" +msgstr "" + +#: templates/web/emptyhomes/reports/index.html:14 templates/web/fiksgatami/nn/reports/index.html:14 templates/web/fiksgatami/reports/index.html:14 msgid "Older fixed" msgstr "" -#: templates/web/default/reports/council.html:101 templates/web/default/reports/council.html:105 templates/web/default/reports/council.html:106 templates/web/default/reports/council.html:99 templates/web/default/reports/index.html:12 templates/web/emptyhomes/reports/index.html:12 templates/web/fiksgatami/reports/index.html:11 +#: templates/web/emptyhomes/reports/index.html:12 templates/web/fiksgatami/nn/reports/index.html:11 templates/web/fiksgatami/reports/index.html:11 msgid "Older problems" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/update_edit.html:19 templates/web/default/report/display.html:85 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/update_edit.html:19 templates/web/default/report/display.html:84 templates/web/fixmystreet/report/display.html:79 msgid "Open" msgstr "" -#: templates/web/default/my/my.html:22 +#: templates/web/default/my/my.html:22 templates/web/fixmystreet/my/my.html:22 msgid "Open reports" msgstr "" @@ -1145,19 +1215,19 @@ msgstr "" msgid "Open311 specification" msgstr "" -#: templates/web/default/alert/list.html:87 +#: templates/web/default/alert/list.html:85 templates/web/fixmystreet/alert/_list.html:56 msgid "Or problems reported to:" msgstr "" -#: templates/web/default/alert/list.html:63 +#: templates/web/default/alert/list.html:61 templates/web/fixmystreet/alert/_list.html:33 msgid "Or you can subscribe to an alert based upon what ward or council you’re in:" msgstr "" -#: bin/send-reports:175 bin/send-reports:184 perllib/FixMyStreet/App/Controller/Report/New.pm:553 perllib/FixMyStreet/App/Controller/Report/New.pm:566 perllib/FixMyStreet/App/Controller/Report/New.pm:969 perllib/FixMyStreet/DB/Result/Problem.pm:475 perllib/FixMyStreet/DB/Result/Problem.pm:485 perllib/FixMyStreet/DB/Result/Problem.pm:495 perllib/FixMyStreet/DB/Result/Problem.pm:507 +#: bin/send-reports:176 bin/send-reports:185 perllib/FixMyStreet/App/Controller/Report/New.pm:568 perllib/FixMyStreet/App/Controller/Report/New.pm:581 perllib/FixMyStreet/App/Controller/Report/New.pm:990 perllib/FixMyStreet/DB/Result/Problem.pm:489 perllib/FixMyStreet/DB/Result/Problem.pm:499 perllib/FixMyStreet/DB/Result/Problem.pm:509 perllib/FixMyStreet/DB/Result/Problem.pm:521 msgid "Other" msgstr "" -#: templates/web/default/footer.html:30 +#: templates/web/default/footer.html:27 msgid "Our code is open source and <a href=\"http://github.com/mysociety/fixmystreet\">available on GitHub</a>." msgstr "" @@ -1169,51 +1239,67 @@ msgstr "" msgid "Page Not Found" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:21 msgid "Partial" msgstr "" -#: templates/web/default/auth/change_password.html:25 +#: templates/web/fixmystreet/auth/general.html:55 templates/web/fixmystreet/report/display.html:162 templates/web/fixmystreet/report/new/fill_in_details_form.html:191 +msgid "Password (optional)" +msgstr "" + +#: templates/web/default/auth/change_password.html:25 templates/web/fixmystreet/auth/change_password.html:25 msgid "Password:" msgstr "" -#: bin/send-reports:69 templates/web/default/admin/report_edit.html:32 templates/web/default/report/new/fill_in_details_form.html:215 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:130 templates/web/fixmystreet/report/new/fill_in_details_form.html:188 +msgid "Phone number (optional)" +msgstr "" + +#: bin/send-reports:70 templates/web/default/admin/report_edit.html:32 templates/web/default/report/new/fill_in_details_form.html:215 msgid "Phone:" msgstr "" -#: templates/web/default/questionnaire/index.html:97 templates/web/default/report/display.html:115 templates/web/default/report/new/fill_in_details_form.html:102 +#: templates/web/fixmystreet/report/display.html:108 templates/web/fixmystreet/report/new/fill_in_details_form.html:108 +msgid "Photo" +msgstr "" + +#: templates/web/default/questionnaire/index.html:95 templates/web/default/report/display.html:114 templates/web/default/report/new/fill_in_details_form.html:102 templates/web/fixmystreet/questionnaire/index.html:90 msgid "Photo:" msgstr "" -#: templates/web/default/alert/list.html:29 +#: templates/web/default/alert/list.html:27 templates/web/fixmystreet/alert/list.html:27 msgid "Photos of recent nearby reports" msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:23 templates/web/default/report/display.html:85 templates/web/default/report/display.html:86 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:19 templates/web/default/report/display.html:84 templates/web/default/report/display.html:85 templates/web/fixmystreet/report/display.html:79 templates/web/fixmystreet/report/display.html:80 msgid "Planned" msgstr "" -#: templates/web/default/report/new/notes.html:6 +#: templates/web/fixmystreet/questionnaire/index.html:44 +msgid "Please <a class=\"tab_link\" href=\"#report\">take a look</a> at the updates that have been left." +msgstr "" + +#: templates/web/default/report/new/notes.html:6 templates/web/fixmystreet/report/new/notes.html:5 msgid "Please be polite, concise and to the point." msgstr "" -#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:17 +#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:17 templates/web/fixmystreet/auth/change_password.html:12 templates/web/fixmystreet/auth/change_password.html:17 msgid "Please check the passwords and try again" msgstr "" -#: templates/web/default/auth/token.html:17 +#: templates/web/default/auth/token.html:17 templates/web/fixmystreet/auth/token.html:17 msgid "Please check your email" msgstr "" -#: templates/web/default/auth/general.html:14 templates/web/default/auth/general.html:8 +#: templates/web/default/auth/general.html:14 templates/web/default/auth/general.html:8 templates/web/fixmystreet/auth/general.html:15 templates/web/fixmystreet/auth/general.html:9 msgid "Please check your email address is correct" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:722 perllib/FixMyStreet/App/Controller/Report/New.pm:741 perllib/FixMyStreet/App/Controller/Report/New.pm:778 perllib/FixMyStreet/DB/Result/Problem.pm:316 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:739 perllib/FixMyStreet/App/Controller/Report/New.pm:758 perllib/FixMyStreet/App/Controller/Report/New.pm:795 perllib/FixMyStreet/DB/Result/Problem.pm:339 templates/web/default/js/validation_strings.html:9 msgid "Please choose a category" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:322 +#: perllib/FixMyStreet/DB/Result/Problem.pm:345 msgid "Please choose a property type" msgstr "" @@ -1224,43 +1310,47 @@ msgid "" "please <a href=\"/\">go to the front page</a> and follow the instructions." msgstr "" -#: templates/web/default/report/new/notes.html:7 +#: templates/web/default/report/new/notes.html:7 templates/web/fixmystreet/report/new/notes.html:6 msgid "Please do not be abusive — abusing your council devalues the service for all users." msgstr "" -#: perllib/FixMyStreet/DB/Result/Comment.pm:113 +#: perllib/FixMyStreet/DB/Result/Comment.pm:113 templates/web/default/js/validation_strings.html:2 msgid "Please enter a message" msgstr "" -#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:15 +#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:15 templates/web/fixmystreet/auth/change_password.html:12 templates/web/fixmystreet/auth/change_password.html:15 msgid "Please enter a password" msgstr "" -#: perllib/FixMyStreet/App/Controller/Contact.pm:97 perllib/FixMyStreet/DB/Result/Problem.pm:291 +#: perllib/FixMyStreet/App/Controller/Contact.pm:97 perllib/FixMyStreet/DB/Result/Problem.pm:314 templates/web/default/js/validation_strings.html:3 msgid "Please enter a subject" msgstr "" -#: perllib/FixMyStreet/DB/Result/User.pm:96 +#: perllib/FixMyStreet/DB/Result/User.pm:96 templates/web/default/js/validation_strings.html:12 templates/web/default/js/validation_strings.html:16 msgid "Please enter a valid email" msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:345 perllib/FixMyStreet/App/Controller/Contact.pm:107 +#: perllib/FixMyStreet/App/Controller/Alert.pm:342 perllib/FixMyStreet/App/Controller/Contact.pm:107 msgid "Please enter a valid email address" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:294 +#: perllib/FixMyStreet/DB/Result/Problem.pm:317 templates/web/default/js/validation_strings.html:4 msgid "Please enter some details" msgstr "" -#: perllib/FixMyStreet/App/Controller/Contact.pm:96 perllib/FixMyStreet/DB/Result/User.pm:93 templates/web/default/auth/general.html:13 templates/web/default/auth/general.html:8 +#: perllib/FixMyStreet/App/Controller/Contact.pm:96 perllib/FixMyStreet/DB/Result/User.pm:93 templates/web/default/auth/general.html:13 templates/web/default/auth/general.html:8 templates/web/default/js/validation_strings.html:11 templates/web/default/js/validation_strings.html:15 templates/web/fixmystreet/auth/general.html:14 templates/web/fixmystreet/auth/general.html:9 msgid "Please enter your email" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:309 -msgid "Please enter your full name, councils need this information - if you do not wish your name to be shown on the site, untick the box" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:143 +msgid "Please enter your email address" +msgstr "" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:332 templates/web/default/js/validation_strings.html:7 +msgid "Please enter your full name, councils need this information – if you do not wish your name to be shown on the site, untick the box below" msgstr "" -#: perllib/FixMyStreet/App/Controller/Contact.pm:95 perllib/FixMyStreet/DB/Result/Comment.pm:110 perllib/FixMyStreet/DB/Result/Problem.pm:302 perllib/FixMyStreet/DB/Result/User.pm:89 +#: perllib/FixMyStreet/App/Controller/Contact.pm:95 perllib/FixMyStreet/DB/Result/Comment.pm:110 perllib/FixMyStreet/DB/Result/Problem.pm:325 perllib/FixMyStreet/DB/Result/User.pm:89 templates/web/default/js/validation_strings.html:6 msgid "Please enter your name" msgstr "" @@ -1274,7 +1364,7 @@ msgid "" "to read, as does a lack of punctuation." msgstr "" -#: templates/web/default/report/new/fill_in_details_text.html:1 templates/web/default/report/new/fill_in_details_text.html:11 +#: templates/web/default/report/new/fill_in_details_text.html:1 templates/web/default/report/new/fill_in_details_text.html:11 templates/web/fixmystreet/report/new/fill_in_details_text.html:1 templates/web/fixmystreet/report/new/fill_in_details_text.html:11 msgid "Please fill in details of the problem below." msgstr "" @@ -1286,55 +1376,59 @@ msgid "" "photo of the problem if you have one), etc." msgstr "" -#: templates/web/default/report/new/fill_in_details_form.html:27 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:68 +msgid "Please fill in details of the problem." +msgstr "" + +#: templates/web/default/report/new/fill_in_details_form.html:27 templates/web/fixmystreet/report/new/fill_in_details_form.html:34 msgid "Please fill in the form below with details of the problem, and describe the location as precisely as possible in the details box." msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:241 msgid "Please indicate whether you'd like to receive another questionnaire" msgstr "" -#: templates/web/default/report/display.html:62 +#: templates/web/default/report/display.html:61 templates/web/fixmystreet/report/display.html:59 msgid "Please note that updates are not sent to the council. If you leave your name it will be public. Your information will only be used in accordance with our <a href=\"/faq#privacy\">privacy policy</a>" msgstr "" -#: templates/web/default/report/new/fill_in_details_form.html:5 +#: templates/web/default/report/new/fill_in_details_form.html:5 templates/web/fixmystreet/report/new/fill_in_details_form.html:25 msgid "Please note your report has <strong>not yet been sent</strong>. Choose a category and add further information below, then submit." msgstr "" -#: templates/web/default/report/new/notes.html:1 +#: templates/web/default/report/new/notes.html:1 templates/web/fixmystreet/report/new/notes.html:1 msgid "Please note:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:247 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 msgid "Please provide some explanation as to why you're reopening this report" msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:254 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:251 msgid "Please provide some text as well as a photo" msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:115 perllib/FixMyStreet/App/Controller/Questionnaire.pm:240 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:115 perllib/FixMyStreet/App/Controller/Questionnaire.pm:237 msgid "Please say whether you've ever reported a problem to your council before" msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:82 +#: perllib/FixMyStreet/App/Controller/Alert.pm:80 msgid "Please select the feed you want" msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:120 +#: perllib/FixMyStreet/App/Controller/Alert.pm:118 msgid "Please select the type of alert you want" msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:236 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:233 msgid "Please state whether or not the problem has been fixed" msgstr "" -#: templates/web/default/questionnaire/index.html:52 +#: templates/web/default/questionnaire/index.html:50 msgid "Please take a look at the updates that have been left." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:830 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:843 msgid "Please upload a JPEG image only" msgstr "" @@ -1342,23 +1436,27 @@ msgstr "" msgid "Please write a message" msgstr "" -#: templates/web/default/contact/index.html:93 templates/web/default/report/display.html:125 templates/web/default/report/display.html:162 templates/web/default/report/display.html:184 +#: templates/web/fixmystreet/report/display.html:74 +msgid "Please write your update here" +msgstr "" + +#: templates/web/default/contact/index.html:93 templates/web/default/report/display.html:124 templates/web/default/report/display.html:161 templates/web/default/report/display.html:183 templates/web/fixmystreet/contact/index.html:93 templates/web/fixmystreet/report/display.html:120 templates/web/fixmystreet/report/display.html:144 templates/web/fixmystreet/report/display.html:166 msgid "Post" msgstr "" -#: templates/web/default/report/updates.html:8 +#: templates/web/default/report/updates.html:14 msgid "Posted anonymously at %s" msgstr "" -#: templates/web/default/report/updates.html:11 +#: templates/web/default/report/updates.html:17 msgid "Posted by %s (<strong>%s</strong>) at %s" msgstr "" -#: templates/web/default/report/updates.html:13 +#: templates/web/default/report/updates.html:19 msgid "Posted by %s at %s" msgstr "" -#: templates/web/default/maps/openlayers.html:89 +#: templates/web/default/maps/openlayers.html:85 msgid "Problem" msgstr "" @@ -1378,7 +1476,7 @@ msgstr "" msgid "Problem breakdown by state" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:774 +#: perllib/FixMyStreet/App/Controller/Admin.pm:776 msgid "Problem marked as open." msgstr "" @@ -1390,31 +1488,39 @@ msgstr "" msgid "Problems" msgstr "" -#: templates/web/default/around/display_location.html:80 +#: templates/web/default/around/display_location.html:79 msgid "Problems in this area" msgstr "" +#: templates/web/fixmystreet/around/display_location.html:93 templates/web/fixmystreet/report/display.html:29 +msgid "Problems nearby" +msgstr "" + +#: templates/web/fixmystreet/around/display_location.html:92 +msgid "Problems on the map" +msgstr "" + #: db/alert_types.pl:14 msgid "Problems recently reported fixed on FixMyStreet" msgstr "" -#: templates/web/default/alert/list.html:52 +#: templates/web/default/alert/list.html:50 templates/web/fixmystreet/alert/_list.html:21 msgid "Problems within %.1fkm of this location" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:800 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:162 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:177 +#: perllib/FixMyStreet/Cobrand/Default.pm:748 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:162 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:177 msgid "Problems within %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:809 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:170 +#: perllib/FixMyStreet/Cobrand/Default.pm:757 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:170 msgid "Problems within %s ward" msgstr "" -#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:16 +#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:17 msgid "Problems within %s, FixMyStreet" msgstr "" -#: templates/web/default/alert/list.html:69 +#: templates/web/default/alert/list.html:67 templates/web/fixmystreet/alert/_list.html:38 msgid "Problems within the boundary of:" msgstr "" @@ -1422,19 +1528,23 @@ msgstr "" msgid "Properties recently reported as put back to use on reportemptyhomes.com" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:528 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:543 msgid "Property type:" msgstr "" -#: templates/web/default/report/display.html:57 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:62 +msgid "Provide a title" +msgstr "" + +#: templates/web/default/report/display.html:56 templates/web/fixmystreet/report/display.html:55 msgid "Provide an update" msgstr "" -#: templates/web/default/report/display.html:181 templates/web/default/report/new/fill_in_details_form.html:173 +#: templates/web/default/report/display.html:180 templates/web/default/report/new/fill_in_details_form.html:173 templates/web/fixmystreet/report/display.html:159 templates/web/fixmystreet/report/new/fill_in_details_form.html:185 msgid "Providing a password is optional, but doing so will allow you to more easily report problems, leave updates and manage your reports." msgstr "" -#: templates/web/default/questionnaire/completed.html:1 templates/web/default/questionnaire/completed.html:2 templates/web/default/questionnaire/index.html:0 templates/web/default/questionnaire/index.html:14 templates/web/default/questionnaire/index.html:4 +#: templates/web/default/questionnaire/completed.html:1 templates/web/default/questionnaire/completed.html:2 templates/web/default/questionnaire/index.html:0 templates/web/default/questionnaire/index.html:14 templates/web/default/questionnaire/index.html:4 templates/web/fixmystreet/questionnaire/index.html:0 templates/web/fixmystreet/questionnaire/index.html:15 templates/web/fixmystreet/questionnaire/index.html:3 templates/web/fixmystreet/questionnaire/index.html:32 msgid "Questionnaire" msgstr "" @@ -1450,67 +1560,75 @@ msgstr "" msgid "Questionnaire filled in by problem reporter" msgstr "" -#: templates/web/default/alert/list.html:54 templates/web/default/around/display_location.html:1 templates/web/default/around/display_location.html:3 templates/web/default/report/display.html:48 templates/web/default/reports/council.html:61 +#: templates/web/fixmystreet/static/for_councils_faq.html:1 +msgid "Questions and Answers :: FixMyStreet for Councils" +msgstr "" + +#: templates/web/default/alert/list.html:52 templates/web/default/around/display_location.html:1 templates/web/default/around/display_location.html:3 templates/web/default/report/display.html:47 templates/web/default/reports/council.html:79 templates/web/fixmystreet/alert/_list.html:22 templates/web/fixmystreet/alert/updates.html:9 templates/web/fixmystreet/around/display_location.html:1 templates/web/fixmystreet/around/display_location.html:3 templates/web/fixmystreet/report/display.html:35 msgid "RSS feed" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:838 perllib/FixMyStreet/Cobrand/Default.pm:852 +#: perllib/FixMyStreet/Cobrand/Default.pm:786 perllib/FixMyStreet/Cobrand/Default.pm:800 msgid "RSS feed for %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:845 perllib/FixMyStreet/Cobrand/Default.pm:859 +#: perllib/FixMyStreet/Cobrand/Default.pm:793 perllib/FixMyStreet/Cobrand/Default.pm:807 msgid "RSS feed for %s ward, %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:868 perllib/FixMyStreet/Cobrand/Default.pm:882 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:193 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:201 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:211 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:219 +#: perllib/FixMyStreet/Cobrand/Default.pm:816 perllib/FixMyStreet/Cobrand/Default.pm:830 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:193 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:201 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:211 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:219 msgid "RSS feed of %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:874 perllib/FixMyStreet/Cobrand/Default.pm:888 +#: perllib/FixMyStreet/Cobrand/Default.pm:822 perllib/FixMyStreet/Cobrand/Default.pm:836 msgid "RSS feed of %s, within %s ward" msgstr "" -#: templates/web/default/alert/list.html:54 +#: templates/web/default/alert/list.html:52 templates/web/fixmystreet/alert/_list.html:22 msgid "RSS feed of nearby problems" msgstr "" -#: templates/web/default/reports/council.html:61 +#: templates/web/default/reports/council.html:79 msgid "RSS feed of problems in this %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:801 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:163 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:176 +#: perllib/FixMyStreet/Cobrand/Default.pm:749 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:163 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:176 msgid "RSS feed of problems within %s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:808 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:169 +#: perllib/FixMyStreet/Cobrand/Default.pm:756 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:169 msgid "RSS feed of problems within %s ward" msgstr "" -#: templates/web/default/around/display_location.html:1 templates/web/default/around/display_location.html:4 +#: templates/web/default/around/display_location.html:1 templates/web/default/around/display_location.html:4 templates/web/fixmystreet/around/display_location.html:1 templates/web/fixmystreet/around/display_location.html:4 msgid "RSS feed of recent local problems" msgstr "" -#: templates/web/default/report/display.html:48 +#: templates/web/default/report/display.html:47 templates/web/fixmystreet/alert/updates.html:9 templates/web/fixmystreet/report/display.html:35 msgid "RSS feed of updates to this problem" msgstr "" -#: templates/web/default/alert/updates.html:9 templates/web/default/report/display.html:38 +#: templates/web/default/alert/updates.html:9 templates/web/default/report/display.html:38 templates/web/fixmystreet/alert/updates.html:14 templates/web/fixmystreet/report/display.html:37 msgid "Receive email when updates are left on this problem." msgstr "" -#: templates/web/default/around/display_location.html:0 templates/web/default/around/display_location.html:34 +#: templates/web/default/around/display_location.html:0 templates/web/default/around/display_location.html:34 templates/web/fixmystreet/around/display_location.html:0 templates/web/fixmystreet/around/display_location.html:34 msgid "Recent local problems, FixMyStreet" msgstr "" -#: templates/web/default/reports/council.html:87 templates/web/default/reports/council.html:88 templates/web/default/reports/index.html:14 templates/web/emptyhomes/reports/index.html:13 templates/web/fiksgatami/reports/index.html:13 +#: templates/web/default/reports/index.html:19 +msgid "Recently <br>fixed" +msgstr "" + +#: templates/web/emptyhomes/reports/index.html:13 templates/web/fiksgatami/nn/reports/index.html:13 templates/web/fiksgatami/reports/index.html:13 msgid "Recently fixed" msgstr "" -#: templates/web/default/index.html:62 +#: templates/web/default/index.html:61 templates/web/fixmystreet/index.html:72 msgid "Recently reported problems" msgstr "" -#: templates/web/default/report/new/notes.html:9 +#: templates/web/default/report/new/notes.html:9 templates/web/fixmystreet/report/new/notes.html:8 msgid "Remember that FixMyStreet is primarily for reporting physical problems that can be fixed. If your problem is not appropriate for submission via this site remember that you can contact your council directly using their own website." msgstr "" @@ -1518,7 +1636,7 @@ msgstr "" msgid "Remove flag" msgstr "" -#: templates/web/default/admin/report_edit.html:47 templates/web/default/admin/update_edit.html:48 +#: templates/web/default/admin/report_edit.html:52 templates/web/default/admin/update_edit.html:48 msgid "Remove photo (can't be undone!)" msgstr "" @@ -1526,67 +1644,75 @@ msgstr "" msgid "Report Empty Homes" msgstr "" -#: templates/web/default/footer.html:6 templates/web/emptyhomes/header.html:27 templates/web/fiksgatami/footer.html:5 templates/web/reading/footer.html:6 +#: templates/web/bromley/footer.html:33 templates/web/default/footer.html:7 templates/web/emptyhomes/header.html:27 templates/web/fiksgatami/footer.html:5 templates/web/fiksgatami/nn/footer.html:5 templates/web/fixmystreet/footer.html:45 templates/web/reading/footer.html:6 msgid "Report a problem" msgstr "" -#: perllib/FixMyStreet/App/Controller/Rss.pm:274 +#: templates/web/fixmystreet/report/display.html:27 +msgid "Report abuse" +msgstr "" + +#: templates/web/emptyhomes/index.html:37 +msgid "Report empty properties" +msgstr "" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:281 msgid "Report on %s" msgstr "" -#: templates/web/default/index.html:15 +#: templates/web/default/index.html:15 templates/web/fixmystreet/index.html:28 msgid "Report, view, or discuss local problems" msgstr "" -#: templates/web/default/my/my.html:74 +#: templates/web/default/my/my.html:74 templates/web/fixmystreet/my/my.html:77 msgid "Reported %s" msgstr "" -#: templates/web/default/my/my.html:72 +#: templates/web/default/my/my.html:72 templates/web/fixmystreet/my/my.html:75 msgid "Reported %s, to %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:490 templates/web/default/contact/index.html:45 +#: perllib/FixMyStreet/DB/Result/Problem.pm:504 templates/web/default/contact/index.html:45 templates/web/fixmystreet/contact/index.html:46 msgid "Reported anonymously at %s" msgstr "" -#: templates/web/default/admin/questionnaire.html:5 templates/web/default/questionnaire/index.html:79 +#: templates/web/default/admin/questionnaire.html:5 templates/web/default/questionnaire/index.html:77 templates/web/fixmystreet/questionnaire/index.html:71 msgid "Reported before" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:482 +#: perllib/FixMyStreet/DB/Result/Problem.pm:496 msgid "Reported by %s anonymously at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:513 templates/web/default/contact/index.html:47 +#: perllib/FixMyStreet/DB/Result/Problem.pm:527 templates/web/default/contact/index.html:47 templates/web/fixmystreet/contact/index.html:48 msgid "Reported by %s at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:504 +#: perllib/FixMyStreet/DB/Result/Problem.pm:518 msgid "Reported by %s by %s at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:478 +#: perllib/FixMyStreet/DB/Result/Problem.pm:492 msgid "Reported by %s in the %s category anonymously at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:498 +#: perllib/FixMyStreet/DB/Result/Problem.pm:512 msgid "Reported by %s in the %s category by %s at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:486 +#: perllib/FixMyStreet/DB/Result/Problem.pm:500 msgid "Reported in the %s category anonymously at %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:508 +#: perllib/FixMyStreet/DB/Result/Problem.pm:522 msgid "Reported in the %s category by %s at %s" msgstr "" -#: templates/web/default/around/around_index.html:1 templates/web/default/report/new/fill_in_details.html:0 templates/web/default/report/new/fill_in_details.html:3 templates/web/default/report/new/fill_in_details_form.html:1 +#: templates/web/default/around/around_index.html:1 templates/web/default/report/new/fill_in_details.html:0 templates/web/default/report/new/fill_in_details.html:3 templates/web/default/report/new/fill_in_details_form.html:1 templates/web/fixmystreet/around/around_index.html:1 templates/web/fixmystreet/report/new/fill_in_details.html:0 templates/web/fixmystreet/report/new/fill_in_details.html:5 templates/web/fixmystreet/report/new/fill_in_details_form.html:2 msgid "Reporting a problem" msgstr "" -#: templates/web/default/around/display_location.html:94 +#: templates/web/default/around/display_location.html:93 msgid "Reports on and around the map" msgstr "" @@ -1606,7 +1732,7 @@ msgstr "" msgid "Save changes" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:982 +#: perllib/FixMyStreet/App/Controller/Admin.pm:984 msgid "Search Abuse" msgstr "" @@ -1614,11 +1740,11 @@ msgstr "" msgid "Search Abuse Table" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:978 templates/web/default/admin/list_flagged.html:1 templates/web/default/admin/search_reports.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:980 templates/web/default/admin/list_flagged.html:1 templates/web/default/admin/search_reports.html:1 msgid "Search Reports" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:981 templates/web/default/admin/search_users.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:983 templates/web/default/admin/search_users.html:1 msgid "Search Users" msgstr "" @@ -1626,11 +1752,11 @@ msgstr "" msgid "Search:" msgstr "" -#: templates/web/default/alert/list.html:41 +#: templates/web/default/alert/list.html:39 templates/web/fixmystreet/alert/_list.html:10 msgid "Select which type of alert you'd like and click the button for an RSS feed, or enter your email address to subscribe to an email alert." msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:555 +#: perllib/FixMyStreet/DB/Result/Problem.pm:569 msgid "Sent to %s %s later" msgstr "" @@ -1659,15 +1785,19 @@ msgid "" " significant contribution to the supply of affordable homes in Wales." msgstr "" -#: templates/web/default/report/display.html:216 templates/web/default/report/new/fill_in_details_form.html:210 +#: templates/web/default/report/display.html:213 templates/web/default/report/new/fill_in_details_form.html:210 templates/web/fixmystreet/report/display.html:189 templates/web/fixmystreet/report/new/fill_in_details_form.html:123 templates/web/fixmystreet/report/new/fill_in_details_form.html:180 msgid "Show my name publicly" msgstr "" -#: templates/web/default/around/display_location.html:52 +#: templates/web/default/around/display_location.html:60 templates/web/fixmystreet/around/display_location.html:60 +msgid "Show old" +msgstr "" + +#: templates/web/default/around/display_location.html:51 templates/web/fixmystreet/around/display_location.html:52 msgid "Show pins" msgstr "" -#: templates/web/default/auth/general.html:3 templates/web/default/auth/general.html:49 +#: templates/web/bromley/header.html:50 templates/web/default/auth/general.html:3 templates/web/default/auth/general.html:49 templates/web/fixmystreet/auth/general.html:3 templates/web/fixmystreet/auth/general.html:38 templates/web/fixmystreet/auth/general.html:58 templates/web/fixmystreet/header.html:50 msgid "Sign in" msgstr "" @@ -1675,23 +1805,23 @@ msgstr "" msgid "Sign in by email" msgstr "" -#: templates/web/default/auth/general.html:1 +#: templates/web/default/auth/general.html:1 templates/web/fixmystreet/auth/general.html:1 msgid "Sign in or create an account" msgstr "" -#: templates/web/default/auth/sign_out.html:1 templates/web/default/header.html:35 templates/web/emptyhomes/header.html:43 templates/web/fiksgatami/header.html:22 templates/web/lichfielddc/header.html:177 templates/web/reading/header.html:37 +#: templates/web/default/auth/sign_out.html:1 templates/web/default/header.html:30 templates/web/emptyhomes/header.html:41 templates/web/fiksgatami/header.html:22 templates/web/fiksgatami/nn/header.html:22 templates/web/fixmystreet/auth/sign_out.html:1 templates/web/lichfielddc/header.html:177 templates/web/reading/header.html:33 msgid "Sign out" msgstr "" -#: templates/web/default/header.html:34 templates/web/emptyhomes/header.html:42 templates/web/fiksgatami/header.html:21 templates/web/lichfielddc/header.html:177 templates/web/reading/header.html:36 +#: templates/web/default/header.html:29 templates/web/emptyhomes/header.html:40 templates/web/fiksgatami/header.html:21 templates/web/fiksgatami/nn/header.html:21 templates/web/lichfielddc/header.html:177 templates/web/reading/header.html:32 msgid "Signed in as %s" msgstr "" -#: templates/web/default/report/new/fill_in_details_text.html:1 +#: templates/web/default/report/new/fill_in_details_text.html:1 templates/web/fixmystreet/report/new/fill_in_details_text.html:1 msgid "Some categories may require additional information." msgstr "" -#: templates/web/default/alert/index.html:31 +#: templates/web/default/alert/index.html:30 templates/web/fixmystreet/alert/index.html:33 msgid "Some photos of recent reports" msgstr "" @@ -1703,7 +1833,7 @@ msgstr "" msgid "Some unconfirmeds" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:517 +#: perllib/FixMyStreet/Cobrand/Default.pm:428 msgid "Sorry, that appears to be a Crown dependency postcode, which we don't cover." msgstr "" @@ -1711,15 +1841,15 @@ msgstr "" msgid "Sorry, there has been an error confirming your problem." msgstr "" -#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:52 perllib/FixMyStreet/Geocode/Google.pm:68 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:147 perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:53 perllib/FixMyStreet/Geocode/Google.pm:68 msgid "Sorry, we could not find that location." msgstr "" -#: perllib/FixMyStreet/Geocode/Bing.pm:45 perllib/FixMyStreet/Geocode/Google.pm:60 +#: perllib/FixMyStreet/Geocode/Bing.pm:46 perllib/FixMyStreet/Geocode/Google.pm:60 msgid "Sorry, we could not parse that location. Please try again." msgstr "" -#: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/footer.html:16 templates/web/fiksgatami/nn/footer.html:16 msgid "Source code" msgstr "" @@ -1735,51 +1865,59 @@ msgstr "" msgid "Start month:" msgstr "" -#: templates/web/default/admin/list_flagged.html:18 templates/web/default/admin/list_updates.html:6 templates/web/default/admin/search_reports.html:21 +#: templates/web/default/admin/list_flagged.html:18 templates/web/default/admin/list_updates.html:6 templates/web/default/admin/search_reports.html:21 templates/web/fixmystreet/report/display.html:77 msgid "State" msgstr "" -#: templates/web/default/admin/report_edit.html:21 templates/web/default/admin/update_edit.html:18 templates/web/default/report/display.html:83 +#: templates/web/default/admin/report_edit.html:17 templates/web/default/admin/update_edit.html:18 templates/web/default/report/display.html:82 msgid "State:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:984 templates/web/default/admin/stats.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:986 templates/web/default/admin/stats.html:1 msgid "Stats" msgstr "" +#: templates/web/default/report/updates.html:9 +msgid "Still open, via questionnaire, %s" +msgstr "" + +#: templates/web/fixmystreet/contact/index.html:79 templates/web/fixmystreet/report/new/fill_in_details_form.html:58 +msgid "Subject" +msgstr "" + #: templates/web/default/admin/report_edit.html:13 templates/web/default/contact/index.html:83 templates/web/default/report/new/fill_in_details_form.html:52 msgid "Subject:" msgstr "" -#: templates/web/default/questionnaire/creator_fixed.html:19 templates/web/default/report/new/fill_in_details_form.html:114 templates/web/default/report/new/fill_in_details_form.html:154 templates/web/default/report/new/fill_in_details_form.html:176 +#: templates/web/default/questionnaire/creator_fixed.html:19 templates/web/default/report/new/fill_in_details_form.html:114 templates/web/default/report/new/fill_in_details_form.html:154 templates/web/default/report/new/fill_in_details_form.html:176 templates/web/fixmystreet/report/new/fill_in_details_form.html:134 templates/web/fixmystreet/report/new/fill_in_details_form.html:159 templates/web/fixmystreet/report/new/fill_in_details_form.html:195 msgid "Submit" msgstr "" -#: templates/web/default/admin/report_edit.html:50 templates/web/default/admin/update_edit.html:51 templates/web/default/admin/user_edit.html:20 +#: templates/web/default/admin/report_edit.html:55 templates/web/default/admin/update_edit.html:51 templates/web/default/admin/user_edit.html:20 msgid "Submit changes" msgstr "" -#: templates/web/default/questionnaire/index.html:114 +#: templates/web/default/questionnaire/index.html:112 templates/web/fixmystreet/questionnaire/index.html:105 msgid "Submit questionnaire" msgstr "" -#: templates/web/default/alert/updates.html:17 templates/web/default/report/display.html:43 +#: templates/web/default/alert/updates.html:17 templates/web/default/report/display.html:43 templates/web/fixmystreet/alert/updates.html:23 templates/web/fixmystreet/report/display.html:42 msgid "Subscribe" msgstr "" -#: templates/web/default/alert/list.html:128 +#: templates/web/default/alert/list.html:126 templates/web/fixmystreet/alert/_list.html:88 msgid "Subscribe me to an email alert" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:976 templates/web/default/admin/index.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:978 templates/web/default/admin/index.html:1 msgid "Summary" msgstr "" -#: templates/web/default/reports/index.html:1 templates/web/emptyhomes/reports/index.html:1 templates/web/fiksgatami/reports/index.html:1 +#: templates/web/default/reports/index.html:1 templates/web/emptyhomes/reports/index.html:1 templates/web/fiksgatami/nn/reports/index.html:1 templates/web/fiksgatami/reports/index.html:1 msgid "Summary reports" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:980 templates/web/default/admin/questionnaire.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:982 templates/web/default/admin/questionnaire.html:1 msgid "Survey Results" msgstr "" @@ -1787,7 +1925,7 @@ msgstr "" msgid "Text" msgstr "" -#: templates/web/default/admin/council_contacts.html:12 +#: templates/web/default/admin/council_contacts.html:14 msgid "Text only version" msgstr "" @@ -1819,7 +1957,7 @@ msgstr "" msgid "Thank you for using ReportEmptyHomes.com. Your action is already helping to resolve the UK’s empty homes crisis." msgstr "" -#: templates/web/default/around/around_index.html:44 +#: templates/web/default/around/around_index.html:43 templates/web/fixmystreet/around/around_index.html:46 msgid "Thanks for uploading your photo. We now need to locate your problem, so please enter a nearby street name or postcode in the box below :" msgstr "" @@ -1831,11 +1969,11 @@ msgstr "" msgid "Thanks, glad to hear it's been fixed! Could we just ask if you have ever reported a problem to a council before?" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:839 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:856 msgid "That image doesn't appear to have uploaded correctly (%s), please try again." msgstr "" -#: templates/web/default/alert/index.html:12 +#: templates/web/default/alert/index.html:12 templates/web/fixmystreet/alert/index.html:12 msgid "That location does not appear to be covered by a council, perhaps it is offshore - please try somewhere more specific." msgstr "" @@ -1843,11 +1981,11 @@ msgstr "" msgid "That location does not appear to be in Britain; please try again." msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:510 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:78 +#: perllib/FixMyStreet/Cobrand/Default.pm:421 perllib/FixMyStreet/Cobrand/FiksGataMi.pm:78 msgid "That postcode was not recognised, sorry." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:558 +#: perllib/FixMyStreet/App/Controller/Admin.pm:560 msgid "That problem will now be resent." msgstr "" @@ -1855,7 +1993,7 @@ msgstr "" msgid "That report has been removed from FixMyStreet." msgstr "" -#: templates/web/default/around/around_index.html:27 +#: templates/web/default/around/around_index.html:26 templates/web/fixmystreet/around/around_index.html:29 msgid "That spot does not appear to be covered by a council. If you have tried to report an issue past the shoreline, for example, please specify the closest point on land." msgstr "" @@ -1878,15 +2016,27 @@ msgstr "" msgid "The Open311 v2 attribute agency_responsible is used to list the administrations that received the problem report, which is not quite the way the attribute is defined in the Open311 v2 specification." msgstr "" -#: templates/web/default/auth/token.html:21 templates/web/default/email_sent.html:22 +#: templates/web/default/auth/token.html:21 templates/web/default/email_sent.html:22 templates/web/fixmystreet/auth/token.html:21 msgid "The confirmation email <strong>may</strong> take a few minutes to arrive — <em>please</em> be patient." msgstr "" -#: templates/web/default/questionnaire/index.html:51 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 templates/web/fixmystreet/report/new/fill_in_details_text.html:3 +msgid "" +"The council won’t be able to help unless you leave as much\n" +"detail as you can. Please describe the exact location of the problem (e.g. on a\n" +"wall), what it is, how long it has been there, a description (and a photo of\n" +"the problem if you have one), etc." +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:43 +msgid "The details of your problem are available from the other tab above." +msgstr "" + +#: templates/web/default/questionnaire/index.html:49 msgid "The details of your problem are available on the right hand side of this page." msgstr "" -#: perllib/FixMyStreet/App/Controller/Reports.pm:46 perllib/FixMyStreet/App/Controller/Reports.pm:73 +#: perllib/FixMyStreet/App/Controller/Reports.pm:44 perllib/FixMyStreet/App/Controller/Reports.pm:71 msgid "The error was: %s" msgstr "" @@ -1942,7 +2092,7 @@ msgstr "" msgid "The latest reports within {{NAME}}'s boundary reported by users" msgstr "" -#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:16 +#: templates/web/default/auth/change_password.html:12 templates/web/default/auth/change_password.html:16 templates/web/fixmystreet/auth/change_password.html:12 templates/web/fixmystreet/auth/change_password.html:16 msgid "The passwords do not match" msgstr "" @@ -1950,35 +2100,35 @@ msgstr "" msgid "The requested URL '%s' was not found on this server" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1034 perllib/FixMyStreet/App/Controller/Admin.pm:1179 perllib/FixMyStreet/App/Controller/Admin.pm:538 perllib/FixMyStreet/App/Controller/Admin.pm:701 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1036 perllib/FixMyStreet/App/Controller/Admin.pm:1206 perllib/FixMyStreet/App/Controller/Admin.pm:540 perllib/FixMyStreet/App/Controller/Admin.pm:703 msgid "The requested URL was not found on this server." msgstr "" -#: templates/web/default/alert/list.html:47 +#: templates/web/default/alert/list.html:45 templates/web/fixmystreet/alert/_list.html:16 msgid "The simplest alert is our geographic one:" msgstr "" -#: templates/web/default/report/new/councils_text_all.html:18 templates/web/default/report/new/councils_text_some.html:10 templates/web/default/report/new/councils_text_some.html:11 templates/web/default/report/new/fill_in_details_form.html:17 +#: templates/web/default/report/new/councils_text_all.html:18 templates/web/default/report/new/councils_text_some.html:10 templates/web/default/report/new/councils_text_some.html:11 templates/web/default/report/new/fill_in_details_form.html:17 templates/web/fixmystreet/report/new/councils_text_all.html:18 templates/web/fixmystreet/report/new/councils_text_some.html:10 templates/web/fixmystreet/report/new/councils_text_some.html:11 templates/web/fixmystreet/report/new/fill_in_details_form.html:12 msgid "The subject and details of the problem will be public, plus your name if you give us permission." msgstr "" -#: bin/send-reports:78 +#: bin/send-reports:79 msgid "The user could not locate the problem on a map, but to see the area around the location they entered" msgstr "" -#: perllib/FixMyStreet/App/Controller/Reports.pm:72 +#: perllib/FixMyStreet/App/Controller/Reports.pm:70 msgid "There was a problem showing the All Reports page. Please try again later." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:641 perllib/FixMyStreet/App/Controller/Report/Update.pm:125 templates/web/default/auth/general.html:23 -msgid "There was a problem with your email/password combination. Passwords and user accounts are a brand <strong>new</strong> service, so you probably do not have one yet – please fill in the right hand side of this form to get one." +#: perllib/FixMyStreet/App/Controller/Report/New.pm:656 perllib/FixMyStreet/App/Controller/Report/Update.pm:125 templates/web/default/auth/general.html:23 templates/web/fixmystreet/auth/general.html:24 +msgid "There was a problem with your email/password combination. If you cannot remember your password, or do not have one, please fill in the ‘sign in by email’ section of the form." msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:354 +#: perllib/FixMyStreet/App/Controller/Alert.pm:351 msgid "There was a problem with your email/password combination. Please try again." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:215 msgid "There was a problem with your update. Please try again." msgstr "" @@ -1986,7 +2136,7 @@ msgstr "" msgid "There were problems with your report. Please see below." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:241 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:242 msgid "There were problems with your update. Please see below." msgstr "" @@ -1994,15 +2144,15 @@ msgstr "" msgid "This API implementation is work in progress and not yet stabilized. It will change without warnings in the future." msgstr "" -#: bin/send-reports:185 +#: bin/send-reports:186 msgid "This email has been sent to both councils covering the location of the problem, as the user did not categorise it; please ignore it if you're not the correct council to deal with the issue, or let us know what category of problem this is so we can add it to our system." msgstr "" -#: bin/send-reports:188 +#: bin/send-reports:189 msgid "This email has been sent to several councils covering the location of the problem, as the category selected is provided for all of them; please ignore it if you're not the correct council to deal with the issue." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:761 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 msgid "This information is required" msgstr "" @@ -2010,55 +2160,55 @@ msgstr "" msgid "This is a developer site; things might break at any time, and the database will be periodically deleted." msgstr "" -#: templates/web/default/reports/council.html:65 +#: templates/web/emptyhomes/reports/council.html:58 msgid "This is a summary of all reports for one %s." msgstr "" -#: templates/web/default/reports/council.html:67 +#: templates/web/emptyhomes/reports/council.html:60 msgid "This is a summary of all reports for this %s." msgstr "" -#: templates/web/default/reports/index.html:4 templates/web/emptyhomes/reports/index.html:4 templates/web/fiksgatami/reports/index.html:4 +#: templates/web/default/reports/index.html:7 templates/web/emptyhomes/reports/index.html:4 templates/web/fiksgatami/nn/reports/index.html:4 templates/web/fiksgatami/reports/index.html:4 msgid "This is a summary of all reports on this site; select a particular council to see the reports sent there." msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:926 +#: perllib/FixMyStreet/Cobrand/Default.pm:874 msgid "This problem has been closed" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:922 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 templates/web/default/report/display.html:101 +#: perllib/FixMyStreet/Cobrand/Default.pm:870 perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 templates/web/default/report/display.html:100 templates/web/fixmystreet/report/display.html:95 msgid "This problem has been fixed" msgstr "" -#: templates/web/default/report/display.html:96 +#: templates/web/default/report/display.html:95 templates/web/fixmystreet/report/display.html:89 msgid "This problem has not been fixed" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:931 +#: perllib/FixMyStreet/Cobrand/Default.pm:879 msgid "This problem is in progress" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:918 +#: perllib/FixMyStreet/Cobrand/Default.pm:866 msgid "This problem is old and of unknown status." msgstr "" -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 msgid "This report is currently marked as closed." msgstr "" -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 msgid "This report is currently marked as fixed." msgstr "" -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:83 msgid "This report is currently marked as open." msgstr "" -#: bin/send-reports:71 +#: bin/send-reports:72 msgid "This web page also contains a photo of the problem, provided by the user." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:979 templates/web/default/admin/timeline.html:1 +#: perllib/FixMyStreet/App/Controller/Admin.pm:981 templates/web/default/admin/timeline.html:1 msgid "Timeline" msgstr "" @@ -2066,17 +2216,27 @@ msgstr "" msgid "Title" msgstr "" -#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:69 +msgid "To <strong>report a problem</strong>, click on the map at the correct location." +msgstr "" + +#: templates/web/emptyhomes/around/display_location.html:35 msgid "To <strong>report a problem</strong>, simply click on the map at the correct location." msgstr "" +#: templates/web/fixmystreet/alert/index.html:19 +msgid "" +"To find out what local alerts we have for you, please enter your GB\n" +" postcode or street name and area" +msgstr "" + #: templates/web/default/alert/index.html:21 msgid "" "To find out what local alerts we have for you, please enter your GB\n" "postcode or street name and area:" msgstr "" -#: bin/send-reports:77 +#: bin/send-reports:78 msgid "To view a map of the precise location of this issue" msgstr "" @@ -2084,15 +2244,19 @@ msgstr "" msgid "Total" msgstr "" -#: perllib/FixMyStreet/App/Controller/Reports.pm:45 +#: perllib/FixMyStreet/App/Controller/Reports.pm:43 msgid "Unable to look up areas in MaPit. Please try again later." msgstr "" -#: templates/web/default/admin/report_edit.html:22 templates/web/default/admin/report_edit.html:25 templates/web/default/admin/update_edit.html:19 +#: templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:21 templates/web/default/admin/update_edit.html:19 msgid "Unconfirmed" msgstr "" -#: perllib/FixMyStreet/App/Controller/Rss.pm:163 +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:16 +msgid "Unknown" +msgstr "" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:164 msgid "Unknown alert type" msgstr "" @@ -2100,15 +2264,19 @@ msgstr "" msgid "Unknown problem ID" msgstr "" +#: templates/web/fixmystreet/report/display.html:70 +msgid "Update" +msgstr "" + #: templates/web/default/admin/timeline.html:35 msgid "Update %s created for problem %d; by %s" msgstr "" -#: templates/web/default/contact/index.html:21 +#: templates/web/default/contact/index.html:21 templates/web/fixmystreet/contact/index.html:22 msgid "Update below added anonymously at %s" msgstr "" -#: templates/web/default/contact/index.html:23 +#: templates/web/default/contact/index.html:23 templates/web/fixmystreet/contact/index.html:24 msgid "Update below added by %s at %s" msgstr "" @@ -2132,19 +2300,19 @@ msgstr "" msgid "Update reopened problem" msgstr "" -#: templates/web/default/admin/council_contacts.html:53 +#: templates/web/default/admin/council_contacts.html:58 msgid "Update statuses" msgstr "" -#: templates/web/default/report/display.html:77 +#: templates/web/default/report/display.html:76 msgid "Update:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:647 perllib/FixMyStreet/App/Controller/Admin.pm:764 perllib/FixMyStreet/App/Controller/Admin.pm:844 +#: perllib/FixMyStreet/App/Controller/Admin.pm:649 perllib/FixMyStreet/App/Controller/Admin.pm:766 perllib/FixMyStreet/App/Controller/Admin.pm:846 msgid "Updated!" msgstr "" -#: templates/web/default/admin/list_updates.html:1 templates/web/default/report/updates.html:4 +#: templates/web/default/admin/list_updates.html:1 templates/web/default/report/update.html:3 templates/web/fixmystreet/report/update.html:3 msgid "Updates" msgstr "" @@ -2152,15 +2320,15 @@ msgstr "" msgid "Updates on {{title}}" msgstr "" -#: templates/web/default/report/display.html:0 templates/web/default/report/display.html:7 +#: templates/web/default/report/display.html:0 templates/web/default/report/display.html:7 templates/web/fixmystreet/report/display.html:0 templates/web/fixmystreet/report/display.html:7 msgid "Updates to this problem, FixMyStreet" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1137 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1139 msgid "User flag removed" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1109 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1111 msgid "User flagged" msgstr "" @@ -2168,7 +2336,7 @@ msgstr "" msgid "Users" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:304 perllib/FixMyStreet/App/Controller/Admin.pm:334 +#: perllib/FixMyStreet/App/Controller/Admin.pm:306 perllib/FixMyStreet/App/Controller/Admin.pm:336 msgid "Values updated" msgstr "" @@ -2180,27 +2348,27 @@ msgstr "" msgid "View your report" msgstr "" -#: templates/web/default/around/display_location.html:0 templates/web/default/around/display_location.html:33 +#: templates/web/default/around/display_location.html:0 templates/web/default/around/display_location.html:33 templates/web/emptyhomes/around/display_location.html:0 templates/web/emptyhomes/around/display_location.html:16 templates/web/fixmystreet/around/display_location.html:0 templates/web/fixmystreet/around/display_location.html:33 msgid "Viewing a location" msgstr "" -#: templates/web/default/report/display.html:0 +#: templates/web/default/report/display.html:0 templates/web/emptyhomes/report/display.html:1 templates/web/emptyhomes/report/display.html:2 templates/web/fixmystreet/report/display.html:0 msgid "Viewing a problem" msgstr "" -#: templates/web/default/reports/council.html:22 +#: templates/web/default/reports/council.html:23 templates/web/default/reports/council.html:74 templates/web/default/reports/council.html:86 templates/web/emptyhomes/reports/council.html:18 msgid "Wards of this council" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:521 perllib/FixMyStreet/Geocode/Bing.pm:47 perllib/FixMyStreet/Geocode/Google.pm:63 +#: perllib/FixMyStreet/Cobrand/Default.pm:432 perllib/FixMyStreet/Geocode/Bing.pm:48 perllib/FixMyStreet/Geocode/Google.pm:63 msgid "We do not currently cover Northern Ireland, I'm afraid." msgstr "" -#: templates/web/default/alert/choose.html:6 templates/web/default/around/around_index.html:33 +#: templates/web/default/alert/choose.html:6 templates/web/default/around/around_index.html:32 templates/web/fixmystreet/alert/choose.html:6 templates/web/fixmystreet/around/around_index.html:35 msgid "We found more than one match for that location. We show up to ten matches, please try a different search if yours is not here." msgstr "" -#: templates/web/default/auth/token.html:19 +#: templates/web/default/auth/token.html:19 templates/web/fixmystreet/auth/token.html:19 msgid "We have sent you an email containing a link to confirm your account." msgstr "" @@ -2208,15 +2376,23 @@ msgstr "" msgid "We may contact you periodically to ask if anything has changed with the property you reported." msgstr "" -#: bin/send-reports:195 +#: templates/web/fixmystreet/report/display.html:158 +msgid "We never show your email" +msgstr "" + +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:127 templates/web/fixmystreet/report/new/fill_in_details_form.html:184 +msgid "We never show your email address or phone number." +msgstr "" + +#: bin/send-reports:196 msgid "We realise this problem might be the responsibility of %s; however, we don't currently have any contact details for them. If you know of an appropriate contact address, please do get in touch." msgstr "" -#: templates/web/default/index.html:46 +#: templates/web/default/index.html:45 templates/web/emptyhomes/index.html:61 templates/web/fixmystreet/index.html:56 msgid "We send it to the council on your behalf" msgstr "" -#: templates/web/default/report/new/notes.html:5 +#: templates/web/default/report/new/notes.html:5 templates/web/fixmystreet/report/new/notes.html:4 msgid "We will only use your personal information in accordance with our <a href=\"/faq#privacy\">privacy policy.</a>" msgstr "" @@ -2228,7 +2404,7 @@ msgstr "" msgid "We'd love to hear what you think about this site. Just fill in the form, or send an email to <a href='mailto:%s'>%s</a>:" msgstr "" -#: templates/web/default/admin/council_contacts.html:32 templates/web/default/admin/council_edit.html:41 +#: templates/web/default/admin/council_contacts.html:37 templates/web/default/admin/council_edit.html:41 msgid "When edited" msgstr "" @@ -2236,7 +2412,7 @@ msgstr "" msgid "When sent" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:523 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:538 msgid "Whole block of empty flats" msgstr "" @@ -2244,11 +2420,19 @@ msgstr "" msgid "With request searches, it is also possible to search for agency_responsible to limit the requests to those sent to a single administration. The search term is the administration ID provided by <a href=\"%s\">MaPit</a>." msgstr "" -#: templates/web/default/questionnaire/index.html:104 +#: templates/web/fixmystreet/footer.html:23 +msgid "Would you like better integration with FixMyStreet? <a href=\"/for-councils\">Find out about FixMyStreet for councils</a>." +msgstr "" + +#: templates/web/fixmystreet/footer.html:19 +msgid "Would you like to contribute to FixMyStreet? Our code is open source and <a href=\"http://github.com/mysociety/fixmystreet\">available on GitHub</a>." +msgstr "" + +#: templates/web/default/questionnaire/index.html:102 templates/web/fixmystreet/questionnaire/index.html:96 msgid "Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?" msgstr "" -#: templates/web/default/report/new/notes.html:8 +#: templates/web/default/report/new/notes.html:8 templates/web/fixmystreet/report/new/notes.html:7 msgid "Writing your message entirely in block capitals makes it hard to read, as does a lack of punctuation." msgstr "" @@ -2256,27 +2440,31 @@ msgstr "" msgid "Year" msgstr "" -#: templates/web/default/admin/council_contacts.html:39 templates/web/default/admin/council_contacts.html:40 templates/web/default/admin/council_edit.html:5 templates/web/default/admin/list_updates.html:30 templates/web/default/admin/list_updates.html:31 templates/web/default/admin/list_updates.html:32 templates/web/default/admin/problem_row.html:19 templates/web/default/admin/report_edit.html:18 templates/web/default/admin/report_edit.html:40 templates/web/default/admin/search_users.html:23 templates/web/default/admin/update_edit.html:15 templates/web/default/questionnaire/creator_fixed.html:14 templates/web/default/questionnaire/index.html:107 templates/web/default/questionnaire/index.html:68 +#: templates/web/default/admin/council_contacts.html:44 templates/web/default/admin/council_contacts.html:45 templates/web/default/admin/council_edit.html:5 templates/web/default/admin/list_updates.html:30 templates/web/default/admin/list_updates.html:31 templates/web/default/admin/list_updates.html:32 templates/web/default/admin/problem_row.html:19 templates/web/default/admin/report_edit.html:27 templates/web/default/admin/report_edit.html:40 templates/web/default/admin/search_users.html:23 templates/web/default/admin/update_edit.html:15 templates/web/default/questionnaire/creator_fixed.html:14 templates/web/default/questionnaire/index.html:105 templates/web/default/questionnaire/index.html:66 templates/web/fixmystreet/questionnaire/index.html:60 templates/web/fixmystreet/questionnaire/index.html:99 msgid "Yes" msgstr "" -#: templates/web/default/contact/index.html:37 +#: templates/web/fixmystreet/report/display.html:138 templates/web/fixmystreet/report/new/fill_in_details_form.html:153 +msgid "Yes I have a password" +msgstr "" + +#: templates/web/default/contact/index.html:37 templates/web/fixmystreet/contact/index.html:38 msgid "You are reporting the following problem report for being abusive, containing personal information, or similar:" msgstr "" -#: templates/web/default/contact/index.html:15 +#: templates/web/default/contact/index.html:15 templates/web/fixmystreet/contact/index.html:16 msgid "You are reporting the following update for being abusive, containing personal information, or similar:" msgstr "" -#: templates/web/default/reports/council.html:71 +#: templates/web/emptyhomes/reports/council.html:64 msgid "You can <a href=\"%s\">view all reports for the council</a> or <a href=\"/reports\">show all councils</a>." msgstr "" -#: templates/web/default/reports/council.html:73 +#: templates/web/emptyhomes/reports/council.html:66 msgid "You can <a href=\"/reports\">show all councils</a>." msgstr "" -#: templates/web/default/report/new/councils_text_none.html:14 templates/web/default/report/new/councils_text_none.html:16 templates/web/default/report/new/councils_text_some.html:20 templates/web/default/report/new/councils_text_some.html:22 +#: templates/web/default/report/new/councils_text_none.html:14 templates/web/default/report/new/councils_text_none.html:16 templates/web/default/report/new/councils_text_some.html:20 templates/web/default/report/new/councils_text_some.html:22 templates/web/fixmystreet/report/new/councils_text_none.html:12 templates/web/fixmystreet/report/new/councils_text_none.html:14 templates/web/fixmystreet/report/new/councils_text_some.html:20 templates/web/fixmystreet/report/new/councils_text_some.html:22 msgid "You can help us by finding a contact email address for local problems for %s and emailing it to us at <a href='mailto:%s'>%s</a>." msgstr "" @@ -2284,20 +2472,20 @@ msgstr "" msgid "You have already answered this questionnaire. If you have a question, please <a href='%s'>get in touch</a>, or <a href='%s'>view your problem</a>.\n" msgstr "" -#: templates/web/default/questionnaire/index.html:94 templates/web/default/report/new/fill_in_details_form.html:93 +#: templates/web/default/questionnaire/index.html:92 templates/web/default/report/new/fill_in_details_form.html:93 templates/web/fixmystreet/questionnaire/index.html:87 templates/web/fixmystreet/report/new/fill_in_details_form.html:101 msgid "You have already attached a photo to this report, attaching another one will replace it." msgstr "" -#: templates/web/default/report/display.html:112 +#: templates/web/default/report/display.html:111 templates/web/fixmystreet/report/display.html:105 msgid "You have already attached a photo to this update, attaching another one will replace it." msgstr "" -#: templates/web/default/auth/sign_out.html:3 +#: templates/web/default/auth/sign_out.html:3 templates/web/fixmystreet/auth/sign_out.html:3 msgid "You have been signed out" msgstr "" -#: templates/web/default/report/new/fill_in_details_form.html:7 -msgid "You have located the problem at the point marked with a purple pin on the map. If this is not the correct location, simply click on the map again. " +#: templates/web/default/report/new/fill_in_details_form.html:7 templates/web/fixmystreet/report/new/fill_in_details_form.html:27 +msgid "You have located the problem at the point marked with a green pin on the map. If this is not the correct location, simply click on the map again. " msgstr "" #: templates/web/default/tokens/confirm_alert.html:7 @@ -2320,7 +2508,7 @@ msgstr "" msgid "You have successfully deleted your alert." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:647 perllib/FixMyStreet/App/Controller/Report/Update.pm:131 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:662 perllib/FixMyStreet/App/Controller/Report/Update.pm:131 msgid "You have successfully signed in; please check and confirm your details are accurate:" msgstr "" @@ -2332,31 +2520,55 @@ msgstr "" msgid "You really want to resend?" msgstr "" -#: templates/web/default/my/my.html:0 templates/web/default/my/my.html:14 templates/web/default/my/my.html:3 +#: templates/web/default/my/my.html:0 templates/web/default/my/my.html:14 templates/web/default/my/my.html:3 templates/web/fixmystreet/my/my.html:0 templates/web/fixmystreet/my/my.html:14 templates/web/fixmystreet/my/my.html:3 msgid "Your Reports" msgstr "" +#: templates/web/fixmystreet/alert/_list.html:85 templates/web/fixmystreet/alert/updates.html:19 templates/web/fixmystreet/alert/updates.html:22 templates/web/fixmystreet/contact/index.html:72 templates/web/fixmystreet/report/display.html:39 templates/web/fixmystreet/report/display.html:41 templates/web/fixmystreet/report/new/fill_in_details_form.html:139 +msgid "Your email" +msgstr "" + +#: templates/web/fixmystreet/auth/general.html:26 templates/web/fixmystreet/report/display.html:129 +msgid "Your email address" +msgstr "" + #: templates/web/default/auth/general.html:27 msgid "Your email address:" msgstr "" -#: templates/web/default/alert/list.html:122 templates/web/default/report/display.html:134 templates/web/default/report/new/fill_in_details_form.html:124 +#: templates/web/default/alert/list.html:120 templates/web/default/report/display.html:133 templates/web/default/report/new/fill_in_details_form.html:124 msgid "Your email:" msgstr "" -#: templates/web/default/auth/general.html:59 templates/web/default/contact/index.html:68 templates/web/default/report/display.html:210 templates/web/default/report/new/fill_in_details_form.html:203 +#: templates/web/fixmystreet/auth/general.html:53 templates/web/fixmystreet/contact/index.html:65 templates/web/fixmystreet/report/display.html:185 templates/web/fixmystreet/report/new/fill_in_details_form.html:118 templates/web/fixmystreet/report/new/fill_in_details_form.html:175 +msgid "Your name" +msgstr "" + +#: templates/web/default/auth/general.html:59 templates/web/default/contact/index.html:68 templates/web/default/report/display.html:207 templates/web/default/report/new/fill_in_details_form.html:203 msgid "Your name:" msgstr "" -#: templates/web/default/auth/change_password.html:6 +#: templates/web/fixmystreet/auth/general.html:37 templates/web/fixmystreet/report/display.html:143 templates/web/fixmystreet/report/new/fill_in_details_form.html:158 +msgid "Your password" +msgstr "" + +#: templates/web/default/auth/change_password.html:6 templates/web/fixmystreet/auth/change_password.html:6 msgid "Your password has been changed" msgstr "" -#: templates/web/default/footer.html:7 templates/web/fiksgatami/footer.html:6 templates/web/reading/footer.html:7 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:131 templates/web/fixmystreet/report/new/fill_in_details_form.html:189 +msgid "Your phone number" +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:16 +msgid "Your report" +msgstr "" + +#: templates/web/bromley/footer.html:35 templates/web/default/footer.html:9 templates/web/fiksgatami/footer.html:6 templates/web/fiksgatami/nn/footer.html:6 templates/web/fixmystreet/footer.html:47 templates/web/reading/footer.html:7 msgid "Your reports" msgstr "" -#: templates/web/default/my/my.html:45 +#: templates/web/default/my/my.html:45 templates/web/fixmystreet/my/my.html:45 msgid "Your updates" msgstr "" @@ -2368,7 +2580,7 @@ msgstr "" msgid "by %s" msgstr "" -#: templates/web/default/reports/council.html:6 templates/web/default/reports/council.html:7 +#: templates/web/default/reports/council.html:6 templates/web/default/reports/council.html:7 templates/web/emptyhomes/reports/council.html:6 templates/web/emptyhomes/reports/council.html:7 msgid "council" msgstr "" @@ -2376,6 +2588,10 @@ msgstr "" msgid "didn't use map" msgstr "" +#: templates/web/fixmystreet/alert/index.html:24 templates/web/fixmystreet/index.html:41 +msgid "e.g. ‘%s’ or ‘%s’" +msgstr "" + #: templates/web/default/admin/index.html:15 msgid "from %d different users" msgstr "" @@ -2384,11 +2600,11 @@ msgstr "" msgid "less than a minute" msgstr "" -#: templates/web/default/report/updates.html:18 +#: templates/web/default/report/updates.html:24 msgid "marked as %s" msgstr "" -#: templates/web/default/report/updates.html:16 +#: templates/web/default/report/updates.html:22 msgid "marked as fixed" msgstr "" @@ -2396,7 +2612,7 @@ msgstr "" msgid "n/a" msgstr "" -#: templates/web/default/alert/list.html:116 +#: templates/web/default/alert/list.html:114 templates/web/fixmystreet/alert/_list.html:81 msgid "or" msgstr "" @@ -2408,19 +2624,23 @@ msgstr "" msgid "other areas:" msgstr "" -#: templates/web/default/report/updates.html:17 +#: templates/web/default/report/updates.html:23 msgid "reopened" msgstr "" -#: templates/web/default/report/new/fill_in_details_form.html:11 templates/web/default/report/new/fill_in_details_form.html:14 +#: templates/web/bromley/header.html:47 templates/web/fixmystreet/header.html:47 +msgid "sign out" +msgstr "" + +#: templates/web/default/report/new/fill_in_details_form.html:11 templates/web/default/report/new/fill_in_details_form.html:14 templates/web/fixmystreet/report/new/fill_in_details_form.html:6 templates/web/fixmystreet/report/new/fill_in_details_form.html:9 msgid "the local council" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:520 +#: perllib/FixMyStreet/DB/Result/Problem.pm:534 msgid "the map was not used so pin location may be inaccurate" msgstr "" -#: bin/send-reports:176 +#: bin/send-reports:177 msgid "this type of local problem" msgstr "" @@ -2440,7 +2660,7 @@ msgstr "" msgid "user is problem owner" msgstr "" -#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:3 +#: templates/web/default/reports/council.html:0 templates/web/default/reports/council.html:3 templates/web/emptyhomes/reports/council.html:0 templates/web/emptyhomes/reports/council.html:3 msgid "ward" msgstr "" @@ -2468,21 +2688,21 @@ msgstr "" msgid "your update will not be posted" msgstr "" -#: templates/web/default/front/stats.html:17 +#: templates/web/emptyhomes/front/stats.html:17 #, perl-format msgid "<big>%s</big> report recently" msgid_plural "<big>%s</big> reports recently" msgstr[0] "" msgstr[1] "" -#: templates/web/default/report/new/councils_text_none.html:5 +#: templates/web/emptyhomes/report/new/councils_text_none.html:3 #, perl-format msgid "We do not yet have details for the council that covers this location." msgid_plural "We do not yet have details for the councils that cover this location." msgstr[0] "" msgstr[1] "" -#: templates/web/default/front/stats.html:12 +#: templates/web/emptyhomes/front/stats.html:12 #, perl-format msgid "<big>%s</big> report in past week" msgid_plural "<big>%s</big> reports in past week" @@ -2503,7 +2723,7 @@ msgid_plural "<big>%s</big> updates on reports" msgstr[0] "" msgstr[1] "" -#: templates/web/default/report/new/councils_text_some.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:14 #, perl-format msgid "We do <strong>not</strong> yet have details for the other council that covers this location." msgid_plural "We do <strong>not</strong> yet have details for the other councils that cover this location." diff --git a/locale/cy_GB.UTF-8/LC_MESSAGES/EmptyHomes.po b/locale/cy_GB.UTF-8/LC_MESSAGES/EmptyHomes.po index 0e6f7ecac..a021bf46c 100644 --- a/locale/cy_GB.UTF-8/LC_MESSAGES/EmptyHomes.po +++ b/locale/cy_GB.UTF-8/LC_MESSAGES/EmptyHomes.po @@ -10,16 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: matthew@mysociety.org\n" -"POT-Creation-Date: 2011-10-21 15:56+0100\n" +"POT-Creation-Date: 2012-03-28 19:23+0100\n" "PO-Revision-Date: 2009-07-10 14:20-0000\n" "Last-Translator: Mark Smith <Mark.Smith@trosol.co.uk>\n" "Language-Team: mySociety\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: bin/send-reports:183 perllib/FixMyStreet/DB/Result/Problem.pm:535 +#: bin/send-reports:184 perllib/FixMyStreet/DB/Result/Problem.pm:549 msgid " and " msgstr "" @@ -35,7 +36,14 @@ msgstr " a <strong>byddwn nawr yn ei anfon at y cyngor</strong>" #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:23 #: templates/web/default/report/new/councils_text_some.html:5 -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:15 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:23 +#: templates/web/fixmystreet/report/new/councils_text_some.html:5 #, fuzzy msgid " or " msgstr "neu" @@ -108,24 +116,26 @@ msgstr "wythnos" #: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:14 +#: templates/web/emptyhomes/reports/council.html:11 +#: templates/web/emptyhomes/reports/council.html:13 msgid "%s - Summary reports" msgstr "%s - Adroddiadau cryno" -#: perllib/FixMyStreet/Cobrand/Default.pm:844 -#: perllib/FixMyStreet/Cobrand/Default.pm:858 +#: perllib/FixMyStreet/Cobrand/Default.pm:792 +#: perllib/FixMyStreet/Cobrand/Default.pm:806 msgid "%s ward, %s" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:466 +#: perllib/FixMyStreet/DB/Result/Problem.pm:480 msgid "%s, reported anonymously at %s" msgstr "Rhoddodd %s wybod yn ddi-enw am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:468 +#: perllib/FixMyStreet/DB/Result/Problem.pm:482 msgid "%s, reported by %s at %s" msgstr "Adroddwyd am %s gan %s am %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:875 -#: perllib/FixMyStreet/Cobrand/Default.pm:889 +#: perllib/FixMyStreet/Cobrand/Default.pm:823 +#: perllib/FixMyStreet/Cobrand/Default.pm:837 #, fuzzy msgid "%s, within %s ward" msgstr "Eiddo gwag yn ward %s" @@ -143,24 +153,31 @@ msgstr "" msgid "(Email in abuse table)" msgstr "" -#: templates/web/default/alert/list.html:53 +#: templates/web/default/alert/list.html:51 +#: templates/web/fixmystreet/alert/_list.html:24 msgid "(a default distance which covers roughly 200,000 people)" msgstr "(pellter rhagosodedig sy'n cynnwys tua 200,000 o bobl)" -#: templates/web/default/alert/list.html:58 +#: templates/web/default/alert/list.html:56 +#: templates/web/fixmystreet/alert/_list.html:28 msgid "(alternatively the RSS feed can be customised, within" msgstr "(fel arall, gellir addasu'r porthiant RSS yn bersonol, o fewn" #: templates/web/default/around/around_map_list_items.html:10 #: templates/web/default/around/on_map_list_items.html:7 +#: templates/web/default/reports/council.html:134 +#: templates/web/fixmystreet/around/around_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:9 msgid "(returned to use)" msgstr "(wedi'i adfer i'w ddefnyddio)" #: templates/web/default/index.html:12 templates/web/default/index.html:8 +#: templates/web/fixmystreet/index.html:30 msgid " " msgstr " " -#: templates/web/default/reports/council.html:133 +#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:152 #, fuzzy msgid "(not sent to council)" msgstr "Ni roddwyd gwybod i'r cyngor am hyn" @@ -169,7 +186,8 @@ msgstr "Ni roddwyd gwybod i'r cyngor am hyn" msgid "(optional)" msgstr "(dewisol)" -#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:130 +#: templates/web/default/reports/council.html:150 #, fuzzy msgid "(sent to both)" msgstr "Ni roddwyd gwybod i'r cyngor am hyn" @@ -178,24 +196,24 @@ msgstr "Ni roddwyd gwybod i'r cyngor am hyn" msgid "(we never show your email address or phone number)" msgstr "(nid ydym byth yn dangos eich cyfeiriad e-bost na'ch rhif ffôn)" -#: templates/web/default/report/display.html:217 +#: templates/web/default/report/display.html:214 #, fuzzy msgid "(we never show your email)" msgstr "(nid ydym byth yn dangos eich cyfeiriad e-bost na'ch rhif ffôn)" -#: perllib/FixMyStreet/App/Controller/Admin.pm:279 +#: perllib/FixMyStreet/App/Controller/Admin.pm:281 msgid "*unknown*" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:534 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:549 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/DB/Result/Problem.pm:337 #, fuzzy msgid "-- Pick a category --" msgstr "-- Dewiswch fath o eiddo --" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:520 -#: perllib/FixMyStreet/DB/Result/Problem.pm:320 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:535 +#: perllib/FixMyStreet/DB/Result/Problem.pm:343 msgid "-- Pick a property type --" msgstr "-- Dewiswch fath o eiddo --" @@ -204,16 +222,6 @@ msgstr "-- Dewiswch fath o eiddo --" msgid ". You can <a href=\"%s\">view the empty property on this site</a>." msgstr ". Gallwch <a href=\"%s\">weld yr eiddo gwag ar y safle hwn</a>." -#: templates/web/default/footer.html:13 templates/web/reading/footer.html:16 -msgid "" -"<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" height=" -"\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org\"><span id=" -"\"logoie\"></span></a>" -msgstr "" -"<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" height=" -"\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org\"><span id=" -"\"logoie\"></span></a>" - #: templates/web/default/questionnaire/completed.html:25 #, fuzzy msgid "" @@ -245,7 +253,7 @@ msgstr "" "chyhoeddi</a>?\n" "</p>\n" -#: templates/web/default/questionnaire/index.html:37 +#: templates/web/default/questionnaire/index.html:35 #, fuzzy msgid "" "<p>Getting empty homes back into use can be difficult, but by now a good " @@ -281,7 +289,7 @@ msgstr "" "href=\"http://www.emptyhomes.com/getinvolved/campaign.html\">http://www." "emptyhomes.com/getinvolved/campaign.html</a>.</p>\n" -#: templates/web/default/questionnaire/index.html:28 +#: templates/web/default/questionnaire/index.html:26 #, fuzzy msgid "" "<p>Getting empty homes back into use can be difficult. You shouldn’t " @@ -323,8 +331,10 @@ msgstr "" "mwy o wybodaeth am statws eich eiddo gwag, dewch yn ôl i'r safle\n" "a rhowch ddiweddariad yno.</p>\n" -#: templates/web/default/around/display_location.html:71 -#: templates/web/default/around/display_location.html:73 +#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:72 +#: templates/web/emptyhomes/around/display_location.html:36 +#: templates/web/emptyhomes/around/display_location.html:38 #, fuzzy msgid "" "<small>If you cannot see the map, <a href='%s' rel='nofollow'>skip this " @@ -338,6 +348,21 @@ msgstr "" msgid "<strong>%d</strong> live empty properties" msgstr "Adrodd am eiddo gwag a gweld y rhain" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:169 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my report by email" +msgstr "Adrodd am eiddo gwag a gweld y rhain" + +#: templates/web/fixmystreet/report/display.html:153 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my update by email" +msgstr "Adrodd am eiddo gwag a gweld y rhain" + +#: templates/web/fixmystreet/auth/general.html:46 +#, fuzzy +msgid "<strong>No</strong> let me sign in by email" +msgstr "Adrodd am eiddo gwag a gweld y rhain" + #: templates/web/default/auth/general.html:55 msgid "<strong>No</strong>, I do not, let me sign in by email:" msgstr "" @@ -347,35 +372,40 @@ msgstr "" msgid "<strong>No</strong>, let me confirm my report by email:" msgstr "Adrodd am eiddo gwag a gweld y rhain" -#: templates/web/default/report/display.html:170 +#: templates/web/default/report/display.html:169 #, fuzzy msgid "<strong>No</strong>, let me confirm my update by email:" msgstr "Adrodd am eiddo gwag a gweld y rhain" #: templates/web/default/auth/general.html:37 -#: templates/web/default/report/display.html:148 +#: templates/web/default/report/display.html:147 #: templates/web/default/report/new/fill_in_details_form.html:140 +#: templates/web/fixmystreet/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:34 +#: templates/web/fixmystreet/report/display.html:136 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:151 #, fuzzy -msgid "<strong>Yes</strong>, I have a password:" +msgid "<strong>Yes</strong> I have a password" msgstr "Adrodd am eiddo gwag a gweld y rhain" #: templates/web/default/static/about.html:1 #: templates/web/default/static/about.html:3 -#: templates/web/emptyhomes/header.html:31 +#: templates/web/emptyhomes/header.html:29 #: templates/web/emptyhomes/static/about.html:1 #: templates/web/emptyhomes/static/about.html:3 msgid "About us" msgstr "Amdanom ni" -#: templates/web/default/admin/council_contacts.html:57 +#: templates/web/default/admin/council_contacts.html:62 msgid "Add new category" msgstr "" -#: templates/web/default/my/my.html:56 +#: templates/web/default/my/my.html:56 templates/web/fixmystreet/my/my.html:56 msgid "Added %s" msgstr "" #: templates/web/default/auth/change_password.html:29 +#: templates/web/fixmystreet/auth/change_password.html:29 msgid "Again:" msgstr "" @@ -387,7 +417,8 @@ msgstr "" msgid "Alert %d disabled (created %s)" msgstr "" -#: templates/web/default/report/display.html:222 +#: templates/web/default/report/display.html:219 +#: templates/web/fixmystreet/report/display.html:193 msgid "Alert me to future updates" msgstr "Rhowch wybod i mi am ddiweddariadau yn y dyfodol" @@ -395,29 +426,40 @@ msgstr "Rhowch wybod i mi am ddiweddariadau yn y dyfodol" msgid "All" msgstr "" +#: templates/web/default/reports/index.html:3 +#, fuzzy +msgid "All Reports" +msgstr "Adroddiadau" + #: templates/web/default/admin/council_list.html:44 msgid "All confirmed" msgstr "" -#: templates/web/default/footer.html:8 templates/web/emptyhomes/header.html:28 -#: templates/web/fiksgatami/footer.html:7 templates/web/reading/footer.html:8 +#: templates/web/bromley/footer.html:37 templates/web/default/footer.html:11 +#: templates/web/fiksgatami/footer.html:7 +#: templates/web/fiksgatami/nn/footer.html:7 +#: templates/web/fixmystreet/footer.html:49 +#: templates/web/reading/footer.html:8 msgid "Reports" msgstr "Adroddiadau" #: templates/web/default/report/new/councils_text_some.html:2 +#: templates/web/fixmystreet/report/new/councils_text_some.html:2 msgid "All the information you provide here will be sent to" msgstr "" #: templates/web/default/report/new/councils_text_all.html:3 #: templates/web/default/report/new/councils_text_all.html:5 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_all.html:5 #, fuzzy msgid "" "All the information you provide here will be sent to <strong>%s</strong> or " "a relevant local body such as <strong>TfL</strong>, via the London Report-It " "system." msgstr "" -"Bydd yr holl wybodaeth a ddarperir gennych yma'n cael ei hanfon at <strong>%" -"s</strong>.\n" +"Bydd yr holl wybodaeth a ddarperir gennych yma'n cael ei hanfon at <strong>" +"%s</strong>.\n" "Ar y safle, byddwn yn dangos pwnc a manylion yr eiddo gwag,\n" "ynghyd â'ch enw os ydych yn rhoi caniatâd i ni." @@ -425,24 +467,29 @@ msgstr "" #: templates/web/default/report/new/councils_text_all.html:12 #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:13 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:12 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:8 msgid "" "All the information you provide here will be sent to <strong>%s</strong>." msgstr "" -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 -#: templates/web/emptyhomes/report/new/all_councils_text.html:4 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:4 #, fuzzy msgid "" "All the information you provide here will be sent to <strong>%s</strong>. On " "the site, we will show the subject and details of the empty property, plus " "your name if you give us permission." msgstr "" -"Bydd yr holl wybodaeth a ddarperir gennych yma'n cael ei hanfon at <strong>%" -"s</strong>.\n" +"Bydd yr holl wybodaeth a ddarperir gennych yma'n cael ei hanfon at <strong>" +"%s</strong>.\n" "Ar y safle, byddwn yn dangos pwnc a manylion yr eiddo gwag,\n" "ynghyd â'ch enw os ydych yn rhoi caniatâd i ni." -#: templates/web/default/questionnaire/index.html:62 +#: templates/web/default/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:54 msgid "An update marked this empty property as returned to use." msgstr "" "Fe wnaeth diweddariad gofnodi bod yr eiddo hwn wedi cael ei adfer i'w " @@ -454,23 +501,27 @@ msgstr "" msgid "Anonymous" msgstr "Di-enw" -#: templates/web/default/admin/report_edit.html:17 +#: templates/web/default/admin/report_edit.html:26 #: templates/web/default/admin/update_edit.html:14 #, fuzzy msgid "Anonymous:" msgstr "Di-enw" -#: templates/web/default/footer.html:29 -msgid "" -"Are you a developer? Would you like to contribute to reportemptyhomes.com?" -msgstr "" - #: templates/web/default/footer.html:26 msgid "" -"Are you from a council? Would you like better integration with " +"Are you a <strong>developer</strong>? Would you like to contribute to " "reportemptyhomes.com?" msgstr "" +#: templates/web/fixmystreet/footer.html:18 +msgid "Are you a developer?" +msgstr "" + +#: templates/web/fixmystreet/footer.html:22 +#, fuzzy +msgid "Are you from a council?" +msgstr "Ni roddwyd gwybod i'r cyngor am hyn" + #: templates/web/default/open311/index.html:17 msgid "" "At most %d requests are returned in each query. The returned requests are " @@ -487,11 +538,8 @@ msgstr "" msgid "Ban email address" msgstr "Eich cyfeiriad e-bost:" -#: templates/web/default/footer.html:16 templates/web/reading/footer.html:14 -msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" -msgstr "" - #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "" "Built by <a href=\"http://www.mysociety.org/\">mySociety</a> and maintained " "by <a href=\"http://www.nuug.no/\">NUUG</a>" @@ -501,10 +549,19 @@ msgstr "" msgid "By Date" msgstr "" -#: templates/web/default/admin/council_contacts.html:26 +#: templates/web/fixmystreet/around/display_location.html:75 +#: templates/web/fixmystreet/around/display_location.html:77 +#, fuzzy +msgid "Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>" +msgstr "" +"<small>Os na allwch weld y map, <a href='%s' rel='nofollow'>ewch heibio\n" +" i'r cam hwn</a>.</small>" + +#: templates/web/default/admin/council_contacts.html:31 #: templates/web/default/admin/index.html:36 #: templates/web/default/admin/list_flagged.html:14 #: templates/web/default/admin/search_reports.html:17 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:72 #, fuzzy msgid "Category" msgstr "Categori:" @@ -513,16 +570,16 @@ msgstr "Categori:" msgid "Category fix rate for empty properties > 4 weeks old" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:567 -#: templates/web/default/admin/council_contacts.html:63 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:552 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:582 +#: templates/web/default/admin/council_contacts.html:68 #: templates/web/default/admin/council_edit.html:23 -#: templates/web/default/admin/report_edit.html:29 +#: templates/web/default/admin/report_edit.html:25 #: templates/web/default/report/new/fill_in_details_form.html:67 msgid "Category:" msgstr "Categori:" -#: bin/send-reports:180 +#: bin/send-reports:181 #, fuzzy msgid "Category: %s" msgstr "Categori:" @@ -530,22 +587,33 @@ msgstr "Categori:" #: templates/web/default/auth/change_password.html:1 #: templates/web/default/auth/change_password.html:3 #: templates/web/default/auth/change_password.html:33 +#: templates/web/fixmystreet/auth/change_password.html:1 +#: templates/web/fixmystreet/auth/change_password.html:3 +#: templates/web/fixmystreet/auth/change_password.html:33 msgid "Change Password" msgstr "" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/fixmystreet/around/display_location.html:72 +#, fuzzy +msgid "Click map to report an empty property" +msgstr "Sut i roi gwybod am eiddo gwag" + +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:24 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Closed" msgstr "" -#: perllib/FixMyStreet/DB/Result/Problem.pm:627 +#: perllib/FixMyStreet/DB/Result/Problem.pm:641 #, fuzzy msgid "Closed by council" msgstr "Ni roddwyd gwybod i'r cyngor am hyn" -#: templates/web/default/my/my.html:32 +#: templates/web/default/my/my.html:32 templates/web/fixmystreet/my/my.html:32 #, fuzzy msgid "Closed reports" msgstr "Cuddio hen adroddiadau " @@ -554,8 +622,8 @@ msgstr "Cuddio hen adroddiadau " msgid "Closed:" msgstr "" -#: templates/web/default/around/display_location.html:102 -#: templates/web/default/around/display_location.html:104 +#: templates/web/default/around/display_location.html:101 +#: templates/web/default/around/display_location.html:103 msgid "Closest nearby empty properties <small>(within %skm)</small>" msgstr "Yr eiddo gwag cyfagos agosaf <small>(within %skm)</small>" @@ -579,29 +647,30 @@ msgstr "" msgid "Cobrand:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:349 +#: perllib/FixMyStreet/App/Controller/Admin.pm:351 #, fuzzy msgid "Configuration updated" msgstr "Cadarnhau" -#: perllib/FixMyStreet/App/Controller/Admin.pm:359 +#: perllib/FixMyStreet/App/Controller/Admin.pm:361 msgid "Configuration updated - contacts will be generated automatically later" msgstr "" -#: templates/web/default/admin/council_contacts.html:119 +#: templates/web/default/admin/council_contacts.html:124 msgid "Configure Open311" msgstr "" -#: templates/web/default/admin/council_contacts.html:96 +#: templates/web/default/admin/council_contacts.html:101 msgid "Configure Open311 integration" msgstr "" -#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:38 #, fuzzy msgid "Confirm" msgstr "Cadarnhau" #: templates/web/default/auth/token.html:1 +#: templates/web/fixmystreet/auth/token.html:1 #, fuzzy msgid "Confirm account" msgstr "Cadarnhau" @@ -616,8 +685,8 @@ msgstr "Cadarnhau" msgid "Confirmation" msgstr "Cadarnhau" -#: templates/web/default/admin/council_contacts.html:28 -#: templates/web/default/admin/council_contacts.html:73 +#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:78 #: templates/web/default/admin/council_edit.html:28 #: templates/web/default/admin/council_edit.html:43 #: templates/web/default/admin/stats.html:5 @@ -632,10 +701,11 @@ msgid "Confirmed:" msgstr "Cadarnhau" #: templates/web/fiksgatami/footer.html:10 +#: templates/web/fiksgatami/nn/footer.html:10 msgid "Contact" msgstr "Cysylltu" -#: templates/web/default/footer.html:17 templates/web/reading/footer.html:15 +#: templates/web/default/footer.html:24 #, fuzzy msgid "Contact reportemptyhomes.com" msgstr "Adroddiadau newydd ar reportemptyhomes.com" @@ -643,16 +713,19 @@ msgstr "Adroddiadau newydd ar reportemptyhomes.com" #: templates/web/default/contact/index.html:1 #: templates/web/default/contact/index.html:2 #: templates/web/default/contact/submit.html:1 +#: templates/web/fixmystreet/contact/index.html:1 +#: templates/web/fixmystreet/contact/index.html:2 msgid "Contact Us" msgstr "Cysylltwch â Ni" #: templates/web/default/contact/index.html:6 #: templates/web/default/contact/submit.html:3 +#: templates/web/fixmystreet/contact/index.html:7 msgid "Contact the team" msgstr "Cysylltu â'r tîm" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1105 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1133 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1107 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1135 msgid "Could not find user" msgstr "" @@ -664,7 +737,7 @@ msgstr "" msgid "Council" msgstr "cyngor" -#: perllib/FixMyStreet/App/Controller/Admin.pm:977 +#: perllib/FixMyStreet/App/Controller/Admin.pm:979 #: templates/web/default/admin/council_list.html:1 #, fuzzy msgid "Council contacts" @@ -697,7 +770,7 @@ msgstr "Cysylltu" msgid "Create a report" msgstr "Categori:" -#: templates/web/default/admin/council_contacts.html:87 +#: templates/web/default/admin/council_contacts.html:92 #, fuzzy msgid "Create category" msgstr "Categori:" @@ -721,13 +794,18 @@ msgstr "" msgid "Currently has 1+ deleted" msgstr "" -#: templates/web/default/admin/council_contacts.html:29 -#: templates/web/default/admin/council_contacts.html:76 +#: templates/web/default/admin/council_contacts.html:34 +#: templates/web/default/admin/council_contacts.html:81 #: templates/web/default/admin/council_edit.html:29 #: templates/web/default/admin/council_edit.html:44 msgid "Deleted" msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:64 +#, fuzzy +msgid "Details" +msgstr "Manylion:" + #: templates/web/default/admin/report_edit.html:14 #: templates/web/default/report/new/fill_in_details_form.html:61 msgid "Details:" @@ -738,11 +816,15 @@ msgid "Diligency prize league table" msgstr "" #: templates/web/default/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:29 +#: templates/web/fixmystreet/report/display.html:133 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:147 #, fuzzy msgid "Do you have a reportemptyhomes.com password?" msgstr "Diweddariadau i reportemptyhomes.com" -#: templates/web/default/questionnaire/index.html:72 +#: templates/web/default/questionnaire/index.html:70 +#: templates/web/fixmystreet/questionnaire/index.html:64 msgid "Don’t know" msgstr "Ddim yn gwybod" @@ -771,7 +853,7 @@ msgstr "Cyflwyno'ch diweddariad" msgid "Editor" msgstr "" -#: templates/web/default/admin/council_contacts.html:27 +#: templates/web/default/admin/council_contacts.html:32 #: templates/web/default/admin/council_edit.html:42 #: templates/web/default/admin/list_flagged.html:12 #: templates/web/default/admin/list_flagged.html:35 @@ -779,19 +861,21 @@ msgstr "" #: templates/web/default/admin/search_abuse.html:11 #: templates/web/default/admin/search_reports.html:15 #: templates/web/default/admin/search_users.html:13 +#: templates/web/fixmystreet/auth/general.html:20 +#: templates/web/fixmystreet/report/display.html:125 #, fuzzy msgid "Email" msgstr "E-bost:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1081 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1083 msgid "Email added to abuse list" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1078 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1080 msgid "Email already in abuse list" msgstr "" -#: templates/web/default/around/display_location.html:84 +#: templates/web/default/around/display_location.html:83 msgid "Email me new local empty properties" msgstr "Anfonwch fanylion eiddo gwag lleol newydd ataf i drwy'r e-bost" @@ -799,7 +883,7 @@ msgstr "Anfonwch fanylion eiddo gwag lleol newydd ataf i drwy'r e-bost" msgid "Email me updates" msgstr "Anfonwch ddiweddariadau ataf i drwy'r e-bost" -#: templates/web/default/admin/council_contacts.html:68 +#: templates/web/default/admin/council_contacts.html:73 #: templates/web/default/admin/council_edit.html:26 #: templates/web/default/admin/report_edit.html:31 #: templates/web/default/admin/update_edit.html:24 @@ -809,15 +893,15 @@ msgstr "Anfonwch ddiweddariadau ataf i drwy'r e-bost" msgid "Email:" msgstr "E-bost:" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:522 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 msgid "Empty flat or maisonette" msgstr "Fflat neu fflat deulawr gwag" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:521 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:536 msgid "Empty house or bungalow" msgstr "Tŷ neu fyngalo gwag" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:524 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:539 msgid "Empty office or other commercial" msgstr "Swyddfa wag neu fan masnachol gwag arall" @@ -825,11 +909,11 @@ msgstr "Swyddfa wag neu fan masnachol gwag arall" msgid "Empty property details form" msgstr "Ffurflen manylion eiddo gwag" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:525 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:540 msgid "Empty pub or bar" msgstr "Tafarn neu far gwag" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:526 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:541 msgid "Empty public building - school, hospital, etc." msgstr "Adeilad cyhoeddus gwag - ysgol, ysbyty, ac ati." @@ -849,6 +933,12 @@ msgstr "" #: templates/web/default/around/around_index.html:10 #: templates/web/default/around/around_index.html:13 #: templates/web/default/index.html:24 templates/web/default/index.html:27 +#: templates/web/emptyhomes/index.html:40 +#: templates/web/emptyhomes/index.html:43 +#: templates/web/fixmystreet/around/around_index.html:10 +#: templates/web/fixmystreet/around/around_index.html:13 +#: templates/web/fixmystreet/index.html:32 +#: templates/web/fixmystreet/index.html:35 msgid "Enter a nearby GB postcode, or street name and area" msgstr "Cofnodwch god post Prydeinig, neu enw stryd ac ardal gerllaw" @@ -858,13 +948,21 @@ msgid "Enter a nearby postcode, or street name and area" msgstr "Cofnodwch god post Prydeinig, neu enw stryd ac ardal gerllaw:" #: templates/web/default/auth/general.html:64 -#: templates/web/default/report/display.html:177 +#: templates/web/default/report/display.html:176 #: templates/web/default/report/new/fill_in_details_form.html:169 #, fuzzy msgid "Enter a new password:" msgstr "Ychwanegwch neges" -#: templates/web/default/index.html:45 +#: templates/web/fixmystreet/auth/general.html:57 +#: templates/web/fixmystreet/report/display.html:165 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:194 +#, fuzzy +msgid "Enter a password" +msgstr "Ychwanegwch neges" + +#: templates/web/default/index.html:44 templates/web/emptyhomes/index.html:60 +#: templates/web/fixmystreet/index.html:55 msgid "Enter details of the empty property" msgstr "Rhowch fanylion yr eiddo gwag" @@ -875,10 +973,11 @@ msgstr "Rhowch fanylion yr eiddo gwag" #: templates/web/default/tokens/abuse.html:3 #: templates/web/default/tokens/error.html:1 #: templates/web/default/tokens/error.html:3 +#: templates/web/fixmystreet/auth/token.html:5 msgid "Error" msgstr "Gwall" -#: templates/web/default/admin/council_contacts.html:9 +#: templates/web/default/admin/council_contacts.html:11 #: templates/web/default/admin/council_edit.html:18 msgid "Example postcode %s" msgstr "" @@ -896,21 +995,21 @@ msgstr "" "Rhowch gynnig eto'n ddiweddarach, neu <a href=\"mailto:%s\">anfonwch neges e-" "bost atom</a>i roi gwybod inni." -#: templates/web/default/footer.html:27 -#, fuzzy -msgid "Find out about reportemptyhomes.com for councils" -msgstr "Adroddiadau newydd ar reportemptyhomes.com" - -#: templates/web/default/questionnaire/index.html:81 +#: templates/web/default/questionnaire/index.html:79 +#: templates/web/fixmystreet/questionnaire/index.html:73 msgid "First time" msgstr "Y tro cyntaf" -#: templates/web/default/header.html:29 #: templates/web/fiksgatami/header.html:16 -#: templates/web/reading/header.html:31 +#: templates/web/fiksgatami/nn/header.html:16 msgid "Fix<span id=\"my\">My</span>Street" msgstr "Trwsio<span id=\"my\">Fy</span>Stryd" +#: templates/web/default/header.html:24 +#, fuzzy +msgid "reportemptyhomes.com" +msgstr "reportemptyhomes.com" + #: templates/web/default/admin/header.html:13 #, fuzzy msgid "reportemptyhomes.com admin:" @@ -921,7 +1020,13 @@ msgstr "reportemptyhomes.com" msgid "reportemptyhomes.com administration" msgstr "Diweddariadau i reportemptyhomes.com" +#: templates/web/fixmystreet/static/for_councils.html:1 +#, fuzzy +msgid "reportemptyhomes.com for Councils" +msgstr "Adroddiadau newydd ar reportemptyhomes.com" + #: templates/web/default/alert/index.html:6 +#: templates/web/fixmystreet/alert/index.html:6 msgid "" "reportemptyhomes.com has a variety of RSS feeds and email alerts for local " "empty properties, including\n" @@ -935,7 +1040,8 @@ msgstr "" "bob eiddo gwag\n" "o fewn pellter penodol o leoliad penodol." -#: templates/web/default/alert/list.html:100 +#: templates/web/default/alert/list.html:98 +#: templates/web/fixmystreet/alert/_list.html:69 msgid "" "reportemptyhomes.com sends different categories of empty property\n" "to the appropriate council, so empty properties within the boundary of a " @@ -958,27 +1064,30 @@ msgstr "" "rhanbarth a'r cyngor, ond dim ond yn yr hysbysiad \"O fewn y ffin\" \n" "y bydd yn ymddangos yn achos y cyngor sir." +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:20 #: templates/web/default/admin/index.html:36 -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Fixed" msgstr "" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #, fuzzy msgid "Fixed - Council" msgstr "cyngor" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #, fuzzy msgid "Fixed - User" msgstr "Cuddio hen adroddiadau " -#: templates/web/default/my/my.html:27 +#: templates/web/default/my/my.html:27 templates/web/fixmystreet/my/my.html:27 #, fuzzy msgid "Fixed reports" msgstr "Cuddio hen adroddiadau " @@ -1000,7 +1109,9 @@ msgstr "" msgid "Flagged:" msgstr "" -#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:24 +#: templates/web/default/reports/council.html:87 +#: templates/web/emptyhomes/reports/council.html:19 msgid "Follow a ward link to view only reports within that ward." msgstr "" @@ -1013,6 +1124,8 @@ msgstr "cyngor" #: templates/web/emptyhomes/faq/faq-cy.html:1 #: templates/web/emptyhomes/faq/faq-en-gb.html:1 #: templates/web/fiksgatami/faq/faq-nb.html:1 +#: templates/web/fiksgatami/nn/faq/faq-nn.html:1 +#: templates/web/fixmystreet/faq/faq-en-gb.html:1 msgid "Frequently Asked Questions" msgstr "Cwestiynau Cyffredin" @@ -1024,13 +1137,27 @@ msgstr "" msgid "GeoRSS on Google Maps" msgstr "" -#: templates/web/default/alert/list.html:112 +#: templates/web/fixmystreet/report/display.html:28 +#, fuzzy +msgid "Get updates" +msgstr "Anfonwch ddiweddariadau ataf i drwy'r e-bost" + +#: templates/web/default/reports/council.html:72 +#, fuzzy +msgid "Get updates of empty properties in this %s" +msgstr "Porthiant RSS o eiddo gwag yn yr %s hwn" + +#: templates/web/default/alert/list.html:110 +#: templates/web/fixmystreet/alert/_list.html:78 msgid "Give me an RSS feed" msgstr "Rhowch borthiant RSS i mi" #: templates/web/default/alert/index.html:24 #: templates/web/default/around/around_index.html:17 -#: templates/web/default/index.html:33 +#: templates/web/default/index.html:33 templates/web/emptyhomes/index.html:49 +#: templates/web/fixmystreet/alert/index.html:25 +#: templates/web/fixmystreet/around/around_index.html:20 +#: templates/web/fixmystreet/index.html:42 msgid "Go" msgstr "Ewch" @@ -1043,16 +1170,18 @@ msgstr "Anfon yr holiadur" msgid "Graph of empty property creation by status over time" msgstr "" -#: templates/web/default/reports/index.html:5 +#: templates/web/default/reports/index.html:8 #: templates/web/emptyhomes/reports/index.html:5 msgid "Greyed-out lines are councils that no longer exist." msgstr "Mae'r llinellau mewn llwyd yn gynghorau nad ydynt yn bodoli mwyach." -#: templates/web/default/questionnaire/index.html:63 +#: templates/web/default/questionnaire/index.html:61 +#: templates/web/fixmystreet/questionnaire/index.html:55 msgid "Has this empty property been returned to use?" msgstr "A yw'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio?" -#: templates/web/default/questionnaire/index.html:76 +#: templates/web/default/questionnaire/index.html:74 +#: templates/web/fixmystreet/questionnaire/index.html:68 msgid "" "Have you ever reported an empty property to a council before, or is this " "your first time?" @@ -1060,41 +1189,53 @@ msgstr "" "Ydych chi wedi rhoi gwybod i gyngor am eiddo gwag erioed o'r blaen, neu ai " "dyma'ch tro cyntaf?" -#: templates/web/default/footer.html:10 -#: templates/web/emptyhomes/header.html:30 -#: templates/web/fiksgatami/footer.html:9 templates/web/reading/footer.html:10 +#: templates/web/bromley/footer.html:41 templates/web/default/footer.html:15 +#: templates/web/emptyhomes/header.html:28 +#: templates/web/fiksgatami/footer.html:9 +#: templates/web/fiksgatami/nn/footer.html:9 +#: templates/web/fixmystreet/footer.html:53 +#: templates/web/reading/footer.html:10 msgid "FAQs" msgstr "Cwestiynau Cyffredin" -#: templates/web/default/alert/list.html:39 +#: templates/web/default/alert/list.html:37 +#: templates/web/fixmystreet/alert/_list.html:8 msgid "Here are the types of local empty property alerts for ‘%s’." msgstr "" "Dyma'r mathau o hysbysiadau am eiddo gwag lleol ar gyfer ‘%s’." -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/bromley/header.html:46 +#: templates/web/fixmystreet/header.html:46 +msgid "Hi %s" +msgstr "" + +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 #, fuzzy msgid "Hidden" msgstr "Cuddio pinnau" -#: templates/web/default/around/display_location.html:54 +#: templates/web/default/around/display_location.html:58 +#: templates/web/fixmystreet/around/display_location.html:58 +msgid "Hide old" +msgstr "" + +#: templates/web/default/around/display_location.html:53 +#: templates/web/fixmystreet/around/display_location.html:54 msgid "Hide pins" msgstr "Cuddio pinnau" -#: templates/web/default/around/display_location.html:59 -msgid "Hide stale reports" -msgstr "Cuddio hen adroddiadau " - #: templates/web/default/admin/council_edit.html:38 msgid "History" msgstr "" -#: templates/web/default/index.html:40 +#: templates/web/default/index.html:39 templates/web/emptyhomes/index.html:55 +#: templates/web/fixmystreet/index.html:50 msgid "How to report an empty property" msgstr "Sut i roi gwybod am eiddo gwag" -#: perllib/FixMyStreet/App/Controller/Admin.pm:587 +#: perllib/FixMyStreet/App/Controller/Admin.pm:592 msgid "I am afraid you cannot confirm unconfirmed reports." msgstr "" @@ -1128,13 +1269,15 @@ msgstr "" #: templates/web/default/report/new/councils_text_none.html:11 #: templates/web/default/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:10 +#: templates/web/fixmystreet/report/new/councils_text_none.html:9 msgid "" "If you submit an empty property here the subject and details of the empty " "property will be public, but the empty property will <strong>not</strong> be " "reported to the council." msgstr "" -#: templates/web/emptyhomes/report/new/no_councils_text.html:9 +#: templates/web/emptyhomes/report/new/councils_text_none.html:9 #, fuzzy msgid "" "If you submit a report here it will be left on the site, but not reported to " @@ -1150,13 +1293,15 @@ msgstr "" #: templates/web/default/auth/token.html:23 #: templates/web/default/email_sent.html:24 +#: templates/web/fixmystreet/auth/token.html:23 msgid "" "If you use web-based email or have 'junk mail' filters, you may wish to " "check your bulk/spam mail folders: sometimes, our messages are marked that " "way." msgstr "" -#: templates/web/default/questionnaire/index.html:85 +#: templates/web/default/questionnaire/index.html:83 +#: templates/web/fixmystreet/questionnaire/index.html:77 msgid "" "If you wish to leave a public update on the empty property, please enter it " "here\n" @@ -1173,14 +1318,16 @@ msgstr "" msgid "Illegal ID" msgstr "ID Anghyfreithlon" -#: perllib/FixMyStreet/App/Controller/Alert.pm:102 +#: perllib/FixMyStreet/App/Controller/Alert.pm:100 msgid "Illegal feed selection" msgstr "Dewis porthiant annilys" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "In Progress" msgstr "" @@ -1192,9 +1339,9 @@ msgid "" "present if requestor allowed the name to be shown on this site)." msgstr "" -#: templates/web/default/around/display_location.html:61 -msgid "Include stale reports" -msgstr "Cynnwys hen adroddiadau" +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:29 +msgid "In progress" +msgstr "" #: templates/web/default/admin/stats.html:76 #, fuzzy @@ -1209,7 +1356,7 @@ msgstr "" msgid "Invalid agency_responsible value %s" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:897 +#: perllib/FixMyStreet/App/Controller/Admin.pm:899 #, fuzzy msgid "Invalid end date" msgstr "Rhowch ddiweddariad" @@ -1218,14 +1365,16 @@ msgstr "Rhowch ddiweddariad" msgid "Invalid format %s specified." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:887 +#: perllib/FixMyStreet/App/Controller/Admin.pm:889 msgid "Invalid start date" msgstr "" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 #, fuzzy msgid "Investigating" msgstr "Mordwyo " @@ -1255,12 +1404,15 @@ msgstr "" "fel y gallwch weld beth sy'n digwydd." #: templates/web/default/auth/general.html:44 -#: templates/web/default/report/display.html:157 +#: templates/web/default/report/display.html:156 #: templates/web/default/report/new/fill_in_details_form.html:149 +#: templates/web/fixmystreet/auth/general.html:42 +#: templates/web/fixmystreet/report/display.html:149 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:164 msgid "Keep me signed in on this computer" msgstr "" -#: templates/web/default/admin/council_contacts.html:30 +#: templates/web/default/admin/council_contacts.html:35 msgid "Last editor" msgstr "" @@ -1273,16 +1425,17 @@ msgstr "Anfonwch ddiweddariadau ataf i drwy'r e-bost" msgid "Last update:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:983 +#: perllib/FixMyStreet/App/Controller/Admin.pm:985 msgid "List Flagged" msgstr "" -#: templates/web/default/admin/council_contacts.html:11 +#: templates/web/default/admin/council_contacts.html:13 #, fuzzy msgid "List all reported empty properties" msgstr "Eiddo gwag yr adroddwyd amdanynt yn ddiweddar" #: templates/web/default/report/new/fill_in_details_form.html:68 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:73 msgid "Loading..." msgstr "" @@ -1295,6 +1448,15 @@ msgstr "" #: templates/web/default/alert/updates.html:1 #: templates/web/default/tokens/confirm_alert.html:1 #: templates/web/default/tokens/confirm_alert.html:3 +#: templates/web/emptyhomes/alert/index.html:1 +#: templates/web/emptyhomes/alert/index.html:3 +#: templates/web/fixmystreet/alert/choose.html:1 +#: templates/web/fixmystreet/alert/choose.html:3 +#: templates/web/fixmystreet/alert/index.html:1 +#: templates/web/fixmystreet/alert/index.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:5 +#: templates/web/fixmystreet/alert/updates.html:1 msgid "Local RSS feeds and email alerts" msgstr "Porthiannau RSS a hysbysiadau e-bost lleol" @@ -1302,16 +1464,24 @@ msgstr "Porthiannau RSS a hysbysiadau e-bost lleol" #: templates/web/default/alert/list.html:12 #: templates/web/default/alert/list.html:14 #: templates/web/default/alert/list.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:12 +#: templates/web/fixmystreet/alert/list.html:14 +#: templates/web/fixmystreet/alert/list.html:3 #, fuzzy msgid "Local RSS feeds and email alerts for ‘%s’" msgstr "Porthiannau RSS a hysbysiadau e-bost lleol" -#: templates/web/default/footer.html:9 templates/web/emptyhomes/header.html:29 -#: templates/web/fiksgatami/footer.html:8 templates/web/reading/footer.html:9 +#: templates/web/bromley/footer.html:39 templates/web/default/footer.html:13 +#: templates/web/fiksgatami/footer.html:8 +#: templates/web/fiksgatami/nn/footer.html:8 +#: templates/web/fixmystreet/footer.html:51 +#: templates/web/reading/footer.html:9 msgid "Get local reports" msgstr "Gweld adroddiadau lleol" -#: templates/web/default/index.html:44 +#: templates/web/default/index.html:43 templates/web/emptyhomes/index.html:59 +#: templates/web/fixmystreet/index.html:54 msgid "Locate the empty property on a map of the area" msgstr "Chwiliwch am leoliad yr eiddo gwag ar fap o'r ardal" @@ -1322,6 +1492,11 @@ msgid "" "licenses/by-sa/2.0/\">CC-BY-SA</a>" msgstr "" +#: templates/web/fixmystreet/contact/index.html:86 +#, fuzzy +msgid "Message" +msgstr "Neges:" + #: templates/web/default/contact/index.html:90 msgid "Message:" msgstr "Neges:" @@ -1344,9 +1519,14 @@ msgstr "Mwy o eiddo gwag cyfagos" #: templates/web/default/admin/list_updates.html:7 #: templates/web/default/admin/search_reports.html:14 #: templates/web/default/admin/search_users.html:12 -#: templates/web/default/reports/index.html:10 +#: templates/web/default/reports/index.html:15 #: templates/web/emptyhomes/reports/index.html:10 +#: templates/web/fiksgatami/nn/reports/index.html:9 #: templates/web/fiksgatami/reports/index.html:9 +#: templates/web/fixmystreet/auth/general.html:52 +#: templates/web/fixmystreet/report/display.html:181 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:114 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:171 msgid "Name" msgstr "Enw" @@ -1356,7 +1536,8 @@ msgstr "Enw" msgid "Name:" msgstr "Enw:" -#: templates/web/default/footer.html:4 templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/nn/footer.html:3 #: templates/web/reading/footer.html:4 msgid "Navigation" msgstr "Mordwyo " @@ -1367,24 +1548,36 @@ msgid "" "using OpenStreetMap): %s%s" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:564 +#: perllib/FixMyStreet/Cobrand/Default.pm:480 msgid "" "Nearest postcode to the pin placed on the map (automatically generated): %s " "(%sm away)" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:553 -#: perllib/FixMyStreet/Cobrand/Default.pm:588 +#: perllib/FixMyStreet/Cobrand/Default.pm:469 +#: perllib/FixMyStreet/Cobrand/Default.pm:520 msgid "" "Nearest road to the pin placed on the map (automatically generated by Bing " "Maps): %s" msgstr "" +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:242 +msgid "" +"Nearest road to the pin placed on the map (automatically generated by Bing " +"Maps): %s\n" +"\n" +msgstr "" + #: templates/web/default/email_sent.html:20 msgid "Nearly Done! Now check your email..." msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:309 +#: templates/web/default/reports/index.html:16 +#, fuzzy +msgid "New <br>empty properties" +msgstr "Adroddiadau newydd am eiddo gwag" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:311 msgid "New category contact added" msgstr "" @@ -1397,10 +1590,8 @@ msgstr "Eiddo gwag lleol diweddar, reportemptyhomes.com" msgid "New local reports on reportemptyhomes.com" msgstr "Adroddiadau lleol newydd ar reportemptyhomes.com" -#: templates/web/default/reports/council.html:92 -#: templates/web/default/reports/council.html:93 -#: templates/web/default/reports/index.html:11 #: templates/web/emptyhomes/reports/index.html:11 +#: templates/web/fiksgatami/nn/reports/index.html:10 #: templates/web/fiksgatami/reports/index.html:10 msgid "New empty property reports" msgstr "Adroddiadau newydd am eiddo gwag" @@ -1463,24 +1654,27 @@ msgstr "Adroddiadau newydd o fewn ffin {{NAME}} ar reportemptyhomes.com" msgid "New state" msgstr "" -#: templates/web/default/front/news.html:8 #: templates/web/fiksgatami/front/news.html:9 +#: templates/web/fiksgatami/nn/front/news.html:9 +#: templates/web/fixmystreet/front/news.html:8 msgid "New!" msgstr "Newydd!" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:4 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/admin/report_edit.html:28 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/update_edit.html:16 #: templates/web/default/questionnaire/creator_fixed.html:16 -#: templates/web/default/questionnaire/index.html:109 -#: templates/web/default/questionnaire/index.html:70 +#: templates/web/default/questionnaire/index.html:107 +#: templates/web/default/questionnaire/index.html:68 +#: templates/web/fixmystreet/questionnaire/index.html:101 +#: templates/web/fixmystreet/questionnaire/index.html:62 msgid "No" msgstr "Nac ydw" @@ -1490,7 +1684,7 @@ msgstr "Nac ydw" msgid "No council" msgstr "cyngor" -#: perllib/FixMyStreet/DB/Result/Problem.pm:297 +#: perllib/FixMyStreet/DB/Result/Problem.pm:320 msgid "No council selected" msgstr "Ni ddewiswyd cyngor" @@ -1512,10 +1706,12 @@ msgid "No info at all" msgstr "" #: templates/web/default/around/around_map_list_items.html:15 +#: templates/web/fixmystreet/around/around_map_list_items.html:24 msgid "No empty properties found." msgstr "Ni ddaethpwyd o hyd i unrhyw eiddo gwag." #: templates/web/default/around/on_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:21 msgid "No empty properties have been reported yet." msgstr "Ni roddwyd gwybod eto am unrhyw eiddo gwag." @@ -1531,10 +1727,12 @@ msgid "Not reported before" msgstr "Wedi adrodd o'r blaen" #: templates/web/default/report/_main.html:9 +#: templates/web/emptyhomes/report/display.html:24 +#: templates/web/fixmystreet/report/_main.html:11 msgid "Not reported to council" msgstr "Ni roddwyd gwybod i'r cyngor am hyn" -#: templates/web/default/admin/council_contacts.html:31 +#: templates/web/default/admin/council_contacts.html:36 #: templates/web/default/admin/council_edit.html:46 #, fuzzy msgid "Note" @@ -1547,7 +1745,7 @@ msgid "" "numbers may jump about a little" msgstr "" -#: templates/web/default/admin/council_contacts.html:80 +#: templates/web/default/admin/council_contacts.html:85 #: templates/web/default/admin/council_edit.html:31 #, fuzzy msgid "Note:" @@ -1557,34 +1755,37 @@ msgstr "Nac ydw" msgid "Note: <strong>%s</strong>" msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:146 +msgid "Now to submit your report…" +msgstr "" + #: templates/web/default/report/new/fill_in_details_form.html:131 msgid "" "Now to submit your report… do you have a reportemptyhomes.com " "password?" msgstr "" -#: templates/web/default/report/display.html:139 +#: templates/web/fixmystreet/report/display.html:132 +msgid "Now to submit your update…" +msgstr "" + +#: templates/web/default/report/display.html:138 msgid "" "Now to submit your update… do you have a reportemptyhomes.com " "password?" msgstr "" #: templates/web/default/report/display.html:26 -#: templates/web/default/report/updates.html:23 +#: templates/web/default/report/update.html:16 msgid "Offensive? Unsuitable? Tell us" msgstr "Sarhaus? Anaddas? Rhowch wybod i ni" -#: templates/web/default/reports/council.html:115 -#: templates/web/default/reports/council.html:116 -msgid "Old returned to use" -msgstr "Hen wedi'i adfer i'w ddefnyddio" - -#: templates/web/default/reports/council.html:109 -#: templates/web/default/reports/council.html:110 -msgid "Old empty properties, state unknown" -msgstr "Eiddo gwag hen, nid yw eu cyflwr yn hysbys" +#: templates/web/default/reports/index.html:18 +#, fuzzy +msgid "Old / unknown <br>empty properties" +msgstr "ID eiddo gwag anhysbys" -#: templates/web/default/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:12 #: templates/web/fiksgatami/reports/index.html:12 msgid "Old empty properties,<br>state unknown" msgstr "Hen eiddo gwag,<br>cyflwr anhysbys" @@ -1593,29 +1794,36 @@ msgstr "Hen eiddo gwag,<br>cyflwr anhysbys" msgid "Old state" msgstr "" -#: templates/web/default/reports/index.html:15 +#: templates/web/default/reports/index.html:20 +#, fuzzy +msgid "Older <br>returned to use" +msgstr "Wedi'u hadfer i'w defnyddio ers amser" + +#: templates/web/default/reports/index.html:17 +#, fuzzy +msgid "Older <br>empty properties" +msgstr "Adroddiadau hŷn o eiddo gwag" + #: templates/web/emptyhomes/reports/index.html:14 +#: templates/web/fiksgatami/nn/reports/index.html:14 #: templates/web/fiksgatami/reports/index.html:14 msgid "Older returned to use" msgstr "Wedi'u hadfer i'w defnyddio ers amser" -#: templates/web/default/reports/council.html:101 -#: templates/web/default/reports/council.html:105 -#: templates/web/default/reports/council.html:106 -#: templates/web/default/reports/council.html:99 -#: templates/web/default/reports/index.html:12 #: templates/web/emptyhomes/reports/index.html:12 +#: templates/web/fiksgatami/nn/reports/index.html:11 #: templates/web/fiksgatami/reports/index.html:11 msgid "Older empty property reports" msgstr "Adroddiadau hŷn o eiddo gwag" -#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:18 #: templates/web/default/admin/update_edit.html:19 -#: templates/web/default/report/display.html:85 +#: templates/web/default/report/display.html:84 +#: templates/web/fixmystreet/report/display.html:79 msgid "Open" msgstr "" -#: templates/web/default/my/my.html:22 +#: templates/web/default/my/my.html:22 templates/web/fixmystreet/my/my.html:22 #, fuzzy msgid "Open reports" msgstr "Cuddio hen adroddiadau " @@ -1633,11 +1841,13 @@ msgstr "" msgid "Open311 specification" msgstr "" -#: templates/web/default/alert/list.html:87 +#: templates/web/default/alert/list.html:85 +#: templates/web/fixmystreet/alert/_list.html:56 msgid "Or empty properties reported to:" msgstr "Neu eiddo gwag y rhoddwyd gwybod amdanynt i:" -#: templates/web/default/alert/list.html:63 +#: templates/web/default/alert/list.html:61 +#: templates/web/fixmystreet/alert/_list.html:33 msgid "" "Or you can subscribe to an alert based upon what ward or council you’" "re in:" @@ -1645,18 +1855,18 @@ msgstr "" "Neu, gallwch danysgrifio am hysbysiad yn ôl pa ward neu gyngor yr ydych yn " "byw ynddo:" -#: bin/send-reports:175 bin/send-reports:184 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:553 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:969 -#: perllib/FixMyStreet/DB/Result/Problem.pm:475 -#: perllib/FixMyStreet/DB/Result/Problem.pm:485 -#: perllib/FixMyStreet/DB/Result/Problem.pm:495 -#: perllib/FixMyStreet/DB/Result/Problem.pm:507 +#: bin/send-reports:176 bin/send-reports:185 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:568 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:990 +#: perllib/FixMyStreet/DB/Result/Problem.pm:489 +#: perllib/FixMyStreet/DB/Result/Problem.pm:499 +#: perllib/FixMyStreet/DB/Result/Problem.pm:509 +#: perllib/FixMyStreet/DB/Result/Problem.pm:521 msgid "Other" msgstr "Arall" -#: templates/web/default/footer.html:30 +#: templates/web/default/footer.html:27 msgid "" "Our code is open source and <a href=\"http://github.com/mysociety/fixmystreet" "\">available on GitHub</a>." @@ -1672,65 +1882,103 @@ msgstr "Arall" msgid "Page Not Found" msgstr "" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Partial" msgstr "" +#: templates/web/fixmystreet/auth/general.html:55 +#: templates/web/fixmystreet/report/display.html:162 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:191 +#, fuzzy +msgid "Password (optional)" +msgstr "(dewisol)" + #: templates/web/default/auth/change_password.html:25 +#: templates/web/fixmystreet/auth/change_password.html:25 msgid "Password:" msgstr "" -#: bin/send-reports:69 templates/web/default/admin/report_edit.html:32 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:130 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:188 +#, fuzzy +msgid "Phone number (optional)" +msgstr "(dewisol)" + +#: bin/send-reports:70 templates/web/default/admin/report_edit.html:32 #: templates/web/default/report/new/fill_in_details_form.html:215 msgid "Phone:" msgstr "Rhif ffôn:" -#: templates/web/default/questionnaire/index.html:97 -#: templates/web/default/report/display.html:115 +#: templates/web/fixmystreet/report/display.html:108 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:108 +#, fuzzy +msgid "Photo" +msgstr "Ffotograff:" + +#: templates/web/default/questionnaire/index.html:95 +#: templates/web/default/report/display.html:114 #: templates/web/default/report/new/fill_in_details_form.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:90 msgid "Photo:" msgstr "Ffotograff:" -#: templates/web/default/alert/list.html:29 +#: templates/web/default/alert/list.html:27 +#: templates/web/fixmystreet/alert/list.html:27 msgid "Photos of recent nearby reports" msgstr "Ffotograffau o adroddiadau cyfagos diweddar" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 msgid "Planned" msgstr "" +#: templates/web/fixmystreet/questionnaire/index.html:44 +#, fuzzy +msgid "" +"Please <a class=\"tab_link\" href=\"#report\">take a look</a> at the updates " +"that have been left." +msgstr "Ewch i fwrw golwg ar y diweddariadau sydd wedi cael eu gadael." + #: templates/web/default/report/new/notes.html:6 +#: templates/web/fixmystreet/report/new/notes.html:5 msgid "Please be polite, concise and to the point." msgstr "" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:17 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:17 msgid "Please check the passwords and try again" msgstr "" #: templates/web/default/auth/token.html:17 +#: templates/web/fixmystreet/auth/token.html:17 #, fuzzy msgid "Please check your email" msgstr "Rhowch eich cyfeiriad e-bost" #: templates/web/default/auth/general.html:14 #: templates/web/default/auth/general.html:8 +#: templates/web/fixmystreet/auth/general.html:15 +#: templates/web/fixmystreet/auth/general.html:9 #, fuzzy msgid "Please check your email address is correct" msgstr "Rhowch gyfeiriad e-bost dilys" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:722 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:741 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 -#: perllib/FixMyStreet/DB/Result/Problem.pm:316 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:739 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:758 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:795 +#: perllib/FixMyStreet/DB/Result/Problem.pm:339 +#: templates/web/default/js/validation_strings.html:9 msgid "Please choose a category" msgstr "Dewiswch gategori" -#: perllib/FixMyStreet/DB/Result/Problem.pm:322 +#: perllib/FixMyStreet/DB/Result/Problem.pm:345 msgid "Please choose a property type" msgstr "Dewiswch fath o eiddo" @@ -1750,36 +1998,44 @@ msgstr "" "dilynwch y cyfarwyddiadau." #: templates/web/default/report/new/notes.html:7 +#: templates/web/fixmystreet/report/new/notes.html:6 msgid "" "Please do not be abusive — abusing your council devalues the service " "for all users." msgstr "" #: perllib/FixMyStreet/DB/Result/Comment.pm:113 +#: templates/web/default/js/validation_strings.html:2 msgid "Please enter a message" msgstr "Ychwanegwch neges" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:15 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:15 #, fuzzy msgid "Please enter a password" msgstr "Ychwanegwch neges" #: perllib/FixMyStreet/App/Controller/Contact.pm:97 -#: perllib/FixMyStreet/DB/Result/Problem.pm:291 +#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: templates/web/default/js/validation_strings.html:3 msgid "Please enter a subject" msgstr "Rhowch enw'r pwnc" #: perllib/FixMyStreet/DB/Result/User.pm:96 +#: templates/web/default/js/validation_strings.html:12 +#: templates/web/default/js/validation_strings.html:16 msgid "Please enter a valid email" msgstr "Cofnodwch gyfeiriad e-bost dilys" -#: perllib/FixMyStreet/App/Controller/Alert.pm:345 +#: perllib/FixMyStreet/App/Controller/Alert.pm:342 #: perllib/FixMyStreet/App/Controller/Contact.pm:107 msgid "Please enter a valid email address" msgstr "Cofnodwch gyfeiriad e-bost dilys" -#: perllib/FixMyStreet/DB/Result/Problem.pm:294 +#: perllib/FixMyStreet/DB/Result/Problem.pm:317 +#: templates/web/default/js/validation_strings.html:4 msgid "Please enter some details" msgstr "Cofnodwch fanylion" @@ -1787,21 +2043,33 @@ msgstr "Cofnodwch fanylion" #: perllib/FixMyStreet/DB/Result/User.pm:93 #: templates/web/default/auth/general.html:13 #: templates/web/default/auth/general.html:8 +#: templates/web/default/js/validation_strings.html:11 +#: templates/web/default/js/validation_strings.html:15 +#: templates/web/fixmystreet/auth/general.html:14 +#: templates/web/fixmystreet/auth/general.html:9 msgid "Please enter your email" msgstr "Cofnodwch eich cyfeiriad e-bost" -#: perllib/FixMyStreet/DB/Result/Problem.pm:309 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:143 +#, fuzzy +msgid "Please enter your email address" +msgstr "Cofnodwch eich cyfeiriad e-bost" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:332 +#: templates/web/default/js/validation_strings.html:7 +#, fuzzy msgid "" -"Please enter your full name - if you do not wish your name to be shown on " -"the site, untick the box" +"Please enter your full name, councils need this information – if you do not " +"wish your name to be shown on the site, untick the box below" msgstr "" "Cofnodwch eich enw llawn - os nad ydych yn dymuno bod eich enw'n cael ei " "ddangos ar y safle, cliciwch i ddileu'r tic o'r bocs" #: perllib/FixMyStreet/App/Controller/Contact.pm:95 #: perllib/FixMyStreet/DB/Result/Comment.pm:110 -#: perllib/FixMyStreet/DB/Result/Problem.pm:302 +#: perllib/FixMyStreet/DB/Result/Problem.pm:325 #: perllib/FixMyStreet/DB/Result/User.pm:89 +#: templates/web/default/js/validation_strings.html:6 msgid "Please enter your name" msgstr "Cofnodwch eich enw" @@ -1827,6 +2095,8 @@ msgstr "" #: templates/web/default/report/new/fill_in_details_text.html:1 #: templates/web/default/report/new/fill_in_details_text.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:11 msgid "Please fill in details of the empty property below." msgstr "Llenwch fanylion yr eiddo gwag isod." @@ -1842,7 +2112,13 @@ msgid "" "photo of the empty property if you have one), etc." msgstr "" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:68 +#, fuzzy +msgid "Please fill in details of the empty property." +msgstr "Llenwch fanylion yr eiddo gwag isod." + #: templates/web/default/report/new/fill_in_details_form.html:27 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:34 #, fuzzy msgid "" "Please fill in the form below with details of the empty property, and " @@ -1851,11 +2127,12 @@ msgstr "" "Llenwch y ffurflen isod gyda manylion yr eiddo gwag,\n" "a disgrifiwch y lleoliad mor fanwl ag y bo modd yn y blwch manylion." -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:241 msgid "Please indicate whether you'd like to receive another questionnaire" msgstr "Nodwch a fyddech chi'n hoffi derbyn holiadur arall" -#: templates/web/default/report/display.html:62 +#: templates/web/default/report/display.html:61 +#: templates/web/fixmystreet/report/display.html:59 msgid "" "Please note that updates are not sent to the council. If you leave your name " "it will be public. Your information will only be used in accordance with our " @@ -1863,25 +2140,27 @@ msgid "" msgstr "" #: templates/web/default/report/new/fill_in_details_form.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:25 msgid "" "Please note your report has <strong>not yet been sent</strong>. Choose a " "category and add further information below, then submit." msgstr "" #: templates/web/default/report/new/notes.html:1 +#: templates/web/fixmystreet/report/new/notes.html:1 msgid "Please note:" msgstr "" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:247 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 msgid "Please provide some explanation as to why you're reopening this report" msgstr "Rhowch ychydig o esboniad pam rydych yn ailagor yr adroddiad hwn" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:254 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:251 msgid "Please provide some text as well as a photo" msgstr "Rhowch rywfaint o destun yn ogystal â ffotograff" #: perllib/FixMyStreet/App/Controller/Questionnaire.pm:115 -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:240 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:237 msgid "" "Please say whether you've ever reported an empty property to your council " "before" @@ -1889,24 +2168,24 @@ msgstr "" "Rhowch wybod a ydych chi wedi rhoi gwybod i'ch cyngor am eiddo gwag erioed " "o'r blaen" -#: perllib/FixMyStreet/App/Controller/Alert.pm:82 +#: perllib/FixMyStreet/App/Controller/Alert.pm:80 msgid "Please select the feed you want" msgstr "Dewiswch y porthiant rydych chi eisiau ei gael" -#: perllib/FixMyStreet/App/Controller/Alert.pm:120 +#: perllib/FixMyStreet/App/Controller/Alert.pm:118 msgid "Please select the type of alert you want" msgstr "Dewiswch y math o hysbysiad rydych chi eisiau ei gael" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:236 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:233 msgid "Please state whether or not the empty property has been returned to use" msgstr "" "Cofnodwch a yw'r eiddo gwag wedi cael ei adfer i'w ddefnyddio, ai peidio" -#: templates/web/default/questionnaire/index.html:52 +#: templates/web/default/questionnaire/index.html:50 msgid "Please take a look at the updates that have been left." msgstr "Ewch i fwrw golwg ar y diweddariadau sydd wedi cael eu gadael." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:830 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:843 msgid "Please upload a JPEG image only" msgstr "Dim ond llun JPEG y dylech lwytho i fyny." @@ -1914,27 +2193,36 @@ msgstr "Dim ond llun JPEG y dylech lwytho i fyny." msgid "Please write a message" msgstr "Ysgrifennwch neges" +#: templates/web/fixmystreet/report/display.html:74 +#, fuzzy +msgid "Please write your update here" +msgstr "Rhowch eich enw" + #: templates/web/default/contact/index.html:93 -#: templates/web/default/report/display.html:125 -#: templates/web/default/report/display.html:162 -#: templates/web/default/report/display.html:184 +#: templates/web/default/report/display.html:124 +#: templates/web/default/report/display.html:161 +#: templates/web/default/report/display.html:183 +#: templates/web/fixmystreet/contact/index.html:93 +#: templates/web/fixmystreet/report/display.html:120 +#: templates/web/fixmystreet/report/display.html:144 +#: templates/web/fixmystreet/report/display.html:166 msgid "Post" msgstr "Postio" -#: templates/web/default/report/updates.html:8 +#: templates/web/default/report/updates.html:14 msgid "Posted anonymously at %s" msgstr "Cofnodwyd yn ddi-enw am %s" -#: templates/web/default/report/updates.html:11 +#: templates/web/default/report/updates.html:17 #, fuzzy msgid "Posted by %s (<strong>%s</strong>) at %s" msgstr "Cofnodwyd gan %s am %s" -#: templates/web/default/report/updates.html:13 +#: templates/web/default/report/updates.html:19 msgid "Posted by %s at %s" msgstr "Cofnodwyd gan %s am %s" -#: templates/web/default/maps/openlayers.html:89 +#: templates/web/default/maps/openlayers.html:85 msgid "Empty property" msgstr "Eiddo gwag" @@ -1958,7 +2246,7 @@ msgstr "Eiddo gwag yn %s" msgid "Empty property breakdown by state" msgstr "ni fydd eich eiddo gwag yn cael ei bostio" -#: perllib/FixMyStreet/App/Controller/Admin.pm:774 +#: perllib/FixMyStreet/App/Controller/Admin.pm:776 #, fuzzy msgid "Empty property marked as open." msgstr "Ffurflen manylion eiddo gwag" @@ -1972,10 +2260,21 @@ msgstr "" msgid "Empty properties" msgstr "Eiddo gwag" -#: templates/web/default/around/display_location.html:80 +#: templates/web/default/around/display_location.html:79 msgid "Empty properties in this area" msgstr "Eiddo gwag yn yr ardal hon" +#: templates/web/fixmystreet/around/display_location.html:93 +#: templates/web/fixmystreet/report/display.html:29 +#, fuzzy +msgid "Empty properties nearby" +msgstr "Mwy o eiddo gwag cyfagos" + +#: templates/web/fixmystreet/around/display_location.html:92 +#, fuzzy +msgid "Empty properties on the map" +msgstr "Eiddo gwag yn yr ardal hon" + #: db/alert_types.pl:14 #, fuzzy msgid "" @@ -1984,28 +2283,30 @@ msgstr "" "Eiddo y cafwyd adroddiadau diweddar ar reportemptyhomes.com eu bod wedi cael " "eu hadfer i'w defnyddio" -#: templates/web/default/alert/list.html:52 +#: templates/web/default/alert/list.html:50 +#: templates/web/fixmystreet/alert/_list.html:21 #, fuzzy msgid "Empty properties within %.1fkm of this location" msgstr "Eiddo gwag o fewn %skm o'r lleoliad hwn" -#: perllib/FixMyStreet/Cobrand/Default.pm:800 +#: perllib/FixMyStreet/Cobrand/Default.pm:748 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:162 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:177 msgid "Empty properties within %s" msgstr "Eiddo gwag yn %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:809 +#: perllib/FixMyStreet/Cobrand/Default.pm:757 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:170 msgid "Empty properties within %s ward" msgstr "Eiddo gwag yn ward %s" #: templates/web/default/reports/council.html:0 -#: templates/web/default/reports/council.html:16 +#: templates/web/default/reports/council.html:17 msgid "Empty properties within %s, reportemptyhomes.com" msgstr "Eiddo gwag o fewn %s, reportemptyhomes.com" -#: templates/web/default/alert/list.html:69 +#: templates/web/default/alert/list.html:67 +#: templates/web/fixmystreet/alert/_list.html:38 msgid "Empty properties within the boundary of:" msgstr "Eiddo gwag o fewn ffiniau:" @@ -2015,16 +2316,24 @@ msgstr "" "Eiddo y cafwyd adroddiadau diweddar ar reportemptyhomes.com eu bod wedi cael " "eu hadfer i'w defnyddio" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:528 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:543 msgid "Property type:" msgstr "Math o eiddo:" -#: templates/web/default/report/display.html:57 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:62 +#, fuzzy +msgid "Provide a title" +msgstr "Rhowch ddiweddariad" + +#: templates/web/default/report/display.html:56 +#: templates/web/fixmystreet/report/display.html:55 msgid "Provide an update" msgstr "Rhowch ddiweddariad" -#: templates/web/default/report/display.html:181 +#: templates/web/default/report/display.html:180 #: templates/web/default/report/new/fill_in_details_form.html:173 +#: templates/web/fixmystreet/report/display.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:185 msgid "" "Providing a password is optional, but doing so will allow you to more easily " "report empty properties, leave updates and manage your reports." @@ -2035,6 +2344,10 @@ msgstr "" #: templates/web/default/questionnaire/index.html:0 #: templates/web/default/questionnaire/index.html:14 #: templates/web/default/questionnaire/index.html:4 +#: templates/web/fixmystreet/questionnaire/index.html:0 +#: templates/web/fixmystreet/questionnaire/index.html:15 +#: templates/web/fixmystreet/questionnaire/index.html:3 +#: templates/web/fixmystreet/questionnaire/index.html:32 msgid "Questionnaire" msgstr "Holiadur" @@ -2052,28 +2365,38 @@ msgstr "Llenwyd yr holiadur gan yr unigolyn a roddodd wybod am yr eiddo gwag" msgid "Questionnaire filled in by empty property reporter" msgstr "Llenwyd yr holiadur gan yr unigolyn a roddodd wybod am yr eiddo gwag" -#: templates/web/default/alert/list.html:54 +#: templates/web/fixmystreet/static/for_councils_faq.html:1 +#, fuzzy +msgid "Questions and Answers :: reportemptyhomes.com for Councils" +msgstr "Adroddiadau newydd ar reportemptyhomes.com" + +#: templates/web/default/alert/list.html:52 #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:3 -#: templates/web/default/report/display.html:48 -#: templates/web/default/reports/council.html:61 +#: templates/web/default/report/display.html:47 +#: templates/web/default/reports/council.html:79 +#: templates/web/fixmystreet/alert/_list.html:22 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:3 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed" msgstr "Porthiant RSS" -#: perllib/FixMyStreet/Cobrand/Default.pm:838 -#: perllib/FixMyStreet/Cobrand/Default.pm:852 +#: perllib/FixMyStreet/Cobrand/Default.pm:786 +#: perllib/FixMyStreet/Cobrand/Default.pm:800 #, fuzzy msgid "RSS feed for %s" msgstr "Porthiant RSS %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:845 -#: perllib/FixMyStreet/Cobrand/Default.pm:859 +#: perllib/FixMyStreet/Cobrand/Default.pm:793 +#: perllib/FixMyStreet/Cobrand/Default.pm:807 #, fuzzy msgid "RSS feed for %s ward, %s" msgstr "Porthiant RSS %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:868 -#: perllib/FixMyStreet/Cobrand/Default.pm:882 +#: perllib/FixMyStreet/Cobrand/Default.pm:816 +#: perllib/FixMyStreet/Cobrand/Default.pm:830 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:193 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:201 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:211 @@ -2081,28 +2404,29 @@ msgstr "Porthiant RSS %s" msgid "RSS feed of %s" msgstr "Porthiant RSS %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:874 -#: perllib/FixMyStreet/Cobrand/Default.pm:888 +#: perllib/FixMyStreet/Cobrand/Default.pm:822 +#: perllib/FixMyStreet/Cobrand/Default.pm:836 #, fuzzy msgid "RSS feed of %s, within %s ward" msgstr "Porthiant RSS %s" -#: templates/web/default/alert/list.html:54 +#: templates/web/default/alert/list.html:52 +#: templates/web/fixmystreet/alert/_list.html:22 msgid "RSS feed of nearby empty properties" msgstr "Porthiant RSS o eiddo gwag sydd gerllaw" -#: templates/web/default/reports/council.html:61 +#: templates/web/default/reports/council.html:79 msgid "RSS feed of empty properties in this %s" msgstr "Porthiant RSS o eiddo gwag yn yr %s hwn" -#: perllib/FixMyStreet/Cobrand/Default.pm:801 +#: perllib/FixMyStreet/Cobrand/Default.pm:749 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:163 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:176 #, fuzzy msgid "RSS feed of empty properties within %s" msgstr "Porthiant RSS o eiddo gwag yn yr %s hwn" -#: perllib/FixMyStreet/Cobrand/Default.pm:808 +#: perllib/FixMyStreet/Cobrand/Default.pm:756 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:169 #, fuzzy msgid "RSS feed of empty properties within %s ward" @@ -2110,15 +2434,21 @@ msgstr "Porthiant RSS o eiddo gwag yn yr %s hwn" #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:4 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:4 msgid "RSS feed of recent local empty properties" msgstr "Porthiant RSS o eiddo gwag lleol diweddar" -#: templates/web/default/report/display.html:48 +#: templates/web/default/report/display.html:47 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed of updates to this empty property" msgstr "Porthiant RSS o ddiweddariadau i'r eiddo gwag hwn" #: templates/web/default/alert/updates.html:9 #: templates/web/default/report/display.html:38 +#: templates/web/fixmystreet/alert/updates.html:14 +#: templates/web/fixmystreet/report/display.html:37 msgid "Receive email when updates are left on this empty property." msgstr "" "Derbyn neges e-bost pan fydd diweddariadau'n cael eu rhoi am yr eiddo gwag " @@ -2126,22 +2456,28 @@ msgstr "" #: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:34 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:34 msgid "Recent local empty properties, reportemptyhomes.com" msgstr "Eiddo gwag lleol diweddar, reportemptyhomes.com" -#: templates/web/default/reports/council.html:87 -#: templates/web/default/reports/council.html:88 -#: templates/web/default/reports/index.html:14 +#: templates/web/default/reports/index.html:19 +#, fuzzy +msgid "Recently <br>returned to use" +msgstr "Wedi'u hadfer i'w defnyddio'n ddiweddar" + #: templates/web/emptyhomes/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:13 #: templates/web/fiksgatami/reports/index.html:13 msgid "Recently returned to use" msgstr "Wedi'u hadfer i'w defnyddio'n ddiweddar" -#: templates/web/default/index.html:62 +#: templates/web/default/index.html:61 templates/web/fixmystreet/index.html:72 msgid "Recently reported empty properties" msgstr "Eiddo gwag yr adroddwyd amdanynt yn ddiweddar" #: templates/web/default/report/new/notes.html:9 +#: templates/web/fixmystreet/report/new/notes.html:8 msgid "" "Remember that reportemptyhomes.com is primarily for reporting physical empty " "properties that can be returned to use. If your empty property is not " @@ -2153,7 +2489,7 @@ msgstr "" msgid "Remove flag" msgstr "" -#: templates/web/default/admin/report_edit.html:47 +#: templates/web/default/admin/report_edit.html:52 #: templates/web/default/admin/update_edit.html:48 msgid "Remove photo (can't be undone!)" msgstr "" @@ -2162,66 +2498,83 @@ msgstr "" msgid "Report Empty Homes" msgstr "Adrodd am Eiddo Gwag" -#: templates/web/default/footer.html:6 templates/web/emptyhomes/header.html:27 -#: templates/web/fiksgatami/footer.html:5 templates/web/reading/footer.html:6 +#: templates/web/bromley/footer.html:33 templates/web/default/footer.html:7 +#: templates/web/emptyhomes/header.html:27 +#: templates/web/fiksgatami/footer.html:5 +#: templates/web/fiksgatami/nn/footer.html:5 +#: templates/web/fixmystreet/footer.html:45 +#: templates/web/reading/footer.html:6 msgid "Report a property" msgstr "Rhoi gwybod am eiddo" -#: perllib/FixMyStreet/App/Controller/Rss.pm:274 +#: templates/web/fixmystreet/report/display.html:27 +#, fuzzy +msgid "Report abuse" +msgstr "Adroddiadau" + +#: templates/web/emptyhomes/index.html:37 +#, fuzzy +msgid "Report empty properties" +msgstr "Adrodd am eiddo gwag a gweld y rhain" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:281 #, fuzzy msgid "Report on %s" msgstr "Adroddiadau" -#: templates/web/default/index.html:15 +#: templates/web/default/index.html:15 templates/web/fixmystreet/index.html:28 msgid "Report and view empty properties" msgstr "Adrodd am eiddo gwag a gweld y rhain" -#: templates/web/default/my/my.html:74 +#: templates/web/default/my/my.html:74 templates/web/fixmystreet/my/my.html:77 #, fuzzy msgid "Reported %s" msgstr "Adroddiadau" -#: templates/web/default/my/my.html:72 +#: templates/web/default/my/my.html:72 templates/web/fixmystreet/my/my.html:75 #, fuzzy msgid "Reported %s, to %s" msgstr "Adroddwyd gan %s am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:490 +#: perllib/FixMyStreet/DB/Result/Problem.pm:504 #: templates/web/default/contact/index.html:45 +#: templates/web/fixmystreet/contact/index.html:46 msgid "Reported anonymously at %s" msgstr "Adroddwyd yn ddi-enw am %s" #: templates/web/default/admin/questionnaire.html:5 -#: templates/web/default/questionnaire/index.html:79 +#: templates/web/default/questionnaire/index.html:77 +#: templates/web/fixmystreet/questionnaire/index.html:71 msgid "Reported before" msgstr "Wedi adrodd o'r blaen" -#: perllib/FixMyStreet/DB/Result/Problem.pm:482 +#: perllib/FixMyStreet/DB/Result/Problem.pm:496 msgid "Reported by %s anonymously at %s" msgstr "Adroddwyd gan %s yn ddi-enw am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:513 +#: perllib/FixMyStreet/DB/Result/Problem.pm:527 #: templates/web/default/contact/index.html:47 +#: templates/web/fixmystreet/contact/index.html:48 msgid "Reported by %s at %s" msgstr "Adroddwyd gan %s am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:504 +#: perllib/FixMyStreet/DB/Result/Problem.pm:518 msgid "Reported by %s by %s at %s" msgstr "Adroddwyd gan %s trwy %s am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:478 +#: perllib/FixMyStreet/DB/Result/Problem.pm:492 msgid "Reported by %s in the %s category anonymously at %s" msgstr "Adroddwyd am hyn gan %s yn y categori %s yn ddi-enw, am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:498 +#: perllib/FixMyStreet/DB/Result/Problem.pm:512 msgid "Reported by %s in the %s category by %s at %s" msgstr "Adroddwyd gan %s yn y categori %s trwy %s am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:486 +#: perllib/FixMyStreet/DB/Result/Problem.pm:500 msgid "Reported in the %s category anonymously at %s" msgstr "Adroddiwyd yn y categori %s yn ddi-enw am %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:508 +#: perllib/FixMyStreet/DB/Result/Problem.pm:522 msgid "Reported in the %s category by %s at %s" msgstr "Adroddwyd yn y categori %s gan %s am %s" @@ -2229,10 +2582,14 @@ msgstr "Adroddwyd yn y categori %s gan %s am %s" #: templates/web/default/report/new/fill_in_details.html:0 #: templates/web/default/report/new/fill_in_details.html:3 #: templates/web/default/report/new/fill_in_details_form.html:1 +#: templates/web/fixmystreet/around/around_index.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details.html:0 +#: templates/web/fixmystreet/report/new/fill_in_details.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:2 msgid "Reporting an empty property" msgstr "Adrodd am eiddo gwag" -#: templates/web/default/around/display_location.html:94 +#: templates/web/default/around/display_location.html:93 msgid "Reports on and around the map" msgstr "Adroddiadau ar ac yng nghyffiniau'r map" @@ -2255,7 +2612,7 @@ msgstr "" msgid "Save changes" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:982 +#: perllib/FixMyStreet/App/Controller/Admin.pm:984 #, fuzzy msgid "Search Abuse" msgstr "Adroddiadau cryno" @@ -2264,14 +2621,14 @@ msgstr "Adroddiadau cryno" msgid "Search Abuse Table" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:978 +#: perllib/FixMyStreet/App/Controller/Admin.pm:980 #: templates/web/default/admin/list_flagged.html:1 #: templates/web/default/admin/search_reports.html:1 #, fuzzy msgid "Search Reports" msgstr "Adroddiadau cryno" -#: perllib/FixMyStreet/App/Controller/Admin.pm:981 +#: perllib/FixMyStreet/App/Controller/Admin.pm:983 #: templates/web/default/admin/search_users.html:1 #, fuzzy msgid "Search Users" @@ -2283,7 +2640,8 @@ msgstr "Adroddiadau cryno" msgid "Search:" msgstr "" -#: templates/web/default/alert/list.html:41 +#: templates/web/default/alert/list.html:39 +#: templates/web/fixmystreet/alert/_list.html:10 #, fuzzy msgid "" "Select which type of alert you'd like and click the button for an RSS feed, " @@ -2293,7 +2651,7 @@ msgstr "" "porthiant RSS,\n" "neu rhowch eich cyfeiriad e-bost i danysgrifio am hysbysiad e-bost." -#: perllib/FixMyStreet/DB/Result/Problem.pm:555 +#: perllib/FixMyStreet/DB/Result/Problem.pm:569 msgid "Sent to %s %s later" msgstr "Anfonwyd at %s %s yn ddiweddarach" @@ -2346,17 +2704,31 @@ msgstr "" "cat=20'>Gwybodaeth\n" "bellach am ein gwaith ar gartrefi gwag</a>.\n" -#: templates/web/default/report/display.html:216 +#: templates/web/default/report/display.html:213 #: templates/web/default/report/new/fill_in_details_form.html:210 +#: templates/web/fixmystreet/report/display.html:189 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:123 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:180 msgid "Show my name publicly" msgstr "" -#: templates/web/default/around/display_location.html:52 +#: templates/web/default/around/display_location.html:60 +#: templates/web/fixmystreet/around/display_location.html:60 +msgid "Show old" +msgstr "" + +#: templates/web/default/around/display_location.html:51 +#: templates/web/fixmystreet/around/display_location.html:52 msgid "Show pins" msgstr "Dangos pinnau" +#: templates/web/bromley/header.html:50 #: templates/web/default/auth/general.html:3 #: templates/web/default/auth/general.html:49 +#: templates/web/fixmystreet/auth/general.html:3 +#: templates/web/fixmystreet/auth/general.html:38 +#: templates/web/fixmystreet/auth/general.html:58 +#: templates/web/fixmystreet/header.html:50 msgid "Sign in" msgstr "" @@ -2365,31 +2737,37 @@ msgid "Sign in by email" msgstr "" #: templates/web/default/auth/general.html:1 +#: templates/web/fixmystreet/auth/general.html:1 msgid "Sign in or create an account" msgstr "" #: templates/web/default/auth/sign_out.html:1 -#: templates/web/default/header.html:35 -#: templates/web/emptyhomes/header.html:43 +#: templates/web/default/header.html:30 +#: templates/web/emptyhomes/header.html:41 #: templates/web/fiksgatami/header.html:22 +#: templates/web/fiksgatami/nn/header.html:22 +#: templates/web/fixmystreet/auth/sign_out.html:1 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:37 +#: templates/web/reading/header.html:33 msgid "Sign out" msgstr "" -#: templates/web/default/header.html:34 -#: templates/web/emptyhomes/header.html:42 +#: templates/web/default/header.html:29 +#: templates/web/emptyhomes/header.html:40 #: templates/web/fiksgatami/header.html:21 +#: templates/web/fiksgatami/nn/header.html:21 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:36 +#: templates/web/reading/header.html:32 msgid "Signed in as %s" msgstr "" #: templates/web/default/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 msgid "Some categories may require additional information." msgstr "" -#: templates/web/default/alert/index.html:31 +#: templates/web/default/alert/index.html:30 +#: templates/web/fixmystreet/alert/index.html:33 msgid "Some photos of recent reports" msgstr "Rhai ffotograffau o adroddiadau diweddar" @@ -2402,7 +2780,7 @@ msgstr "" msgid "Some unconfirmeds" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:517 +#: perllib/FixMyStreet/Cobrand/Default.pm:428 msgid "" "Sorry, that appears to be a Crown dependency postcode, which we don't cover." msgstr "" @@ -2411,18 +2789,20 @@ msgstr "" msgid "Sorry, there has been an error confirming your empty property." msgstr "Sori, bu gwall wrth gadarnhau eich eiddo gwag." -#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:52 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:147 +#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:53 #: perllib/FixMyStreet/Geocode/Google.pm:68 msgid "Sorry, we could not find that location." msgstr "Sori, ni fu modd i ni ddod o hyd i'r lleoliad hwnnw." -#: perllib/FixMyStreet/Geocode/Bing.pm:45 +#: perllib/FixMyStreet/Geocode/Bing.pm:46 #: perllib/FixMyStreet/Geocode/Google.pm:60 msgid "Sorry, we could not parse that location. Please try again." msgstr "" "Sori, ni fu modd i ni ddosrannu'r lleoliad hwnnw. Rhowch gynnig arall arni." #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "Source code" msgstr "" @@ -2443,23 +2823,35 @@ msgstr "" #: templates/web/default/admin/list_flagged.html:18 #: templates/web/default/admin/list_updates.html:6 #: templates/web/default/admin/search_reports.html:21 +#: templates/web/fixmystreet/report/display.html:77 #, fuzzy msgid "State" msgstr "Diweddariad:" -#: templates/web/default/admin/report_edit.html:21 +#: templates/web/default/admin/report_edit.html:17 #: templates/web/default/admin/update_edit.html:18 -#: templates/web/default/report/display.html:83 +#: templates/web/default/report/display.html:82 #, fuzzy msgid "State:" msgstr "Diweddariad:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:984 +#: perllib/FixMyStreet/App/Controller/Admin.pm:986 #: templates/web/default/admin/stats.html:1 #, fuzzy msgid "Stats" msgstr "Diweddariad:" +#: templates/web/default/report/updates.html:9 +#, fuzzy +msgid "Still open, via questionnaire, %s" +msgstr "Anfon yr holiadur" + +#: templates/web/fixmystreet/contact/index.html:79 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:58 +#, fuzzy +msgid "Subject" +msgstr "Pwnc:" + #: templates/web/default/admin/report_edit.html:13 #: templates/web/default/contact/index.html:83 #: templates/web/default/report/new/fill_in_details_form.html:52 @@ -2470,30 +2862,37 @@ msgstr "Pwnc:" #: templates/web/default/report/new/fill_in_details_form.html:114 #: templates/web/default/report/new/fill_in_details_form.html:154 #: templates/web/default/report/new/fill_in_details_form.html:176 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:134 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:195 msgid "Submit" msgstr "Anfon" -#: templates/web/default/admin/report_edit.html:50 +#: templates/web/default/admin/report_edit.html:55 #: templates/web/default/admin/update_edit.html:51 #: templates/web/default/admin/user_edit.html:20 #, fuzzy msgid "Submit changes" msgstr "Anfon" -#: templates/web/default/questionnaire/index.html:114 +#: templates/web/default/questionnaire/index.html:112 +#: templates/web/fixmystreet/questionnaire/index.html:105 msgid "Submit questionnaire" msgstr "Anfon yr holiadur" #: templates/web/default/alert/updates.html:17 #: templates/web/default/report/display.html:43 +#: templates/web/fixmystreet/alert/updates.html:23 +#: templates/web/fixmystreet/report/display.html:42 msgid "Subscribe" msgstr "Tanysgrifio" -#: templates/web/default/alert/list.html:128 +#: templates/web/default/alert/list.html:126 +#: templates/web/fixmystreet/alert/_list.html:88 msgid "Subscribe me to an email alert" msgstr "Dymunaf danysgrifio i rybuddion drwy e-bost" -#: perllib/FixMyStreet/App/Controller/Admin.pm:976 +#: perllib/FixMyStreet/App/Controller/Admin.pm:978 #: templates/web/default/admin/index.html:1 #, fuzzy msgid "Summary" @@ -2501,11 +2900,12 @@ msgstr "Adroddiadau cryno" #: templates/web/default/reports/index.html:1 #: templates/web/emptyhomes/reports/index.html:1 +#: templates/web/fiksgatami/nn/reports/index.html:1 #: templates/web/fiksgatami/reports/index.html:1 msgid "Summary reports" msgstr "Adroddiadau cryno" -#: perllib/FixMyStreet/App/Controller/Admin.pm:980 +#: perllib/FixMyStreet/App/Controller/Admin.pm:982 #: templates/web/default/admin/questionnaire.html:1 msgid "Survey Results" msgstr "" @@ -2514,7 +2914,7 @@ msgstr "" msgid "Text" msgstr "" -#: templates/web/default/admin/council_contacts.html:12 +#: templates/web/default/admin/council_contacts.html:14 msgid "Text only version" msgstr "" @@ -2582,7 +2982,8 @@ msgstr "" "helpu i \n" "ddatrys argyfwng tai gwag y DU." -#: templates/web/default/around/around_index.html:44 +#: templates/web/default/around/around_index.html:43 +#: templates/web/fixmystreet/around/around_index.html:46 msgid "" "Thanks for uploading your photo. We now need to locate your empty property, " "so please enter a nearby street name or postcode in the box below :" @@ -2604,7 +3005,7 @@ msgstr "" "i ni'ch holi chi, a ydych erioed wedi rhoi gwybod i'r cyngor am eiddo gwag " "cyn hyn?" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:839 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:856 msgid "" "That image doesn't appear to have uploaded correctly (%s), please try again." msgstr "" @@ -2612,6 +3013,7 @@ msgstr "" "rhowch gynnig arni eto." #: templates/web/default/alert/index.html:12 +#: templates/web/fixmystreet/alert/index.html:12 msgid "" "That location does not appear to be covered by a council, perhaps it is " "offshore - please try somewhere more specific." @@ -2625,12 +3027,12 @@ msgstr "" "Nid yw'n ymddangos bod y lleoliad hwnnw ym Mhrydain; rhowch gynnig arall " "arni." -#: perllib/FixMyStreet/Cobrand/Default.pm:510 +#: perllib/FixMyStreet/Cobrand/Default.pm:421 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:78 msgid "That postcode was not recognised, sorry." msgstr "Ni chafodd y cod post hwnnw ei gydnabod, sori." -#: perllib/FixMyStreet/App/Controller/Admin.pm:558 +#: perllib/FixMyStreet/App/Controller/Admin.pm:560 #, fuzzy msgid "That empty property will now be resent." msgstr "ni fydd eich eiddo gwag yn cael ei bostio" @@ -2639,7 +3041,8 @@ msgstr "ni fydd eich eiddo gwag yn cael ei bostio" msgid "That report has been removed from reportemptyhomes.com." msgstr "Mae'r adroddiad hwnnw wedi cael ei dynnu oddi ar reportemptyhomes.com" -#: templates/web/default/around/around_index.html:27 +#: templates/web/default/around/around_index.html:26 +#: templates/web/fixmystreet/around/around_index.html:29 #, fuzzy msgid "" "That spot does not appear to be covered by a council. If you have tried to " @@ -2694,19 +3097,37 @@ msgstr "" #: templates/web/default/auth/token.html:21 #: templates/web/default/email_sent.html:22 +#: templates/web/fixmystreet/auth/token.html:21 msgid "" "The confirmation email <strong>may</strong> take a few minutes to arrive " "— <em>please</em> be patient." msgstr "" -#: templates/web/default/questionnaire/index.html:51 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:3 +msgid "" +"The council won’t be able to help unless you leave as much\n" +"detail as you can. Please describe the exact location of the empty property " +"(e.g. on a\n" +"wall), what it is, how long it has been there, a description (and a photo " +"of\n" +"the empty property if you have one), etc." +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:43 +#, fuzzy +msgid "" +"The details of your empty property are available from the other tab above." +msgstr "Mae manylion eich eiddo gwag ar gael ar ochr dde'r dudalen hon." + +#: templates/web/default/questionnaire/index.html:49 msgid "" "The details of your empty property are available on the right hand side of " "this page." msgstr "Mae manylion eich eiddo gwag ar gael ar ochr dde'r dudalen hon." -#: perllib/FixMyStreet/App/Controller/Reports.pm:46 -#: perllib/FixMyStreet/App/Controller/Reports.pm:73 +#: perllib/FixMyStreet/App/Controller/Reports.pm:44 +#: perllib/FixMyStreet/App/Controller/Reports.pm:71 #, fuzzy msgid "The error was: %s" msgstr "Testun y gwall oedd:" @@ -2796,6 +3217,8 @@ msgstr "" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:16 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:16 msgid "The passwords do not match" msgstr "" @@ -2804,14 +3227,15 @@ msgstr "" msgid "The requested URL '%s' was not found on this server" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1034 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1179 -#: perllib/FixMyStreet/App/Controller/Admin.pm:538 -#: perllib/FixMyStreet/App/Controller/Admin.pm:701 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1036 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1206 +#: perllib/FixMyStreet/App/Controller/Admin.pm:540 +#: perllib/FixMyStreet/App/Controller/Admin.pm:703 msgid "The requested URL was not found on this server." msgstr "" -#: templates/web/default/alert/list.html:47 +#: templates/web/default/alert/list.html:45 +#: templates/web/fixmystreet/alert/_list.html:16 msgid "The simplest alert is our geographic one:" msgstr "Yr hysbysiad symlaf yw ein hysbysiad daearyddol:" @@ -2819,12 +3243,16 @@ msgstr "Yr hysbysiad symlaf yw ein hysbysiad daearyddol:" #: templates/web/default/report/new/councils_text_some.html:10 #: templates/web/default/report/new/councils_text_some.html:11 #: templates/web/default/report/new/fill_in_details_form.html:17 +#: templates/web/fixmystreet/report/new/councils_text_all.html:18 +#: templates/web/fixmystreet/report/new/councils_text_some.html:10 +#: templates/web/fixmystreet/report/new/councils_text_some.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:12 msgid "" "The subject and details of the empty property will be public, plus your name " "if you give us permission." msgstr "" -#: bin/send-reports:78 +#: bin/send-reports:79 msgid "" "The user could not locate the empty property on a map, but to see the area " "around the location they entered" @@ -2832,29 +3260,29 @@ msgstr "" "Ni allai'r defnyddiwr leoli'r eiddo gwag ar fap, ond i weld yr ardal o " "gwmpas y lleoliad a gofnodwyd ganddynt " -#: perllib/FixMyStreet/App/Controller/Reports.pm:72 +#: perllib/FixMyStreet/App/Controller/Reports.pm:70 msgid "" "There was an empty property showing the All Reports page. Please try again " "later." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:641 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:656 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:125 #: templates/web/default/auth/general.html:23 +#: templates/web/fixmystreet/auth/general.html:24 msgid "" -"There was an empty property with your email/password combination. Passwords " -"and user accounts are a brand <strong>new</strong> service, so you probably " -"do not have one yet – please fill in the right hand side of this form " -"to get one." +"There was an empty property with your email/password combination. If you " +"cannot remember your password, or do not have one, please fill in the ‘" +"sign in by email’ section of the form." msgstr "" -#: perllib/FixMyStreet/App/Controller/Alert.pm:354 +#: perllib/FixMyStreet/App/Controller/Alert.pm:351 msgid "" "There was an empty property with your email/password combination. Please try " "again." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:215 #, fuzzy msgid "There was an empty property with your update. Please try again." msgstr "Cafwyd anhawsterau gyda'ch diweddariad. Gweler isod" @@ -2863,7 +3291,7 @@ msgstr "Cafwyd anhawsterau gyda'ch diweddariad. Gweler isod" msgid "There were problems with your report. Please see below." msgstr "Cafwyd anhawsterau gyda'ch adroddiad. Gweler isod." -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:241 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:242 msgid "There were problems with your update. Please see below." msgstr "Cafwyd anhawsterau gyda'ch diweddariad. Gweler isod" @@ -2873,7 +3301,7 @@ msgid "" "change without warnings in the future." msgstr "" -#: bin/send-reports:185 +#: bin/send-reports:186 msgid "" "This email has been sent to both councils covering the location of the empty " "property, as the user did not categorise it; please ignore it if you're not " @@ -2881,14 +3309,14 @@ msgid "" "empty property this is so we can add it to our system." msgstr "" -#: bin/send-reports:188 +#: bin/send-reports:189 msgid "" "This email has been sent to several councils covering the location of the " "empty property, as the category selected is provided for all of them; please " "ignore it if you're not the correct council to deal with the issue." msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:761 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 msgid "This information is required" msgstr "" @@ -2899,16 +3327,17 @@ msgid "" "will be periodically deleted." msgstr "Safle datblygwr yw hwn; gallai pethau dorri unrhyw bryd." -#: templates/web/default/reports/council.html:65 +#: templates/web/emptyhomes/reports/council.html:58 msgid "This is a summary of all reports for one %s." msgstr "Dyma grynodeb o'r holl adroddiadau ar gyfer y %s." -#: templates/web/default/reports/council.html:67 +#: templates/web/emptyhomes/reports/council.html:60 msgid "This is a summary of all reports for this %s." msgstr "" -#: templates/web/default/reports/index.html:4 +#: templates/web/default/reports/index.html:7 #: templates/web/emptyhomes/reports/index.html:4 +#: templates/web/fiksgatami/nn/reports/index.html:4 #: templates/web/fiksgatami/reports/index.html:4 msgid "" "This is a summary of all reports on this site; select a particular council " @@ -2917,46 +3346,48 @@ msgstr "" "Dyma grynodeb o'r holl adroddiadau ar y safle hwn; dewiswch gyngor penodol i " "weld yr adroddiadau a anfonwyd ato." -#: perllib/FixMyStreet/Cobrand/Default.pm:926 +#: perllib/FixMyStreet/Cobrand/Default.pm:874 #, fuzzy msgid "This empty property has been closed" msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: perllib/FixMyStreet/Cobrand/Default.pm:922 +#: perllib/FixMyStreet/Cobrand/Default.pm:870 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 -#: templates/web/default/report/display.html:101 +#: templates/web/default/report/display.html:100 +#: templates/web/fixmystreet/report/display.html:95 msgid "This empty property has been returned to use" msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: templates/web/default/report/display.html:96 +#: templates/web/default/report/display.html:95 +#: templates/web/fixmystreet/report/display.html:89 #, fuzzy msgid "This empty property has not been returned to use" msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: perllib/FixMyStreet/Cobrand/Default.pm:931 +#: perllib/FixMyStreet/Cobrand/Default.pm:879 #, fuzzy msgid "This empty property is in progress" msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: perllib/FixMyStreet/Cobrand/Default.pm:918 +#: perllib/FixMyStreet/Cobrand/Default.pm:866 msgid "This empty property is old and of unknown status." msgstr "Mae'r eiddo gwag hwn yn hen ac nid yw ei statws yn hysbys." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 #, fuzzy msgid "This report is currently marked as closed." msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 #, fuzzy msgid "This report is currently marked as returned to use." msgstr "Mae'r eiddo gwag hwn wedi cael ei adfer i'w ddefnyddio" -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:83 msgid "This report is currently marked as open." msgstr "" -#: bin/send-reports:71 +#: bin/send-reports:72 msgid "" "This web page also contains a photo of the empty property, provided by the " "user." @@ -2964,7 +3395,7 @@ msgstr "" "Mae'r dudalen we hon hefyd yn cynnwys ffotograff o'r eiddo gwag, wedi'i " "ddarparu gan y defnyddiwr." -#: perllib/FixMyStreet/App/Controller/Admin.pm:979 +#: perllib/FixMyStreet/App/Controller/Admin.pm:981 #: templates/web/default/admin/timeline.html:1 msgid "Timeline" msgstr "" @@ -2974,7 +3405,16 @@ msgstr "" msgid "Title" msgstr "" -#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:69 +#, fuzzy +msgid "" +"To <strong>report an empty property</strong>, click on the map at the " +"correct location." +msgstr "" +"Er mwyn rhoi gwybod am eiddo gwag\n" +" <strong>cliciwch ar y map</strong> wrth y lleoliad cywir." + +#: templates/web/emptyhomes/around/display_location.html:35 #, fuzzy msgid "" "To <strong>report an empty property</strong>, simply click on the map at the " @@ -2983,6 +3423,17 @@ msgstr "" "Er mwyn rhoi gwybod am eiddo gwag\n" " <strong>cliciwch ar y map</strong> wrth y lleoliad cywir." +#: templates/web/fixmystreet/alert/index.html:19 +#, fuzzy +msgid "" +"To find out what local alerts we have in your area, council or ward, please " +"enter your GB\n" +" postcode or street name and area" +msgstr "" +"I gael gwybod pa hysbysiadau lleol sydd gennym yn eich ardal, cyngor neu " +"ward chi,\n" +"cofnodwch eich cod post Prydeinig neu enw stryd ac ardal:" + #: templates/web/default/alert/index.html:21 msgid "" "To find out what local alerts we have in your area, council or ward, please " @@ -2993,7 +3444,7 @@ msgstr "" "ward chi,\n" "cofnodwch eich cod post Prydeinig neu enw stryd ac ardal:" -#: bin/send-reports:77 +#: bin/send-reports:78 msgid "To view a map of the precise location of this issue" msgstr "Gweld map o union leoliad y broblem hon" @@ -3004,17 +3455,21 @@ msgstr "Gweld map o union leoliad y broblem hon" msgid "Total" msgstr "" -#: perllib/FixMyStreet/App/Controller/Reports.pm:45 +#: perllib/FixMyStreet/App/Controller/Reports.pm:43 msgid "Unable to look up areas in MaPit. Please try again later." msgstr "" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 msgid "Unconfirmed" msgstr "" -#: perllib/FixMyStreet/App/Controller/Rss.pm:163 +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:16 +msgid "Unknown" +msgstr "" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:164 #, fuzzy msgid "Unknown alert type" msgstr "ID eiddo gwag anhysbys" @@ -3023,16 +3478,23 @@ msgstr "ID eiddo gwag anhysbys" msgid "Unknown empty property ID" msgstr "ID eiddo gwag anhysbys" +#: templates/web/fixmystreet/report/display.html:70 +#, fuzzy +msgid "Update" +msgstr "Diweddariad:" + #: templates/web/default/admin/timeline.html:35 msgid "Update %s created for empty property %d; by %s" msgstr "" #: templates/web/default/contact/index.html:21 +#: templates/web/fixmystreet/contact/index.html:22 #, fuzzy msgid "Update below added anonymously at %s" msgstr "Adroddwyd yn ddi-enw am %s" #: templates/web/default/contact/index.html:23 +#: templates/web/fixmystreet/contact/index.html:24 #, fuzzy msgid "Update below added by %s at %s" msgstr "Adroddwyd gan %s trwy %s am %s" @@ -3064,24 +3526,25 @@ msgstr "" msgid "Update reopened empty property" msgstr "Sut i roi gwybod am eiddo gwag" -#: templates/web/default/admin/council_contacts.html:53 +#: templates/web/default/admin/council_contacts.html:58 #, fuzzy msgid "Update statuses" msgstr "Diweddariadau" -#: templates/web/default/report/display.html:77 +#: templates/web/default/report/display.html:76 msgid "Update:" msgstr "Diweddariad:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:647 -#: perllib/FixMyStreet/App/Controller/Admin.pm:764 -#: perllib/FixMyStreet/App/Controller/Admin.pm:844 +#: perllib/FixMyStreet/App/Controller/Admin.pm:649 +#: perllib/FixMyStreet/App/Controller/Admin.pm:766 +#: perllib/FixMyStreet/App/Controller/Admin.pm:846 #, fuzzy msgid "Updated!" msgstr "Diweddariadau" #: templates/web/default/admin/list_updates.html:1 -#: templates/web/default/report/updates.html:4 +#: templates/web/default/report/update.html:3 +#: templates/web/fixmystreet/report/update.html:3 msgid "Updates" msgstr "Diweddariadau" @@ -3091,14 +3554,16 @@ msgstr "Diweddariadau am {{title}}" #: templates/web/default/report/display.html:0 #: templates/web/default/report/display.html:7 +#: templates/web/fixmystreet/report/display.html:0 +#: templates/web/fixmystreet/report/display.html:7 msgid "Updates to this empty property, reportemptyhomes.com" msgstr "Diweddariadau i'r eiddo gwag hwn, reportemptyhomes.com" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1137 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1139 msgid "User flag removed" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1109 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1111 msgid "User flagged" msgstr "" @@ -3106,8 +3571,8 @@ msgstr "" msgid "Users" msgstr "" -#: perllib/FixMyStreet/App/Controller/Admin.pm:304 -#: perllib/FixMyStreet/App/Controller/Admin.pm:334 +#: perllib/FixMyStreet/App/Controller/Admin.pm:306 +#: perllib/FixMyStreet/App/Controller/Admin.pm:336 #, fuzzy msgid "Values updated" msgstr "Anfonwch ddiweddariadau ataf i drwy'r e-bost" @@ -3124,25 +3589,37 @@ msgstr "Gweld eich adroddiad" #: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:33 +#: templates/web/emptyhomes/around/display_location.html:0 +#: templates/web/emptyhomes/around/display_location.html:16 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:33 msgid "Viewing a location" msgstr "Gweld lleoliad" #: templates/web/default/report/display.html:0 +#: templates/web/emptyhomes/report/display.html:1 +#: templates/web/emptyhomes/report/display.html:2 +#: templates/web/fixmystreet/report/display.html:0 msgid "Viewing an empty property" msgstr "Gweld eiddo gwag" -#: templates/web/default/reports/council.html:22 +#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:74 +#: templates/web/default/reports/council.html:86 +#: templates/web/emptyhomes/reports/council.html:18 msgid "Wards of this council" msgstr "" -#: perllib/FixMyStreet/Cobrand/Default.pm:521 -#: perllib/FixMyStreet/Geocode/Bing.pm:47 +#: perllib/FixMyStreet/Cobrand/Default.pm:432 +#: perllib/FixMyStreet/Geocode/Bing.pm:48 #: perllib/FixMyStreet/Geocode/Google.pm:63 msgid "We do not currently cover Northern Ireland, I'm afraid." msgstr "" #: templates/web/default/alert/choose.html:6 -#: templates/web/default/around/around_index.html:33 +#: templates/web/default/around/around_index.html:32 +#: templates/web/fixmystreet/alert/choose.html:6 +#: templates/web/fixmystreet/around/around_index.html:35 msgid "" "We found more than one match for that location. We show up to ten matches, " "please try a different search if yours is not here." @@ -3152,6 +3629,7 @@ msgstr "" "lleoliad chi yno." #: templates/web/default/auth/token.html:19 +#: templates/web/fixmystreet/auth/token.html:19 msgid "We have sent you an email containing a link to confirm your account." msgstr "" @@ -3162,14 +3640,26 @@ msgid "" "property you reported." msgstr "" -#: bin/send-reports:195 +#: templates/web/fixmystreet/report/display.html:158 +#, fuzzy +msgid "We never show your email" +msgstr "(nid ydym byth yn dangos eich cyfeiriad e-bost na'ch rhif ffôn)" + +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:127 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:184 +#, fuzzy +msgid "We never show your email address or phone number." +msgstr "(nid ydym byth yn dangos eich cyfeiriad e-bost na'ch rhif ffôn)" + +#: bin/send-reports:196 msgid "" "We realise this empty property might be the responsibility of %s; however, " "we don't currently have any contact details for them. If you know of an " "appropriate contact address, please do get in touch." msgstr "" -#: templates/web/default/index.html:46 +#: templates/web/default/index.html:45 templates/web/emptyhomes/index.html:61 +#: templates/web/fixmystreet/index.html:56 msgid "" "The details will be sent directly to the right person in the local council " "for them to take action" @@ -3178,6 +3668,7 @@ msgstr "" "lleol er mwyn iddynt weithredu" #: templates/web/default/report/new/notes.html:5 +#: templates/web/fixmystreet/report/new/notes.html:4 msgid "" "We will only use your personal information in accordance with our <a href=\"/" "faq#privacy\">privacy policy.</a>" @@ -3203,7 +3694,7 @@ msgstr "" "Byddai'n dda gennym glywed eich barn am y wefan hon. Llenwch y ffurflen, neu " "anfonwch neges e-bost at <a href='mailto:%s'>%s</a>:" -#: templates/web/default/admin/council_contacts.html:32 +#: templates/web/default/admin/council_contacts.html:37 #: templates/web/default/admin/council_edit.html:41 msgid "When edited" msgstr "" @@ -3213,7 +3704,7 @@ msgstr "" msgid "When sent" msgstr "" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:523 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:538 msgid "Whole block of empty flats" msgstr "Bloc cyfan o fflatiau gwag" @@ -3224,13 +3715,28 @@ msgid "" "term is the administration ID provided by <a href=\"%s\">MaPit</a>." msgstr "" -#: templates/web/default/questionnaire/index.html:104 +#: templates/web/fixmystreet/footer.html:23 +msgid "" +"Would you like better integration with reportemptyhomes.com? <a href=\"/for-" +"councils\">Find out about reportemptyhomes.com for councils</a>." +msgstr "" + +#: templates/web/fixmystreet/footer.html:19 +msgid "" +"Would you like to contribute to reportemptyhomes.com? Our code is open " +"source and <a href=\"http://github.com/mysociety/fixmystreet\">available on " +"GitHub</a>." +msgstr "" + +#: templates/web/default/questionnaire/index.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:96 msgid "" "Would you like to receive another questionnaire in 4 weeks, reminding you to " "check the status?" msgstr "" #: templates/web/default/report/new/notes.html:8 +#: templates/web/fixmystreet/report/new/notes.html:7 msgid "" "Writing your message entirely in block capitals makes it hard to read, as " "does a lack of punctuation." @@ -3240,24 +3746,33 @@ msgstr "" msgid "Year" msgstr "" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:5 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:27 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/search_users.html:23 #: templates/web/default/admin/update_edit.html:15 #: templates/web/default/questionnaire/creator_fixed.html:14 -#: templates/web/default/questionnaire/index.html:107 -#: templates/web/default/questionnaire/index.html:68 +#: templates/web/default/questionnaire/index.html:105 +#: templates/web/default/questionnaire/index.html:66 +#: templates/web/fixmystreet/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:99 msgid "Yes" msgstr "Ydw" +#: templates/web/fixmystreet/report/display.html:138 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:153 +#, fuzzy +msgid "Yes I have a password" +msgstr "Adrodd am eiddo gwag a gweld y rhain" + #: templates/web/default/contact/index.html:37 +#: templates/web/fixmystreet/contact/index.html:38 msgid "" "You are reporting the following empty property report for being abusive, " "containing personal information, or similar:" @@ -3266,12 +3781,13 @@ msgstr "" "sarhaus, neu'n cynnwys gwybodaeth bersonol, neu debyg:" #: templates/web/default/contact/index.html:15 +#: templates/web/fixmystreet/contact/index.html:16 msgid "" "You are reporting the following update for being abusive, containing " "personal information, or similar:" msgstr "" -#: templates/web/default/reports/council.html:71 +#: templates/web/emptyhomes/reports/council.html:64 #, fuzzy msgid "" "You can <a href=\"%s\">view all reports for the council</a> or <a href=\"/" @@ -3280,7 +3796,7 @@ msgstr "" "Gallwch <a href=\"%s\">weld llai o fanylion</a> neu fynd yn ôl a <a href=\"/" "reports\">dangos pob cyngor</a>." -#: templates/web/default/reports/council.html:73 +#: templates/web/emptyhomes/reports/council.html:66 #, fuzzy msgid "You can <a href=\"/reports\">show all councils</a>." msgstr "Gallwch <a href=\"%s\">weld mwy o fanylion</a>." @@ -3289,6 +3805,10 @@ msgstr "Gallwch <a href=\"%s\">weld mwy o fanylion</a>." #: templates/web/default/report/new/councils_text_none.html:16 #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:22 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:22 msgid "" "You can help us by finding a contact email address for local empty " "properties for %s and emailing it to us at <a href='mailto:%s'>%s</a>." @@ -3300,30 +3820,36 @@ msgid "" "<a href='%s'>get in touch</a>, or <a href='%s'>view your empty property</" "a>.\n" msgstr "" -"Rydych eisoes wedi ateb yr holiadur hwn. Os oes gennych gwestiwn, <a href='%" -"s'>cysylltwch â ni</a>, neu ewch i <a href='%s'>weld eich eiddo gwag</a>.\n" +"Rydych eisoes wedi ateb yr holiadur hwn. Os oes gennych gwestiwn, <a " +"href='%s'>cysylltwch â ni</a>, neu ewch i <a href='%s'>weld eich eiddo gwag</" +"a>.\n" -#: templates/web/default/questionnaire/index.html:94 +#: templates/web/default/questionnaire/index.html:92 #: templates/web/default/report/new/fill_in_details_form.html:93 +#: templates/web/fixmystreet/questionnaire/index.html:87 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:101 msgid "" "You have already attached a photo to this report, attaching another one will " "replace it." msgstr "" -#: templates/web/default/report/display.html:112 +#: templates/web/default/report/display.html:111 +#: templates/web/fixmystreet/report/display.html:105 msgid "" "You have already attached a photo to this update, attaching another one will " "replace it." msgstr "" #: templates/web/default/auth/sign_out.html:3 +#: templates/web/fixmystreet/auth/sign_out.html:3 msgid "You have been signed out" msgstr "" #: templates/web/default/report/new/fill_in_details_form.html:7 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:27 #, fuzzy msgid "" -"You have located the empty property at the point marked with a purple pin on " +"You have located the empty property at the point marked with a green pin on " "the map. If this is not the correct location, simply click on the map again. " msgstr "" "Rydych wedi gosod lleoliad yr eiddo gwag wrth y pwynt sy'n cael ei ddangos " @@ -3357,7 +3883,7 @@ msgstr "Rydych wedi dileu'ch hysbysiad yn llwyddiannus." msgid "You have successfully deleted your alert." msgstr "Rydych wedi dileu'ch hysbysiad yn llwyddiannus." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:647 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:662 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:131 #, fuzzy msgid "" @@ -3376,40 +3902,89 @@ msgid "You really want to resend?" msgstr "" #: templates/web/default/my/my.html:0 templates/web/default/my/my.html:14 -#: templates/web/default/my/my.html:3 +#: templates/web/default/my/my.html:3 templates/web/fixmystreet/my/my.html:0 +#: templates/web/fixmystreet/my/my.html:14 +#: templates/web/fixmystreet/my/my.html:3 #, fuzzy msgid "Your Reports" msgstr "Adroddiadau" +#: templates/web/fixmystreet/alert/_list.html:85 +#: templates/web/fixmystreet/alert/updates.html:19 +#: templates/web/fixmystreet/alert/updates.html:22 +#: templates/web/fixmystreet/contact/index.html:72 +#: templates/web/fixmystreet/report/display.html:39 +#: templates/web/fixmystreet/report/display.html:41 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:139 +#, fuzzy +msgid "Your email" +msgstr "Eich cyfeiriad e-bost:" + +#: templates/web/fixmystreet/auth/general.html:26 +#: templates/web/fixmystreet/report/display.html:129 +#, fuzzy +msgid "Your email address" +msgstr "Eich cyfeiriad e-bost:" + #: templates/web/default/auth/general.html:27 #, fuzzy msgid "Your email address:" msgstr "Eich cyfeiriad e-bost:" -#: templates/web/default/alert/list.html:122 -#: templates/web/default/report/display.html:134 +#: templates/web/default/alert/list.html:120 +#: templates/web/default/report/display.html:133 #: templates/web/default/report/new/fill_in_details_form.html:124 msgid "Your email:" msgstr "Eich cyfeiriad e-bost:" +#: templates/web/fixmystreet/auth/general.html:53 +#: templates/web/fixmystreet/contact/index.html:65 +#: templates/web/fixmystreet/report/display.html:185 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:118 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:175 +#, fuzzy +msgid "Your name" +msgstr "Eich enw:" + #: templates/web/default/auth/general.html:59 #: templates/web/default/contact/index.html:68 -#: templates/web/default/report/display.html:210 +#: templates/web/default/report/display.html:207 #: templates/web/default/report/new/fill_in_details_form.html:203 msgid "Your name:" msgstr "Eich enw:" +#: templates/web/fixmystreet/auth/general.html:37 +#: templates/web/fixmystreet/report/display.html:143 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:158 +#, fuzzy +msgid "Your password" +msgstr "Adroddiadau" + #: templates/web/default/auth/change_password.html:6 +#: templates/web/fixmystreet/auth/change_password.html:6 msgid "Your password has been changed" msgstr "" -#: templates/web/default/footer.html:7 templates/web/fiksgatami/footer.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:131 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:189 +msgid "Your phone number" +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:16 +#, fuzzy +msgid "Your report" +msgstr "Adroddiadau" + +#: templates/web/bromley/footer.html:35 templates/web/default/footer.html:9 +#: templates/web/fiksgatami/footer.html:6 +#: templates/web/fiksgatami/nn/footer.html:6 +#: templates/web/fixmystreet/footer.html:47 #: templates/web/reading/footer.html:7 #, fuzzy msgid "Your reports" msgstr "Adroddiadau" -#: templates/web/default/my/my.html:45 +#: templates/web/default/my/my.html:45 templates/web/fixmystreet/my/my.html:45 #, fuzzy msgid "Your updates" msgstr "Adroddiadau" @@ -3424,6 +3999,8 @@ msgstr "" #: templates/web/default/reports/council.html:6 #: templates/web/default/reports/council.html:7 +#: templates/web/emptyhomes/reports/council.html:6 +#: templates/web/emptyhomes/reports/council.html:7 msgid "council" msgstr "cyngor" @@ -3431,6 +4008,11 @@ msgstr "cyngor" msgid "didn't use map" msgstr "" +#: templates/web/fixmystreet/alert/index.html:24 +#: templates/web/fixmystreet/index.html:41 +msgid "e.g. ‘%s’ or ‘%s’" +msgstr "" + #: templates/web/default/admin/index.html:15 msgid "from %d different users" msgstr "" @@ -3439,11 +4021,11 @@ msgstr "" msgid "less than a minute" msgstr "llai na munud" -#: templates/web/default/report/updates.html:18 +#: templates/web/default/report/updates.html:24 msgid "marked as %s" msgstr "" -#: templates/web/default/report/updates.html:16 +#: templates/web/default/report/updates.html:22 msgid "marked as returned to use" msgstr "cofnodwyd bod hyn wedi'i adfer i'w ddefnyddio" @@ -3453,7 +4035,8 @@ msgstr "cofnodwyd bod hyn wedi'i adfer i'w ddefnyddio" msgid "n/a" msgstr "" -#: templates/web/default/alert/list.html:116 +#: templates/web/default/alert/list.html:114 +#: templates/web/fixmystreet/alert/_list.html:81 msgid "or" msgstr "neu" @@ -3465,22 +4048,29 @@ msgstr "" msgid "other areas:" msgstr "" -#: templates/web/default/report/updates.html:17 +#: templates/web/default/report/updates.html:23 msgid "reopened" msgstr "wedi'i ailagor" +#: templates/web/bromley/header.html:47 +#: templates/web/fixmystreet/header.html:47 +msgid "sign out" +msgstr "" + #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:14 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:9 #, fuzzy msgid "the local council" msgstr "Ni roddwyd gwybod i'r cyngor am hyn" -#: perllib/FixMyStreet/DB/Result/Problem.pm:520 +#: perllib/FixMyStreet/DB/Result/Problem.pm:534 msgid "the map was not used so pin location may be inaccurate" msgstr "" "ni ddefnyddiwyd y map felly mae'n bosibl na fydd lleoliad y pin yn gywir" -#: bin/send-reports:176 +#: bin/send-reports:177 #, fuzzy msgid "this type of local empty property" msgstr "Anfonwch fanylion eiddo gwag lleol newydd ataf i drwy'r e-bost" @@ -3504,6 +4094,8 @@ msgstr "Adroddiadau hŷn o eiddo gwag" #: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:3 +#: templates/web/emptyhomes/reports/council.html:0 +#: templates/web/emptyhomes/reports/council.html:3 msgid "ward" msgstr "" @@ -3540,14 +4132,14 @@ msgstr "ni fydd eich eiddo gwag yn cael ei bostio" msgid "your update will not be posted" msgstr "ni fydd eich diweddariad yn cael ei bostio" -#: templates/web/default/front/stats.html:17 +#: templates/web/emptyhomes/front/stats.html:17 #, perl-format msgid "<big>%s</big> report recently" msgid_plural "<big>%s</big> reports recently" msgstr[0] "<big>%s</big> adroddiad yn ddiweddar" msgstr[1] "<big>%s</big> o adroddiadau yn ddiweddar" -#: templates/web/default/report/new/councils_text_none.html:5 +#: templates/web/emptyhomes/report/new/councils_text_none.html:3 #, perl-format msgid "We do not yet have details for the council that covers this location." msgid_plural "" @@ -3555,7 +4147,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: templates/web/default/front/stats.html:12 +#: templates/web/emptyhomes/front/stats.html:12 #, perl-format msgid "<big>%s</big> report in past week" msgid_plural "<big>%s</big> reports in past week" @@ -3576,7 +4168,7 @@ msgid_plural "<big>%s</big> updates on reports" msgstr[0] "<big>%s</big> diweddariad ar adroddiadau" msgstr[1] "<big>%s</big> diweddariad ar adroddiadau" -#: templates/web/default/report/new/councils_text_some.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:14 #, perl-format msgid "" "We do <strong>not</strong> yet have details for the other council that " @@ -3587,6 +4179,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" +#, fuzzy +#~ msgid "<strong>Yes</strong>, I have a password" +#~ msgstr "Adrodd am eiddo gwag a gweld y rhain" + +#, fuzzy +#~ msgid "<strong>Yes</strong>, I have a password:" +#~ msgstr "Adrodd am eiddo gwag a gweld y rhain" + +#~ msgid "" +#~ "<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" " +#~ "height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org" +#~ "\"><span id=\"logoie\"></span></a>" +#~ msgstr "" +#~ "<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" " +#~ "height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org" +#~ "\"><span id=\"logoie\"></span></a>" + +#~ msgid "Hide stale reports" +#~ msgstr "Cuddio hen adroddiadau " + +#~ msgid "Include stale reports" +#~ msgstr "Cynnwys hen adroddiadau" + +#~ msgid "Old returned to use" +#~ msgstr "Hen wedi'i adfer i'w ddefnyddio" + +#~ msgid "Old empty properties, state unknown" +#~ msgstr "Eiddo gwag hen, nid yw eu cyflwr yn hysbys" + #~ msgid "reportemptyhomes.com updates" #~ msgstr "Diweddariadau i reportemptyhomes.com" @@ -3707,9 +4328,6 @@ msgstr[1] "" #~ msgid "We could not validate that alert." #~ msgstr "Ni allem ddilysu'r hysbysiad hwnnw." -#~ msgid "Please give your name" -#~ msgstr "Rhowch eich enw" - #~ msgid "Please give a subject" #~ msgstr "Rhowch destun" diff --git a/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po b/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po index ee61ebdae..8b55f62c6 100644 --- a/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po +++ b/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: FixMyStreet\n" "Report-Msgid-Bugs-To: matthew@mysociety.org\n" -"POT-Creation-Date: 2011-10-21 15:56+0100\n" +"POT-Creation-Date: 2012-03-28 19:23+0100\n" "PO-Revision-Date: 2011-08-29 10:26MET\n" "Last-Translator: Petter Reinholdtsen <pere@hungry.com>\n" "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: KBabel 1.11.4\n" -#: bin/send-reports:183 perllib/FixMyStreet/DB/Result/Problem.pm:535 +#: bin/send-reports:184 perllib/FixMyStreet/DB/Result/Problem.pm:549 msgid " and " msgstr " og " @@ -35,7 +36,14 @@ msgstr " og <strong>vi sender det nå til administrasjonen</strong>" #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:23 #: templates/web/default/report/new/councils_text_some.html:5 -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:15 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:23 +#: templates/web/fixmystreet/report/new/councils_text_some.html:5 msgid " or " msgstr " eller " @@ -97,24 +105,26 @@ msgstr "%d uker" #: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:14 +#: templates/web/emptyhomes/reports/council.html:11 +#: templates/web/emptyhomes/reports/council.html:13 msgid "%s - Summary reports" msgstr "%s - oppsummeringsrapporter" -#: perllib/FixMyStreet/Cobrand/Default.pm:844 -#: perllib/FixMyStreet/Cobrand/Default.pm:858 +#: perllib/FixMyStreet/Cobrand/Default.pm:792 +#: perllib/FixMyStreet/Cobrand/Default.pm:806 msgid "%s ward, %s" msgstr "%s bydel, %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:466 +#: perllib/FixMyStreet/DB/Result/Problem.pm:480 msgid "%s, reported anonymously at %s" msgstr "%s, rapportert anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:468 +#: perllib/FixMyStreet/DB/Result/Problem.pm:482 msgid "%s, reported by %s at %s" msgstr "%s, rapportert av %s %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:875 -#: perllib/FixMyStreet/Cobrand/Default.pm:889 +#: perllib/FixMyStreet/Cobrand/Default.pm:823 +#: perllib/FixMyStreet/Cobrand/Default.pm:837 msgid "%s, within %s ward" msgstr "%s, innefor bydel %s" @@ -130,24 +140,31 @@ msgstr "(Ingen grunn til bekymring — %s)" msgid "(Email in abuse table)" msgstr "(Epost i misbrukstabellen)" -#: templates/web/default/alert/list.html:53 +#: templates/web/default/alert/list.html:51 +#: templates/web/fixmystreet/alert/_list.html:24 msgid "(a default distance which covers roughly 200,000 people)" msgstr "(en standardavstand som dekker en befolkning på omtrent 200 000)" -#: templates/web/default/alert/list.html:58 +#: templates/web/default/alert/list.html:56 +#: templates/web/fixmystreet/alert/_list.html:28 msgid "(alternatively the RSS feed can be customised, within" msgstr "(alternativt kan RSS-strømmen tilpasses, innenfor" #: templates/web/default/around/around_map_list_items.html:10 #: templates/web/default/around/on_map_list_items.html:7 +#: templates/web/default/reports/council.html:134 +#: templates/web/fixmystreet/around/around_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:9 msgid "(fixed)" msgstr "(løst)" #: templates/web/default/index.html:12 templates/web/default/index.html:8 +#: templates/web/fixmystreet/index.html:30 msgid "(like graffiti, fly tipping, broken paving slabs, or street lighting)" msgstr "(som tagging, søppel, hull i veien, eller ødelagte gatelys)" -#: templates/web/default/reports/council.html:133 +#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:152 msgid "(not sent to council)" msgstr "(ikke rapportert til administrasjonen)" @@ -156,7 +173,8 @@ msgid "(optional)" msgstr "(valgfritt)" # Denne teksten er lite forklarende -#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:130 +#: templates/web/default/reports/council.html:150 msgid "(sent to both)" msgstr "(sendt til begge)" @@ -164,22 +182,22 @@ msgstr "(sendt til begge)" msgid "(we never show your email address or phone number)" msgstr "(vi viser aldri din e-postadresse eller telefonnummer)" -#: templates/web/default/report/display.html:217 +#: templates/web/default/report/display.html:214 msgid "(we never show your email)" msgstr "(vi viser aldri din e-postadresse)" -#: perllib/FixMyStreet/App/Controller/Admin.pm:279 +#: perllib/FixMyStreet/App/Controller/Admin.pm:281 msgid "*unknown*" msgstr "*ukjent*" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:534 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:549 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/DB/Result/Problem.pm:337 msgid "-- Pick a category --" msgstr "-- Velg en kategori --" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:520 -#: perllib/FixMyStreet/DB/Result/Problem.pm:320 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:535 +#: perllib/FixMyStreet/DB/Result/Problem.pm:343 msgid "-- Pick a property type --" msgstr "-- Velg en eiendomsstype --" @@ -189,15 +207,6 @@ msgstr "-- Velg en eiendomsstype --" msgid ". You can <a href=\"%s\">view the problem on this site</a>." msgstr ". Du kan <a href=\"%s\">lese om problemet på portalen </a>." -#: templates/web/default/footer.html:13 templates/web/reading/footer.html:16 -msgid "" -"<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" height=" -"\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org\"><span id=" -"\"logoie\"></span></a>" -msgstr "" -"<div id=\"logo\" align=\"center\"><a href=\"http://www.nuug.no/\">Foreningen " -"NUUG</a></div>" - #: templates/web/default/questionnaire/completed.html:25 msgid "" "<p style=\"font-size:150%\">Thank you very much for filling in our " @@ -224,7 +233,7 @@ msgstr "" "av folk i nabolaget som jobber sammen, hva med å <a href=\"http://www." "pledgebank.com/new\">publisere en utfordring om å bidra</a>?</p>" -#: templates/web/default/questionnaire/index.html:37 +#: templates/web/default/questionnaire/index.html:35 msgid "" "<p>Getting empty homes back into use can be difficult, but by now a good " "council\n" @@ -243,7 +252,7 @@ msgid "" "emptyhomes.com/getinvolved/campaign.html</a>.</p>\n" msgstr "" -#: templates/web/default/questionnaire/index.html:28 +#: templates/web/default/questionnaire/index.html:26 msgid "" "<p>Getting empty homes back into use can be difficult. You shouldn’t " "expect\n" @@ -271,8 +280,10 @@ msgstr "" "hit til\n" "nettstedet og legg igjen en oppdatering.</p>" -#: templates/web/default/around/display_location.html:71 -#: templates/web/default/around/display_location.html:73 +#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:72 +#: templates/web/emptyhomes/around/display_location.html:36 +#: templates/web/emptyhomes/around/display_location.html:38 msgid "" "<small>If you cannot see the map, <a href='%s' rel='nofollow'>skip this " "step</a>.</small>" @@ -284,6 +295,21 @@ msgstr "" msgid "<strong>%d</strong> live problems" msgstr "<strong>%d</strong> aktive problemer" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:169 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my report by email" +msgstr "<strong>Nei</strong>, la meg bekrefte min rapport med e-post:" + +#: templates/web/fixmystreet/report/display.html:153 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my update by email" +msgstr "<strong>Nei</strong>, la meg bekrefte min oppdatering med e-post:" + +#: templates/web/fixmystreet/auth/general.html:46 +#, fuzzy +msgid "<strong>No</strong> let me sign in by email" +msgstr "<strong>Nei</strong>, det gjør jeg ikke. La meg logge inn med e-post:" + #: templates/web/default/auth/general.html:55 msgid "<strong>No</strong>, I do not, let me sign in by email:" msgstr "<strong>Nei</strong>, det gjør jeg ikke. La meg logge inn med e-post:" @@ -292,33 +318,39 @@ msgstr "<strong>Nei</strong>, det gjør jeg ikke. La meg logge inn med e-post:" msgid "<strong>No</strong>, let me confirm my report by email:" msgstr "<strong>Nei</strong>, la meg bekrefte min rapport med e-post:" -#: templates/web/default/report/display.html:170 +#: templates/web/default/report/display.html:169 msgid "<strong>No</strong>, let me confirm my update by email:" msgstr "<strong>Nei</strong>, la meg bekrefte min oppdatering med e-post:" #: templates/web/default/auth/general.html:37 -#: templates/web/default/report/display.html:148 +#: templates/web/default/report/display.html:147 #: templates/web/default/report/new/fill_in_details_form.html:140 -msgid "<strong>Yes</strong>, I have a password:" +#: templates/web/fixmystreet/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:34 +#: templates/web/fixmystreet/report/display.html:136 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:151 +#, fuzzy +msgid "<strong>Yes</strong> I have a password" msgstr "<strong>Ja</strong>, jeg har et passord:" #: templates/web/default/static/about.html:1 #: templates/web/default/static/about.html:3 -#: templates/web/emptyhomes/header.html:31 +#: templates/web/emptyhomes/header.html:29 #: templates/web/emptyhomes/static/about.html:1 #: templates/web/emptyhomes/static/about.html:3 msgid "About us" msgstr "Om oss" -#: templates/web/default/admin/council_contacts.html:57 +#: templates/web/default/admin/council_contacts.html:62 msgid "Add new category" msgstr "Legg til ny kategori" -#: templates/web/default/my/my.html:56 +#: templates/web/default/my/my.html:56 templates/web/fixmystreet/my/my.html:56 msgid "Added %s" msgstr "La til %s" #: templates/web/default/auth/change_password.html:29 +#: templates/web/fixmystreet/auth/change_password.html:29 msgid "Again:" msgstr "Gjenta:" @@ -330,7 +362,8 @@ msgstr "Varsel %d opprettet for %s, type %s, parameter %s / %s" msgid "Alert %d disabled (created %s)" msgstr "Varsel %d koblet ut (opprettet %s)" -#: templates/web/default/report/display.html:222 +#: templates/web/default/report/display.html:219 +#: templates/web/fixmystreet/report/display.html:193 msgid "Alert me to future updates" msgstr "Send meg varsel ved fremtidige oppdateringer" @@ -338,21 +371,32 @@ msgstr "Send meg varsel ved fremtidige oppdateringer" msgid "All" msgstr "Alle" +#: templates/web/default/reports/index.html:3 +#, fuzzy +msgid "All Reports" +msgstr "Alle rapporter" + #: templates/web/default/admin/council_list.html:44 msgid "All confirmed" msgstr "Alle bekreftet" -#: templates/web/default/footer.html:8 templates/web/emptyhomes/header.html:28 -#: templates/web/fiksgatami/footer.html:7 templates/web/reading/footer.html:8 +#: templates/web/bromley/footer.html:37 templates/web/default/footer.html:11 +#: templates/web/fiksgatami/footer.html:7 +#: templates/web/fiksgatami/nn/footer.html:7 +#: templates/web/fixmystreet/footer.html:49 +#: templates/web/reading/footer.html:8 msgid "All reports" msgstr "Alle rapporter" #: templates/web/default/report/new/councils_text_some.html:2 +#: templates/web/fixmystreet/report/new/councils_text_some.html:2 msgid "All the information you provide here will be sent to" msgstr "All informasjonen du har lagt inn her vil bli sendt til" #: templates/web/default/report/new/councils_text_all.html:3 #: templates/web/default/report/new/councils_text_all.html:5 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_all.html:5 msgid "" "All the information you provide here will be sent to <strong>%s</strong> or " "a relevant local body such as <strong>TfL</strong>, via the London Report-It " @@ -366,13 +410,17 @@ msgstr "" #: templates/web/default/report/new/councils_text_all.html:12 #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:13 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:12 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:8 msgid "" "All the information you provide here will be sent to <strong>%s</strong>." msgstr "" "All informasjonen du har lagt inn her vil bli sendt til <strong>%s</strong>." -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 -#: templates/web/emptyhomes/report/new/all_councils_text.html:4 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:4 msgid "" "All the information you provide here will be sent to <strong>%s</strong>. On " "the site, we will show the subject and details of the problem, plus your " @@ -383,7 +431,8 @@ msgstr "" "ditt navn\n" "dersom du gir oss lov." -#: templates/web/default/questionnaire/index.html:62 +#: templates/web/default/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:54 msgid "An update marked this problem as fixed." msgstr "En oppdatering markerte dette problemet som fikset." @@ -393,21 +442,26 @@ msgstr "En oppdatering markerte dette problemet som fikset." msgid "Anonymous" msgstr "Anonym" -#: templates/web/default/admin/report_edit.html:17 +#: templates/web/default/admin/report_edit.html:26 #: templates/web/default/admin/update_edit.html:14 msgid "Anonymous:" msgstr "Anonym:" -#: templates/web/default/footer.html:29 -msgid "Are you a developer? Would you like to contribute to FixMyStreet?" -msgstr "Er du en utvikler? Kunne du tenke deg å bidra til FiksGataMi?" - #: templates/web/default/footer.html:26 +#, fuzzy msgid "" -"Are you from a council? Would you like better integration with FixMyStreet?" +"Are you a <strong>developer</strong>? Would you like to contribute to " +"FixMyStreet?" +msgstr "Er du en utvikler? Kunne du tenke deg å bidra til FiksGataMi?" + +#: templates/web/fixmystreet/footer.html:18 +msgid "Are you a developer?" msgstr "" -"Er du fra det offentlige? Kunne du tenke deg bedre integrasjon med " -"FiksGataMi?" + +#: templates/web/fixmystreet/footer.html:22 +#, fuzzy +msgid "Are you from a council?" +msgstr "den lokale administrasjonen" #: templates/web/default/open311/index.html:17 msgid "" @@ -427,11 +481,8 @@ msgstr "For øyeblikket er det kun søk etter og å se på rapporter som fungere msgid "Ban email address" msgstr "Bannlys epostadresse" -#: templates/web/default/footer.html:16 templates/web/reading/footer.html:14 -msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" -msgstr "Bygget av <a href=\"http://www.mysociety.org/\">mySociety</a>" - #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "" "Built by <a href=\"http://www.mysociety.org/\">mySociety</a> and maintained " "by <a href=\"http://www.nuug.no/\">NUUG</a>" @@ -443,10 +494,19 @@ msgstr "" msgid "By Date" msgstr "På dato" -#: templates/web/default/admin/council_contacts.html:26 +#: templates/web/fixmystreet/around/display_location.html:75 +#: templates/web/fixmystreet/around/display_location.html:77 +#, fuzzy +msgid "Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>" +msgstr "" +"<small>Hvis du ikke kan se kartet, <a href='%s' rel='nofollow'>hopp over " +"dette steget</a>.</small>" + +#: templates/web/default/admin/council_contacts.html:31 #: templates/web/default/admin/index.html:36 #: templates/web/default/admin/list_flagged.html:14 #: templates/web/default/admin/search_reports.html:17 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:72 msgid "Category" msgstr "Kategori" @@ -454,37 +514,48 @@ msgstr "Kategori" msgid "Category fix rate for problems > 4 weeks old" msgstr "Løsningsrate fordelt på kategori for problemer > 4 uker gamle" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:567 -#: templates/web/default/admin/council_contacts.html:63 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:552 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:582 +#: templates/web/default/admin/council_contacts.html:68 #: templates/web/default/admin/council_edit.html:23 -#: templates/web/default/admin/report_edit.html:29 +#: templates/web/default/admin/report_edit.html:25 #: templates/web/default/report/new/fill_in_details_form.html:67 msgid "Category:" msgstr "Kategori:" -#: bin/send-reports:180 +#: bin/send-reports:181 msgid "Category: %s" msgstr "Kategori: %s" #: templates/web/default/auth/change_password.html:1 #: templates/web/default/auth/change_password.html:3 #: templates/web/default/auth/change_password.html:33 +#: templates/web/fixmystreet/auth/change_password.html:1 +#: templates/web/fixmystreet/auth/change_password.html:3 +#: templates/web/fixmystreet/auth/change_password.html:33 msgid "Change Password" msgstr "Bytt passord" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/fixmystreet/around/display_location.html:72 +#, fuzzy +msgid "Click map to report a problem" +msgstr "Hvordan rapportere et problem" + +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:24 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Closed" msgstr "Lukket" -#: perllib/FixMyStreet/DB/Result/Problem.pm:627 +#: perllib/FixMyStreet/DB/Result/Problem.pm:641 msgid "Closed by council" msgstr "(ikke rapportert til administrasjonen)" -#: templates/web/default/my/my.html:32 +#: templates/web/default/my/my.html:32 templates/web/fixmystreet/my/my.html:32 msgid "Closed reports" msgstr "Fiksede rapporter" @@ -492,8 +563,8 @@ msgstr "Fiksede rapporter" msgid "Closed:" msgstr "Lukket:" -#: templates/web/default/around/display_location.html:102 -#: templates/web/default/around/display_location.html:104 +#: templates/web/default/around/display_location.html:101 +#: templates/web/default/around/display_location.html:103 msgid "Closest nearby problems <small>(within %skm)</small>" msgstr "De nærmeste problemene <small>(innenfor %skm)</small>" @@ -517,27 +588,28 @@ msgstr "Merkevaresamarbeidsdata:" msgid "Cobrand:" msgstr "Merkevaresamarbeid:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:349 +#: perllib/FixMyStreet/App/Controller/Admin.pm:351 msgid "Configuration updated" msgstr "Oppsett oppdatert" -#: perllib/FixMyStreet/App/Controller/Admin.pm:359 +#: perllib/FixMyStreet/App/Controller/Admin.pm:361 msgid "Configuration updated - contacts will be generated automatically later" msgstr "Oppsett oppdatert - kontakter vil bli generert automatisk senere" -#: templates/web/default/admin/council_contacts.html:119 +#: templates/web/default/admin/council_contacts.html:124 msgid "Configure Open311" msgstr "Sett opp Open311" -#: templates/web/default/admin/council_contacts.html:96 +#: templates/web/default/admin/council_contacts.html:101 msgid "Configure Open311 integration" msgstr "Sett opp Open311-integrasjon" -#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:38 msgid "Confirm" msgstr "Bekreft" #: templates/web/default/auth/token.html:1 +#: templates/web/fixmystreet/auth/token.html:1 msgid "Confirm account" msgstr "Bekreft konto" @@ -551,8 +623,8 @@ msgstr "Bekreft konto" msgid "Confirmation" msgstr "Bekreftelse" -#: templates/web/default/admin/council_contacts.html:28 -#: templates/web/default/admin/council_contacts.html:73 +#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:78 #: templates/web/default/admin/council_edit.html:28 #: templates/web/default/admin/council_edit.html:43 #: templates/web/default/admin/stats.html:5 @@ -565,26 +637,30 @@ msgid "Confirmed:" msgstr "Bekreftet:" #: templates/web/fiksgatami/footer.html:10 +#: templates/web/fiksgatami/nn/footer.html:10 msgid "Contact" msgstr "Kontakt" -#: templates/web/default/footer.html:17 templates/web/reading/footer.html:15 +#: templates/web/default/footer.html:24 msgid "Contact FixMyStreet" msgstr "Kontakt FiksGataMi" #: templates/web/default/contact/index.html:1 #: templates/web/default/contact/index.html:2 #: templates/web/default/contact/submit.html:1 +#: templates/web/fixmystreet/contact/index.html:1 +#: templates/web/fixmystreet/contact/index.html:2 msgid "Contact Us" msgstr "Kontakt oss" #: templates/web/default/contact/index.html:6 #: templates/web/default/contact/submit.html:3 +#: templates/web/fixmystreet/contact/index.html:7 msgid "Contact the team" msgstr "Kontakt prosjektgruppen" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1105 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1133 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1107 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1135 msgid "Could not find user" msgstr "Kunne ikke finne bruker" @@ -595,7 +671,7 @@ msgstr "Kunne ikke finne bruker" msgid "Council" msgstr "Administrasjon" -#: perllib/FixMyStreet/App/Controller/Admin.pm:977 +#: perllib/FixMyStreet/App/Controller/Admin.pm:979 #: templates/web/default/admin/council_list.html:1 msgid "Council contacts" msgstr "Administrasjonskontakter" @@ -623,7 +699,7 @@ msgstr "Antall" msgid "Create a report" msgstr "Lag en rapport" -#: templates/web/default/admin/council_contacts.html:87 +#: templates/web/default/admin/council_contacts.html:92 msgid "Create category" msgstr "Lag kategori" @@ -646,13 +722,18 @@ msgstr "Gjeldende tilstand" msgid "Currently has 1+ deleted" msgstr "For tiden har 1+ slettet" -#: templates/web/default/admin/council_contacts.html:29 -#: templates/web/default/admin/council_contacts.html:76 +#: templates/web/default/admin/council_contacts.html:34 +#: templates/web/default/admin/council_contacts.html:81 #: templates/web/default/admin/council_edit.html:29 #: templates/web/default/admin/council_edit.html:44 msgid "Deleted" msgstr "Slettet" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:64 +#, fuzzy +msgid "Details" +msgstr "Detaljer:" + #: templates/web/default/admin/report_edit.html:14 #: templates/web/default/report/new/fill_in_details_form.html:61 msgid "Details:" @@ -663,10 +744,14 @@ msgid "Diligency prize league table" msgstr "Arbeidshester" #: templates/web/default/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:29 +#: templates/web/fixmystreet/report/display.html:133 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:147 msgid "Do you have a FixMyStreet password?" msgstr "Har du et FiksGataMi-passord?" -#: templates/web/default/questionnaire/index.html:72 +#: templates/web/default/questionnaire/index.html:70 +#: templates/web/fixmystreet/questionnaire/index.html:64 msgid "Don’t know" msgstr "Vet ikke" @@ -692,7 +777,7 @@ msgstr "Redigerer bruker %d" msgid "Editor" msgstr "Oppdatert av" -#: templates/web/default/admin/council_contacts.html:27 +#: templates/web/default/admin/council_contacts.html:32 #: templates/web/default/admin/council_edit.html:42 #: templates/web/default/admin/list_flagged.html:12 #: templates/web/default/admin/list_flagged.html:35 @@ -700,18 +785,20 @@ msgstr "Oppdatert av" #: templates/web/default/admin/search_abuse.html:11 #: templates/web/default/admin/search_reports.html:15 #: templates/web/default/admin/search_users.html:13 +#: templates/web/fixmystreet/auth/general.html:20 +#: templates/web/fixmystreet/report/display.html:125 msgid "Email" msgstr "E-post" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1081 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1083 msgid "Email added to abuse list" msgstr "Epost lagt til misbruksliste" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1078 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1080 msgid "Email already in abuse list" msgstr "Epost allerede i misbrukslisten" -#: templates/web/default/around/display_location.html:84 +#: templates/web/default/around/display_location.html:83 msgid "Email me new local problems" msgstr "Send meg e-post om lokale problemer" @@ -719,7 +806,7 @@ msgstr "Send meg e-post om lokale problemer" msgid "Email me updates" msgstr "Send meg oppdateringer" -#: templates/web/default/admin/council_contacts.html:68 +#: templates/web/default/admin/council_contacts.html:73 #: templates/web/default/admin/council_edit.html:26 #: templates/web/default/admin/report_edit.html:31 #: templates/web/default/admin/update_edit.html:24 @@ -729,15 +816,15 @@ msgstr "Send meg oppdateringer" msgid "Email:" msgstr "E-post:" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:522 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 msgid "Empty flat or maisonette" msgstr "Tom leilighet" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:521 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:536 msgid "Empty house or bungalow" msgstr "Tomt hus eller bungalow" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:524 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:539 msgid "Empty office or other commercial" msgstr "Tomt kontor eller forretningsbygg" @@ -745,11 +832,11 @@ msgstr "Tomt kontor eller forretningsbygg" msgid "Empty property details form" msgstr "Tom eiendom detaljskjema" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:525 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:540 msgid "Empty pub or bar" msgstr "Tom pub eller bar" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:526 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:541 msgid "Empty public building - school, hospital, etc." msgstr "Tom offentlig bygning - skole, sykehos, etc." @@ -768,6 +855,12 @@ msgstr "Sluttmåned:" #: templates/web/default/around/around_index.html:10 #: templates/web/default/around/around_index.html:13 #: templates/web/default/index.html:24 templates/web/default/index.html:27 +#: templates/web/emptyhomes/index.html:40 +#: templates/web/emptyhomes/index.html:43 +#: templates/web/fixmystreet/around/around_index.html:10 +#: templates/web/fixmystreet/around/around_index.html:13 +#: templates/web/fixmystreet/index.html:32 +#: templates/web/fixmystreet/index.html:35 msgid "Enter a nearby GB postcode, or street name and area" msgstr "Skriv inn GB-postnummer i nærheten, eller veinavn og sted" @@ -776,12 +869,20 @@ msgid "Enter a nearby postcode, or street name and area" msgstr "Skriv inn postnummer i nærheten, eller veinavn og sted" #: templates/web/default/auth/general.html:64 -#: templates/web/default/report/display.html:177 +#: templates/web/default/report/display.html:176 #: templates/web/default/report/new/fill_in_details_form.html:169 msgid "Enter a new password:" msgstr "Skriv inn et nytt passord:" -#: templates/web/default/index.html:45 +#: templates/web/fixmystreet/auth/general.html:57 +#: templates/web/fixmystreet/report/display.html:165 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:194 +#, fuzzy +msgid "Enter a password" +msgstr "Skriv inn et nytt passord:" + +#: templates/web/default/index.html:44 templates/web/emptyhomes/index.html:60 +#: templates/web/fixmystreet/index.html:55 msgid "Enter details of the problem" msgstr "Legg inn detaljer om problemet" @@ -792,10 +893,11 @@ msgstr "Legg inn detaljer om problemet" #: templates/web/default/tokens/abuse.html:3 #: templates/web/default/tokens/error.html:1 #: templates/web/default/tokens/error.html:3 +#: templates/web/fixmystreet/auth/token.html:5 msgid "Error" msgstr "Feil" -#: templates/web/default/admin/council_contacts.html:9 +#: templates/web/default/admin/council_contacts.html:11 #: templates/web/default/admin/council_edit.html:18 msgid "Example postcode %s" msgstr "Eksempel-postnummer %s" @@ -812,20 +914,21 @@ msgstr "" "Klarte ikke å sende melding. Vennligst prøv igjen senere eller <a href=" "\"mailto:%s\">send oss en e-post</a>." -#: templates/web/default/footer.html:27 -msgid "Find out about FixMyStreet for councils" -msgstr "Finn ut om FiksGataMi for det offentlige" - -#: templates/web/default/questionnaire/index.html:81 +#: templates/web/default/questionnaire/index.html:79 +#: templates/web/fixmystreet/questionnaire/index.html:73 msgid "First time" msgstr "Første gang" -#: templates/web/default/header.html:29 #: templates/web/fiksgatami/header.html:16 -#: templates/web/reading/header.html:31 +#: templates/web/fiksgatami/nn/header.html:16 msgid "Fix<span id=\"my\">My</span>Street" msgstr "Fiks<span id=\"my\">Gata</span>Mi" +#: templates/web/default/header.html:24 +#, fuzzy +msgid "FixMyStreet" +msgstr "FiksGataMi-administrator:" + #: templates/web/default/admin/header.html:13 msgid "FixMyStreet admin:" msgstr "FiksGataMi-administrator:" @@ -834,7 +937,13 @@ msgstr "FiksGataMi-administrator:" msgid "FixMyStreet administration" msgstr "Fiksgatami-administrasjon" +#: templates/web/fixmystreet/static/for_councils.html:1 +#, fuzzy +msgid "FixMyStreet for Councils" +msgstr "Finn ut om FiksGataMi for det offentlige" + #: templates/web/default/alert/index.html:6 +#: templates/web/fixmystreet/alert/index.html:6 msgid "" "FixMyStreet has a variety of RSS feeds and email alerts for local problems, " "including\n" @@ -847,7 +956,8 @@ msgstr "" "eller et område med problemer\n" "innen en angitt distanse fra en bestemt posisjon." -#: templates/web/default/alert/list.html:100 +#: templates/web/default/alert/list.html:98 +#: templates/web/fixmystreet/alert/_list.html:69 msgid "" "FixMyStreet sends different categories of problem\n" "to the appropriate council, so problems within the boundary of a particular " @@ -864,25 +974,28 @@ msgstr "" "administrasjoner, problemer som gjelder flere administrasjoner blir sendt " "til alle de det gjelder." +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:20 #: templates/web/default/admin/index.html:36 -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Fixed" msgstr "Løst" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Fixed - Council" msgstr "Løst - Administrasjon" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Fixed - User" msgstr "Løst - Bruker" -#: templates/web/default/my/my.html:27 +#: templates/web/default/my/my.html:27 templates/web/fixmystreet/my/my.html:27 msgid "Fixed reports" msgstr "Fiksede rapporter" @@ -903,7 +1016,9 @@ msgstr "Flagget:" msgid "Flagged:" msgstr "Flagget:" -#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:24 +#: templates/web/default/reports/council.html:87 +#: templates/web/emptyhomes/reports/council.html:19 msgid "Follow a ward link to view only reports within that ward." msgstr "Følg en bydelslenke for å kun se rapporter innenfor den bydelen." @@ -915,6 +1030,8 @@ msgstr "For administrasjon(ene):" #: templates/web/emptyhomes/faq/faq-cy.html:1 #: templates/web/emptyhomes/faq/faq-en-gb.html:1 #: templates/web/fiksgatami/faq/faq-nb.html:1 +#: templates/web/fiksgatami/nn/faq/faq-nn.html:1 +#: templates/web/fixmystreet/faq/faq-en-gb.html:1 msgid "Frequently Asked Questions" msgstr "Ofte spurte spørsmål" @@ -926,13 +1043,27 @@ msgstr "Mer informasjon om vårt arbeid med tomme hjem" msgid "GeoRSS on Google Maps" msgstr "GeoRSS på Google Maps" -#: templates/web/default/alert/list.html:112 +#: templates/web/fixmystreet/report/display.html:28 +#, fuzzy +msgid "Get updates" +msgstr "Siste oppdatering:" + +#: templates/web/default/reports/council.html:72 +#, fuzzy +msgid "Get updates of problems in this %s" +msgstr "RSS-strøm for problemer i denne %s" + +#: templates/web/default/alert/list.html:110 +#: templates/web/fixmystreet/alert/_list.html:78 msgid "Give me an RSS feed" msgstr "Gi meg en RSS-strøm" #: templates/web/default/alert/index.html:24 #: templates/web/default/around/around_index.html:17 -#: templates/web/default/index.html:33 +#: templates/web/default/index.html:33 templates/web/emptyhomes/index.html:49 +#: templates/web/fixmystreet/alert/index.html:25 +#: templates/web/fixmystreet/around/around_index.html:20 +#: templates/web/fixmystreet/index.html:42 msgid "Go" msgstr "Fortsett" @@ -944,17 +1075,19 @@ msgstr "Skal det sendes spørreskjema?" msgid "Graph of problem creation by status over time" msgstr "Graf over problemoppretting fordelt på status over tid" -#: templates/web/default/reports/index.html:5 +#: templates/web/default/reports/index.html:8 #: templates/web/emptyhomes/reports/index.html:5 msgid "Greyed-out lines are councils that no longer exist." msgstr "" "Linjer med grå bakgrunn er administrasjoner som ikke lenger eksisterer." -#: templates/web/default/questionnaire/index.html:63 +#: templates/web/default/questionnaire/index.html:61 +#: templates/web/fixmystreet/questionnaire/index.html:55 msgid "Has this problem been fixed?" msgstr "Har dette problemet blitt løst?" -#: templates/web/default/questionnaire/index.html:76 +#: templates/web/default/questionnaire/index.html:74 +#: templates/web/fixmystreet/questionnaire/index.html:68 msgid "" "Have you ever reported a problem to a council before, or is this your first " "time?" @@ -962,40 +1095,52 @@ msgstr "" "Har du rapportert et problem til en administrasjon før, eller er dette " "første gangen?" -#: templates/web/default/footer.html:10 -#: templates/web/emptyhomes/header.html:30 -#: templates/web/fiksgatami/footer.html:9 templates/web/reading/footer.html:10 +#: templates/web/bromley/footer.html:41 templates/web/default/footer.html:15 +#: templates/web/emptyhomes/header.html:28 +#: templates/web/fiksgatami/footer.html:9 +#: templates/web/fiksgatami/nn/footer.html:9 +#: templates/web/fixmystreet/footer.html:53 +#: templates/web/reading/footer.html:10 msgid "Help" msgstr "Hjelp" -#: templates/web/default/alert/list.html:39 +#: templates/web/default/alert/list.html:37 +#: templates/web/fixmystreet/alert/_list.html:8 msgid "Here are the types of local problem alerts for ‘%s’." msgstr "" "Her er de forskjellige typene lokale problemvarsler for ‘%s’." -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/bromley/header.html:46 +#: templates/web/fixmystreet/header.html:46 +msgid "Hi %s" +msgstr "" + +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 msgid "Hidden" msgstr "Skjul" -#: templates/web/default/around/display_location.html:54 +#: templates/web/default/around/display_location.html:58 +#: templates/web/fixmystreet/around/display_location.html:58 +msgid "Hide old" +msgstr "" + +#: templates/web/default/around/display_location.html:53 +#: templates/web/fixmystreet/around/display_location.html:54 msgid "Hide pins" msgstr "Skjul nåler" -#: templates/web/default/around/display_location.html:59 -msgid "Hide stale reports" -msgstr "Skjul utdaterte rapporter" - #: templates/web/default/admin/council_edit.html:38 msgid "History" msgstr "Historie" -#: templates/web/default/index.html:40 +#: templates/web/default/index.html:39 templates/web/emptyhomes/index.html:55 +#: templates/web/fixmystreet/index.html:50 msgid "How to report a problem" msgstr "Hvordan rapportere et problem" -#: perllib/FixMyStreet/App/Controller/Admin.pm:587 +#: perllib/FixMyStreet/App/Controller/Admin.pm:592 msgid "I am afraid you cannot confirm unconfirmed reports." msgstr "Jeg er redd du ikke kan bekrefte ubekreftede rapporter." @@ -1027,6 +1172,8 @@ msgstr "ID" #: templates/web/default/report/new/councils_text_none.html:11 #: templates/web/default/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:10 +#: templates/web/fixmystreet/report/new/councils_text_none.html:9 msgid "" "If you submit a problem here the subject and details of the problem will be " "public, but the problem will <strong>not</strong> be reported to the council." @@ -1035,7 +1182,7 @@ msgstr "" "være offentlig, men problemet vil <strong>ikke</strong> bli rapportert til " "administrasjonen." -#: templates/web/emptyhomes/report/new/no_councils_text.html:9 +#: templates/web/emptyhomes/report/new/councils_text_none.html:9 msgid "" "If you submit a report here it will be left on the site, but not reported to " "the council – please still leave your report, so that we can show to " @@ -1048,6 +1195,7 @@ msgstr "" #: templates/web/default/auth/token.html:23 #: templates/web/default/email_sent.html:24 +#: templates/web/fixmystreet/auth/token.html:23 msgid "" "If you use web-based email or have 'junk mail' filters, you may wish to " "check your bulk/spam mail folders: sometimes, our messages are marked that " @@ -1056,7 +1204,8 @@ msgstr "" "Hvis du bruker web-basert e-post eller har filtre for søppel-e-post på din e-" "postkonto, kan du i noen tilfellet måtte se etter våre meldinger der." -#: templates/web/default/questionnaire/index.html:85 +#: templates/web/default/questionnaire/index.html:83 +#: templates/web/fixmystreet/questionnaire/index.html:77 msgid "" "If you wish to leave a public update on the problem, please enter it here\n" "(please note it will not be sent to the council). For example, what was\n" @@ -1071,14 +1220,16 @@ msgstr "" msgid "Illegal ID" msgstr "Ugyldig ID" -#: perllib/FixMyStreet/App/Controller/Alert.pm:102 +#: perllib/FixMyStreet/App/Controller/Alert.pm:100 msgid "Illegal feed selection" msgstr "Ugyldig valg av feed" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "In Progress" msgstr "Under arbeid" @@ -1094,9 +1245,10 @@ msgstr "" "del av description), interface_used, comment_count, requestor_name (kun " "tilstede hvis innsender tillot at navnet kunne vises på dette nettstedet)." -#: templates/web/default/around/display_location.html:61 -msgid "Include stale reports" -msgstr "Inkluder utdaterte problemer" +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:29 +#, fuzzy +msgid "In progress" +msgstr "Under arbeid" #: templates/web/default/admin/stats.html:76 msgid "Include unconfirmed reports" @@ -1110,7 +1262,7 @@ msgstr "Feil has_photo-verdi \"%s\"" msgid "Invalid agency_responsible value %s" msgstr "Ugyldig agency_responsible-verdi %s" -#: perllib/FixMyStreet/App/Controller/Admin.pm:897 +#: perllib/FixMyStreet/App/Controller/Admin.pm:899 msgid "Invalid end date" msgstr "Ugyldig slutt-dato" @@ -1118,14 +1270,16 @@ msgstr "Ugyldig slutt-dato" msgid "Invalid format %s specified." msgstr "Ugyldig format %s oppgitt." -#: perllib/FixMyStreet/App/Controller/Admin.pm:887 +#: perllib/FixMyStreet/App/Controller/Admin.pm:889 msgid "Invalid start date" msgstr "Ugyldig startdato" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 msgid "Investigating" msgstr "Undersøkes" @@ -1143,12 +1297,15 @@ msgid "" msgstr "" #: templates/web/default/auth/general.html:44 -#: templates/web/default/report/display.html:157 +#: templates/web/default/report/display.html:156 #: templates/web/default/report/new/fill_in_details_form.html:149 +#: templates/web/fixmystreet/auth/general.html:42 +#: templates/web/fixmystreet/report/display.html:149 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:164 msgid "Keep me signed in on this computer" msgstr "Husk min innlogging på denne datamaskinen" -#: templates/web/default/admin/council_contacts.html:30 +#: templates/web/default/admin/council_contacts.html:35 msgid "Last editor" msgstr "Sist redigert av" @@ -1160,15 +1317,16 @@ msgstr "Siste oppdatering:" msgid "Last update:" msgstr "Siste oppdatering:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:983 +#: perllib/FixMyStreet/App/Controller/Admin.pm:985 msgid "List Flagged" msgstr "List flagget" -#: templates/web/default/admin/council_contacts.html:11 +#: templates/web/default/admin/council_contacts.html:13 msgid "List all reported problems" msgstr "List alle rapporterte problemer" #: templates/web/default/report/new/fill_in_details_form.html:68 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:73 msgid "Loading..." msgstr "Laster..." @@ -1181,6 +1339,15 @@ msgstr "Laster..." #: templates/web/default/alert/updates.html:1 #: templates/web/default/tokens/confirm_alert.html:1 #: templates/web/default/tokens/confirm_alert.html:3 +#: templates/web/emptyhomes/alert/index.html:1 +#: templates/web/emptyhomes/alert/index.html:3 +#: templates/web/fixmystreet/alert/choose.html:1 +#: templates/web/fixmystreet/alert/choose.html:3 +#: templates/web/fixmystreet/alert/index.html:1 +#: templates/web/fixmystreet/alert/index.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:5 +#: templates/web/fixmystreet/alert/updates.html:1 msgid "Local RSS feeds and email alerts" msgstr "Lokal RSS-strøm og e-postvarsel" @@ -1188,15 +1355,23 @@ msgstr "Lokal RSS-strøm og e-postvarsel" #: templates/web/default/alert/list.html:12 #: templates/web/default/alert/list.html:14 #: templates/web/default/alert/list.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:12 +#: templates/web/fixmystreet/alert/list.html:14 +#: templates/web/fixmystreet/alert/list.html:3 msgid "Local RSS feeds and email alerts for ‘%s’" msgstr "Lokal RSS-strøm og e-postvarsel for ‘%s’" -#: templates/web/default/footer.html:9 templates/web/emptyhomes/header.html:29 -#: templates/web/fiksgatami/footer.html:8 templates/web/reading/footer.html:9 +#: templates/web/bromley/footer.html:39 templates/web/default/footer.html:13 +#: templates/web/fiksgatami/footer.html:8 +#: templates/web/fiksgatami/nn/footer.html:8 +#: templates/web/fixmystreet/footer.html:51 +#: templates/web/reading/footer.html:9 msgid "Local alerts" msgstr "Lokale varsler" -#: templates/web/default/index.html:44 +#: templates/web/default/index.html:43 templates/web/emptyhomes/index.html:59 +#: templates/web/fixmystreet/index.html:54 msgid "Locate the problem on a map of the area" msgstr "Lokaliser problemet på kartet over området" @@ -1210,6 +1385,11 @@ msgstr "" "\">OpenStreetMap</a> og bidragsytere, <a href=\"http://creativecommons.org/" "licenses/by-sa/2.0/\">CC-BY-SA</a>" +#: templates/web/fixmystreet/contact/index.html:86 +#, fuzzy +msgid "Message" +msgstr "Melding:" + #: templates/web/default/contact/index.html:90 msgid "Message:" msgstr "Melding:" @@ -1231,9 +1411,14 @@ msgstr "Flere problemer i nærheten" #: templates/web/default/admin/list_updates.html:7 #: templates/web/default/admin/search_reports.html:14 #: templates/web/default/admin/search_users.html:12 -#: templates/web/default/reports/index.html:10 +#: templates/web/default/reports/index.html:15 #: templates/web/emptyhomes/reports/index.html:10 +#: templates/web/fiksgatami/nn/reports/index.html:9 #: templates/web/fiksgatami/reports/index.html:9 +#: templates/web/fixmystreet/auth/general.html:52 +#: templates/web/fixmystreet/report/display.html:181 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:114 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:171 msgid "Name" msgstr "Navn" @@ -1243,7 +1428,8 @@ msgstr "Navn" msgid "Name:" msgstr "Navn:" -#: templates/web/default/footer.html:4 templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/nn/footer.html:3 #: templates/web/reading/footer.html:4 msgid "Navigation" msgstr "Navigasjon" @@ -1256,16 +1442,16 @@ msgstr "" "Nærmeste navngitte vei til nålen plassert på kartet (automatisk generert ved " "hjelp av OpenStreetMap): %s%s" -#: perllib/FixMyStreet/Cobrand/Default.pm:564 +#: perllib/FixMyStreet/Cobrand/Default.pm:480 msgid "" "Nearest postcode to the pin placed on the map (automatically generated): %s " "(%sm away)" msgstr "" -"Nærmeste postnummer til nålen plassert på kartet (automatisk generert): %s (%" -"sm unna)" +"Nærmeste postnummer til nålen plassert på kartet (automatisk generert): %s " +"(%sm unna)" -#: perllib/FixMyStreet/Cobrand/Default.pm:553 -#: perllib/FixMyStreet/Cobrand/Default.pm:588 +#: perllib/FixMyStreet/Cobrand/Default.pm:469 +#: perllib/FixMyStreet/Cobrand/Default.pm:520 msgid "" "Nearest road to the pin placed on the map (automatically generated by Bing " "Maps): %s" @@ -1273,11 +1459,26 @@ msgstr "" "Nærmeste vei til nålen plassert på kartet (automatisk generert ved hjelp av " "Bing Maps): %s" +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:242 +#, fuzzy +msgid "" +"Nearest road to the pin placed on the map (automatically generated by Bing " +"Maps): %s\n" +"\n" +msgstr "" +"Nærmeste vei til nålen plassert på kartet (automatisk generert ved hjelp av " +"Bing Maps): %s" + #: templates/web/default/email_sent.html:20 msgid "Nearly Done! Now check your email..." msgstr "Nesten ferdig! Nå må du sjekke e-posten din..." -#: perllib/FixMyStreet/App/Controller/Admin.pm:309 +#: templates/web/default/reports/index.html:16 +#, fuzzy +msgid "New <br>problems" +msgstr "Nye problemer" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:311 msgid "New category contact added" msgstr "Ny kategorikontakt lagt til" @@ -1289,10 +1490,8 @@ msgstr "Nye lokale problemer på FiksGataMi" msgid "New local reports on reportemptyhomes.com" msgstr "Nye lokale rapporter på reportemptyhomes.com" -#: templates/web/default/reports/council.html:92 -#: templates/web/default/reports/council.html:93 -#: templates/web/default/reports/index.html:11 #: templates/web/emptyhomes/reports/index.html:11 +#: templates/web/fiksgatami/nn/reports/index.html:10 #: templates/web/fiksgatami/reports/index.html:10 msgid "New problems" msgstr "Nye problemer" @@ -1343,24 +1542,27 @@ msgstr "Nye rapporter innenfor grensen til {{NAME}} på reportemptyhomes.com" msgid "New state" msgstr "Ny tilstand" -#: templates/web/default/front/news.html:8 #: templates/web/fiksgatami/front/news.html:9 +#: templates/web/fiksgatami/nn/front/news.html:9 +#: templates/web/fixmystreet/front/news.html:8 msgid "New!" msgstr "Ny!" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:4 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/admin/report_edit.html:28 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/update_edit.html:16 #: templates/web/default/questionnaire/creator_fixed.html:16 -#: templates/web/default/questionnaire/index.html:109 -#: templates/web/default/questionnaire/index.html:70 +#: templates/web/default/questionnaire/index.html:107 +#: templates/web/default/questionnaire/index.html:68 +#: templates/web/fixmystreet/questionnaire/index.html:101 +#: templates/web/fixmystreet/questionnaire/index.html:62 msgid "No" msgstr "Nei" @@ -1369,7 +1571,7 @@ msgstr "Nei" msgid "No council" msgstr "Ingen administrasjon" -#: perllib/FixMyStreet/DB/Result/Problem.pm:297 +#: perllib/FixMyStreet/DB/Result/Problem.pm:320 msgid "No council selected" msgstr "Ingen administrasjon er valgt" @@ -1390,10 +1592,12 @@ msgid "No info at all" msgstr "Helt uten informasjon" #: templates/web/default/around/around_map_list_items.html:15 +#: templates/web/fixmystreet/around/around_map_list_items.html:24 msgid "No problems found." msgstr "Ingen problemer ble funnet." #: templates/web/default/around/on_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:21 msgid "No problems have been reported yet." msgstr "Ingen problemer er rapportert" @@ -1407,10 +1611,12 @@ msgid "Not reported before" msgstr "Ikke rapportert tidligere" #: templates/web/default/report/_main.html:9 +#: templates/web/emptyhomes/report/display.html:24 +#: templates/web/fixmystreet/report/_main.html:11 msgid "Not reported to council" msgstr "Ikke rapportert til administrasjonen" -#: templates/web/default/admin/council_contacts.html:31 +#: templates/web/default/admin/council_contacts.html:36 #: templates/web/default/admin/council_edit.html:46 msgid "Note" msgstr "Merk" @@ -1425,7 +1631,7 @@ msgstr "" "opprettet, hvilket ikke trenger være den samme måneden som rapporten var " "bekreftet, så tallene kan hoppe litt opp og ned." -#: templates/web/default/admin/council_contacts.html:80 +#: templates/web/default/admin/council_contacts.html:85 #: templates/web/default/admin/council_edit.html:31 msgid "Note:" msgstr "Merk:" @@ -1434,31 +1640,37 @@ msgstr "Merk:" msgid "Note: <strong>%s</strong>" msgstr "Note: <strong>%d</strong>" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:146 +#, fuzzy +msgid "Now to submit your report…" +msgstr "På tide å sende din rapport… har du et FiksGataMi-passord?" + #: templates/web/default/report/new/fill_in_details_form.html:131 msgid "Now to submit your report… do you have a FixMyStreet password?" msgstr "På tide å sende din rapport… har du et FiksGataMi-passord?" -#: templates/web/default/report/display.html:139 +#: templates/web/fixmystreet/report/display.html:132 +#, fuzzy +msgid "Now to submit your update…" +msgstr "" +"På tide å registrere din oppdatering… har du et FiksGataMi-passord?" + +#: templates/web/default/report/display.html:138 msgid "Now to submit your update… do you have a FixMyStreet password?" msgstr "" "På tide å registrere din oppdatering… har du et FiksGataMi-passord?" #: templates/web/default/report/display.html:26 -#: templates/web/default/report/updates.html:23 +#: templates/web/default/report/update.html:16 msgid "Offensive? Unsuitable? Tell us" msgstr "Støtende? Upassende? Gi oss beskjed" -#: templates/web/default/reports/council.html:115 -#: templates/web/default/reports/council.html:116 -msgid "Old fixed" -msgstr "Eldre problemer som er løst" - -#: templates/web/default/reports/council.html:109 -#: templates/web/default/reports/council.html:110 -msgid "Old problems, state unknown" -msgstr "Eldre problemer med ukjent status" +#: templates/web/default/reports/index.html:18 +#, fuzzy +msgid "Old / unknown <br>problems" +msgstr "Ukjent problem-Id" -#: templates/web/default/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:12 #: templates/web/fiksgatami/reports/index.html:12 msgid "Old problems,<br>state unknown" msgstr "Eldre problemer med<br>ukjent status" @@ -1467,29 +1679,36 @@ msgstr "Eldre problemer med<br>ukjent status" msgid "Old state" msgstr "Gammel tilstand" -#: templates/web/default/reports/index.html:15 +#: templates/web/default/reports/index.html:20 +#, fuzzy +msgid "Older <br>fixed" +msgstr "Eldre løste" + +#: templates/web/default/reports/index.html:17 +#, fuzzy +msgid "Older <br>problems" +msgstr "Eldre problemer" + #: templates/web/emptyhomes/reports/index.html:14 +#: templates/web/fiksgatami/nn/reports/index.html:14 #: templates/web/fiksgatami/reports/index.html:14 msgid "Older fixed" msgstr "Eldre løste" -#: templates/web/default/reports/council.html:101 -#: templates/web/default/reports/council.html:105 -#: templates/web/default/reports/council.html:106 -#: templates/web/default/reports/council.html:99 -#: templates/web/default/reports/index.html:12 #: templates/web/emptyhomes/reports/index.html:12 +#: templates/web/fiksgatami/nn/reports/index.html:11 #: templates/web/fiksgatami/reports/index.html:11 msgid "Older problems" msgstr "Eldre problemer" -#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:18 #: templates/web/default/admin/update_edit.html:19 -#: templates/web/default/report/display.html:85 +#: templates/web/default/report/display.html:84 +#: templates/web/fixmystreet/report/display.html:79 msgid "Open" msgstr "Åpen" -#: templates/web/default/my/my.html:22 +#: templates/web/default/my/my.html:22 templates/web/fixmystreet/my/my.html:22 msgid "Open reports" msgstr "Åpne rapporter" @@ -1505,11 +1724,13 @@ msgstr "Open311-initiativets nettside" msgid "Open311 specification" msgstr "Open311-spesifikasjon" -#: templates/web/default/alert/list.html:87 +#: templates/web/default/alert/list.html:85 +#: templates/web/fixmystreet/alert/_list.html:56 msgid "Or problems reported to:" msgstr "Eller problemer meldt til:" -#: templates/web/default/alert/list.html:63 +#: templates/web/default/alert/list.html:61 +#: templates/web/fixmystreet/alert/_list.html:33 msgid "" "Or you can subscribe to an alert based upon what ward or council you’" "re in:" @@ -1517,18 +1738,18 @@ msgstr "" "Eller du kan abonnere på varsel basert på bydel eller administrasjon du " "hører inn under:" -#: bin/send-reports:175 bin/send-reports:184 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:553 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:969 -#: perllib/FixMyStreet/DB/Result/Problem.pm:475 -#: perllib/FixMyStreet/DB/Result/Problem.pm:485 -#: perllib/FixMyStreet/DB/Result/Problem.pm:495 -#: perllib/FixMyStreet/DB/Result/Problem.pm:507 +#: bin/send-reports:176 bin/send-reports:185 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:568 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:990 +#: perllib/FixMyStreet/DB/Result/Problem.pm:489 +#: perllib/FixMyStreet/DB/Result/Problem.pm:499 +#: perllib/FixMyStreet/DB/Result/Problem.pm:509 +#: perllib/FixMyStreet/DB/Result/Problem.pm:521 msgid "Other" msgstr "Annet" -#: templates/web/default/footer.html:30 +#: templates/web/default/footer.html:27 msgid "" "Our code is open source and <a href=\"http://github.com/mysociety/fixmystreet" "\">available on GitHub</a>." @@ -1545,63 +1766,101 @@ msgstr "Eier" msgid "Page Not Found" msgstr "Fant ikke siden" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Partial" msgstr "Delvis" +#: templates/web/fixmystreet/auth/general.html:55 +#: templates/web/fixmystreet/report/display.html:162 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:191 +#, fuzzy +msgid "Password (optional)" +msgstr "(valgfritt)" + #: templates/web/default/auth/change_password.html:25 +#: templates/web/fixmystreet/auth/change_password.html:25 msgid "Password:" msgstr "Passord:" -#: bin/send-reports:69 templates/web/default/admin/report_edit.html:32 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:130 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:188 +#, fuzzy +msgid "Phone number (optional)" +msgstr "(valgfritt)" + +#: bin/send-reports:70 templates/web/default/admin/report_edit.html:32 #: templates/web/default/report/new/fill_in_details_form.html:215 msgid "Phone:" msgstr "Telefon:" -#: templates/web/default/questionnaire/index.html:97 -#: templates/web/default/report/display.html:115 +#: templates/web/fixmystreet/report/display.html:108 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:108 +#, fuzzy +msgid "Photo" +msgstr "Bilde:" + +#: templates/web/default/questionnaire/index.html:95 +#: templates/web/default/report/display.html:114 #: templates/web/default/report/new/fill_in_details_form.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:90 msgid "Photo:" msgstr "Bilde:" -#: templates/web/default/alert/list.html:29 +#: templates/web/default/alert/list.html:27 +#: templates/web/fixmystreet/alert/list.html:27 msgid "Photos of recent nearby reports" msgstr "Bilder av nye problemer i nærheten" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 msgid "Planned" msgstr "Planlagt" +#: templates/web/fixmystreet/questionnaire/index.html:44 +#, fuzzy +msgid "" +"Please <a class=\"tab_link\" href=\"#report\">take a look</a> at the updates " +"that have been left." +msgstr "Vennligst se over oppdateringene som har blitt lagt inn." + #: templates/web/default/report/new/notes.html:6 +#: templates/web/fixmystreet/report/new/notes.html:5 msgid "Please be polite, concise and to the point." msgstr "Vær høflig, poengtert og kortfattet." #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:17 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:17 msgid "Please check the passwords and try again" msgstr "Vennligst sjekk passordene og prøv igjen" #: templates/web/default/auth/token.html:17 +#: templates/web/fixmystreet/auth/token.html:17 msgid "Please check your email" msgstr "Vennligst sjekk e-posten du oppgav" #: templates/web/default/auth/general.html:14 #: templates/web/default/auth/general.html:8 +#: templates/web/fixmystreet/auth/general.html:15 +#: templates/web/fixmystreet/auth/general.html:9 msgid "Please check your email address is correct" msgstr "Vennligst sjekk at du har skrevet en gyldig e-postadresse" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:722 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:741 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 -#: perllib/FixMyStreet/DB/Result/Problem.pm:316 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:739 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:758 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:795 +#: perllib/FixMyStreet/DB/Result/Problem.pm:339 +#: templates/web/default/js/validation_strings.html:9 msgid "Please choose a category" msgstr "Velg en kategori" -#: perllib/FixMyStreet/DB/Result/Problem.pm:322 +#: perllib/FixMyStreet/DB/Result/Problem.pm:345 msgid "Please choose a property type" msgstr "Velg en type egenskap" @@ -1619,6 +1878,7 @@ msgstr "" "vennligst <a href=\"/\">gå til forsiden</a> og følg instruksjonene." #: templates/web/default/report/new/notes.html:7 +#: templates/web/fixmystreet/report/new/notes.html:6 msgid "" "Please do not be abusive — abusing your council devalues the service " "for all users." @@ -1627,29 +1887,36 @@ msgstr "" "tjenesten for alle brukerne." #: perllib/FixMyStreet/DB/Result/Comment.pm:113 +#: templates/web/default/js/validation_strings.html:2 msgid "Please enter a message" msgstr "Vennligst legg til en melding" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:15 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:15 msgid "Please enter a password" msgstr "Skriv inn et passord" #: perllib/FixMyStreet/App/Controller/Contact.pm:97 -#: perllib/FixMyStreet/DB/Result/Problem.pm:291 +#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: templates/web/default/js/validation_strings.html:3 msgid "Please enter a subject" msgstr "Vennligst legg inn et emne" #: perllib/FixMyStreet/DB/Result/User.pm:96 +#: templates/web/default/js/validation_strings.html:12 +#: templates/web/default/js/validation_strings.html:16 msgid "Please enter a valid email" msgstr "Legg til en gyldig e-post" -#: perllib/FixMyStreet/App/Controller/Alert.pm:345 +#: perllib/FixMyStreet/App/Controller/Alert.pm:342 #: perllib/FixMyStreet/App/Controller/Contact.pm:107 msgid "Please enter a valid email address" msgstr "Legg inn din e-post" -#: perllib/FixMyStreet/DB/Result/Problem.pm:294 +#: perllib/FixMyStreet/DB/Result/Problem.pm:317 +#: templates/web/default/js/validation_strings.html:4 msgid "Please enter some details" msgstr "Legg inn opplysninger om problemet" @@ -1657,21 +1924,33 @@ msgstr "Legg inn opplysninger om problemet" #: perllib/FixMyStreet/DB/Result/User.pm:93 #: templates/web/default/auth/general.html:13 #: templates/web/default/auth/general.html:8 +#: templates/web/default/js/validation_strings.html:11 +#: templates/web/default/js/validation_strings.html:15 +#: templates/web/fixmystreet/auth/general.html:14 +#: templates/web/fixmystreet/auth/general.html:9 msgid "Please enter your email" msgstr "Legg inn din e-post" -#: perllib/FixMyStreet/DB/Result/Problem.pm:309 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:143 +#, fuzzy +msgid "Please enter your email address" +msgstr "Legg inn din e-post" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:332 +#: templates/web/default/js/validation_strings.html:7 +#, fuzzy msgid "" -"Please enter your full name, councils need this information - if you do not " -"wish your name to be shown on the site, untick the box" +"Please enter your full name, councils need this information – if you do not " +"wish your name to be shown on the site, untick the box below" msgstr "" "Legg inn ditt fulle navn, administrasjoner som mottar ditt problem trenger " "dette - hvis du ikke ønsker at ditt navn skal vises, fjern haken under" #: perllib/FixMyStreet/App/Controller/Contact.pm:95 #: perllib/FixMyStreet/DB/Result/Comment.pm:110 -#: perllib/FixMyStreet/DB/Result/Problem.pm:302 +#: perllib/FixMyStreet/DB/Result/Problem.pm:325 #: perllib/FixMyStreet/DB/Result/User.pm:89 +#: templates/web/default/js/validation_strings.html:6 msgid "Please enter your name" msgstr "Legg inn ditt navn" @@ -1690,6 +1969,8 @@ msgstr "" #: templates/web/default/report/new/fill_in_details_text.html:1 #: templates/web/default/report/new/fill_in_details_text.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:11 msgid "Please fill in details of the problem below." msgstr "Vennligst fyll ut detaljer om problemet under" @@ -1710,7 +1991,13 @@ msgstr "" "det har\n" "vært der, en beskrivelse (og et bilde av problemet hvis du har et), osv." +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:68 +#, fuzzy +msgid "Please fill in details of the problem." +msgstr "Vennligst fyll ut detaljer om problemet under" + #: templates/web/default/report/new/fill_in_details_form.html:27 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:34 msgid "" "Please fill in the form below with details of the problem, and describe the " "location as precisely as possible in the details box." @@ -1718,11 +2005,12 @@ msgstr "" "Vennligst fyll inn skjemaet under med detaljene om problemet,\n" "og beskriv plasseringen så nøyaktig som mulig i boksen for detaljer." -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:241 msgid "Please indicate whether you'd like to receive another questionnaire" msgstr "Vennligst indiker om du ønsker å motta et nytt spørreskjema" -#: templates/web/default/report/display.html:62 +#: templates/web/default/report/display.html:61 +#: templates/web/fixmystreet/report/display.html:59 msgid "" "Please note that updates are not sent to the council. If you leave your name " "it will be public. Your information will only be used in accordance with our " @@ -1734,6 +2022,7 @@ msgstr "" "\">personvernpolicy</a>" #: templates/web/default/report/new/fill_in_details_form.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:25 msgid "" "Please note your report has <strong>not yet been sent</strong>. Choose a " "category and add further information below, then submit." @@ -1742,44 +2031,45 @@ msgstr "" "legg til mer informasjon under før du sender inn." #: templates/web/default/report/new/notes.html:1 +#: templates/web/fixmystreet/report/new/notes.html:1 msgid "Please note:" msgstr "Vennligst merk deg:" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:247 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 msgid "Please provide some explanation as to why you're reopening this report" msgstr "" "Vennligst bidra med en forklaring for hvorfor du gjenåpner denne " "problemrapporten" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:254 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:251 msgid "Please provide some text as well as a photo" msgstr "Vennligst bidra med litt tekst i tilegg til et bilde" #: perllib/FixMyStreet/App/Controller/Questionnaire.pm:115 -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:240 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:237 msgid "" "Please say whether you've ever reported a problem to your council before" msgstr "" "Vennligst opplys om du har rapportert et problem til din administrasjon " "tidligere" -#: perllib/FixMyStreet/App/Controller/Alert.pm:82 +#: perllib/FixMyStreet/App/Controller/Alert.pm:80 msgid "Please select the feed you want" msgstr "Velg den kilden du ønsker" -#: perllib/FixMyStreet/App/Controller/Alert.pm:120 +#: perllib/FixMyStreet/App/Controller/Alert.pm:118 msgid "Please select the type of alert you want" msgstr "Vennligst velg hvilken type varsel du ønsker" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:236 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:233 msgid "Please state whether or not the problem has been fixed" msgstr "Vennligs oppgi om dette problemet er blitt fikset eller ikke" -#: templates/web/default/questionnaire/index.html:52 +#: templates/web/default/questionnaire/index.html:50 msgid "Please take a look at the updates that have been left." msgstr "Vennligst se over oppdateringene som har blitt lagt inn." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:830 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:843 msgid "Please upload a JPEG image only" msgstr "Vennligst last opp kun JPEG-bilder" @@ -1787,26 +2077,35 @@ msgstr "Vennligst last opp kun JPEG-bilder" msgid "Please write a message" msgstr "Skriv inn en melding" +#: templates/web/fixmystreet/report/display.html:74 +#, fuzzy +msgid "Please write your update here" +msgstr "Skriv inn en melding" + #: templates/web/default/contact/index.html:93 -#: templates/web/default/report/display.html:125 -#: templates/web/default/report/display.html:162 -#: templates/web/default/report/display.html:184 +#: templates/web/default/report/display.html:124 +#: templates/web/default/report/display.html:161 +#: templates/web/default/report/display.html:183 +#: templates/web/fixmystreet/contact/index.html:93 +#: templates/web/fixmystreet/report/display.html:120 +#: templates/web/fixmystreet/report/display.html:144 +#: templates/web/fixmystreet/report/display.html:166 msgid "Post" msgstr "Send inn" -#: templates/web/default/report/updates.html:8 +#: templates/web/default/report/updates.html:14 msgid "Posted anonymously at %s" msgstr "Publisert anonymt %s" -#: templates/web/default/report/updates.html:11 +#: templates/web/default/report/updates.html:17 msgid "Posted by %s (<strong>%s</strong>) at %s" msgstr "Lagt inn av %s (<strong>%s</strong>) %s" -#: templates/web/default/report/updates.html:13 +#: templates/web/default/report/updates.html:19 msgid "Posted by %s at %s" msgstr "Sendt inn av %s %s" -#: templates/web/default/maps/openlayers.html:89 +#: templates/web/default/maps/openlayers.html:85 msgid "Problem" msgstr "Problem" @@ -1826,7 +2125,7 @@ msgstr "Problem %s sendt til administrasjon %s" msgid "Problem breakdown by state" msgstr "Tilstandsfordeling av problemer" -#: perllib/FixMyStreet/App/Controller/Admin.pm:774 +#: perllib/FixMyStreet/App/Controller/Admin.pm:776 msgid "Problem marked as open." msgstr "Problem markert som åpent." @@ -1838,35 +2137,48 @@ msgstr "Problemtilstandsendring basert på spørreundersøkelsesresultater" msgid "Problems" msgstr "Problemer" -#: templates/web/default/around/display_location.html:80 +#: templates/web/default/around/display_location.html:79 msgid "Problems in this area" msgstr "Problemer i dette området" +#: templates/web/fixmystreet/around/display_location.html:93 +#: templates/web/fixmystreet/report/display.html:29 +#, fuzzy +msgid "Problems nearby" +msgstr "Flere problemer i nærheten" + +#: templates/web/fixmystreet/around/display_location.html:92 +#, fuzzy +msgid "Problems on the map" +msgstr "Problemer i dette området" + #: db/alert_types.pl:14 msgid "Problems recently reported fixed on FixMyStreet" msgstr "Problemer nylig rapportert fikset på FiksGataMi" -#: templates/web/default/alert/list.html:52 +#: templates/web/default/alert/list.html:50 +#: templates/web/fixmystreet/alert/_list.html:21 msgid "Problems within %.1fkm of this location" msgstr "Problemer innenfor %.1fkm av denne posisjonen" -#: perllib/FixMyStreet/Cobrand/Default.pm:800 +#: perllib/FixMyStreet/Cobrand/Default.pm:748 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:162 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:177 msgid "Problems within %s" msgstr "Problemer innenfor %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:809 +#: perllib/FixMyStreet/Cobrand/Default.pm:757 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:170 msgid "Problems within %s ward" msgstr "Problemer innenfor %s bydel" #: templates/web/default/reports/council.html:0 -#: templates/web/default/reports/council.html:16 +#: templates/web/default/reports/council.html:17 msgid "Problems within %s, FixMyStreet" msgstr "Problemer innenfor %s, Fiksgatami" -#: templates/web/default/alert/list.html:69 +#: templates/web/default/alert/list.html:67 +#: templates/web/fixmystreet/alert/_list.html:38 msgid "Problems within the boundary of:" msgstr "Problemer innenfor grensene av:" @@ -1875,16 +2187,24 @@ msgid "Properties recently reported as put back to use on reportemptyhomes.com" msgstr "" "Eiendommer nylig rapportert som gått tilbake i bruk på reportemptyhomes.com" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:528 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:543 msgid "Property type:" msgstr "Type egenskap:" -#: templates/web/default/report/display.html:57 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:62 +#, fuzzy +msgid "Provide a title" +msgstr "Bidra med en oppdatering" + +#: templates/web/default/report/display.html:56 +#: templates/web/fixmystreet/report/display.html:55 msgid "Provide an update" msgstr "Bidra med en oppdatering" -#: templates/web/default/report/display.html:181 +#: templates/web/default/report/display.html:180 #: templates/web/default/report/new/fill_in_details_form.html:173 +#: templates/web/fixmystreet/report/display.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:185 msgid "" "Providing a password is optional, but doing so will allow you to more easily " "report problems, leave updates and manage your reports." @@ -1898,6 +2218,10 @@ msgstr "" #: templates/web/default/questionnaire/index.html:0 #: templates/web/default/questionnaire/index.html:14 #: templates/web/default/questionnaire/index.html:4 +#: templates/web/fixmystreet/questionnaire/index.html:0 +#: templates/web/fixmystreet/questionnaire/index.html:15 +#: templates/web/fixmystreet/questionnaire/index.html:3 +#: templates/web/fixmystreet/questionnaire/index.html:32 msgid "Questionnaire" msgstr "Spørreskjema" @@ -1913,26 +2237,36 @@ msgstr "Spørreskjema %d sendt for problem %d" msgid "Questionnaire filled in by problem reporter" msgstr "Spørreskjema fylt inn av feilrapportøren" -#: templates/web/default/alert/list.html:54 +#: templates/web/fixmystreet/static/for_councils_faq.html:1 +#, fuzzy +msgid "Questions and Answers :: FixMyStreet for Councils" +msgstr "Finn ut om FiksGataMi for det offentlige" + +#: templates/web/default/alert/list.html:52 #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:3 -#: templates/web/default/report/display.html:48 -#: templates/web/default/reports/council.html:61 +#: templates/web/default/report/display.html:47 +#: templates/web/default/reports/council.html:79 +#: templates/web/fixmystreet/alert/_list.html:22 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:3 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed" msgstr "RSS-strøm" -#: perllib/FixMyStreet/Cobrand/Default.pm:838 -#: perllib/FixMyStreet/Cobrand/Default.pm:852 +#: perllib/FixMyStreet/Cobrand/Default.pm:786 +#: perllib/FixMyStreet/Cobrand/Default.pm:800 msgid "RSS feed for %s" msgstr "RSS-strøm for %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:845 -#: perllib/FixMyStreet/Cobrand/Default.pm:859 +#: perllib/FixMyStreet/Cobrand/Default.pm:793 +#: perllib/FixMyStreet/Cobrand/Default.pm:807 msgid "RSS feed for %s ward, %s" msgstr "RSS-strøm for %s bydel, %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:868 -#: perllib/FixMyStreet/Cobrand/Default.pm:882 +#: perllib/FixMyStreet/Cobrand/Default.pm:816 +#: perllib/FixMyStreet/Cobrand/Default.pm:830 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:193 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:201 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:211 @@ -1940,62 +2274,75 @@ msgstr "RSS-strøm for %s bydel, %s" msgid "RSS feed of %s" msgstr "RSS-strøm fra %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:874 -#: perllib/FixMyStreet/Cobrand/Default.pm:888 +#: perllib/FixMyStreet/Cobrand/Default.pm:822 +#: perllib/FixMyStreet/Cobrand/Default.pm:836 msgid "RSS feed of %s, within %s ward" msgstr "RSS-strøm av %s, innenfor %s bydel" -#: templates/web/default/alert/list.html:54 +#: templates/web/default/alert/list.html:52 +#: templates/web/fixmystreet/alert/_list.html:22 msgid "RSS feed of nearby problems" msgstr "RSS-strøm med problemer i nærheten" -#: templates/web/default/reports/council.html:61 +#: templates/web/default/reports/council.html:79 msgid "RSS feed of problems in this %s" msgstr "RSS-strøm for problemer i denne %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:801 +#: perllib/FixMyStreet/Cobrand/Default.pm:749 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:163 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:176 msgid "RSS feed of problems within %s" msgstr "RSS-strøm for problemer innenfor %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:808 +#: perllib/FixMyStreet/Cobrand/Default.pm:756 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:169 msgid "RSS feed of problems within %s ward" msgstr "RSS-strøm for problemer innenfor %s bydel" #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:4 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:4 msgid "RSS feed of recent local problems" msgstr "RSS-strøm med nylige lokale problemer" -#: templates/web/default/report/display.html:48 +#: templates/web/default/report/display.html:47 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed of updates to this problem" msgstr "RSS-strøm med oppdateringer for dette problemet" #: templates/web/default/alert/updates.html:9 #: templates/web/default/report/display.html:38 +#: templates/web/fixmystreet/alert/updates.html:14 +#: templates/web/fixmystreet/report/display.html:37 msgid "Receive email when updates are left on this problem." msgstr "Motta e-post når det er oppdateringer på dette problemet" #: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:34 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:34 msgid "Recent local problems, FixMyStreet" msgstr "Nylige lokale problemer, FiksGataMi." -#: templates/web/default/reports/council.html:87 -#: templates/web/default/reports/council.html:88 -#: templates/web/default/reports/index.html:14 +#: templates/web/default/reports/index.html:19 +#, fuzzy +msgid "Recently <br>fixed" +msgstr "Nylig løste problemer" + #: templates/web/emptyhomes/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:13 #: templates/web/fiksgatami/reports/index.html:13 msgid "Recently fixed" msgstr "Nylig løste problemer" -#: templates/web/default/index.html:62 +#: templates/web/default/index.html:61 templates/web/fixmystreet/index.html:72 msgid "Recently reported problems" msgstr "Nylig meldte problemer" #: templates/web/default/report/new/notes.html:9 +#: templates/web/fixmystreet/report/new/notes.html:8 msgid "" "Remember that FixMyStreet is primarily for reporting physical problems that " "can be fixed. If your problem is not appropriate for submission via this " @@ -2011,7 +2358,7 @@ msgstr "" msgid "Remove flag" msgstr "Fjern flagg" -#: templates/web/default/admin/report_edit.html:47 +#: templates/web/default/admin/report_edit.html:52 #: templates/web/default/admin/update_edit.html:48 msgid "Remove photo (can't be undone!)" msgstr "Fjern bilde (kan ikke gjøres om!)" @@ -2020,63 +2367,80 @@ msgstr "Fjern bilde (kan ikke gjøres om!)" msgid "Report Empty Homes" msgstr "Rapporter tomme hjem" -#: templates/web/default/footer.html:6 templates/web/emptyhomes/header.html:27 -#: templates/web/fiksgatami/footer.html:5 templates/web/reading/footer.html:6 +#: templates/web/bromley/footer.html:33 templates/web/default/footer.html:7 +#: templates/web/emptyhomes/header.html:27 +#: templates/web/fiksgatami/footer.html:5 +#: templates/web/fiksgatami/nn/footer.html:5 +#: templates/web/fixmystreet/footer.html:45 +#: templates/web/reading/footer.html:6 msgid "Report a problem" msgstr "Rapporter et problem" -#: perllib/FixMyStreet/App/Controller/Rss.pm:274 +#: templates/web/fixmystreet/report/display.html:27 +#, fuzzy +msgid "Report abuse" +msgstr "Rapporter et problem" + +#: templates/web/emptyhomes/index.html:37 +#, fuzzy +msgid "Report empty properties" +msgstr "Rapporter tomme hjem" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:281 msgid "Report on %s" msgstr "Rapport på %s" -#: templates/web/default/index.html:15 +#: templates/web/default/index.html:15 templates/web/fixmystreet/index.html:28 msgid "Report, view, or discuss local problems" msgstr "Rapporter, finn eller diskuter lokale problemer" -#: templates/web/default/my/my.html:74 +#: templates/web/default/my/my.html:74 templates/web/fixmystreet/my/my.html:77 msgid "Reported %s" msgstr "Rapportert %s" -#: templates/web/default/my/my.html:72 +#: templates/web/default/my/my.html:72 templates/web/fixmystreet/my/my.html:75 msgid "Reported %s, to %s" msgstr "Rapportert %s, til %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:490 +#: perllib/FixMyStreet/DB/Result/Problem.pm:504 #: templates/web/default/contact/index.html:45 +#: templates/web/fixmystreet/contact/index.html:46 msgid "Reported anonymously at %s" msgstr "Rapportert anonymt %s" #: templates/web/default/admin/questionnaire.html:5 -#: templates/web/default/questionnaire/index.html:79 +#: templates/web/default/questionnaire/index.html:77 +#: templates/web/fixmystreet/questionnaire/index.html:71 msgid "Reported before" msgstr "Rapportert tidligere" -#: perllib/FixMyStreet/DB/Result/Problem.pm:482 +#: perllib/FixMyStreet/DB/Result/Problem.pm:496 msgid "Reported by %s anonymously at %s" msgstr "Publisert av %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:513 +#: perllib/FixMyStreet/DB/Result/Problem.pm:527 #: templates/web/default/contact/index.html:47 +#: templates/web/fixmystreet/contact/index.html:48 msgid "Reported by %s at %s" msgstr "Publisert av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:504 +#: perllib/FixMyStreet/DB/Result/Problem.pm:518 msgid "Reported by %s by %s at %s" msgstr "Rapporter av %s av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:478 +#: perllib/FixMyStreet/DB/Result/Problem.pm:492 msgid "Reported by %s in the %s category anonymously at %s" msgstr "Rapportert av %s i kategorien %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:498 +#: perllib/FixMyStreet/DB/Result/Problem.pm:512 msgid "Reported by %s in the %s category by %s at %s" msgstr "Rapportert av %s i kategorien %s av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:486 +#: perllib/FixMyStreet/DB/Result/Problem.pm:500 msgid "Reported in the %s category anonymously at %s" msgstr "Rapportert i kategorien %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:508 +#: perllib/FixMyStreet/DB/Result/Problem.pm:522 msgid "Reported in the %s category by %s at %s" msgstr "Rapportert i kategorien %s av %s %s" @@ -2084,10 +2448,14 @@ msgstr "Rapportert i kategorien %s av %s %s" #: templates/web/default/report/new/fill_in_details.html:0 #: templates/web/default/report/new/fill_in_details.html:3 #: templates/web/default/report/new/fill_in_details_form.html:1 +#: templates/web/fixmystreet/around/around_index.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details.html:0 +#: templates/web/fixmystreet/report/new/fill_in_details.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:2 msgid "Reporting a problem" msgstr "Legger til et problem" -#: templates/web/default/around/display_location.html:94 +#: templates/web/default/around/display_location.html:93 msgid "Reports on and around the map" msgstr "Problemer i og rundt kartet" @@ -2111,7 +2479,7 @@ msgstr "Veioperatør for denne navngitte veien (fra OpenStreetMap): %s" msgid "Save changes" msgstr "Lagre endringer" -#: perllib/FixMyStreet/App/Controller/Admin.pm:982 +#: perllib/FixMyStreet/App/Controller/Admin.pm:984 msgid "Search Abuse" msgstr "Søk etter misbruk" @@ -2119,13 +2487,13 @@ msgstr "Søk etter misbruk" msgid "Search Abuse Table" msgstr "Søk i misbrukstabell" -#: perllib/FixMyStreet/App/Controller/Admin.pm:978 +#: perllib/FixMyStreet/App/Controller/Admin.pm:980 #: templates/web/default/admin/list_flagged.html:1 #: templates/web/default/admin/search_reports.html:1 msgid "Search Reports" msgstr "Søk i rapporter" -#: perllib/FixMyStreet/App/Controller/Admin.pm:981 +#: perllib/FixMyStreet/App/Controller/Admin.pm:983 #: templates/web/default/admin/search_users.html:1 msgid "Search Users" msgstr "Søk i brukere" @@ -2136,7 +2504,8 @@ msgstr "Søk i brukere" msgid "Search:" msgstr "Søk:" -#: templates/web/default/alert/list.html:41 +#: templates/web/default/alert/list.html:39 +#: templates/web/fixmystreet/alert/_list.html:10 msgid "" "Select which type of alert you'd like and click the button for an RSS feed, " "or enter your email address to subscribe to an email alert." @@ -2144,7 +2513,7 @@ msgstr "" "Velg hvilken type varsel du ønsker og klikk på knappen for en RSS-kilde, " "eller skriv inn din e-postadresse for å abonnere på et e-postvarsel." -#: perllib/FixMyStreet/DB/Result/Problem.pm:555 +#: perllib/FixMyStreet/DB/Result/Problem.pm:569 msgid "Sent to %s %s later" msgstr "Sendt til %s %s senere" @@ -2177,17 +2546,31 @@ msgid "" " significant contribution to the supply of affordable homes in Wales." msgstr "" -#: templates/web/default/report/display.html:216 +#: templates/web/default/report/display.html:213 #: templates/web/default/report/new/fill_in_details_form.html:210 +#: templates/web/fixmystreet/report/display.html:189 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:123 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:180 msgid "Show my name publicly" msgstr "Vis mitt navn offentlig" -#: templates/web/default/around/display_location.html:52 +#: templates/web/default/around/display_location.html:60 +#: templates/web/fixmystreet/around/display_location.html:60 +msgid "Show old" +msgstr "" + +#: templates/web/default/around/display_location.html:51 +#: templates/web/fixmystreet/around/display_location.html:52 msgid "Show pins" msgstr "Vis nåler" +#: templates/web/bromley/header.html:50 #: templates/web/default/auth/general.html:3 #: templates/web/default/auth/general.html:49 +#: templates/web/fixmystreet/auth/general.html:3 +#: templates/web/fixmystreet/auth/general.html:38 +#: templates/web/fixmystreet/auth/general.html:58 +#: templates/web/fixmystreet/header.html:50 msgid "Sign in" msgstr "Logg inn" @@ -2196,31 +2579,37 @@ msgid "Sign in by email" msgstr "Logg inn via epost" #: templates/web/default/auth/general.html:1 +#: templates/web/fixmystreet/auth/general.html:1 msgid "Sign in or create an account" msgstr "Logg inn eller opprett en konto" #: templates/web/default/auth/sign_out.html:1 -#: templates/web/default/header.html:35 -#: templates/web/emptyhomes/header.html:43 +#: templates/web/default/header.html:30 +#: templates/web/emptyhomes/header.html:41 #: templates/web/fiksgatami/header.html:22 +#: templates/web/fiksgatami/nn/header.html:22 +#: templates/web/fixmystreet/auth/sign_out.html:1 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:37 +#: templates/web/reading/header.html:33 msgid "Sign out" msgstr "Logg ut" -#: templates/web/default/header.html:34 -#: templates/web/emptyhomes/header.html:42 +#: templates/web/default/header.html:29 +#: templates/web/emptyhomes/header.html:40 #: templates/web/fiksgatami/header.html:21 +#: templates/web/fiksgatami/nn/header.html:21 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:36 +#: templates/web/reading/header.html:32 msgid "Signed in as %s" msgstr "Logget inn som %s" #: templates/web/default/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 msgid "Some categories may require additional information." msgstr "Noen kategorier krever kanskje mer informasjon" -#: templates/web/default/alert/index.html:31 +#: templates/web/default/alert/index.html:30 +#: templates/web/fixmystreet/alert/index.html:33 msgid "Some photos of recent reports" msgstr "Noen bilder av nylig meldte problemer" @@ -2233,7 +2622,7 @@ msgstr "Noe tekst å oversette" msgid "Some unconfirmeds" msgstr "Noen ubekreftede" -#: perllib/FixMyStreet/Cobrand/Default.pm:517 +#: perllib/FixMyStreet/Cobrand/Default.pm:428 msgid "" "Sorry, that appears to be a Crown dependency postcode, which we don't cover." msgstr "" @@ -2246,17 +2635,19 @@ msgstr "" "Beklager, men det oppsto et problem når vi forsøkte å bekrefte " "problemrapporten din" -#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:52 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:147 +#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:53 #: perllib/FixMyStreet/Geocode/Google.pm:68 msgid "Sorry, we could not find that location." msgstr "Beklager, vi kunne ikke finne det stedet." -#: perllib/FixMyStreet/Geocode/Bing.pm:45 +#: perllib/FixMyStreet/Geocode/Bing.pm:46 #: perllib/FixMyStreet/Geocode/Google.pm:60 msgid "Sorry, we could not parse that location. Please try again." msgstr "Beklager, vi kunne ikke tolke den posisjonen. Vennligst prøv på nytt." #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "Source code" msgstr "Kildekode" @@ -2275,20 +2666,32 @@ msgstr "Startmåned:" #: templates/web/default/admin/list_flagged.html:18 #: templates/web/default/admin/list_updates.html:6 #: templates/web/default/admin/search_reports.html:21 +#: templates/web/fixmystreet/report/display.html:77 msgid "State" msgstr "Tilstand" -#: templates/web/default/admin/report_edit.html:21 +#: templates/web/default/admin/report_edit.html:17 #: templates/web/default/admin/update_edit.html:18 -#: templates/web/default/report/display.html:83 +#: templates/web/default/report/display.html:82 msgid "State:" msgstr "Tilstand:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:984 +#: perllib/FixMyStreet/App/Controller/Admin.pm:986 #: templates/web/default/admin/stats.html:1 msgid "Stats" msgstr "Statistikk" +#: templates/web/default/report/updates.html:9 +#, fuzzy +msgid "Still open, via questionnaire, %s" +msgstr "Skal det sendes spørreskjema?" + +#: templates/web/fixmystreet/contact/index.html:79 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:58 +#, fuzzy +msgid "Subject" +msgstr "Emne:" + #: templates/web/default/admin/report_edit.html:13 #: templates/web/default/contact/index.html:83 #: templates/web/default/report/new/fill_in_details_form.html:52 @@ -2299,40 +2702,48 @@ msgstr "Emne:" #: templates/web/default/report/new/fill_in_details_form.html:114 #: templates/web/default/report/new/fill_in_details_form.html:154 #: templates/web/default/report/new/fill_in_details_form.html:176 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:134 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:195 msgid "Submit" msgstr "Send inn" -#: templates/web/default/admin/report_edit.html:50 +#: templates/web/default/admin/report_edit.html:55 #: templates/web/default/admin/update_edit.html:51 #: templates/web/default/admin/user_edit.html:20 msgid "Submit changes" msgstr "Send inn endringer" -#: templates/web/default/questionnaire/index.html:114 +#: templates/web/default/questionnaire/index.html:112 +#: templates/web/fixmystreet/questionnaire/index.html:105 msgid "Submit questionnaire" msgstr "Send inn spørreskjema" #: templates/web/default/alert/updates.html:17 #: templates/web/default/report/display.html:43 +#: templates/web/fixmystreet/alert/updates.html:23 +#: templates/web/fixmystreet/report/display.html:42 msgid "Subscribe" msgstr "Abonner" -#: templates/web/default/alert/list.html:128 +#: templates/web/default/alert/list.html:126 +#: templates/web/fixmystreet/alert/_list.html:88 msgid "Subscribe me to an email alert" msgstr "Jeg ønsker å abonnere på e-postvarsel" -#: perllib/FixMyStreet/App/Controller/Admin.pm:976 +#: perllib/FixMyStreet/App/Controller/Admin.pm:978 #: templates/web/default/admin/index.html:1 msgid "Summary" msgstr "Oppsummering" #: templates/web/default/reports/index.html:1 #: templates/web/emptyhomes/reports/index.html:1 +#: templates/web/fiksgatami/nn/reports/index.html:1 #: templates/web/fiksgatami/reports/index.html:1 msgid "Summary reports" msgstr "Oppsummeringsrapporter" -#: perllib/FixMyStreet/App/Controller/Admin.pm:980 +#: perllib/FixMyStreet/App/Controller/Admin.pm:982 #: templates/web/default/admin/questionnaire.html:1 msgid "Survey Results" msgstr "Resultater fra spørreundersøkelsen" @@ -2341,7 +2752,7 @@ msgstr "Resultater fra spørreundersøkelsen" msgid "Text" msgstr "Tekst" -#: templates/web/default/admin/council_contacts.html:12 +#: templates/web/default/admin/council_contacts.html:14 msgid "Text only version" msgstr "Tekst-versjon" @@ -2397,7 +2808,8 @@ msgstr "" "Takk for at du bruker ReportEmptyHomes.com. Ditt bidrag bidrar allerede for " "å løse UKs tomme hjem-krise." -#: templates/web/default/around/around_index.html:44 +#: templates/web/default/around/around_index.html:43 +#: templates/web/fixmystreet/around/around_index.html:46 msgid "" "Thanks for uploading your photo. We now need to locate your problem, so " "please enter a nearby street name or postcode in the box below :" @@ -2418,12 +2830,13 @@ msgstr "" "Takk, glad for å høre at problemet er fikset! Vi vil gjerne spørre deg om du " "har rapportert et problem til en administrasjon tidligere?" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:839 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:856 msgid "" "That image doesn't appear to have uploaded correctly (%s), please try again." msgstr "Bildet ser ikke ut til å blitt lastet opp riktig (%s), prøv på nytt." #: templates/web/default/alert/index.html:12 +#: templates/web/fixmystreet/alert/index.html:12 msgid "" "That location does not appear to be covered by a council, perhaps it is " "offshore - please try somewhere more specific." @@ -2436,12 +2849,12 @@ msgstr "" msgid "That location does not appear to be in Britain; please try again." msgstr "Det stedet virker ikke å være i Storbritannia. Vennligst prøv igjen." -#: perllib/FixMyStreet/Cobrand/Default.pm:510 +#: perllib/FixMyStreet/Cobrand/Default.pm:421 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:78 msgid "That postcode was not recognised, sorry." msgstr "Det postnummeret ble ikke gjenkjent, beklager." -#: perllib/FixMyStreet/App/Controller/Admin.pm:558 +#: perllib/FixMyStreet/App/Controller/Admin.pm:560 msgid "That problem will now be resent." msgstr "Det problemet vil nå bli sendt på nytt." @@ -2449,7 +2862,8 @@ msgstr "Det problemet vil nå bli sendt på nytt." msgid "That report has been removed from FixMyStreet." msgstr "Den rapporten har blitt fjernet fra FiksGataMi." -#: templates/web/default/around/around_index.html:27 +#: templates/web/default/around/around_index.html:26 +#: templates/web/fixmystreet/around/around_index.html:29 msgid "" "That spot does not appear to be covered by a council. If you have tried to " "report an issue past the shoreline, for example, please specify the closest " @@ -2491,6 +2905,7 @@ msgstr "" #: templates/web/default/auth/token.html:21 #: templates/web/default/email_sent.html:22 +#: templates/web/fixmystreet/auth/token.html:21 msgid "" "The confirmation email <strong>may</strong> take a few minutes to arrive " "— <em>please</em> be patient." @@ -2498,15 +2913,39 @@ msgstr "" "Bekreftelsese-posten <strong>kan</strong> bruke noen minutter før den kommer " "frem — så vær tålmodig." -#: templates/web/default/questionnaire/index.html:51 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:3 +#, fuzzy +msgid "" +"The council won’t be able to help unless you leave as much\n" +"detail as you can. Please describe the exact location of the problem (e.g. " +"on a\n" +"wall), what it is, how long it has been there, a description (and a photo " +"of\n" +"the problem if you have one), etc." +msgstr "" +"Vennligst fyll inn detaljene om problemet under. Administrasjonen vil ikke " +"være i stand\n" +"til å hjelpe med mindre du legger inn så mange detaljer som du kan. Beskriv\n" +"eksakt plassering for problemet (f.eks. på en vegg), hva det er, hvor lenge " +"det har\n" +"vært der, en beskrivelse (og et bilde av problemet hvis du har et), osv." + +#: templates/web/fixmystreet/questionnaire/index.html:43 +#, fuzzy +msgid "The details of your problem are available from the other tab above." +msgstr "" +"Detaljene om ditt problem er tilgjengelig på høyre kant av denne siden." + +#: templates/web/default/questionnaire/index.html:49 msgid "" "The details of your problem are available on the right hand side of this " "page." msgstr "" "Detaljene om ditt problem er tilgjengelig på høyre kant av denne siden." -#: perllib/FixMyStreet/App/Controller/Reports.pm:46 -#: perllib/FixMyStreet/App/Controller/Reports.pm:73 +#: perllib/FixMyStreet/App/Controller/Reports.pm:44 +#: perllib/FixMyStreet/App/Controller/Reports.pm:71 msgid "The error was: %s" msgstr "Feilen var: %s" @@ -2583,6 +3022,8 @@ msgstr "De siste rapporter innenfor grensen til {{NAME}} rapportert av brukere" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:16 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:16 msgid "The passwords do not match" msgstr "Passordene er ikke like" @@ -2591,14 +3032,15 @@ msgstr "Passordene er ikke like" msgid "The requested URL '%s' was not found on this server" msgstr "Den forespurte URL '%s' ble ikke funnet på denne tjeneren" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1034 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1179 -#: perllib/FixMyStreet/App/Controller/Admin.pm:538 -#: perllib/FixMyStreet/App/Controller/Admin.pm:701 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1036 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1206 +#: perllib/FixMyStreet/App/Controller/Admin.pm:540 +#: perllib/FixMyStreet/App/Controller/Admin.pm:703 msgid "The requested URL was not found on this server." msgstr "Den forespurte URL-en ble ikke funnet på denne tjeneren" -#: templates/web/default/alert/list.html:47 +#: templates/web/default/alert/list.html:45 +#: templates/web/fixmystreet/alert/_list.html:16 msgid "The simplest alert is our geographic one:" msgstr "Den enkleste meldingen er vår geografiske:" @@ -2606,6 +3048,10 @@ msgstr "Den enkleste meldingen er vår geografiske:" #: templates/web/default/report/new/councils_text_some.html:10 #: templates/web/default/report/new/councils_text_some.html:11 #: templates/web/default/report/new/fill_in_details_form.html:17 +#: templates/web/fixmystreet/report/new/councils_text_all.html:18 +#: templates/web/fixmystreet/report/new/councils_text_some.html:10 +#: templates/web/fixmystreet/report/new/councils_text_some.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:12 msgid "" "The subject and details of the problem will be public, plus your name if you " "give us permission." @@ -2613,7 +3059,7 @@ msgstr "" "Tittelen og detaljene for problemet vil bli offentlig, pluss navnet ditt\n" "hvis du gir oss tillatelse til det." -#: bin/send-reports:78 +#: bin/send-reports:79 msgid "" "The user could not locate the problem on a map, but to see the area around " "the location they entered" @@ -2621,45 +3067,44 @@ msgstr "" "Brukeren kunne ikke plassere problemet på et kart, men sjekk området rundt " "stedet de skrev inn" -#: perllib/FixMyStreet/App/Controller/Reports.pm:72 +#: perllib/FixMyStreet/App/Controller/Reports.pm:70 msgid "" "There was a problem showing the All Reports page. Please try again later." msgstr "" "Det var problemer med å vise 'Alle rapporter'-siden. Vennligst prøv igjen " "senere." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:641 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:656 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:125 #: templates/web/default/auth/general.html:23 +#: templates/web/fixmystreet/auth/general.html:24 +#, fuzzy msgid "" -"There was a problem with your email/password combination. Passwords and user " -"accounts are a brand <strong>new</strong> service, so you probably do not " -"have one yet – please fill in the right hand side of this form to get " -"one." +"There was a problem with your email/password combination. If you cannot " +"remember your password, or do not have one, please fill in the ‘sign " +"in by email’ section of the form." msgstr "" "Det var problemer med din epost/passord-kombinasjon. Passord og " "brukerkontoer er en helt <strong>ny</strong> tjeneste, så du har antagelig " "ikke en konto ennå. – vær så snill å fyll inn høyresiden av dette " "skjemaet for å skaffe deg en." -#: perllib/FixMyStreet/App/Controller/Alert.pm:354 +#: perllib/FixMyStreet/App/Controller/Alert.pm:351 msgid "" "There was a problem with your email/password combination. Please try again." msgstr "" "Det var problemer med din epost/passord-kombinasjon. Vær så snill å forsøk " "igjen." -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:215 msgid "There was a problem with your update. Please try again." -msgstr "" -"Det var problemer med din oppdatering. Vær så snill å forsøk " -"igjen." +msgstr "Det var problemer med din oppdatering. Vær så snill å forsøk igjen." #: perllib/FixMyStreet/App/Controller/Contact.pm:117 msgid "There were problems with your report. Please see below." msgstr "Det var problemer med din rapport. Vennligst se under." -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:241 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:242 msgid "There were problems with your update. Please see below." msgstr "Det var problemer med din oppdatering. Vennligst se under." @@ -2671,7 +3116,7 @@ msgstr "" "Denne API-implementasjonen er under arbeid og ennå ikke stabil. Den vil " "endre seg uten advarsel i fremtiden." -#: bin/send-reports:185 +#: bin/send-reports:186 msgid "" "This email has been sent to both councils covering the location of the " "problem, as the user did not categorise it; please ignore it if you're not " @@ -2684,7 +3129,7 @@ msgstr "" "eller gi oss beskjed om hvilken kategori av problemer dette er så vi kan " "legge det til i vårt system." -#: bin/send-reports:188 +#: bin/send-reports:189 msgid "" "This email has been sent to several councils covering the location of the " "problem, as the category selected is provided for all of them; please ignore " @@ -2695,7 +3140,7 @@ msgstr "" "snill å ignorere e-posten hvis dere ikke er korrekt administrasjon for å " "håndtere denne saken." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:761 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 msgid "This information is required" msgstr "Denne informasjonen er påkrevd" @@ -2707,16 +3152,17 @@ msgstr "" "Dette er et utviklernettsted. Ting kan knekke når som helst og databasen vil " "bli periodisk slettet." -#: templates/web/default/reports/council.html:65 +#: templates/web/emptyhomes/reports/council.html:58 msgid "This is a summary of all reports for one %s." msgstr "Dette er en oppsummering av alle rapporter for en %s." -#: templates/web/default/reports/council.html:67 +#: templates/web/emptyhomes/reports/council.html:60 msgid "This is a summary of all reports for this %s." msgstr "Dette er en oppsummering for alle rapporter for denne %s." -#: templates/web/default/reports/index.html:4 +#: templates/web/default/reports/index.html:7 #: templates/web/emptyhomes/reports/index.html:4 +#: templates/web/fiksgatami/nn/reports/index.html:4 #: templates/web/fiksgatami/reports/index.html:4 msgid "" "This is a summary of all reports on this site; select a particular council " @@ -2725,47 +3171,49 @@ msgstr "" "Dette er en opplisting av alle problemene i denne tjenesten; velg en bestemt " "administrasjon for å se problemer som er sendt dit." -#: perllib/FixMyStreet/Cobrand/Default.pm:926 +#: perllib/FixMyStreet/Cobrand/Default.pm:874 msgid "This problem has been closed" msgstr "Dette problemet er lukket" -#: perllib/FixMyStreet/Cobrand/Default.pm:922 +#: perllib/FixMyStreet/Cobrand/Default.pm:870 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 -#: templates/web/default/report/display.html:101 +#: templates/web/default/report/display.html:100 +#: templates/web/fixmystreet/report/display.html:95 msgid "This problem has been fixed" msgstr "Dette problemet er løst" -#: templates/web/default/report/display.html:96 +#: templates/web/default/report/display.html:95 +#: templates/web/fixmystreet/report/display.html:89 msgid "This problem has not been fixed" msgstr "Dette problemet har ikke blitt løst" -#: perllib/FixMyStreet/Cobrand/Default.pm:931 +#: perllib/FixMyStreet/Cobrand/Default.pm:879 msgid "This problem is in progress" msgstr "Dette problemet er under arbeid" -#: perllib/FixMyStreet/Cobrand/Default.pm:918 +#: perllib/FixMyStreet/Cobrand/Default.pm:866 msgid "This problem is old and of unknown status." msgstr "Dette problemet er gammel og med ukjent status." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 msgid "This report is currently marked as closed." msgstr "Denne rapporten er for tiden markert som lukket." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 msgid "This report is currently marked as fixed." msgstr "Denne rapporten er for tiden markert som fikset." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:83 msgid "This report is currently marked as open." msgstr "Denne rapporten er for tiden markert som åpen." -#: bin/send-reports:71 +#: bin/send-reports:72 msgid "" "This web page also contains a photo of the problem, provided by the user." msgstr "" "Denne nettsiden inneholder også et bilde av problemet, sendt inn av brukeren." -#: perllib/FixMyStreet/App/Controller/Admin.pm:979 +#: perllib/FixMyStreet/App/Controller/Admin.pm:981 #: templates/web/default/admin/timeline.html:1 msgid "Timeline" msgstr "Tidslinje" @@ -2775,13 +3223,29 @@ msgstr "Tidslinje" msgid "Title" msgstr "Tittel" -#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:69 +#, fuzzy +msgid "" +"To <strong>report a problem</strong>, click on the map at the correct " +"location." +msgstr "" +"For å <strong>rapportere et problem</strong>, klikk på kartet på riktig sted." + +#: templates/web/emptyhomes/around/display_location.html:35 msgid "" "To <strong>report a problem</strong>, simply click on the map at the correct " "location." msgstr "" "For å <strong>rapportere et problem</strong>, klikk på kartet på riktig sted." +#: templates/web/fixmystreet/alert/index.html:19 +#, fuzzy +msgid "" +"To find out what local alerts we have for you, please enter your GB\n" +" postcode or street name and area" +msgstr "" +"Du finner lokale problemer ved å søke på ditt postnummer, veinavn eller sted:" + #: templates/web/default/alert/index.html:21 msgid "" "To find out what local alerts we have for you, please enter your GB\n" @@ -2789,7 +3253,7 @@ msgid "" msgstr "" "Du finner lokale problemer ved å søke på ditt postnummer, veinavn eller sted:" -#: bin/send-reports:77 +#: bin/send-reports:78 msgid "To view a map of the precise location of this issue" msgstr "For å se en kart med en mer presis plassering for dette problemet." @@ -2800,17 +3264,22 @@ msgstr "For å se en kart med en mer presis plassering for dette problemet." msgid "Total" msgstr "Totalt" -#: perllib/FixMyStreet/App/Controller/Reports.pm:45 +#: perllib/FixMyStreet/App/Controller/Reports.pm:43 msgid "Unable to look up areas in MaPit. Please try again later." msgstr "Klarte ikke slå opp områder i MaPit. Vennligst forsøk igjen senere." -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 msgid "Unconfirmed" msgstr "Ubekreftet" -#: perllib/FixMyStreet/App/Controller/Rss.pm:163 +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:16 +#, fuzzy +msgid "Unknown" +msgstr "*ukjent*" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:164 msgid "Unknown alert type" msgstr "Ukjent varsel-type" @@ -2818,15 +3287,22 @@ msgstr "Ukjent varsel-type" msgid "Unknown problem ID" msgstr "Ukjent problem-Id" +#: templates/web/fixmystreet/report/display.html:70 +#, fuzzy +msgid "Update" +msgstr "Oppdatering:" + #: templates/web/default/admin/timeline.html:35 msgid "Update %s created for problem %d; by %s" msgstr "Oppdatering %s opprettet for problem %d, av %s" #: templates/web/default/contact/index.html:21 +#: templates/web/fixmystreet/contact/index.html:22 msgid "Update below added anonymously at %s" msgstr "Oppdateringen under lagt inn anonymt %s" #: templates/web/default/contact/index.html:23 +#: templates/web/fixmystreet/contact/index.html:24 msgid "Update below added by %s at %s" msgstr "Oppdateringen under lagt til av %s %s" @@ -2850,22 +3326,23 @@ msgstr "En oppdatering markerte dette problemet som fikset." msgid "Update reopened problem" msgstr "En oppdatering gjennåpnet problemet" -#: templates/web/default/admin/council_contacts.html:53 +#: templates/web/default/admin/council_contacts.html:58 msgid "Update statuses" msgstr "Oppdater tilstanden" -#: templates/web/default/report/display.html:77 +#: templates/web/default/report/display.html:76 msgid "Update:" msgstr "Oppdatering:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:647 -#: perllib/FixMyStreet/App/Controller/Admin.pm:764 -#: perllib/FixMyStreet/App/Controller/Admin.pm:844 +#: perllib/FixMyStreet/App/Controller/Admin.pm:649 +#: perllib/FixMyStreet/App/Controller/Admin.pm:766 +#: perllib/FixMyStreet/App/Controller/Admin.pm:846 msgid "Updated!" msgstr "Oppdatert!" #: templates/web/default/admin/list_updates.html:1 -#: templates/web/default/report/updates.html:4 +#: templates/web/default/report/update.html:3 +#: templates/web/fixmystreet/report/update.html:3 msgid "Updates" msgstr "Oppdateringer" @@ -2875,14 +3352,16 @@ msgstr "Oppdateringer av {{title}}" #: templates/web/default/report/display.html:0 #: templates/web/default/report/display.html:7 +#: templates/web/fixmystreet/report/display.html:0 +#: templates/web/fixmystreet/report/display.html:7 msgid "Updates to this problem, FixMyStreet" msgstr "Oppdateringer til dette problemet, FiksGataMi" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1137 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1139 msgid "User flag removed" msgstr "Brukerflagg fjernet" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1109 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1111 msgid "User flagged" msgstr "Bruker flagget" @@ -2890,8 +3369,8 @@ msgstr "Bruker flagget" msgid "Users" msgstr "Brukere" -#: perllib/FixMyStreet/App/Controller/Admin.pm:304 -#: perllib/FixMyStreet/App/Controller/Admin.pm:334 +#: perllib/FixMyStreet/App/Controller/Admin.pm:306 +#: perllib/FixMyStreet/App/Controller/Admin.pm:336 msgid "Values updated" msgstr "Verdier oppdatert" @@ -2906,25 +3385,37 @@ msgstr "Vis din rapport" #: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:33 +#: templates/web/emptyhomes/around/display_location.html:0 +#: templates/web/emptyhomes/around/display_location.html:16 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:33 msgid "Viewing a location" msgstr "Ser på et sted" #: templates/web/default/report/display.html:0 +#: templates/web/emptyhomes/report/display.html:1 +#: templates/web/emptyhomes/report/display.html:2 +#: templates/web/fixmystreet/report/display.html:0 msgid "Viewing a problem" msgstr "Ser på et problem" -#: templates/web/default/reports/council.html:22 +#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:74 +#: templates/web/default/reports/council.html:86 +#: templates/web/emptyhomes/reports/council.html:18 msgid "Wards of this council" msgstr "Bydeler innenfor denne administrasjonen" -#: perllib/FixMyStreet/Cobrand/Default.pm:521 -#: perllib/FixMyStreet/Geocode/Bing.pm:47 +#: perllib/FixMyStreet/Cobrand/Default.pm:432 +#: perllib/FixMyStreet/Geocode/Bing.pm:48 #: perllib/FixMyStreet/Geocode/Google.pm:63 msgid "We do not currently cover Northern Ireland, I'm afraid." msgstr "Vi dekker desverre ikke Nord-Irland." #: templates/web/default/alert/choose.html:6 -#: templates/web/default/around/around_index.html:33 +#: templates/web/default/around/around_index.html:32 +#: templates/web/fixmystreet/alert/choose.html:6 +#: templates/web/fixmystreet/around/around_index.html:35 msgid "" "We found more than one match for that location. We show up to ten matches, " "please try a different search if yours is not here." @@ -2933,6 +3424,7 @@ msgstr "" "forsøk et annet søk hvis din plass ikke er her." #: templates/web/default/auth/token.html:19 +#: templates/web/fixmystreet/auth/token.html:19 msgid "We have sent you an email containing a link to confirm your account." msgstr "" "Vi har sendt deg en epost som inneholder link for å bekrefte din konto." @@ -2946,7 +3438,18 @@ msgstr "" "Det kan hende vi periodisk tar kontakt med deg for å spørre om noe har " "endret seg med eiedommen du rapporterte." -#: bin/send-reports:195 +#: templates/web/fixmystreet/report/display.html:158 +#, fuzzy +msgid "We never show your email" +msgstr "(vi viser aldri din e-postadresse)" + +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:127 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:184 +#, fuzzy +msgid "We never show your email address or phone number." +msgstr "(vi viser aldri din e-postadresse eller telefonnummer)" + +#: bin/send-reports:196 msgid "" "We realise this problem might be the responsibility of %s; however, we don't " "currently have any contact details for them. If you know of an appropriate " @@ -2956,11 +3459,13 @@ msgstr "" "tiden kontaktinformasjon for dem. Hvis du vet om en egnet kontaktadresse, ta " "kontakt med oss." -#: templates/web/default/index.html:46 +#: templates/web/default/index.html:45 templates/web/emptyhomes/index.html:61 +#: templates/web/fixmystreet/index.html:56 msgid "We send it to the council on your behalf" msgstr "Vi sender til administrasjon på dine vegne" #: templates/web/default/report/new/notes.html:5 +#: templates/web/fixmystreet/report/new/notes.html:4 msgid "" "We will only use your personal information in accordance with our <a href=\"/" "faq#privacy\">privacy policy.</a>" @@ -2987,7 +3492,7 @@ msgstr "" "Vi ønsker å få din tilbakemelding om hva du mener om denne tjenesten. Bare " "fyll ut skjemaet, eller send en e-post <a href='mailto:%s'>%s</a>:" -#: templates/web/default/admin/council_contacts.html:32 +#: templates/web/default/admin/council_contacts.html:37 #: templates/web/default/admin/council_edit.html:41 msgid "When edited" msgstr "Når redigert" @@ -2997,7 +3502,7 @@ msgstr "Når redigert" msgid "When sent" msgstr "Når sendt" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:523 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:538 msgid "Whole block of empty flats" msgstr "Hel blokk med tomme leiligheter" @@ -3012,7 +3517,23 @@ msgstr "" "enkelt adminstrasjon. Søktetermen er administrasjons-IDen som oppgitt av <a " "href=\"%s\">MaPit</a>." -#: templates/web/default/questionnaire/index.html:104 +#: templates/web/fixmystreet/footer.html:23 +msgid "" +"Would you like better integration with FixMyStreet? <a href=\"/for-councils" +"\">Find out about FixMyStreet for councils</a>." +msgstr "" + +#: templates/web/fixmystreet/footer.html:19 +#, fuzzy +msgid "" +"Would you like to contribute to FixMyStreet? Our code is open source and <a " +"href=\"http://github.com/mysociety/fixmystreet\">available on GitHub</a>." +msgstr "" +"Vår kildekode er fri programvare og <a href=\"http://github.com/mysociety/" +"fixmystreet\">tilgjengelig på GitHub</a>." + +#: templates/web/default/questionnaire/index.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:96 msgid "" "Would you like to receive another questionnaire in 4 weeks, reminding you to " "check the status?" @@ -3021,6 +3542,7 @@ msgstr "" "sjekke status?" #: templates/web/default/report/new/notes.html:8 +#: templates/web/fixmystreet/report/new/notes.html:7 msgid "" "Writing your message entirely in block capitals makes it hard to read, as " "does a lack of punctuation." @@ -3032,24 +3554,33 @@ msgstr "" msgid "Year" msgstr "År" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:5 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:27 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/search_users.html:23 #: templates/web/default/admin/update_edit.html:15 #: templates/web/default/questionnaire/creator_fixed.html:14 -#: templates/web/default/questionnaire/index.html:107 -#: templates/web/default/questionnaire/index.html:68 +#: templates/web/default/questionnaire/index.html:105 +#: templates/web/default/questionnaire/index.html:66 +#: templates/web/fixmystreet/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:99 msgid "Yes" msgstr "Ja" +#: templates/web/fixmystreet/report/display.html:138 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:153 +#, fuzzy +msgid "Yes I have a password" +msgstr "<strong>Ja</strong>, jeg har et passord:" + #: templates/web/default/contact/index.html:37 +#: templates/web/fixmystreet/contact/index.html:38 msgid "" "You are reporting the following problem report for being abusive, containing " "personal information, or similar:" @@ -3058,6 +3589,7 @@ msgstr "" "informasjon eller lignende:" #: templates/web/default/contact/index.html:15 +#: templates/web/fixmystreet/contact/index.html:16 msgid "" "You are reporting the following update for being abusive, containing " "personal information, or similar:" @@ -3065,7 +3597,7 @@ msgstr "" "Du rapporterer at følgende oppdatering er støtende, inneholder personlig " "informasjon, eller lignende:" -#: templates/web/default/reports/council.html:71 +#: templates/web/emptyhomes/reports/council.html:64 msgid "" "You can <a href=\"%s\">view all reports for the council</a> or <a href=\"/" "reports\">show all councils</a>." @@ -3073,7 +3605,7 @@ msgstr "" "Du kan <a href=\"%s\">se alle rapporter for administrasjonen</a> eller <a " "href=\"/reports\">se alle administrasjonene</a>." -#: templates/web/default/reports/council.html:73 +#: templates/web/emptyhomes/reports/council.html:66 msgid "You can <a href=\"/reports\">show all councils</a>." msgstr "Du kan <a href=\"/reports/\">se alle administrasjoner</a>." @@ -3081,6 +3613,10 @@ msgstr "Du kan <a href=\"/reports/\">se alle administrasjoner</a>." #: templates/web/default/report/new/councils_text_none.html:16 #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:22 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:22 msgid "" "You can help us by finding a contact email address for local problems for %s " "and emailing it to us at <a href='mailto:%s'>%s</a>." @@ -3097,8 +3633,10 @@ msgstr "" "vennligst <a href='%s'>ta kontakt</a>, eller <a href='%s'>se på ditt " "problem</a>.\n" -#: templates/web/default/questionnaire/index.html:94 +#: templates/web/default/questionnaire/index.html:92 #: templates/web/default/report/new/fill_in_details_form.html:93 +#: templates/web/fixmystreet/questionnaire/index.html:87 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:101 msgid "" "You have already attached a photo to this report, attaching another one will " "replace it." @@ -3106,7 +3644,8 @@ msgstr "" "Du har allerede lagt ved et bilde til dette problemet. Å legge ved et annet " "vil bytte ut dette." -#: templates/web/default/report/display.html:112 +#: templates/web/default/report/display.html:111 +#: templates/web/fixmystreet/report/display.html:105 msgid "" "You have already attached a photo to this update, attaching another one will " "replace it." @@ -3115,12 +3654,15 @@ msgstr "" "annet vil bytte ut dette." #: templates/web/default/auth/sign_out.html:3 +#: templates/web/fixmystreet/auth/sign_out.html:3 msgid "You have been signed out" msgstr "Du er allerede logget ut" #: templates/web/default/report/new/fill_in_details_form.html:7 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:27 +#, fuzzy msgid "" -"You have located the problem at the point marked with a purple pin on the " +"You have located the problem at the point marked with a green pin on the " "map. If this is not the correct location, simply click on the map again. " msgstr "" "Du har plassert problemet ved punktet i kartet som er markert med en lilla " @@ -3153,7 +3695,7 @@ msgstr "Du har lykkes med å opprette ditt varsel." msgid "You have successfully deleted your alert." msgstr "Sletting av ditt varsel var vellykket." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:647 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:662 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:131 msgid "" "You have successfully signed in; please check and confirm your details are " @@ -3175,37 +3717,86 @@ msgid "You really want to resend?" msgstr "Ønsker du virkelig å sende på nytt?" #: templates/web/default/my/my.html:0 templates/web/default/my/my.html:14 -#: templates/web/default/my/my.html:3 +#: templates/web/default/my/my.html:3 templates/web/fixmystreet/my/my.html:0 +#: templates/web/fixmystreet/my/my.html:14 +#: templates/web/fixmystreet/my/my.html:3 msgid "Your Reports" msgstr "Dine rapporter" +#: templates/web/fixmystreet/alert/_list.html:85 +#: templates/web/fixmystreet/alert/updates.html:19 +#: templates/web/fixmystreet/alert/updates.html:22 +#: templates/web/fixmystreet/contact/index.html:72 +#: templates/web/fixmystreet/report/display.html:39 +#: templates/web/fixmystreet/report/display.html:41 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:139 +#, fuzzy +msgid "Your email" +msgstr "Din e-post" + +#: templates/web/fixmystreet/auth/general.html:26 +#: templates/web/fixmystreet/report/display.html:129 +#, fuzzy +msgid "Your email address" +msgstr "Din e-postadresse:" + #: templates/web/default/auth/general.html:27 msgid "Your email address:" msgstr "Din e-postadresse:" -#: templates/web/default/alert/list.html:122 -#: templates/web/default/report/display.html:134 +#: templates/web/default/alert/list.html:120 +#: templates/web/default/report/display.html:133 #: templates/web/default/report/new/fill_in_details_form.html:124 msgid "Your email:" msgstr "Din e-post" +#: templates/web/fixmystreet/auth/general.html:53 +#: templates/web/fixmystreet/contact/index.html:65 +#: templates/web/fixmystreet/report/display.html:185 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:118 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:175 +#, fuzzy +msgid "Your name" +msgstr "Ditt navn:" + #: templates/web/default/auth/general.html:59 #: templates/web/default/contact/index.html:68 -#: templates/web/default/report/display.html:210 +#: templates/web/default/report/display.html:207 #: templates/web/default/report/new/fill_in_details_form.html:203 msgid "Your name:" msgstr "Ditt navn:" +#: templates/web/fixmystreet/auth/general.html:37 +#: templates/web/fixmystreet/report/display.html:143 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:158 +#, fuzzy +msgid "Your password" +msgstr "Dine rapporter" + #: templates/web/default/auth/change_password.html:6 +#: templates/web/fixmystreet/auth/change_password.html:6 msgid "Your password has been changed" msgstr "Ditt passord har blitt endret" -#: templates/web/default/footer.html:7 templates/web/fiksgatami/footer.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:131 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:189 +msgid "Your phone number" +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:16 +#, fuzzy +msgid "Your report" +msgstr "Dine oppdateringer" + +#: templates/web/bromley/footer.html:35 templates/web/default/footer.html:9 +#: templates/web/fiksgatami/footer.html:6 +#: templates/web/fiksgatami/nn/footer.html:6 +#: templates/web/fixmystreet/footer.html:47 #: templates/web/reading/footer.html:7 msgid "Your reports" msgstr "Dine oppdateringer" -#: templates/web/default/my/my.html:45 +#: templates/web/default/my/my.html:45 templates/web/fixmystreet/my/my.html:45 msgid "Your updates" msgstr "Dine oppdateringer" @@ -3219,6 +3810,8 @@ msgstr "av %s" #: templates/web/default/reports/council.html:6 #: templates/web/default/reports/council.html:7 +#: templates/web/emptyhomes/reports/council.html:6 +#: templates/web/emptyhomes/reports/council.html:7 msgid "council" msgstr "administrasjon" @@ -3226,6 +3819,11 @@ msgstr "administrasjon" msgid "didn't use map" msgstr "brukte ikke kart" +#: templates/web/fixmystreet/alert/index.html:24 +#: templates/web/fixmystreet/index.html:41 +msgid "e.g. ‘%s’ or ‘%s’" +msgstr "" + #: templates/web/default/admin/index.html:15 msgid "from %d different users" msgstr "fra %d forskjellige brukere" @@ -3234,11 +3832,11 @@ msgstr "fra %d forskjellige brukere" msgid "less than a minute" msgstr "mindre enn et minutt" -#: templates/web/default/report/updates.html:18 +#: templates/web/default/report/updates.html:24 msgid "marked as %s" msgstr "markert som %s" -#: templates/web/default/report/updates.html:16 +#: templates/web/default/report/updates.html:22 msgid "marked as fixed" msgstr "markert som fikset" @@ -3248,7 +3846,8 @@ msgstr "markert som fikset" msgid "n/a" msgstr "n/a" -#: templates/web/default/alert/list.html:116 +#: templates/web/default/alert/list.html:114 +#: templates/web/fixmystreet/alert/_list.html:81 msgid "or" msgstr "eller" @@ -3260,20 +3859,28 @@ msgstr "søkte etter" msgid "other areas:" msgstr "andre områder:" -#: templates/web/default/report/updates.html:17 +#: templates/web/default/report/updates.html:23 msgid "reopened" msgstr "åpnet på nytt" +#: templates/web/bromley/header.html:47 +#: templates/web/fixmystreet/header.html:47 +#, fuzzy +msgid "sign out" +msgstr "Logg ut" + #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:14 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:9 msgid "the local council" msgstr "den lokale administrasjonen" -#: perllib/FixMyStreet/DB/Result/Problem.pm:520 +#: perllib/FixMyStreet/DB/Result/Problem.pm:534 msgid "the map was not used so pin location may be inaccurate" msgstr "kartet ble ikke brukt, så nåleposisjon kan være unøyaktig" -#: bin/send-reports:176 +#: bin/send-reports:177 msgid "this type of local problem" msgstr "denne type lokalt problem" @@ -3295,6 +3902,8 @@ msgstr "bruker er eier av problemet" #: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:3 +#: templates/web/emptyhomes/reports/council.html:0 +#: templates/web/emptyhomes/reports/council.html:3 msgid "ward" msgstr "bydel" @@ -3328,14 +3937,14 @@ msgstr "vil ditt problem ikke bli publisert" msgid "your update will not be posted" msgstr "din oppdatering vil ikke bli publisert" -#: templates/web/default/front/stats.html:17 +#: templates/web/emptyhomes/front/stats.html:17 #, perl-format msgid "<big>%s</big> report recently" msgid_plural "<big>%s</big> reports recently" msgstr[0] "<big>%s</big> rapportert<br>nylig" msgstr[1] "<big>%s</big> rapportert<br>nylig" -#: templates/web/default/report/new/councils_text_none.html:5 +#: templates/web/emptyhomes/report/new/councils_text_none.html:3 #, perl-format msgid "We do not yet have details for the council that covers this location." msgid_plural "" @@ -3345,7 +3954,7 @@ msgstr[0] "" msgstr[1] "" "Vi har ennå ikke detaljer for administrasjonene som dekker dette stedet." -#: templates/web/default/front/stats.html:12 +#: templates/web/emptyhomes/front/stats.html:12 #, perl-format msgid "<big>%s</big> report in past week" msgid_plural "<big>%s</big> reports in past week" @@ -3366,7 +3975,7 @@ msgid_plural "<big>%s</big> updates on reports" msgstr[0] "<big>%s</big> rapport-<br>oppdatering" msgstr[1] "<big>%s</big> rapport-<br>oppdateringer" -#: templates/web/default/report/new/councils_text_some.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:14 #, perl-format msgid "" "We do <strong>not</strong> yet have details for the other council that " @@ -3381,6 +3990,43 @@ msgstr[1] "" "Vi har ennå <strong>ikke</strong> detaljene for de andre administrasjonene " "som dekker dette stedet." +#, fuzzy +#~ msgid "<strong>Yes</strong>, I have a password" +#~ msgstr "<strong>Ja</strong>, jeg har et passord:" + +#~ msgid "<strong>Yes</strong>, I have a password:" +#~ msgstr "<strong>Ja</strong>, jeg har et passord:" + +#~ msgid "" +#~ "<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" " +#~ "height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org" +#~ "\"><span id=\"logoie\"></span></a>" +#~ msgstr "" +#~ "<div id=\"logo\" align=\"center\"><a href=\"http://www.nuug.no/" +#~ "\">Foreningen NUUG</a></div>" + +#~ msgid "" +#~ "Are you from a council? Would you like better integration with " +#~ "FixMyStreet?" +#~ msgstr "" +#~ "Er du fra det offentlige? Kunne du tenke deg bedre integrasjon med " +#~ "FiksGataMi?" + +#~ msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" +#~ msgstr "Bygget av <a href=\"http://www.mysociety.org/\">mySociety</a>" + +#~ msgid "Hide stale reports" +#~ msgstr "Skjul utdaterte rapporter" + +#~ msgid "Include stale reports" +#~ msgstr "Inkluder utdaterte problemer" + +#~ msgid "Old fixed" +#~ msgstr "Eldre problemer som er løst" + +#~ msgid "Old problems, state unknown" +#~ msgstr "Eldre problemer med ukjent status" + #~ msgid "FixMyStreet updates" #~ msgstr "Fiksgatami-oppdateringer" diff --git a/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po b/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po index b4ec194a8..c05ddfaa6 100644 --- a/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po +++ b/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po @@ -11,16 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: matthew@mysociety.org\n" -"POT-Creation-Date: 2011-10-21 15:56+0100\n" +"POT-Creation-Date: 2012-03-28 19:23+0100\n" "PO-Revision-Date: 2011-12-08 10:56+0100\n" -"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" "Last-Translator: Anders Einar Hilden <hildenae@gmail.com>\n" +"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" +"Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: bin/send-reports:183 perllib/FixMyStreet/DB/Result/Problem.pm:535 +#: bin/send-reports:184 perllib/FixMyStreet/DB/Result/Problem.pm:549 msgid " and " msgstr " og " @@ -36,7 +37,14 @@ msgstr " og <strong>vi sender det no til administrasjonen</strong>" #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:23 #: templates/web/default/report/new/councils_text_some.html:5 -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:15 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:23 +#: templates/web/fixmystreet/report/new/councils_text_some.html:5 msgid " or " msgstr " eller " @@ -96,26 +104,28 @@ msgstr "%d veke" msgid "%d weeks" msgstr "%d veker" -#: templates/web/default/reports/council.html +#: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:14 +#: templates/web/emptyhomes/reports/council.html:11 +#: templates/web/emptyhomes/reports/council.html:13 msgid "%s - Summary reports" msgstr "%s – oppsummeringsrapportar" -#: perllib/FixMyStreet/Cobrand/Default.pm:844 -#: perllib/FixMyStreet/Cobrand/Default.pm:858 +#: perllib/FixMyStreet/Cobrand/Default.pm:792 +#: perllib/FixMyStreet/Cobrand/Default.pm:806 msgid "%s ward, %s" msgstr "%s bydel, %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:466 +#: perllib/FixMyStreet/DB/Result/Problem.pm:480 msgid "%s, reported anonymously at %s" msgstr "%s, rapportert anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:468 +#: perllib/FixMyStreet/DB/Result/Problem.pm:482 msgid "%s, reported by %s at %s" msgstr "%s, rapportert av %s %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:875 -#: perllib/FixMyStreet/Cobrand/Default.pm:889 +#: perllib/FixMyStreet/Cobrand/Default.pm:823 +#: perllib/FixMyStreet/Cobrand/Default.pm:837 msgid "%s, within %s ward" msgstr "%s, innanfor bydelen %s" @@ -131,24 +141,31 @@ msgstr "(Ingen grunn til å uroa seg — %s)" msgid "(Email in abuse table)" msgstr "(Epost i misbruktabellen)" -#: templates/web/default/alert/list.html:53 +#: templates/web/default/alert/list.html:51 +#: templates/web/fixmystreet/alert/_list.html:24 msgid "(a default distance which covers roughly 200,000 people)" msgstr "(ein standardavstand som dekkjer ein folkesetnad på omtrent 200 000)" -#: templates/web/default/alert/list.html:58 +#: templates/web/default/alert/list.html:56 +#: templates/web/fixmystreet/alert/_list.html:28 msgid "(alternatively the RSS feed can be customised, within" msgstr "(alternativt kan RSS-straumen tilpassast, innanfor" #: templates/web/default/around/around_map_list_items.html:10 #: templates/web/default/around/on_map_list_items.html:7 +#: templates/web/default/reports/council.html:134 +#: templates/web/fixmystreet/around/around_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:9 msgid "(fixed)" msgstr "(løyst)" #: templates/web/default/index.html:12 templates/web/default/index.html:8 +#: templates/web/fixmystreet/index.html:30 msgid "(like graffiti, fly tipping, broken paving slabs, or street lighting)" msgstr "(som tagging, søppel, hol i vegen, eller øydelagte gatelys)" -#: templates/web/default/reports/council.html:133 +#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:152 msgid "(not sent to council)" msgstr "(ikkje rapportert til administrasjonen)" @@ -156,7 +173,8 @@ msgstr "(ikkje rapportert til administrasjonen)" msgid "(optional)" msgstr "(valfritt)" -#: templates/web/default/reports/council.html:131 +#: templates/web/default/reports/council.html:130 +#: templates/web/default/reports/council.html:150 msgid "(sent to both)" msgstr "(sendt til begge)" @@ -164,22 +182,22 @@ msgstr "(sendt til begge)" msgid "(we never show your email address or phone number)" msgstr "(vi viser aldri e-postadressa di eller telefonnummeret ditt)" -#: templates/web/default/report/display.html:217 +#: templates/web/default/report/display.html:214 msgid "(we never show your email)" msgstr "(vi viser aldri e-postadressa di)" -#: perllib/FixMyStreet/App/Controller/Admin.pm:279 +#: perllib/FixMyStreet/App/Controller/Admin.pm:281 msgid "*unknown*" msgstr "*ukjent*" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:534 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:549 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/DB/Result/Problem.pm:337 msgid "-- Pick a category --" msgstr "-- Vel ein kategori --" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:520 -#: perllib/FixMyStreet/DB/Result/Problem.pm:320 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:535 +#: perllib/FixMyStreet/DB/Result/Problem.pm:343 msgid "-- Pick a property type --" msgstr "-- Vel ein eigedomstype --" @@ -188,18 +206,13 @@ msgstr "-- Vel ein eigedomstype --" msgid ". You can <a href=\"%s\">view the problem on this site</a>." msgstr ". Du kan <a href=\"%s\">lesa om problemet på portalen</a>." -#: templates/web/default/footer.html:13 templates/web/reading/footer.html:16 -msgid "" -"<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" " -"height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org\"><span " -"id=\"logoie\"></span></a>" -msgstr "<div id=\"logo\" align=\"center\"><a href=\"http://www.nuug.no/\">Foreininga NUUG</a></div>" - #: templates/web/default/questionnaire/completed.html:25 msgid "" "<p style=\"font-size:150%\">Thank you very much for filling in our " "questionnaire; glad to hear it’s been fixed.</p>" -msgstr "<p style=\"font-size:150%\">Tusen takk for at du fylte ut spørjeskjemaet vårt. Vi er glade for å høyra at problemet ditt er løyst.</p>" +msgstr "" +"<p style=\"font-size:150%\">Tusen takk for at du fylte ut spørjeskjemaet " +"vårt. Vi er glade for å høyra at problemet ditt er løyst.</p>" #: templates/web/default/questionnaire/completed.html:15 msgid "" @@ -212,11 +225,14 @@ msgid "" "pledge</a>?\n" "</p>" msgstr "" -"<p style=\"font-size:150%%\">Det var trist å høyra dette. Vi har to forslag: kva med å freista\n" -"<a href=\"%s\">å skriva direkte til representantane dine</a>, eller viss det er eit problem som kan fiksast\n" -"av folk i nabolaget som jobbar saman, kva med å <a href=\"http://www.pledgebank.com/new\">publisera ei utfordring om å bidra</a>?</p>" +"<p style=\"font-size:150%%\">Det var trist å høyra dette. Vi har to forslag: " +"kva med å freista\n" +"<a href=\"%s\">å skriva direkte til representantane dine</a>, eller viss det " +"er eit problem som kan fiksast\n" +"av folk i nabolaget som jobbar saman, kva med å <a href=\"http://www." +"pledgebank.com/new\">publisera ei utfordring om å bidra</a>?</p>" -#: templates/web/default/questionnaire/index.html:37 +#: templates/web/default/questionnaire/index.html:35 msgid "" "<p>Getting empty homes back into use can be difficult, but by now a good " "council\n" @@ -235,7 +251,7 @@ msgid "" "emptyhomes.com/getinvolved/campaign.html</a>.</p>\n" msgstr "" -#: templates/web/default/questionnaire/index.html:28 +#: templates/web/default/questionnaire/index.html:26 msgid "" "<p>Getting empty homes back into use can be difficult. You shouldn’t " "expect\n" @@ -262,17 +278,36 @@ msgstr "" "informasjon om status for problemet ditt, ver så snill og kom tilbake\n" "til nettstaden og legg igjen ei oppdatering.</p>" -#: templates/web/default/around/display_location.html:71 -#: templates/web/default/around/display_location.html:73 +#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:72 +#: templates/web/emptyhomes/around/display_location.html:36 +#: templates/web/emptyhomes/around/display_location.html:38 msgid "" "<small>If you cannot see the map, <a href='%s' rel='nofollow'>skip this " "step</a>.</small>" -msgstr "<small>Viss du ikkje kan sjå kartet, <a href='%s' rel='nofollow'>hopp over dette steget</a>.</small>" +msgstr "" +"<small>Viss du ikkje kan sjå kartet, <a href='%s' rel='nofollow'>hopp over " +"dette steget</a>.</small>" #: templates/web/default/admin/index.html:14 msgid "<strong>%d</strong> live problems" msgstr "<strong>%d</strong> aktive problem" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:169 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my report by email" +msgstr "<strong>Nei</strong>, la meg stadfesta rapporten min med e-post:" + +#: templates/web/fixmystreet/report/display.html:153 +#, fuzzy +msgid "<strong>No</strong> Let me confirm my update by email" +msgstr "<strong>Nei</strong>, la meg stadfesta oppdateringa mi med e-post:" + +#: templates/web/fixmystreet/auth/general.html:46 +#, fuzzy +msgid "<strong>No</strong> let me sign in by email" +msgstr "<strong>Nei</strong>, det gjer eg ikkje. La meg logga inn med e-post:" + #: templates/web/default/auth/general.html:55 msgid "<strong>No</strong>, I do not, let me sign in by email:" msgstr "<strong>Nei</strong>, det gjer eg ikkje. La meg logga inn med e-post:" @@ -281,33 +316,39 @@ msgstr "<strong>Nei</strong>, det gjer eg ikkje. La meg logga inn med e-post:" msgid "<strong>No</strong>, let me confirm my report by email:" msgstr "<strong>Nei</strong>, la meg stadfesta rapporten min med e-post:" -#: templates/web/default/report/display.html:170 +#: templates/web/default/report/display.html:169 msgid "<strong>No</strong>, let me confirm my update by email:" msgstr "<strong>Nei</strong>, la meg stadfesta oppdateringa mi med e-post:" #: templates/web/default/auth/general.html:37 -#: templates/web/default/report/display.html:148 +#: templates/web/default/report/display.html:147 #: templates/web/default/report/new/fill_in_details_form.html:140 -msgid "<strong>Yes</strong>, I have a password:" +#: templates/web/fixmystreet/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:34 +#: templates/web/fixmystreet/report/display.html:136 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:151 +#, fuzzy +msgid "<strong>Yes</strong> I have a password" msgstr "<strong>Ja</strong>, eg har eit passord:" #: templates/web/default/static/about.html:1 #: templates/web/default/static/about.html:3 -#: templates/web/emptyhomes/header.html:31 +#: templates/web/emptyhomes/header.html:29 #: templates/web/emptyhomes/static/about.html:1 #: templates/web/emptyhomes/static/about.html:3 msgid "About us" msgstr "Om oss" -#: templates/web/default/admin/council_contacts.html:57 +#: templates/web/default/admin/council_contacts.html:62 msgid "Add new category" msgstr "Legg til ny kategori" -#: templates/web/default/my/my.html:56 +#: templates/web/default/my/my.html:56 templates/web/fixmystreet/my/my.html:56 msgid "Added %s" msgstr "La til %s" #: templates/web/default/auth/change_password.html:29 +#: templates/web/fixmystreet/auth/change_password.html:29 msgid "Again:" msgstr "Gjenta:" @@ -319,7 +360,8 @@ msgstr "Varsel %d oppretta for %s, type %s, parameter %s / %s" msgid "Alert %d disabled (created %s)" msgstr "Varsel %d kobla ut (oppretta %s)" -#: templates/web/default/report/display.html:222 +#: templates/web/default/report/display.html:219 +#: templates/web/fixmystreet/report/display.html:193 msgid "Alert me to future updates" msgstr "Send meg varsel ved framtidige oppdateringar" @@ -327,22 +369,33 @@ msgstr "Send meg varsel ved framtidige oppdateringar" msgid "All" msgstr "Alle" +#: templates/web/default/reports/index.html:3 +#, fuzzy +msgid "All Reports" +msgstr "Alle rapportar" + #: templates/web/default/admin/council_list.html:44 msgid "All confirmed" msgstr "Alle stadfesta" -#: templates/web/default/footer.html:8 templates/web/emptyhomes/header.html:28 -#: templates/web/fiksgatami/footer.html:7 templates/web/reading/footer.html:8 +#: templates/web/bromley/footer.html:37 templates/web/default/footer.html:11 +#: templates/web/fiksgatami/footer.html:7 +#: templates/web/fiksgatami/nn/footer.html:7 +#: templates/web/fixmystreet/footer.html:49 +#: templates/web/reading/footer.html:8 msgid "All reports" msgstr "Alle rapportar" #: templates/web/default/report/new/councils_text_some.html:2 +#: templates/web/fixmystreet/report/new/councils_text_some.html:2 msgid "All the information you provide here will be sent to" msgstr "All informasjonen du har lagt inn her vil sendast til" # TfL? skal ikkje det omsetjast? --KBU #: templates/web/default/report/new/councils_text_all.html:3 #: templates/web/default/report/new/councils_text_all.html:5 +#: templates/web/fixmystreet/report/new/councils_text_all.html:3 +#: templates/web/fixmystreet/report/new/councils_text_all.html:5 msgid "" "All the information you provide here will be sent to <strong>%s</strong> or " "a relevant local body such as <strong>TfL</strong>, via the London Report-It " @@ -356,13 +409,17 @@ msgstr "" #: templates/web/default/report/new/councils_text_all.html:12 #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:13 +#: templates/web/fixmystreet/report/new/councils_text_all.html:10 +#: templates/web/fixmystreet/report/new/councils_text_all.html:12 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:8 msgid "" "All the information you provide here will be sent to <strong>%s</strong>." msgstr "" "All informasjonen du har lagt inn her vil sendast til <strong>%s</strong>." -#: templates/web/emptyhomes/report/new/all_councils_text.html:2 -#: templates/web/emptyhomes/report/new/all_councils_text.html:4 +#: templates/web/emptyhomes/report/new/councils_text_all.html:2 +#: templates/web/emptyhomes/report/new/councils_text_all.html:4 msgid "" "All the information you provide here will be sent to <strong>%s</strong>. On " "the site, we will show the subject and details of the problem, plus your " @@ -372,7 +429,8 @@ msgstr "" "På dette nettestedet vil vi visa emne og detaljar om problemet,\n" "inkludert namnet ditt dersom du gjev oss lov." -#: templates/web/default/questionnaire/index.html:62 +#: templates/web/default/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:54 msgid "An update marked this problem as fixed." msgstr "Ei oppdatering markerte dette problemet som løyst." @@ -382,26 +440,36 @@ msgstr "Ei oppdatering markerte dette problemet som løyst." msgid "Anonymous" msgstr "Anonym" -#: templates/web/default/admin/report_edit.html:17 +#: templates/web/default/admin/report_edit.html:26 #: templates/web/default/admin/update_edit.html:14 msgid "Anonymous:" msgstr "Anonym:" -#: templates/web/default/footer.html:29 -msgid "Are you a developer? Would you like to contribute to FixMyStreet?" -msgstr "Er du ein utviklar? Kunne du tenkja deg å bidra til FiksGataMi?" - #: templates/web/default/footer.html:26 +#, fuzzy msgid "" -"Are you from a council? Would you like better integration with FixMyStreet?" -msgstr "Er du frå det offentlege? Kunne du tenkja deg betre integrasjon med FiksGataMi?" +"Are you a <strong>developer</strong>? Would you like to contribute to " +"FixMyStreet?" +msgstr "Er du ein utviklar? Kunne du tenkja deg å bidra til FiksGataMi?" + +#: templates/web/fixmystreet/footer.html:18 +msgid "Are you a developer?" +msgstr "" + +#: templates/web/fixmystreet/footer.html:22 +#, fuzzy +msgid "Are you from a council?" +msgstr "den lokale administrasjonen" #: templates/web/default/open311/index.html:17 msgid "" "At most %d requests are returned in each query. The returned requests are " "ordered by requested_datetime, so to get all requests, do several searches " "with rolling start_date and end_date." -msgstr "På det meste vert %d førespurnader returnert i kvar spørring. Dei returnerte førespurnadene vert sorterte på requested_datetime, så ein må gjera fleire søk med rullerande start_date og end_date for å få tak i alle førespurnadene." +msgstr "" +"På det meste vert %d førespurnader returnert i kvar spørring. Dei returnerte " +"førespurnadene vert sorterte på requested_datetime, så ein må gjera fleire " +"søk med rullerande start_date og end_date for å få tak i alle førespurnadene." #: templates/web/default/open311/index.html:9 msgid "At the moment only searching for and looking at reports work." @@ -411,24 +479,32 @@ msgstr "For augneblunken går det berre an å søkja etter og å sjå på rappor msgid "Ban email address" msgstr "Bannlys e-postadresse" -#: templates/web/default/footer.html:16 templates/web/reading/footer.html:14 -msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" -msgstr "Bygd av <a href=\"http://www.mysociety.org/\">mySociety</a>" - #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "" "Built by <a href=\"http://www.mysociety.org/\">mySociety</a> and maintained " "by <a href=\"http://www.nuug.no/\">NUUG</a>" -msgstr "Bygd av <a href=\"http://www.mysociety.org/\">mySociety</a> og vedlikeheldt av <a href=\"http://www.nuug.no/\">NUUG</a>" +msgstr "" +"Bygd av <a href=\"http://www.mysociety.org/\">mySociety</a> og vedlikeheldt " +"av <a href=\"http://www.nuug.no/\">NUUG</a>" #: templates/web/default/admin/stats.html:80 msgid "By Date" msgstr "På dato" -#: templates/web/default/admin/council_contacts.html:26 +#: templates/web/fixmystreet/around/display_location.html:75 +#: templates/web/fixmystreet/around/display_location.html:77 +#, fuzzy +msgid "Can't see the map? <a href='%s' rel='nofollow'>Skip this step</a>" +msgstr "" +"<small>Viss du ikkje kan sjå kartet, <a href='%s' rel='nofollow'>hopp over " +"dette steget</a>.</small>" + +#: templates/web/default/admin/council_contacts.html:31 #: templates/web/default/admin/index.html:36 #: templates/web/default/admin/list_flagged.html:14 #: templates/web/default/admin/search_reports.html:17 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:72 msgid "Category" msgstr "Kategori" @@ -436,38 +512,49 @@ msgstr "Kategori" msgid "Category fix rate for problems > 4 weeks old" msgstr "Løysingsrate fordelt på kategori for problem > 4 veker gamle" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:567 -#: templates/web/default/admin/council_contacts.html:63 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:552 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:582 +#: templates/web/default/admin/council_contacts.html:68 #: templates/web/default/admin/council_edit.html:23 -#: templates/web/default/admin/report_edit.html:29 +#: templates/web/default/admin/report_edit.html:25 #: templates/web/default/report/new/fill_in_details_form.html:67 msgid "Category:" msgstr "Kategori:" -#: bin/send-reports:180 +#: bin/send-reports:181 msgid "Category: %s" msgstr "Kategori: %s" #: templates/web/default/auth/change_password.html:1 #: templates/web/default/auth/change_password.html:3 #: templates/web/default/auth/change_password.html:33 +#: templates/web/fixmystreet/auth/change_password.html:1 +#: templates/web/fixmystreet/auth/change_password.html:3 +#: templates/web/fixmystreet/auth/change_password.html:33 msgid "Change Password" msgstr "Byt passord" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/fixmystreet/around/display_location.html:72 +#, fuzzy +msgid "Click map to report a problem" +msgstr "Korleis rapportera eit problem" + +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:24 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Closed" msgstr "Lukka" # skal det vera forskjellig tyding frå engelsken her? --KBU -#: perllib/FixMyStreet/DB/Result/Problem.pm:627 +#: perllib/FixMyStreet/DB/Result/Problem.pm:641 msgid "Closed by council" msgstr "(ikkje rapportert til administrasjonen)" -#: templates/web/default/my/my.html:32 +#: templates/web/default/my/my.html:32 templates/web/fixmystreet/my/my.html:32 msgid "Closed reports" msgstr "Lukka rapportar" @@ -475,8 +562,8 @@ msgstr "Lukka rapportar" msgid "Closed:" msgstr "Lukka:" -#: templates/web/default/around/display_location.html:102 -#: templates/web/default/around/display_location.html:104 +#: templates/web/default/around/display_location.html:101 +#: templates/web/default/around/display_location.html:103 msgid "Closest nearby problems <small>(within %skm)</small>" msgstr "Dei næraste problema <small>(innanfor %skm)</small>" @@ -500,27 +587,28 @@ msgstr "Data om merkevaresamarbeid:" msgid "Cobrand:" msgstr "Merkevaresamarbeid:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:349 +#: perllib/FixMyStreet/App/Controller/Admin.pm:351 msgid "Configuration updated" msgstr "Oppsett oppdatert" -#: perllib/FixMyStreet/App/Controller/Admin.pm:359 +#: perllib/FixMyStreet/App/Controller/Admin.pm:361 msgid "Configuration updated - contacts will be generated automatically later" msgstr "Oppsett oppdatert - kontaktar vil genererast automatisk seinare" -#: templates/web/default/admin/council_contacts.html:119 +#: templates/web/default/admin/council_contacts.html:124 msgid "Configure Open311" msgstr "Sett opp Open311" -#: templates/web/default/admin/council_contacts.html:96 +#: templates/web/default/admin/council_contacts.html:101 msgid "Configure Open311 integration" msgstr "Sett opp Open311-integrasjon" -#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:38 msgid "Confirm" msgstr "Stadfest" #: templates/web/default/auth/token.html:1 +#: templates/web/fixmystreet/auth/token.html:1 msgid "Confirm account" msgstr "Stadfest konto" @@ -534,8 +622,8 @@ msgstr "Stadfest konto" msgid "Confirmation" msgstr "Stadfesting" -#: templates/web/default/admin/council_contacts.html:28 -#: templates/web/default/admin/council_contacts.html:73 +#: templates/web/default/admin/council_contacts.html:33 +#: templates/web/default/admin/council_contacts.html:78 #: templates/web/default/admin/council_edit.html:28 #: templates/web/default/admin/council_edit.html:43 #: templates/web/default/admin/stats.html:5 @@ -548,26 +636,30 @@ msgid "Confirmed:" msgstr "Stadfesta:" #: templates/web/fiksgatami/footer.html:10 +#: templates/web/fiksgatami/nn/footer.html:10 msgid "Contact" msgstr "Kontakt" -#: templates/web/default/footer.html:17 templates/web/reading/footer.html:15 +#: templates/web/default/footer.html:24 msgid "Contact FixMyStreet" msgstr "Kontakt FiksGataMi" #: templates/web/default/contact/index.html:1 #: templates/web/default/contact/index.html:2 #: templates/web/default/contact/submit.html:1 +#: templates/web/fixmystreet/contact/index.html:1 +#: templates/web/fixmystreet/contact/index.html:2 msgid "Contact Us" msgstr "Kontakt oss" #: templates/web/default/contact/index.html:6 #: templates/web/default/contact/submit.html:3 +#: templates/web/fixmystreet/contact/index.html:7 msgid "Contact the team" msgstr "Kontakt prosjektgruppa" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1105 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1133 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1107 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1135 msgid "Could not find user" msgstr "Kunne ikkje finna brukaren" @@ -578,7 +670,7 @@ msgstr "Kunne ikkje finna brukaren" msgid "Council" msgstr "Administrasjon" -#: perllib/FixMyStreet/App/Controller/Admin.pm:977 +#: perllib/FixMyStreet/App/Controller/Admin.pm:979 #: templates/web/default/admin/council_list.html:1 msgid "Council contacts" msgstr "Administrasjonskontaktar" @@ -606,7 +698,7 @@ msgstr "Mengd" msgid "Create a report" msgstr "Lag ein rapport" -#: templates/web/default/admin/council_contacts.html:87 +#: templates/web/default/admin/council_contacts.html:92 msgid "Create category" msgstr "Lag kategori" @@ -629,13 +721,18 @@ msgstr "Gjeldande tilstand" msgid "Currently has 1+ deleted" msgstr "For tida har 1+ sletta" -#: templates/web/default/admin/council_contacts.html:29 -#: templates/web/default/admin/council_contacts.html:76 +#: templates/web/default/admin/council_contacts.html:34 +#: templates/web/default/admin/council_contacts.html:81 #: templates/web/default/admin/council_edit.html:29 #: templates/web/default/admin/council_edit.html:44 msgid "Deleted" msgstr "Sletta" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:64 +#, fuzzy +msgid "Details" +msgstr "Detaljar:" + #: templates/web/default/admin/report_edit.html:14 #: templates/web/default/report/new/fill_in_details_form.html:61 msgid "Details:" @@ -646,10 +743,14 @@ msgid "Diligency prize league table" msgstr "Arbeidshestar" #: templates/web/default/auth/general.html:32 +#: templates/web/fixmystreet/auth/general.html:29 +#: templates/web/fixmystreet/report/display.html:133 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:147 msgid "Do you have a FixMyStreet password?" msgstr "Har du eit FiksGataMi-passord?" -#: templates/web/default/questionnaire/index.html:72 +#: templates/web/default/questionnaire/index.html:70 +#: templates/web/fixmystreet/questionnaire/index.html:64 msgid "Don’t know" msgstr "Veit ikkje" @@ -675,7 +776,7 @@ msgstr "Redigerer brukar %d" msgid "Editor" msgstr "Oppdatert av" -#: templates/web/default/admin/council_contacts.html:27 +#: templates/web/default/admin/council_contacts.html:32 #: templates/web/default/admin/council_edit.html:42 #: templates/web/default/admin/list_flagged.html:12 #: templates/web/default/admin/list_flagged.html:35 @@ -683,18 +784,20 @@ msgstr "Oppdatert av" #: templates/web/default/admin/search_abuse.html:11 #: templates/web/default/admin/search_reports.html:15 #: templates/web/default/admin/search_users.html:13 +#: templates/web/fixmystreet/auth/general.html:20 +#: templates/web/fixmystreet/report/display.html:125 msgid "Email" msgstr "E-post" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1081 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1083 msgid "Email added to abuse list" msgstr "E-post lagd til misbrukliste" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1078 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1080 msgid "Email already in abuse list" msgstr "E-post allereie i misbruklista" -#: templates/web/default/around/display_location.html:84 +#: templates/web/default/around/display_location.html:83 msgid "Email me new local problems" msgstr "Send meg e-post om lokale problem" @@ -702,7 +805,7 @@ msgstr "Send meg e-post om lokale problem" msgid "Email me updates" msgstr "Send meg oppdateringar" -#: templates/web/default/admin/council_contacts.html:68 +#: templates/web/default/admin/council_contacts.html:73 #: templates/web/default/admin/council_edit.html:26 #: templates/web/default/admin/report_edit.html:31 #: templates/web/default/admin/update_edit.html:24 @@ -712,15 +815,15 @@ msgstr "Send meg oppdateringar" msgid "Email:" msgstr "E-post:" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:522 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:537 msgid "Empty flat or maisonette" msgstr "Tom leilegheit" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:521 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:536 msgid "Empty house or bungalow" msgstr "Tomt hus eller bungalow" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:524 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:539 msgid "Empty office or other commercial" msgstr "Tomt kontor eller forretningsbygg" @@ -728,11 +831,11 @@ msgstr "Tomt kontor eller forretningsbygg" msgid "Empty property details form" msgstr "Tom eigedom detaljskjema" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:525 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:540 msgid "Empty pub or bar" msgstr "Tom pub eller bar" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:526 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:541 msgid "Empty public building - school, hospital, etc." msgstr "Tom offentleg bygning – skule, sjukehus, osb." @@ -752,6 +855,12 @@ msgstr "Sluttmånad:" #: templates/web/default/around/around_index.html:10 #: templates/web/default/around/around_index.html:13 #: templates/web/default/index.html:24 templates/web/default/index.html:27 +#: templates/web/emptyhomes/index.html:40 +#: templates/web/emptyhomes/index.html:43 +#: templates/web/fixmystreet/around/around_index.html:10 +#: templates/web/fixmystreet/around/around_index.html:13 +#: templates/web/fixmystreet/index.html:32 +#: templates/web/fixmystreet/index.html:35 msgid "Enter a nearby GB postcode, or street name and area" msgstr "Skriv inn GB-postnummer i nærleiken, eller vegnamn og stad" @@ -760,12 +869,20 @@ msgid "Enter a nearby postcode, or street name and area" msgstr "Skriv inn postnummer i nærleiken, eller vegnamn og stad" #: templates/web/default/auth/general.html:64 -#: templates/web/default/report/display.html:177 +#: templates/web/default/report/display.html:176 #: templates/web/default/report/new/fill_in_details_form.html:169 msgid "Enter a new password:" msgstr "Skriv inn eit nytt passord:" -#: templates/web/default/index.html:45 +#: templates/web/fixmystreet/auth/general.html:57 +#: templates/web/fixmystreet/report/display.html:165 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:194 +#, fuzzy +msgid "Enter a password" +msgstr "Skriv inn eit nytt passord:" + +#: templates/web/default/index.html:44 templates/web/emptyhomes/index.html:60 +#: templates/web/fixmystreet/index.html:55 msgid "Enter details of the problem" msgstr "Legg inn detaljar om problemet" @@ -776,10 +893,11 @@ msgstr "Legg inn detaljar om problemet" #: templates/web/default/tokens/abuse.html:3 #: templates/web/default/tokens/error.html:1 #: templates/web/default/tokens/error.html:3 +#: templates/web/fixmystreet/auth/token.html:5 msgid "Error" msgstr "Feil" -#: templates/web/default/admin/council_contacts.html:9 +#: templates/web/default/admin/council_contacts.html:11 #: templates/web/default/admin/council_edit.html:18 msgid "Example postcode %s" msgstr "Postnummerdøme %s" @@ -792,21 +910,25 @@ msgstr "Døme:" msgid "" "Failed to send message. Please try again, or <a href=\"mailto:%s\">email " "us</a>." -msgstr "Klarte ikkje å senda meldinga. Ver venleg og prøv igjen seinare eller <a href=\"mailto:%s\">send oss ein e-post</a>." - -#: templates/web/default/footer.html:27 -msgid "Find out about FixMyStreet for councils" -msgstr "Finn ut om FiksGataMi for det offentlege" +msgstr "" +"Klarte ikkje å senda meldinga. Ver venleg og prøv igjen seinare eller <a " +"href=\"mailto:%s\">send oss ein e-post</a>." -#: templates/web/default/questionnaire/index.html:81 +#: templates/web/default/questionnaire/index.html:79 +#: templates/web/fixmystreet/questionnaire/index.html:73 msgid "First time" msgstr "Første gong" -#: templates/web/default/header.html:29 -#: templates/web/fiksgatami/header.html:16 templates/web/reading/header.html:31 +#: templates/web/fiksgatami/header.html:16 +#: templates/web/fiksgatami/nn/header.html:16 msgid "Fix<span id=\"my\">My</span>Street" msgstr "Fiks<span id=\"my\">Gata</span>Mi" +#: templates/web/default/header.html:24 +#, fuzzy +msgid "FixMyStreet" +msgstr "FiksGataMi-administrator:" + #: templates/web/default/admin/header.html:13 msgid "FixMyStreet admin:" msgstr "FiksGataMi-administrator:" @@ -815,7 +937,13 @@ msgstr "FiksGataMi-administrator:" msgid "FixMyStreet administration" msgstr "Fiksgatami-administrasjon" +#: templates/web/fixmystreet/static/for_councils.html:1 +#, fuzzy +msgid "FixMyStreet for Councils" +msgstr "Finn ut om FiksGataMi for det offentlege" + #: templates/web/default/alert/index.html:6 +#: templates/web/fixmystreet/alert/index.html:6 msgid "" "FixMyStreet has a variety of RSS feeds and email alerts for local problems, " "including\n" @@ -823,11 +951,14 @@ msgid "" "problems\n" "within a certain distance of a particular location." msgstr "" -"Fiksgatami har ulike RSS-straumar og e-postlister om lokale problem, dette inkluderer problem meldt innanfor ein viss bydel eller administrasjon, eller eit område med problem\n" +"Fiksgatami har ulike RSS-straumar og e-postlister om lokale problem, dette " +"inkluderer problem meldt innanfor ein viss bydel eller administrasjon, eller " +"eit område med problem\n" "innan ein gitt distanse frå ein viss posisjon." # var bokmålen tilstrekkeleg her? --KBU -#: templates/web/default/alert/list.html:100 +#: templates/web/default/alert/list.html:98 +#: templates/web/fixmystreet/alert/_list.html:69 msgid "" "FixMyStreet sends different categories of problem\n" "to the appropriate council, so problems within the boundary of a particular " @@ -843,25 +974,28 @@ msgstr "" "FiksGataMi sender ulike kategoriar problem til ulike administrasjonar, " "problem som gjeld fleire administrasjonar vert send til alle dei det gjeld." +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:20 #: templates/web/default/admin/index.html:36 -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "Fixed" msgstr "Løyst" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Fixed - Council" msgstr "Løyst – Administrasjon" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Fixed - User" msgstr "Løyst – Brukar" -#: templates/web/default/my/my.html:27 +#: templates/web/default/my/my.html:27 templates/web/fixmystreet/my/my.html:27 msgid "Fixed reports" msgstr "Løyste rapportar" @@ -882,7 +1016,9 @@ msgstr "Flagga:" msgid "Flagged:" msgstr "Flagga:" -#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:24 +#: templates/web/default/reports/council.html:87 +#: templates/web/emptyhomes/reports/council.html:19 msgid "Follow a ward link to view only reports within that ward." msgstr "Følg ei bydellenkje for å berre sjå rapportar innanfor den bydelen." @@ -894,6 +1030,8 @@ msgstr "For administrasjon(ane):" #: templates/web/emptyhomes/faq/faq-cy.html:1 #: templates/web/emptyhomes/faq/faq-en-gb.html:1 #: templates/web/fiksgatami/faq/faq-nb.html:1 +#: templates/web/fiksgatami/nn/faq/faq-nn.html:1 +#: templates/web/fixmystreet/faq/faq-en-gb.html:1 msgid "Frequently Asked Questions" msgstr "Ofte spurde spurnader" @@ -905,13 +1043,27 @@ msgstr "Meir informasjon om arbeidet vårt med tomme heimar." msgid "GeoRSS on Google Maps" msgstr "GeoRSS på Google Maps" -#: templates/web/default/alert/list.html:112 +#: templates/web/fixmystreet/report/display.html:28 +#, fuzzy +msgid "Get updates" +msgstr "Siste oppdatering:" + +#: templates/web/default/reports/council.html:72 +#, fuzzy +msgid "Get updates of problems in this %s" +msgstr "RSS-straum for problem i denne %s-en" + +#: templates/web/default/alert/list.html:110 +#: templates/web/fixmystreet/alert/_list.html:78 msgid "Give me an RSS feed" msgstr "Gje meg ein RSS-straum" #: templates/web/default/alert/index.html:24 #: templates/web/default/around/around_index.html:17 -#: templates/web/default/index.html:33 +#: templates/web/default/index.html:33 templates/web/emptyhomes/index.html:49 +#: templates/web/fixmystreet/alert/index.html:25 +#: templates/web/fixmystreet/around/around_index.html:20 +#: templates/web/fixmystreet/index.html:42 msgid "Go" msgstr "Hald fram" @@ -923,17 +1075,19 @@ msgstr "Skal spørjeskjemaet sendast?" msgid "Graph of problem creation by status over time" msgstr "Graf over problemoppretting fordelt på status over tid" -#: templates/web/default/reports/index.html:5 +#: templates/web/default/reports/index.html:8 #: templates/web/emptyhomes/reports/index.html:5 msgid "Greyed-out lines are councils that no longer exist." msgstr "" "Linjer med grå bakgrunn er administrasjonar som ikkje lenger eksisterer." -#: templates/web/default/questionnaire/index.html:63 +#: templates/web/default/questionnaire/index.html:61 +#: templates/web/fixmystreet/questionnaire/index.html:55 msgid "Has this problem been fixed?" msgstr "Har dette problemet vorte løyst?" -#: templates/web/default/questionnaire/index.html:76 +#: templates/web/default/questionnaire/index.html:74 +#: templates/web/fixmystreet/questionnaire/index.html:68 msgid "" "Have you ever reported a problem to a council before, or is this your first " "time?" @@ -941,39 +1095,51 @@ msgstr "" "Har du rapportert eit problem til ein administrasjon før, eller er dette " "første gongen?" -#: templates/web/default/footer.html:10 -#: templates/web/emptyhomes/header.html:30 -#: templates/web/fiksgatami/footer.html:9 templates/web/reading/footer.html:10 +#: templates/web/bromley/footer.html:41 templates/web/default/footer.html:15 +#: templates/web/emptyhomes/header.html:28 +#: templates/web/fiksgatami/footer.html:9 +#: templates/web/fiksgatami/nn/footer.html:9 +#: templates/web/fixmystreet/footer.html:53 +#: templates/web/reading/footer.html:10 msgid "Help" msgstr "Hjelp" -#: templates/web/default/alert/list.html:39 +#: templates/web/default/alert/list.html:37 +#: templates/web/fixmystreet/alert/_list.html:8 msgid "Here are the types of local problem alerts for ‘%s’." msgstr "Her er dei ulike typane lokale problemvarsel for «%s»." -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/bromley/header.html:46 +#: templates/web/fixmystreet/header.html:46 +msgid "Hi %s" +msgstr "" + +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 msgid "Hidden" msgstr "Skjult" -#: templates/web/default/around/display_location.html:54 +#: templates/web/default/around/display_location.html:58 +#: templates/web/fixmystreet/around/display_location.html:58 +msgid "Hide old" +msgstr "" + +#: templates/web/default/around/display_location.html:53 +#: templates/web/fixmystreet/around/display_location.html:54 msgid "Hide pins" msgstr "Skjul nåler" -#: templates/web/default/around/display_location.html:59 -msgid "Hide stale reports" -msgstr "Skjul utdaterte rapportar" - #: templates/web/default/admin/council_edit.html:38 msgid "History" msgstr "Historie" -#: templates/web/default/index.html:40 +#: templates/web/default/index.html:39 templates/web/emptyhomes/index.html:55 +#: templates/web/fixmystreet/index.html:50 msgid "How to report a problem" msgstr "Korleis rapportera eit problem" -#: perllib/FixMyStreet/App/Controller/Admin.pm:587 +#: perllib/FixMyStreet/App/Controller/Admin.pm:592 msgid "I am afraid you cannot confirm unconfirmed reports." msgstr "Eg er redd du ikkje kan stadfesta ustadfesta rapportar." @@ -993,7 +1159,9 @@ msgstr "" msgid "" "I'm afraid we couldn't validate that token. If you've copied the URL from an " "email, please check that you copied it exactly.\n" -msgstr "Eg er redd vi ikkje kunne verifisera den referansen. Viss du kopierte nettadressa frå ein e-post, sjekk at du har kopiert ho korrekt.\n" +msgstr "" +"Eg er redd vi ikkje kunne verifisera den referansen. Viss du kopierte " +"nettadressa frå ein e-post, sjekk at du har kopiert ho korrekt.\n" #: templates/web/default/admin/list_flagged.html:9 #: templates/web/default/admin/list_updates.html:5 @@ -1003,33 +1171,47 @@ msgstr "ID" #: templates/web/default/report/new/councils_text_none.html:11 #: templates/web/default/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:10 +#: templates/web/fixmystreet/report/new/councils_text_none.html:9 msgid "" "If you submit a problem here the subject and details of the problem will be " "public, but the problem will <strong>not</strong> be reported to the council." -msgstr "Viss du sender inn eit problem hit, så vil emnet og detaljar for problemet vera offentlege, men problemet vil <strong>ikkje</strong> rapporterast til administrasjonen." +msgstr "" +"Viss du sender inn eit problem hit, så vil emnet og detaljar for problemet " +"vera offentlege, men problemet vil <strong>ikkje</strong> rapporterast til " +"administrasjonen." -#: templates/web/emptyhomes/report/new/no_councils_text.html:9 +#: templates/web/emptyhomes/report/new/councils_text_none.html:9 msgid "" "If you submit a report here it will be left on the site, but not reported to " "the council – please still leave your report, so that we can show to " "the council the activity in their area." -msgstr "Viss du sender inn ein rapport her så vil han verta tilgjengeleg her, men ikkje rapporterast til administrasjonen. — det er fint om du likevel sender inn rapporten din, slik at vi kan visa administrasjonen aktiviteten i området ditt." +msgstr "" +"Viss du sender inn ein rapport her så vil han verta tilgjengeleg her, men " +"ikkje rapporterast til administrasjonen. — det er fint om du likevel " +"sender inn rapporten din, slik at vi kan visa administrasjonen aktiviteten i " +"området ditt." #: templates/web/default/auth/token.html:23 #: templates/web/default/email_sent.html:24 +#: templates/web/fixmystreet/auth/token.html:23 msgid "" "If you use web-based email or have 'junk mail' filters, you may wish to " "check your bulk/spam mail folders: sometimes, our messages are marked that " "way." -msgstr "Viss du brukar vevbasert e-post eller har filter for søppel-e-post på e-postkontoen din, kan du i visse tilfelle måtta sjå etter meldingane våre der." +msgstr "" +"Viss du brukar vevbasert e-post eller har filter for søppel-e-post på e-" +"postkontoen din, kan du i visse tilfelle måtta sjå etter meldingane våre der." -#: templates/web/default/questionnaire/index.html:85 +#: templates/web/default/questionnaire/index.html:83 +#: templates/web/fixmystreet/questionnaire/index.html:77 msgid "" "If you wish to leave a public update on the problem, please enter it here\n" "(please note it will not be sent to the council). For example, what was\n" "your experience of getting the problem fixed?" msgstr "" -"Viss du ynskjer å leggja til ein offentleg kommentar på problemet, legg han til her\n" +"Viss du ynskjer å leggja til ein offentleg kommentar på problemet, legg han " +"til her\n" "(denne vert ikkje send til administrasjonen). Du kan til dømes\n" "dela røynsla di med korleis problemet ditt vart løyst." @@ -1037,14 +1219,16 @@ msgstr "" msgid "Illegal ID" msgstr "Ugyldig ID" -#: perllib/FixMyStreet/App/Controller/Alert.pm:102 +#: perllib/FixMyStreet/App/Controller/Alert.pm:100 msgid "Illegal feed selection" msgstr "Ugyldig val av straum" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:24 -#: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:87 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:20 +#: templates/web/default/report/display.html:84 +#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:81 msgid "In Progress" msgstr "Under arbeid" @@ -1054,11 +1238,16 @@ msgid "" "specification are returned: agency_sent_datetime, title (also returned as " "part of description), interface_used, comment_count, requestor_name (only " "present if requestor allowed the name to be shown on this site)." -msgstr "I tillegg er følgjande attributt som ikkje er del av Open311 v2-spesifikasjonen returnert: agency_sent_datetime, title (òg returnert som del av description), interface_used, comment_count, requestor_name (berre tilstades viss innsendar tillét at namnet kunne visast på denne nettstaden)." - -#: templates/web/default/around/display_location.html:61 -msgid "Include stale reports" -msgstr "Inkluder utdaterte problem" +msgstr "" +"I tillegg er følgjande attributt som ikkje er del av Open311 v2-" +"spesifikasjonen returnert: agency_sent_datetime, title (òg returnert som del " +"av description), interface_used, comment_count, requestor_name (berre " +"tilstades viss innsendar tillét at namnet kunne visast på denne nettstaden)." + +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:29 +#, fuzzy +msgid "In progress" +msgstr "Under arbeid" #: templates/web/default/admin/stats.html:76 msgid "Include unconfirmed reports" @@ -1072,7 +1261,7 @@ msgstr "Feil has_photo-verdi «%s»" msgid "Invalid agency_responsible value %s" msgstr "Ugyldig agency_responsible-verdi %s" -#: perllib/FixMyStreet/App/Controller/Admin.pm:897 +#: perllib/FixMyStreet/App/Controller/Admin.pm:899 msgid "Invalid end date" msgstr "Ugyldig slutt-dato" @@ -1080,14 +1269,16 @@ msgstr "Ugyldig slutt-dato" msgid "Invalid format %s specified." msgstr "Ugyldig format %s oppgjeve." -#: perllib/FixMyStreet/App/Controller/Admin.pm:887 +#: perllib/FixMyStreet/App/Controller/Admin.pm:889 msgid "Invalid start date" msgstr "Ugyldig startdato" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 msgid "Investigating" msgstr "Undersøkjer" @@ -1105,12 +1296,15 @@ msgid "" msgstr "" #: templates/web/default/auth/general.html:44 -#: templates/web/default/report/display.html:157 +#: templates/web/default/report/display.html:156 #: templates/web/default/report/new/fill_in_details_form.html:149 +#: templates/web/fixmystreet/auth/general.html:42 +#: templates/web/fixmystreet/report/display.html:149 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:164 msgid "Keep me signed in on this computer" msgstr "Hugs mi innlogging på denne datamaskina" -#: templates/web/default/admin/council_contacts.html:30 +#: templates/web/default/admin/council_contacts.html:35 msgid "Last editor" msgstr "Sist redigert av" @@ -1122,15 +1316,16 @@ msgstr "Siste oppdatering:" msgid "Last update:" msgstr "Siste oppdatering:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:983 +#: perllib/FixMyStreet/App/Controller/Admin.pm:985 msgid "List Flagged" msgstr "Vis flagga" -#: templates/web/default/admin/council_contacts.html:11 +#: templates/web/default/admin/council_contacts.html:13 msgid "List all reported problems" msgstr "Vis alle rapporterte problem" #: templates/web/default/report/new/fill_in_details_form.html:68 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:73 msgid "Loading..." msgstr "Lastar …" @@ -1143,6 +1338,15 @@ msgstr "Lastar …" #: templates/web/default/alert/updates.html:1 #: templates/web/default/tokens/confirm_alert.html:1 #: templates/web/default/tokens/confirm_alert.html:3 +#: templates/web/emptyhomes/alert/index.html:1 +#: templates/web/emptyhomes/alert/index.html:3 +#: templates/web/fixmystreet/alert/choose.html:1 +#: templates/web/fixmystreet/alert/choose.html:3 +#: templates/web/fixmystreet/alert/index.html:1 +#: templates/web/fixmystreet/alert/index.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:5 +#: templates/web/fixmystreet/alert/updates.html:1 msgid "Local RSS feeds and email alerts" msgstr "Lokal RSS-straum og e-postvarsel" @@ -1150,15 +1354,23 @@ msgstr "Lokal RSS-straum og e-postvarsel" #: templates/web/default/alert/list.html:12 #: templates/web/default/alert/list.html:14 #: templates/web/default/alert/list.html:3 +#: templates/web/fixmystreet/alert/list.html:1 +#: templates/web/fixmystreet/alert/list.html:12 +#: templates/web/fixmystreet/alert/list.html:14 +#: templates/web/fixmystreet/alert/list.html:3 msgid "Local RSS feeds and email alerts for ‘%s’" msgstr "Lokal RSS-straum og e-postvarsel for «%s»" -#: templates/web/default/footer.html:9 templates/web/emptyhomes/header.html:29 -#: templates/web/fiksgatami/footer.html:8 templates/web/reading/footer.html:9 +#: templates/web/bromley/footer.html:39 templates/web/default/footer.html:13 +#: templates/web/fiksgatami/footer.html:8 +#: templates/web/fiksgatami/nn/footer.html:8 +#: templates/web/fixmystreet/footer.html:51 +#: templates/web/reading/footer.html:9 msgid "Local alerts" msgstr "Lokale varsel" -#: templates/web/default/index.html:44 +#: templates/web/default/index.html:43 templates/web/emptyhomes/index.html:59 +#: templates/web/fixmystreet/index.html:54 msgid "Locate the problem on a map of the area" msgstr "Lokaliser problemet på kartet over området" @@ -1172,6 +1384,11 @@ msgstr "" "\">OpenStreetMap</a> og bidragsytarar, <a href=\"http://creativecommons.org/" "licenses/by-sa/2.0/\">CC-BY-SA</a>" +#: templates/web/fixmystreet/contact/index.html:86 +#, fuzzy +msgid "Message" +msgstr "Melding:" + #: templates/web/default/contact/index.html:90 msgid "Message:" msgstr "Melding:" @@ -1193,9 +1410,14 @@ msgstr "Fleire problem i nærleiken" #: templates/web/default/admin/list_updates.html:7 #: templates/web/default/admin/search_reports.html:14 #: templates/web/default/admin/search_users.html:12 -#: templates/web/default/reports/index.html:10 +#: templates/web/default/reports/index.html:15 #: templates/web/emptyhomes/reports/index.html:10 +#: templates/web/fiksgatami/nn/reports/index.html:9 #: templates/web/fiksgatami/reports/index.html:9 +#: templates/web/fixmystreet/auth/general.html:52 +#: templates/web/fixmystreet/report/display.html:181 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:114 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:171 msgid "Name" msgstr "Namn" @@ -1205,7 +1427,8 @@ msgstr "Namn" msgid "Name:" msgstr "Namn:" -#: templates/web/default/footer.html:4 templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/footer.html:3 +#: templates/web/fiksgatami/nn/footer.html:3 #: templates/web/reading/footer.html:4 msgid "Navigation" msgstr "Navigasjon" @@ -1214,26 +1437,47 @@ msgstr "Navigasjon" msgid "" "Nearest named road to the pin placed on the map (automatically generated " "using OpenStreetMap): %s%s" -msgstr "Næraste namngjevne veg til nålen plassert på kartet (automatisk generert ved hjelp av OpenStreetMap): %s%s" +msgstr "" +"Næraste namngjevne veg til nålen plassert på kartet (automatisk generert ved " +"hjelp av OpenStreetMap): %s%s" -#: perllib/FixMyStreet/Cobrand/Default.pm:564 +#: perllib/FixMyStreet/Cobrand/Default.pm:480 msgid "" -"Nearest postcode to the pin placed on the map (automatically generated): %s (" -"%sm away)" -msgstr "Næraste postnummer til nålen plassert på kartet (automatisk generert): %s (%sm unna)" +"Nearest postcode to the pin placed on the map (automatically generated): %s " +"(%sm away)" +msgstr "" +"Næraste postnummer til nålen plassert på kartet (automatisk generert): %s " +"(%sm unna)" -#: perllib/FixMyStreet/Cobrand/Default.pm:553 -#: perllib/FixMyStreet/Cobrand/Default.pm:588 +#: perllib/FixMyStreet/Cobrand/Default.pm:469 +#: perllib/FixMyStreet/Cobrand/Default.pm:520 msgid "" "Nearest road to the pin placed on the map (automatically generated by Bing " "Maps): %s" -msgstr "Næraste veg til nålen plassert på karta (automatisk generert ved hjelp av Bing Maps): %s" +msgstr "" +"Næraste veg til nålen plassert på karta (automatisk generert ved hjelp av " +"Bing Maps): %s" + +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:242 +#, fuzzy +msgid "" +"Nearest road to the pin placed on the map (automatically generated by Bing " +"Maps): %s\n" +"\n" +msgstr "" +"Næraste veg til nålen plassert på karta (automatisk generert ved hjelp av " +"Bing Maps): %s" #: templates/web/default/email_sent.html:20 msgid "Nearly Done! Now check your email..." msgstr "Nesten ferdig! No må du sjekka e-posten din …" -#: perllib/FixMyStreet/App/Controller/Admin.pm:309 +#: templates/web/default/reports/index.html:16 +#, fuzzy +msgid "New <br>problems" +msgstr "Nye problem" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:311 msgid "New category contact added" msgstr "Ny kategorikontakt lagt til" @@ -1245,10 +1489,8 @@ msgstr "Nye lokale problem på FiksGataMi" msgid "New local reports on reportemptyhomes.com" msgstr "Nye lokale rapportar på reportemptyhomes.com" -#: templates/web/default/reports/council.html:92 -#: templates/web/default/reports/council.html:93 -#: templates/web/default/reports/index.html:11 #: templates/web/emptyhomes/reports/index.html:11 +#: templates/web/fiksgatami/nn/reports/index.html:10 #: templates/web/fiksgatami/reports/index.html:10 msgid "New problems" msgstr "Nye problem" @@ -1299,24 +1541,27 @@ msgstr "Nye rapportar innanfor grensa til {{NAME}} på reportemptyhomes.com" msgid "New state" msgstr "Ny tilstand" -#: templates/web/default/front/news.html:8 #: templates/web/fiksgatami/front/news.html:9 +#: templates/web/fiksgatami/nn/front/news.html:9 +#: templates/web/fixmystreet/front/news.html:8 msgid "New!" msgstr "Ny!" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:4 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/admin/report_edit.html:28 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/update_edit.html:16 #: templates/web/default/questionnaire/creator_fixed.html:16 -#: templates/web/default/questionnaire/index.html:109 -#: templates/web/default/questionnaire/index.html:70 +#: templates/web/default/questionnaire/index.html:107 +#: templates/web/default/questionnaire/index.html:68 +#: templates/web/fixmystreet/questionnaire/index.html:101 +#: templates/web/fixmystreet/questionnaire/index.html:62 msgid "No" msgstr "Nei" @@ -1325,7 +1570,7 @@ msgstr "Nei" msgid "No council" msgstr "Ingen administrasjon" -#: perllib/FixMyStreet/DB/Result/Problem.pm:297 +#: perllib/FixMyStreet/DB/Result/Problem.pm:320 msgid "No council selected" msgstr "Ingen administrasjon er vald" @@ -1346,10 +1591,12 @@ msgid "No info at all" msgstr "Heilt utan informasjon" #: templates/web/default/around/around_map_list_items.html:15 +#: templates/web/fixmystreet/around/around_map_list_items.html:24 msgid "No problems found." msgstr "Fann ingen problem." #: templates/web/default/around/on_map_list_items.html:12 +#: templates/web/fixmystreet/around/on_map_list_items.html:21 msgid "No problems have been reported yet." msgstr "Ingen problem er rapporterte" @@ -1363,10 +1610,12 @@ msgid "Not reported before" msgstr "Ikkje rapportert tidlegare" #: templates/web/default/report/_main.html:9 +#: templates/web/emptyhomes/report/display.html:24 +#: templates/web/fixmystreet/report/_main.html:11 msgid "Not reported to council" msgstr "Ikkje rapportert til administrasjonen" -#: templates/web/default/admin/council_contacts.html:31 +#: templates/web/default/admin/council_contacts.html:36 #: templates/web/default/admin/council_edit.html:46 msgid "Note" msgstr "Merk" @@ -1376,9 +1625,12 @@ msgid "" "Note that when including unconfirmed reports we use the date the report was " "created which may not be in the same month the report was confirmed so the " "numbers may jump about a little" -msgstr "Merk at når vi tek med ustadfesta rapportar, så brukar vi datoen rapporten var oppretta. Det treng vera den same månaden som rapporten var stadfesta, så tala kan hoppa litt opp og ned." +msgstr "" +"Merk at når vi tek med ustadfesta rapportar, så brukar vi datoen rapporten " +"var oppretta. Det treng vera den same månaden som rapporten var stadfesta, " +"så tala kan hoppa litt opp og ned." -#: templates/web/default/admin/council_contacts.html:80 +#: templates/web/default/admin/council_contacts.html:85 #: templates/web/default/admin/council_edit.html:31 msgid "Note:" msgstr "Merk:" @@ -1387,30 +1639,35 @@ msgstr "Merk:" msgid "Note: <strong>%s</strong>" msgstr "Merk: <strong>%s</strong>" +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:146 +#, fuzzy +msgid "Now to submit your report…" +msgstr "På tide å senda rapporten din, har du eit FiksGataMi-passord?" + #: templates/web/default/report/new/fill_in_details_form.html:131 msgid "Now to submit your report… do you have a FixMyStreet password?" msgstr "På tide å senda rapporten din, har du eit FiksGataMi-passord?" -#: templates/web/default/report/display.html:139 +#: templates/web/fixmystreet/report/display.html:132 +#, fuzzy +msgid "Now to submit your update…" +msgstr "På tide å registrera oppdateringa di, har du eit FiksGataMi-passord?" + +#: templates/web/default/report/display.html:138 msgid "Now to submit your update… do you have a FixMyStreet password?" msgstr "På tide å registrera oppdateringa di, har du eit FiksGataMi-passord?" #: templates/web/default/report/display.html:26 -#: templates/web/default/report/updates.html:23 +#: templates/web/default/report/update.html:16 msgid "Offensive? Unsuitable? Tell us" msgstr "Støytande? Upassende? Sei frå" -#: templates/web/default/reports/council.html:115 -#: templates/web/default/reports/council.html:116 -msgid "Old fixed" -msgstr "Eldre problem som er løyste" - -#: templates/web/default/reports/council.html:109 -#: templates/web/default/reports/council.html:110 -msgid "Old problems, state unknown" -msgstr "Eldre problem med ukjend status" +#: templates/web/default/reports/index.html:18 +#, fuzzy +msgid "Old / unknown <br>problems" +msgstr "Ukjend problem-ID" -#: templates/web/default/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:12 #: templates/web/fiksgatami/reports/index.html:12 msgid "Old problems,<br>state unknown" msgstr "Eldre problem, med<br>ukjend status" @@ -1419,29 +1676,36 @@ msgstr "Eldre problem, med<br>ukjend status" msgid "Old state" msgstr "Gammal tilstand" -#: templates/web/default/reports/index.html:15 +#: templates/web/default/reports/index.html:20 +#, fuzzy +msgid "Older <br>fixed" +msgstr "Eldre løyste" + +#: templates/web/default/reports/index.html:17 +#, fuzzy +msgid "Older <br>problems" +msgstr "Eldre problem" + #: templates/web/emptyhomes/reports/index.html:14 +#: templates/web/fiksgatami/nn/reports/index.html:14 #: templates/web/fiksgatami/reports/index.html:14 msgid "Older fixed" msgstr "Eldre løyste" -#: templates/web/default/reports/council.html:101 -#: templates/web/default/reports/council.html:105 -#: templates/web/default/reports/council.html:106 -#: templates/web/default/reports/council.html:99 -#: templates/web/default/reports/index.html:12 #: templates/web/emptyhomes/reports/index.html:12 +#: templates/web/fiksgatami/nn/reports/index.html:11 #: templates/web/fiksgatami/reports/index.html:11 msgid "Older problems" msgstr "Eldre problem" -#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:18 #: templates/web/default/admin/update_edit.html:19 -#: templates/web/default/report/display.html:85 +#: templates/web/default/report/display.html:84 +#: templates/web/fixmystreet/report/display.html:79 msgid "Open" msgstr "Opne" -#: templates/web/default/my/my.html:22 +#: templates/web/default/my/my.html:22 templates/web/fixmystreet/my/my.html:22 msgid "Open reports" msgstr "Opne rapportar" @@ -1457,31 +1721,35 @@ msgstr "Nettsida til Open311-initiativet" msgid "Open311 specification" msgstr "Open311-spesifikasjon" -#: templates/web/default/alert/list.html:87 +#: templates/web/default/alert/list.html:85 +#: templates/web/fixmystreet/alert/_list.html:56 msgid "Or problems reported to:" msgstr "Eller problem meldt til:" -#: templates/web/default/alert/list.html:63 +#: templates/web/default/alert/list.html:61 +#: templates/web/fixmystreet/alert/_list.html:33 msgid "" "Or you can subscribe to an alert based upon what ward or council you’" "re in:" -msgstr "Eller du kan abonnera på varsel basert på bydel eller administrasjon du høyrer til under:" - -#: bin/send-reports:175 bin/send-reports:184 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:553 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:566 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:969 -#: perllib/FixMyStreet/DB/Result/Problem.pm:475 -#: perllib/FixMyStreet/DB/Result/Problem.pm:485 -#: perllib/FixMyStreet/DB/Result/Problem.pm:495 -#: perllib/FixMyStreet/DB/Result/Problem.pm:507 +msgstr "" +"Eller du kan abonnera på varsel basert på bydel eller administrasjon du " +"høyrer til under:" + +#: bin/send-reports:176 bin/send-reports:185 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:568 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:581 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:990 +#: perllib/FixMyStreet/DB/Result/Problem.pm:489 +#: perllib/FixMyStreet/DB/Result/Problem.pm:499 +#: perllib/FixMyStreet/DB/Result/Problem.pm:509 +#: perllib/FixMyStreet/DB/Result/Problem.pm:521 msgid "Other" msgstr "Anna" -#: templates/web/default/footer.html:30 +#: templates/web/default/footer.html:27 msgid "" -"Our code is open source and <a href=\"http://github.com/mysociety/" -"fixmystreet\">available on GitHub</a>." +"Our code is open source and <a href=\"http://github.com/mysociety/fixmystreet" +"\">available on GitHub</a>." msgstr "" "Kjeldekoda vår er fri programvare og <a href=\"http://github.com/mysociety/" "fixmystreet\">tilgjengeleg på GitHub</a>." @@ -1495,63 +1763,101 @@ msgstr "Eigar" msgid "Page Not Found" msgstr "Fann ikkje sida" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 msgid "Partial" msgstr "Delvis" +#: templates/web/fixmystreet/auth/general.html:55 +#: templates/web/fixmystreet/report/display.html:162 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:191 +#, fuzzy +msgid "Password (optional)" +msgstr "(valfritt)" + #: templates/web/default/auth/change_password.html:25 +#: templates/web/fixmystreet/auth/change_password.html:25 msgid "Password:" msgstr "Passord:" -#: bin/send-reports:69 templates/web/default/admin/report_edit.html:32 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:130 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:188 +#, fuzzy +msgid "Phone number (optional)" +msgstr "(valfritt)" + +#: bin/send-reports:70 templates/web/default/admin/report_edit.html:32 #: templates/web/default/report/new/fill_in_details_form.html:215 msgid "Phone:" msgstr "Telefon:" -#: templates/web/default/questionnaire/index.html:97 -#: templates/web/default/report/display.html:115 +#: templates/web/fixmystreet/report/display.html:108 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:108 +#, fuzzy +msgid "Photo" +msgstr "Bilete:" + +#: templates/web/default/questionnaire/index.html:95 +#: templates/web/default/report/display.html:114 #: templates/web/default/report/new/fill_in_details_form.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:90 msgid "Photo:" msgstr "Bilete:" -#: templates/web/default/alert/list.html:29 +#: templates/web/default/alert/list.html:27 +#: templates/web/fixmystreet/alert/list.html:27 msgid "Photos of recent nearby reports" msgstr "Bilete av nye problem i nærleiken" -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:23 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:19 +#: templates/web/default/report/display.html:84 #: templates/web/default/report/display.html:85 -#: templates/web/default/report/display.html:86 +#: templates/web/fixmystreet/report/display.html:79 +#: templates/web/fixmystreet/report/display.html:80 msgid "Planned" msgstr "Planlagt" +#: templates/web/fixmystreet/questionnaire/index.html:44 +#, fuzzy +msgid "" +"Please <a class=\"tab_link\" href=\"#report\">take a look</a> at the updates " +"that have been left." +msgstr "Ver venleg og sjå over oppdateringane som er lagt inn." + #: templates/web/default/report/new/notes.html:6 +#: templates/web/fixmystreet/report/new/notes.html:5 msgid "Please be polite, concise and to the point." msgstr "Ver høfleg, poengtert og kortfatta." #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:17 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:17 msgid "Please check the passwords and try again" msgstr "Ver venleg og sjekk passorda og prøv igjen" #: templates/web/default/auth/token.html:17 +#: templates/web/fixmystreet/auth/token.html:17 msgid "Please check your email" msgstr "Ver venleg og sjekk e-posten du oppgav" #: templates/web/default/auth/general.html:14 #: templates/web/default/auth/general.html:8 +#: templates/web/fixmystreet/auth/general.html:15 +#: templates/web/fixmystreet/auth/general.html:9 msgid "Please check your email address is correct" msgstr "Ver venleg og sjekk at du har skrive ei gyldig e-postadresse" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:722 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:741 -#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 -#: perllib/FixMyStreet/DB/Result/Problem.pm:316 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:739 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:758 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:795 +#: perllib/FixMyStreet/DB/Result/Problem.pm:339 +#: templates/web/default/js/validation_strings.html:9 msgid "Please choose a category" msgstr "Vel ein kategori" -#: perllib/FixMyStreet/DB/Result/Problem.pm:322 +#: perllib/FixMyStreet/DB/Result/Problem.pm:345 msgid "Please choose a property type" msgstr "Vel ein type eigenskap" @@ -1561,38 +1867,52 @@ msgid "" "go to\n" "the team behind FixMyStreet, not a council. To report a problem,\n" "please <a href=\"/\">go to the front page</a> and follow the instructions." -msgstr "Ver venleg og <strong>ikkje</strong> rapporter feil gjennom denne sida; meldingane går til gruppa som står bak FiksGataMi, og ikkje til ein administrasjon. For å rapportera eit problem, ver venleg og <a href=\"/\">gå til forsida</a> og følg instruksjonane." +msgstr "" +"Ver venleg og <strong>ikkje</strong> rapporter feil gjennom denne sida; " +"meldingane går til gruppa som står bak FiksGataMi, og ikkje til ein " +"administrasjon. For å rapportera eit problem, ver venleg og <a href=\"/\">gå " +"til forsida</a> og følg instruksjonane." #: templates/web/default/report/new/notes.html:7 +#: templates/web/fixmystreet/report/new/notes.html:6 msgid "" "Please do not be abusive — abusing your council devalues the service " "for all users." -msgstr "Ikkje ver ufin — å kjefta på administrasjonen din skader verdet av tenesta for alle brukarane." +msgstr "" +"Ikkje ver ufin — å kjefta på administrasjonen din skader verdet av " +"tenesta for alle brukarane." #: perllib/FixMyStreet/DB/Result/Comment.pm:113 +#: templates/web/default/js/validation_strings.html:2 msgid "Please enter a message" msgstr "Ver venleg og skriv ei melding" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:15 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:15 msgid "Please enter a password" msgstr "Skriv inn eit passord" #: perllib/FixMyStreet/App/Controller/Contact.pm:97 -#: perllib/FixMyStreet/DB/Result/Problem.pm:291 +#: perllib/FixMyStreet/DB/Result/Problem.pm:314 +#: templates/web/default/js/validation_strings.html:3 msgid "Please enter a subject" msgstr "Ver venleg og legg inn eit emne" #: perllib/FixMyStreet/DB/Result/User.pm:96 +#: templates/web/default/js/validation_strings.html:12 +#: templates/web/default/js/validation_strings.html:16 msgid "Please enter a valid email" msgstr "Ver venleg og legg til ein gyldig e-post" -#: perllib/FixMyStreet/App/Controller/Alert.pm:345 +#: perllib/FixMyStreet/App/Controller/Alert.pm:342 #: perllib/FixMyStreet/App/Controller/Contact.pm:107 msgid "Please enter a valid email address" msgstr "Ver venleg og legg inn e-postadressa di" -#: perllib/FixMyStreet/DB/Result/Problem.pm:294 +#: perllib/FixMyStreet/DB/Result/Problem.pm:317 +#: templates/web/default/js/validation_strings.html:4 msgid "Please enter some details" msgstr "Ver venleg og legg inn opplysningar om problemet" @@ -1600,19 +1920,34 @@ msgstr "Ver venleg og legg inn opplysningar om problemet" #: perllib/FixMyStreet/DB/Result/User.pm:93 #: templates/web/default/auth/general.html:13 #: templates/web/default/auth/general.html:8 +#: templates/web/default/js/validation_strings.html:11 +#: templates/web/default/js/validation_strings.html:15 +#: templates/web/fixmystreet/auth/general.html:14 +#: templates/web/fixmystreet/auth/general.html:9 msgid "Please enter your email" msgstr "Ver venleg og legg inn e-posten din" -#: perllib/FixMyStreet/DB/Result/Problem.pm:309 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:143 +#, fuzzy +msgid "Please enter your email address" +msgstr "Ver venleg og legg inn e-posten din" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:332 +#: templates/web/default/js/validation_strings.html:7 +#, fuzzy msgid "" -"Please enter your full name, councils need this information - if you do not " -"wish your name to be shown on the site, untick the box" -msgstr "Skriv inn det fulle namnet ditt. Administrasjonar som mottek problemet ditt treng dette. Fjern haka under viss du ikkje ynskjer at namnet ditt skal visast." +"Please enter your full name, councils need this information – if you do not " +"wish your name to be shown on the site, untick the box below" +msgstr "" +"Skriv inn det fulle namnet ditt. Administrasjonar som mottek problemet ditt " +"treng dette. Fjern haka under viss du ikkje ynskjer at namnet ditt skal " +"visast." #: perllib/FixMyStreet/App/Controller/Contact.pm:95 #: perllib/FixMyStreet/DB/Result/Comment.pm:110 -#: perllib/FixMyStreet/DB/Result/Problem.pm:302 +#: perllib/FixMyStreet/DB/Result/Problem.pm:325 #: perllib/FixMyStreet/DB/Result/User.pm:89 +#: templates/web/default/js/validation_strings.html:6 msgid "Please enter your name" msgstr "Ver venleg og legg inn namnet ditt" @@ -1620,8 +1955,8 @@ msgstr "Ver venleg og legg inn namnet ditt" msgid "" "Please fill in details of the empty property below, saying what type of\n" "property it is e.g. an empty home, block of flats, office etc. Tell us\n" -"something about its condition and any other information you feel is relevant." -"\n" +"something about its condition and any other information you feel is " +"relevant.\n" "There is no need for you to give the exact address. Please be polite, " "concise\n" "and to the point; writing your message entirely in block capitals makes it " @@ -1631,6 +1966,8 @@ msgstr "" #: templates/web/default/report/new/fill_in_details_text.html:1 #: templates/web/default/report/new/fill_in_details_text.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:11 msgid "Please fill in details of the problem below." msgstr "Ver venleg og fyll ut detaljar om problemet under." @@ -1650,7 +1987,13 @@ msgstr "" "(t.d. på ein vegg), kva det er, kor lenge det har vore der, ei\n" "skildring (og eit bilete av problemet viss du har eit), osb." +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:68 +#, fuzzy +msgid "Please fill in details of the problem." +msgstr "Ver venleg og fyll ut detaljar om problemet under." + #: templates/web/default/report/new/fill_in_details_form.html:27 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:34 msgid "" "Please fill in the form below with details of the problem, and describe the " "location as precisely as possible in the details box." @@ -1658,11 +2001,12 @@ msgstr "" "Ver venleg og fyll inn skjemaet under med detaljane om problemet,\n" "og skildra plasseringa så nøyaktig som mogleg i boksen for detaljar." -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:241 msgid "Please indicate whether you'd like to receive another questionnaire" msgstr "Ver venleg og indiker om du ynskjer å motta eit nytt spørjeskjema" -#: templates/web/default/report/display.html:62 +#: templates/web/default/report/display.html:61 +#: templates/web/fixmystreet/report/display.html:59 msgid "" "Please note that updates are not sent to the council. If you leave your name " "it will be public. Your information will only be used in accordance with our " @@ -1670,49 +2014,58 @@ msgid "" msgstr "" "Merk at oppdateringar ikkje vert sende til administrasjonen. Viss du\n" "legg igjen namnet ditt så vil det vera offentleg tilgjengeleg.\n" -"Informasjonen din vil berre brukast i samsvar med <a href=\"/faq#privacy\">personvernpolicyen vår</a>" +"Informasjonen din vil berre brukast i samsvar med <a href=\"/faq#privacy" +"\">personvernpolicyen vår</a>" #: templates/web/default/report/new/fill_in_details_form.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:25 msgid "" "Please note your report has <strong>not yet been sent</strong>. Choose a " "category and add further information below, then submit." -msgstr "Merk at rapporten din <strong>enno ikkje er send</strong. Vel ein kategori og legg til meir informasjon under før du sender inn." +msgstr "" +"Merk at rapporten din <strong>enno ikkje er send</strong. Vel ein kategori " +"og legg til meir informasjon under før du sender inn." #: templates/web/default/report/new/notes.html:1 +#: templates/web/fixmystreet/report/new/notes.html:1 msgid "Please note:" msgstr "Merk:" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:247 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:244 msgid "Please provide some explanation as to why you're reopening this report" -msgstr "Ver venleg og bidra med ei forklaring på kvifor du gjenopnar denne problemrapporten" +msgstr "" +"Ver venleg og bidra med ei forklaring på kvifor du gjenopnar denne " +"problemrapporten" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:254 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:251 msgid "Please provide some text as well as a photo" msgstr "Ver venleg og bidra med litt tekst i tillegg til eit bilete" #: perllib/FixMyStreet/App/Controller/Questionnaire.pm:115 -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:240 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:237 msgid "" "Please say whether you've ever reported a problem to your council before" -msgstr "Ver venleg og opplys om du har rapportert eit problem til administrasjonen din tidlegare" +msgstr "" +"Ver venleg og opplys om du har rapportert eit problem til administrasjonen " +"din tidlegare" -#: perllib/FixMyStreet/App/Controller/Alert.pm:82 +#: perllib/FixMyStreet/App/Controller/Alert.pm:80 msgid "Please select the feed you want" msgstr "Vel den kjelda du ynskjer" -#: perllib/FixMyStreet/App/Controller/Alert.pm:120 +#: perllib/FixMyStreet/App/Controller/Alert.pm:118 msgid "Please select the type of alert you want" msgstr "Ver venleg og vel kva for ein type varsel du ynskjer" -#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:236 +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:233 msgid "Please state whether or not the problem has been fixed" msgstr "Ver venleg og oppgje om dette problemet har vorte fiksa eller ikkje" -#: templates/web/default/questionnaire/index.html:52 +#: templates/web/default/questionnaire/index.html:50 msgid "Please take a look at the updates that have been left." msgstr "Ver venleg og sjå over oppdateringane som er lagt inn." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:830 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:843 msgid "Please upload a JPEG image only" msgstr "Ver venleg og berre last opp JPEG-bilete" @@ -1720,26 +2073,35 @@ msgstr "Ver venleg og berre last opp JPEG-bilete" msgid "Please write a message" msgstr "Skriv inn ei melding" +#: templates/web/fixmystreet/report/display.html:74 +#, fuzzy +msgid "Please write your update here" +msgstr "Skriv inn ei melding" + #: templates/web/default/contact/index.html:93 -#: templates/web/default/report/display.html:125 -#: templates/web/default/report/display.html:162 -#: templates/web/default/report/display.html:184 +#: templates/web/default/report/display.html:124 +#: templates/web/default/report/display.html:161 +#: templates/web/default/report/display.html:183 +#: templates/web/fixmystreet/contact/index.html:93 +#: templates/web/fixmystreet/report/display.html:120 +#: templates/web/fixmystreet/report/display.html:144 +#: templates/web/fixmystreet/report/display.html:166 msgid "Post" msgstr "Send inn" -#: templates/web/default/report/updates.html:8 +#: templates/web/default/report/updates.html:14 msgid "Posted anonymously at %s" msgstr "Publisert anonymt %s" -#: templates/web/default/report/updates.html:11 +#: templates/web/default/report/updates.html:17 msgid "Posted by %s (<strong>%s</strong>) at %s" msgstr "Lagt inn av %s (<strong>%s</strong>) %s" -#: templates/web/default/report/updates.html:13 +#: templates/web/default/report/updates.html:19 msgid "Posted by %s at %s" msgstr "Sendt inn av %s %s" -#: templates/web/default/maps/openlayers.html:89 +#: templates/web/default/maps/openlayers.html:85 msgid "Problem" msgstr "Problem" @@ -1759,7 +2121,7 @@ msgstr "Problem %s sendt til administrasjon %s" msgid "Problem breakdown by state" msgstr "Tilstandsfordeling av problem" -#: perllib/FixMyStreet/App/Controller/Admin.pm:774 +#: perllib/FixMyStreet/App/Controller/Admin.pm:776 msgid "Problem marked as open." msgstr "Problem markert som ope." @@ -1771,35 +2133,48 @@ msgstr "Endring av problemtilstand basert på spørjeundersøkingsresultat" msgid "Problems" msgstr "Problem" -#: templates/web/default/around/display_location.html:80 +#: templates/web/default/around/display_location.html:79 msgid "Problems in this area" msgstr "Problem i dette området" +#: templates/web/fixmystreet/around/display_location.html:93 +#: templates/web/fixmystreet/report/display.html:29 +#, fuzzy +msgid "Problems nearby" +msgstr "Fleire problem i nærleiken" + +#: templates/web/fixmystreet/around/display_location.html:92 +#, fuzzy +msgid "Problems on the map" +msgstr "Problem i dette området" + #: db/alert_types.pl:14 msgid "Problems recently reported fixed on FixMyStreet" msgstr "Problem nyleg rapportert fiksa på FiksGataMi" -#: templates/web/default/alert/list.html:52 +#: templates/web/default/alert/list.html:50 +#: templates/web/fixmystreet/alert/_list.html:21 msgid "Problems within %.1fkm of this location" msgstr "Problem innanfor %.1fkm av denne posisjonen" -#: perllib/FixMyStreet/Cobrand/Default.pm:800 +#: perllib/FixMyStreet/Cobrand/Default.pm:748 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:162 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:177 msgid "Problems within %s" msgstr "Problem innanfor %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:809 +#: perllib/FixMyStreet/Cobrand/Default.pm:757 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:170 msgid "Problems within %s ward" msgstr "Problem innanfor %s bydel" -#: templates/web/default/reports/council.html -#: templates/web/default/reports/council.html:16 +#: templates/web/default/reports/council.html:0 +#: templates/web/default/reports/council.html:17 msgid "Problems within %s, FixMyStreet" msgstr "Problem innanfor %s, FiksGataMi" -#: templates/web/default/alert/list.html:69 +#: templates/web/default/alert/list.html:67 +#: templates/web/fixmystreet/alert/_list.html:38 msgid "Problems within the boundary of:" msgstr "Problem innanfor grensene av:" @@ -1807,16 +2182,24 @@ msgstr "Problem innanfor grensene av:" msgid "Properties recently reported as put back to use on reportemptyhomes.com" msgstr "Eigedomar nyleg rapportert som tilbake i bruk på reportemptyhomes.com" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:528 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:543 msgid "Property type:" msgstr "Type eigenskap:" -#: templates/web/default/report/display.html:57 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:62 +#, fuzzy +msgid "Provide a title" +msgstr "Bidra med ei oppdatering" + +#: templates/web/default/report/display.html:56 +#: templates/web/fixmystreet/report/display.html:55 msgid "Provide an update" msgstr "Bidra med ei oppdatering" -#: templates/web/default/report/display.html:181 +#: templates/web/default/report/display.html:180 #: templates/web/default/report/new/fill_in_details_form.html:173 +#: templates/web/fixmystreet/report/display.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:185 msgid "" "Providing a password is optional, but doing so will allow you to more easily " "report problems, leave updates and manage your reports." @@ -1827,9 +2210,13 @@ msgstr "" #: templates/web/default/questionnaire/completed.html:1 #: templates/web/default/questionnaire/completed.html:2 -#: templates/web/default/questionnaire/index.html +#: templates/web/default/questionnaire/index.html:0 #: templates/web/default/questionnaire/index.html:14 #: templates/web/default/questionnaire/index.html:4 +#: templates/web/fixmystreet/questionnaire/index.html:0 +#: templates/web/fixmystreet/questionnaire/index.html:15 +#: templates/web/fixmystreet/questionnaire/index.html:3 +#: templates/web/fixmystreet/questionnaire/index.html:32 msgid "Questionnaire" msgstr "Spørjeskjema" @@ -1845,26 +2232,36 @@ msgstr "Spørjeskjema %d sendt for problem %d" msgid "Questionnaire filled in by problem reporter" msgstr "Spørjeskjema fylt inn av feilrapportøren" -#: templates/web/default/alert/list.html:54 +#: templates/web/fixmystreet/static/for_councils_faq.html:1 +#, fuzzy +msgid "Questions and Answers :: FixMyStreet for Councils" +msgstr "Finn ut om FiksGataMi for det offentlege" + +#: templates/web/default/alert/list.html:52 #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:3 -#: templates/web/default/report/display.html:48 -#: templates/web/default/reports/council.html:61 +#: templates/web/default/report/display.html:47 +#: templates/web/default/reports/council.html:79 +#: templates/web/fixmystreet/alert/_list.html:22 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:3 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed" msgstr "RSS-straum" -#: perllib/FixMyStreet/Cobrand/Default.pm:838 -#: perllib/FixMyStreet/Cobrand/Default.pm:852 +#: perllib/FixMyStreet/Cobrand/Default.pm:786 +#: perllib/FixMyStreet/Cobrand/Default.pm:800 msgid "RSS feed for %s" msgstr "RSS-straum for %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:845 -#: perllib/FixMyStreet/Cobrand/Default.pm:859 +#: perllib/FixMyStreet/Cobrand/Default.pm:793 +#: perllib/FixMyStreet/Cobrand/Default.pm:807 msgid "RSS feed for %s ward, %s" msgstr "RSS-straum for %s bydel, %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:868 -#: perllib/FixMyStreet/Cobrand/Default.pm:882 +#: perllib/FixMyStreet/Cobrand/Default.pm:816 +#: perllib/FixMyStreet/Cobrand/Default.pm:830 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:193 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:201 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:211 @@ -1872,74 +2269,91 @@ msgstr "RSS-straum for %s bydel, %s" msgid "RSS feed of %s" msgstr "RSS-straum frå %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:874 -#: perllib/FixMyStreet/Cobrand/Default.pm:888 +#: perllib/FixMyStreet/Cobrand/Default.pm:822 +#: perllib/FixMyStreet/Cobrand/Default.pm:836 msgid "RSS feed of %s, within %s ward" msgstr "RSS-straum av %s, innanfor %s bydel" -#: templates/web/default/alert/list.html:54 +#: templates/web/default/alert/list.html:52 +#: templates/web/fixmystreet/alert/_list.html:22 msgid "RSS feed of nearby problems" msgstr "RSS-straum med problem i nærleiken" -#: templates/web/default/reports/council.html:61 +#: templates/web/default/reports/council.html:79 msgid "RSS feed of problems in this %s" msgstr "RSS-straum for problem i denne %s-en" -#: perllib/FixMyStreet/Cobrand/Default.pm:801 +#: perllib/FixMyStreet/Cobrand/Default.pm:749 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:163 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:176 msgid "RSS feed of problems within %s" msgstr "RSS-straum for problem innanfor %s" -#: perllib/FixMyStreet/Cobrand/Default.pm:808 +#: perllib/FixMyStreet/Cobrand/Default.pm:756 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:169 msgid "RSS feed of problems within %s ward" msgstr "RSS-straum for problem innanfor %s bydel" #: templates/web/default/around/display_location.html:1 #: templates/web/default/around/display_location.html:4 +#: templates/web/fixmystreet/around/display_location.html:1 +#: templates/web/fixmystreet/around/display_location.html:4 msgid "RSS feed of recent local problems" msgstr "RSS-straum med nye lokale problem" -#: templates/web/default/report/display.html:48 +#: templates/web/default/report/display.html:47 +#: templates/web/fixmystreet/alert/updates.html:9 +#: templates/web/fixmystreet/report/display.html:35 msgid "RSS feed of updates to this problem" msgstr "RSS-straum med oppdateringar for dette problemet" #: templates/web/default/alert/updates.html:9 #: templates/web/default/report/display.html:38 +#: templates/web/fixmystreet/alert/updates.html:14 +#: templates/web/fixmystreet/report/display.html:37 msgid "Receive email when updates are left on this problem." msgstr "Motta e-post når det er oppdateringar på dette problemet" -#: templates/web/default/around/display_location.html +#: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:34 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:34 msgid "Recent local problems, FixMyStreet" msgstr "Nye lokale problem, FiksGataMi." -#: templates/web/default/reports/council.html:87 -#: templates/web/default/reports/council.html:88 -#: templates/web/default/reports/index.html:14 +#: templates/web/default/reports/index.html:19 +#, fuzzy +msgid "Recently <br>fixed" +msgstr "Nyleg løyste problem" + #: templates/web/emptyhomes/reports/index.html:13 +#: templates/web/fiksgatami/nn/reports/index.html:13 #: templates/web/fiksgatami/reports/index.html:13 msgid "Recently fixed" msgstr "Nyleg løyste problem" -#: templates/web/default/index.html:62 +#: templates/web/default/index.html:61 templates/web/fixmystreet/index.html:72 msgid "Recently reported problems" msgstr "Nyleg melde problem" #: templates/web/default/report/new/notes.html:9 +#: templates/web/fixmystreet/report/new/notes.html:8 msgid "" "Remember that FixMyStreet is primarily for reporting physical problems that " "can be fixed. If your problem is not appropriate for submission via this " "site remember that you can contact your council directly using their own " "website." -msgstr "Hugs at FiksGataMi primert er laga for å rapportera fysiske problem som kan fiksast. Viss problemet ditt ikkje er eigna for å senda inn via denne tenesta, hugs at du kan kontakta administrasjonen direkte via deira eiga nettside." +msgstr "" +"Hugs at FiksGataMi primert er laga for å rapportera fysiske problem som kan " +"fiksast. Viss problemet ditt ikkje er eigna for å senda inn via denne " +"tenesta, hugs at du kan kontakta administrasjonen direkte via deira eiga " +"nettside." #: templates/web/default/admin/report_blocks.html:16 msgid "Remove flag" msgstr "Fjern flagg" -#: templates/web/default/admin/report_edit.html:47 +#: templates/web/default/admin/report_edit.html:52 #: templates/web/default/admin/update_edit.html:48 msgid "Remove photo (can't be undone!)" msgstr "Fjern bilete (kan ikkje gjerast om!)" @@ -1948,74 +2362,95 @@ msgstr "Fjern bilete (kan ikkje gjerast om!)" msgid "Report Empty Homes" msgstr "Rapporter tomme heimar" -#: templates/web/default/footer.html:6 templates/web/emptyhomes/header.html:27 -#: templates/web/fiksgatami/footer.html:5 templates/web/reading/footer.html:6 +#: templates/web/bromley/footer.html:33 templates/web/default/footer.html:7 +#: templates/web/emptyhomes/header.html:27 +#: templates/web/fiksgatami/footer.html:5 +#: templates/web/fiksgatami/nn/footer.html:5 +#: templates/web/fixmystreet/footer.html:45 +#: templates/web/reading/footer.html:6 msgid "Report a problem" msgstr "Rapporter eit problem" -#: perllib/FixMyStreet/App/Controller/Rss.pm:274 +#: templates/web/fixmystreet/report/display.html:27 +#, fuzzy +msgid "Report abuse" +msgstr "Rapporter eit problem" + +#: templates/web/emptyhomes/index.html:37 +#, fuzzy +msgid "Report empty properties" +msgstr "Rapporter tomme heimar" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:281 msgid "Report on %s" msgstr "Rapport på %s" -#: templates/web/default/index.html:15 +#: templates/web/default/index.html:15 templates/web/fixmystreet/index.html:28 msgid "Report, view, or discuss local problems" msgstr "Rapporter, finn eller diskuter lokale problem" -#: templates/web/default/my/my.html:74 +#: templates/web/default/my/my.html:74 templates/web/fixmystreet/my/my.html:77 msgid "Reported %s" msgstr "Rapportert %s" -#: templates/web/default/my/my.html:72 +#: templates/web/default/my/my.html:72 templates/web/fixmystreet/my/my.html:75 msgid "Reported %s, to %s" msgstr "Rapportert %s, til %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:490 +#: perllib/FixMyStreet/DB/Result/Problem.pm:504 #: templates/web/default/contact/index.html:45 +#: templates/web/fixmystreet/contact/index.html:46 msgid "Reported anonymously at %s" msgstr "Rapportert anonymt %s" #: templates/web/default/admin/questionnaire.html:5 -#: templates/web/default/questionnaire/index.html:79 +#: templates/web/default/questionnaire/index.html:77 +#: templates/web/fixmystreet/questionnaire/index.html:71 msgid "Reported before" msgstr "Rapportert tidlegare" -#: perllib/FixMyStreet/DB/Result/Problem.pm:482 +#: perllib/FixMyStreet/DB/Result/Problem.pm:496 msgid "Reported by %s anonymously at %s" msgstr "Publisert av %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:513 +#: perllib/FixMyStreet/DB/Result/Problem.pm:527 #: templates/web/default/contact/index.html:47 +#: templates/web/fixmystreet/contact/index.html:48 msgid "Reported by %s at %s" msgstr "Publisert av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:504 +#: perllib/FixMyStreet/DB/Result/Problem.pm:518 msgid "Reported by %s by %s at %s" msgstr "Rapportert av %s av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:478 +#: perllib/FixMyStreet/DB/Result/Problem.pm:492 msgid "Reported by %s in the %s category anonymously at %s" msgstr "Rapportert av %s i kategorien %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:498 +#: perllib/FixMyStreet/DB/Result/Problem.pm:512 msgid "Reported by %s in the %s category by %s at %s" msgstr "Rapportert av %s i kategorien %s av %s %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:486 +#: perllib/FixMyStreet/DB/Result/Problem.pm:500 msgid "Reported in the %s category anonymously at %s" msgstr "Rapportert i kategorien %s anonymt %s" -#: perllib/FixMyStreet/DB/Result/Problem.pm:508 +#: perllib/FixMyStreet/DB/Result/Problem.pm:522 msgid "Reported in the %s category by %s at %s" msgstr "Rapportert i kategorien %s av %s %s" #: templates/web/default/around/around_index.html:1 -#: templates/web/default/report/new/fill_in_details.html +#: templates/web/default/report/new/fill_in_details.html:0 #: templates/web/default/report/new/fill_in_details.html:3 #: templates/web/default/report/new/fill_in_details_form.html:1 +#: templates/web/fixmystreet/around/around_index.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details.html:0 +#: templates/web/fixmystreet/report/new/fill_in_details.html:5 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:2 msgid "Reporting a problem" msgstr "Legger til eit problem" -#: templates/web/default/around/display_location.html:94 +#: templates/web/default/around/display_location.html:93 msgid "Reports on and around the map" msgstr "Problem i og rundt kartet" @@ -2027,7 +2462,9 @@ msgstr "Send rapport på nytt" msgid "" "Road operator for this named road (derived from road reference number and " "type): %s" -msgstr "Vegoperatør for denne namngjevne vegen (utleia frå vegreferansenummer og type): %s" +msgstr "" +"Vegoperatør for denne namngjevne vegen (utleia frå vegreferansenummer og " +"type): %s" #: perllib/FixMyStreet/Geocode/OSM.pm:104 msgid "Road operator for this named road (from OpenStreetMap): %s" @@ -2037,7 +2474,7 @@ msgstr "Vegoperatør for denne namngjevne vegen (frå OpenStreetMap): %s" msgid "Save changes" msgstr "Lagra endringar" -#: perllib/FixMyStreet/App/Controller/Admin.pm:982 +#: perllib/FixMyStreet/App/Controller/Admin.pm:984 msgid "Search Abuse" msgstr "Søk etter misbruk" @@ -2045,13 +2482,13 @@ msgstr "Søk etter misbruk" msgid "Search Abuse Table" msgstr "Søk i misbruktabell" -#: perllib/FixMyStreet/App/Controller/Admin.pm:978 +#: perllib/FixMyStreet/App/Controller/Admin.pm:980 #: templates/web/default/admin/list_flagged.html:1 #: templates/web/default/admin/search_reports.html:1 msgid "Search Reports" msgstr "Søk i rapportar" -#: perllib/FixMyStreet/App/Controller/Admin.pm:981 +#: perllib/FixMyStreet/App/Controller/Admin.pm:983 #: templates/web/default/admin/search_users.html:1 msgid "Search Users" msgstr "Søk i brukarar" @@ -2062,13 +2499,16 @@ msgstr "Søk i brukarar" msgid "Search:" msgstr "Søk:" -#: templates/web/default/alert/list.html:41 +#: templates/web/default/alert/list.html:39 +#: templates/web/fixmystreet/alert/_list.html:10 msgid "" "Select which type of alert you'd like and click the button for an RSS feed, " "or enter your email address to subscribe to an email alert." -msgstr "Vel kva for ein type varsel du ynskjer og klikk på knappen for ei RSS-kjelde, eller skriv inn e-postadressa di for å abonnera på eit e-postvarsel." +msgstr "" +"Vel kva for ein type varsel du ynskjer og klikk på knappen for ei RSS-" +"kjelde, eller skriv inn e-postadressa di for å abonnera på eit e-postvarsel." -#: perllib/FixMyStreet/DB/Result/Problem.pm:555 +#: perllib/FixMyStreet/DB/Result/Problem.pm:569 msgid "Sent to %s %s later" msgstr "Sendt til %s %s seinare" @@ -2101,17 +2541,31 @@ msgid "" " significant contribution to the supply of affordable homes in Wales." msgstr "" -#: templates/web/default/report/display.html:216 +#: templates/web/default/report/display.html:213 #: templates/web/default/report/new/fill_in_details_form.html:210 +#: templates/web/fixmystreet/report/display.html:189 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:123 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:180 msgid "Show my name publicly" msgstr "Vis namnet mitt offentleg" -#: templates/web/default/around/display_location.html:52 +#: templates/web/default/around/display_location.html:60 +#: templates/web/fixmystreet/around/display_location.html:60 +msgid "Show old" +msgstr "" + +#: templates/web/default/around/display_location.html:51 +#: templates/web/fixmystreet/around/display_location.html:52 msgid "Show pins" msgstr "Vis nåler" +#: templates/web/bromley/header.html:50 #: templates/web/default/auth/general.html:3 #: templates/web/default/auth/general.html:49 +#: templates/web/fixmystreet/auth/general.html:3 +#: templates/web/fixmystreet/auth/general.html:38 +#: templates/web/fixmystreet/auth/general.html:58 +#: templates/web/fixmystreet/header.html:50 msgid "Sign in" msgstr "Logg inn" @@ -2120,31 +2574,37 @@ msgid "Sign in by email" msgstr "Logg inn via epost" #: templates/web/default/auth/general.html:1 +#: templates/web/fixmystreet/auth/general.html:1 msgid "Sign in or create an account" msgstr "Logg inn eller opprett ein konto" #: templates/web/default/auth/sign_out.html:1 -#: templates/web/default/header.html:35 -#: templates/web/emptyhomes/header.html:43 +#: templates/web/default/header.html:30 +#: templates/web/emptyhomes/header.html:41 #: templates/web/fiksgatami/header.html:22 +#: templates/web/fiksgatami/nn/header.html:22 +#: templates/web/fixmystreet/auth/sign_out.html:1 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:37 +#: templates/web/reading/header.html:33 msgid "Sign out" msgstr "Logg ut" -#: templates/web/default/header.html:34 -#: templates/web/emptyhomes/header.html:42 +#: templates/web/default/header.html:29 +#: templates/web/emptyhomes/header.html:40 #: templates/web/fiksgatami/header.html:21 +#: templates/web/fiksgatami/nn/header.html:21 #: templates/web/lichfielddc/header.html:177 -#: templates/web/reading/header.html:36 +#: templates/web/reading/header.html:32 msgid "Signed in as %s" msgstr "Logga inn som %s" #: templates/web/default/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 msgid "Some categories may require additional information." msgstr "Somme kategoriar krev kanskje meir informasjon" -#: templates/web/default/alert/index.html:31 +#: templates/web/default/alert/index.html:30 +#: templates/web/fixmystreet/alert/index.html:33 msgid "Some photos of recent reports" msgstr "Nokre bilete av nyleg melde problem" @@ -2157,26 +2617,33 @@ msgstr "Noko tekst å omsetja" msgid "Some unconfirmeds" msgstr "Nokre ustadfesta" -#: perllib/FixMyStreet/Cobrand/Default.pm:517 +#: perllib/FixMyStreet/Cobrand/Default.pm:428 msgid "" "Sorry, that appears to be a Crown dependency postcode, which we don't cover." -msgstr "Orsak, det ser ut til å vera eit «Crown dependency»-postnummer, som vi ikkje dekkjer." +msgstr "" +"Orsak, det ser ut til å vera eit «Crown dependency»-postnummer, som vi ikkje " +"dekkjer." #: templates/web/default/tokens/abuse.html:5 msgid "Sorry, there has been an error confirming your problem." -msgstr "Orsak, men det oppstod eit problem når vi freista å stadfesta problemrapporten din" +msgstr "" +"Orsak, men det oppstod eit problem når vi freista å stadfesta " +"problemrapporten din" -#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:52 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:147 +#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:53 #: perllib/FixMyStreet/Geocode/Google.pm:68 msgid "Sorry, we could not find that location." msgstr "Orsak, vi kunne ikkje finna den staden." -#: perllib/FixMyStreet/Geocode/Bing.pm:45 +#: perllib/FixMyStreet/Geocode/Bing.pm:46 #: perllib/FixMyStreet/Geocode/Google.pm:60 msgid "Sorry, we could not parse that location. Please try again." -msgstr "Orsak, vi kunne ikkje tolka den posisjonen. Ver venleg og prøv på nytt." +msgstr "" +"Orsak, vi kunne ikkje tolka den posisjonen. Ver venleg og prøv på nytt." #: templates/web/fiksgatami/footer.html:16 +#: templates/web/fiksgatami/nn/footer.html:16 msgid "Source code" msgstr "Kjeldekode" @@ -2195,20 +2662,32 @@ msgstr "Startmånad:" #: templates/web/default/admin/list_flagged.html:18 #: templates/web/default/admin/list_updates.html:6 #: templates/web/default/admin/search_reports.html:21 +#: templates/web/fixmystreet/report/display.html:77 msgid "State" msgstr "Tilstand" -#: templates/web/default/admin/report_edit.html:21 +#: templates/web/default/admin/report_edit.html:17 #: templates/web/default/admin/update_edit.html:18 -#: templates/web/default/report/display.html:83 +#: templates/web/default/report/display.html:82 msgid "State:" msgstr "Tilstand:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:984 +#: perllib/FixMyStreet/App/Controller/Admin.pm:986 #: templates/web/default/admin/stats.html:1 msgid "Stats" msgstr "Statistikk" +#: templates/web/default/report/updates.html:9 +#, fuzzy +msgid "Still open, via questionnaire, %s" +msgstr "Skal spørjeskjemaet sendast?" + +#: templates/web/fixmystreet/contact/index.html:79 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:58 +#, fuzzy +msgid "Subject" +msgstr "Emne:" + #: templates/web/default/admin/report_edit.html:13 #: templates/web/default/contact/index.html:83 #: templates/web/default/report/new/fill_in_details_form.html:52 @@ -2219,40 +2698,48 @@ msgstr "Emne:" #: templates/web/default/report/new/fill_in_details_form.html:114 #: templates/web/default/report/new/fill_in_details_form.html:154 #: templates/web/default/report/new/fill_in_details_form.html:176 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:134 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:159 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:195 msgid "Submit" msgstr "Send inn" -#: templates/web/default/admin/report_edit.html:50 +#: templates/web/default/admin/report_edit.html:55 #: templates/web/default/admin/update_edit.html:51 #: templates/web/default/admin/user_edit.html:20 msgid "Submit changes" msgstr "Send inn endringar" -#: templates/web/default/questionnaire/index.html:114 +#: templates/web/default/questionnaire/index.html:112 +#: templates/web/fixmystreet/questionnaire/index.html:105 msgid "Submit questionnaire" msgstr "Send inn spørjeskjema" #: templates/web/default/alert/updates.html:17 #: templates/web/default/report/display.html:43 +#: templates/web/fixmystreet/alert/updates.html:23 +#: templates/web/fixmystreet/report/display.html:42 msgid "Subscribe" msgstr "Abonner" -#: templates/web/default/alert/list.html:128 +#: templates/web/default/alert/list.html:126 +#: templates/web/fixmystreet/alert/_list.html:88 msgid "Subscribe me to an email alert" msgstr "Eg ynskjer å abonnera på e-postvarsel" -#: perllib/FixMyStreet/App/Controller/Admin.pm:976 +#: perllib/FixMyStreet/App/Controller/Admin.pm:978 #: templates/web/default/admin/index.html:1 msgid "Summary" msgstr "Oppsummering" #: templates/web/default/reports/index.html:1 #: templates/web/emptyhomes/reports/index.html:1 +#: templates/web/fiksgatami/nn/reports/index.html:1 #: templates/web/fiksgatami/reports/index.html:1 msgid "Summary reports" msgstr "Oppsummeringsrapportar" -#: perllib/FixMyStreet/App/Controller/Admin.pm:980 +#: perllib/FixMyStreet/App/Controller/Admin.pm:982 #: templates/web/default/admin/questionnaire.html:1 msgid "Survey Results" msgstr "Resultat frå spørjeundersøkinga" @@ -2261,7 +2748,7 @@ msgstr "Resultat frå spørjeundersøkinga" msgid "Text" msgstr "Tekst" -#: templates/web/default/admin/council_contacts.html:12 +#: templates/web/default/admin/council_contacts.html:14 msgid "Text only version" msgstr "Tekst-utgåve" @@ -2317,7 +2804,8 @@ msgstr "" "Takk for at du brukar ReportEmptyHomes.com. Handlinga di bidreg\n" "allereie til å løyse Storbritannias krise med tomme heimar." -#: templates/web/default/around/around_index.html:44 +#: templates/web/default/around/around_index.html:43 +#: templates/web/fixmystreet/around/around_index.html:46 msgid "" "Thanks for uploading your photo. We now need to locate your problem, so " "please enter a nearby street name or postcode in the box below :" @@ -2328,20 +2816,25 @@ msgstr "" #: templates/web/default/contact/submit.html:8 msgid "Thanks for your feedback. We'll get back to you as soon as we can!" -msgstr "Takk for innspillet ditt. Vi gjev deg ei tilbakemelding så snart vi kan." +msgstr "" +"Takk for innspillet ditt. Vi gjev deg ei tilbakemelding så snart vi kan." #: templates/web/default/questionnaire/creator_fixed.html:9 msgid "" "Thanks, glad to hear it's been fixed! Could we just ask if you have ever " "reported a problem to a council before?" -msgstr "Takk, glad for å høyra at problemet er løyst! Vi vil gjerne spørja deg om du har rapportert eit problem til ein administrasjon tidlegare?" +msgstr "" +"Takk, glad for å høyra at problemet er løyst! Vi vil gjerne spørja deg om du " +"har rapportert eit problem til ein administrasjon tidlegare?" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:839 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:856 msgid "" "That image doesn't appear to have uploaded correctly (%s), please try again." -msgstr "Biletet ser ikkje ut til å ha vorte lasta opp riktig (%s), prøv på nytt." +msgstr "" +"Biletet ser ikkje ut til å ha vorte lasta opp riktig (%s), prøv på nytt." #: templates/web/default/alert/index.html:12 +#: templates/web/fixmystreet/alert/index.html:12 msgid "" "That location does not appear to be covered by a council, perhaps it is " "offshore - please try somewhere more specific." @@ -2351,14 +2844,15 @@ msgstr "" #: perllib/FixMyStreet/App/Controller/Location.pm:107 msgid "That location does not appear to be in Britain; please try again." -msgstr "Den staden synest ikkje å vera i Storbritannia. Ver venleg og prøv igjen." +msgstr "" +"Den staden synest ikkje å vera i Storbritannia. Ver venleg og prøv igjen." -#: perllib/FixMyStreet/Cobrand/Default.pm:510 +#: perllib/FixMyStreet/Cobrand/Default.pm:421 #: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:78 msgid "That postcode was not recognised, sorry." msgstr "Det postnummeret vart ikkje gjenkjent, orsak." -#: perllib/FixMyStreet/App/Controller/Admin.pm:558 +#: perllib/FixMyStreet/App/Controller/Admin.pm:560 msgid "That problem will now be resent." msgstr "Det problemet vil no sendast på nytt." @@ -2366,7 +2860,8 @@ msgstr "Det problemet vil no sendast på nytt." msgid "That report has been removed from FixMyStreet." msgstr "Den rapporten har vorte fjerna frå FiksGataMi." -#: templates/web/default/around/around_index.html:27 +#: templates/web/default/around/around_index.html:26 +#: templates/web/fixmystreet/around/around_index.html:29 msgid "" "That spot does not appear to be covered by a council. If you have tried to " "report an issue past the shoreline, for example, please specify the closest " @@ -2401,23 +2896,53 @@ msgid "" "The Open311 v2 attribute agency_responsible is used to list the " "administrations that received the problem report, which is not quite the way " "the attribute is defined in the Open311 v2 specification." -msgstr "Open311 v2-attributten agency_responsible vert brukt for å lista opp administrasjonane som mottok problemrapporten, noko som ikkje heilt passar med korleis attributten er definert i Open311 v2-spesifikasjonen." +msgstr "" +"Open311 v2-attributten agency_responsible vert brukt for å lista opp " +"administrasjonane som mottok problemrapporten, noko som ikkje heilt passar " +"med korleis attributten er definert i Open311 v2-spesifikasjonen." #: templates/web/default/auth/token.html:21 #: templates/web/default/email_sent.html:22 +#: templates/web/fixmystreet/auth/token.html:21 msgid "" "The confirmation email <strong>may</strong> take a few minutes to arrive " "— <em>please</em> be patient." -msgstr "Stadfestingse-posten <strong>kan</strong> bruka nokre minutt før han kjem fram — så ver tålmodig." +msgstr "" +"Stadfestingse-posten <strong>kan</strong> bruka nokre minutt før han kjem " +"fram — så ver tålmodig." -#: templates/web/default/questionnaire/index.html:51 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:1 +#: templates/web/fixmystreet/report/new/fill_in_details_text.html:3 +#, fuzzy +msgid "" +"The council won’t be able to help unless you leave as much\n" +"detail as you can. Please describe the exact location of the problem (e.g. " +"on a\n" +"wall), what it is, how long it has been there, a description (and a photo " +"of\n" +"the problem if you have one), etc." +msgstr "" +"Ver venlg og fyll inn detaljane om problemet under. Administrasjonen\n" +"vil ikkje vera i stand til å hjelpa med mindre du legg inn så mange\n" +"detaljar som du kan. Forklar den eksakte plasseringa for problemet\n" +"(t.d. på ein vegg), kva det er, kor lenge det har vore der, ei\n" +"skildring (og eit bilete av problemet viss du har eit), osb." + +#: templates/web/fixmystreet/questionnaire/index.html:43 +#, fuzzy +msgid "The details of your problem are available from the other tab above." +msgstr "" +"Detaljane om problemet ditt er tilgjengelege på høgre kant av denne sida." + +#: templates/web/default/questionnaire/index.html:49 msgid "" "The details of your problem are available on the right hand side of this " "page." -msgstr "Detaljane om problemet ditt er tilgjengelege på høgre kant av denne sida." +msgstr "" +"Detaljane om problemet ditt er tilgjengelege på høgre kant av denne sida." -#: perllib/FixMyStreet/App/Controller/Reports.pm:46 -#: perllib/FixMyStreet/App/Controller/Reports.pm:73 +#: perllib/FixMyStreet/App/Controller/Reports.pm:44 +#: perllib/FixMyStreet/App/Controller/Reports.pm:71 msgid "The error was: %s" msgstr "Feilen var: %s" @@ -2426,7 +2951,10 @@ msgid "" "The following Open311 v2 attributes are returned for each request: " "service_request_id, description, lat, long, media_url, status, " "requested_datetime, updated_datetime, service_code and service_name." -msgstr "Dei følgjande Open311 v2-attributtene vert returnerte for kvar førespurnad: service_request_id, description, lat, long, media_url, status, requested_datetime, updated_datetime, service_code og service_name." +msgstr "" +"Dei følgjande Open311 v2-attributtene vert returnerte for kvar førespurnad: " +"service_request_id, description, lat, long, media_url, status, " +"requested_datetime, updated_datetime, service_code og service_name." #: perllib/FixMyStreet/Geocode/OSM.pm:99 msgid "" @@ -2481,7 +3009,9 @@ msgstr "Dei siste rapportane for {{COUNCIL}} rapportert av brukarar" #: db/alert_types_eha.pl:24 msgid "" "The latest reports for {{COUNCIL}} within {{WARD}} ward reported by users" -msgstr "Dei siste rapportane for {{COUNCIL}} innanfor {{WARD}} bydel rapportert av brukarar" +msgstr "" +"Dei siste rapportane for {{COUNCIL}} innanfor {{WARD}} bydel rapportert av " +"brukarar" #: db/alert_types_eha.pl:28 msgid "The latest reports within {{NAME}}'s boundary reported by users" @@ -2490,6 +3020,8 @@ msgstr "" #: templates/web/default/auth/change_password.html:12 #: templates/web/default/auth/change_password.html:16 +#: templates/web/fixmystreet/auth/change_password.html:12 +#: templates/web/fixmystreet/auth/change_password.html:16 msgid "The passwords do not match" msgstr "Passorda er ikkje like" @@ -2498,14 +3030,15 @@ msgstr "Passorda er ikkje like" msgid "The requested URL '%s' was not found on this server" msgstr "Fann ikkje URL-en «%s» på denne tenaren" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1034 -#: perllib/FixMyStreet/App/Controller/Admin.pm:1179 -#: perllib/FixMyStreet/App/Controller/Admin.pm:538 -#: perllib/FixMyStreet/App/Controller/Admin.pm:701 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1036 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1206 +#: perllib/FixMyStreet/App/Controller/Admin.pm:540 +#: perllib/FixMyStreet/App/Controller/Admin.pm:703 msgid "The requested URL was not found on this server." msgstr "Fann ikkje URL-ein du spurde etter på denne tenaren" -#: templates/web/default/alert/list.html:47 +#: templates/web/default/alert/list.html:45 +#: templates/web/fixmystreet/alert/_list.html:16 msgid "The simplest alert is our geographic one:" msgstr "Den enklaste meldinga er den geografiske:" @@ -2513,6 +3046,10 @@ msgstr "Den enklaste meldinga er den geografiske:" #: templates/web/default/report/new/councils_text_some.html:10 #: templates/web/default/report/new/councils_text_some.html:11 #: templates/web/default/report/new/fill_in_details_form.html:17 +#: templates/web/fixmystreet/report/new/councils_text_all.html:18 +#: templates/web/fixmystreet/report/new/councils_text_some.html:10 +#: templates/web/fixmystreet/report/new/councils_text_some.html:11 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:12 msgid "" "The subject and details of the problem will be public, plus your name if you " "give us permission." @@ -2520,33 +3057,44 @@ msgstr "" "Tittelen og detaljane for problemet vil verta offentlege, pluss namnet ditt\n" "viss du gjev oss lov til det." -#: bin/send-reports:78 +#: bin/send-reports:79 msgid "" "The user could not locate the problem on a map, but to see the area around " "the location they entered" -msgstr "Brukaren kunne ikkje plassera problemet på eit kart, men sjekk områdde rundt staden dei skreiv inn" +msgstr "" +"Brukaren kunne ikkje plassera problemet på eit kart, men sjekk områdde rundt " +"staden dei skreiv inn" -#: perllib/FixMyStreet/App/Controller/Reports.pm:72 +#: perllib/FixMyStreet/App/Controller/Reports.pm:70 msgid "" "There was a problem showing the All Reports page. Please try again later." -msgstr "Det oppstod problem med å visa «Alle rapportar»-sida. Ver venleg og prøv igjen seinare." +msgstr "" +"Det oppstod problem med å visa «Alle rapportar»-sida. Ver venleg og prøv " +"igjen seinare." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:641 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:656 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:125 #: templates/web/default/auth/general.html:23 +#: templates/web/fixmystreet/auth/general.html:24 +#, fuzzy msgid "" -"There was a problem with your email/password combination. Passwords and user " -"accounts are a brand <strong>new</strong> service, so you probably do not " -"have one yet – please fill in the right hand side of this form to get " -"one." -msgstr "Det var problem med e-post/passord-kombinasjonen din. Passord og brukarkontoar er ei heilt <strong>ny</strong> teneste, så du har sannsynlegvis ikkje ein konto enno. – ver venleg og fyll inn høgresida av dette skjemaet for å skaffa deg ein." +"There was a problem with your email/password combination. If you cannot " +"remember your password, or do not have one, please fill in the ‘sign " +"in by email’ section of the form." +msgstr "" +"Det var problem med e-post/passord-kombinasjonen din. Passord og " +"brukarkontoar er ei heilt <strong>ny</strong> teneste, så du har " +"sannsynlegvis ikkje ein konto enno. – ver venleg og fyll inn høgresida " +"av dette skjemaet for å skaffa deg ein." -#: perllib/FixMyStreet/App/Controller/Alert.pm:354 +#: perllib/FixMyStreet/App/Controller/Alert.pm:351 msgid "" "There was a problem with your email/password combination. Please try again." -msgstr "Det var problem med e-post/passord-kombinasjonen din. Ver venleg og prøv igjen." +msgstr "" +"Det var problem med e-post/passord-kombinasjonen din. Ver venleg og prøv " +"igjen." -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:215 msgid "There was a problem with your update. Please try again." msgstr "Det var problem med oppdateringa di. Ver venleg og prøv igjen." @@ -2554,7 +3102,7 @@ msgstr "Det var problem med oppdateringa di. Ver venleg og prøv igjen." msgid "There were problems with your report. Please see below." msgstr "Det var problem med rapporten din. Ver venleg og sjå under." -#: perllib/FixMyStreet/App/Controller/Report/Update.pm:241 +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:242 msgid "There were problems with your update. Please see below." msgstr "Det var problem med oppdateringa di. Ver venleg og sjå under." @@ -2562,24 +3110,35 @@ msgstr "Det var problem med oppdateringa di. Ver venleg og sjå under." msgid "" "This API implementation is work in progress and not yet stabilized. It will " "change without warnings in the future." -msgstr "Denne API-implementasjonen er under arbeid og ikkje enno stabil. Han vil endra seg utan åtvaring i framtida." +msgstr "" +"Denne API-implementasjonen er under arbeid og ikkje enno stabil. Han vil " +"endra seg utan åtvaring i framtida." -#: bin/send-reports:185 +#: bin/send-reports:186 msgid "" "This email has been sent to both councils covering the location of the " "problem, as the user did not categorise it; please ignore it if you're not " "the correct council to deal with the issue, or let us know what category of " "problem this is so we can add it to our system." -msgstr "Denne e-posten er sendt til begge administrasjonane som dekkjer staden for problemet, sidan brukaren ikkje kategoriserte det. Ver venleg og ignorer e-posten viss de ikkje er korrekt administrasjon for å handtera denne saka, eller gjev oss melding om kva for ein kategori av problem dette er så vi kan leggja det til i systemet vårt." +msgstr "" +"Denne e-posten er sendt til begge administrasjonane som dekkjer staden for " +"problemet, sidan brukaren ikkje kategoriserte det. Ver venleg og ignorer e-" +"posten viss de ikkje er korrekt administrasjon for å handtera denne saka, " +"eller gjev oss melding om kva for ein kategori av problem dette er så vi kan " +"leggja det til i systemet vårt." -#: bin/send-reports:188 +#: bin/send-reports:189 msgid "" "This email has been sent to several councils covering the location of the " "problem, as the category selected is provided for all of them; please ignore " "it if you're not the correct council to deal with the issue." -msgstr "Denne e-posten er sendt til fleire administrasjonar som dekkjer staden for problemet, sidan den valde kategorien er tilgjengeleg for desse. Ver venleg og ignorer e-posten viss de ikkje er korrekt administrasjon for å handtera denne saka." +msgstr "" +"Denne e-posten er sendt til fleire administrasjonar som dekkjer staden for " +"problemet, sidan den valde kategorien er tilgjengeleg for desse. Ver venleg " +"og ignorer e-posten viss de ikkje er korrekt administrasjon for å handtera " +"denne saka." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:761 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:778 msgid "This information is required" msgstr "Denne informasjonen er påkravd" @@ -2587,64 +3146,72 @@ msgstr "Denne informasjonen er påkravd" msgid "" "This is a developer site; things might break at any time, and the database " "will be periodically deleted." -msgstr "Dette er ein utviklarnettstad. Ting kan knekka når som helst og databasen vil verta periodisk sletta." +msgstr "" +"Dette er ein utviklarnettstad. Ting kan knekka når som helst og databasen " +"vil verta periodisk sletta." -#: templates/web/default/reports/council.html:65 +#: templates/web/emptyhomes/reports/council.html:58 msgid "This is a summary of all reports for one %s." msgstr "Dette er ei oppsummering av alle rapportar for ein %s." -#: templates/web/default/reports/council.html:67 +#: templates/web/emptyhomes/reports/council.html:60 msgid "This is a summary of all reports for this %s." msgstr "Dette er ei oppsummering for alle rapportar for denne %s-en." -#: templates/web/default/reports/index.html:4 +#: templates/web/default/reports/index.html:7 #: templates/web/emptyhomes/reports/index.html:4 +#: templates/web/fiksgatami/nn/reports/index.html:4 #: templates/web/fiksgatami/reports/index.html:4 msgid "" "This is a summary of all reports on this site; select a particular council " "to see the reports sent there." -msgstr "Dette er ei opplisting av alle problema i denne tenesta; vel ein viss administrasjon for å sjå problem som er sende dit." +msgstr "" +"Dette er ei opplisting av alle problema i denne tenesta; vel ein viss " +"administrasjon for å sjå problem som er sende dit." -#: perllib/FixMyStreet/Cobrand/Default.pm:926 +#: perllib/FixMyStreet/Cobrand/Default.pm:874 msgid "This problem has been closed" msgstr "Dette problemet er lukka" -#: perllib/FixMyStreet/Cobrand/Default.pm:922 +#: perllib/FixMyStreet/Cobrand/Default.pm:870 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 -#: templates/web/default/report/display.html:101 +#: templates/web/default/report/display.html:100 +#: templates/web/fixmystreet/report/display.html:95 msgid "This problem has been fixed" msgstr "Dette problemet er løyst" -#: templates/web/default/report/display.html:96 +#: templates/web/default/report/display.html:95 +#: templates/web/fixmystreet/report/display.html:89 msgid "This problem has not been fixed" msgstr "Dette problemet har ikkje vorte løyst" -#: perllib/FixMyStreet/Cobrand/Default.pm:931 +#: perllib/FixMyStreet/Cobrand/Default.pm:879 msgid "This problem is in progress" msgstr "Dette problemet er under arbeid" -#: perllib/FixMyStreet/Cobrand/Default.pm:918 +#: perllib/FixMyStreet/Cobrand/Default.pm:866 msgid "This problem is old and of unknown status." msgstr "Dette problemet er gammalt og med ukjend status." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 msgid "This report is currently marked as closed." msgstr "Denne rapporten er for tida markert som lukka." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:79 msgid "This report is currently marked as fixed." msgstr "Denne rapporten er for tida markert som fiksa." -#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:83 msgid "This report is currently marked as open." msgstr "Denne rapporten er for tida markert som open." -#: bin/send-reports:71 +#: bin/send-reports:72 msgid "" "This web page also contains a photo of the problem, provided by the user." -msgstr "Denne nettsida inneheld òg eit bilete av problemet, sendt inn av brukaren." +msgstr "" +"Denne nettsida inneheld òg eit bilete av problemet, sendt inn av brukaren." -#: perllib/FixMyStreet/App/Controller/Admin.pm:979 +#: perllib/FixMyStreet/App/Controller/Admin.pm:981 #: templates/web/default/admin/timeline.html:1 msgid "Timeline" msgstr "Tidslinje" @@ -2654,7 +3221,16 @@ msgstr "Tidslinje" msgid "Title" msgstr "Tittel" -#: templates/web/default/around/display_location.html:70 +#: templates/web/default/around/display_location.html:69 +#, fuzzy +msgid "" +"To <strong>report a problem</strong>, click on the map at the correct " +"location." +msgstr "" +"For å <strong>rapportera eit problem</strong>, klikk på kartet på riktig " +"stad." + +#: templates/web/emptyhomes/around/display_location.html:35 msgid "" "To <strong>report a problem</strong>, simply click on the map at the correct " "location." @@ -2662,13 +3238,22 @@ msgstr "" "For å <strong>rapportera eit problem</strong>, klikk på kartet på riktig " "stad." +#: templates/web/fixmystreet/alert/index.html:19 +#, fuzzy +msgid "" +"To find out what local alerts we have for you, please enter your GB\n" +" postcode or street name and area" +msgstr "" +"Du finn lokale problem ved å søkja på postnummeret ditt, vegnamn eller stad:" + #: templates/web/default/alert/index.html:21 msgid "" "To find out what local alerts we have for you, please enter your GB\n" "postcode or street name and area:" -msgstr "Du finn lokale problem ved å søkja på postnummeret ditt, vegnamn eller stad:" +msgstr "" +"Du finn lokale problem ved å søkja på postnummeret ditt, vegnamn eller stad:" -#: bin/send-reports:77 +#: bin/send-reports:78 msgid "To view a map of the precise location of this issue" msgstr "For å sjå eit kart med ei meir presis plassering for dette problemet" @@ -2679,17 +3264,23 @@ msgstr "For å sjå eit kart med ei meir presis plassering for dette problemet" msgid "Total" msgstr "Totalt" -#: perllib/FixMyStreet/App/Controller/Reports.pm:45 +#: perllib/FixMyStreet/App/Controller/Reports.pm:43 msgid "Unable to look up areas in MaPit. Please try again later." -msgstr "Klarte ikkje slå opp område i MaPit. Ver venleg og prøv igjen seinare." +msgstr "" +"Klarte ikkje slå opp område i MaPit. Ver venleg og prøv igjen seinare." -#: templates/web/default/admin/report_edit.html:22 -#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:21 #: templates/web/default/admin/update_edit.html:19 msgid "Unconfirmed" msgstr "Ikkje stadfesta" -#: perllib/FixMyStreet/App/Controller/Rss.pm:163 +#: perllib/FixMyStreet/Cobrand/FixMyStreet.pm:16 +#, fuzzy +msgid "Unknown" +msgstr "*ukjent*" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:164 msgid "Unknown alert type" msgstr "Ukjend varsel-type" @@ -2697,15 +3288,22 @@ msgstr "Ukjend varsel-type" msgid "Unknown problem ID" msgstr "Ukjend problem-ID" +#: templates/web/fixmystreet/report/display.html:70 +#, fuzzy +msgid "Update" +msgstr "Oppdatering:" + #: templates/web/default/admin/timeline.html:35 msgid "Update %s created for problem %d; by %s" msgstr "Oppdatering %s oppretta for problem %d, av %s" #: templates/web/default/contact/index.html:21 +#: templates/web/fixmystreet/contact/index.html:22 msgid "Update below added anonymously at %s" msgstr "Oppdateringa under vart lagt inn anonymt %s" #: templates/web/default/contact/index.html:23 +#: templates/web/fixmystreet/contact/index.html:24 msgid "Update below added by %s at %s" msgstr "Oppdateringa under vart lagt til av %s %s" @@ -2729,22 +3327,23 @@ msgstr "Ei oppdatering markerte dette problemet som fiksa." msgid "Update reopened problem" msgstr "Ei oppdatering gjenopna problemet" -#: templates/web/default/admin/council_contacts.html:53 +#: templates/web/default/admin/council_contacts.html:58 msgid "Update statuses" msgstr "Oppdater tilstanden" -#: templates/web/default/report/display.html:77 +#: templates/web/default/report/display.html:76 msgid "Update:" msgstr "Oppdatering:" -#: perllib/FixMyStreet/App/Controller/Admin.pm:647 -#: perllib/FixMyStreet/App/Controller/Admin.pm:764 -#: perllib/FixMyStreet/App/Controller/Admin.pm:844 +#: perllib/FixMyStreet/App/Controller/Admin.pm:649 +#: perllib/FixMyStreet/App/Controller/Admin.pm:766 +#: perllib/FixMyStreet/App/Controller/Admin.pm:846 msgid "Updated!" msgstr "Oppdatert!" #: templates/web/default/admin/list_updates.html:1 -#: templates/web/default/report/updates.html:4 +#: templates/web/default/report/update.html:3 +#: templates/web/fixmystreet/report/update.html:3 msgid "Updates" msgstr "Oppdateringar" @@ -2752,16 +3351,18 @@ msgstr "Oppdateringar" msgid "Updates on {{title}}" msgstr "Oppdateringar av {{title}}" -#: templates/web/default/report/display.html +#: templates/web/default/report/display.html:0 #: templates/web/default/report/display.html:7 +#: templates/web/fixmystreet/report/display.html:0 +#: templates/web/fixmystreet/report/display.html:7 msgid "Updates to this problem, FixMyStreet" msgstr "Oppdateringar til dette problemet, FiksGataMi" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1137 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1139 msgid "User flag removed" msgstr "Brukarflagg fjerna" -#: perllib/FixMyStreet/App/Controller/Admin.pm:1109 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1111 msgid "User flagged" msgstr "Brukar flagga" @@ -2769,8 +3370,8 @@ msgstr "Brukar flagga" msgid "Users" msgstr "Brukarar" -#: perllib/FixMyStreet/App/Controller/Admin.pm:304 -#: perllib/FixMyStreet/App/Controller/Admin.pm:334 +#: perllib/FixMyStreet/App/Controller/Admin.pm:306 +#: perllib/FixMyStreet/App/Controller/Admin.pm:336 msgid "Values updated" msgstr "Verdi oppdatert" @@ -2783,35 +3384,52 @@ msgstr "Sjå rapport på nettstaden" msgid "View your report" msgstr "Vis rapporten din" -#: templates/web/default/around/display_location.html +#: templates/web/default/around/display_location.html:0 #: templates/web/default/around/display_location.html:33 +#: templates/web/emptyhomes/around/display_location.html:0 +#: templates/web/emptyhomes/around/display_location.html:16 +#: templates/web/fixmystreet/around/display_location.html:0 +#: templates/web/fixmystreet/around/display_location.html:33 msgid "Viewing a location" msgstr "Ser på ein stad" -#: templates/web/default/report/display.html +#: templates/web/default/report/display.html:0 +#: templates/web/emptyhomes/report/display.html:1 +#: templates/web/emptyhomes/report/display.html:2 +#: templates/web/fixmystreet/report/display.html:0 msgid "Viewing a problem" msgstr "Ser på eit problem" -#: templates/web/default/reports/council.html:22 +#: templates/web/default/reports/council.html:23 +#: templates/web/default/reports/council.html:74 +#: templates/web/default/reports/council.html:86 +#: templates/web/emptyhomes/reports/council.html:18 msgid "Wards of this council" msgstr "Bydelar innanfor denne administrasjonen" -#: perllib/FixMyStreet/Cobrand/Default.pm:521 -#: perllib/FixMyStreet/Geocode/Bing.pm:47 +#: perllib/FixMyStreet/Cobrand/Default.pm:432 +#: perllib/FixMyStreet/Geocode/Bing.pm:48 #: perllib/FixMyStreet/Geocode/Google.pm:63 msgid "We do not currently cover Northern Ireland, I'm afraid." msgstr "Vi dekkjer diverre ikkje Nord-Irland." #: templates/web/default/alert/choose.html:6 -#: templates/web/default/around/around_index.html:33 +#: templates/web/default/around/around_index.html:32 +#: templates/web/fixmystreet/alert/choose.html:6 +#: templates/web/fixmystreet/around/around_index.html:35 msgid "" "We found more than one match for that location. We show up to ten matches, " "please try a different search if yours is not here." -msgstr "Vi fann meir ein eitt treff for den staden. Vi viser opp til ti treff, så prøv eit anna søk viss staden din ikkje er her." +msgstr "" +"Vi fann meir ein eitt treff for den staden. Vi viser opp til ti treff, så " +"prøv eit anna søk viss staden din ikkje er her." #: templates/web/default/auth/token.html:19 +#: templates/web/fixmystreet/auth/token.html:19 msgid "We have sent you an email containing a link to confirm your account." -msgstr "Vi har sendt deg ein epost som inneheld ei lenkje for å stadfesta kontoen din." +msgstr "" +"Vi har sendt deg ein epost som inneheld ei lenkje for å stadfesta kontoen " +"din." #: templates/web/emptyhomes/tokens/confirm_problem.html:18 #: templates/web/emptyhomes/tokens/confirm_problem.html:20 @@ -2822,7 +3440,18 @@ msgstr "" "Det kan hende vi periodisk tek kontakt med deg for å spørja om noko har " "endra seg med eiedommen du rapporterte." -#: bin/send-reports:195 +#: templates/web/fixmystreet/report/display.html:158 +#, fuzzy +msgid "We never show your email" +msgstr "(vi viser aldri e-postadressa di)" + +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:127 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:184 +#, fuzzy +msgid "We never show your email address or phone number." +msgstr "(vi viser aldri e-postadressa di eller telefonnummeret ditt)" + +#: bin/send-reports:196 msgid "" "We realise this problem might be the responsibility of %s; however, we don't " "currently have any contact details for them. If you know of an appropriate " @@ -2832,30 +3461,40 @@ msgstr "" "tida kontaktinformasjon for dei. Viss du veit om ei eigna kontaktadresse, ta " "kontakt med oss." -#: templates/web/default/index.html:46 +#: templates/web/default/index.html:45 templates/web/emptyhomes/index.html:61 +#: templates/web/fixmystreet/index.html:56 msgid "We send it to the council on your behalf" msgstr "Vi sender til administrasjon på dine vegner" #: templates/web/default/report/new/notes.html:5 +#: templates/web/fixmystreet/report/new/notes.html:4 msgid "" "We will only use your personal information in accordance with our <a href=\"/" "faq#privacy\">privacy policy.</a>" -msgstr "Vi vil berre bruka personleg informasjon om deg i samsvar med <a href=\"/faq#privacy\">personvernpolicyen</a> vår." +msgstr "" +"Vi vil berre bruka personleg informasjon om deg i samsvar med <a href=\"/" +"faq#privacy\">personvernpolicyen</a> vår." #: templates/web/emptyhomes/contact/blurb.html:2 msgid "" "We’d love to hear what you think about this website. Just fill in the " "form. Please don’t contact us about individual empty homes; use the " "box accessed from <a href=\"/\">the front page</a>." -msgstr "Vi vil gjerne høyra kva du tenkjer om denne nettstaden. Det er berre å fylla inn skjemaet. Ver venleg og ikkje kontakt oss om individuelle tomme heimar. For det bør du i staden bruka boksen som er på <a href=\"/\">forsida</a>." +msgstr "" +"Vi vil gjerne høyra kva du tenkjer om denne nettstaden. Det er berre å " +"fylla inn skjemaet. Ver venleg og ikkje kontakt oss om individuelle tomme " +"heimar. For det bør du i staden bruka boksen som er på <a href=\"/" +"\">forsida</a>." #: templates/web/default/contact/blurb.html:8 msgid "" "We'd love to hear what you think about this site. Just fill in the form, or " "send an email to <a href='mailto:%s'>%s</a>:" -msgstr "Vi ynskjer å få tilbakemelding frå deg om kva du meiner om denne tenesta. Berre fyll ut skjemaet, eller send ein e-post <a href='mailto:%s'>%s</a>:" +msgstr "" +"Vi ynskjer å få tilbakemelding frå deg om kva du meiner om denne tenesta. " +"Berre fyll ut skjemaet, eller send ein e-post <a href='mailto:%s'>%s</a>:" -#: templates/web/default/admin/council_contacts.html:32 +#: templates/web/default/admin/council_contacts.html:37 #: templates/web/default/admin/council_edit.html:41 msgid "When edited" msgstr "Når redigert" @@ -2865,7 +3504,7 @@ msgstr "Når redigert" msgid "When sent" msgstr "Når sendt" -#: perllib/FixMyStreet/App/Controller/Report/New.pm:523 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:538 msgid "Whole block of empty flats" msgstr "Heil blokk med tomme leilegheiter" @@ -2874,42 +3513,76 @@ msgid "" "With request searches, it is also possible to search for agency_responsible " "to limit the requests to those sent to a single administration. The search " "term is the administration ID provided by <a href=\"%s\">MaPit</a>." -msgstr "Når du søkjer etter førespurnader, så er det òg mogleg å søkja etter agency_responsible for å avgrensa det til førespurnader som er sendt til ein einskild adminstrasjon. Søkjetermen er administrasjonssida som du får frå <a href=\"%s\">MaPit</a>." +msgstr "" +"Når du søkjer etter førespurnader, så er det òg mogleg å søkja etter " +"agency_responsible for å avgrensa det til førespurnader som er sendt til ein " +"einskild adminstrasjon. Søkjetermen er administrasjonssida som du får frå <a " +"href=\"%s\">MaPit</a>." -#: templates/web/default/questionnaire/index.html:104 +#: templates/web/fixmystreet/footer.html:23 +msgid "" +"Would you like better integration with FixMyStreet? <a href=\"/for-councils" +"\">Find out about FixMyStreet for councils</a>." +msgstr "" + +#: templates/web/fixmystreet/footer.html:19 +#, fuzzy +msgid "" +"Would you like to contribute to FixMyStreet? Our code is open source and <a " +"href=\"http://github.com/mysociety/fixmystreet\">available on GitHub</a>." +msgstr "" +"Kjeldekoda vår er fri programvare og <a href=\"http://github.com/mysociety/" +"fixmystreet\">tilgjengeleg på GitHub</a>." + +#: templates/web/default/questionnaire/index.html:102 +#: templates/web/fixmystreet/questionnaire/index.html:96 msgid "" "Would you like to receive another questionnaire in 4 weeks, reminding you to " "check the status?" -msgstr "Kunne du tenkja deg å motta ein ny førespurnad om 4 veker, som minner deg om å sjekka status?" +msgstr "" +"Kunne du tenkja deg å motta ein ny førespurnad om 4 veker, som minner deg om " +"å sjekka status?" #: templates/web/default/report/new/notes.html:8 +#: templates/web/fixmystreet/report/new/notes.html:7 msgid "" "Writing your message entirely in block capitals makes it hard to read, as " "does a lack of punctuation." -msgstr "Når du skriv meldinga di med berre store bokstavar vert ho vanskeleg å lesa. Det same gjeld manglande tegnsetting." +msgstr "" +"Når du skriv meldinga di med berre store bokstavar vert ho vanskeleg å lesa. " +"Det same gjeld manglande tegnsetting." #: templates/web/default/admin/stats.html:10 msgid "Year" msgstr "År" -#: templates/web/default/admin/council_contacts.html:39 -#: templates/web/default/admin/council_contacts.html:40 +#: templates/web/default/admin/council_contacts.html:44 +#: templates/web/default/admin/council_contacts.html:45 #: templates/web/default/admin/council_edit.html:5 #: templates/web/default/admin/list_updates.html:30 #: templates/web/default/admin/list_updates.html:31 #: templates/web/default/admin/list_updates.html:32 #: templates/web/default/admin/problem_row.html:19 -#: templates/web/default/admin/report_edit.html:18 +#: templates/web/default/admin/report_edit.html:27 #: templates/web/default/admin/report_edit.html:40 #: templates/web/default/admin/search_users.html:23 #: templates/web/default/admin/update_edit.html:15 #: templates/web/default/questionnaire/creator_fixed.html:14 -#: templates/web/default/questionnaire/index.html:107 -#: templates/web/default/questionnaire/index.html:68 +#: templates/web/default/questionnaire/index.html:105 +#: templates/web/default/questionnaire/index.html:66 +#: templates/web/fixmystreet/questionnaire/index.html:60 +#: templates/web/fixmystreet/questionnaire/index.html:99 msgid "Yes" msgstr "Ja" +#: templates/web/fixmystreet/report/display.html:138 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:153 +#, fuzzy +msgid "Yes I have a password" +msgstr "<strong>Ja</strong>, eg har eit passord:" + #: templates/web/default/contact/index.html:37 +#: templates/web/fixmystreet/contact/index.html:38 msgid "" "You are reporting the following problem report for being abusive, containing " "personal information, or similar:" @@ -2918,6 +3591,7 @@ msgstr "" "informasjon eller liknande:" #: templates/web/default/contact/index.html:15 +#: templates/web/fixmystreet/contact/index.html:16 msgid "" "You are reporting the following update for being abusive, containing " "personal information, or similar:" @@ -2925,7 +3599,7 @@ msgstr "" "Du rapporterer at følgjande oppdatering er støytande, inneheld personleg " "informasjon, eller liknande:" -#: templates/web/default/reports/council.html:71 +#: templates/web/emptyhomes/reports/council.html:64 msgid "" "You can <a href=\"%s\">view all reports for the council</a> or <a href=\"/" "reports\">show all councils</a>." @@ -2933,7 +3607,7 @@ msgstr "" "Du kan <a href=\"%s\">sjå alle rapportar for administrasjonen</a> eller <a " "href=\"/reports\">sjå alle administrasjonane</a>." -#: templates/web/default/reports/council.html:73 +#: templates/web/emptyhomes/reports/council.html:66 msgid "You can <a href=\"/reports\">show all councils</a>." msgstr "Du kan <a href=\"/reports/\">sjå alle administrasjonar</a>." @@ -2941,6 +3615,10 @@ msgstr "Du kan <a href=\"/reports/\">sjå alle administrasjonar</a>." #: templates/web/default/report/new/councils_text_none.html:16 #: templates/web/default/report/new/councils_text_some.html:20 #: templates/web/default/report/new/councils_text_some.html:22 +#: templates/web/fixmystreet/report/new/councils_text_none.html:12 +#: templates/web/fixmystreet/report/new/councils_text_none.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:20 +#: templates/web/fixmystreet/report/new/councils_text_some.html:22 msgid "" "You can help us by finding a contact email address for local problems for %s " "and emailing it to us at <a href='mailto:%s'>%s</a>." @@ -2952,10 +3630,15 @@ msgstr "" msgid "" "You have already answered this questionnaire. If you have a question, please " "<a href='%s'>get in touch</a>, or <a href='%s'>view your problem</a>.\n" -msgstr "Du har allereie svart på dette spørjeskjemaet. Viss du har spurnader, ver venleg og <a href='%s'>ta kontakt</a>, eller <a href='%s'>sjå på problemet ditt</a>.\n" +msgstr "" +"Du har allereie svart på dette spørjeskjemaet. Viss du har spurnader, ver " +"venleg og <a href='%s'>ta kontakt</a>, eller <a href='%s'>sjå på problemet " +"ditt</a>.\n" -#: templates/web/default/questionnaire/index.html:94 +#: templates/web/default/questionnaire/index.html:92 #: templates/web/default/report/new/fill_in_details_form.html:93 +#: templates/web/fixmystreet/questionnaire/index.html:87 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:101 msgid "" "You have already attached a photo to this report, attaching another one will " "replace it." @@ -2963,7 +3646,8 @@ msgstr "" "Du har allereie lagt ved eit bilete til dette problemet. Å leggja ved eit " "anna vil byta ut dette." -#: templates/web/default/report/display.html:112 +#: templates/web/default/report/display.html:111 +#: templates/web/fixmystreet/report/display.html:105 msgid "" "You have already attached a photo to this update, attaching another one will " "replace it." @@ -2972,14 +3656,19 @@ msgstr "" "anna vil byta ut dette." #: templates/web/default/auth/sign_out.html:3 +#: templates/web/fixmystreet/auth/sign_out.html:3 msgid "You have been signed out" msgstr "Du er allereie logga ut" #: templates/web/default/report/new/fill_in_details_form.html:7 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:27 +#, fuzzy msgid "" -"You have located the problem at the point marked with a purple pin on the " +"You have located the problem at the point marked with a green pin on the " "map. If this is not the correct location, simply click on the map again. " -msgstr "Du har plassert problemet ved punktet i kartet som er markert med ein lilla nål. Viss dette ikkje er korrekt plassering, kan du klikka i kartet på nytt." +msgstr "" +"Du har plassert problemet ved punktet i kartet som er markert med ein lilla " +"nål. Viss dette ikkje er korrekt plassering, kan du klikka i kartet på nytt." #: templates/web/default/tokens/confirm_alert.html:7 msgid "You have successfully confirmed your alert." @@ -2993,9 +3682,11 @@ msgstr "Du har no stadfesta problemet ditt" #: templates/web/default/tokens/confirm_update.html:11 #: templates/web/default/tokens/confirm_update.html:12 msgid "" -"You have successfully confirmed your update and you can now <a href=\"" -"%s\">view it on the site</a>." -msgstr "Du har no stadfesta oppdateringa di <a href=\"%s\">og kan sjå ho på denne nettstaden</a>." +"You have successfully confirmed your update and you can now <a href=\"%s" +"\">view it on the site</a>." +msgstr "" +"Du har no stadfesta oppdateringa di <a href=\"%s\">og kan sjå ho på denne " +"nettstaden</a>." #: templates/web/default/tokens/confirm_alert.html:11 msgid "You have successfully created your alert." @@ -3005,12 +3696,14 @@ msgstr "Du har oppretta varselet ditt." msgid "You have successfully deleted your alert." msgstr "Sletting av varselet ditt var vellukka." -#: perllib/FixMyStreet/App/Controller/Report/New.pm:647 +#: perllib/FixMyStreet/App/Controller/Report/New.pm:662 #: perllib/FixMyStreet/App/Controller/Report/Update.pm:131 msgid "" "You have successfully signed in; please check and confirm your details are " "accurate:" -msgstr "Du har no logga inn. Ver venleg og sjekk og stadfest at detaljane dine er korrekte:" +msgstr "" +"Du har no logga inn. Ver venleg og sjekk og stadfest at detaljane dine er " +"korrekte:" #: templates/web/default/email_sent.html:26 msgid "" @@ -3024,38 +3717,87 @@ msgstr "" msgid "You really want to resend?" msgstr "Ynskjer du verkeleg å senda på nytt?" -#: templates/web/default/my/my.html templates/web/default/my/my.html:14 -#: templates/web/default/my/my.html:3 +#: templates/web/default/my/my.html:0 templates/web/default/my/my.html:14 +#: templates/web/default/my/my.html:3 templates/web/fixmystreet/my/my.html:0 +#: templates/web/fixmystreet/my/my.html:14 +#: templates/web/fixmystreet/my/my.html:3 msgid "Your Reports" msgstr "Rapportane dine" +#: templates/web/fixmystreet/alert/_list.html:85 +#: templates/web/fixmystreet/alert/updates.html:19 +#: templates/web/fixmystreet/alert/updates.html:22 +#: templates/web/fixmystreet/contact/index.html:72 +#: templates/web/fixmystreet/report/display.html:39 +#: templates/web/fixmystreet/report/display.html:41 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:139 +#, fuzzy +msgid "Your email" +msgstr "E-posten din" + +#: templates/web/fixmystreet/auth/general.html:26 +#: templates/web/fixmystreet/report/display.html:129 +#, fuzzy +msgid "Your email address" +msgstr "e-postadressa di:" + #: templates/web/default/auth/general.html:27 msgid "Your email address:" msgstr "e-postadressa di:" -#: templates/web/default/alert/list.html:122 -#: templates/web/default/report/display.html:134 +#: templates/web/default/alert/list.html:120 +#: templates/web/default/report/display.html:133 #: templates/web/default/report/new/fill_in_details_form.html:124 msgid "Your email:" msgstr "E-posten din" +#: templates/web/fixmystreet/auth/general.html:53 +#: templates/web/fixmystreet/contact/index.html:65 +#: templates/web/fixmystreet/report/display.html:185 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:118 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:175 +#, fuzzy +msgid "Your name" +msgstr "Namnet ditt:" + #: templates/web/default/auth/general.html:59 #: templates/web/default/contact/index.html:68 -#: templates/web/default/report/display.html:210 +#: templates/web/default/report/display.html:207 #: templates/web/default/report/new/fill_in_details_form.html:203 msgid "Your name:" msgstr "Namnet ditt:" +#: templates/web/fixmystreet/auth/general.html:37 +#: templates/web/fixmystreet/report/display.html:143 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:158 +#, fuzzy +msgid "Your password" +msgstr "Rapportane dine" + #: templates/web/default/auth/change_password.html:6 +#: templates/web/fixmystreet/auth/change_password.html:6 msgid "Your password has been changed" msgstr "Passordet ditt har vorte endra" -#: templates/web/default/footer.html:7 templates/web/fiksgatami/footer.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:131 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:189 +msgid "Your phone number" +msgstr "" + +#: templates/web/fixmystreet/questionnaire/index.html:16 +#, fuzzy +msgid "Your report" +msgstr "Oppdateringane dine" + +#: templates/web/bromley/footer.html:35 templates/web/default/footer.html:9 +#: templates/web/fiksgatami/footer.html:6 +#: templates/web/fiksgatami/nn/footer.html:6 +#: templates/web/fixmystreet/footer.html:47 #: templates/web/reading/footer.html:7 msgid "Your reports" msgstr "Oppdateringane dine" -#: templates/web/default/my/my.html:45 +#: templates/web/default/my/my.html:45 templates/web/fixmystreet/my/my.html:45 msgid "Your updates" msgstr "Oppdateringane dine" @@ -3069,6 +3811,8 @@ msgstr "av %s" #: templates/web/default/reports/council.html:6 #: templates/web/default/reports/council.html:7 +#: templates/web/emptyhomes/reports/council.html:6 +#: templates/web/emptyhomes/reports/council.html:7 msgid "council" msgstr "administrasjon" @@ -3076,6 +3820,11 @@ msgstr "administrasjon" msgid "didn't use map" msgstr "brukte ikkje kart" +#: templates/web/fixmystreet/alert/index.html:24 +#: templates/web/fixmystreet/index.html:41 +msgid "e.g. ‘%s’ or ‘%s’" +msgstr "" + #: templates/web/default/admin/index.html:15 msgid "from %d different users" msgstr "frå %d ulike brukarar" @@ -3084,11 +3833,11 @@ msgstr "frå %d ulike brukarar" msgid "less than a minute" msgstr "mindre enn eitt minutt" -#: templates/web/default/report/updates.html:18 +#: templates/web/default/report/updates.html:24 msgid "marked as %s" msgstr "markert som %s" -#: templates/web/default/report/updates.html:16 +#: templates/web/default/report/updates.html:22 msgid "marked as fixed" msgstr "markert som løyst" @@ -3098,7 +3847,8 @@ msgstr "markert som løyst" msgid "n/a" msgstr "i/t" -#: templates/web/default/alert/list.html:116 +#: templates/web/default/alert/list.html:114 +#: templates/web/fixmystreet/alert/_list.html:81 msgid "or" msgstr "eller" @@ -3110,20 +3860,28 @@ msgstr "søkte etter" msgid "other areas:" msgstr "andre område:" -#: templates/web/default/report/updates.html:17 +#: templates/web/default/report/updates.html:23 msgid "reopened" msgstr "opna på nytt" +#: templates/web/bromley/header.html:47 +#: templates/web/fixmystreet/header.html:47 +#, fuzzy +msgid "sign out" +msgstr "Logg ut" + #: templates/web/default/report/new/fill_in_details_form.html:11 #: templates/web/default/report/new/fill_in_details_form.html:14 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:6 +#: templates/web/fixmystreet/report/new/fill_in_details_form.html:9 msgid "the local council" msgstr "den lokale administrasjonen" -#: perllib/FixMyStreet/DB/Result/Problem.pm:520 +#: perllib/FixMyStreet/DB/Result/Problem.pm:534 msgid "the map was not used so pin location may be inaccurate" msgstr "karta vart ikkje brukt, så nåleposisjon kan vera unøyaktig" -#: bin/send-reports:176 +#: bin/send-reports:177 msgid "this type of local problem" msgstr "denne typen lokalt problem" @@ -3143,8 +3901,10 @@ msgstr "brukaren er frå same administrasjon som problemet – %d" msgid "user is problem owner" msgstr "brukaren er eigaren av problemet" -#: templates/web/default/reports/council.html +#: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:3 +#: templates/web/emptyhomes/reports/council.html:0 +#: templates/web/emptyhomes/reports/council.html:3 msgid "ward" msgstr "bydel" @@ -3178,22 +3938,24 @@ msgstr "vil problemet ditt ikkje publiserast" msgid "your update will not be posted" msgstr "oppdateringa di vil ikkje publiserast" -#: templates/web/default/front/stats.html:17 +#: templates/web/emptyhomes/front/stats.html:17 #, perl-format msgid "<big>%s</big> report recently" msgid_plural "<big>%s</big> reports recently" msgstr[0] "<big>%s</big> rapport nyleg" msgstr[1] "<big>%s</big> rapportar nyleg" -#: templates/web/default/report/new/councils_text_none.html:5 +#: templates/web/emptyhomes/report/new/councils_text_none.html:3 #, perl-format msgid "We do not yet have details for the council that covers this location." msgid_plural "" "We do not yet have details for the councils that cover this location." -msgstr[0] "Vi har enno ikkje detaljar for administrasjonen som dekkjer denne staden." -msgstr[1] "Vi har enno ikkje detaljar for administrasjonane som dekkjer denne staden." +msgstr[0] "" +"Vi har enno ikkje detaljar for administrasjonen som dekkjer denne staden." +msgstr[1] "" +"Vi har enno ikkje detaljar for administrasjonane som dekkjer denne staden." -#: templates/web/default/front/stats.html:12 +#: templates/web/emptyhomes/front/stats.html:12 #, perl-format msgid "<big>%s</big> report in past week" msgid_plural "<big>%s</big> reports in past week" @@ -3214,7 +3976,7 @@ msgid_plural "<big>%s</big> updates on reports" msgstr[0] "<big>%s</big> rapportoppdatering" msgstr[1] "<big>%s</big> rapportoppdateringar" -#: templates/web/default/report/new/councils_text_some.html:14 +#: templates/web/fixmystreet/report/new/councils_text_some.html:14 #, perl-format msgid "" "We do <strong>not</strong> yet have details for the other council that " @@ -3222,5 +3984,46 @@ msgid "" msgid_plural "" "We do <strong>not</strong> yet have details for the other councils that " "cover this location." -msgstr[0] "Vi har enno <strong>ikkje</strong> detaljane for den andre administrasjonen som dekkjer denne staden." -msgstr[1] "Vi har enno <strong>ikkje</strong> detaljane for dei andre administrasjonane som dekkjer denne staden." +msgstr[0] "" +"Vi har enno <strong>ikkje</strong> detaljane for den andre administrasjonen " +"som dekkjer denne staden." +msgstr[1] "" +"Vi har enno <strong>ikkje</strong> detaljane for dei andre administrasjonane " +"som dekkjer denne staden." + +#, fuzzy +#~ msgid "<strong>Yes</strong>, I have a password" +#~ msgstr "<strong>Ja</strong>, eg har eit passord:" + +#~ msgid "<strong>Yes</strong>, I have a password:" +#~ msgstr "<strong>Ja</strong>, eg har eit passord:" + +#~ msgid "" +#~ "<a href=\"http://www.mysociety.org/\"><img id=\"logo\" width=\"133\" " +#~ "height=\"26\" src=\"/i/mysociety-dark.png\" alt=\"View mySociety.org" +#~ "\"><span id=\"logoie\"></span></a>" +#~ msgstr "" +#~ "<div id=\"logo\" align=\"center\"><a href=\"http://www.nuug.no/" +#~ "\">Foreininga NUUG</a></div>" + +#~ msgid "" +#~ "Are you from a council? Would you like better integration with " +#~ "FixMyStreet?" +#~ msgstr "" +#~ "Er du frå det offentlege? Kunne du tenkja deg betre integrasjon med " +#~ "FiksGataMi?" + +#~ msgid "Built by <a href=\"http://www.mysociety.org/\">mySociety</a>" +#~ msgstr "Bygd av <a href=\"http://www.mysociety.org/\">mySociety</a>" + +#~ msgid "Hide stale reports" +#~ msgstr "Skjul utdaterte rapportar" + +#~ msgid "Include stale reports" +#~ msgstr "Inkluder utdaterte problem" + +#~ msgid "Old fixed" +#~ msgstr "Eldre problem som er løyste" + +#~ msgid "Old problems, state unknown" +#~ msgstr "Eldre problem med ukjend status" diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index 77518e142..cee320cca 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -916,6 +916,8 @@ Get stats to display on the council reports page sub get_report_stats { return 0; } +sub get_council_sender { return 'Email' }; + sub example_places { return [ 'B2 4QA', 'Tib St, Manchester' ]; } diff --git a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm index c971a5a82..6c0089d26 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm @@ -6,6 +6,19 @@ sub restriction { return {}; } +sub get_council_sender { + my ( $self, $area_id, $area_info ) = shift; + + my $sender_conf = mySociety::Config::get( 'SENDERS' ); + return $sender_conf->{ $council } if exists $sender_conf->{ $council }; + + return 'London' if $area_info->{type} eq 'LBO'; + + return 'Open311' if FixMyStreet::App->model("DB::Open311conf")->search( { area_id => $council, endpoint => { '!=', '' } } )->first; + + return 'Email'; +} + sub generate_problem_banner { my ( $self, $problem ) = @_; diff --git a/perllib/FixMyStreet/DB/ResultSet/Problem.pm b/perllib/FixMyStreet/DB/ResultSet/Problem.pm index 3557e77c7..ae184e87b 100644 --- a/perllib/FixMyStreet/DB/ResultSet/Problem.pm +++ b/perllib/FixMyStreet/DB/ResultSet/Problem.pm @@ -4,6 +4,16 @@ use base 'DBIx::Class::ResultSet'; use strict; use warnings; +use CronFns; + +use Utils; +use mySociety::Config; +use mySociety::EmailUtil; +use mySociety::MaPit; + +use FixMyStreet::App; +use FixMyStreet::SendReport; + my $site_restriction; my $site_key; @@ -209,4 +219,190 @@ sub categories_summary { return \%categories; } +sub send_reports { + # Set up site, language etc. + my ($verbose, $nomail) = CronFns::options(); + my $base_url = mySociety::Config::get('BASE_URL'); + my $site = CronFns::site($base_url); + + my $unsent = FixMyStreet::App->model("DB::Problem")->search( { + state => [ 'confirmed', 'fixed' ], + whensent => undef, + council => { '!=', undef }, + } ); + my (%notgot, %note); + + my $s = FixMyStreet::SendReport->new(); + my $senders = $s->get_senders; + + while (my $row = $unsent->next) { + + my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker($row->cobrand)->new(); + + # Cobranded and non-cobranded messages can share a database. In this case, the conf file + # should specify a vhost to send the reports for each cobrand, so that they don't get sent + # more than once if there are multiple vhosts running off the same database. The email_host + # call checks if this is the host that sends mail for this cobrand. + next unless $cobrand->email_host(); + $cobrand->set_lang_and_domain($row->lang, 1); + if ( $row->is_from_abuser ) { + $row->update( { state => 'hidden' } ); + next; + } + + my $send_email = 0; + my $send_web = 0; + + # Template variables for the email + my $email_base_url = $cobrand->base_url_for_emails($row->cobrand_data); + my %h = map { $_ => $row->$_ } qw/id title detail name category latitude longitude used_map/; + map { $h{$_} = $row->user->$_ } qw/email phone/; + $h{confirmed} = DateTime::Format::Pg->format_datetime( $row->confirmed->truncate (to => 'second' ) ); + + $h{query} = $row->postcode; + $h{url} = $email_base_url . '/report/' . $row->id; + $h{phone_line} = $h{phone} ? _('Phone:') . " $h{phone}\n\n" : ''; + if ($row->photo) { + $h{has_photo} = _("This web page also contains a photo of the problem, provided by the user.") . "\n\n"; + $h{image_url} = $email_base_url . '/photo?id=' . $row->id; + } else { + $h{has_photo} = ''; + $h{image_url} = ''; + } + $h{fuzzy} = $row->used_map ? _('To view a map of the precise location of this issue') + : _('The user could not locate the problem on a map, but to see the area around the location they entered'); + $h{closest_address} = ''; + + # If we are in the UK include eastings and northings, and nearest stuff + $h{easting_northing} = ''; + if ( $cobrand->country eq 'GB' ) { + + ( $h{easting}, $h{northing} ) = Utils::convert_latlon_to_en( $h{latitude}, $h{longitude} ); + + # email templates don't have conditionals so we need to farmat this here + $h{easting_northing} # + = "Easting: $h{easting}\n\n" # + . "Northing: $h{northing}\n\n"; + + } + + if ( $row->used_map ) { + $h{closest_address} = $cobrand->find_closest( $h{latitude}, $h{longitude}, $row ); + } + + my %reporters = (); + my (@to, @recips, $template, $areas_info ); + if ($site eq 'emptyhomes') { + + my $council = $row->council; + $areas_info = mySociety::MaPit::call('areas', $council); + my $name = $areas_info->{$council}->{name}; + my $sender = "FixMyStreet::SendReport::EmptyHomes"; + $reporters{ $sender } = $sender->new() unless $reporters{$sender}; + $reporters{ $sender }->add_council( $council, $name ); + $template = Utils::read_file("$FindBin::Bin/../templates/email/emptyhomes/" . $row->lang . "/submit.txt"); + + } else { + + # XXX Needs locks! + my @all_councils = split /,|\|/, $row->council; + my ($councils, $missing) = $row->council =~ /^([\d,]+)(?:\|([\d,]+))?/; + my @councils = split(/,/, $councils); + $areas_info = mySociety::MaPit::call('areas', \@all_councils); + my @dear; + + foreach my $council (@councils) { + my $name = $areas_info->{$council}->{name}; + push @dear, $name; + my $sender = $cobrand->get_council_sender( $council, $areas_info->{$council} ); + $sender = "FixMyStreet::SendReport::$sender"; + if ( ! exists $senders->{ $sender } ) { + warn "No such sender [ $sender ] for council $name ( $council )"; + next; + } + $reporters{ $sender } = $sender->new() unless $reporters{$sender}; + $reporters{ $sender }->add_council( $council, $name ); + } + + $template = 'submit.txt'; + $template = 'submit-brent.txt' if $row->council eq 2488 || $row->council eq 2237; + my $template_path = FixMyStreet->path_to( "templates", "email", $cobrand->moniker, $template )->stringify; + $template_path = FixMyStreet->path_to( "templates", "email", "default", $template )->stringify + unless -e $template_path; + $template = Utils::read_file( $template_path ); + + if ($h{category} eq _('Other')) { + $h{category_footer} = _('this type of local problem'); + $h{category_line} = ''; + } else { + $h{category_footer} = "'" . $h{category} . "'"; + $h{category_line} = sprintf(_("Category: %s"), $h{category}) . "\n\n"; + } + + $h{councils_name} = join(_(' and '), @dear); + if ($h{category} eq _('Other')) { + $h{multiple} = @dear>1 ? "[ " . _("This email has been sent to both councils covering the location of the problem, as the user did not categorise it; please ignore it if you're not the correct council to deal with the issue, or let us know what category of problem this is so we can add it to our system.") . " ]\n\n" + : ''; + } else { + $h{multiple} = @dear>1 ? "[ " . _("This email has been sent to several councils covering the location of the problem, as the category selected is provided for all of them; please ignore it if you're not the correct council to deal with the issue.") . " ]\n\n" + : ''; + } + $h{missing} = ''; + if ($missing) { + my $name = $areas_info->{$missing}->{name}; + $h{missing} = '[ ' + . sprintf(_('We realise this problem might be the responsibility of %s; however, we don\'t currently have any contact details for them. If you know of an appropriate contact address, please do get in touch.'), $name) + . " ]\n\n"; + } + + } + + unless ($send_email || $send_web || keys %reporters ) { + die 'Report not going anywhere for ID ' . $row->id . '!'; + } + + if (mySociety::Config::get('STAGING_SITE')) { + # on a staging server send emails to ourselves rather than the councils + $send_web = 0; + $send_email = 1; + %reporters = ( + 'FixMyStreet::SendReport::Email' => $reporters{ 'FixMyStreet::SendReport::Email' } + ); + } + + # Special case for this parish council + # if ($address && $address =~ /Sprowston/ && $row->council == 2233 && $row->category eq 'Street lighting') { + # $h{councils_name} = 'Sprowston Parish Council'; + # my $e = 'parishclerk' . '@' . 'sprowston-pc.gov.uk'; + # @to = ( [ $e, $h{councils_name} ] ); + # @recips = ($e); + # } + + # Multiply results together, so one success counts as a success. + my $result = -1; + + for my $sender ( keys %reporters ) { + $result *= $reporters{ $sender }->send( + $row, \%h, \@to, $template, \@recips, $nomail, $areas_info + ); + } + + if ($result == mySociety::EmailUtil::EMAIL_SUCCESS) { + $row->update( { + whensent => \'ms_current_timestamp()', + lastupdate => \'ms_current_timestamp()', + } ); + } + } + + if ($verbose) { + print "Council email addresses that need checking:\n" if keys %notgot; + foreach my $e (keys %notgot) { + foreach my $c (keys %{$notgot{$e}}) { + print $notgot{$e}{$c} . " problem, to $e category $c (" . $note{$e}{$c}. ")\n"; + } + } + } +} + 1; diff --git a/perllib/FixMyStreet/Geocode/Bing.pm b/perllib/FixMyStreet/Geocode/Bing.pm index 99197a5f9..4ba00dbfe 100644 --- a/perllib/FixMyStreet/Geocode/Bing.pm +++ b/perllib/FixMyStreet/Geocode/Bing.pm @@ -62,7 +62,7 @@ sub string { # Getting duplicate, yet different, results from Bing sometimes next if @valid_locations - && $valid_locations[-1]{address}{postalCode} eq $_->{address}{postalCode} + && $_->{address}{postalCode} && $valid_locations[-1]{address}{postalCode} eq $_->{address}{postalCode} && ( $valid_locations[-1]{address}{locality} eq $_->{address}{adminDistrict2} || $valid_locations[-1]{address}{adminDistrict2} eq $_->{address}{locality} || $valid_locations[-1]{address}{locality} eq $_->{address}{locality} diff --git a/perllib/FixMyStreet/SendReport.pm b/perllib/FixMyStreet/SendReport.pm new file mode 100644 index 000000000..84a89f877 --- /dev/null +++ b/perllib/FixMyStreet/SendReport.pm @@ -0,0 +1,37 @@ +package FixMyStreet::SendReport; + +use Moose; + +use Module::Pluggable + sub_name => 'senders', + search_path => __PACKAGE__, + require => 1; + +has 'councils' => (is => 'rw', isa => 'HashRef', default => sub { {} } ); +has 'to' => (is => 'rw', isa => 'ArrayRef', default => sub { [] } ); + +sub get_senders { + my $self = shift; + + my %senders = map { $_ => 1 } $self->senders; + + return \%senders; +} + +sub reset { + my $self = shift; + + $self->councils( {} ); + $self->to( [] ); +} + +sub add_council { + my $self = shift; + my $council = shift; + my $name = shift; + + $self->councils->{ $council } = $name; +} + + +1; diff --git a/perllib/FixMyStreet/SendReport/EastHants.pm b/perllib/FixMyStreet/SendReport/EastHants.pm new file mode 100644 index 000000000..61c38e591 --- /dev/null +++ b/perllib/FixMyStreet/SendReport/EastHants.pm @@ -0,0 +1,60 @@ +package FixMyStreet::SendReport::EastHants; + +use Moose; + +BEGIN { extends 'FixMyStreet::SendReport'; } + +# export just what we need as error if we use :try +use Error qw(try otherwise); +use Encode; +use mySociety::Web qw(ent); +use EastHantsWSDL; + +sub construct_message { + my %h = @_; + my $message = ''; + $message .= "[ This report was also sent to the district council covering the location of the problem, as the user did not categorise it; please ignore if you're not the correct council to deal with the issue. ]\n\n" + if $h{multiple}; + $message .= <<EOF; +Subject: $h{title} + +Details: $h{detail} + +$h{fuzzy}, or to provide an update on the problem, please visit the following link: + +$h{url} + +$h{closest_address} +EOF + return $message; +} + +sub send { + return if mySociety::Config::get('STAGING_SITE'); + + my ( $row, $h, $to, $template, $recips, $nomail ) = @_; + + # FIXME: should not recreate this each time + my $eh_service; + + $h->{category} = 'Customer Services' if $h->{category} eq 'Other'; + $h->{message} = construct_message( %$h ); + my $return = 1; + $eh_service ||= EastHantsWSDL->on_fault(sub { my($soap, $res) = @_; die ref $res ? $res->faultstring : $soap->transport->status, "\n"; }); + try { + # ServiceName, RemoteCreatedBy, Salutation, FirstName, Name, Email, Telephone, HouseNoName, Street, Town, County, Country, Postcode, Comments, FurtherInfo, ImageURL + my $message = ent(encode_utf8($h->{message})); + my $name = ent(encode_utf8($h->{name})); + my $result = $eh_service->INPUTFEEDBACK( + $h->{category}, 'FixMyStreet', '', '', $name, $h->{email}, $h->{phone}, + '', '', '', '', '', '', $message, 'Yes', $h->{image_url} + ); + $return = 0 if $result eq 'Report received'; + } otherwise { + my $e = shift; + print "Caught an error: $e\n"; + }; + return $return; +} + +1; diff --git a/perllib/FixMyStreet/SendReport/Email.pm b/perllib/FixMyStreet/SendReport/Email.pm new file mode 100644 index 000000000..0b8ac8115 --- /dev/null +++ b/perllib/FixMyStreet/SendReport/Email.pm @@ -0,0 +1,103 @@ +package FixMyStreet::SendReport::Email; + +use Moose; + +BEGIN { extends 'FixMyStreet::SendReport'; } + +sub build_recipient_list { + my $self = shift; + my $row = shift; + my %recips; + + my $all_confirmed = 1; + foreach my $council ( keys %{ $self->councils } ) { + my $contact = FixMyStreet::App->model("DB::Contact")->find( { + deleted => 0, + area_id => $council, + category => $row->category + } ); + + my ($council_email, $confirmed, $note) = ( $contact->email, $contact->confirmed, $contact->note ); + + $council_email = essex_contact($row->latitude, $row->longitude) if $council == 2225; + $council_email = oxfordshire_contact($row->latitude, $row->longitude) if $council == 2237 && $council_email eq 'SPECIAL'; + + unless ($confirmed) { + $all_confirmed = 0; + #$note = 'Council ' . $row->council . ' deleted' + #unless $note; + $council_email = 'N/A' unless $council_email; + #$notgot{$council_email}{$row->category}++; + #$note{$council_email}{$row->category} = $note; + } + + push @{ $self->to }, [ $council_email, $self->councils->{ $council } ]; + $recips{$council_email} = 1; + } + + return () unless $all_confirmed; + return keys %recips; +} + +sub send { + my $self = shift; + my ( $row, $h, $to, $template, $recips, $nomail, $areas_info ) = @_; + + my @recips; + + @recips = $self->build_recipient_list( $row, $areas_info ); + + # on a staging server send emails to ourselves rather than the councils + if (mySociety::Config::get('STAGING_SITE')) { + @recips = ( mySociety::Config::get('CONTACT_EMAIL') ); + } + + return unless @recips; + + my $result = FixMyStreet::App->send_email_cron( + { + _template_ => $template, + _parameters_ => $h, + To => $self->to, + From => [ $row->user->email, $row->name ], + }, + mySociety::Config::get('CONTACT_EMAIL'), + \@recips, + $nomail + ); + + return $result; +} + +# Essex has different contact addresses depending upon the district +# Might be easier if we start storing in the db all areas covered by a point +# Will do for now :) +sub essex_contact { + my $district = _get_district_for_contact(@_); + my $email; + $email = 'eastarea' if $district == 2315 || $district == 2312; + $email = 'midarea' if $district == 2317 || $district == 2314 || $district == 2316; + $email = 'southarea' if $district == 2319 || $district == 2320 || $district == 2310; + $email = 'westarea' if $district == 2309 || $district == 2311 || $district == 2318 || $district == 2313; + die "Returned district $district which is not in Essex!" unless $email; + return "highways.$email\@essexcc.gov.uk"; +} + +# Oxfordshire has different contact addresses depending upon the district +sub oxfordshire_contact { + my $district = _get_district_for_contact(@_); + my $email; + $email = 'northernarea' if $district == 2419 || $district == 2420 || $district == 2421; + $email = 'southernarea' if $district == 2417 || $district == 2418; + die "Returned district $district which is not in Oxfordshire!" unless $email; + return "$email\@oxfordshire.gov.uk"; +} + +sub _get_district_for_contact { + my ( $lat, $lon ) = @_; + my $district = + mySociety::MaPit::call( 'point', "4326/$lon,$lat", type => 'DIS' ); + ($district) = keys %$district; + return $district; +} +1; diff --git a/perllib/FixMyStreet/SendReport/EmptyHomes.pm b/perllib/FixMyStreet/SendReport/EmptyHomes.pm new file mode 100644 index 000000000..9453b4ca5 --- /dev/null +++ b/perllib/FixMyStreet/SendReport/EmptyHomes.pm @@ -0,0 +1,51 @@ +package FixMyStreet::SendReport::EmptyHomes; + +use Moose; +use namespace::autoclean; + +BEGIN { extends 'FixMyStreet::SendReport::Email'; } + +sub build_recipient_list { + my $self = shift; + my $row = shift; + my $areas_info = shift; + my %recips; + + my $all_confirmed = 1; + foreach my $council ( keys %{ $self->councils } ) { + my $contact = FixMyStreet::App->model("DB::Contact")->find( { + deleted => 0, + area_id => $council, + category => 'Empty property', + } ); + + my ($council_email, $confirmed, $note) = ( $contact->email, $contact->confirmed, $contact->note ); + + $council_email = essex_contact($row->latitude, $row->longitude) if $council == 2225; + $council_email = oxfordshire_contact($row->latitude, $row->longitude) if $council == 2237 && $council_email eq 'SPECIAL'; + + unless ($confirmed) { + $all_confirmed = 0; + #$note = 'Council ' . $row->council . ' deleted' + #unless $note; + $council_email = 'N/A' unless $council_email; + #$notgot{$council_email}{$row->category}++; + #$note{$council_email}{$row->category} = $note; + } + + push @{ $self->to }, [ $council_email, $self->councils->{ $council } ]; + $recips{$council_email} = 1; + + my $country = $areas_info->{$council}->{country}; + if ($country eq 'W') { + $recips{ 'shelter@' . mySociety::Config::get('EMAIL_DOMAIN') } = 1; + } else { + $recips{ 'eha@' . mySociety::Config::get('EMAIL_DOMAIN') } = 1; + } + } + + return () unless $all_confirmed; + return keys %recips; +} + +1; diff --git a/perllib/FixMyStreet/SendReport/London.pm b/perllib/FixMyStreet/SendReport/London.pm new file mode 100644 index 000000000..9296f2446 --- /dev/null +++ b/perllib/FixMyStreet/SendReport/London.pm @@ -0,0 +1,111 @@ +package FixMyStreet::SendReport::London; + +use Moose; + +BEGIN { extends 'FixMyStreet::SendReport'; } + +use Digest::MD5; +use LWP::UserAgent; +use LWP::Simple; + +use Utils; + +sub construct_message { + my %h = @_; + return <<EOF, +A user of FixMyStreet has submitted the following report of a local +problem that they believe might require your attention. + +Subject: $h{title} + +Details: $h{detail} + +$h{fuzzy}, or to provide an update on the problem, please visit the +following link: + +$h{url} + +$h{closest_address} +Yours, +The FixMyStreet team +EOF +} + +sub send { + return if mySociety::Config::get('STAGING_SITE'); + my ( $row, $h, $to, $template, $recips, $nomail ) = @_; + + $h->{message} = construct_message( %$h ); + my $phone = $h->{phone}; + my $mobile = ''; + if ($phone && $phone =~ /^\s*07/) { + $mobile = $phone; + $phone = ''; + } + my ($first, $last) = $h->{name} =~ /^(\S*)(?: (.*))?$/; + my %params = ( + Key => mySociety::Config::get('LONDON_REPORTIT_KEY'), + Signature => Digest::MD5::md5_hex( $h->{confirmed} . mySociety::Config::get('LONDON_REPORTIT_SECRET') ), + Type => Utils::london_categories()->{$h->{category}}, + RequestDate => $h->{confirmed}, + RequestMethod => 'Web', + ExternalId => $h->{url}, + 'Customer.Title' => '', + 'Customer.FirstName' => $first, + 'Customer.Surname' => $last, + 'Customer.Email' => $h->{email}, + 'Customer.Phone' => $phone, + 'Customer.Mobile' => $mobile, + 'ProblemDescription' => $h->{message}, + ); + if ($h->{used_map}) { + $params{'Location.Latitude'} = $h->{latitude}; + $params{'Location.Longitude'} = $h->{longitude}; + } elsif (mySociety::PostcodeUtil::is_valid_postcode($h->{query})) { + # Didn't use map, and entered postcode, so use that. + $params{'Location.Postcode'} = $h->{query}; + } else { + # Otherwise, lat/lon is all we have, even if it's wrong. + $params{'Location.Latitude'} = $h->{latitude}; + $params{'Location.Longitude'} = $h->{longitude}; + } + if ($h->{has_photo}) { + $params{'Document1.Name'} = 'Photograph'; + $params{'Document1.MimeType'} = 'image/jpeg'; + $params{'Document1.URL'} = $h->{image_url}; + $params{'Document1.URLPublic'} = 'true'; + } + my $browser = LWP::UserAgent->new; + my $response = $browser->post( mySociety::Config::get('LONDON_REPORTIT_URL'), \%params ); + my $out = $response->content; + if ($response->code ne 200) { + print "Failed to post $h->{id} to London API, response was " . $response->code . " $out\n"; + return 1; + } + my ($id) = $out =~ /<caseid>(.*?)<\/caseid>/; + my ($org) = $out =~ /<organisation>(.*?)<\/organisation>/; + my ($team) = $out =~ /<team>(.*?)<\/team>/; + + $org = london_lookup($org); + $row->external_id( $id ); + $row->external_body( $org ); + $row->external_team( $team ); + return 0; +} + +sub london_lookup { + my $org = shift || ''; + my $str = "Unknown ($org)"; + open(FP, "$FindBin::Bin/../data/dft.csv"); + while (<FP>) { + /^(.*?),(.*)/; + if ($org eq $1) { + $str = $2; + last; + } + } + close FP; + return $str; +} + +1; diff --git a/perllib/FixMyStreet/SendReport/Open311.pm b/perllib/FixMyStreet/SendReport/Open311.pm new file mode 100644 index 000000000..cb41de336 --- /dev/null +++ b/perllib/FixMyStreet/SendReport/Open311.pm @@ -0,0 +1,69 @@ +package FixMyStreet::SendReport::Open311; + +use Moose; +use namespace::autoclean; + +BEGIN { extends 'FixMyStreet::SendReport'; } + +use FixMyStreet::App; +use mySociety::Config; +use Open311; + +sub send { + return if mySociety::Config::get('STAGING_SITE'); + my $self = shift; + my ( $row, $h, $to, $template, $recips, $nomail ) = @_; + + my $result = -1; + + foreach my $council ( keys %{ $self->councils } ) { + my $conf = FixMyStreet::App->model("DB::Open311conf")->search( { area_id => $self->councils->{ $council }, endpoint => { '!=', '' } } )->first; + #print 'posting to end point for ' . $conf->area_id . "\n" if $verbose; + + + # FIXME: we've already looked this up before + my $contact = FixMyStreet::App->model("DB::Contact")->find( { + deleted => 0, + area_id => $conf->area_id, + category => $row->category + } ); + + my $open311 = Open311->new( + jurisdiction => $conf->jurisdiction, + endpoint => $conf->endpoint, + api_key => $conf->api_key, + ); + + # non standard west berks end points + if ( $row->council =~ /2619/ ) { + $open311->endpoints( { services => 'Services', requests => 'Requests' } ); + } + + # required to get round issues with CRM constraints + if ( $row->council =~ /2218/ ) { + $row->user->name( $row->user->id . ' ' . $row->user->name ); + } + + my $resp = $open311->send_service_request( $row, $h, $contact->email ); + + # make sure we don't save user changes from above + if ( $row->council =~ /2218/ ) { + $row->discard_changes(); + } + + if ( $resp ) { + $row->external_id( $resp ); + $result *= 0; + } else { + $result *= 1; + # temporary fix to resolve some issues with west berks + if ( $row->council =~ /2619/ ) { + $result *= 0; + } + } + } + + return $result; +} + +1; diff --git a/t/app/model/problem.t b/t/app/model/problem.t index 638e89200..a7415851b 100644 --- a/t/app/model/problem.t +++ b/t/app/model/problem.t @@ -7,6 +7,7 @@ use Test::More; use FixMyStreet; use FixMyStreet::App; +use FixMyStreet::TestMech; use mySociety::Locale; mySociety::Locale::gettext_domain('FixMyStreet'); @@ -16,8 +17,8 @@ my $problem_rs = FixMyStreet::App->model('DB::Problem'); my $problem = $problem_rs->new( { postcode => 'EH99 1SP', - latitude => 1, - longitude => 1, + latitude => '51.5016605453401', + longitude => '-0.142497580865087', areas => 1, title => '', detail => '', @@ -345,6 +346,131 @@ for my $test ( }; } +my $mech = FixMyStreet::TestMech->new(); + +FixMyStreet::App->model('DB::Contact')->find_or_create( + { + area_id => 2651, + category => 'potholes', + email => 'test@example.org', + confirmed => 1, + deleted => 0, + editor => 'test', + whenedited => \'ms_current_timestamp()', + note => '', + } +); + +FixMyStreet::App->model('DB::Contact')->find_or_create( + { + area_id => 2226, + category => 'potholes', + email => '2226@example.org', + confirmed => 1, + deleted => 0, + editor => 'test', + whenedited => \'ms_current_timestamp()', + note => '', + } +); + +FixMyStreet::App->model('DB::Contact')->find_or_create( + { + area_id => 2326, + category => 'potholes', + email => '2326@example.org', + confirmed => 1, + deleted => 0, + editor => 'test', + whenedited => \'ms_current_timestamp()', + note => '', + } +); + +foreach my $test ( { + desc => 'sends an email', + unset_whendef => 1, + email_count => 1, + email => 'system_user@example.com', + name => 'Andrew Smith', + dear => qr'Dear City of Edinburgh Council', + to => qr'City of Edinburgh Council', + council => 2651, + }, + { + desc => 'no email sent if no unsent problems', + unset_whendef => 0, + email_count => 0, + email => 'system_user@example.com', + name => 'Andrew Smith', + council => 2651, + }, + { + desc => 'email to two tier council', + unset_whendef => 1, + email_count => 1, + email => 'system_user@example.com', + name => 'Andrew Smith', + to => qr'Gloucestershire County Council.*Cheltenham Borough Council', + dear => qr'Dear Gloucestershire County Council and Cheltenham Borough', + council => '2226,2326', + multiple => 1, + }, + { + desc => 'email to two tier council with one missing details', + unset_whendef => 1, + email_count => 1, + email => 'system_user@example.com', + name => 'Andrew Smith', + to => qr'Gloucestershire County Council', + dear => qr'Dear Gloucestershire County Council,', + council => '2226|2649', + missing => qr'problem might be the responsibility of Fife.*Council'ms, + }, +) { + subtest $test->{ desc } => sub { + $mech->clear_emails_ok; + + FixMyStreet::App->model('DB::Problem')->search( + { + whensent => undef + } + )->update( { whensent => \'ms_current_timestamp()' } ); + + $problem->discard_changes; + $problem->update( { + council => $test->{ council }, + state => 'confirmed', + confirmed => \'ms_current_timestamp()', + whensent => $test->{ unset_whendef } ? undef : \'ms_current_timestamp()', + category => 'potholes', + name => $test->{ name }, + } ); + + FixMyStreet::App->model('DB::Problem')->send_reports(); + + $mech->email_count_is( $test->{ email_count } ); + if ( $test->{ email_count } ) { + my $email = $mech->get_email; + like $email->header('To'), $test->{ to }, 'to line looks correct'; + is $email->header('From'), sprintf('"%s" <%s>', $test->{ name }, $test->{ email } ), 'from line looks correct'; + like $email->header('Subject'), qr/A Title/, 'subject line looks correct'; + like $email->body, qr/A user of FixMyStreet/, 'email body looks a bit like a report'; + like $email->body, qr/Subject: A Title/, 'more email body checking'; + like $email->body, $test->{ dear }, 'Salutation looks correct'; + + if ( $test->{multiple} ) { + like $email->body, qr/This email has been sent to several councils /, 'multiple council text correct'; + } elsif ( $test->{ missing } ) { + like $email->body, $test->{ missing }, 'missing council information correct'; + } + + $problem->discard_changes; + ok defined( $problem->whensent ), 'whensent set'; + } + }; +} + $problem->comments->delete; $problem->delete; $user->delete; diff --git a/templates/web/default/auth/general.html b/templates/web/default/auth/general.html index c2249fa46..f5e2e423f 100644 --- a/templates/web/default/auth/general.html +++ b/templates/web/default/auth/general.html @@ -34,7 +34,7 @@ <div id="form_sign_in_yes"> <p> - <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong>, I have a password:') %]</label> + <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong> I have a password') %]</label> <input type="password" name="password_sign_in" id="password_sign_in" value=""> </p> diff --git a/templates/web/default/questionnaire/creator_fixed.html b/templates/web/default/questionnaire/creator_fixed.html index 0d3181ec1..5b6d1254a 100644 --- a/templates/web/default/questionnaire/creator_fixed.html +++ b/templates/web/default/questionnaire/creator_fixed.html @@ -11,9 +11,9 @@ <p align="center"> <input type="radio" name="reported" id="reported_yes" value="Yes"[% ' checked' IF reported == 'Yes' %]> -<label for="reported_yes">[% loc('Yes') %]</label> +<label class="inline" for="reported_yes">[% loc('Yes') %]</label> <input type="radio" name="reported" id="reported_no" value="No"[% ' checked' IF reported == 'No' %]> -<label for="reported_no">[% loc('No') %]</label> +<label class="inline" for="reported_no">[% loc('No') %]</label> </p> <p><input type="submit" name="submit" value="[% loc('Submit') %]"></p> diff --git a/templates/web/default/report/display.html b/templates/web/default/report/display.html index abfff624f..fac3ef0b2 100644 --- a/templates/web/default/report/display.html +++ b/templates/web/default/report/display.html @@ -144,7 +144,7 @@ [% END %] <p> - <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong>, I have a password:') %]</label> + <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong> I have a password') %]</label> <input type="password" name="password_sign_in" id="password_sign_in" value="" size="25"> </p> diff --git a/templates/web/default/report/new/fill_in_details_form.html b/templates/web/default/report/new/fill_in_details_form.html index 2a74a44db..9c9451914 100644 --- a/templates/web/default/report/new/fill_in_details_form.html +++ b/templates/web/default/report/new/fill_in_details_form.html @@ -137,7 +137,7 @@ [% END %] <div class="form-field"> - <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong>, I have a password:') %]</label> + <label class="n" for="password_sign_in">[% loc('<strong>Yes</strong> I have a password') %]</label> <input type="password" name="password_sign_in" id="password_sign_in" value="" size="25"> </div> diff --git a/templates/web/fiksgatami/nn/faq/faq-nn.html b/templates/web/fiksgatami/nn/faq/faq-nn.html index 058ce5355..161cfbea5 100644 --- a/templates/web/fiksgatami/nn/faq/faq-nn.html +++ b/templates/web/fiksgatami/nn/faq/faq-nn.html @@ -160,4 +160,4 @@ </dl> -[% *INCLUDE 'footer.html' %] +[% INCLUDE 'footer.html' %] diff --git a/templates/web/fixmystreet/auth/general.html b/templates/web/fixmystreet/auth/general.html index 585232bc5..6ecbcadc5 100644 --- a/templates/web/fixmystreet/auth/general.html +++ b/templates/web/fixmystreet/auth/general.html @@ -31,7 +31,7 @@ <div id="form_sign_in_yes" class="form-box"> <h5>[% loc('<strong>Yes</strong> I have a password') %]</h5> - <label class="hidden-js n" for="password_sign_in">[% loc('<strong>Yes</strong>, I have a password') %]</label> + <label class="hidden-js n" for="password_sign_in">[% loc('<strong>Yes</strong> I have a password') %]</label> <div class="form-txt-submit-box"> <input type="password" name="password_sign_in" id="password_sign_in" value="" placeholder="[% loc('Your password') %]"> diff --git a/web/js/map-OpenLayers.js b/web/js/map-OpenLayers.js index 8ea54cac3..9d8974fb6 100644 --- a/web/js/map-OpenLayers.js +++ b/web/js/map-OpenLayers.js @@ -480,7 +480,11 @@ OpenLayers.Control.Click = OpenLayers.Class(OpenLayers.Control, { fixmystreet.map.getProjectionObject() ); var p = fixmystreet.map.getViewPortPxFromLonLat(lonlat); +<<<<<<< HEAD p.x -= ( o.left - bo.left + w ) / 2; +======= + p.x -= ( o.left + w ) / 2; +>>>>>>> send-report-rewrite lonlat = fixmystreet.map.getLonLatFromViewPortPx(p); fixmystreet.map.panTo(lonlat); } |