diff options
author | Struan Donald <struan@exo.org.uk> | 2012-01-10 17:15:24 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-01-10 17:15:24 +0000 |
commit | 6228cc7aa55defdb694d2de05d2a2be282955fe6 (patch) | |
tree | 1392fb78e01bd6ab28108de42ccd5f8097340dc8 | |
parent | 22c0a7367193e947af70ab1bbdfb3268fd1ec3c6 (diff) | |
parent | 1955a60586ecd4d6dc7d72de31d01d28230fbb8b (diff) |
Merge remote branch 'origin/master' into reportemptyhomes
93 files changed, 5692 insertions, 356 deletions
diff --git a/.gitignore b/.gitignore index 4f3cb067d..4b9a80714 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ tags /web/cobrands/reading/css/css.css /web/css/core.css /web/css/main.css +/web/cobrands/fixmystreet/*.css diff --git a/bin/export-norwegian-contacts b/bin/export-norwegian-contacts index 8a7d438e5..0209c6512 100644 --- a/bin/export-norwegian-contacts +++ b/bin/export-norwegian-contacts @@ -31,11 +31,11 @@ use mySociety::MaPit; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); } diff --git a/bin/import-categories b/bin/import-categories index add12d3d0..e9008b93f 100755 --- a/bin/import-categories +++ b/bin/import-categories @@ -24,11 +24,11 @@ use mySociety::VotingArea; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); } diff --git a/bin/load-contacts b/bin/load-contacts index 0fa76ca11..b18699db1 100755 --- a/bin/load-contacts +++ b/bin/load-contacts @@ -23,11 +23,11 @@ use mySociety::Random; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); if (!dbh()->selectrow_array('select secret from secret for update of secret')) { diff --git a/bin/load-norwegian-contacts b/bin/load-norwegian-contacts index f7466ad2a..b73778848 100755 --- a/bin/load-norwegian-contacts +++ b/bin/load-norwegian-contacts @@ -25,11 +25,11 @@ use mySociety::Random; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); if (!dbh()->selectrow_array('select secret from secret for update of secret')) { diff --git a/bin/populate_bing_cache b/bin/populate_bing_cache new file mode 100755 index 000000000..a3bef6759 --- /dev/null +++ b/bin/populate_bing_cache @@ -0,0 +1,58 @@ +#!/usr/bin/perl + +use strict; +use warnings; +require 5.8.0; + +use Data::Dumper; + +use FixMyStreet::App; +use FixMyStreet::Geocode::Bing; + +my $reports = FixMyStreet::App->model('DB::Problem')->search( + { + geocode => undef, + confirmed => { '!=', undef }, + latitude => { '!=', 0 }, + longitude => { '!=', 0 }, + }, + { + select => [qw/id geocode confirmed latitude longitude/], + order_by => { -desc => 'confirmed' } + } +); + +my $num_reports = $reports->count(); +print "Found $num_reports lacking geocode information\n"; + +my $time_to_do = ( $num_reports * 10 ) / 60 / 60; +if ( $time_to_do > 24 ) { + my $days = $time_to_do / 24; + my $hours = $time_to_do % 24; + printf( "Should take %d days and %d hours to finish\n", $days, $hours ); +} +elsif ( $time_to_do < 1 ) { + printf( "Should take %d minutes to finish\n", $time_to_do * 60 ); +} +else { + my $mins = ( $num_reports * 10 ) / 60 % 60; + printf( "Should take %d hours and %d minutes to finish\n", + $time_to_do, $mins ); +} + +while ( my $report = $reports->next ) { + $num_reports--; + next unless $report->latitude && $report->longitude; + next if $report->geocode; + + my $j = FixMyStreet::Geocode::Bing::reverse( $report->latitude, + $report->longitude ); + + $report->geocode($j); + $report->update; + + print "$num_reports left to populate\n" unless $num_reports % 100; + sleep 10; +} + +print "done\n"; diff --git a/bin/problem-creation-graph b/bin/problem-creation-graph index 6d34d3b49..4bba1cdb8 100755 --- a/bin/problem-creation-graph +++ b/bin/problem-creation-graph @@ -18,7 +18,7 @@ cd `dirname $0` cd ../../ source fixmystreet/commonlib/shlib/deployfns -read_conf fixmystreet/conf/general +read_conf fixmystreet/conf/general.yml if [ $OPTION_BASE_URL = "http://reportemptyhomes.com" ]; then DATE="2008-10-01" @@ -42,7 +42,7 @@ function grab_data { $1 group by date(created) order by date(created) - ;" | psql --host $OPTION_BCI_DB_HOST --port $OPTION_BCI_DB_PORT -A -F " " $OPTION_BCI_DB_NAME $OPTION_BCI_DB_USER | egrep -v "date|rows" >$2 + ;" | psql --host $OPTION_FMS_DB_HOST --port $OPTION_FMS_DB_PORT -A -F " " $OPTION_FMS_DB_NAME $OPTION_FMS_DB_USER | egrep -v "date|rows" >$2 } # rather nastily, work out the cumulative heights in reverse, so can plot impulses on top of each other diff --git a/bin/problems-filed-graph b/bin/problems-filed-graph index 702bea651..dbac35639 100755 --- a/bin/problems-filed-graph +++ b/bin/problems-filed-graph @@ -18,7 +18,7 @@ cd `dirname $0` cd ../../ source fixmystreet/commonlib/shlib/deployfns -read_conf fixmystreet/conf/general +read_conf fixmystreet/conf/general.yml SOURCEO=/tmp/bci-report-rate-graph-data-nonwmc-$RANDOM$RANDOM GPSCRIPT=/tmp/bci-report-rate-graph-script-$RANDOM$RANDOM @@ -29,7 +29,7 @@ echo "select where state not in ('unconfirmed', 'hidden') group by date(created) order by date(created) - ;" | psql --host $OPTION_BCI_DB_HOST --port $OPTION_BCI_DB_PORT -A -F " " $OPTION_BCI_DB_NAME $OPTION_BCI_DB_USER | egrep -v "date|rows" >$SOURCEO + ;" | psql --host $OPTION_FMS_DB_HOST --port $OPTION_FMS_DB_PORT -A -F " " $OPTION_FMS_DB_NAME $OPTION_FMS_DB_USER | egrep -v "date|rows" >$SOURCEO #echo "source $SOURCEO" cat >$GPSCRIPT <<END diff --git a/bin/rotate-photos b/bin/rotate-photos index 84c713926..faf2748e6 100755 --- a/bin/rotate-photos +++ b/bin/rotate-photos @@ -24,11 +24,11 @@ use mySociety::TempFiles; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); } diff --git a/bin/send-reports b/bin/send-reports index 3d5243990..f1d8c5742 100755 --- a/bin/send-reports +++ b/bin/send-reports @@ -92,7 +92,7 @@ while (my $row = $unsent->next) { } if ( $row->used_map ) { - $h{closest_address} = $cobrand->find_closest( $h{latitude}, $h{longitude} ); + $h{closest_address} = $cobrand->find_closest( $h{latitude}, $h{longitude}, $row ); } my (@to, @recips, $template, $areas_info, @open311_councils); @@ -290,6 +290,10 @@ while (my $row = $unsent->next) { $result *= 0; } else { $result *= 1; + # temporary fix to resolve some issues with west berks + if ( $row->council =~ /2619/ ) { + $result *= 0; + } } } } diff --git a/bin/showcouncilrates b/bin/showcouncilrates index 9ae5c3e7b..cc8ce8d10 100755 --- a/bin/showcouncilrates +++ b/bin/showcouncilrates @@ -16,11 +16,11 @@ use FixMyStreet::Geocode::OSM; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); } diff --git a/bin/test-mailin b/bin/test-mailin index 96e2022c0..3f101b438 100755 --- a/bin/test-mailin +++ b/bin/test-mailin @@ -29,7 +29,7 @@ use mySociety::WebTestHarness; print_log('notice', "started"); our $wth = new mySociety::WebTestHarness(); -$wth->database_connect('BCI_'); +$wth->database_connect('FMS_'); print_log('notice', "reading mail from STDIN"); my $slurped = read_file(\*STDIN); print_log('notice', "calling email_incoming"); diff --git a/bin/test-run b/bin/test-run index 58cf0b2ea..29e975ce4 100755 --- a/bin/test-run +++ b/bin/test-run @@ -5,7 +5,7 @@ # # Requires: # * ../conf/general file set up for FixMyStreet, and matching the below requirements -# * apache configured to serve ../web on OPTION_BASE_URL +# * apache configured to serve ../web on BASE_URL # * a database with name ending "_testharness"; this script will drop and remake the # database, so make sure it is never used for anything important # * email addresses (email_n below) configured to pipe to ./test-mailin with fast @@ -54,7 +54,7 @@ date_print("Set up web test harness..."); my ($wth, $action, $verbose, $pause, $multispawn) = mySociety::WebTestHarness::setup({ actions => \@actions, actions_desc => \%actions_desc, - dbname => 'BCI', + dbname => 'FMS', 'sql_extra' => ['../db/alert_types.sql'], }); $multispawn = 1; diff --git a/bin/update-areas b/bin/update-areas index bbc933faf..a8cc01769 100755 --- a/bin/update-areas +++ b/bin/update-areas @@ -24,11 +24,11 @@ use mySociety::VotingArea; BEGIN { mySociety::Config::set_file("$FindBin::Bin/../conf/general"); mySociety::DBHandle::configure( - Name => mySociety::Config::get('BCI_DB_NAME'), - User => mySociety::Config::get('BCI_DB_USER'), - Password => mySociety::Config::get('BCI_DB_PASS'), - Host => mySociety::Config::get('BCI_DB_HOST', undef), - Port => mySociety::Config::get('BCI_DB_PORT', undef) + Name => mySociety::Config::get('FMS_DB_NAME'), + User => mySociety::Config::get('FMS_DB_USER'), + Password => mySociety::Config::get('FMS_DB_PASS'), + Host => mySociety::Config::get('FMS_DB_HOST', undef), + Port => mySociety::Config::get('FMS_DB_PORT', undef) ); } diff --git a/conf/.gitignore b/conf/.gitignore index 0a78c8825..f0c34fd29 100644 --- a/conf/.gitignore +++ b/conf/.gitignore @@ -1,4 +1,4 @@ -/general -/general.deployed +/general.yml +/general.yml.deployed /httpd.conf /httpd.conf.deployed diff --git a/conf/general-example b/conf/general-example deleted file mode 100644 index 65e192b4d..000000000 --- a/conf/general-example +++ /dev/null @@ -1,74 +0,0 @@ -<?php -/* - * general-example: - * Example values for the "general" config file. - * - * Configuration parameters, in PHP syntax. Configuration parameters are set - * using the PHP define('OPTION_...', '...') function. Both perl and PHP code - * parse this properly, so you can use comments and conditionals and whatnot, - * but unless essential it's better to keep it simple.... - * - * Copy this file to one called "general" in the same directory. Or - * have multiple config files and use a symlink to change between them. - * - * Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. - * Email: francis@mysociety.org; WWW: http://www.mysociety.org - * - * $Id: general-example,v 1.23 2010-01-06 14:59:34 louise Exp $ - * - */ - -// PostgreSQL database for BCI -define('OPTION_BCI_DB_HOST', 'localhost'); -define('OPTION_BCI_DB_PORT', '5432'); -define('OPTION_BCI_DB_NAME', 'bci'); -define('OPTION_BCI_DB_USER', 'bci'); -define('OPTION_BCI_DB_PASS', ''); - -define('OPTION_BASE_URL', 'http://www.example.org'); - -define('OPTION_EMAIL_DOMAIN', 'example.org'); -define('OPTION_CONTACT_EMAIL', 'team@'.OPTION_EMAIL_DOMAIN); -define('OPTION_TEST_EMAIL_PREFIX', null); - -define('OPTION_CONTACT_NAME', 'FixMyStreet'); -define('OPTION_STAGING_SITE', 1); - -define('OPTION_UPLOAD_CACHE', '/upload/'); -define('OPTION_GEO_CACHE', '/cache/'); -define('OPTION_GOOGLE_MAPS_API_KEY', ''); -define('OPTION_BING_MAPS_API_KEY', ''); - -define('OPTION_LONDON_REPORTIT_URL', ''); -define('OPTION_LONDON_REPORTIT_KEY', ''); -define('OPTION_LONDON_REPORTIT_SECRET', ''); - -define('OPTION_MAPIT_URL', 'http://mapit.mysociety.org/'); -define('OPTION_MAP_TYPE', 'OSM'); -define('OPTION_EVEL_URL', 'http://services.mysociety.org/evel'); -define('OPTION_GAZE_URL', 'http://gaze.mysociety.org/gaze'); - -// Tracking -define('OPTION_TRACKING', 0); // off by default -define('OPTION_TRACKING_URL', 'http://path/to/web/bug'); -define('OPTION_TRACKING_SECRET', 'really-secret-value'); - -define('OPTION_AUTH_SHARED_SECRET', ''); -define('OPTION_HEARFROMYOURMP_BASE_URL', ''); - -define('OPTION_SMTP_SMARTHOST', 'localhost'); - -define('OPTION_IPHONE_URL', ''); - -// Log file (used in test harness, and later in admin scripts) -define('OPTION_HTTPD_ERROR_LOG', '/var/log/apache/error.log'); - -define('OPTION_ALLOWED_COBRANDS', 'cobrand_one|cobrand_two'); - -// How many items are returned in the GeoRSS feeds by default -define('OPTION_RSS_LIMIT', '20'); - -// Should problem reports link to the council summary pages? -define('OPTION_AREA_LINKS_FROM_PROBLEMS', '0'); - -?> diff --git a/conf/general.yml-example b/conf/general.yml-example new file mode 100644 index 000000000..efdb5d007 --- /dev/null +++ b/conf/general.yml-example @@ -0,0 +1,60 @@ +# general-example.yml: +# Example values for the "general" config file. +# +# Configuration parameters, in YAML syntax. +# +# Copy this file to one called "general.yml" in the same directory. Or +# have multiple config files and use a symlink to change between them. + +# PostgreSQL database for FMS +FMS_DB_HOST: 'localhost' +FMS_DB_PORT: '5432' +FMS_DB_NAME: 'fms' +FMS_DB_USER: 'fms' +FMS_DB_PASS: '' + +BASE_URL: 'http://www.example.org' + +EMAIL_DOMAIN: 'example.org' +CONTACT_EMAIL: 'team@example.org' +TEST_EMAIL_PREFIX: '' + +CONTACT_NAME: 'FixMyStreet' +STAGING_SITE: 1 + +UPLOAD_CACHE: '/upload/' +GEO_CACHE: '/cache/' +GOOGLE_MAPS_API_KEY: '' +BING_MAPS_API_KEY: '' + +LONDON_REPORTIT_URL: '' +LONDON_REPORTIT_KEY: '' +LONDON_REPORTIT_SECRET: '' + +MAPIT_URL: 'http://mapit.mysociety.org/' +MAP_TYPE: 'OSM' +EVEL_URL: 'http://services.mysociety.org/evel' +GAZE_URL: 'http://gaze.mysociety.org/gaze' + +# Tracking +TRACKING: 0 # off by default +TRACKING_URL: 'http://path/to/web/bug' +TRACKING_SECRET: 'really-secret-value' + +AUTH_SHARED_SECRET: '' +HEARFROMYOURMP_BASE_URL: '' + +SMTP_SMARTHOST: 'localhost' + +IPHONE_URL: '' + +# Log file (used in test harness, and later in admin scripts) +HTTPD_ERROR_LOG: '/var/log/apache/error.log' + +ALLOWED_COBRANDS: 'cobrand_one|cobrand_two' + +# How many items are returned in the GeoRSS feeds by default +RSS_LIMIT: '20' + +# Should problem reports link to the council summary pages? +AREA_LINKS_FROM_PROBLEMS: '0' diff --git a/conf/packages b/conf/packages index 5fa3cf77e..7e383d7b9 100644 --- a/conf/packages +++ b/conf/packages @@ -34,4 +34,4 @@ libyaml-perl liblist-moreutils-perl libhaml-ruby libtemplate-perl -postgresql-server-dev-8.3 +postgresql-server-dev-8.4 diff --git a/data/norway/contact-addresses.csv b/data/norway/contact-addresses.csv index 05cd2df78..9b9664048 100644 --- a/data/norway/contact-addresses.csv +++ b/data/norway/contact-addresses.csv @@ -91,13 +91,14 @@ 0215;Frogn;postmottak@frogn.kommune.no 0216;Nesodden;postmottak@nesodden.kommune.no 0217;OppegÃ¥rd;postmottak@oppegard.kommune.no -0219;Bærum;veiledningstorget@baerum.kommune.no;Annet,Buss- og togstopp,Dumpet skrot,Forlatte kjøretøy,Forsøpling,Fortau/gangstier,Gatefeiing,Gatelys,Gater/Veier,Graffiti/tagging,Hull i vei,Offentlige toaletter,Oljesøl,Parkering,Park/landskap,Snøbrøyting,Sykkelveier,Tette avløpsrister,Trafikklys,Trafikkskilter,Trær,Turveier,Ulovlige oppslag,Universell utforming,Vannforsyning,Veinavn-skilter +0219;Bærum;veiledningstorget@baerum.kommune.no;Annet,Buss- og togstopp,Dumpet skrot,Forlatte kjøretøy,Forsøpling,Fortau/gangstier,Gatefeiing,Gater/Veier,Graffiti/tagging,Hull i vei,Offentlige toaletter,Oljesøl,Parkering,Park/landskap,Snøbrøyting,Sykkelveier,Tette avløpsrister,Trafikklys,Trafikkskilter,Trær,Turveier,Ulovlige oppslag,Universell utforming,Vannforsyning,Veinavn-skilter +0219;Bærum;veilys@hafslund.no;Gatelys 0220;Asker;post@asker.kommune.no 0221;Aurskog-Høland;postmottak@ahk.no 0226;Sørum;postmottak@sorum.kommune.no 0227;Fet;postmottak@fet.kommune.no 0228;Rælingen;postmottak@ralingen.kommune.no -0229;Enebakk;postmottak@enebakk.kommune.no +0229;Enebakk;servicetorget@enebakk.kommune.no 0230;Lørenskog;postmottak@lorenskog.kommune.no 0231;Skedsmo;ekspedts@skedsmo.kommune.no 0233;Nittedal;postmottak@nittedal.kommune.no @@ -160,7 +161,7 @@ 0545;Vang;post@vang.kommune.no 05;Oppland;postmottak@oppland.org;Annet 0602;Drammen;kommunepost@drammen.kommune.no -0604;Kongsberg;postmottak@kongsberg.kommune.no +0604;Kongsberg;servicetorget@kongsberg.kommune.no 0605;Ringerike;postmottak@ringerike.kommune.no 0612;Hole;publikumskontoret@hole.kommune.no 0615;FlÃ¥;postmottak@flaa.kommune.no diff --git a/db/schema.sql b/db/schema.sql index fcd137919..395d1c07b 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -188,7 +188,8 @@ create table problem ( whensent timestamp, send_questionnaire boolean not null default 't', extra text, -- extra fields required for open311 - flagged boolean not null default 'f' + flagged boolean not null default 'f', + geocode bytea ); create index problem_state_latitude_longitude_idx on problem(state, latitude, longitude); create index problem_user_id_idx on problem ( user_id ); diff --git a/db/schema_0012-add_gecode_column_to_problem.sql b/db/schema_0012-add_gecode_column_to_problem.sql new file mode 100644 index 000000000..730212ead --- /dev/null +++ b/db/schema_0012-add_gecode_column_to_problem.sql @@ -0,0 +1,7 @@ + +begin; + +ALTER table problem + ADD column geocode BYTEA; + +commit; diff --git a/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po b/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po index 946f052aa..ee61ebdae 100644 --- a/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po +++ b/locale/nb_NO.UTF-8/LC_MESSAGES/FixMyStreet.po @@ -441,7 +441,7 @@ msgstr "" #: templates/web/default/admin/stats.html:80 msgid "By Date" -msgstr "" +msgstr "PÃ¥ dato" #: templates/web/default/admin/council_contacts.html:26 #: templates/web/default/admin/index.html:36 @@ -478,21 +478,19 @@ msgstr "Bytt passord" #: templates/web/default/report/display.html:85 #: templates/web/default/report/display.html:87 msgid "Closed" -msgstr "" +msgstr "Lukket" #: perllib/FixMyStreet/DB/Result/Problem.pm:627 -#, fuzzy msgid "Closed by council" msgstr "(ikke rapportert til administrasjonen)" #: templates/web/default/my/my.html:32 -#, fuzzy msgid "Closed reports" msgstr "Fiksede rapporter" #: templates/web/default/admin/problem_row.html:25 msgid "Closed:" -msgstr "" +msgstr "Lukket:" #: templates/web/default/around/display_location.html:102 #: templates/web/default/around/display_location.html:104 @@ -507,34 +505,33 @@ msgstr "Koordinater:" #: templates/web/default/admin/list_updates.html:13 #: templates/web/default/admin/search_reports.html:19 msgid "Cobrand" -msgstr "" +msgstr "Merkevaresamarbeid" #: templates/web/default/admin/report_edit.html:39 #: templates/web/default/admin/update_edit.html:41 msgid "Cobrand data:" -msgstr "" +msgstr "Merkevaresamarbeidsdata:" #: templates/web/default/admin/report_edit.html:38 #: templates/web/default/admin/update_edit.html:40 msgid "Cobrand:" -msgstr "" +msgstr "Merkevaresamarbeid:" #: perllib/FixMyStreet/App/Controller/Admin.pm:349 -#, fuzzy msgid "Configuration updated" -msgstr "Bekreftelse" +msgstr "Oppsett oppdatert" #: perllib/FixMyStreet/App/Controller/Admin.pm:359 msgid "Configuration updated - contacts will be generated automatically later" -msgstr "" +msgstr "Oppsett oppdatert - kontakter vil bli generert automatisk senere" #: templates/web/default/admin/council_contacts.html:119 msgid "Configure Open311" -msgstr "" +msgstr "Sett opp Open311" #: templates/web/default/admin/council_contacts.html:96 msgid "Configure Open311 integration" -msgstr "" +msgstr "Sett opp Open311-integrasjon" #: templates/web/default/admin/council_contacts.html:33 msgid "Confirm" @@ -610,9 +607,8 @@ msgstr "Administrasjonskontakter for %s" #: templates/web/default/admin/stats.html:84 #: templates/web/default/admin/user_edit.html:12 -#, fuzzy msgid "Council:" -msgstr "Administrasjon" +msgstr "Administrasjon:" #: templates/web/default/admin/council_list.html:36 msgid "Councils" @@ -662,10 +658,9 @@ msgstr "Slettet" msgid "Details:" msgstr "Detaljer:" -# Trenger kontekst / Needs context #: templates/web/default/admin/council_list.html:23 msgid "Diligency prize league table" -msgstr "" +msgstr "Arbeidshester" #: templates/web/default/auth/general.html:32 msgid "Do you have a FixMyStreet password?" @@ -690,9 +685,8 @@ msgid "Editing update %d" msgstr "Redigerer oppdatering %d" #: templates/web/default/admin/user_edit.html:1 -#, fuzzy msgid "Editing user %d" -msgstr "Redigerer oppdatering %d" +msgstr "Redigerer bruker %d" #: templates/web/default/admin/council_edit.html:45 msgid "Editor" @@ -880,15 +874,13 @@ msgstr "Løst" #: templates/web/default/admin/report_edit.html:22 #: templates/web/default/admin/report_edit.html:25 -#, fuzzy msgid "Fixed - Council" -msgstr "Administrasjon" +msgstr "Løst - Administrasjon" #: templates/web/default/admin/report_edit.html:22 #: templates/web/default/admin/report_edit.html:25 -#, fuzzy msgid "Fixed - User" -msgstr "Fiksede rapporter" +msgstr "Løst - Bruker" #: templates/web/default/my/my.html:27 msgid "Fixed reports" @@ -903,7 +895,6 @@ msgid "Flag user" msgstr "Flag bruker" #: templates/web/default/admin/search_users.html:15 -#, fuzzy msgid "Flagged" msgstr "Flagget:" @@ -1089,7 +1080,7 @@ msgstr "Ugyldig valg av feed" #: templates/web/default/report/display.html:85 #: templates/web/default/report/display.html:87 msgid "In Progress" -msgstr "" +msgstr "Under arbeid" #: templates/web/default/open311/index.html:21 msgid "" @@ -1135,9 +1126,8 @@ msgstr "Ugyldig startdato" #: templates/web/default/admin/report_edit.html:23 #: templates/web/default/report/display.html:85 #: templates/web/default/report/display.html:86 -#, fuzzy msgid "Investigating" -msgstr "Navigasjon" +msgstr "Undersøkes" #: templates/web/emptyhomes/tokens/confirm_problem.html:12 #: templates/web/emptyhomes/tokens/confirm_problem.html:14 @@ -1229,9 +1219,8 @@ msgid "Missing jurisdiction_id" msgstr "Mangler jurisdiction_id" #: templates/web/default/admin/stats.html:11 -#, fuzzy msgid "Month" -msgstr "Antall" +msgstr "MÃ¥ned" #: templates/web/default/report/display.html:31 msgid "More problems nearby" @@ -1377,9 +1366,8 @@ msgstr "Nei" #: templates/web/default/admin/stats.html:85 #: templates/web/default/admin/user_edit.html:13 -#, fuzzy msgid "No council" -msgstr "administrasjon" +msgstr "Ingen administrasjon" #: perllib/FixMyStreet/DB/Result/Problem.pm:297 msgid "No council selected" @@ -1549,9 +1537,8 @@ msgstr "" "fixmystreet\">tilgjengelig pÃ¥ GitHub</a>." #: templates/web/default/admin/list_updates.html:11 -#, fuzzy msgid "Owner" -msgstr "Annet" +msgstr "Eier" #: templates/web/default/errors/page_error_404_not_found.html:1 #: templates/web/default/errors/page_error_404_not_found.html:3 @@ -1587,7 +1574,7 @@ msgstr "Bilder av nye problemer i nærheten" #: templates/web/default/report/display.html:85 #: templates/web/default/report/display.html:86 msgid "Planned" -msgstr "" +msgstr "Planlagt" #: templates/web/default/report/new/notes.html:6 msgid "Please be polite, concise and to the point." @@ -1812,9 +1799,8 @@ msgid "Posted anonymously at %s" msgstr "Publisert anonymt %s" #: templates/web/default/report/updates.html:11 -#, fuzzy msgid "Posted by %s (<strong>%s</strong>) at %s" -msgstr "Note: <strong>%d</strong>" +msgstr "Lagt inn av %s (<strong>%s</strong>) %s" #: templates/web/default/report/updates.html:13 msgid "Posted by %s at %s" @@ -2141,9 +2127,8 @@ msgstr "Søk i rapporter" #: perllib/FixMyStreet/App/Controller/Admin.pm:981 #: templates/web/default/admin/search_users.html:1 -#, fuzzy msgid "Search Users" -msgstr "Søk i rapporter" +msgstr "Søk i brukere" #: templates/web/default/admin/search_abuse.html:4 #: templates/web/default/admin/search_reports.html:5 @@ -2233,7 +2218,7 @@ msgstr "Logget inn som %s" #: templates/web/default/report/new/fill_in_details_text.html:1 msgid "Some categories may require additional information." -msgstr "" +msgstr "Noen kategorier krever kanskje mer informasjon" #: templates/web/default/alert/index.html:31 msgid "Some photos of recent reports" @@ -2665,10 +2650,9 @@ msgstr "" "igjen." #: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 -#, fuzzy msgid "There was a problem with your update. Please try again." msgstr "" -"Det var problemer med din epost/passord-kombinasjon. Vær sÃ¥ snill Ã¥ forsøk " +"Det var problemer med din oppdatering. Vær sÃ¥ snill Ã¥ forsøk " "igjen." #: perllib/FixMyStreet/App/Controller/Contact.pm:117 @@ -2713,7 +2697,7 @@ msgstr "" #: perllib/FixMyStreet/App/Controller/Report/New.pm:761 msgid "This information is required" -msgstr "" +msgstr "Denne informasjonen er pÃ¥krevd" #: templates/web/default/debug_header.html:3 msgid "" @@ -2742,9 +2726,8 @@ msgstr "" "administrasjon for Ã¥ se problemer som er sendt dit." #: perllib/FixMyStreet/Cobrand/Default.pm:926 -#, fuzzy msgid "This problem has been closed" -msgstr "Dette problemet er løst" +msgstr "Dette problemet er lukket" #: perllib/FixMyStreet/Cobrand/Default.pm:922 #: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 @@ -2757,18 +2740,16 @@ msgid "This problem has not been fixed" msgstr "Dette problemet har ikke blitt løst" #: perllib/FixMyStreet/Cobrand/Default.pm:931 -#, fuzzy msgid "This problem is in progress" -msgstr "Dette problemet er løst" +msgstr "Dette problemet er under arbeid" #: perllib/FixMyStreet/Cobrand/Default.pm:918 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 -#, fuzzy msgid "This report is currently marked as closed." -msgstr "Denne rapporten er for tiden markert som Ã¥pen." +msgstr "Denne rapporten er for tiden markert som lukket." #: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 msgid "This report is currently marked as fixed." @@ -2858,19 +2839,16 @@ msgid "Update by {{name}}" msgstr "Oppdatert av {{name}}" #: templates/web/default/admin/update_edit.html:33 -#, fuzzy msgid "Update changed problem state to %s" -msgstr "Oppdatering %s opprettet for problem %d, av %s" +msgstr "En oppdatering endret problemets status til %s" #: templates/web/default/admin/update_edit.html:35 -#, fuzzy msgid "Update marked problem as fixed" msgstr "En oppdatering markerte dette problemet som fikset." #: templates/web/default/admin/update_edit.html:37 -#, fuzzy msgid "Update reopened problem" -msgstr "Oppdatering %s opprettet for problem %d, av %s" +msgstr "En oppdatering gjennÃ¥pnet problemet" #: templates/web/default/admin/council_contacts.html:53 msgid "Update statuses" @@ -3051,9 +3029,8 @@ msgstr "" "lese. Det samme gjelder manglende tegnsetting." #: templates/web/default/admin/stats.html:10 -#, fuzzy msgid "Year" -msgstr "SluttÃ¥r:" +msgstr "Ã…r" #: templates/web/default/admin/council_contacts.html:39 #: templates/web/default/admin/council_contacts.html:40 @@ -3258,9 +3235,8 @@ msgid "less than a minute" msgstr "mindre enn et minutt" #: templates/web/default/report/updates.html:18 -#, fuzzy msgid "marked as %s" -msgstr "markert som fikset" +msgstr "markert som %s" #: templates/web/default/report/updates.html:16 msgid "marked as fixed" @@ -3311,12 +3287,11 @@ msgstr "brukte kart" #: templates/web/default/admin/update_edit.html:26 msgid "user is from same council as problem - %d" -msgstr "" +msgstr "bruker er fra samme administrasjon som problemet - %d" #: templates/web/default/admin/update_edit.html:29 -#, fuzzy msgid "user is problem owner" -msgstr "Flere problemer i nærheten" +msgstr "bruker er eier av problemet" #: templates/web/default/reports/council.html:0 #: templates/web/default/reports/council.html:3 diff --git a/locale/nn_NO.UTF-8/LC_MESSAGES/.gitignore b/locale/nn_NO.UTF-8/LC_MESSAGES/.gitignore new file mode 100644 index 000000000..214d1b7ed --- /dev/null +++ b/locale/nn_NO.UTF-8/LC_MESSAGES/.gitignore @@ -0,0 +1 @@ +/FixMyStreet.mo diff --git a/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po b/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po new file mode 100644 index 000000000..b4ec194a8 --- /dev/null +++ b/locale/nn_NO.UTF-8/LC_MESSAGES/FixMyStreet.po @@ -0,0 +1,3226 @@ +# translation of FixMyStreet.po to Norwegian BokmÃ¥l +# FixMyStreet original .po file, autogenerated by gettext-extract. +# Copyright (C) 2008 UK Citizens Online Democracy +# This file is distributed under the same license as the main FixMyStreet code. +# +# Matthew Somerville <matthew@mysociety.org>, 2008-04-15. +# Petter Reinholdtsen <pere@hungry.com>, 2011. +# Anders Einar Hilden <hildenae@gmail.com>, 2011. +# +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" +"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" +"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 +msgid " and " +msgstr " og " + +#: templates/web/default/tokens/confirm_problem.html:10 +#: templates/web/default/tokens/confirm_problem.html:6 +msgid " and <strong>we will now send it to the council</strong>" +msgstr " og <strong>vi sender det no til administrasjonen</strong>" + +#: 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 +msgid " or " +msgstr " eller " + +#: templates/web/default/admin/council_list.html:17 +msgid "%d addresses" +msgstr "%d adresser" + +#: templates/web/default/admin/index.html:17 +msgid "%d confirmed alerts, %d unconfirmed" +msgstr "%d stadfesta varsel, %d ikkje stadfesta" + +#: templates/web/default/admin/index.html:19 +msgid "%d council contacts – %d confirmed, %d unconfirmed" +msgstr "%d administrasjonskontaktar – %d stadfesta, %d ikkje stadfesta" + +#: perllib/Utils.pm:252 +msgid "%d day" +msgstr "%d dag" + +#: perllib/Utils.pm:252 +msgid "%d days" +msgstr "%d dagar" + +#: templates/web/default/admin/council_list.html:27 +msgid "%d edits by %s" +msgstr "%d redigeringar av %s" + +#: perllib/Utils.pm:253 +msgid "%d hour" +msgstr "%d time" + +#: perllib/Utils.pm:253 +msgid "%d hours" +msgstr "%d timar" + +#: templates/web/default/admin/index.html:16 +msgid "%d live updates" +msgstr "%d aktive oppdateringar" + +#: perllib/Utils.pm:254 +msgid "%d minute" +msgstr "%d minutt" + +#: perllib/Utils.pm:254 +msgid "%d minutes" +msgstr "%d minutt" + +#: templates/web/default/admin/index.html:18 +msgid "%d questionnaires sent – %d answered (%s%%)" +msgstr "%d spørjeskjema sendt – %d svart (%s%%)" + +#: perllib/Utils.pm:251 +msgid "%d week" +msgstr "%d veke" + +#: perllib/Utils.pm:251 +msgid "%d weeks" +msgstr "%d veker" + +#: templates/web/default/reports/council.html +#: templates/web/default/reports/council.html:14 +msgid "%s - Summary reports" +msgstr "%s – oppsummeringsrapportar" + +#: perllib/FixMyStreet/Cobrand/Default.pm:844 +#: perllib/FixMyStreet/Cobrand/Default.pm:858 +msgid "%s ward, %s" +msgstr "%s bydel, %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:466 +msgid "%s, reported anonymously at %s" +msgstr "%s, rapportert anonymt %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:468 +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 +msgid "%s, within %s ward" +msgstr "%s, innanfor bydelen %s" + +#: templates/web/default/admin/stats.html:5 +msgid "%sreports between %s and %s" +msgstr "%srapportar mellom %s og %s" + +#: templates/web/default/email_sent.html:28 +msgid "(Don't worry — %s)" +msgstr "(Ingen grunn til Ã¥ uroa seg — %s)" + +#: templates/web/default/admin/report_blocks.html:11 +msgid "(Email in abuse table)" +msgstr "(Epost i misbruktabellen)" + +#: templates/web/default/alert/list.html:53 +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 +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 +msgid "(fixed)" +msgstr "(løyst)" + +#: templates/web/default/index.html:12 templates/web/default/index.html:8 +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 +msgid "(not sent to council)" +msgstr "(ikkje rapportert til administrasjonen)" + +#: templates/web/default/report/new/fill_in_details_form.html:217 +msgid "(optional)" +msgstr "(valfritt)" + +#: templates/web/default/reports/council.html:131 +msgid "(sent to both)" +msgstr "(sendt til begge)" + +#: templates/web/default/report/new/fill_in_details_form.html:211 +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 +msgid "(we never show your email)" +msgstr "(vi viser aldri e-postadressa di)" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:279 +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 +msgid "-- Pick a category --" +msgstr "-- Vel ein kategori --" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:520 +#: perllib/FixMyStreet/DB/Result/Problem.pm:320 +msgid "-- Pick a property type --" +msgstr "-- Vel ein eigedomstype --" + +#: templates/web/default/tokens/confirm_problem.html:14 +#: templates/web/default/tokens/confirm_problem.html:6 +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>" + +#: templates/web/default/questionnaire/completed.html:15 +msgid "" +"<p style=\"font-size:150%%\">We’re sorry to hear that. We have two " +"suggestions: why not try\n" +"<a href=\"%s\">writing direct to your councillor(s)</a>\n" +"or, if it’s a problem that could be fixed by local people working " +"together,\n" +"why not <a href=\"http://www.pledgebank.com/new\">make and publicise a " +"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>" + +#: templates/web/default/questionnaire/index.html:37 +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" +"website. Even so properties can remain empty for many months if the owner " +"is\n" +"unwilling or the property is in very poor repair. If nothing has happened " +"or\n" +"you are not satisfied with the progress the council is making, now is the " +"right\n" +"time to say so. We think it’s a good idea to contact some other people " +"who\n" +"may be able to help or put pressure on the council For advice on how to do\n" +"this and other useful information please go to <a\n" +"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 +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" +"and should have reported what they have done on the website. If you are not\n" +"satisfied with progress or information from the council, now is the right " +"time\n" +"to say. You may also want to try contacting some other people who may be " +"able\n" +"to help. For advice on how to do this and other useful information please\n" +"go to <a href=\"http://www.emptyhomes.com/getinvolved/campaign.html\">http://" +"www.emptyhomes.com/getinvolved/campaign.html</a>.</p>\n" +msgstr "" + +#: templates/web/default/questionnaire/completed.html:9 +msgid "" +"<p>Thank you very much for filling in our questionnaire; if you\n" +"get some more information about the status of your problem, please come back " +"to the\n" +"site and leave an update.</p>" +msgstr "" +"<p>Tusen takk for at du fylte ut spørjeskjemaet vÃ¥rt. Viss du fÃ¥r meir\n" +"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 +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>" + +#: templates/web/default/admin/index.html:14 +msgid "<strong>%d</strong> live problems" +msgstr "<strong>%d</strong> aktive problem" + +#: 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:" + +#: templates/web/default/report/new/fill_in_details_form.html:162 +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 +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/new/fill_in_details_form.html:140 +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/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 +msgid "Add new category" +msgstr "Legg til ny kategori" + +#: templates/web/default/my/my.html:56 +msgid "Added %s" +msgstr "La til %s" + +#: templates/web/default/auth/change_password.html:29 +msgid "Again:" +msgstr "Gjenta:" + +#: templates/web/default/admin/timeline.html:37 +msgid "Alert %d created for %s, type %s, parameters %s / %s" +msgstr "Varsel %d oppretta for %s, type %s, parameter %s / %s" + +#: templates/web/default/admin/timeline.html:39 +msgid "Alert %d disabled (created %s)" +msgstr "Varsel %d kobla ut (oppretta %s)" + +#: templates/web/default/report/display.html:222 +msgid "Alert me to future updates" +msgstr "Send meg varsel ved framtidige oppdateringar" + +#: templates/web/default/admin/stats.html:5 +msgid "All" +msgstr "Alle" + +#: 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 +msgid "All reports" +msgstr "Alle rapportar" + +#: templates/web/default/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 +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 "" +"All informasjonen du gjev oss her vil sendast til <strong>%s</strong> eller " +"ein relevant lokal etat som <strong>TfL</strong>, via systemet London Report-" +"It." + +#: 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 +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 +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 "" +"All informasjonen du legg inn her vil sendast til <strong>%s</strong>.\n" +"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 +msgid "An update marked this problem as fixed." +msgstr "Ei oppdatering markerte dette problemet som løyst." + +#: templates/web/default/admin/list_flagged.html:15 +#: templates/web/default/admin/list_updates.html:10 +#: templates/web/default/admin/search_reports.html:18 +msgid "Anonymous" +msgstr "Anonym" + +#: templates/web/default/admin/report_edit.html:17 +#: 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 +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?" + +#: 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." + +#: templates/web/default/open311/index.html:9 +msgid "At the moment only searching for and looking at reports work." +msgstr "For augneblunken gÃ¥r det berre an Ã¥ søkja etter og Ã¥ sjÃ¥ pÃ¥ rapportar." + +#: templates/web/default/admin/report_blocks.html:11 +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 +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>" + +#: templates/web/default/admin/stats.html:80 +msgid "By Date" +msgstr "PÃ¥ dato" + +#: 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 +msgid "Category" +msgstr "Kategori" + +#: templates/web/default/admin/index.html:34 +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 +#: 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 +msgid "Category:" +msgstr "Kategori:" + +#: bin/send-reports:180 +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 +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 +msgid "Closed" +msgstr "Lukka" + +# skal det vera forskjellig tyding frÃ¥ engelsken her? --KBU +#: perllib/FixMyStreet/DB/Result/Problem.pm:627 +msgid "Closed by council" +msgstr "(ikkje rapportert til administrasjonen)" + +#: templates/web/default/my/my.html:32 +msgid "Closed reports" +msgstr "Lukka rapportar" + +#: templates/web/default/admin/problem_row.html:25 +msgid "Closed:" +msgstr "Lukka:" + +#: templates/web/default/around/display_location.html:102 +#: templates/web/default/around/display_location.html:104 +msgid "Closest nearby problems <small>(within %skm)</small>" +msgstr "Dei næraste problema <small>(innanfor %skm)</small>" + +#: templates/web/default/admin/report_edit.html:15 +msgid "Co-ordinates:" +msgstr "Koordinatar:" + +#: templates/web/default/admin/list_flagged.html:16 +#: templates/web/default/admin/list_updates.html:13 +#: templates/web/default/admin/search_reports.html:19 +msgid "Cobrand" +msgstr "Merkevaresamarbeid" + +#: templates/web/default/admin/report_edit.html:39 +#: templates/web/default/admin/update_edit.html:41 +msgid "Cobrand data:" +msgstr "Data om merkevaresamarbeid:" + +#: templates/web/default/admin/report_edit.html:38 +#: templates/web/default/admin/update_edit.html:40 +msgid "Cobrand:" +msgstr "Merkevaresamarbeid:" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:349 +msgid "Configuration updated" +msgstr "Oppsett oppdatert" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:359 +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 +msgid "Configure Open311" +msgstr "Sett opp Open311" + +#: templates/web/default/admin/council_contacts.html:96 +msgid "Configure Open311 integration" +msgstr "Sett opp Open311-integrasjon" + +#: templates/web/default/admin/council_contacts.html:33 +msgid "Confirm" +msgstr "Stadfest" + +#: templates/web/default/auth/token.html:1 +msgid "Confirm account" +msgstr "Stadfest konto" + +#: templates/web/default/questionnaire/creator_fixed.html:1 +#: templates/web/default/tokens/confirm_problem.html:1 +#: templates/web/default/tokens/confirm_problem.html:3 +#: templates/web/default/tokens/confirm_update.html:1 +#: templates/web/default/tokens/confirm_update.html:3 +#: templates/web/emptyhomes/tokens/confirm_problem.html:1 +#: templates/web/emptyhomes/tokens/confirm_problem.html:3 +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_edit.html:28 +#: templates/web/default/admin/council_edit.html:43 +#: templates/web/default/admin/stats.html:5 +msgid "Confirmed" +msgstr "Stadfesta" + +#: templates/web/default/admin/problem_row.html:23 +#: templates/web/default/admin/report_edit.html:34 +msgid "Confirmed:" +msgstr "Stadfesta:" + +#: templates/web/fiksgatami/footer.html:10 +msgid "Contact" +msgstr "Kontakt" + +#: templates/web/default/footer.html:17 templates/web/reading/footer.html:15 +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 +msgid "Contact Us" +msgstr "Kontakt oss" + +#: templates/web/default/contact/index.html:6 +#: templates/web/default/contact/submit.html:3 +msgid "Contact the team" +msgstr "Kontakt prosjektgruppa" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:1105 +#: perllib/FixMyStreet/App/Controller/Admin.pm:1133 +msgid "Could not find user" +msgstr "Kunne ikkje finna brukaren" + +#: templates/web/default/admin/list_flagged.html:13 +#: templates/web/default/admin/list_updates.html:12 +#: templates/web/default/admin/search_reports.html:16 +#: templates/web/default/admin/search_users.html:14 +msgid "Council" +msgstr "Administrasjon" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:977 +#: templates/web/default/admin/council_list.html:1 +msgid "Council contacts" +msgstr "Administrasjonskontaktar" + +#: templates/web/default/admin/council_contacts.html:1 +#: templates/web/default/admin/council_edit.html:1 +msgid "Council contacts for %s" +msgstr "Administrasjonskontaktar for %s" + +#: templates/web/default/admin/stats.html:84 +#: templates/web/default/admin/user_edit.html:12 +msgid "Council:" +msgstr "Administrasjon:" + +#: templates/web/default/admin/council_list.html:36 +msgid "Councils" +msgstr "Administrasjonar" + +#: templates/web/default/admin/stats.html:12 +#: templates/web/default/admin/stats.html:32 +msgid "Count" +msgstr "Mengd" + +#: templates/web/default/email_sent.html:1 +msgid "Create a report" +msgstr "Lag ein rapport" + +#: templates/web/default/admin/council_contacts.html:87 +msgid "Create category" +msgstr "Lag kategori" + +#: templates/web/default/admin/list_flagged.html:17 +#: templates/web/default/admin/list_updates.html:9 +#: templates/web/default/admin/search_reports.html:20 +msgid "Created" +msgstr "Oppretta" + +#: templates/web/default/admin/report_edit.html:33 +#: templates/web/default/admin/update_edit.html:42 +msgid "Created:" +msgstr "Oppretta:" + +#: templates/web/default/admin/stats.html:31 +msgid "Current state" +msgstr "Gjeldande tilstand" + +#: templates/web/default/admin/council_list.html:40 +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_edit.html:29 +#: templates/web/default/admin/council_edit.html:44 +msgid "Deleted" +msgstr "Sletta" + +#: templates/web/default/admin/report_edit.html:14 +#: templates/web/default/report/new/fill_in_details_form.html:61 +msgid "Details:" +msgstr "Detaljar:" + +#: templates/web/default/admin/council_list.html:23 +msgid "Diligency prize league table" +msgstr "Arbeidshestar" + +#: templates/web/default/auth/general.html:32 +msgid "Do you have a FixMyStreet password?" +msgstr "Har du eit FiksGataMi-passord?" + +#: templates/web/default/questionnaire/index.html:72 +msgid "Don’t know" +msgstr "Veit ikkje" + +#: templates/web/default/admin/list_updates.html:35 +#: templates/web/default/admin/problem_row.html:29 +#: templates/web/default/admin/search_users.html:24 +msgid "Edit" +msgstr "Rediger" + +#: templates/web/default/admin/report_edit.html:1 +msgid "Editing problem %d" +msgstr "Rediger problem %d" + +#: templates/web/default/admin/update_edit.html:1 +msgid "Editing update %d" +msgstr "Redigerer oppdatering %d" + +#: templates/web/default/admin/user_edit.html:1 +msgid "Editing user %d" +msgstr "Redigerer brukar %d" + +#: templates/web/default/admin/council_edit.html:45 +msgid "Editor" +msgstr "Oppdatert av" + +#: 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 +msgid "Email" +msgstr "E-post" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:1081 +msgid "Email added to abuse list" +msgstr "E-post lagd til misbrukliste" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:1078 +msgid "Email already in abuse list" +msgstr "E-post allereie i misbruklista" + +#: templates/web/default/around/display_location.html:84 +msgid "Email me new local problems" +msgstr "Send meg e-post om lokale problem" + +#: templates/web/default/report/display.html:35 +msgid "Email me updates" +msgstr "Send meg oppdateringar" + +#: 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 +msgid "Email:" +msgstr "E-post:" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:522 +msgid "Empty flat or maisonette" +msgstr "Tom leilegheit" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:521 +msgid "Empty house or bungalow" +msgstr "Tomt hus eller bungalow" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:524 +msgid "Empty office or other commercial" +msgstr "Tomt kontor eller forretningsbygg" + +#: templates/web/emptyhomes/report/new/form_heading.html:1 +msgid "Empty property details form" +msgstr "Tom eigedom detaljskjema" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:525 +msgid "Empty pub or bar" +msgstr "Tom pub eller bar" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:526 +msgid "Empty public building - school, hospital, etc." +msgstr "Tom offentleg bygning – skule, sjukehus, osb." + +#: templates/web/default/admin/stats.html:70 +msgid "End Year:" +msgstr "SluttÃ¥r:" + +#: templates/web/default/admin/stats.html:72 +msgid "End day:" +msgstr "Sluttdag:" + +#: templates/web/default/admin/stats.html:71 +msgid "End month:" +msgstr "SluttmÃ¥nad:" + +# GB – Great Britain? --KBU +#: 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 +msgid "Enter a nearby GB postcode, or street name and area" +msgstr "Skriv inn GB-postnummer i nærleiken, eller vegnamn og stad" + +#: perllib/FixMyStreet/Cobrand/FiksGataMi.pm:32 +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/new/fill_in_details_form.html:169 +msgid "Enter a new password:" +msgstr "Skriv inn eit nytt passord:" + +#: templates/web/default/index.html:45 +msgid "Enter details of the problem" +msgstr "Legg inn detaljar om problemet" + +#: 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 +msgid "Error" +msgstr "Feil" + +#: templates/web/default/admin/council_contacts.html:9 +#: templates/web/default/admin/council_edit.html:18 +msgid "Example postcode %s" +msgstr "Postnummerdøme %s" + +#: templates/web/default/open311/index.html:27 +msgid "Examples:" +msgstr "Døme:" + +#: templates/web/default/contact/submit.html:15 +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" + +#: templates/web/default/questionnaire/index.html:81 +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 +msgid "Fix<span id=\"my\">My</span>Street" +msgstr "Fiks<span id=\"my\">Gata</span>Mi" + +#: templates/web/default/admin/header.html:13 +msgid "FixMyStreet admin:" +msgstr "FiksGataMi-administrator:" + +#: templates/web/default/admin/header.html:3 +msgid "FixMyStreet administration" +msgstr "Fiksgatami-administrasjon" + +#: templates/web/default/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 "" +"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 +msgid "" +"FixMyStreet sends different categories of problem\n" +"to the appropriate council, so problems within the boundary of a particular " +"council\n" +"might not match the problems sent to that council. For example, a graffiti " +"report\n" +"will be sent to the district council, so will appear in both of the " +"district\n" +"council’s alerts, but will only appear in the \"Within the boundary\" " +"alert\n" +"for the county council." +msgstr "" +"FiksGataMi sender ulike kategoriar problem til ulike administrasjonar, " +"problem som gjeld fleire administrasjonar vert send til alle dei det gjeld." + +#: 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 +msgid "Fixed" +msgstr "Løyst" + +#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:25 +msgid "Fixed - Council" +msgstr "Løyst – Administrasjon" + +#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:25 +msgid "Fixed - User" +msgstr "Løyst – Brukar" + +#: templates/web/default/my/my.html:27 +msgid "Fixed reports" +msgstr "Løyste rapportar" + +#: templates/web/default/admin/problem_row.html:24 +msgid "Fixed:" +msgstr "Løyst:" + +#: templates/web/default/admin/report_blocks.html:16 +msgid "Flag user" +msgstr "Flagg brukar" + +#: templates/web/default/admin/search_users.html:15 +msgid "Flagged" +msgstr "Flagga:" + +#: templates/web/default/admin/report_edit.html:41 +#: templates/web/default/admin/user_edit.html:18 +msgid "Flagged:" +msgstr "Flagga:" + +#: templates/web/default/reports/council.html:23 +msgid "Follow a ward link to view only reports within that ward." +msgstr "Følg ei bydellenkje for Ã¥ berre sjÃ¥ rapportar innanfor den bydelen." + +#: templates/web/default/admin/report_edit.html:16 +msgid "For council(s):" +msgstr "For administrasjon(ane):" + +#: 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 +msgid "Frequently Asked Questions" +msgstr "Ofte spurde spurnader" + +#: templates/web/emptyhomes/static/about.html:34 +msgid "Further information about our work on empty homes." +msgstr "Meir informasjon om arbeidet vÃ¥rt med tomme heimar." + +#: templates/web/default/open311/index.html:69 +msgid "GeoRSS on Google Maps" +msgstr "GeoRSS pÃ¥ Google Maps" + +#: templates/web/default/alert/list.html:112 +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 +msgid "Go" +msgstr "Hald fram" + +#: templates/web/default/admin/report_edit.html:40 +msgid "Going to send questionnaire?" +msgstr "Skal spørjeskjemaet sendast?" + +#: templates/web/default/admin/index.html:24 +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/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 +msgid "Has this problem been fixed?" +msgstr "Har dette problemet vorte løyst?" + +#: templates/web/default/questionnaire/index.html:76 +msgid "" +"Have you ever reported a problem to a council before, or is this your first " +"time?" +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 +msgid "Help" +msgstr "Hjelp" + +#: templates/web/default/alert/list.html:39 +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/default/admin/update_edit.html:19 +msgid "Hidden" +msgstr "Skjult" + +#: templates/web/default/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 +msgid "How to report a problem" +msgstr "Korleis rapportera eit problem" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:587 +msgid "I am afraid you cannot confirm unconfirmed reports." +msgstr "Eg er redd du ikkje kan stadfesta ustadfesta rapportar." + +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:89 +msgid "I'm afraid we couldn't locate your problem in the database.\n" +msgstr "Eg er redd vi ikkje klarte Ã¥ finna problemet ditt i databasen.\n" + +#: perllib/FixMyStreet/App/Controller/Tokens.pm:43 +msgid "" +"I'm afraid we couldn't validate that token, as the report was made too long " +"ago." +msgstr "" +"Eg er redd vi ikkje kunne verifisera den referansen, dÃ¥ det er for lenge " +"sidan rapporten vart laga." + +#: perllib/FixMyStreet/App/Controller/Tokens.pm:233 +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" + +#: templates/web/default/admin/list_flagged.html:9 +#: templates/web/default/admin/list_updates.html:5 +#: templates/web/default/admin/search_reports.html:12 +msgid "ID" +msgstr "ID" + +#: templates/web/default/report/new/councils_text_none.html:11 +#: templates/web/default/report/new/councils_text_none.html:12 +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." + +#: templates/web/emptyhomes/report/new/no_councils_text.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." + +#: templates/web/default/auth/token.html:23 +#: templates/web/default/email_sent.html:24 +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." + +#: templates/web/default/questionnaire/index.html:85 +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" +"(denne vert ikkje send til administrasjonen). Du kan til dømes\n" +"dela røynsla di med korleis problemet ditt vart løyst." + +#: perllib/FixMyStreet/App/Controller/Contact.pm:111 +msgid "Illegal ID" +msgstr "Ugyldig ID" + +#: perllib/FixMyStreet/App/Controller/Alert.pm:102 +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 +msgid "In Progress" +msgstr "Under arbeid" + +#: templates/web/default/open311/index.html:21 +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 "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" + +#: templates/web/default/admin/stats.html:76 +msgid "Include unconfirmed reports" +msgstr "Inkluder ikkje-stadfesta problem" + +#: perllib/FixMyStreet/App/Controller/Open311.pm:358 +msgid "Incorrect has_photo value \"%s\"" +msgstr "Feil has_photo-verdi «%s»" + +#: perllib/FixMyStreet/App/Controller/Open311.pm:343 +msgid "Invalid agency_responsible value %s" +msgstr "Ugyldig agency_responsible-verdi %s" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:897 +msgid "Invalid end date" +msgstr "Ugyldig slutt-dato" + +#: perllib/FixMyStreet/App/Controller/Open311.pm:426 +msgid "Invalid format %s specified." +msgstr "Ugyldig format %s oppgjeve." + +#: perllib/FixMyStreet/App/Controller/Admin.pm:887 +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/report/display.html:85 +#: templates/web/default/report/display.html:86 +msgid "Investigating" +msgstr "Undersøkjer" + +#: templates/web/emptyhomes/tokens/confirm_problem.html:12 +#: templates/web/emptyhomes/tokens/confirm_problem.html:14 +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 +msgid "Keep me signed in on this computer" +msgstr "Hugs mi innlogging pÃ¥ denne datamaskina" + +#: templates/web/default/admin/council_contacts.html:30 +msgid "Last editor" +msgstr "Sist redigert av" + +#: templates/web/default/admin/report_edit.html:36 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: templates/web/default/admin/problem_row.html:26 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:983 +msgid "List Flagged" +msgstr "Vis flagga" + +#: templates/web/default/admin/council_contacts.html:11 +msgid "List all reported problems" +msgstr "Vis alle rapporterte problem" + +#: templates/web/default/report/new/fill_in_details_form.html:68 +msgid "Loading..." +msgstr "Lastar …" + +#: 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 +msgid "Local RSS feeds and email alerts" +msgstr "Lokal RSS-straum og e-postvarsel" + +#: 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 +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 +msgid "Local alerts" +msgstr "Lokale varsel" + +#: templates/web/default/index.html:44 +msgid "Locate the problem on a map of the area" +msgstr "Lokaliser problemet pÃ¥ kartet over omrÃ¥det" + +#: perllib/FixMyStreet/Map/OSM.pm:43 +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 "" +"Kart © <a id=\"osm_link\" href=\"http://www.openstreetmap.org/" +"\">OpenStreetMap</a> og bidragsytarar, <a href=\"http://creativecommons.org/" +"licenses/by-sa/2.0/\">CC-BY-SA</a>" + +#: templates/web/default/contact/index.html:90 +msgid "Message:" +msgstr "Melding:" + +#: perllib/FixMyStreet/App/Controller/Open311.pm:434 +msgid "Missing jurisdiction_id" +msgstr "Manglar jurisdiction_id" + +#: templates/web/default/admin/stats.html:11 +msgid "Month" +msgstr "MÃ¥nad" + +#: templates/web/default/report/display.html:31 +msgid "More problems nearby" +msgstr "Fleire problem i nærleiken" + +#: 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 +msgid "Name" +msgstr "Namn" + +#: templates/web/default/admin/report_edit.html:30 +#: templates/web/default/admin/update_edit.html:23 +#: templates/web/default/admin/user_edit.html:10 +msgid "Name:" +msgstr "Namn:" + +#: templates/web/default/footer.html:4 templates/web/fiksgatami/footer.html:3 +#: templates/web/reading/footer.html:4 +msgid "Navigation" +msgstr "Navigasjon" + +#: perllib/FixMyStreet/Geocode/OSM.pm:100 +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" + +#: perllib/FixMyStreet/Cobrand/Default.pm:564 +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)" + +#: perllib/FixMyStreet/Cobrand/Default.pm:553 +#: perllib/FixMyStreet/Cobrand/Default.pm:588 +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" + +#: 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 +msgid "New category contact added" +msgstr "Ny kategorikontakt lagt til" + +#: db/alert_types.pl:18 db/alert_types.pl:22 +msgid "New local problems on FixMyStreet" +msgstr "Nye lokale problem pÃ¥ FiksGataMi" + +#: db/alert_types_eha.pl:12 +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/reports/index.html:10 +msgid "New problems" +msgstr "Nye problem" + +#: db/alert_types.pl:38 +msgid "New problems for {{COUNCIL}} within {{WARD}} ward on FixMyStreet" +msgstr "Nye problem for {{COUNCIL}} innanfor {{WARD}} bydel pÃ¥ FiksGataMi" + +#: db/alert_types.pl:26 db/alert_types.pl:30 +msgid "New problems near {{POSTCODE}} on FixMyStreet" +msgstr "Nye problem nær postnummer {{POSTCODE}} pÃ¥ FiksGataMi" + +#: db/alert_types.pl:10 +msgid "New problems on FixMyStreet" +msgstr "Nye problem pÃ¥ Fiksgatami" + +#: db/alert_types.pl:34 +msgid "New problems to {{COUNCIL}} on FixMyStreet" +msgstr "Nye problem i {{COUNCIL}} pÃ¥ FiksGataMi" + +#: db/alert_types.pl:42 +msgid "New problems within {{NAME}}'s boundary on FixMyStreet" +msgstr "Nye rapportar innanfor grensa til {{NAME}} pÃ¥ FiksGataMi" + +#: db/alert_types_eha.pl:23 +msgid "" +"New reports for {{COUNCIL}} within {{WARD}} ward on reportemptyhomes.com" +msgstr "" +"Nye rapportar for {{COUNCIL}} innanfor {{WARD}} bydel pÃ¥ reportemptyhomes.com" + +#: db/alert_types_eha.pl:5 +msgid "New reports on reportemptyhomes.com" +msgstr "Nye rapportar pÃ¥ reportemptyhomes.com" + +#: db/alert_types_eha.pl:16 +msgid "New reports on reportemptyhomes.com near {{POSTCODE}}" +msgstr "Nye rapportar pÃ¥ reportemptyhomes.com nær postnummer {{POSTCODE}}" + +#: db/alert_types_eha.pl:19 +msgid "New reports to {{COUNCIL}} on reportemptyhomes.com" +msgstr "Nye rapportar til {{COUNCIL}} pÃ¥ reportemptyhomes.com" + +#: db/alert_types_eha.pl:27 +msgid "New reports within {{NAME}}'s boundary on reportemptyhomes.com" +msgstr "Nye rapportar innanfor grensa til {{NAME}} pÃ¥ reportemptyhomes.com" + +#: templates/web/default/admin/questionnaire.html:24 +msgid "New state" +msgstr "Ny tilstand" + +#: templates/web/default/front/news.html:8 +#: templates/web/fiksgatami/front/news.html:9 +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_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 +msgid "No" +msgstr "Nei" + +#: templates/web/default/admin/stats.html:85 +#: templates/web/default/admin/user_edit.html:13 +msgid "No council" +msgstr "Ingen administrasjon" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:297 +msgid "No council selected" +msgstr "Ingen administrasjon er vald" + +#: templates/web/default/admin/council_list.html:32 +msgid "No edits have yet been made." +msgstr "Ingen endringar er gjort." + +#: templates/web/default/admin/list_flagged.html:26 +msgid "No flagged problems found" +msgstr "Fann ingen flagga problem" + +#: templates/web/default/admin/list_flagged.html:47 +msgid "No flagged users found" +msgstr "Fann ingen flagga brukarar" + +#: templates/web/default/admin/council_list.html:38 +msgid "No info at all" +msgstr "Heilt utan informasjon" + +#: templates/web/default/around/around_map_list_items.html:15 +msgid "No problems found." +msgstr "Fann ingen problem." + +#: templates/web/default/around/on_map_list_items.html:12 +msgid "No problems have been reported yet." +msgstr "Ingen problem er rapporterte" + +#: templates/web/default/admin/council_list.html:5 +#: templates/web/default/admin/report_edit.html:16 +msgid "None" +msgstr "Ingen" + +#: templates/web/default/admin/questionnaire.html:6 +msgid "Not reported before" +msgstr "Ikkje rapportert tidlegare" + +#: templates/web/default/report/_main.html:9 +msgid "Not reported to council" +msgstr "Ikkje rapportert til administrasjonen" + +#: templates/web/default/admin/council_contacts.html:31 +#: templates/web/default/admin/council_edit.html:46 +msgid "Note" +msgstr "Merk" + +#: templates/web/default/admin/stats.html:51 +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." + +#: templates/web/default/admin/council_contacts.html:80 +#: templates/web/default/admin/council_edit.html:31 +msgid "Note:" +msgstr "Merk:" + +#: templates/web/default/open311/index.html:6 +msgid "Note: <strong>%s</strong>" +msgstr "Merk: <strong>%s</strong>" + +#: 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 +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 +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:13 +#: templates/web/fiksgatami/reports/index.html:12 +msgid "Old problems,<br>state unknown" +msgstr "Eldre problem, med<br>ukjend status" + +#: templates/web/default/admin/questionnaire.html:24 +msgid "Old state" +msgstr "Gammal tilstand" + +#: templates/web/default/reports/index.html:15 +#: templates/web/emptyhomes/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/reports/index.html:11 +msgid "Older problems" +msgstr "Eldre problem" + +#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/update_edit.html:19 +#: templates/web/default/report/display.html:85 +msgid "Open" +msgstr "Opne" + +#: templates/web/default/my/my.html:22 +msgid "Open reports" +msgstr "Opne rapportar" + +#: templates/web/default/open311/index.html:3 +msgid "Open311 API for the mySociety FixMyStreet server" +msgstr "Open311-API for mySocietys FiksGataMi-tenar" + +#: templates/web/default/open311/index.html:13 +msgid "Open311 initiative web page" +msgstr "Nettsida til Open311-initiativet" + +#: templates/web/default/open311/index.html:14 +msgid "Open311 specification" +msgstr "Open311-spesifikasjon" + +#: templates/web/default/alert/list.html:87 +msgid "Or problems reported to:" +msgstr "Eller problem meldt til:" + +#: templates/web/default/alert/list.html:63 +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 +msgid "Other" +msgstr "Anna" + +#: templates/web/default/footer.html:30 +msgid "" +"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/admin/list_updates.html:11 +msgid "Owner" +msgstr "Eigar" + +#: templates/web/default/errors/page_error_404_not_found.html:1 +#: templates/web/default/errors/page_error_404_not_found.html:3 +msgid "Page Not Found" +msgstr "Fann ikkje sida" + +#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:25 +msgid "Partial" +msgstr "Delvis" + +#: templates/web/default/auth/change_password.html:25 +msgid "Password:" +msgstr "Passord:" + +#: bin/send-reports:69 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/default/report/new/fill_in_details_form.html:102 +msgid "Photo:" +msgstr "Bilete:" + +#: templates/web/default/alert/list.html:29 +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/report/display.html:85 +#: templates/web/default/report/display.html:86 +msgid "Planned" +msgstr "Planlagt" + +#: templates/web/default/report/new/notes.html:6 +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 +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 +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 +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 +msgid "Please choose a category" +msgstr "Vel ein kategori" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:322 +msgid "Please choose a property type" +msgstr "Vel ein type eigenskap" + +#: templates/web/default/contact/blurb.html:2 +msgid "" +"Please do <strong>not</strong> report problems through this form; messages " +"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." + +#: templates/web/default/report/new/notes.html:7 +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." + +#: perllib/FixMyStreet/DB/Result/Comment.pm:113 +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 +msgid "Please enter a password" +msgstr "Skriv inn eit passord" + +#: perllib/FixMyStreet/App/Controller/Contact.pm:97 +#: perllib/FixMyStreet/DB/Result/Problem.pm:291 +msgid "Please enter a subject" +msgstr "Ver venleg og legg inn eit emne" + +#: perllib/FixMyStreet/DB/Result/User.pm:96 +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/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 +msgid "Please enter some details" +msgstr "Ver venleg og legg inn opplysningar om problemet" + +#: 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 +msgid "Please enter your email" +msgstr "Ver venleg og legg inn e-posten din" + +#: 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" +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/User.pm:89 +msgid "Please enter your name" +msgstr "Ver venleg og legg inn namnet ditt" + +#: templates/web/emptyhomes/report/new/fill_in_details_text.html:1 +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" +"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 " +"hard\n" +"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 +msgid "Please fill in details of the problem below." +msgstr "Ver venleg og fyll ut detaljar om problemet under." + +#: templates/web/default/report/new/fill_in_details_text.html:1 +#: templates/web/default/report/new/fill_in_details_text.html:3 +msgid "" +"Please fill in details of the problem below. The council won't be able\n" +"to help unless you leave as much detail as you can, so please describe the " +"exact location of\n" +"the problem (e.g. on a wall), what it is, how long it has been there, a " +"description (and a\n" +"photo of 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/default/report/new/fill_in_details_form.html:27 +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 "" +"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 +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 +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 "" +"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>" + +#: templates/web/default/report/new/fill_in_details_form.html:5 +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." + +#: templates/web/default/report/new/notes.html:1 +msgid "Please note:" +msgstr "Merk:" + +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:247 +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" + +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:254 +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 +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" + +#: perllib/FixMyStreet/App/Controller/Alert.pm:82 +msgid "Please select the feed you want" +msgstr "Vel den kjelda du ynskjer" + +#: perllib/FixMyStreet/App/Controller/Alert.pm:120 +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 +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 +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 +msgid "Please upload a JPEG image only" +msgstr "Ver venleg og berre last opp JPEG-bilete" + +#: perllib/FixMyStreet/App/Controller/Contact.pm:98 +msgid "Please write a message" +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 +msgid "Post" +msgstr "Send inn" + +#: templates/web/default/report/updates.html:8 +msgid "Posted anonymously at %s" +msgstr "Publisert anonymt %s" + +#: templates/web/default/report/updates.html:11 +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 +msgid "Posted by %s at %s" +msgstr "Sendt inn av %s %s" + +#: templates/web/default/maps/openlayers.html:89 +msgid "Problem" +msgstr "Problem" + +#: templates/web/default/admin/timeline.html:24 +msgid "Problem %d created" +msgstr "Problem %d oppretta" + +#: templates/web/default/admin/timeline.html:26 +msgid "Problem %s confirmed" +msgstr "Problem %s stadfesta" + +#: templates/web/default/admin/timeline.html:28 +msgid "Problem %s sent to council %s" +msgstr "Problem %s sendt til administrasjon %s" + +#: templates/web/default/admin/index.html:28 +msgid "Problem breakdown by state" +msgstr "Tilstandsfordeling av problem" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:774 +msgid "Problem marked as open." +msgstr "Problem markert som ope." + +#: templates/web/default/admin/questionnaire.html:21 +msgid "Problem state change based on survey results" +msgstr "Endring av problemtilstand basert pÃ¥ spørjeundersøkingsresultat" + +#: templates/web/default/admin/list_flagged.html:5 +msgid "Problems" +msgstr "Problem" + +#: templates/web/default/around/display_location.html:80 +msgid "Problems in this area" +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 +msgid "Problems within %.1fkm of this location" +msgstr "Problem innanfor %.1fkm av denne posisjonen" + +#: perllib/FixMyStreet/Cobrand/Default.pm:800 +#: 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/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 +msgid "Problems within %s, FixMyStreet" +msgstr "Problem innanfor %s, FiksGataMi" + +#: templates/web/default/alert/list.html:69 +msgid "Problems within the boundary of:" +msgstr "Problem innanfor grensene av:" + +#: db/alert_types_eha.pl:8 +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 +msgid "Property type:" +msgstr "Type eigenskap:" + +#: templates/web/default/report/display.html:57 +msgid "Provide an update" +msgstr "Bidra med ei oppdatering" + +#: templates/web/default/report/display.html:181 +#: templates/web/default/report/new/fill_in_details_form.html:173 +msgid "" +"Providing a password is optional, but doing so will allow you to more easily " +"report problems, leave updates and manage your reports." +msgstr "" +"Det er valfritt Ã¥ oppgje eit passord, men om du gjer det vil det verta " +"enklare for deg Ã¥ rapportera problem, leggja inn oppdateringar og halda " +"oversyn over rapportane dine" + +#: 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:14 +#: templates/web/default/questionnaire/index.html:4 +msgid "Questionnaire" +msgstr "Spørjeskjema" + +#: templates/web/default/admin/timeline.html:32 +msgid "Questionnaire %d answered for problem %d, %s to %s" +msgstr "Spørjeskjema %d fylt inn for problem %d, %s til %s" + +#: templates/web/default/admin/timeline.html:30 +msgid "Questionnaire %d sent for problem %d" +msgstr "Spørjeskjema %d sendt for problem %d" + +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:190 +msgid "Questionnaire filled in by problem reporter" +msgstr "Spørjeskjema fylt inn av feilrapportøren" + +#: 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 +msgid "RSS feed" +msgstr "RSS-straum" + +#: perllib/FixMyStreet/Cobrand/Default.pm:838 +#: perllib/FixMyStreet/Cobrand/Default.pm:852 +msgid "RSS feed for %s" +msgstr "RSS-straum for %s" + +#: perllib/FixMyStreet/Cobrand/Default.pm:845 +#: perllib/FixMyStreet/Cobrand/Default.pm:859 +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/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 "RSS-straum frÃ¥ %s" + +#: perllib/FixMyStreet/Cobrand/Default.pm:874 +#: perllib/FixMyStreet/Cobrand/Default.pm:888 +msgid "RSS feed of %s, within %s ward" +msgstr "RSS-straum av %s, innanfor %s bydel" + +#: templates/web/default/alert/list.html:54 +msgid "RSS feed of nearby problems" +msgstr "RSS-straum med problem i nærleiken" + +#: templates/web/default/reports/council.html:61 +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/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/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 +msgid "RSS feed of recent local problems" +msgstr "RSS-straum med nye lokale problem" + +#: templates/web/default/report/display.html:48 +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 +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: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/emptyhomes/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 +msgid "Recently reported problems" +msgstr "Nyleg melde problem" + +#: templates/web/default/report/new/notes.html:9 +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." + +#: 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/update_edit.html:48 +msgid "Remove photo (can't be undone!)" +msgstr "Fjern bilete (kan ikkje gjerast om!)" + +#: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:77 +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 +msgid "Report a problem" +msgstr "Rapporter eit problem" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:274 +msgid "Report on %s" +msgstr "Rapport pÃ¥ %s" + +#: templates/web/default/index.html:15 +msgid "Report, view, or discuss local problems" +msgstr "Rapporter, finn eller diskuter lokale problem" + +#: templates/web/default/my/my.html:74 +msgid "Reported %s" +msgstr "Rapportert %s" + +#: templates/web/default/my/my.html:72 +msgid "Reported %s, to %s" +msgstr "Rapportert %s, til %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:490 +#: templates/web/default/contact/index.html:45 +msgid "Reported anonymously at %s" +msgstr "Rapportert anonymt %s" + +#: templates/web/default/admin/questionnaire.html:5 +#: templates/web/default/questionnaire/index.html:79 +msgid "Reported before" +msgstr "Rapportert tidlegare" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:482 +msgid "Reported by %s anonymously at %s" +msgstr "Publisert av %s anonymt %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:513 +#: templates/web/default/contact/index.html:47 +msgid "Reported by %s at %s" +msgstr "Publisert av %s %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:504 +msgid "Reported by %s by %s at %s" +msgstr "Rapportert av %s av %s %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:478 +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 +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 +msgid "Reported in the %s category anonymously at %s" +msgstr "Rapportert i kategorien %s anonymt %s" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:508 +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:3 +#: templates/web/default/report/new/fill_in_details_form.html:1 +msgid "Reporting a problem" +msgstr "Legger til eit problem" + +#: templates/web/default/around/display_location.html:94 +msgid "Reports on and around the map" +msgstr "Problem i og rundt kartet" + +#: templates/web/default/admin/report_edit.html:35 +msgid "Resend report" +msgstr "Send rapport pÃ¥ nytt" + +#: perllib/FixMyStreet/Geocode/OSM.pm:107 +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" + +#: perllib/FixMyStreet/Geocode/OSM.pm:104 +msgid "Road operator for this named road (from OpenStreetMap): %s" +msgstr "Vegoperatør for denne namngjevne vegen (frÃ¥ OpenStreetMap): %s" + +#: templates/web/default/admin/council_edit.html:35 +msgid "Save changes" +msgstr "Lagra endringar" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:982 +msgid "Search Abuse" +msgstr "Søk etter misbruk" + +#: templates/web/default/admin/search_abuse.html:1 +msgid "Search Abuse Table" +msgstr "Søk i misbruktabell" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:978 +#: 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 +#: templates/web/default/admin/search_users.html:1 +msgid "Search Users" +msgstr "Søk i brukarar" + +#: templates/web/default/admin/search_abuse.html:4 +#: templates/web/default/admin/search_reports.html:5 +#: templates/web/default/admin/search_users.html:5 +msgid "Search:" +msgstr "Søk:" + +#: templates/web/default/alert/list.html:41 +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." + +#: perllib/FixMyStreet/DB/Result/Problem.pm:555 +msgid "Sent to %s %s later" +msgstr "Sendt til %s %s seinare" + +#: templates/web/default/admin/report_edit.html:35 +msgid "Sent:" +msgstr "Sendt:" + +#: templates/web/default/admin/report_edit.html:37 +msgid "Service:" +msgstr "Teneste:" + +#: templates/web/emptyhomes/static/about.html:21 +msgid "Shelter Cymru" +msgstr "Shelter Cymru" + +#: templates/web/emptyhomes/static/about.html:23 +msgid "" +"Shelter Cymru is Wales’ people and homes charity and wants\n" +" everyone in Wales to have a decent home. We believe a home is a " +"fundamental\n" +" right and essential to the health and well-being of people and " +"communities.\n" +" We work for people in housing need. We have offices all over Wales and\n" +" prevent people from losing their homes by offering free, confidential " +"and\n" +" independent advice. When necessary we constructively challenge on behalf " +"of\n" +" people to ensure they are properly assisted and to improve practice and\n" +" learning. We believe that bringing empty homes back into use can make a\n" +" 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 +msgid "Show my name publicly" +msgstr "Vis namnet mitt offentleg" + +#: templates/web/default/around/display_location.html:52 +msgid "Show pins" +msgstr "Vis nÃ¥ler" + +#: templates/web/default/auth/general.html:3 +#: templates/web/default/auth/general.html:49 +msgid "Sign in" +msgstr "Logg inn" + +#: templates/web/default/auth/general.html:74 +msgid "Sign in by email" +msgstr "Logg inn via epost" + +#: templates/web/default/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/fiksgatami/header.html:22 +#: templates/web/lichfielddc/header.html:177 +#: templates/web/reading/header.html:37 +msgid "Sign out" +msgstr "Logg ut" + +#: 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 +msgid "Signed in as %s" +msgstr "Logga inn som %s" + +#: templates/web/default/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 +msgid "Some photos of recent reports" +msgstr "Nokre bilete av nyleg melde problem" + +#: perllib/FixMyStreet/App/View/Email.pm:32 +#: perllib/FixMyStreet/App/View/Web.pm:44 +msgid "Some text to localize" +msgstr "Noko tekst Ã¥ omsetja" + +#: templates/web/default/admin/council_list.html:42 +msgid "Some unconfirmeds" +msgstr "Nokre ustadfesta" + +#: perllib/FixMyStreet/Cobrand/Default.pm:517 +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." + +#: 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" + +#: perllib/FixMyStreet/Geocode.pm:27 perllib/FixMyStreet/Geocode/Bing.pm:52 +#: 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/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." + +#: templates/web/fiksgatami/footer.html:16 +msgid "Source code" +msgstr "Kjeldekode" + +#: templates/web/default/admin/stats.html:64 +msgid "Start Year:" +msgstr "StartÃ¥r:" + +#: templates/web/default/admin/stats.html:66 +msgid "Start day:" +msgstr "Startdag:" + +#: templates/web/default/admin/stats.html:65 +msgid "Start month:" +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 +msgid "State" +msgstr "Tilstand" + +#: templates/web/default/admin/report_edit.html:21 +#: templates/web/default/admin/update_edit.html:18 +#: templates/web/default/report/display.html:83 +msgid "State:" +msgstr "Tilstand:" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:984 +#: templates/web/default/admin/stats.html:1 +msgid "Stats" +msgstr "Statistikk" + +#: 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 "Emne:" + +#: 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 +msgid "Submit" +msgstr "Send inn" + +#: templates/web/default/admin/report_edit.html:50 +#: 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 +msgid "Submit questionnaire" +msgstr "Send inn spørjeskjema" + +#: templates/web/default/alert/updates.html:17 +#: templates/web/default/report/display.html:43 +msgid "Subscribe" +msgstr "Abonner" + +#: templates/web/default/alert/list.html:128 +msgid "Subscribe me to an email alert" +msgstr "Eg ynskjer Ã¥ abonnera pÃ¥ e-postvarsel" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:976 +#: 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/reports/index.html:1 +msgid "Summary reports" +msgstr "Oppsummeringsrapportar" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:980 +#: templates/web/default/admin/questionnaire.html:1 +msgid "Survey Results" +msgstr "Resultat frÃ¥ spørjeundersøkinga" + +#: templates/web/default/admin/list_updates.html:14 +msgid "Text" +msgstr "Tekst" + +#: templates/web/default/admin/council_contacts.html:12 +msgid "Text only version" +msgstr "Tekst-utgÃ¥ve" + +#: templates/web/default/admin/update_edit.html:13 +msgid "Text:" +msgstr "Tekst:" + +#: templates/web/default/tokens/confirm_update.html:7 +#: templates/web/default/tokens/confirm_update.html:8 +msgid "" +"Thank you — you can <a href=\"%s\">view your updated problem</a> on " +"the site." +msgstr "" +"Tusen takk — du kan <a href=\"%s\">sjÃ¥ pÃ¥ det oppdaterte problemet " +"ditt</a> her hos oss." + +#: templates/web/emptyhomes/tokens/confirm_problem.html:6 +#: templates/web/emptyhomes/tokens/confirm_problem.html:8 +msgid "" +"Thank you for reporting an empty property on ReportEmptyHomes.com. We have " +"emailed the lead officer for empty homes in the council responsible with " +"details, and asked them to do whatever they can to get the empty property " +"back into use as soon as possible." +msgstr "" + +#: templates/web/emptyhomes/tokens/confirm_problem.html:30 +#: templates/web/emptyhomes/tokens/confirm_problem.html:31 +msgid "" +"Thank you for reporting this empty property on ReportEmptyHomes.com.\n" +"At present the report cannot be sent through to the council for this area. " +"We\n" +"are working with councils to link them into the system so that as many " +"areas\n" +"as possible will be covered." +msgstr "" + +#: templates/web/default/tokens/error.html:7 +msgid "" +"Thank you for trying to confirm your update or problem. We seem to have an " +"error ourselves though, so <a href=\"%s\">please let us know what went on</" +"a> and we'll look into it." +msgstr "" +"Takk for at du freistar Ã¥ stadfesta oppdateringa di eller problemet\n" +"ditt. Det ser ut til at vi har ein feil hos oss, sÃ¥ <a href=\"%s\">ver\n" +"sÃ¥ snill og fortel oss kva som skjedde</a>, sÃ¥ skal vi sjÃ¥ pÃ¥ saka." + +#: templates/web/emptyhomes/tokens/confirm_problem.html:24 +#: templates/web/emptyhomes/tokens/confirm_problem.html:26 +msgid "" +"Thank you for using ReportEmptyHomes.com. Your action is already helping to " +"resolve the UK’s empty homes crisis." +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 +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 "" +"Takk for at du lasta opp biletet ditt. No treng vi Ã¥ plassera\n" +"problemet ditt, sÃ¥ ver venleg og skriv inn namn pÃ¥ ein veg i\n" +"nærleiken, eller eit postnummer, i boksen under :" + +#: 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." + +#: 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?" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:839 +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." + +#: templates/web/default/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 "" +"Den staden vert ikkje dekt av nokon administrasjon, kanskje det er til\n" +"havs – ver venleg og prøv ein meir spesifikk stad." + +#: 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." + +#: perllib/FixMyStreet/Cobrand/Default.pm:510 +#: 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 +msgid "That problem will now be resent." +msgstr "Det problemet vil no sendast pÃ¥ nytt." + +#: perllib/FixMyStreet/App/Controller/Report.pm:75 +msgid "That report has been removed from FixMyStreet." +msgstr "Den rapporten har vorte fjerna frÃ¥ FiksGataMi." + +#: templates/web/default/around/around_index.html:27 +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 "" +"Punktet ser ikkje ut til Ã¥ vera dekt av ein administrasjon. Viss du til " +"dømes har freista Ã¥ rapportera eit problem utanfor kysten, marker næraste " +"punkt pÃ¥ land." + +#: templates/web/emptyhomes/static/about.html:7 +msgid "The Empty Homes Agency" +msgstr "" + +#: templates/web/emptyhomes/static/about.html:9 +msgid "" +"The Empty Homes agency is an independent campaigning charity. We\n" +" are not part of government, and have no formal links with local " +"councils\n" +" although we work in cooperation with both. We exist to highlight the " +"waste\n" +" of empty property and work with others to devise and promote " +"sustainable\n" +" solutions to bring empty property back into use. We are based in London " +"but\n" +" work across England. We also work in partnership with other charities " +"across\n" +" the UK." +msgstr "" + +#: templates/web/default/open311/index.html:23 +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." + +#: templates/web/default/auth/token.html:21 +#: templates/web/default/email_sent.html:22 +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." + +#: templates/web/default/questionnaire/index.html:51 +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." + +#: perllib/FixMyStreet/App/Controller/Reports.pm:46 +#: perllib/FixMyStreet/App/Controller/Reports.pm:73 +msgid "The error was: %s" +msgstr "Feilen var: %s" + +#: templates/web/default/open311/index.html:19 +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." + +#: perllib/FixMyStreet/Geocode/OSM.pm:99 +msgid "" +"The following information about the nearest road might be inaccurate or " +"irrelevant, if the problem is close to several roads or close to a road " +"without a name registered in OpenStreetMap." +msgstr "" +"Følgjande informasjon om næraste veg kan vera unøyaktig eller irrelevant, " +"viss problemet er nær fleire vegar eller nær ein veg utan namn registrert i " +"OpenStreetmap." + +#: db/alert_types.pl:19 db/alert_types.pl:23 db/alert_types.pl:27 +#: db/alert_types.pl:31 +msgid "The latest local problems reported by users" +msgstr "Dei siste lokale problema rapportert av brukarar" + +#: db/alert_types_eha.pl:13 +msgid "The latest local reports reported by users" +msgstr "Dei siste lokale rapportane rapportert av brukarar" + +#: db/alert_types.pl:35 +msgid "The latest problems for {{COUNCIL}} reported by users" +msgstr "Dei siste problema for {{COUNCIL}} rapportert av brukarar" + +#: db/alert_types.pl:39 +msgid "" +"The latest problems for {{COUNCIL}} within {{WARD}} ward reported by users" +msgstr "" +"Dei siste problema for {{COUNCIL}} innanfor {{WARD}} bydel rapportert av " +"brukarar" + +#: db/alert_types.pl:11 +msgid "The latest problems reported by users" +msgstr "Dei siste problema rapportert av brukarar" + +#: db/alert_types.pl:15 +msgid "The latest problems reported fixed by users" +msgstr "Dei siste problema rapportert fiksa av brukarar" + +#: db/alert_types.pl:43 +msgid "The latest problems within {{NAME}}'s boundary reported by users" +msgstr "Dei siste problema innanfor grensa til {{NAME}} rapportert av brukarar" + +#: db/alert_types_eha.pl:9 +msgid "The latest properties reported back to use by users" +msgstr "Dei siste eigedomane rapportert tilbake i bruk av brukarar" + +#: db/alert_types_eha.pl:20 +msgid "The latest reports for {{COUNCIL}} reported by users" +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" + +#: db/alert_types_eha.pl:28 +msgid "The latest reports within {{NAME}}'s boundary reported by users" +msgstr "" +"Dei siste rapportane innanfor grensa til {{NAME}} rapportert av brukarar" + +#: templates/web/default/auth/change_password.html:12 +#: templates/web/default/auth/change_password.html:16 +msgid "The passwords do not match" +msgstr "Passorda er ikkje like" + +#: templates/web/default/errors/page_error_404_not_found.html:10 +#: templates/web/default/errors/page_error_404_not_found.html:12 +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 +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 +msgid "The simplest alert is our geographic one:" +msgstr "Den enklaste meldinga er den geografiske:" + +#: 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 +msgid "" +"The subject and details of the problem will be public, plus your name if you " +"give us permission." +msgstr "" +"Tittelen og detaljane for problemet vil verta offentlege, pluss namnet ditt\n" +"viss du gjev oss lov til det." + +#: bin/send-reports:78 +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" + +#: perllib/FixMyStreet/App/Controller/Reports.pm:72 +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." + +#: 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." +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 +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." + +#: perllib/FixMyStreet/App/Controller/Report/Update.pm:214 +msgid "There was a problem with your update. Please try again." +msgstr "Det var problem med oppdateringa di. Ver venleg og prøv igjen." + +#: perllib/FixMyStreet/App/Controller/Contact.pm:117 +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 +msgid "There were problems with your update. Please see below." +msgstr "Det var problem med oppdateringa di. Ver venleg og sjÃ¥ under." + +#: templates/web/default/open311/index.html:10 +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." + +#: bin/send-reports:185 +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." + +#: bin/send-reports:188 +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." + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:761 +msgid "This information is required" +msgstr "Denne informasjonen er pÃ¥kravd" + +#: templates/web/default/debug_header.html:3 +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." + +#: templates/web/default/reports/council.html:65 +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 +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/emptyhomes/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." + +#: perllib/FixMyStreet/Cobrand/Default.pm:926 +msgid "This problem has been closed" +msgstr "Dette problemet er lukka" + +#: perllib/FixMyStreet/Cobrand/Default.pm:922 +#: perllib/FixMyStreet/Cobrand/EmptyHomes.pm:117 +#: templates/web/default/report/display.html:101 +msgid "This problem has been fixed" +msgstr "Dette problemet er løyst" + +#: templates/web/default/report/display.html:96 +msgid "This problem has not been fixed" +msgstr "Dette problemet har ikkje vorte løyst" + +#: perllib/FixMyStreet/Cobrand/Default.pm:931 +msgid "This problem is in progress" +msgstr "Dette problemet er under arbeid" + +#: perllib/FixMyStreet/Cobrand/Default.pm:918 +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 +msgid "This report is currently marked as closed." +msgstr "Denne rapporten er for tida markert som lukka." + +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:77 +msgid "This report is currently marked as fixed." +msgstr "Denne rapporten er for tida markert som fiksa." + +#: perllib/FixMyStreet/DB/ResultSet/AlertType.pm:81 +msgid "This report is currently marked as open." +msgstr "Denne rapporten er for tida markert som open." + +#: bin/send-reports:71 +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." + +#: perllib/FixMyStreet/App/Controller/Admin.pm:979 +#: templates/web/default/admin/timeline.html:1 +msgid "Timeline" +msgstr "Tidslinje" + +#: templates/web/default/admin/list_flagged.html:10 +#: templates/web/default/admin/search_reports.html:13 +msgid "Title" +msgstr "Tittel" + +#: templates/web/default/around/display_location.html:70 +msgid "" +"To <strong>report a problem</strong>, simply click on the map at the correct " +"location." +msgstr "" +"For Ã¥ <strong>rapportera eit problem</strong>, klikk pÃ¥ kartet pÃ¥ riktig " +"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:" + +#: bin/send-reports:77 +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" + +#: templates/web/default/admin/index.html:36 +#: templates/web/default/admin/questionnaire.html:24 +#: templates/web/default/admin/stats.html:24 +#: templates/web/default/admin/stats.html:43 +msgid "Total" +msgstr "Totalt" + +#: perllib/FixMyStreet/App/Controller/Reports.pm:45 +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." + +#: templates/web/default/admin/report_edit.html:22 +#: templates/web/default/admin/report_edit.html:25 +#: templates/web/default/admin/update_edit.html:19 +msgid "Unconfirmed" +msgstr "Ikkje stadfesta" + +#: perllib/FixMyStreet/App/Controller/Rss.pm:163 +msgid "Unknown alert type" +msgstr "Ukjend varsel-type" + +#: perllib/FixMyStreet/App/Controller/Report.pm:70 +msgid "Unknown problem ID" +msgstr "Ukjend problem-ID" + +#: 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 +msgid "Update below added anonymously at %s" +msgstr "Oppdateringa under vart lagt inn anonymt %s" + +#: templates/web/default/contact/index.html:23 +msgid "Update below added by %s at %s" +msgstr "Oppdateringa under vart lagt til av %s %s" + +#: templates/web/default/admin/index.html:30 +msgid "Update breakdown by state" +msgstr "Tilstandsfordeling for oppdateringar" + +#: db/alert_types.pl:7 +msgid "Update by {{name}}" +msgstr "Oppdatert av {{name}}" + +#: templates/web/default/admin/update_edit.html:33 +msgid "Update changed problem state to %s" +msgstr "Ei oppdatering endra problemstatusen til %s" + +#: templates/web/default/admin/update_edit.html:35 +msgid "Update marked problem as fixed" +msgstr "Ei oppdatering markerte dette problemet som fiksa." + +#: templates/web/default/admin/update_edit.html:37 +msgid "Update reopened problem" +msgstr "Ei oppdatering gjenopna problemet" + +#: templates/web/default/admin/council_contacts.html:53 +msgid "Update statuses" +msgstr "Oppdater tilstanden" + +#: templates/web/default/report/display.html:77 +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 +msgid "Updated!" +msgstr "Oppdatert!" + +#: templates/web/default/admin/list_updates.html:1 +#: templates/web/default/report/updates.html:4 +msgid "Updates" +msgstr "Oppdateringar" + +#: db/alert_types.pl:5 db/alert_types.pl:6 +msgid "Updates on {{title}}" +msgstr "Oppdateringar av {{title}}" + +#: templates/web/default/report/display.html +#: templates/web/default/report/display.html:7 +msgid "Updates to this problem, FixMyStreet" +msgstr "Oppdateringar til dette problemet, FiksGataMi" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:1137 +msgid "User flag removed" +msgstr "Brukarflagg fjerna" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:1109 +msgid "User flagged" +msgstr "Brukar flagga" + +#: templates/web/default/admin/list_flagged.html:30 +msgid "Users" +msgstr "Brukarar" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:304 +#: perllib/FixMyStreet/App/Controller/Admin.pm:334 +msgid "Values updated" +msgstr "Verdi oppdatert" + +#: templates/web/default/admin/report_edit.html:12 +#: templates/web/default/admin/update_edit.html:12 +msgid "View report on site" +msgstr "SjÃ¥ rapport pÃ¥ nettstaden" + +#: templates/web/emptyhomes/tokens/confirm_problem.html:39 +msgid "View your report" +msgstr "Vis rapporten din" + +#: templates/web/default/around/display_location.html +#: templates/web/default/around/display_location.html:33 +msgid "Viewing a location" +msgstr "Ser pÃ¥ ein stad" + +#: templates/web/default/report/display.html +msgid "Viewing a problem" +msgstr "Ser pÃ¥ eit problem" + +#: templates/web/default/reports/council.html:22 +msgid "Wards of this council" +msgstr "Bydelar innanfor denne administrasjonen" + +#: perllib/FixMyStreet/Cobrand/Default.pm:521 +#: perllib/FixMyStreet/Geocode/Bing.pm:47 +#: 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 +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." + +#: templates/web/default/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." + +#: templates/web/emptyhomes/tokens/confirm_problem.html:18 +#: templates/web/emptyhomes/tokens/confirm_problem.html:20 +msgid "" +"We may contact you periodically to ask if anything has changed with the " +"property you reported." +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 +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 "" +"Vi innser at %s kan vera ansvarleg for dette problemet, men vi manglar for " +"tida kontaktinformasjon for dei. Viss du veit om ei eigna kontaktadresse, ta " +"kontakt med oss." + +#: templates/web/default/index.html:46 +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 +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." + +#: 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>." + +#: 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>:" + +#: templates/web/default/admin/council_contacts.html:32 +#: templates/web/default/admin/council_edit.html:41 +msgid "When edited" +msgstr "NÃ¥r redigert" + +#: templates/web/default/admin/list_flagged.html:19 +#: templates/web/default/admin/search_reports.html:22 +msgid "When sent" +msgstr "NÃ¥r sendt" + +#: perllib/FixMyStreet/App/Controller/Report/New.pm:523 +msgid "Whole block of empty flats" +msgstr "Heil blokk med tomme leilegheiter" + +#: templates/web/default/open311/index.html:25 +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>." + +#: templates/web/default/questionnaire/index.html:104 +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?" + +#: templates/web/default/report/new/notes.html:8 +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." + +#: 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_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 +msgid "Yes" +msgstr "Ja" + +#: templates/web/default/contact/index.html:37 +msgid "" +"You are reporting the following problem report for being abusive, containing " +"personal information, or similar:" +msgstr "" +"Du rapporterer at følgjande problem er støytande, inneheld personleg " +"informasjon eller liknande:" + +#: templates/web/default/contact/index.html:15 +msgid "" +"You are reporting the following update for being abusive, containing " +"personal information, or similar:" +msgstr "" +"Du rapporterer at følgjande oppdatering er støytande, inneheld personleg " +"informasjon, eller liknande:" + +#: templates/web/default/reports/council.html:71 +msgid "" +"You can <a href=\"%s\">view all reports for the council</a> or <a href=\"/" +"reports\">show all councils</a>." +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 +msgid "You can <a href=\"/reports\">show all councils</a>." +msgstr "Du kan <a href=\"/reports/\">sjÃ¥ alle administrasjonar</a>." + +#: 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 +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 "" +"Du kan hjelpa oss ved Ã¥ finna ein kontakt-e-post for lokale problem i %s, og " +"senda han via e-post til oss pÃ¥ <a href='mailto:%s'>%s</a>." + +#: perllib/FixMyStreet/App/Controller/Questionnaire.pm:38 +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" + +#: templates/web/default/questionnaire/index.html:94 +#: templates/web/default/report/new/fill_in_details_form.html:93 +msgid "" +"You have already attached a photo to this report, attaching another one will " +"replace it." +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 +msgid "" +"You have already attached a photo to this update, attaching another one will " +"replace it." +msgstr "" +"Du har allereie lagt ved eit bilete til denne oppdateringa. Ã… leggja ved eit " +"anna vil byta ut dette." + +#: templates/web/default/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 +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. " +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." +msgstr "Du har no stadfesta varselet ditt." + +#: templates/web/default/tokens/confirm_problem.html:6 +#: templates/web/default/tokens/confirm_problem.html:7 +msgid "You have successfully confirmed your problem" +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>." + +#: templates/web/default/tokens/confirm_alert.html:11 +msgid "You have successfully created your alert." +msgstr "Du har oppretta varselet ditt." + +#: templates/web/default/tokens/confirm_alert.html:9 +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/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:" + +#: templates/web/default/email_sent.html:26 +msgid "" +"You must now click the link in the email we've just sent you — if you " +"do not, %s." +msgstr "" +"Du mÃ¥ no opna lenkja i e-posten vi akkurat sende deg — dersom du ikkje " +"gjer det, %s" + +#: templates/web/default/admin/report_edit.html:35 +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 +msgid "Your Reports" +msgstr "Rapportane dine" + +#: 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/report/new/fill_in_details_form.html:124 +msgid "Your email:" +msgstr "E-posten din" + +#: 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 +msgid "Your name:" +msgstr "Namnet ditt:" + +#: templates/web/default/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/reading/footer.html:7 +msgid "Your reports" +msgstr "Oppdateringane dine" + +#: templates/web/default/my/my.html:45 +msgid "Your updates" +msgstr "Oppdateringane dine" + +#: templates/web/default/contact/index.html:76 +msgid "Your email:" +msgstr "E-posten din:" + +#: templates/web/default/admin/timeline.html:6 +msgid "by %s" +msgstr "av %s" + +#: templates/web/default/reports/council.html:6 +#: templates/web/default/reports/council.html:7 +msgid "council" +msgstr "administrasjon" + +#: templates/web/default/admin/report_edit.html:15 +msgid "didn't use map" +msgstr "brukte ikkje kart" + +#: templates/web/default/admin/index.html:15 +msgid "from %d different users" +msgstr "frÃ¥ %d ulike brukarar" + +#: perllib/Utils.pm:248 +msgid "less than a minute" +msgstr "mindre enn eitt minutt" + +#: templates/web/default/report/updates.html:18 +msgid "marked as %s" +msgstr "markert som %s" + +#: templates/web/default/report/updates.html:16 +msgid "marked as fixed" +msgstr "markert som løyst" + +#: perllib/FixMyStreet/App/Controller/Admin.pm:109 +#: templates/web/default/admin/questionnaire.html:15 +#: templates/web/default/admin/questionnaire.html:16 +msgid "n/a" +msgstr "i/t" + +#: templates/web/default/alert/list.html:116 +msgid "or" +msgstr "eller" + +#: templates/web/default/admin/report_edit.html:15 +msgid "originally entered" +msgstr "søkte etter" + +#: templates/web/default/admin/report_edit.html:16 +msgid "other areas:" +msgstr "andre omrÃ¥de:" + +#: templates/web/default/report/updates.html:17 +msgid "reopened" +msgstr "opna pÃ¥ nytt" + +#: templates/web/default/report/new/fill_in_details_form.html:11 +#: templates/web/default/report/new/fill_in_details_form.html:14 +msgid "the local council" +msgstr "den lokale administrasjonen" + +#: perllib/FixMyStreet/DB/Result/Problem.pm:520 +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 +msgid "this type of local problem" +msgstr "denne typen lokalt problem" + +#: perllib/Utils.pm:222 +msgid "today" +msgstr "i dag" + +#: templates/web/default/admin/report_edit.html:15 +msgid "used map" +msgstr "brukte kart" + +#: templates/web/default/admin/update_edit.html:26 +msgid "user is from same council as problem - %d" +msgstr "brukaren er frÃ¥ same administrasjon som problemet – %d" + +#: templates/web/default/admin/update_edit.html:29 +msgid "user is problem owner" +msgstr "brukaren er eigaren av problemet" + +#: templates/web/default/reports/council.html +#: templates/web/default/reports/council.html:3 +msgid "ward" +msgstr "bydel" + +#: templates/web/default/email_sent.html:15 +#: templates/web/default/email_sent.html:3 +msgid "we'll hang on to your alert while you're checking your email." +msgstr "vi tek vare pÃ¥ varselet ditt medan du sjekkar e-posten din." + +#: templates/web/default/email_sent.html:3 +#: templates/web/default/email_sent.html:7 +msgid "we'll hang on to your problem report while you're checking your email." +msgstr "vi tek vare pÃ¥ rapporten din medan du sjekkar e-posten din." + +#: templates/web/default/email_sent.html:11 +#: templates/web/default/email_sent.html:3 +msgid "we'll hang on to your update while you're checking your email." +msgstr "vi tek vare pÃ¥ oppdateringa di medan du sjekkar e-posten din." + +#: templates/web/default/email_sent.html:14 +#: templates/web/default/email_sent.html:3 +msgid "your alert will not be activated" +msgstr "varselet ditt vil ikkje aktiverast" + +#: templates/web/default/email_sent.html:3 +#: templates/web/default/email_sent.html:6 +msgid "your problem will not be posted" +msgstr "vil problemet ditt ikkje publiserast" + +#: templates/web/default/email_sent.html:10 +#: templates/web/default/email_sent.html:3 +msgid "your update will not be posted" +msgstr "oppdateringa di vil ikkje publiserast" + +#: templates/web/default/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 +#, 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." + +#: templates/web/default/front/stats.html:12 +#, perl-format +msgid "<big>%s</big> report in past week" +msgid_plural "<big>%s</big> reports in past week" +msgstr[0] "<big>%s</big> rapport siste veke" +msgstr[1] "<big>%s</big> rapportar siste veke" + +#: templates/web/default/front/stats.html:23 +#, perl-format +msgid "<big>%s</big> fixed in past month" +msgid_plural "<big>%s</big> fixed in past month" +msgstr[0] "<big>%s</big> løyst siste mÃ¥nad" +msgstr[1] "<big>%s</big> løyst siste mÃ¥nad" + +#: templates/web/default/front/stats.html:29 +#, perl-format +msgid "<big>%s</big> update on reports" +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 +#, 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." +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." diff --git a/notes/INSTALL b/notes/INSTALL index 261865700..7287aa3d3 100644 --- a/notes/INSTALL +++ b/notes/INSTALL @@ -14,9 +14,9 @@ conf/packages is a list of Debian packages that are needed, so install them if you're on Debian/Ubuntu. You'll also probably need to install lots of CPAN modules, see the section on that below. -FixMyStreet expects a PostgreSQL database, so set one of them up - the schema -is available in db/schema.sql. You will also need to load in db/alert_types.sql -to populate the alert types table. +FixMyStreet expects a PostgreSQL database with the postGIS extension, so set one +of them up - the schema is available in db/schema.sql. You will also need to load +in db/alert_types.sql to populate the alert types table. Copy conf/general-example to conf/general and set it up appropriately: * provide the relevant database connection details @@ -65,12 +65,6 @@ If you need to add a module do it using: and it will update all the relevant bits. -Currently, you probably need to add EncodedColumn manually: - - module-manage.pl add DBIx::Class::EncodedColumn - -...because it's explicitly overridden in the code, which is fooling the installer. - If a module won't build (Test::WWW::Mechanize and HTTP::Server::Simple fail tests for me but the failures are not pertinent) then the module-manage script will bail out. Look in ~/.cpanm/build_log to see what went wrong. You can force diff --git a/perl-external/modules.txt b/perl-external/modules.txt index f2e6a92ad..5ad9b477c 100644 --- a/perl-external/modules.txt +++ b/perl-external/modules.txt @@ -21,6 +21,7 @@ Config::General Crypt::Eksblowfish::Bcrypt DBIx::Class DBIx::Class::EncodedColumn +DBIx::Class::EncodedColumn::Crypt::Eksblowfish::Bcrypt DBIx::Class::FilterColumn DBIx::Class::Schema::Loader DBIx::Class::Storage::DBI diff --git a/perllib/FixMyStreet.pm b/perllib/FixMyStreet.pm index d63f708d2..2d8f462d5 100644 --- a/perllib/FixMyStreet.pm +++ b/perllib/FixMyStreet.pm @@ -107,15 +107,15 @@ sub dbic_connect_info { my $class = shift; my $config = $class->config; - my $dsn = "dbi:Pg:dbname=" . $config->{BCI_DB_NAME}; - $dsn .= ";host=$config->{BCI_DB_HOST}" - if $config->{BCI_DB_HOST}; - $dsn .= ";port=$config->{BCI_DB_PORT}" - if $config->{BCI_DB_PORT}; + my $dsn = "dbi:Pg:dbname=" . $config->{FMS_DB_NAME}; + $dsn .= ";host=$config->{FMS_DB_HOST}" + if $config->{FMS_DB_HOST}; + $dsn .= ";port=$config->{FMS_DB_PORT}" + if $config->{FMS_DB_PORT}; $dsn .= ";sslmode=allow"; - my $user = $config->{BCI_DB_USER} || undef; - my $password = $config->{BCI_DB_PASS} || undef; + my $user = $config->{FMS_DB_USER} || undef; + my $password = $config->{FMS_DB_PASS} || undef; my $dbi_args = { AutoCommit => 1, @@ -146,11 +146,11 @@ sub configure_mysociety_dbhandle { my $config = $class->config; mySociety::DBHandle::configure( - Name => $config->{BCI_DB_NAME}, - User => $config->{BCI_DB_USER}, - Password => $config->{BCI_DB_PASS}, - Host => $config->{BCI_DB_HOST} || undef, - Port => $config->{BCI_DB_PORT} || undef, + Name => $config->{FMS_DB_NAME}, + User => $config->{FMS_DB_USER}, + Password => $config->{FMS_DB_PASS}, + Host => $config->{FMS_DB_HOST} || undef, + Port => $config->{FMS_DB_PORT} || undef, ); } diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index beea8bb11..21552a066 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -178,7 +178,7 @@ sub setup_request { $c->model('DB::Problem')->set_restriction( $cobrand->site_restriction() ); - Memcached::set_namespace( FixMyStreet->config('BCI_DB_NAME') . ":" ); + Memcached::set_namespace( FixMyStreet->config('FMS_DB_NAME') . ":" ); my $map = $host =~ /^osm\./ ? 'OSM' : $c->req->param('map_override'); #if ($c->sessionid) { diff --git a/perllib/FixMyStreet/App/Controller/Rss.pm b/perllib/FixMyStreet/App/Controller/Rss.pm index 7fddbed97..822780b81 100755 --- a/perllib/FixMyStreet/App/Controller/Rss.pm +++ b/perllib/FixMyStreet/App/Controller/Rss.pm @@ -251,6 +251,12 @@ sub add_row : Private { (my $link = $alert_type->item_link) =~ s/{{(.*?)}}/$row->{$1}/g; (my $desc = _($alert_type->item_description)) =~ s/{{(.*?)}}/$row->{$1}/g; my $url = $c->uri_for( $link ); + + if ( $row->{postcode} ) { + my $pc = $c->cobrand->format_postcode( $row->{postcode} ); + $title .= ", $pc"; + } + my %item = ( title => ent($title), link => $url, @@ -266,8 +272,8 @@ sub add_row : Private { } if ( $row->{used_map} ) { - #my $address = $c->cobrand->find_closest_address_for_rss( $row->{latitude}, $row->{longitude} ); - #$item{description} .= ent("\n<br>$address"); + my $address = $c->cobrand->find_closest_address_for_rss( $row->{latitude}, $row->{longitude}, $row ); + $item{description} .= ent("\n<br>$address") if $address; } my $recipient_name = $c->cobrand->contact_name; diff --git a/perllib/FixMyStreet/App/View/Web.pm b/perllib/FixMyStreet/App/View/Web.pm index 43d46ae25..755f1e405 100644 --- a/perllib/FixMyStreet/App/View/Web.pm +++ b/perllib/FixMyStreet/App/View/Web.pm @@ -168,7 +168,7 @@ sub html_filter { my %version_hash; sub version { my ( $self, $c, $file ) = @_; - unless ($version_hash{$file}) { + unless ($version_hash{$file} && !FixMyStreet->config('STAGING_SITE')) { my $path = FixMyStreet->path_to('web', $file); $version_hash{$file} = ( stat( $path ) )[9]; } diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index 2900497c4..b5a1cd8d3 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -545,10 +545,15 @@ Used by send-reports to attach nearest things to the bottom of the report =cut sub find_closest { - my ( $self, $latitude, $longitude ) = @_; + my ( $self, $latitude, $longitude, $problem ) = @_; my $str = ''; if ( my $j = FixMyStreet::Geocode::Bing::reverse( $latitude, $longitude ) ) { + # cache the bing results for use in alerts + if ( $problem ) { + $problem->geocode( $j ); + $problem->update; + } if ($j->{resourceSets}[0]{resources}[0]{name}) { $str .= sprintf(_("Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s"), $j->{resourceSets}[0]{resources}[0]{name}) . "\n\n"; @@ -576,23 +581,55 @@ Used by rss feeds to provide a bit more context =cut sub find_closest_address_for_rss { - my ( $self, $latitude, $longitude ) = @_; + my ( $self, $latitude, $longitude, $problem ) = @_; my $str = ''; - if ( my $j = FixMyStreet::Geocode::Bing::reverse( $latitude, $longitude, 1 ) ) { - if ($j->{resourceSets}[0]{resources}[0]{name}) { - my $address = $j->{resourceSets}[0]{resources}[0]{address}; - my @address; - push @address, $address->{addressLine} if $address->{addressLine} ne 'Street'; - push @address, $address->{locality}; - $str .= sprintf(_("Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s"), - join( ', ', @address ) ); - } + my $j; + if ( $problem && ref($problem) =~ /FixMyStreet/ && $problem->can( 'geocode' ) ) { + $j = $problem->geocode; + } else { + $problem = FixMyStreet::App->model('DB::Problem')->find( { id => $problem->{id} } ); + $j = $problem->geocode; + } + + # if we've not cached it then we don't want to look it up in order to avoid + # hammering the bing api + # if ( !$j ) { + # $j = FixMyStreet::Geocode::Bing::reverse( $latitude, $longitude, 1 ); + + # $problem->geocode( $j ); + # $problem->update; + # } + + if ($j && $j->{resourceSets}[0]{resources}[0]{name}) { + my $address = $j->{resourceSets}[0]{resources}[0]{address}; + my @address; + push @address, $address->{addressLine} if $address->{addressLine} and $address->{addressLine} !~ /^Street$/i; + push @address, $address->{locality} if $address->{locality}; + $str .= sprintf(_("Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s"), + join( ', ', @address ) ) if @address; } return $str; } +=head2 format_postcode + +Takes a postcode string and if it looks like a valid postcode then transforms it +into the canonical postcode. + +=cut + +sub format_postcode { + my ( $self, $postcode ) = @_; + + if ( $postcode ) { + $postcode = mySociety::PostcodeUtil::canonicalise_postcode($postcode) + if $postcode && mySociety::PostcodeUtil::is_valid_postcode($postcode); + } + + return $postcode; +} =head2 council_check Paramters are COUNCILS, QUERY, CONTEXT. Return a boolean indicating whether diff --git a/perllib/FixMyStreet/DB/Result/Problem.pm b/perllib/FixMyStreet/DB/Result/Problem.pm index 9ff19efb6..7ceabf1da 100644 --- a/perllib/FixMyStreet/DB/Result/Problem.pm +++ b/perllib/FixMyStreet/DB/Result/Problem.pm @@ -82,6 +82,8 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "flagged", { data_type => "boolean", default_value => \"false", is_nullable => 0 }, + "geocode", + { data_type => "bytea", is_nullable => 1 }, ); __PACKAGE__->set_primary_key("id"); __PACKAGE__->has_many( @@ -104,8 +106,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-07-29 16:26:23 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ifvx9FOlbui66hPyzNIAPA +# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-09-19 14:38:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nq8Ufn/SEoDGSrrGlHIxag # Add fake relationship to stored procedure table __PACKAGE__->has_one( @@ -134,6 +136,27 @@ __PACKAGE__->filter_column( }, } ); + +__PACKAGE__->filter_column( + geocode => { + filter_from_storage => sub { + my $self = shift; + my $ser = shift; + return undef unless defined $ser; + my $h = new IO::String($ser); + return RABX::wire_rd($h); + }, + filter_to_storage => sub { + my $self = shift; + my $data = shift; + my $ser = ''; + my $h = new IO::String($ser); + RABX::wire_wr( $data, $h ); + return $ser; + }, + } +); + use DateTime::TimeZone; use Image::Size; use Moose; diff --git a/perllib/FixMyStreet/DB/ResultSet/AlertType.pm b/perllib/FixMyStreet/DB/ResultSet/AlertType.pm index c1a5d65c9..32654e534 100644 --- a/perllib/FixMyStreet/DB/ResultSet/AlertType.pm +++ b/perllib/FixMyStreet/DB/ResultSet/AlertType.pm @@ -9,6 +9,8 @@ use mySociety::EmailUtil; use mySociety::Gaze; use mySociety::Locale; use mySociety::MaPit; +use IO::String; +use RABX; # Child must have confirmed, id, email, state(!) columns # If parent/child, child table must also have name and text @@ -82,12 +84,21 @@ sub email_alerts ($) { } my $url = $cobrand->base_url_for_emails( $row->{alert_cobrand_data} ); + # this is currently only for new_updates if ($row->{item_text}) { $data{problem_url} = $url . "/report/" . $row->{id}; $data{data} .= $row->{item_name} . ' : ' if $row->{item_name} && !$row->{item_anonymous}; $data{data} .= $row->{item_text} . "\n\n------\n\n"; + # this is ward and council problems } else { - $data{data} .= $url . "/report/" . $row->{id} . " - $row->{title}\n\n"; + my $postcode = $cobrand->format_postcode( $row->{postcode} ); + $postcode = ", $postcode" if $postcode; + $data{data} .= $url . "/report/" . $row->{id} . " - $row->{title}$postcode\n\n"; + if ( exists $row->{geocode} && $row->{geocode} && $ref =~ /ward|council/ ) { + my $nearest_st = _get_address_from_gecode( $row->{geocode} ); + $data{data} .= $nearest_st if $nearest_st; + } + $data{data} .= "\n\n------\n\n"; } if (!$data{alert_user_id}) { %data = (%data, %$row); @@ -134,7 +145,7 @@ sub email_alerts ($) { }; my $states = "'" . join( "', '", FixMyStreet::DB::Result::Problem::visible_states() ) . "'"; my %data = ( template => $template, data => '', alert_id => $alert->id, alert_email => $alert->user->email, lang => $alert->lang, cobrand => $alert->cobrand, cobrand_data => $alert->cobrand_data ); - my $q = "select problem.id, problem.title from problem_find_nearby(?, ?, ?) as nearby, problem, users + my $q = "select problem.id, problem.postcode, problem.geocode, problem.title from problem_find_nearby(?, ?, ?) as nearby, problem, users where nearby.problem_id = problem.id and problem.user_id = users.id and problem.state in ($states) @@ -150,7 +161,14 @@ sub email_alerts ($) { alert_id => $alert->id, parameter => $row->{id}, } ); - $data{data} .= $url . "/report/" . $row->{id} . " - $row->{title}\n\n"; + my $postcode = $cobrand->format_postcode( $row->{postcode} ); + $postcode = ", $postcode" if $postcode; + $data{data} .= $url . "/report/" . $row->{id} . " - $row->{title}$postcode\n\n"; + if ( exists $row->{geocode} && $row->{geocode} ) { + my $nearest_st = _get_address_from_gecode( $row->{geocode} ); + $data{data} .= $nearest_st if $nearest_st; + } + $data{data} .= "\n\n------\n\n"; } _send_aggregated_alert_email(%data) if $data{data}; } @@ -210,4 +228,23 @@ sub _send_aggregated_alert_email(%) { } } +sub _get_address_from_gecode { + my $geocode = shift; + + return '' unless defined $geocode; + my $h = new IO::String($geocode); + my $data = RABX::wire_rd($h); + + my $str = ''; + + my $address = $data->{resourceSets}[0]{resources}[0]{address}; + my @address; + push @address, $address->{addressLine} if $address->{addressLine} && $address->{addressLine} ne 'Street'; + push @address, $address->{locality} if $address->{locality}; + $str .= sprintf(_("Nearest road to the pin placed on the map (automatically generated by Bing Maps): %s\n\n"), + join( ', ', @address ) ) if @address; + + return $str; +} + 1; diff --git a/t/app/controller/alert_new.t b/t/app/controller/alert_new.t index 580a5ad9a..5ea73625a 100644 --- a/t/app/controller/alert_new.t +++ b/t/app/controller/alert_new.t @@ -452,8 +452,9 @@ subtest "Test normal alert signups and that alerts are sent" => sub { $count++ if $_->body =~ /The following updates have been left on this problem:/; $count++ if $_->body =~ /The following new problems have been reported to City of\s*Edinburgh Council:/; $count++ if $_->body =~ /The following nearby problems have been added:/; + $count++ if $_->body =~ / -\s+Testing, EH1 1BB/; } - is $count, 3, 'Three emails with the right things in them'; + is $count, 5, 'Five emails with the right things in them'; my $email = $emails[0]; like $email->body, qr/Other User/, 'Update name given'; diff --git a/t/app/controller/contact.t b/t/app/controller/contact.t index 86b845eb3..970241d12 100644 --- a/t/app/controller/contact.t +++ b/t/app/controller/contact.t @@ -21,7 +21,7 @@ for my $test ( postcode => 'EH99 1SP', confirmed => '2011-05-04 10:44:28.145168', anonymous => 0, - meta => 'Reported by A User at 10:44, Wednesday 4 May 2011', + meta => 'Reported by A User at 10:44, Wed 4 May 2011', main => 1, }, { @@ -32,7 +32,7 @@ for my $test ( postcode => 'EH99 1SP', confirmed => '2011-05-03 13:24:28.145168', anonymous => 1, - meta => 'Reported anonymously at 13:24, Tuesday 3 May 2011', + meta => 'Reported anonymously at 13:24, Tue 3 May 2011', }, { name => 'A User', @@ -42,7 +42,7 @@ for my $test ( postcode => 'EH99 1SP', confirmed => '2011-05-03 13:24:28.145168', anonymous => 1, - meta => 'Reported anonymously at 13:24, Tuesday 3 May 2011', + meta => 'Reported anonymously at 13:24, Tue 3 May 2011', update => { name => 'Different User', email => 'commenter@example.com', diff --git a/t/app/controller/report_display.t b/t/app/controller/report_display.t index c7455a99b..548580fe1 100644 --- a/t/app/controller/report_display.t +++ b/t/app/controller/report_display.t @@ -103,7 +103,7 @@ subtest "test a good report" => sub { is $mech->uri->path, "/report/$report_id", "at /report/$report_id"; is $mech->extract_problem_title, 'Test 2', 'problem title'; is $mech->extract_problem_meta, - 'Reported by Test User at 15:47, Saturday 16 April 2011', + 'Reported by Test User at 15:47, Sat 16 April 2011', 'correct problem meta information'; $mech->content_contains('Test 2 Detail'); @@ -124,55 +124,55 @@ foreach my $meta ( anonymous => 'f', category => 'Other', service => '', - meta => 'Reported by Test User at 15:47, Saturday 16 April 2011' + meta => 'Reported by Test User at 15:47, Sat 16 April 2011' }, { anonymous => 'f', category => 'Roads', service => '', meta => -'Reported in the Roads category by Test User at 15:47, Saturday 16 April 2011' +'Reported in the Roads category by Test User at 15:47, Sat 16 April 2011' }, { anonymous => 'f', category => '', service => 'Transport service', meta => -'Reported by Transport service by Test User at 15:47, Saturday 16 April 2011' +'Reported by Transport service by Test User at 15:47, Sat 16 April 2011' }, { anonymous => 'f', category => 'Roads', service => 'Transport service', meta => -'Reported by Transport service in the Roads category by Test User at 15:47, Saturday 16 April 2011' +'Reported by Transport service in the Roads category by Test User at 15:47, Sat 16 April 2011' }, { anonymous => 't', category => 'Other', service => '', - meta => 'Reported anonymously at 15:47, Saturday 16 April 2011' + meta => 'Reported anonymously at 15:47, Sat 16 April 2011' }, { anonymous => 't', category => 'Roads', service => '', meta => -'Reported in the Roads category anonymously at 15:47, Saturday 16 April 2011' +'Reported in the Roads category anonymously at 15:47, Sat 16 April 2011' }, { anonymous => 't', category => '', service => 'Transport service', meta => -'Reported by Transport service anonymously at 15:47, Saturday 16 April 2011' +'Reported by Transport service anonymously at 15:47, Sat 16 April 2011' }, { anonymous => 't', category => 'Roads', service => 'Transport service', meta => -'Reported by Transport service in the Roads category anonymously at 15:47, Saturday 16 April 2011' +'Reported by Transport service in the Roads category anonymously at 15:47, Sat 16 April 2011' }, ) { diff --git a/t/app/controller/report_updates.t b/t/app/controller/report_updates.t index 5719b13e3..39cb5d6d8 100644 --- a/t/app/controller/report_updates.t +++ b/t/app/controller/report_updates.t @@ -81,7 +81,7 @@ for my $test ( anonymous => 'f', mark_fixed => 'false', mark_open => 'false', - meta => 'Posted by Other User at 15:47, Saturday 16 April 2011', + meta => 'Posted by Other User at 15:47, Sat 16 April 2011', }, { description => 'blank user, anon is false', @@ -89,7 +89,7 @@ for my $test ( anonymous => 'f', mark_fixed => 'false', mark_open => 'false', - meta => 'Posted anonymously at 15:47, Saturday 16 April 2011', + meta => 'Posted anonymously at 15:47, Sat 16 April 2011', }, { description => 'named user, anon is true', @@ -97,7 +97,7 @@ for my $test ( anonymous => 't', mark_fixed => 'false', mark_open => 'false', - meta => 'Posted anonymously at 15:47, Saturday 16 April 2011', + meta => 'Posted anonymously at 15:47, Sat 16 April 2011', }, { description => 'named user, anon is true, fixed', @@ -106,7 +106,7 @@ for my $test ( mark_fixed => 'true', mark_open => 'false', meta => -'Posted anonymously at 15:47, Saturday 16 April 2011, marked as fixed', +'Posted anonymously at 15:47, Sat 16 April 2011, marked as fixed', }, { description => 'named user, anon is true, reopened', @@ -114,7 +114,7 @@ for my $test ( anonymous => 't', mark_fixed => 'false', mark_open => 'true', - meta => 'Posted anonymously at 15:47, Saturday 16 April 2011, reopened', + meta => 'Posted anonymously at 15:47, Sat 16 April 2011, reopened', } ) { @@ -185,9 +185,9 @@ subtest "several updates shown in correct order" => sub { my $meta = $mech->extract_update_metas; is scalar @$meta, 3, 'number of updates'; - is $meta->[0], 'Posted by Other User at 12:23, Thursday 10 March 2011', 'first update'; - is $meta->[1], 'Posted by Main User at 12:23, Thursday 10 March 2011', 'second update'; - is $meta->[2], 'Posted anonymously at 08:12, Tuesday 15 March 2011, marked as fixed', 'third update'; + is $meta->[0], 'Posted by Other User at 12:23, Thu 10 March 2011', 'first update'; + is $meta->[1], 'Posted by Main User at 12:23, Thu 10 March 2011', 'second update'; + is $meta->[2], 'Posted anonymously at 08:12, Tue 15 March 2011, marked as fixed', 'third update'; }; for my $test ( diff --git a/t/app/controller/rss.t b/t/app/controller/rss.t new file mode 100644 index 000000000..c6ab20574 --- /dev/null +++ b/t/app/controller/rss.t @@ -0,0 +1,125 @@ +use strict; +use warnings; +use Test::More; + +use FixMyStreet::TestMech; + +my $mech = FixMyStreet::TestMech->new; + +my $dt = DateTime->new( + year => 2011, + month => 10, + day => 10 +); + +my $user1 = FixMyStreet::App->model('DB::User') + ->find_or_create( { email => 'reporter@example.com', name => 'Reporter User' } ); + +my $report = FixMyStreet::App->model('DB::Problem')->find_or_create( { + postcode => 'eh1 1BB', + council => '2651', + areas => ',11808,135007,14419,134935,2651,20728,', + category => 'Street lighting', + title => 'Testing', + detail => 'Testing Detail', + used_map => 1, + name => $user1->name, + anonymous => 0, + state => 'confirmed', + confirmed => $dt, + lastupdate => $dt, + whensent => $dt->clone->add( minutes => 5 ), + lang => 'en-gb', + service => '', + cobrand => 'default', + cobrand_data => '', + send_questionnaire => 1, + latitude => '55.951963', + longitude => '-3.189944', + user_id => $user1->id, +} ); + + +$mech->get_ok("/rss/pc/EH11BB/2"); +$mech->content_contains( "Testing, 10th October, EH1 1BB" ); +$mech->content_lacks( 'Nearest road to the pin' ); + +$report->geocode( +{ + 'traceId' => 'ae7c4880b70b423ebc8ab4d80961b3e9|LTSM001158|02.00.71.1600|LTSMSNVM002010, LTSMSNVM001477', + 'statusDescription' => 'OK', + 'brandLogoUri' => 'http://dev.virtualearth.net/Branding/logo_powered_by.png', + 'resourceSets' => [ + { + 'resources' => [ + { + 'geocodePoints' => [ + { + 'calculationMethod' => 'Interpolation', + 'coordinates' => [ + '55.9532357007265', + '-3.18906001746655' + ], + 'usageTypes' => [ + 'Display', + 'Route' + ], + 'type' => 'Point' + } + ], + 'entityType' => 'Address', + 'name' => '18 N Bridge, Edinburgh EH1 1', + 'point' => { + 'coordinates' => [ + '55.9532357007265', + '-3.18906001746655' + ], + 'type' => 'Point' + }, + 'bbox' => [ + '55.9493729831558', + '-3.19825819222605', + '55.9570984182972', + '-3.17986184270704' + ], + 'matchCodes' => [ + 'Good' + ], + 'address' => { + 'countryRegion' => 'United Kingdom', + 'adminDistrict2' => 'Edinburgh City', + 'adminDistrict' => 'Scotland', + 'addressLine' => '18 North Bridge', + 'formattedAddress' => '18 N Bridge, Edinburgh EH1 1', + 'postalCode' => 'EH1 1', + 'locality' => 'Edinburgh' + }, + 'confidence' => 'Medium', + '__type' => 'Location:http://schemas.microsoft.com/search/local/ws/rest/v1' + } + ], + 'estimatedTotal' => 1 + } + ], + 'copyright' => "Copyright \x{a9} 2011 Microsoft and its suppliers. All rights reserved. This API cannot be accessed and the content and any results may not be used, reproduced or transmitted in any manner without express written permission from Microsoft Corporation.", + 'statusCode' => 200, + 'authenticationResultCode' => 'ValidCredentials' + } +); +$report->postcode('eh11bb'); +$report->update(); + +$mech->get_ok("/rss/pc/EH11BB/2"); +$mech->content_contains( "Testing, 10th October, EH1 1BB" ); +$mech->content_contains( '18 North Bridge, Edinburgh' ); + +$report->postcode('Princes St, Edinburgh'); +$report->update(); + +$mech->get_ok("/rss/pc/EH11BB/2"); +$mech->content_contains( "Testing, 10th October, Princes St, Edinburgh" ); + +$report->delete(); +$user1->delete(); + +done_testing(); diff --git a/t/app/model/alert_type.t b/t/app/model/alert_type.t index c7bfe171c..6767d43fc 100644 --- a/t/app/model/alert_type.t +++ b/t/app/model/alert_type.t @@ -140,5 +140,214 @@ for my $test ( }; } +my $now = DateTime->now(); +$report->confirmed( $now->ymd . ' ' . $now->hms ); +$report->update(); + +my $council_alert = FixMyStreet::App->model('DB::Alert')->find_or_create( + { + user => $user2, + parameter => 2504, + parameter2 => 2504, + alert_type => 'council_problems', + whensubscribed => $dt->ymd . ' ' . $dt->hms, + confirmed => 1, + } +); + +for my $test ( + { + postcode => 'SW1A 1AA', + expected_postcode => 'SW1A 1AA', + }, + { + postcode => 'sw1a 1AA', + expected_postcode => 'SW1A 1AA', + }, + { + postcode => 'SW1A 1aa', + expected_postcode => 'SW1A 1AA', + }, + { + postcode => 'SW1A1AA', + expected_postcode => 'SW1A 1AA', + }, + { + postcode => 'Buckingham Gate', + expected_postcode => 'Buckingham Gate', + }, + { + postcode => 'Buckingham gate', + expected_postcode => 'Buckingham gate', + }, +) { + subtest "correct text for postcode $test->{postcode}" => sub { + $mech->clear_emails_ok; + + my $sent = FixMyStreet::App->model('DB::AlertSent')->search( + { + alert_id => $council_alert->id, + parameter => $report->id, + } + )->delete; + + $report->postcode( $test->{postcode} ); + $report->update; + + FixMyStreet::App->model('DB::AlertType')->email_alerts(); + + $mech->email_count_is( 1 ); + my $email = $mech->get_email; + my $pc = $test->{expected_postcode}; + (my $title = $report->title) =~ s/ /\\s+/; + my $body = $email->body; + + like $body, qr#report/$report_id - $title, $pc#, 'email contains expected postcode'; + }; +} + +$report->postcode( 'SW1A 1AA' ); +$report->update; + +$report->geocode( +{ + 'traceId' => 'ae7c4880b70b423ebc8ab4d80961b3e9|LTSM001158|02.00.71.1600|LTSMSNVM002010, LTSMSNVM001477', + 'statusDescription' => 'OK', + 'brandLogoUri' => 'http://dev.virtualearth.net/Branding/logo_powered_by.png', + 'resourceSets' => [ + { + 'resources' => [ + { + 'geocodePoints' => [ + { + 'calculationMethod' => 'Interpolation', + 'coordinates' => [ + '55.9532357007265', + '-3.18906001746655' + ], + 'usageTypes' => [ + 'Display', + 'Route' + ], + 'type' => 'Point' + } + ], + 'entityType' => 'Address', + 'name' => '18 N Bridge, Edinburgh EH1 1', + 'point' => { + 'coordinates' => [ + '55.9532357007265', + '-3.18906001746655' + ], + 'type' => 'Point' + }, + 'bbox' => [ + '55.9493729831558', + '-3.19825819222605', + '55.9570984182972', + '-3.17986184270704' + ], + 'matchCodes' => [ + 'Good' + ], + 'address' => { + 'countryRegion' => 'United Kingdom', + 'adminDistrict2' => 'Edinburgh City', + 'adminDistrict' => 'Scotland', + 'addressLine' => '18 North Bridge', + 'formattedAddress' => '18 N Bridge, Edinburgh EH1 1', + 'postalCode' => 'EH1 1', + 'locality' => 'Edinburgh' + }, + 'confidence' => 'Medium', + '__type' => 'Location:http://schemas.microsoft.com/search/local/ws/rest/v1' + } + ], + 'estimatedTotal' => 1 + } + ], + 'copyright' => "Copyright \x{a9} 2011 Microsoft and its suppliers. All rights reserved. This API cannot be accessed and the content and any results may not be used, reproduced or transmitted in any manner without express written permission from Microsoft Corporation.", + 'statusCode' => 200, + 'authenticationResultCode' => 'ValidCredentials' + } +); +$report->update(); + +foreach my $test ( + { + desc => 'all fields', + addressLine => '18 North Bridge', + locality => 'Edinburgh', + nearest => qr/18 North Bridge, Edinburgh/, + }, + { + desc => 'address with Street only', + addressLine => 'Street', + locality => 'Edinburgh', + nearest => qr/: Edinburgh/, + }, + { + desc => 'locality only', + addressLine => undef, + locality => 'Edinburgh', + nearest => qr/: Edinburgh/, + }, + { + desc => 'address only', + addressLine => '18 North Bridge', + locality => undef, + nearest => qr/: 18 North Bridge\n/, + }, + { + desc => 'no fields', + addressLine => undef, + locality => undef, + nearest => '', + }, + { + desc => 'no address', + no_address => 1, + nearest => '', + }, +) { + subtest "correct Nearest Road text with $test->{desc}" => sub { + $mech->clear_emails_ok; + + my $sent = FixMyStreet::App->model('DB::AlertSent')->search( + { + alert_id => $council_alert->id, + parameter => $report->id, + } + )->delete; + + my $g = $report->geocode; + if ( $test->{no_address} ) { + $g->{resourceSets}[0]{resources}[0]{address} = undef; + } else { + $g->{resourceSets}[0]{resources}[0]{address}->{addressLine} = $test->{addressLine}; + $g->{resourceSets}[0]{resources}[0]{address}->{locality} = $test->{locality}; + } + + # if we don't do this then it ignores the change + $report->geocode( undef ); + $report->geocode( $g ); + $report->update(); + + FixMyStreet::App->model('DB::AlertType')->email_alerts(); + + $mech->email_count_is( 1 ); + my $email = $mech->get_email; + my $body = $email->body; + + if ( $test->{nearest} ) { + like $body, $test->{nearest}, 'correct nearest line'; + } else { + unlike $body, qr/Nearest Road/, 'no nearest line'; + } + }; +} + +$report->comments->delete(); +$report->delete(); done_testing(); diff --git a/t/cobrand/closest.t b/t/cobrand/closest.t new file mode 100644 index 000000000..c7ba10cc4 --- /dev/null +++ b/t/cobrand/closest.t @@ -0,0 +1,78 @@ +use strict; +use warnings; + +use Test::More; + +use mySociety::Locale; +use FixMyStreet::App; + +use_ok 'FixMyStreet::Cobrand'; + +mySociety::Locale::gettext_domain( 'FixMyStreet' ); + +my $c = FixMyStreet::Cobrand::Default->new(); + +my $user = + FixMyStreet::App->model('DB::User') + ->find_or_create( { email => 'test@example.com', name => 'Test User' } ); +ok $user, "created test user"; + +my $dt = DateTime->new( + year => 2011, + month => 04, + day => 16, + hour => 15, + minute => 47, + second => 23 +); + +my $report = FixMyStreet::App->model('DB::Problem')->find_or_create( + { + postcode => 'SW1A 1AA', + council => '2504', + areas => ',105255,11806,11828,2247,2504,', + category => 'Other', + title => 'Test 2', + detail => 'Test 2 Detail', + used_map => 't', + name => 'Test User', + anonymous => 'f', + state => 'closed', + confirmed => $dt->ymd . ' ' . $dt->hms, + lang => 'en-gb', + service => '', + cobrand => 'default', + cobrand_data => '', + send_questionnaire => 't', + latitude => '51.5016605453401', + longitude => '-0.142497580865087', + user_id => $user->id, + } +); +my $report_id = $report->id; +ok $report, "created test report - $report_id"; + +$report->geocode( undef ); + +ok !$report->geocode, 'no gecode entry for report'; + +my $near = $c->find_closest( $report->latitude, $report->longitude, $report ); + +ok $report->geocode, 'geocode entry added to report'; +ok $report->geocode->{resourceSets}, 'geocode entry looks like right sort of thing'; + +like $near, qr/Constitution Hill/i, 'nearest street looks right'; +like $near, qr/Nearest postcode .*: SW1A 1AA/i, 'nearest postcode looks right'; + +$near = $c->find_closest_address_for_rss( $report->latitude, $report->longitude, $report ); + +like $near, qr/Constitution Hill/i, 'nearest street for RSS looks right'; +unlike $near, qr/Nearest postcode/i, 'no nearest postcode in RSS text'; + +$report->geocode( undef ); +$near = $c->find_closest_address_for_rss( $report->latitude, $report->longitude, $report ); + +ok !$near, 'no closest address for RSS if not cached'; + +# all done +done_testing(); diff --git a/templates/email/fiksgatami/alert-confirm.txt b/templates/email/fiksgatami/alert-confirm.txt index 7498df2e1..02cbfc773 100644 --- a/templates/email/fiksgatami/alert-confirm.txt +++ b/templates/email/fiksgatami/alert-confirm.txt @@ -1,14 +1,14 @@ -Subject: Bekreft din sak pÃ¥ FiksGataMI.no +Subject: Bekreft ditt varsel fra FiksGataMi.no Hei, Vennligst klikk pÃ¥ lenken under for Ã¥ bekrefte varslet du -har bedt om Ã¥ abonnere pÃ¥ FiksGataMi: +har bedt om Ã¥ abonnere pÃ¥ hos FiksGataMi: [% token_url %] -Hvis du ikke kan klikke pÃ¥ lenken, kan du kopiere den i -addressefeltet pÃ¥ dine nettleser. +Hvis du ikke kan klikke pÃ¥ lenken, kan du kopiere den til +addressefeltet i din nettleser. -Vennlig Hilsen, +Vennlig hilsen, FiksGataMi-gruppen diff --git a/templates/email/fiksgatami/alert-problem-area.txt b/templates/email/fiksgatami/alert-problem-area.txt index 93819d6f2..8a081e026 100644 --- a/templates/email/fiksgatami/alert-problem-area.txt +++ b/templates/email/fiksgatami/alert-problem-area.txt @@ -1,4 +1,4 @@ -Subject: Nye saker i <?=$values['area_name']?> sendt via FiksGataMi.no +Subject: Nye saker i <?=$values['area_name']?> hos FiksGataMi.no Følgende saker er sendt til <?=$values['area_name']?>: @@ -8,6 +8,6 @@ Følgende saker er sendt til Vennlig hilsen, FiksGataMi-gruppen -Hvis du ikke ønsker Ã¥ motta epost om saker som er sendt til -<?=$values['area_name']?> i fremtiden, klikk pÃ¥ følgende link: +Hvis du ikke ønsker Ã¥ motta e-post om saker som er sendt til +<?=$values['area_name']?> i fremtiden, klikk pÃ¥ følgende lenke: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/alert-problem-council.txt b/templates/email/fiksgatami/alert-problem-council.txt index 54a51c7b2..581651560 100644 --- a/templates/email/fiksgatami/alert-problem-council.txt +++ b/templates/email/fiksgatami/alert-problem-council.txt @@ -7,6 +7,6 @@ Følgende saker er sendt til <?=$values['area_name']?>: Vennlig hilsen, FiksGataMi-gruppen -Hvis du ikke ønsker Ã¥ motta epost om saker som er sendt til -<?=$values['area_name']?> i fremtiden, klikk pÃ¥ følgende link: +Hvis du ikke ønsker Ã¥ motta e-post om saker som er sendt til +<?=$values['area_name']?> i fremtiden, klikk pÃ¥ følgende lenke: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/alert-problem-nearby.txt b/templates/email/fiksgatami/alert-problem-nearby.txt index b470de203..170cb6da8 100644 --- a/templates/email/fiksgatami/alert-problem-nearby.txt +++ b/templates/email/fiksgatami/alert-problem-nearby.txt @@ -1,11 +1,11 @@ Subject: Nye saker i nærheten pÃ¥ FiksGataMi.no -Følgende saker i nærheten er sendt via FiksGataMi.no: +Følgende saker i nærheten er lagt inn pÃ¥ FiksGataMi.no: <?=$values['data']?> Vennlig hilsen, FiksGataMi-gruppen -Hvis du ikke ønsker Ã¥ abonnere pÃ¥ epost om problemer i nærheten, -klikk pÃ¥ følgende link: <?=$values['unsubscribe_url']?> +Hvis du ikke ønsker Ã¥ motta e-post om ny problemer i nærheten, +klikk pÃ¥ følgende lenke: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/alert-problem-ward.txt b/templates/email/fiksgatami/alert-problem-ward.txt index 2fbf0b068..dd8bf0656 100644 --- a/templates/email/fiksgatami/alert-problem-ward.txt +++ b/templates/email/fiksgatami/alert-problem-ward.txt @@ -8,6 +8,6 @@ innenfor <?=$values['ward_name']?>: Vennlig hilsen, FiksGataMi-gruppen -Hvis du ikke ønsker Ã¥ abonnere via epost pÃ¥ saker som er sendt til +Hvis du ikke ønsker Ã¥ motta e-post om saker som er sendt til <?=$values['area_name']?> innenfor <?=$values['ward_name']?>, klikk pÃ¥ denne linken: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/alert-problem.txt b/templates/email/fiksgatami/alert-problem.txt index a62745bef..f95103396 100644 --- a/templates/email/fiksgatami/alert-problem.txt +++ b/templates/email/fiksgatami/alert-problem.txt @@ -1,11 +1,11 @@ -Subject: Ny saker pÃ¥ FiksGataMi.no +Subject: Nye saker pÃ¥ FiksGataMi.no -Følgende ny saker er lagt til: +Følgende nye saker er lagt til: <?=$values['data']?> Vennlig hilsen, FiksGataMi-gruppen -Hvis du ikke ønsker Ã¥ stÃ¥ pÃ¥ denne epostlisten, -klikk pÃ¥ linken: <?=$values['unsubscribe_url']?> +Hvis du ikke ønsker Ã¥ motta e-post om nye saker, +klikk pÃ¥ følgende lenke: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/alert-update.txt b/templates/email/fiksgatami/alert-update.txt index 80bc8dbf8..93920357d 100644 --- a/templates/email/fiksgatami/alert-update.txt +++ b/templates/email/fiksgatami/alert-update.txt @@ -6,13 +6,13 @@ Følgende oppdateringer har blitt lagt inn for dette problemet: <?=$values['state_message']?> -For Ã¥ se pÃ¥ eller svare pÃ¥ disse oppdateringene, besøk denne URLen: +For Ã¥ se pÃ¥ eller svare pÃ¥ disse oppdateringene, besøk denne lenken: <?=$values['problem_url']?> -Du kan ikke kontakte noen ved Ã¥ svare pÃ¥ denne eposten. +Du kan ikke kontakte noen ved Ã¥ svare pÃ¥ denne e-posten. -Vennlig hilsen, -Fiksgata-laget +Vennlig hilsen, +Fiksgata-gruppen -For Ã¥ slutte Ã¥ motta epost nÃ¥r det er nye oppdateringer om dettte +For Ã¥ slutte Ã¥ motta e-post ved nye oppdateringer om dette problemet, følg denne lenken: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/login.txt b/templates/email/fiksgatami/login.txt new file mode 100644 index 000000000..170350590 --- /dev/null +++ b/templates/email/fiksgatami/login.txt @@ -0,0 +1,9 @@ +Subject: [% loc('Your FixMyStreet.com account details') %] + +Vennligst klikk pÃ¥ linken under for Ã¥ bekrefte din e-post. NÃ¥r dette +er gjort vil du lett kunne holde oversikt over dine problemrapporter. +[% c.uri_for_action( 'auth/token', token ) %] + +Vennlig hilsen, +FiksGataMi-gruppen + diff --git a/templates/email/fiksgatami/nn/alert-confirm.txt b/templates/email/fiksgatami/nn/alert-confirm.txt new file mode 100644 index 000000000..496a2089a --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-confirm.txt @@ -0,0 +1,14 @@ +Subject: Stadfest varselet ditt frÃ¥ FiksGataMi.no + +Hei, + +Ver venleg og klikk pÃ¥ lenkja under for Ã¥ stadfesta varselet du +har bede om Ã¥ abonnera pÃ¥ hos FiksGataMi: + + [% token_url %] + +Viss du ikkje kan klikka pÃ¥ lenkja, kan du kopiera ho til +addressefeltet i nettlesaren din. + +Venleg helsing, +FiksGataMi-gruppa diff --git a/templates/email/fiksgatami/nn/alert-problem-area.txt b/templates/email/fiksgatami/nn/alert-problem-area.txt new file mode 100644 index 000000000..2c132749d --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-problem-area.txt @@ -0,0 +1,13 @@ +Subject: Nye saker i <?=$values['area_name']?> hos FiksGataMi.no + +Følgjande saker er sendt til +<?=$values['area_name']?>: + +<?=$values['data']?> + +Venleg helsing, +FiksGataMi-gruppa + +Viss du ikkje ynskjer Ã¥ motta e-post om saker som er sendt til +<?=$values['area_name']?> i framtida, klikk pÃ¥ følgjande lenkje: +<?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/alert-problem-council.txt b/templates/email/fiksgatami/nn/alert-problem-council.txt new file mode 100644 index 000000000..e562f1e9e --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-problem-council.txt @@ -0,0 +1,12 @@ +Subject: Nye saker sendt til <?=$values['area_name']?> via FiksGataMi.no + +Følgjande saker er sendt til <?=$values['area_name']?>: + +<?=$values['data']?> + +Venleg helsing, +FiksGataMi-gruppa + +Viss du ikkje ynskjer Ã¥ motta e-post om saker som er sendt til +<?=$values['area_name']?> i framtida, klikk pÃ¥ følgjande lenkje: +<?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/alert-problem-nearby.txt b/templates/email/fiksgatami/nn/alert-problem-nearby.txt new file mode 100644 index 000000000..e20e0c914 --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-problem-nearby.txt @@ -0,0 +1,11 @@ +Subject: Nye saker i nærleiken pÃ¥ FiksGataMi.no + +Følgjande saker i nærleiken er lagd inn pÃ¥ FiksGataMi.no: + +<?=$values['data']?> + +Venleg helsing, +FiksGataMi-gruppa + +Viss du ikkje ynskjer Ã¥ motta e-post om nye problem i nærleiken, +klikk pÃ¥ følgjande lenkje: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/alert-problem-ward.txt b/templates/email/fiksgatami/nn/alert-problem-ward.txt new file mode 100644 index 000000000..32b3e4c50 --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-problem-ward.txt @@ -0,0 +1,13 @@ +Subject: Nye saker sendt til <?=$values['area_name']?> innanfor <?=$values['ward_name']?> via FiksGataMi.no + +Følgjande saker er sendt til <?=$values['area_name']?> +innanfor <?=$values['ward_name']?>: + +<?=$values['data']?> + +Venleg helsing, +FiksGataMi-gruppa + +Viss du ikkje ynskjer Ã¥ motta e-post om saker som er sendt til +<?=$values['area_name']?> innanfor <?=$values['ward_name']?>, +klikk pÃ¥ følgjande lenkje: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/alert-problem.txt b/templates/email/fiksgatami/nn/alert-problem.txt new file mode 100644 index 000000000..f1eb88a6f --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-problem.txt @@ -0,0 +1,11 @@ +Subject: Nye saker pÃ¥ FiksGataMi.no + +Følgjande nye saker er lagt til: + +<?=$values['data']?> + +Venleg helsing, +FiksGataMi-gruppa + +Viss du ikkje ynskjer Ã¥ motta e-post om nye saker, +klikk pÃ¥ følgjande lenkje: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/alert-update.txt b/templates/email/fiksgatami/nn/alert-update.txt new file mode 100644 index 000000000..03575e68c --- /dev/null +++ b/templates/email/fiksgatami/nn/alert-update.txt @@ -0,0 +1,18 @@ +Subject: Nye oppdateringar for problem – '<?=$values['title']?>' + +Følgjande oppdateringar har vorte lagt inn for dette problemet: + +<?=$values['data']?> + +<?=$values['state_message']?> + +For Ã¥ sjÃ¥ pÃ¥ eller svara pÃ¥ desse oppdateringane, besøk denne lenkja: + <?=$values['problem_url']?> + +Du kan ikkje kontakta nokon ved Ã¥ svara pÃ¥ denne e-posten. + +Venleg helsing, +Fiksgata-gruppa + +For Ã¥ slutta Ã¥ motta e-post ved nye oppdateringar om dette +problemet, følg denne lenkja: <?=$values['unsubscribe_url']?> diff --git a/templates/email/fiksgatami/nn/contact.txt b/templates/email/fiksgatami/nn/contact.txt new file mode 100644 index 000000000..8933c801f --- /dev/null +++ b/templates/email/fiksgatami/nn/contact.txt @@ -0,0 +1,5 @@ +Subject: FiksGataMi-melding: [% subject %] + +[% message %] + +[ Sendt av contact.cgi pÃ¥ [% host %]. IP-addresse [% ip %] ] diff --git a/templates/email/fiksgatami/nn/login.txt b/templates/email/fiksgatami/nn/login.txt new file mode 100644 index 000000000..57fd48db5 --- /dev/null +++ b/templates/email/fiksgatami/nn/login.txt @@ -0,0 +1,9 @@ +Subject: [% loc('Your FixMyStreet.com account details') %] + +Ver venleg og klikk pÃ¥ lenkja under for Ã¥ stadfesta e-posten din. NÃ¥r +dette er gjort vil du lett kunna halda oversyn over problemrapportane +dine. [% c.uri_for_action( 'auth/token', token ) %] + +Venleg helsing, +FiksGataMi-gruppa + diff --git a/templates/email/fiksgatami/nn/partial.txt b/templates/email/fiksgatami/nn/partial.txt new file mode 100644 index 000000000..c7028ab66 --- /dev/null +++ b/templates/email/fiksgatami/nn/partial.txt @@ -0,0 +1,12 @@ +Subject: Stadfest rapporten din pÃ¥ FiksGataMi.no + +Hei [% report.name || report.email %], + +For Ã¥ stadfesta rapporten du har lasta opp til FiksGataMi via +[% report.service %], og for Ã¥ sjekka eller leggja til detaljar, +besøk følgjande lenkje: + +[% token_url %] + +Venleg helsing, +FiksGataMi-gruppa diff --git a/templates/email/fiksgatami/nn/problem-confirm.txt b/templates/email/fiksgatami/nn/problem-confirm.txt new file mode 100644 index 000000000..71afc5b6e --- /dev/null +++ b/templates/email/fiksgatami/nn/problem-confirm.txt @@ -0,0 +1,20 @@ +Subject: Stadfesting om ny sak lagt til pÃ¥ FiksGataMi.no + +Hei [% report.name %], + +Ver venleg og klikk pÃ¥ lenkja under for Ã¥ stadfesta saka du har lagt +til pÃ¥ FiksGataMi: + +[% token_url %] + +Viss e-post-programmet ditt ikkje lèt deg klikka pÃ¥ lenkja, kan du +kopiera lenkja inn i nettlesaren din. + +Saka di hadde følgjande tittel: +[% report.title %] + +Med følgjande informasjon: +[% report.detail %] + +Venleg helsing, +FiksGataMi-gruppa diff --git a/templates/email/fiksgatami/nn/questionnaire.txt b/templates/email/fiksgatami/nn/questionnaire.txt new file mode 100644 index 000000000..1bfa1e38b --- /dev/null +++ b/templates/email/fiksgatami/nn/questionnaire.txt @@ -0,0 +1,24 @@ +Subject: Spørjeskjema for saka di pÃ¥ FiksGataMi + +Hei <?=$values['name']?>, + +for <?=$values['created']?> sidan, la du til ei sak pÃ¥ FiksGataMi.no +med detaljane som vist i denne e-posten. For Ã¥ halda nettsida vÃ¥r +oppdatert og relevant, vil vi setja pris pÃ¥ om du kunne fylla ut +følgjande skjema for Ã¥ oppdatera saka: + + <?=$values['url']?> + +Ver venleg og ikkje svar pÃ¥ denne e-posten; det er mogleg Ã¥ kommentera +i skjemaet. + +Venleg helsing, +FiksGataMi-gruppa + +Saka du la til var som følgjer: + +<?=$values['title']?> + +<?=$values['detail']?> + + diff --git a/templates/email/fiksgatami/nn/submit.txt b/templates/email/fiksgatami/nn/submit.txt new file mode 100644 index 000000000..82849b0d5 --- /dev/null +++ b/templates/email/fiksgatami/nn/submit.txt @@ -0,0 +1,41 @@ +Subject: Problemrapport: <?=$values['title']?> + +Til <?=$values['councils_name']?>, + +<?=$values['missing']?><?=$values['multiple']?>Ein brukar av +FiksGataMi har sendt inn følgjande rapport om eit lokalt problem som +vi trur treng merksemda deira. + +<?=$values['fuzzy']?>, eller for Ã¥ bidra med ei oppdatering om +problemet, ver venleg og besøk følgjande lenkje: + + <?=$values['url']?> + +<?=$values['has_photo']?>---------- + +Namn: <?=$values['name']?> + +E-post: <?=$values['email']?> + +<?=$values['phone_line']?><?=$values['category_line']?>Tema: <?=$values['title']?> + +Detaljer: <?=$values['detail']?> + +<?=$values['easting_northing']?>Breiddegrad: <?=$values['latitude']?> + +Lengdegrad: <?=$values['longitude']?> + +<?=$values['closest_address']?>---------- + +Svar pÃ¥ denne e-posten gÃ¥r til brukaren som sende inn problemet. + +Venleg helsing, +FiksGataMi-gruppa + +[ Denne meldinga vart send inn via FiksGataMi, eit prosjekt hos foreininga NUUG. +Viss det er ei meir passande e-postadresse for meldingar om +<?=$values['category_footer']?>, ver sÃ¥ snill Ã¥ gje oss melding ved Ã¥ vitja +<http://www.fiksgatami.no/contact>. +Dette vil bidra til Ã¥ forbetra tenesta for lokalbefolkinga. Vi +tek òg gjerne imot andre tilbakemeldingar. ] + diff --git a/templates/email/fiksgatami/nn/update-confirm.txt b/templates/email/fiksgatami/nn/update-confirm.txt new file mode 100644 index 000000000..0ecfc84bf --- /dev/null +++ b/templates/email/fiksgatami/nn/update-confirm.txt @@ -0,0 +1,18 @@ +Subject: Stadfest oppdateringa di pÃ¥ FiksGataMi.no + +Hei [% update.name %], + +Ver venleg og klikk pÃ¥ lenkja under for Ã¥ stadfesta oppdateringa du nettopp +skreiv: + +[% token_url %] + +Viss du ikkje kan klikka pÃ¥ lenkja, kan du kopiera ho til +addressefeltet i nettlesaren din. + +Oppdateringa di inneheld: + +[% update.text %] + +Venleg hilsen, +FiksGataMi-gruppa diff --git a/templates/email/fiksgatami/partial.txt b/templates/email/fiksgatami/partial.txt index 70359e265..6c64eff7f 100644 --- a/templates/email/fiksgatami/partial.txt +++ b/templates/email/fiksgatami/partial.txt @@ -1,14 +1,12 @@ -Subject: Bekreft din rapport pÃ¥ FiksGataMi +Subject: Bekreft din rapport pÃ¥ FiksGataMi.no Hei [% report.name || report.email %], -For Ã¥ bekrefte rapporten du har lastet opp til FiksGatami via -[% report.service %], og for Ã¥ sjekke eller legge til litt detaljer, -besøk følgende URL: +For Ã¥ bekrefte rapporten du har lastet opp til FiksGataMi via +[% report.service %], og for Ã¥ sjekke eller legge til detaljer, +besøk følgende lenke: [% token_url %] -Takk! - -Vennlig hilsen, +Vennlig hilsen, FiksGataMi-gruppen diff --git a/templates/email/fiksgatami/problem-confirm.txt b/templates/email/fiksgatami/problem-confirm.txt index a48fbef44..f05f7ba20 100644 --- a/templates/email/fiksgatami/problem-confirm.txt +++ b/templates/email/fiksgatami/problem-confirm.txt @@ -7,13 +7,13 @@ pÃ¥ FiksGataMi: [% token_url %] -Hvis ditt epost-program ikke gir deg mulighet til Ã¥ klikke pÃ¥ linken, -kopier linken inn i nettleseren. +Hvis ditt e-post-program ikke gir deg mulighet til Ã¥ klikke pÃ¥ lenken, +kan du kopiere lenken inn i nettleseren din. Din sak hadde følgende tittel: [% report.title %] -Med følgende verdier: +Med følgende informasjon: [% report.detail %] Vennlig hilsen, diff --git a/templates/email/fiksgatami/questionnaire.txt b/templates/email/fiksgatami/questionnaire.txt index fd16c42b1..27b80cc16 100644 --- a/templates/email/fiksgatami/questionnaire.txt +++ b/templates/email/fiksgatami/questionnaire.txt @@ -1,15 +1,15 @@ -Subject: Skjema for din sak pÃ¥ FiksGataMi +Subject: Spørreskjema for din sak pÃ¥ FiksGataMi Hei <?=$values['name']?>, -for <?=$values['created']?> siden, la du til en sak pÃ¥ FiksGataMi -med detaljene som vist i denne eposten. For Ã¥ holde vÃ¥r nettside oppdatert +for <?=$values['created']?> siden, la du til en sak pÃ¥ FiksGataMi.no +med detaljene som vist i denne e-posten. For Ã¥ holde vÃ¥r nettside oppdatert og relevant, vil vi sette pris pÃ¥ om du kunne fylle ut følgende skjema for Ã¥ oppdatere saken: <?=$values['url']?> -Vennligst ikke svar pÃ¥ denne eposten; det er muligheter for Ã¥ kommentere i skjema. +Vennligst ikke svar pÃ¥ denne e-posten; det er muligheter for Ã¥ kommentere i skjemaet. Vennlig hilsen, FiksGataMi-gruppen diff --git a/templates/email/fiksgatami/submit.txt b/templates/email/fiksgatami/submit.txt index 12c801bbb..8005f5c82 100644 --- a/templates/email/fiksgatami/submit.txt +++ b/templates/email/fiksgatami/submit.txt @@ -15,7 +15,7 @@ vennligst besøk følgende lenke: Navn: <?=$values['name']?> -Epost: <?=$values['email']?> +E-post: <?=$values['email']?> <?=$values['phone_line']?><?=$values['category_line']?>Tema: <?=$values['title']?> @@ -27,15 +27,15 @@ Lengegrad: <?=$values['longitude']?> <?=$values['closest_address']?>---------- -Svar pÃ¥ denne eposten gÃ¥r til brukeren som sendte inn problemet. +Svar pÃ¥ denne e-posten gÃ¥r til brukeren som sendte inn problemet. Vennlig hilsen, FiksGataMi-gruppen [ Denne meldingen ble sendt inn via FiksGataMi, et prosjekt hos foreningen NUUG. -Hvis det er en mer passende epostadresse for meldinger om +Hvis det er en mer passende e-postadresse for meldinger om <?=$values['category_footer']?>, vær sÃ¥ snill Ã¥ gi oss beskjed ved Ã¥ besøke <http://www.fiksgatami.no/contact>. Dette vil bidra til Ã¥ forbedre tjenesten for lokalbefolkningen. Vi -tar ogsÃ¥ gjerne imot andre tilbakemeldinger om du har noen. ] +tar ogsÃ¥ gjerne imot andre tilbakemeldinger. ] diff --git a/templates/email/fiksgatami/update-confirm.txt b/templates/email/fiksgatami/update-confirm.txt index ba13f34b2..2f4f7a7ec 100644 --- a/templates/email/fiksgatami/update-confirm.txt +++ b/templates/email/fiksgatami/update-confirm.txt @@ -1,14 +1,14 @@ -Subject: Bekreft din oppdatering pÃ¥ FiksGataMi +Subject: Bekreft din oppdatering pÃ¥ FiksGataMi.no Hei [% update.name %], -Vennligst klikk pÃ¥ lenken under for Ã¥ bekrefte oppdateringen du skrev -nettopp: +Vennligst klikk pÃ¥ lenken under for Ã¥ bekrefte oppdateringen du nettop +skrev: [% token_url %] -Hvis du ikke kan klikke pÃ¥ lenken, kopier og lim den inn -i adressefeltet pÃ¥ din nettleser.. +Hvis du ikke kan klikke pÃ¥ lenken, kan du kopiere den til +addressefeltet i din nettleser. Din oppdatering inneholder: diff --git a/templates/web/default/around/display_location.html b/templates/web/default/around/display_location.html index 3d9c82187..bebc787e2 100755 --- a/templates/web/default/around/display_location.html +++ b/templates/web/default/around/display_location.html @@ -67,7 +67,7 @@ <div id="side"> <p id="text_map" class="banner"> - [% loc( 'To <strong>report a problem</strong>, simply click on the map at the correct location.' ) %] + [% loc( 'To <strong>report a problem</strong>, click on the map at the correct location.' ) %] [% tprintf( loc("<small>If you cannot see the map, <a href='%s' rel='nofollow'>skip this step</a>.</small>"), diff --git a/templates/web/default/footer.html b/templates/web/default/footer.html index 38e83c1c2..ae2a3798a 100644 --- a/templates/web/default/footer.html +++ b/templates/web/default/footer.html @@ -1,49 +1,39 @@ -</div> -</div> + </div><!-- #mysociety .container --> -<h2 class="v">[% loc('Navigation') %]</h2> -<ul id="navigation"> -<li><a href="/">[% loc("Report a problem") %]</a></li> -<li id="nav_new"><a href="/my">[% loc("Your reports") %]</a></li> -<li><a href="/reports">[% loc("All reports") %]</a></li> -<li><a href="/alert[% pc ? '/list?pc=' : '' %][% pc | uri %]">[% loc("Local alerts") %]</a></li> -<li><a href="/faq">[% loc("Help") %]</a></li> -</ul> - -[% IF ! c.cobrand.moniker %] - <!-- winter 2011 promotion for unbranded site only --> - <div id="promo"> - <a href="http://www.mysociety.org/2011/11/02/fix-before-the-freeze/" - title="Fix Before the Freeze - report those dangerous potholes and broken streetlights before winter hits"><img - src="/i/promo-fb4tf.gif" - alt="Fix Before the Freeze - report those dangerous potholes and broken streetlights before winter hits" ></a> - </div> - [% loc('<a href="http://www.mysociety.org/"><img id="logo" width="159" height="39" src="/i/mysociety-on-white.gif" alt="View mySociety.org"><span id="logoie"></span></a>') %] - -[% ELSE %] + <div id="top" class="container"> + <div class="spacer"></div> + <ul id="top-nav" class="nav"> + <li><a href="/my">[% loc("Your reports") %]</a></li> + <li><a href="/reports">[% loc("All reports") %]</a></li> + <li><a href="/alert[% pc ? '/list?pc=' : '' %][% pc | uri %]">[% loc("Local alerts") %]</a></li> + <li><a href="/faq">[% loc("Help") %]</a></li> + </ul> - [% loc('<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>') %] + <ul id="mysociety-tab" class="nav"> + <li><a id="mysociety-logo" href="http://www.mysociety.org/">mySociety</a></li> + <li><a href="http://mysociety.org/donate/">Donate</a></li> + <li><a href="http://www.mysociety.org/projects/">Our Sites</a></li> + </ul> -[% END %] + </div> -</div> -<div id="footer"> +</div></div></div><!-- wrappers --> - <p>[% loc('Built by <a href="http://www.mysociety.org/">mySociety</a>') %] - | <a href="/contact">[% loc("Contact FixMyStreet") | replace(' ', ' ') %]</a></p> +<div id="footer"> - <p>Mobile apps: + <p><a href="/contact">[% loc("Contact FixMyStreet") | replace(' ', ' ') %]</a> + <br>Mobile apps: <a href="http://itunes.apple.com/gb/app/fixmystreet/id297456545">iPhone</a>, <a href="http://itunes.apple.com/gb/app/streetreport/id371891859">StreetReport (iPhone)</a> | <a href="https://market.android.com/details?id=com.android.fixmystreet">Android</a> | <a href="http://store.ovi.com/content/107557">Nokia</a> </p> - <p class="l">[% loc('Are you from a council? Would you like better integration with FixMyStreet?') %] + <p>[% loc('Are you from a <strong>council</strong>? Would you like better integration with FixMyStreet?') %] <a href="http://www.mysociety.org/fixmystreet-for-local-council-websites/">[% loc('Find out about FixMyStreet for councils') %]</a>. </p> - <p class="r">[% loc('Are you a developer? Would you like to contribute to FixMyStreet?') %] + <p>[% loc('Are you a <strong>developer</strong>? Would you like to contribute to FixMyStreet?') %] [% loc('Our code is open source and <a href="http://github.com/mysociety/fixmystreet">available on GitHub</a>.') %] </p> diff --git a/templates/web/default/header.html b/templates/web/default/header.html index e3c364363..898c1b9fe 100644 --- a/templates/web/default/header.html +++ b/templates/web/default/header.html @@ -4,7 +4,6 @@ <!--[if IE 8]> <html class="no-js ie8 oldie" lang="[% lang_code %]"><![endif]--> <!--[if gt IE 8]><!--><html class="no-js" lang="[% lang_code %]"><!--<![endif]--> <head> - <meta name="viewport" content="initial-scale=1.0"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> @@ -12,8 +11,12 @@ <meta name="HandHeldFriendly" content="true"> <meta name="mobileoptimized" content="0"> - <link rel="stylesheet" type="text/css" href="[% version('/css/core.css') %]"> - <link rel="stylesheet" type="text/css" href="[% version('/css/main.css') %]"> + <link rel="stylesheet" href="[% version('/css/core.css') %]"> + <link rel="stylesheet" href="[% version('/cobrands/fixmystreet/base.css') %]"> + <link rel="stylesheet" href="[% version('/cobrands/fixmystreet/layout.css') %]" media="(min-width:40em)"> + <!--[if (lt IE 9) & (!IEMobile)]> + <link rel="stylesheet" href="[% version('/cobrands/fixmystreet/layout.css') %]"> + <![endif]--> [% INCLUDE 'common_header_tags.html' %] @@ -26,23 +29,21 @@ </head> <body> +<div id="wrapper"><div id="wrapper2"><div id="wrapper3"> + [% IF NOT title AND NOT c.req.path %]<h1 id="header">[% ELSE %]<div id="header"><a href="/">[% END %] [%- loc('Fix<span id="my">My</span>Street') %] [%- IF NOT title AND NOT c.req.path %]</h1>[% ELSE %]</a></div>[% END %] - <div [% IF ! c.cobrand.moniker %]class="promo-background"[% END %] > <ul id="meta"> [% IF c.user_exists %] <li>[% tprintf(loc('Signed in as %s'), c.user.name || c.user.email) %] - <li><a href="/auth/sign_out">[% loc('Sign out') %]</a></li> + <li class="last"><a href="/auth/sign_out">[% loc('Sign out') %]</a></li> [% ELSE %] <li> </li> [% END %] </ul> - <div id="wrapper"><div id="mysociety"> - - [% IF ! c.cobrand.moniker %] - - [% END %] + + <div id="mysociety" class="container"> [% INCLUDE 'debug_header.html' %] diff --git a/templates/web/default/index.html b/templates/web/default/index.html index 96f5c33de..eaf8804db 100644 --- a/templates/web/default/index.html +++ b/templates/web/default/index.html @@ -15,7 +15,7 @@ <strong>[% loc('Report, view, or discuss local problems') %]</strong> [% IF subhead != ' ' %] - <br><small>[% subhead %]</small> + <small>[% subhead %]</small> [% END %] </p> diff --git a/templates/web/default/js_validation_msgs.html b/templates/web/default/js_validation_msgs.html index 2466ce175..0263f75ce 100644 --- a/templates/web/default/js_validation_msgs.html +++ b/templates/web/default/js_validation_msgs.html @@ -5,16 +5,16 @@ detail: '[% loc('Please enter some details') %]', name: { required: '[% loc('Please enter your name') %]', - validName: '[% loc('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') %]', + validName: '[% loc('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') %]' }, category: '[% loc('Please choose a category') %]', rznvy: { required: '[% loc('Please enter your email') %]', - email: '[% loc('Please enter a valid email') %]', + email: '[% loc('Please enter a valid email') %]' }, email: { required: '[% loc('Please enter your email') %]', - email: '[% loc('Please enter a valid email') %]', + email: '[% loc('Please enter a valid email') %]' } }; </script> diff --git a/templates/web/default/report/new/category.html b/templates/web/default/report/new/category.html index 6ec0eb19f..095cd7c2e 100644 --- a/templates/web/default/report/new/category.html +++ b/templates/web/default/report/new/category.html @@ -1,7 +1,7 @@ [% FILTER collapse %] [% IF category_options.size %] <label for='form_category'>[% category_label | html %]</label> - <select name='category' id='form_category'> + <select name='category' id='form_category'[% ' onchange="form_category_onchange()"' IF category_extras.size %]> [% FOREACH cat_op IN category_options %] <option value='[% cat_op | html %]'[% ' selected' IF report.category == cat_op %]>[% cat_op | html %]</option> [% END %] diff --git a/templates/web/fiksgatami/faq/faq-nb.html b/templates/web/fiksgatami/faq/faq-nb.html index 7b9214cfa..da35cb03c 100644 --- a/templates/web/fiksgatami/faq/faq-nb.html +++ b/templates/web/fiksgatami/faq/faq-nb.html @@ -79,7 +79,7 @@ <dd>Tjenesten bruker navnesøk hos Google Maps for Ã¥ lokalisere steder. Hvis Google Maps har mangler i sin stedsnavndatabase, vil stedet ikke bli funnet eller sende deg til feil plass. - Tilsvarende søk pÃ¥ Google Maps (etter f.eks. "Slogvær, Norway") + Tilsvarende søk pÃ¥ Google Maps (etter f.eks. «Slogvær, Norway») vil ogsÃ¥ feile. For Ã¥ fikse det mÃ¥ en ta kontakt med Google.</dd> <dt>Jeg finner ikke gata mi pÃ¥ kartet, hvorfor bruker dere ikke @@ -109,7 +109,7 @@ <dd>Vi har skrevet en side med <a href="http://wiki.nuug.no/grupper/fiksgatami/tips">tips til offentlige virksomheter som mottar meldinger fra FiksGataMi</a> - for svarer pÃ¥ vanlige spørsmÃ¥l vi fÃ¥r fra det offentlige, og litt + for svar pÃ¥ vanlige spørsmÃ¥l vi fÃ¥r fra det offentlige, og litt om hva vi anbefaler.</dd> </dl> @@ -130,8 +130,8 @@ relevante myndighet som er ansvarlig for omrÃ¥det der saken er geografisk lokalisert. Meldingen sendes til offentlig myndighet som følger offentlighetsloven og vil gi enhver innsyn i meldingen - og epostadressen etter de gjeldene lover og regler. Vi i - FiksGataMi vi ikke under noen omstendighet gi eller selge + og epostadressen etter de gjeldene lover og regler. Vi i + FiksGataMi vil ikke under noen omstendighet gi eller selge e-postadressen din til noen andre.</dd> <dt>Hvem stÃ¥r bak FiksGataMi?</dt> @@ -151,7 +151,7 @@ tilgjengelig i hovedsak under GNU Affero GPL programvarelisensen. Du kan laste ned kildekoden og hjelpe oss Ã¥ utvikle det. Du mÃ¥ gjerne bruke den i egne prosjekter, men du mÃ¥ - ogsÃ¥ gjøre tilgjengelig i kildekoden til slike prosjekter.</p> + ogsÃ¥ gjøre tilgjengelig kildekoden til slike prosjekter.</p> <p>NUUG lÃ¥ner Varnish-tjenesten til <a href="http://www.vg.no/">VG Nett</a> for økt ytelse, og er svært takknemlige for at VG Nett diff --git a/templates/web/fiksgatami/nn/contact/address.html b/templates/web/fiksgatami/nn/contact/address.html new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/templates/web/fiksgatami/nn/contact/address.html diff --git a/templates/web/fiksgatami/nn/faq/faq-nn.html b/templates/web/fiksgatami/nn/faq/faq-nn.html new file mode 100644 index 000000000..058ce5355 --- /dev/null +++ b/templates/web/fiksgatami/nn/faq/faq-nn.html @@ -0,0 +1,163 @@ +[% INCLUDE 'header.html', title => loc('Frequently Asked Questions') %] + +<h1>Ofte stilte spurnader</h1> +<dl> + <dt>Kva er FiksGataMi?</dt> + + <dd>FiksGataMi er ein nettstad for Ã¥ hjelpa folk til Ã¥ rapportera + problem, visa, eller diskutera lokale problem dei har funne i + omrÃ¥det sitt ved ganske enkelt Ã¥ finna dei pÃ¥ eit kart. Du kan melda + problem utan Ã¥ tenkja pÃ¥ kva for ei offentleg styresmakt som er + ansvarleg for Ã¥ løysa det, det finn FiksGataMi ut for deg.</dd> + + <dt>Kva slags problem kan eg rapportera med FiksGataMi?</dt> + + <dd>FiksGataMi er primært for rapportering av ting som + er <strong>øydelagd, skadd, dumpa eller treng Ã¥ verta reparert, + reingjort eller rydda</strong>. Dette kan til dømes vera: + + <ul> + <li>Forlatne køyretøy</li> + <li>Gatelys som ikkje verkar</li> + <li>Plakatar eller graffiti</li> + <li>Søppel</li> + <li>Manglande reingjering</li> + <li>Manglande brøyting</li> + <li>Glatt veg eller gangsti</li> + </ul> + </dd> + + <dt>Kva er FiksGataMi ikkje?</dt> + <dd>FiksGataMi er ikkje ein mÃ¥te Ã¥ koma i kontakt med offentlege + styresmakter for alle spurnader – ver venleg og bruk FiksGataMi + berre for problem som dei nemnt over. + + <strong>Du mÃ¥ kontakta offentlege styresmakter direkte for + problem som til dømes</strong>: + + <ul> + <li>Saker som hastar eller akutte problem</li> + <li>Støyforureining eller bjeffande hundar</li> + <li>Brann og røyk / luktforureining</li> + <li>Endringsforslag til kommune, fylke eller stat</li> + <li>Klager over naboane</li> + <li>Kriminell aktivitet</li> + </ul> + </dd> + + <dt>Korleis brukar eg nettstaden?</dt> + <dd>NÃ¥r du har skrive inn postnummer eller stad, fÃ¥r du presentert + eit kart over det omrÃ¥det. Du kan sjÃ¥ problem allereie + rapportert i dette omrÃ¥det, eller rapporten sjølv pÃ¥ eiga hand ved + Ã¥ klikka pÃ¥ kartet for plasseringa av problemet.</dd> + + <dt>Korleis vert saka løyst?</dt> + <dd>Saka vert meldt til offentlege styresmakter via e-post. Saka + vert sÃ¥ handsama pÃ¥ normal mÃ¥te. Alternativt kan du diskutera + problemet pÃ¥ nettstaden med andre, og dÃ¥ saman pÃ¥verka offentlege + styresmakter til Ã¥ fiksa det, eller fiksa det direkte sjølv.</dd> + + <dt>Er det gratis Ã¥ bruka fiksgatami.no?</dt> + <dd>Ja, nettsida er gratis Ã¥ bruka. FiksGataMi vert driven av NUUG, + skjønt, viss du ynskjer Ã¥ gje eit bidrag, kan du gjera det.</dd> + + <dt>Kan eg bruka FiksGataMi frÃ¥ mobilen min?</dt> + <dd>Viss mobilen har nettlesar kan du fint bruka tenesta frÃ¥ + mobiltelefon. Det vert jobba med Ã¥ skaffa finansiering til Ã¥ tilpassa + iPhone- og Android-apps til norske tilhøve for Ã¥ gjera det endÃ¥ + enklare Ã¥ rapportera frÃ¥ smart-telefonar.</dd> + + <dt>Praktisk informasjon</dt> + <dd>FiksGataMi er ikkje ansvarleg for innhaldet i materialet som + brukarane sender inn, eller for at det feilfritt. Vi tek atterhald + om retten til Ã¥ redigera eller fjerna eventuelle problem eller + oppdateringar som vi ser pÃ¥ som upassande, fyrst og fremst etter at + ein brukar pÃ¥ nettstaden har informert oss.</dd> + + <dt>Kvifor finn eg ikkje stadnamnet mitt?</dt> + + <dd>Tenesta brukar namnesøk hos Google Maps for Ã¥ lokalisera stadar. + Viss Google Maps har manglar i stadnamndatabasen sin, vil me ikkje + finna staden, eller senda deg til feil plass. Tilsvarande søk pÃ¥ + Google Maps (etter t.d. «Slogvær, Norway») vil òg feila. For Ã¥ + fiksa det mÃ¥ ein ta kontakt med Google.</dd> + + <dt>Eg finn ikkje gata mi pÃ¥ kartet, kvifor brukar de ikkje + Google Maps? / Det er noko gale med kartet, kor rapporterer eg + det? / Kvifor brukar de ikkje Google Maps? / Kor rapporterer + eg feil eller manglar i kartet?</dt> + + <dd>Kartane i FiksGataMi kjem frÃ¥ OpenStreetMap (OSM). OSM er fritt + og laga og styrt av brukarane, veldig likt Wikipedia. Føremonene + med OSM er mange, t.d. du enkelt vera med pÃ¥ Ã¥ utbetra karta, og + leggja til detaljar og informasjon som ikkje er tilgjengeleg pÃ¥ + andre kart. Men sidan kartet er laga av brukarane er det ikkje + sikkert alle gatene er teikna inn der du bur. Vi oppfordrar alle + til Ã¥ involvera seg i OSM direkte, men dersom dette ikkje er + aktuelt for deg kan du rapportera feil og manglar pÃ¥ + <a href="http://www.mapdust.com/">Mapdust</a>, og dersom du vel + kategorien «Missing street», kan du be om at bidragsytarane legg + til ein veg.</a> + + <dt>Kor finn eg FiksGataMi pÃ¥ sosiale media?</dt> + <dd>FiksGataMi er tilgjengeleg pÃ¥ + <a href="http://www.facebook.com/pages/FiksGataMi/146616932068569">Facebook</a> + og <a href="http://twitter.com/fiksgatami">Twitter</a>.</dd> + + <dt>Korleis rÃ¥r FiksGataMi-gruppa det offentlege til Ã¥ handtera + problemrapportar?</dt> + <dd>Vi har skrive ei side med + <a href="http://wiki.nuug.no/grupper/fiksgatami/tips">tips til + offentlege verksemder som mottek meldingar frÃ¥ FiksGataMi</a> + for svar pÃ¥ vanlege spurnader vi fÃ¥r frÃ¥ det offentlege, og litt + om kva vi rÃ¥r til.</dd> + +</dl> + +<h2><a name="privacy"></a>Spurnader om personvern</h2> + +<dl> + + <dt>Vil eg motta reklame eller anna uønska epost?</dt> + <dd>Det vil ikkje skje. Vi sender deg ein epost viss det skjer ei + oppdatering pÃ¥ dei problema du har meldt inn, men vi vil aldri + senda deg e-post i høve med noko anna ein dei problema du + abonnerer pÃ¥ eller har meldt inn.</dd> + + <dt>Kven fÃ¥r Ã¥ sjÃ¥ e-postadressa mi?</dt> + <dd>Viss du melder inn ei sak, lagrar vi detaljar om saka, vi sender + samstundes ei melding til kontakten eller kontaktane hos den + relevante styresmakta som er ansvarleg for omrÃ¥det der saka er + geografisk lokalisert. Meldinga vert sendt til offentlege + styresmakter som følgjer offentleglova og vil gje kvar og ein + innsyn i meldinga og e-postadressa etter dei gjeldene lovane og + reglane. Vi i FiksGataMi vil ikkje under noko omstende gje eller + selja e-postadressa di til nokon andre.</dd> + + <dt>Kven stÃ¥r bak FiksGataMi?</dt> + <dd><p>Foreininga Norwegian Unix User Group (NUUG) stÃ¥r bak og + driv FiksGataMi. <a href="http://www.friprog.no/">Nasjonalt + kompetansesenter for fri programvare</a> og + <a href="http://www.dss.dep.no/">Servicesentret til + Departementa</a> bidreg med finansiering av prosjektet.</p> + + <p>Organisasjonen mySociety i England har drive og utvikla + nettstaden FixMyStreet sidan 2007. Programvara for FiksGataMi + vert idag driven basert pÃ¥ den same programvara, og utviklinga + føregÃ¥r som eit samarbeid mellom NUUG i Noreg og mySociety i + England. FiksGataMi er i sÃ¥ mÃ¥te eit internasjonalt + prosjekt.</p> + + <p>Programvara bak denne nettstaden er fri programvare, og er + tilgjengeleg i hovudsak under programvarelisensen GNU Affero + GPL. Du kan lasta ned kjeldekoda og hjelpa oss Ã¥ utvikla det. Du + mÃ¥ gjerne bruka han i eigne prosjekt, men du mÃ¥ òg gjera + tilgjengeleg kjeldekoda til slike prosjekt.</p> + + <p>NUUG lÃ¥ner Varnish-tenesta til <a href="http://www.vg.no/">VG + Nett</a> for auka yting, og er svært takknemlege for at VG Nett + bidreg med dette.</p></dd> + + </dl> + +[% *INCLUDE 'footer.html' %] diff --git a/templates/web/fiksgatami/nn/footer.html b/templates/web/fiksgatami/nn/footer.html new file mode 100644 index 000000000..b61cab9ff --- /dev/null +++ b/templates/web/fiksgatami/nn/footer.html @@ -0,0 +1,22 @@ +</div></div> + +<h2 class="v">[% loc('Navigation') %]</h2> +<ul id="navigation"> +<li><a href="/">[% loc("Report a problem") %]</a></li> +<li id="nav_new"><a href="/my">[% loc("Your reports") %]</a></li> +<li><a href="/reports">[% loc("All reports") %]</a></li> +<li><a href="[% c.uri_for('/alert', {pc => pc}) | html %]">[% loc("Local alerts") %]</a></li> +<li><a href="/faq">[% loc("Help") %]</a></li> +<li><a href="/contact">[% loc("Contact") %]</a></li> +</ul> + +<div id="logo" align="center"><a href="http://www.nuug.no/">Foreininga NUUG</a></div> + +<p id="footer"> + [% loc('Built by <a href="http://www.mysociety.org/">mySociety</a> and maintained by <a href="http://www.nuug.no/">NUUG</a>') %] | <a href="http://github.com/mysociety/fixmystreet">[% loc('Source code') %]</a> +</p> + +[% INCLUDE 'debug_footer.html' %] + +</body> +</html> diff --git a/templates/web/fiksgatami/nn/front/news.html b/templates/web/fiksgatami/nn/front/news.html new file mode 100644 index 000000000..e7f3184a9 --- /dev/null +++ b/templates/web/fiksgatami/nn/front/news.html @@ -0,0 +1,12 @@ +[% + news = [ + { date = '2011-04-26', text = '<a href="' _ c.config.ANDROID_URL _ '">Last ned FiksGataMi-app til Android-telefonen din.</a>' }, + { date = '2011-04-23', text = 'Last ned FiksGataMi-app til Android-telefonen din. FiksGataMi sender no vegsaker òg til vegvesenet slik at kommunar ikkje treng senda saker vidare.' }, + ] +%] +[% FOREACH item IN news %] + <p align="center" style="margin-bottom:0"> + <img width="23" height="12" alt="[% loc('New!') %]" src="/i/new.png" border="0">[% item.date %] [% item.text %]</p> + </p> +[% END %] + diff --git a/templates/web/fiksgatami/nn/front/tips.html b/templates/web/fiksgatami/nn/front/tips.html new file mode 100644 index 000000000..6cdefe157 --- /dev/null +++ b/templates/web/fiksgatami/nn/front/tips.html @@ -0,0 +1 @@ +<p><a href="http://wiki.nuug.no/grupper/fiksgatami/tips">Tips til deg som har motteke ei sak frÃ¥ FiksGataMi.</a></p> diff --git a/templates/web/fiksgatami/nn/header.html b/templates/web/fiksgatami/nn/header.html new file mode 100644 index 000000000..5449eff81 --- /dev/null +++ b/templates/web/fiksgatami/nn/header.html @@ -0,0 +1,30 @@ +<!doctype html> +<!--[if lt IE 7]><html class="ie6 oldie" lang="[% lang_code %]"><![endif]--> +<!--[if IE 7]> <html class="ie7 oldie" lang="[% lang_code %]"><![endif]--> +<!--[if IE 8]> <html class="ie8 oldie" lang="[% lang_code %]"><![endif]--> +<!--[if gt IE 8]><!--><html lang="[% lang_code %]"><!--<![endif]--> + <head> + + <link rel="stylesheet" type="text/css" href="[% version('/css/core.css') %]"> + <link rel="stylesheet" type="text/css" href="[% version('/cobrands/fiksgatami/css.css') %]"> + + [% INCLUDE 'common_header_tags.html' %] + </head> + <body> + + [% IF NOT title AND NOT c.req.path %]<h1 id="header">[% ELSE %]<div id="header"><a href="/">[% END %] + [%- loc('Fix<span id="my">My</span>Street') %] + [%- IF NOT title AND NOT c.req.path %]</h1>[% ELSE %]</a></div>[% END %] + + <ul id="meta"> + [% IF c.user_exists %] + <li>[% tprintf(loc('Signed in as %s'), c.user.name || c.user.email) %] + <li><a href="/auth/sign_out">[% loc('Sign out') %]</a></li> + [% ELSE %] + <li> </li> + [% END %] + </ul> + + <div id="wrapper"><div id="mysociety"> + + [% INCLUDE 'debug_header.html' %] diff --git a/templates/web/fiksgatami/nn/reports/index.html b/templates/web/fiksgatami/nn/reports/index.html new file mode 100755 index 000000000..3cbb2bf8d --- /dev/null +++ b/templates/web/fiksgatami/nn/reports/index.html @@ -0,0 +1,34 @@ +[% INCLUDE 'header.html', title = loc('Summary reports') %] + +<p> +[% loc('This is a summary of all reports on this site; select a particular council to see the reports sent there.') %] +</p> + +<table cellpadding="3" cellspacing="1" border="0"> +<tr> +<th>[% loc('Name') %]</th> +<th>[% loc('New problems') %]</th> +<th>[% loc('Older problems') %]</th> +<th>[% loc('Old problems,<br>state unknown') %]</th> +<th>[% loc('Recently fixed') %]</th> +<th>[% loc('Older fixed') %]</th> +</tr> + +[% FOREACH area IN areas_info_sorted %] +[% NEXT IF area.id == 301 %] +<tr align="center" +[%- IF loop.count % 2 %] class="a" +[%- END -%] +> +<td align="left"><a href="[% area.url %]">[% area.name %]</a></td> +<td>[% open.${area.id}.new or 0 %]</td> +<td>[% open.${area.id}.older or 0 %]</td> +<td>[% open.${area.id}.unknown or 0 %]</td> +<td>[% fixed.${area.id}.new or 0 %]</td> +<td>[% fixed.${area.id}.old or 0 %]</td> +</tr> +[% END %] +</table> + +[% INCLUDE 'footer.html' %] + diff --git a/web/cobrands/fixmystreet/_colours.scss b/web/cobrands/fixmystreet/_colours.scss new file mode 100644 index 000000000..936a98c34 --- /dev/null +++ b/web/cobrands/fixmystreet/_colours.scss @@ -0,0 +1,5 @@ +/* COLOURS */ + +$colour_dark: #4e1602; +$colour: #c23704; +$colour_alt: #ffeeaa; diff --git a/web/cobrands/fixmystreet/_h5bp.scss b/web/cobrands/fixmystreet/_h5bp.scss new file mode 100644 index 000000000..30ebcbfe1 --- /dev/null +++ b/web/cobrands/fixmystreet/_h5bp.scss @@ -0,0 +1,272 @@ +/* + * HTML5 ✰ Boilerplate, with minor tweaks. + * + * What follows is the result of much research on cross-browser styling. + * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, + * Kroc Camen, and the H5BP dev community and team. + * + * Detailed information about this CSS: h5bp.com/css + * + * ==|== normalize ========================================================== + */ + + +/* ============================================================================= + HTML5 display definitions + ========================================================================== */ + +article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } +audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } +audio:not([controls]) { display: none; } +[hidden] { display: none; } + + +/* ============================================================================= + Base + ========================================================================== */ + +/* + * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units + * 2. Force vertical scrollbar in non-IE - mySociety removed. + * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g + */ + +html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } + +/* mySociety change: line-height from 1.4 */ +body { margin: 0; font-size: 1em; line-height: 1.5; } + +/* mySociety addition: background colour */ +body, button, input, select, textarea { + font-family: sans-serif; + color: #222; + background-color: #fff +} + +/* + * Remove text-shadow in selection highlight: h5bp.com/i + * These selection declarations have to be separate + * mySociety change: background colour from #fe57a1 + */ + +::-moz-selection { background: #ffeeaa; color: #000; text-shadow: none; } +::selection { background: #ffeeaa; color: #000; text-shadow: none; } + + +/* ============================================================================= + Links + ========================================================================== */ + +/* mySociety removal: link colours specified elsewhere */ +a:focus { outline: thin dotted; } + +/* Improve readability when focused and hovered in all browsers: h5bp.com/h */ +a:hover, a:active { outline: 0; } + + +/* ============================================================================= + Typography + ========================================================================== */ + +abbr[title] { border-bottom: 1px dotted; } + +b, strong { font-weight: bold; } + +/* mySociety change: from 1em 40px; */ +blockquote { margin: 1.5em 2em; } + +dfn { font-style: italic; } + +hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } + +ins { background: #ff9; color: #000; text-decoration: none; } + +mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; } + +/* Redeclare monospace font family: h5bp.com/j */ +pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; } + +/* Improve readability of pre-formatted text in all browsers */ +pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; } + +q { quotes: none; } +q:before, q:after { content: ""; content: none; } + +small { font-size: 85%; } + +/* Position subscript and superscript content without affecting line-height: h5bp.com/k */ +sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } +sup { top: -0.5em; } +sub { bottom: -0.25em; } + + +/* ============================================================================= + Lists + ========================================================================== */ + +/* mySociety change: left 40px, top/bottom 1em */ +ul, ol { margin: 0 0 1.5em; padding: 0 0 0 2em; } +dd { margin: 0 0 0 2em; } +nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; } + + +/* ============================================================================= + Embedded content + ========================================================================== */ + +/* + * 1. Improve image quality when scaled in IE7: h5bp.com/d + * 2. Remove the gap between images and borders on image containers: h5bp.com/e + */ + +img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; } + +/* + * Correct overflow not hidden in IE9 + */ + +svg:not(:root) { overflow: hidden; } + + +/* ============================================================================= + Figures + ========================================================================== */ + +figure { margin: 0; } + + +/* ============================================================================= + Forms + ========================================================================== */ + +form { margin: 0; } +fieldset { border: 0; margin: 0; padding: 0; } + +/* Indicate that 'label' will shift focus to the associated form element */ +label { cursor: pointer; } + +/* + * 1. Correct color not inheriting in IE6/7/8/9 + * 2. Correct alignment displayed oddly in IE6/7 + */ + +legend { border: 0; *margin-left: -7px; padding: 0; } + +/* + * 1. Correct font-size not inheriting in all browsers + * 2. Remove margins in FF3/4 S5 Chrome + * 3. Define consistent vertical alignment display in all browsers + */ + +button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; } + +/* + * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet) + */ + +button, input { line-height: normal; } + +/* + * 1. Display hand cursor for clickable form elements + * 2. Allow styling of clickable form elements in iOS + * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6) + */ + +button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; } + +/* + * Consistent box sizing and appearance + */ + +input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } +input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } +input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } + +/* + * Remove inner padding and border in FF3/4: h5bp.com/l + */ + +button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } + +/* + * 1. Remove default vertical scrollbar in IE6/7/8/9 + * 2. Allow only vertical resizing + */ + +textarea { overflow: auto; vertical-align: top; resize: vertical; } + + +/* ============================================================================= + Tables + ========================================================================== */ + +table { border-collapse: collapse; border-spacing: 0; } +td { vertical-align: top; } + + +/* ==|== primary styles ===================================================== + Author: + ========================================================================== */ + + + + + + + + + + + + + + + + +/* ==|== non-semantic helper classes ======================================== + Please define your styles before this section. + ========================================================================== */ + +/* For image replacement */ +.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; } +.ir br { display: none; } + +/* Hide from both screenreaders and browsers: h5bp.com/u */ +.hidden { display: none !important; visibility: hidden; } + +/* Hide only visually, but have it available for screenreaders: h5bp.com/v */ +.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } + +/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */ +.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } + +/* Hide visually and from screenreaders, but maintain layout */ +.invisible { visibility: hidden; } + +/* Contain floats: h5bp.com/q */ +/* mySociety change: rename to cf */ +.cf:before, .cf:after { content: ""; display: table; } +.cf:after { clear: both; } +.cf { *zoom: 1; } + + + +/* ==|== print styles ======================================================= + Print styles. + Inlined to avoid required HTTP connection: h5bp.com/r + ========================================================================== */ + +@media print { + * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */ + a, a:visited { text-decoration: underline; } + a[href]:after { content: " (" attr(href) ")"; } + abbr[title]:after { content: " (" attr(title) ")"; } + .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */ + pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } + thead { display: table-header-group; } /* h5bp.com/t */ + tr, img { page-break-inside: avoid; } + img { max-width: 100% !important; } + @page { margin: 0.5cm; } + p, h2, h3 { orphans: 3; widows: 3; } + h2, h3 { page-break-after: avoid; } +} diff --git a/web/cobrands/fixmystreet/base.scss b/web/cobrands/fixmystreet/base.scss new file mode 100644 index 000000000..affd3c46b --- /dev/null +++ b/web/cobrands/fixmystreet/base.scss @@ -0,0 +1,212 @@ +/* Base stylesheet for FixMyStreet look + * + * In a mobile first way, this contains the look of the site, and a basic + * layout for browsers that can't handle media queries. Baseline grid of 1.5em. + */ + +@import "_h5bp"; +@import "_colours"; + +/* HEADINGS and TYPOGRAPHY */ + +@font-face { + font-family: 'MuseoSansRounded-500'; + src: url('fonts/MuseoSansRounded500.eot'); + src: url('fonts/MuseoSansRounded500.eot?#iefix') format('embedded-opentype'), + url('fonts/MuseoSansRounded500.woff') format('woff'), + url('fonts/MuseoSansRounded500.ttf') format('truetype'), + url('fonts/MuseoSansRounded500.svg#MuseoSansRounded-500') format('svg'); +} + +h1, h2, h3, h4, h5, h6, #header { + font-family: 'MuseoSansRounded-500', sans-serif; + font-weight: normal; +} + +/* Opera has a bug (from around 10.5 upwards to current 11.6) with showing the + * table caption *at all* if the header is set to a font-face :( */ +noindex:-o-prefocus, #header { + font-family: sans-serif; +} + +/* Headings fit within the baseline grid, skewed towards the bottom. As the h1 + * appears first, if it appears, it needs no margin at all. */ +h1 { + font-size: 2em; + margin: 0; +} + +h2 { + font-size: 1.5em; + line-height: 1; + margin: 1.5em 0 0.5em; +} + +h3 { + font-size: 1.25em; + line-height: 1.2; + margin: 1.8em 0 0.6em; +} + +h4 { + font-size: 1.2em; + line-height: 1.25; + margin: 1.875em 0 0.625em; +} + +p { + margin: 0 0 1.5em; +} + +select, input, textarea { + font-size: 99%; + max-width: 95%; +} + + +/* LINKS */ + +a:link { + color: $colour; +} + +a:visited { + color: $colour_dark; +} + +a:active, a:hover { + color: #200; +} + + +/* LAYOUT */ + +/* header is a div containing a link on all pages bar the front page, when it + * is a h1 that is not a link. It should always display the same. */ +#header { + color: $colour; + display: block; + margin: 0 0 0.5em 0; + font-size: 200%; + + /* The link of the heading should not be underlined. */ + a { + text-decoration: none; + } + a:visited { + color: $colour; + } + a:hover { + color: #200; + } +} + +/* The "My" of "FixMyStreet" in the heading is coloured differently. */ +#my { + color: $colour_dark; +} + +#meta { + float: right; + list-style-type: none; + margin: -3em 0 0 1em; + padding: 0; + font-size: 0.875em; + li { + display: inline; + margin: 0; + padding: 0 0 0 0.25em; + } + li.last { + border-left: solid 1px $colour_dark; + } +} + +.container { + position: relative; + margin: auto; + overflow: hidden; +} + +/* Three wrapper divs are used in the source. At large screen widths, the + * default background colour is $colour, in order for the footer to stay the + * same at any depth. So the outermost wrapper changes this back to white at + * full width; the second wrapper sets a maximum width for the main content, + * with a little padding so it never hits the browser edge, and centred; and + * the third wrapper is a full width table, so that a table caption can be used + * to have correct source order.*/ +#wrapper { + background: #fff; +} + +#wrapper2 { + max-width: 59em; + padding: 0 0.5em; + margin: 0 auto; +} + +#top { + display: table; + width: 100%; + border-top: solid 1px $colour; + padding-top: 1.5em; + margin: 1.5em 0; +} + +.nav { + display: table-cell; + // width: 50%; +} +.ie6, .ie7 { + .nav { + float: left; + } +} + +#footer { + color: #fff; + padding: 0.5em; + background-color: $colour; + background-image: -webkit-linear-gradient(top, $colour_dark, $colour 6px); /* Chrome 10+, Saf5.1+, iOS 5+ */ + background-image: -moz-linear-gradient(top, $colour_dark, $colour 6px); /* FF3.6 */ + background-image: -ms-linear-gradient(top, $colour_dark, $colour 6px); /* IE10 */ + background-image: -o-linear-gradient(top, $colour_dark, $colour 6px); /* Opera 11.10+ */ + background-image: linear-gradient(top, $colour_dark, $colour 6px); + + a { + color: #fff; + } + + a:hover { + color: #000; + } + + p { + margin: 0.5em 0; + } +} + + +/* DISPLAY BITS */ + +a.unsuitable-report { + font-size: small; +} + +blockquote { + border-left: solid 4px $colour; +} + +.a { + color: #000000; + background-color: $colour_alt; +} + +#postcodeForm { + background-color: $colour_alt; +} + +#front_stats div { + background-color: $colour_alt; +} + diff --git a/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.eot b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.eot Binary files differnew file mode 100644 index 000000000..8517f0a04 --- /dev/null +++ b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.eot diff --git a/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.svg b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.svg new file mode 100644 index 000000000..572bef8e4 --- /dev/null +++ b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.svg @@ -0,0 +1,418 @@ +<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> +<metadata version="1.0"><uniqueid id="com.myfonts.exljbris.museo-sans-rounded.500.wfkit2.5nqn"/><vendor name="MyFonts" url="http://www.myfonts.com/"/><credits><credit name="Jos Buivenga" url="http://www.myfonts.com/person/buivenga/jos/"/></credits><description><text lang="en">This is a Webfont from MyFonts. Full information about this font: +http://www.myfonts.com/fonts/exljbris/museo-sans-rounded/500// +</text></description><license url="http://new.myfonts.com/license/922,1146"/><copyright><text lang="en">Copyright (c) 2011 by Jos Buivenga. All rights reserved.</text></copyright><trademark><text lang="en">Museo Sans Rounded is a trademark of Jos Buivenga.</text></trademark></metadata> +<defs > +<font id="MuseoSansRounded-500" horiz-adv-x="453" ><font-face + font-family="Museo Sans Rounded 500" + units-per-em="1000" + panose-1="2 0 0 0 0 0 0 0 0 0" + ascent="772" + descent="-228" + alphabetic="0" /> +<missing-glyph horiz-adv-x="549" d="M25 33V667Q25 700 58 700H492Q525 700 525 667V33Q525 0 492 0H58Q25 0 25 33ZM275 395L445 650H105L275 395ZM305 350L475 95V605L305 350ZM75 95L245 350L75 605V95ZM105 50H445L275 305L105 50Z" /> +<glyph unicode=" " glyph-name="space" horiz-adv-x="250" /> +<glyph unicode="!" glyph-name="exclam" horiz-adv-x="259" d="M118 194Q85 194 85 227L80 673Q80 706 112 706H146Q179 706 179 673L174 227Q172 194 140 194H118ZM80 33V65Q80 98 113 98H147Q180 98 180 65V33Q180 0 147 0H113Q80 0 80 33Z" /> +<glyph unicode=""" glyph-name="quotedbl" horiz-adv-x="329" d="M230 506Q197 506 197 539V685Q197 718 230 718H240Q273 718 273 685V539Q273 506 240 506H230ZM89 506Q56 506 56 539V685Q56 718 89 718H99Q132 718 132 685V539Q132 506 99 506H89Z" /> +<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="702" d="M143 35L170 191H76Q40 191 45 226L47 235Q51 265 83 265H183L212 433H119Q83 433 88 468L90 477Q95 506 125 506H225L254 677Q260 706 290 706H305Q341 706 335 671L306 506H461L490 677Q496 +706 527 706H541Q577 706 571 671L542 506H636Q672 506 667 471L665 462Q660 433 630 433H530L500 265H593Q629 265 624 229L622 221Q617 191 586 191H487L460 30Q454 0 423 0H409Q373 0 379 35L406 191H251L223 30Q219 0 187 0H173Q137 0 143 35ZM264 265H419L449 +433H293L264 265Z" /> +<glyph unicode="$" glyph-name="dollar" horiz-adv-x="536" d="M76 60Q50 80 71 106L87 129Q105 154 134 135Q207 80 287 80Q339 80 374 108T410 184Q410 224 375 253T288 304T186 351T100 419T64 521Q64 594 115 648T249 715V776Q249 809 281 809H289Q320 809 +320 780V716Q401 712 468 665Q492 650 477 620L464 595Q448 567 418 586Q355 626 291 626Q236 626 200 596T163 523Q163 495 182 473T231 434T299 403T373 370T440 328T490 269T509 187Q509 110 458 55T320 -10V-69Q320 -102 289 -102H281Q249 -102 249 -73V-10Q154 +-1 76 60Z" /> +<glyph unicode="%" glyph-name="percent" horiz-adv-x="755" d="M196 422Q133 422 89 465T44 570T88 674T196 718Q258 718 303 675T348 570T303 466T196 422ZM91 40L585 687Q600 706 625 706H643Q664 706 670 694T663 666L169 20Q153 0 129 0H111Q90 0 84 12T91 +40ZM196 496Q227 496 248 517T270 570T249 623T196 645T144 623T122 570Q122 538 143 517T196 496ZM407 136Q407 197 451 240T558 284T665 241T710 136T666 32T558 -12T451 31T407 136ZM485 167T485 136T506 84T558 62Q590 62 611 83T632 136Q632 167 611 189T558 +211T506 189Z" /> +<glyph unicode="&" glyph-name="ampersand" horiz-adv-x="644" d="M45 198Q45 258 78 309T170 379V381Q166 382 160 385T138 400T109 428T86 473T76 536Q76 622 136 670T293 718H339Q372 718 372 685V667Q372 634 339 634H298Q243 634 210 604T176 526Q176 +483 205 449T306 415H437V478Q437 511 470 511H501Q534 511 534 483V415H595Q628 415 628 382V362Q628 329 595 329H534V235Q534 118 469 53T290 -12Q181 -12 113 48T45 198ZM146 203Q146 151 186 115T290 79Q360 79 398 118T437 239V329H302Q227 329 187 296T146 +203Z" /> +<glyph unicode="'" glyph-name="quotesingle" horiz-adv-x="188" d="M88 530Q55 530 55 562V685Q55 718 88 718H100Q132 718 132 685V562Q132 530 100 530H88Z" /> +<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="275" d="M154 -75Q49 114 49 340Q49 537 152 713Q164 735 191 735H206Q225 735 231 725T229 697Q137 522 137 339Q137 131 231 -56Q239 -73 233 -84T208 -95H191Q165 -95 154 -75Z" /> +<glyph unicode=")" glyph-name="parenright" horiz-adv-x="275" d="M50 -54Q142 130 142 339Q142 524 51 697Q42 714 47 724T72 735H89Q116 735 128 713Q230 538 230 340Q230 113 128 -73Q116 -95 88 -95H73Q54 -95 48 -84T50 -54Z" /> +<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="473" d="M141 349L124 361Q97 380 119 406L185 491V493L82 522Q48 530 59 562L65 581Q76 615 106 602L208 564L204 672Q201 706 235 706H258Q292 706 289 673L284 564L386 601Q418 614 428 582L435 563Q444 +530 413 523L308 493V491L374 407Q397 381 369 361L353 349Q325 329 308 357L248 447H246L187 359Q168 329 141 349Z" /> +<glyph unicode="+" glyph-name="plus" horiz-adv-x="613" d="M75 246Q42 246 42 279V291Q42 324 75 324H266V537Q266 570 299 570H315Q348 570 348 537V324H538Q571 324 571 291V279Q571 246 538 246H348V33Q348 0 315 0H299Q266 0 266 33V246H75Z" /> +<glyph unicode="," glyph-name="comma" horiz-adv-x="237" d="M35 -87L87 77Q94 105 124 105H155Q174 105 181 95T181 67L113 -99Q103 -124 74 -124H63Q25 -124 35 -87Z" /> +<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="420" d="M97 242Q64 242 64 275V295Q64 328 97 328H323Q356 328 356 295V275Q356 242 323 242H97Z" /> +<glyph unicode="." glyph-name="period" horiz-adv-x="228" d="M62 33V72Q62 105 95 105H133Q166 105 166 72V33Q166 0 133 0H95Q62 0 62 33Z" /> +<glyph unicode="/" glyph-name="slash" horiz-adv-x="395" d="M46 -5L279 717Q288 744 317 744H335Q352 744 360 734T362 707L129 -15Q119 -42 91 -42H73Q55 -42 48 -32T46 -5Z" /> +<glyph unicode="0" glyph-name="zero" horiz-adv-x="622" d="M311 -12Q243 -12 193 16T115 95T74 210T61 354T74 497T115 611T193 690T311 718Q561 718 561 354Q561 -12 311 -12ZM163 79T311 79T459 354Q459 627 311 627T163 354Q163 79 311 79Z" /> +<glyph unicode="1" glyph-name="one" horiz-adv-x="469" d="M50 33V53Q50 86 83 86H206V542L207 585H205Q196 569 174 547L129 503Q104 480 83 504L69 518Q45 542 69 565L197 690Q214 706 237 706H269Q302 706 302 673V86H424Q457 86 457 53V33Q457 0 424 0H83Q50 +0 50 33Z" /> +<glyph unicode="2" glyph-name="two" horiz-adv-x="559" d="M48 33V54Q48 113 73 163T137 247T221 313T304 372T368 434T394 508Q394 560 359 592T267 625Q193 625 142 560Q118 534 95 553L77 567Q51 587 68 612Q97 653 148 685T274 718Q372 718 434 662T497 515Q497 +468 479 427T430 357T364 300T292 249T225 201T176 148T156 86H475Q508 86 508 53V33Q508 0 475 0H83Q48 0 48 33Z" /> +<glyph unicode="3" glyph-name="three" horiz-adv-x="556" d="M72 63Q48 82 67 109L83 132Q102 156 129 138Q198 82 274 82Q334 82 376 118T418 211Q418 273 371 307T254 341H232Q206 341 195 365L192 371Q181 394 200 414L336 575L380 621V623Q359 620 320 620H114Q81 +620 81 653V673Q81 706 114 706H470Q503 706 503 675V666Q503 642 488 626L311 422Q393 413 455 361T518 215T451 55T278 -12Q167 -12 72 63Z" /> +<glyph unicode="4" glyph-name="four" horiz-adv-x="597" d="M56 189Q23 189 23 222V228Q23 250 36 269L336 685Q350 706 375 706H430Q463 706 463 673V273H526Q559 273 559 240V222Q559 189 531 189H463V33Q463 0 430 0H398Q365 0 365 33V189H56ZM133 273H365V530L370 +600H368Q351 567 333 542L133 275V273Z" /> +<glyph unicode="5" glyph-name="five" horiz-adv-x="553" d="M85 65Q60 85 82 110L98 132Q117 156 143 136Q200 82 273 82Q337 82 382 122T428 225T382 329T267 370Q220 370 170 345Q146 336 126 343L117 346Q90 357 93 385L123 675Q126 706 157 706H449Q482 706 +482 673V653Q482 620 449 620H212L195 471L190 434H192Q231 456 283 456Q392 456 460 390T529 226Q529 124 458 56T279 -12Q165 -12 85 65Z" /> +<glyph unicode="6" glyph-name="six" horiz-adv-x="592" d="M55 319Q55 391 74 460T131 587T232 682T373 718Q432 718 479 701Q510 690 498 659L489 634Q479 606 449 614Q412 627 377 627Q285 627 231 557T163 386H165Q188 417 231 437T328 457Q424 457 485 392T546 +230Q546 125 482 57T318 -12Q204 -12 130 80T55 319ZM158 270Q158 204 205 142T318 79Q377 79 412 119T447 225Q447 291 408 332T299 373Q240 373 199 343T158 270Z" /> +<glyph unicode="7" glyph-name="seven" horiz-adv-x="515" d="M97 39L353 556L392 621V623Q378 620 343 620H60Q27 620 27 653V673Q27 706 60 706H466Q499 706 499 675V659Q499 636 490 619L192 24Q181 0 154 0H121Q102 0 96 11T97 39Z" /> +<glyph unicode="8" glyph-name="eight" horiz-adv-x="599" d="M54 199Q54 312 167 391Q82 447 82 533Q82 609 139 663T302 718Q402 718 464 667T526 532Q526 438 442 347Q542 287 542 194Q542 110 475 49T300 -12Q194 -12 124 48T54 199ZM367 383Q429 450 429 +521Q429 573 394 602T302 632T212 604T179 532Q179 515 184 501T200 474T223 453T254 434T288 417T327 400T367 383ZM153 209Q153 150 196 113T300 75Q356 75 398 109T441 194Q441 214 433 231T414 259T380 284T341 304T290 326T238 349Q153 285 153 209Z" /> +<glyph unicode="9" glyph-name="nine" horiz-adv-x="592" d="M94 47L103 73Q113 100 143 92Q190 79 215 79Q307 79 361 149T429 320H427Q404 289 360 270T263 250Q168 250 107 315T46 479Q46 584 110 651T273 718Q388 718 462 627T537 388Q537 316 518 247T461 +119T361 24T219 -12Q157 -12 113 6Q82 15 94 47ZM293 333Q351 333 392 364T434 436Q434 502 387 564T274 627Q215 627 180 587T145 481Q145 415 184 374T293 333Z" /> +<glyph unicode=":" glyph-name="colon" horiz-adv-x="232" d="M98 403Q66 403 66 436V473Q66 506 98 506H134Q167 506 167 473V436Q167 403 134 403H98ZM66 33V70Q66 103 98 103H134Q167 103 167 70V33Q167 0 134 0H98Q66 0 66 33Z" /> +<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="273" d="M139 401Q106 401 106 434V473Q106 506 139 506H174Q207 506 207 473V434Q207 401 174 401H139ZM56 -88L100 77Q107 105 137 105H168Q187 105 194 95T194 67L134 -98Q125 -124 96 -124H84Q48 -124 +56 -88Z" /> +<glyph unicode="<" glyph-name="less" horiz-adv-x="613" d="M84 241Q59 251 59 279V290Q59 318 84 329L486 508Q503 515 514 509T525 484V464Q525 438 499 426L167 286V284L499 143Q525 133 525 105V86Q525 67 514 60T486 61L84 241Z" /> +<glyph unicode="=" glyph-name="equal" horiz-adv-x="613" d="M101 340Q68 340 68 373V385Q68 418 101 418H512Q545 418 545 385V373Q545 340 512 340H101ZM101 151Q68 151 68 184V196Q68 229 101 229H512Q545 229 545 196V184Q545 151 512 151H101Z" /> +<glyph unicode=">" glyph-name="greater" horiz-adv-x="613" d="M88 86V105Q88 133 113 143L445 284V286L113 426Q88 438 88 464V484Q88 503 98 509T126 509L529 329Q554 317 554 290V279Q554 251 529 241L126 61Q109 54 99 60T88 86Z" /> +<glyph unicode="?" glyph-name="question" horiz-adv-x="456" d="M190 194Q157 194 157 227V247Q157 286 174 318T217 374T267 419T309 470T327 530Q327 572 295 600T212 629Q168 629 125 604Q94 588 78 613L65 631Q46 659 71 676Q139 720 219 720Q307 720 367 +669T428 537Q428 493 411 457T368 396T318 350T273 300T252 240L251 219Q247 194 219 194H190ZM154 33V65Q154 98 187 98H222Q255 98 255 65V33Q255 0 222 0H187Q154 0 154 33Z" /> +<glyph unicode="@" glyph-name="at" horiz-adv-x="794" d="M52 241Q52 396 158 503T418 611Q552 611 614 554T677 408V125H716Q749 125 749 92V85Q749 52 716 52H476Q385 52 327 107T269 241Q269 318 326 373T476 428H584Q582 473 540 502T422 531Q307 531 228 +446T149 241Q149 129 219 48T401 -45Q433 -48 433 -79V-92Q433 -127 399 -124Q247 -113 150 -9T52 241ZM367 242Q367 193 400 159T484 125H584V361H486Q434 361 401 327T367 242Z" /> +<glyph unicode="A" glyph-name="A" horiz-adv-x="621" d="M24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 545 +288 509L209 285Z" /> +<glyph unicode="B" glyph-name="B" horiz-adv-x="617" d="M90 33V673Q90 706 123 706H337Q428 706 484 658T541 526Q541 475 518 435T454 374V372Q508 356 539 309T570 201Q570 105 506 53T342 0H123Q90 0 90 33ZM188 409H337Q384 409 412 439T441 516T413 591T335 +620H188V409ZM188 86H347Q404 86 436 119T469 206T436 293T347 327H188V86Z" /> +<glyph unicode="C" glyph-name="C" horiz-adv-x="707" d="M46 357Q46 512 147 615T405 718Q541 718 639 645Q662 627 645 599L632 579Q615 553 586 571Q502 627 409 627Q289 627 219 550T148 358Q148 241 220 160T410 79Q513 79 602 148Q629 169 648 144L663 124Q682 +99 658 78Q550 -12 407 -12Q246 -12 146 93T46 357Z" /> +<glyph unicode="D" glyph-name="D" horiz-adv-x="729" d="M90 33V673Q90 706 123 706H324Q487 706 584 613T682 354Q682 188 585 94T324 0H123Q90 0 90 33ZM188 86H317Q438 86 509 156T580 354Q580 481 509 550T317 620H188V86Z" /> +<glyph unicode="E" glyph-name="E" horiz-adv-x="555" d="M90 33V673Q90 706 123 706H467Q500 706 500 673V653Q500 620 467 620H188V399H409Q442 399 442 366V346Q442 313 409 313H188V86H484Q517 86 517 53V33Q517 0 484 0H123Q90 0 90 33Z" /> +<glyph unicode="F" glyph-name="F" horiz-adv-x="505" d="M90 33V673Q90 706 123 706H446Q479 706 479 673V653Q479 620 446 620H188V388H402Q435 388 435 355V335Q435 302 402 302H188V33Q188 0 155 0H123Q90 0 90 33Z" /> +<glyph unicode="G" glyph-name="G" horiz-adv-x="751" d="M46 194T46 351T148 613T406 718Q484 718 544 697T638 652Q663 633 645 607L631 586Q615 561 585 577Q503 627 411 627Q292 627 220 549T148 355Q148 235 222 157T406 79Q442 79 476 88T533 111T573 137T599 +160L607 170V269H525Q492 269 492 302V322Q492 355 525 355H664Q697 355 697 322V33Q697 0 664 0H645Q612 0 612 28V54L613 76H611Q608 72 602 67T576 46T532 19T471 -2T393 -12Q248 -12 147 91Z" /> +<glyph unicode="H" glyph-name="H" horiz-adv-x="743" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V395H555V673Q555 706 588 706H621Q653 706 653 673V33Q653 0 621 0H588Q555 0 555 33V310H188V33Q188 0 155 0H123Q90 0 90 33Z" /> +<glyph unicode="I" glyph-name="I" horiz-adv-x="278" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V33Q188 0 155 0H123Q90 0 90 33Z" /> +<glyph unicode="J" glyph-name="J" horiz-adv-x="522" d="M22 205Q22 238 55 238H89Q105 238 112 231T121 204Q124 147 151 113T231 79Q279 79 310 109T342 204V620H197Q165 620 165 653V673Q165 706 197 706H407Q440 706 440 673V203Q440 96 379 42T232 -12Q145 +-12 84 43T22 205Z" /> +<glyph unicode="K" glyph-name="K" horiz-adv-x="605" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V409H294L459 684Q471 706 498 706H535Q555 706 561 695T558 666L375 371V369L571 39Q581 22 575 11T549 0H508Q482 0 469 23L294 324H188V33Q188 0 155 +0H123Q90 0 90 33Z" /> +<glyph unicode="L" glyph-name="L" horiz-adv-x="510" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V86H472Q505 86 505 53V33Q505 0 472 0H123Q90 0 90 33Z" /> +<glyph unicode="M" glyph-name="M" horiz-adv-x="845" d="M68 34L120 675Q123 706 154 706H199Q227 706 236 680L389 324L424 229H426Q444 285 460 324L613 680Q622 706 650 706H695Q726 706 729 675L781 34Q783 0 749 0H717Q686 0 683 32L651 445L649 549H647Q625 +484 609 445L479 153Q469 127 441 127H408Q380 127 370 153L240 445L202 551H200Q202 488 198 445L166 32Q163 0 133 0H100Q66 0 68 34Z" /> +<glyph unicode="N" glyph-name="N" horiz-adv-x="744" d="M90 33V673Q90 706 123 706H161Q187 706 201 684L502 247Q513 230 527 205T551 162L560 145H562Q556 208 556 247V673Q556 706 589 706H621Q654 706 654 673V33Q654 0 621 0H583Q556 0 544 22L242 458L184 +561H182Q188 498 188 458V33Q188 0 155 0H123Q90 0 90 33Z" /> +<glyph unicode="O" glyph-name="O" horiz-adv-x="815" d="M45 358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="P" glyph-name="P" horiz-adv-x="596" d="M90 33V673Q90 706 123 706H348Q446 706 507 646T569 485T507 323T348 261H188V33Q188 0 155 0H123Q90 0 90 33ZM188 347H332Q396 347 432 384T469 485Q469 548 433 584T333 620H188V347Z" /> +<glyph unicode="Q" glyph-name="Q" horiz-adv-x="816" d="M46 357Q46 511 149 614T407 718Q565 718 668 615T771 357Q771 225 688 124L746 66Q770 45 749 20L736 6Q712 -18 691 4L631 64Q536 -12 407 -12Q251 -12 149 94T46 357ZM148 357Q148 239 222 159T407 +79Q498 79 561 131L502 190Q478 211 500 236L513 249Q535 275 557 253L617 192Q669 264 669 357Q669 473 594 550T407 627Q296 627 222 550T148 357Z" /> +<glyph unicode="R" glyph-name="R" horiz-adv-x="617" d="M90 33V673Q90 706 123 706H313Q403 706 445 687Q497 664 526 616T556 502Q556 434 522 381T430 308V306Q439 296 451 274L578 39Q588 22 582 11T556 0H516Q488 0 477 23L339 281H188V33Q188 0 155 0H123Q90 +0 90 33ZM188 367H330Q388 367 422 403T456 498Q456 580 390 608Q363 620 306 620H188V367Z" /> +<glyph unicode="S" glyph-name="S" horiz-adv-x="537" d="M77 61Q54 82 73 107L90 131Q108 154 135 137Q214 80 289 80Q345 80 379 107T413 181Q413 224 378 254T293 306T193 351T108 418T73 522Q73 610 138 664T302 718Q358 718 405 701T479 664Q503 647 489 +619L475 594Q460 567 430 585Q361 626 300 626Q244 626 209 599T173 527Q173 492 198 465T261 423T343 386T425 344T488 282T513 189Q513 103 453 46T289 -12Q221 -12 166 11T77 61Z" /> +<glyph unicode="T" glyph-name="T" horiz-adv-x="595" d="M249 33V620H39Q6 620 6 653V673Q6 706 39 706H557Q589 706 589 673V653Q589 620 557 620H347V33Q347 0 314 0H281Q249 0 249 33Z" /> +<glyph unicode="U" glyph-name="U" horiz-adv-x="717" d="M81 250V673Q81 706 114 706H147Q179 706 179 673V251Q179 171 227 125T358 79T488 125T537 252V673Q537 706 570 706H603Q636 706 636 673V250Q636 132 560 60T359 -12Q234 -12 158 60T81 250Z" /> +<glyph unicode="V" glyph-name="V" horiz-adv-x="623" d="M256 27L21 668Q15 685 22 695T48 706H86Q114 706 123 679L289 207L316 110H318Q333 169 345 207L513 679Q522 706 550 706H587Q606 706 613 696T614 668L379 27Q370 0 342 0H294Q266 0 256 27Z" /> +<glyph unicode="W" glyph-name="W" horiz-adv-x="945" d="M210 29L47 670Q39 706 76 706H111Q141 706 148 677L265 188L278 113H280Q286 149 297 188L428 678Q435 706 465 706H493Q523 706 529 678L660 188L676 113H678Q683 150 692 188L815 677Q822 706 852 706H886Q923 +706 915 670L746 28Q739 0 709 0H654Q626 0 618 28L502 458L480 558H477Q467 503 455 458L339 28Q331 0 302 0H247Q218 0 210 29Z" /> +<glyph unicode="X" glyph-name="X" horiz-adv-x="587" d="M41 39L239 364L55 667Q45 684 51 695T77 706H119Q143 706 158 684L255 515L300 431H302Q323 476 346 515L445 684Q457 706 483 706H525Q545 706 551 695T547 667L361 364L560 39Q571 22 565 11T538 0H499Q473 +0 460 23L345 217L300 298H298Q278 256 255 217L141 23Q128 0 102 0H64Q44 0 37 11T41 39Z" /> +<glyph unicode="Y" glyph-name="Y" horiz-adv-x="567" d="M241 33V299L27 667Q17 684 24 695T50 706H90Q117 706 128 683L247 474L290 385H292Q313 434 335 474L453 683Q465 706 491 706H531Q550 706 557 695T554 667L340 299V33Q340 0 307 0H274Q241 0 241 33Z" /> +<glyph unicode="Z" glyph-name="Z" horiz-adv-x="588" d="M32 33V43Q32 65 46 85L372 556Q384 574 396 590T416 614L423 621V623Q404 620 370 620H83Q50 620 50 653V673Q50 706 83 706H513Q546 706 546 674V664Q546 642 533 622L206 150Q194 133 181 117T162 94L155 +86V84Q174 86 208 86H517Q550 86 550 53V33Q550 0 517 0H65Q32 0 32 33Z" /> +<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="285" d="M80 -62V703Q80 735 113 735H213Q245 735 245 703V695Q245 662 214 662H165V-21H213Q245 -21 245 -54V-62Q245 -95 213 -95H113Q80 -95 80 -62Z" /> +<glyph unicode="\" glyph-name="backslash" horiz-adv-x="395" d="M277 -15L44 707Q39 724 46 734T72 744H89Q118 744 127 717L361 -5Q366 -22 359 -32T333 -42H315Q287 -42 277 -15Z" /> +<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="285" d="M40 -54Q40 -21 72 -21H120V662H72Q40 662 40 695V703Q40 735 72 735H172Q205 735 205 703V-62Q205 -95 172 -95H72Q40 -95 40 -62V-54Z" /> +<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="613" d="M118 247Q99 247 92 258T93 286L265 681Q275 706 303 706H312Q340 706 350 681L522 286Q530 269 523 258T496 247H479Q452 247 441 273L307 599L174 273Q163 247 136 247H118Z" /> +<glyph unicode="_" glyph-name="underscore" horiz-adv-x="550" d="M6 -33Q6 0 39 0H511Q544 0 544 -33V-45Q544 -78 511 -78H39Q6 -78 6 -45V-33Z" /> +<glyph unicode="`" glyph-name="grave" horiz-adv-x="499" d="M285 755Q261 755 245 775L196 842Q183 858 187 870T213 882H243Q269 882 282 859L321 791Q330 777 326 766T305 755H285Z" /> +<glyph unicode="a" glyph-name="a" horiz-adv-x="517" d="M29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 0 421 0H396Q363 +0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146Z" /> +<glyph unicode="b" glyph-name="b" horiz-adv-x="592" d="M71 33V673Q71 706 104 706H135Q167 706 167 673V468L164 425H166Q168 429 171 435T189 457T221 485T267 508T331 518Q431 518 491 445T552 254Q552 134 488 61T323 -12Q290 -12 261 -2T215 22T184 50T166 +74L161 84H159Q162 72 162 54V29Q162 0 129 0H104Q71 0 71 33ZM165 253Q165 178 202 125T307 72Q370 72 412 120T454 252Q454 334 415 383T311 433Q249 433 207 388T165 253Z" /> +<glyph unicode="c" glyph-name="c" horiz-adv-x="531" d="M37 253Q37 366 113 442T307 518Q405 518 474 464Q500 447 480 419L470 404Q454 379 425 396Q372 434 312 434Q236 434 186 383T136 254T186 124T314 72Q382 72 443 118Q471 136 488 109L496 94Q512 67 +487 50Q412 -12 307 -12Q188 -12 113 63T37 253Z" /> +<glyph unicode="d" glyph-name="d" horiz-adv-x="592" d="M39 253Q39 373 103 445T268 518Q300 518 328 509T374 487T403 462T420 440L425 431H427Q424 446 424 465V673Q424 706 457 706H488Q521 706 521 673V33Q521 0 488 0H462Q429 0 429 31V60L431 85H429Q427 +81 424 75T406 52T375 22T327 -1T262 -12Q160 -12 100 61T39 253ZM138 253Q138 171 177 122T281 72Q343 72 385 117T427 254Q427 327 390 380T283 433Q221 433 180 385T138 253Z" /> +<glyph unicode="e" glyph-name="e" horiz-adv-x="545" d="M38 253Q38 372 109 445T291 518Q394 518 451 452T509 277Q509 263 500 253T475 243H137Q141 163 191 118T312 72Q379 72 433 112Q463 128 478 101L487 86Q504 58 477 42Q400 -12 306 -12Q188 -12 113 +63T38 253ZM141 307H412Q410 372 376 407T289 442Q233 442 192 406T141 307Z" /> +<glyph unicode="f" glyph-name="f" horiz-adv-x="322" d="M92 33V422H60Q27 422 27 455V468Q27 501 60 501H92V525Q92 570 106 605T141 660T188 691T235 707T275 711H287Q320 711 320 678V659Q320 629 285 626Q267 625 254 622T224 609T198 577T189 521V501H276Q309 +501 309 468V455Q309 422 276 422H189V33Q189 0 156 0H125Q92 0 92 33Z" /> +<glyph unicode="g" glyph-name="g" horiz-adv-x="585" d="M106 -121Q119 -93 148 -104Q207 -126 258 -126Q328 -126 372 -92T417 16V60L420 92H418Q371 6 268 6Q164 6 102 79T40 266Q40 377 99 447T266 518Q301 518 330 509T376 488T404 464T420 442L424 433H426Q424 +439 424 449V478Q424 506 457 506H481Q514 506 514 473V21Q514 -95 441 -152T263 -210Q180 -210 116 -182Q86 -169 99 -138L106 -121ZM285 90Q344 90 381 131T419 263Q419 434 279 434Q212 434 176 390T139 270Q139 188 178 139T285 90Z" /> +<glyph unicode="h" glyph-name="h" horiz-adv-x="592" d="M71 33V673Q71 706 104 706H135Q167 706 167 673V444L164 402H166Q186 446 236 482T355 518Q529 518 529 324V33Q529 0 496 0H465Q432 0 432 33V302Q432 363 412 396T336 429Q263 429 215 376T167 240V33Q167 +0 135 0H104Q71 0 71 33Z" /> +<glyph unicode="i" glyph-name="i" horiz-adv-x="237" d="M102 607Q69 607 69 640V673Q69 706 102 706H136Q169 706 169 673V640Q169 607 136 607H102ZM70 33V473Q70 506 103 506H134Q167 506 167 473V33Q167 0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="j" glyph-name="j" horiz-adv-x="238" d="M102 607Q69 607 69 640V673Q69 706 102 706H136Q169 706 169 673V640Q169 607 136 607H102ZM71 -11V473Q71 506 104 506H135Q167 506 167 473V-15Q167 -62 153 -98T118 -154T70 -186T23 -202T-15 -206H-27Q-60 +-206 -60 -173V-155Q-60 -126 -27 -122Q-9 -121 5 -117T36 -102T62 -68T71 -11Z" /> +<glyph unicode="k" glyph-name="k" horiz-adv-x="509" d="M71 33V673Q71 706 104 706H135Q167 706 167 673V321H240L363 485Q376 506 402 506H439Q459 506 465 494T459 466L319 283V281L481 40Q492 23 486 12T459 0H419Q393 0 380 23L242 237H167V33Q167 0 135 +0H104Q71 0 71 33Z" /> +<glyph unicode="l" glyph-name="l" horiz-adv-x="262" d="M70 138V673Q70 706 103 706H134Q167 706 167 673V150Q167 87 213 83Q239 80 239 54V30Q239 -4 205 -4Q70 -4 70 138Z" /> +<glyph unicode="m" glyph-name="m" horiz-adv-x="902" d="M70 33V473Q70 506 103 506H131Q164 506 164 473V428L161 399H163Q183 446 232 482T339 518Q464 518 491 403H493Q515 450 564 484T672 518Q758 518 798 470T839 324V33Q839 0 806 0H775Q742 0 742 33V303Q742 +364 724 397T653 430Q586 430 545 372T503 236V33Q503 0 471 0H439Q407 0 407 33V303Q407 363 390 396T319 430Q251 430 209 371T167 236V33Q167 0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="n" glyph-name="n" horiz-adv-x="591" d="M70 33V473Q70 506 103 506H131Q164 506 164 473V428L161 399H163Q183 443 232 480T355 518Q528 518 528 324V33Q528 0 495 0H464Q431 0 431 33V302Q431 363 412 396T336 429Q263 429 215 375T167 242V33Q167 +0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="o" glyph-name="o" horiz-adv-x="619" d="M37 140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 -12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383Z" /> +<glyph unicode="p" glyph-name="p" horiz-adv-x="592" d="M71 -167V473Q71 506 104 506H127Q160 506 160 478V448L158 421H160Q162 425 165 431T183 454T215 484T263 507T330 518Q431 518 491 445T552 253T488 61T323 -12Q291 -12 263 -3T218 20T189 46T171 68L166 +78H164Q167 60 167 34V-167Q167 -200 135 -200H104Q71 -200 71 -167ZM165 251Q165 179 203 126T308 72Q370 72 412 120T454 252Q454 334 415 383T311 433Q249 433 207 388T165 251Z" /> +<glyph unicode="q" glyph-name="q" horiz-adv-x="592" d="M39 253Q39 373 103 445T269 518Q303 518 332 509T378 485T408 457T426 434L431 424H433Q431 436 431 452V478Q431 506 464 506H488Q521 506 521 473V-167Q521 -200 488 -200H457Q424 -200 424 -167V38L427 +82H425Q423 78 420 72T403 50T372 21T325 -2T260 -12Q161 -12 100 61T39 253ZM138 253Q138 171 177 122T281 72Q343 72 385 117T427 254Q427 327 390 380T283 433Q221 433 180 385T138 253Z" /> +<glyph unicode="r" glyph-name="r" horiz-adv-x="356" d="M70 33V473Q70 506 103 506H131Q164 506 164 473V415L161 377H163Q181 432 222 471T318 510Q350 510 350 477V449Q350 416 314 416Q244 416 206 354T167 209V33Q167 0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="s" glyph-name="s" horiz-adv-x="439" d="M68 43Q43 59 61 88L71 102Q88 125 117 109Q180 68 241 68Q279 68 303 85T327 135Q327 162 300 180T235 212T158 242T93 292T66 372Q66 441 118 479T249 518T389 479Q417 465 400 435L391 420Q377 395 +347 409Q296 438 244 438Q206 438 183 422T159 374Q159 347 186 328T251 296T328 267T393 218T420 137Q420 72 370 30T238 -12Q141 -12 68 43Z" /> +<glyph unicode="t" glyph-name="t" horiz-adv-x="342" d="M94 182V422H59Q27 422 27 455V468Q27 501 60 501H96V612Q96 645 129 645H158Q191 645 191 612V501H279Q312 501 312 468V455Q312 422 280 422H191V197Q191 91 287 83Q307 81 314 74T322 50V29Q322 -4 +282 -4Q201 -4 148 43T94 182Z" /> +<glyph unicode="u" glyph-name="u" horiz-adv-x="587" d="M64 182V473Q64 506 97 506H128Q160 506 160 473V204Q160 144 180 111T255 78Q330 78 375 134T420 269V473Q420 506 453 506H484Q517 506 517 473V33Q517 0 484 0H456Q423 0 423 33V78L426 107H424Q404 +62 354 25T236 -12Q150 -12 107 35T64 182Z" /> +<glyph unicode="v" glyph-name="v" horiz-adv-x="499" d="M191 26L25 468Q19 485 26 495T51 506H85Q113 506 122 479L236 164L254 95H256Q265 136 274 164L388 479Q397 506 425 506H459Q477 506 484 496T485 468L321 26Q312 0 284 0H228Q200 0 191 26Z" /> +<glyph unicode="w" glyph-name="w" horiz-adv-x="803" d="M171 28L28 469Q23 486 30 496T56 506H89Q119 506 126 478L225 151L237 97H239Q245 125 253 151L355 477Q361 505 391 505H422Q452 505 459 477L561 151L574 97H576Q581 125 589 151L688 478Q694 506 724 +506H757Q775 506 782 496T785 469L642 28Q635 0 605 0H556Q526 0 519 28L422 325L408 380H406Q400 351 391 325L295 28Q288 0 258 0H208Q178 0 171 28Z" /> +<glyph unicode="x" glyph-name="x" horiz-adv-x="483" d="M41 40L188 260L50 466Q39 483 45 494T72 506H110Q136 506 148 483L230 352L246 322H248Q258 339 265 352L346 483Q359 506 385 506H422Q442 506 448 495T444 466L307 260L454 40Q465 23 459 12T432 0H396Q370 +0 357 23L264 169L248 197H246Q239 181 231 169L138 23Q125 0 99 0H63Q43 0 37 11T41 40Z" /> +<glyph unicode="y" glyph-name="y" horiz-adv-x="502" d="M35 -134Q46 -110 72 -117Q100 -128 112 -128Q141 -128 163 -107T199 -52L224 6L28 468Q21 485 28 495T53 506H92Q120 506 129 480L248 175L266 114H268Q276 148 285 174L400 479Q409 506 437 506H473Q491 +506 498 496T499 468L276 -89Q254 -147 210 -178T112 -210Q81 -210 42 -194Q13 -182 27 -151L35 -134Z" /> +<glyph unicode="z" glyph-name="z" horiz-adv-x="500" d="M31 28V36Q31 56 45 74L286 376L328 423V425Q312 423 279 423H75Q42 423 42 456V473Q42 506 75 506H426Q459 506 459 478V470Q459 450 445 432L204 129L161 83V81Q177 83 210 83H434Q467 83 467 51V33Q467 +0 434 0H64Q31 0 31 28Z" /> +<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="325" d="M112 77V173Q112 249 54 274Q27 288 27 311V340Q27 362 54 376Q112 404 112 479V562Q112 615 128 653T170 707T215 730T254 737H265Q298 737 298 704V692Q298 659 265 659Q197 659 197 554V454Q197 +426 189 403T168 367T145 344T124 330L116 327V325Q119 324 124 322T144 310T168 287T188 251T197 198V85Q197 51 204 29T224 -3T245 -16T265 -20Q298 -20 298 -53V-65Q298 -98 265 -98H254Q236 -98 216 -92T170 -69T129 -14T112 77Z" /> +<glyph unicode="|" glyph-name="bar" horiz-adv-x="243" d="M79 -126V759Q79 792 112 792H131Q164 792 164 759V-126Q164 -159 131 -159H112Q79 -159 79 -126Z" /> +<glyph unicode="}" glyph-name="braceright" horiz-adv-x="326" d="M27 -53Q27 -20 60 -20Q70 -20 79 -17T101 -4T120 28T128 85V198Q128 227 136 250T156 287T180 310T200 322L209 325V327Q206 328 201 330T181 343T157 366T137 402T128 454V554Q128 659 60 659Q27 +659 27 692V704Q27 737 60 737H71Q85 737 100 734T137 719T174 690T201 638T213 562V479Q213 404 271 376Q298 362 298 340V311Q298 288 271 274Q213 249 213 173V77Q213 34 202 1T174 -50T137 -80T101 -94T71 -98H60Q27 -98 27 -65V-53Z" /> +<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="589" d="M96 204Q59 204 65 247Q82 373 202 373Q237 373 265 358T309 324T346 291T394 275Q442 275 456 338Q467 369 491 369H506Q522 369 530 360T537 334Q524 200 400 200Q365 200 337 215T293 248T256 +282T208 297Q159 297 146 234Q135 204 111 204H96Z" /> +<glyph unicode=" " glyph-name="uni00A0" horiz-adv-x="250" /> +<glyph unicode="¡" glyph-name="exclamdown" horiz-adv-x="253" d="M138 312Q171 312 171 279L176 -167Q176 -200 144 -200H110Q77 -200 77 -167L82 279Q84 312 116 312H138ZM176 473V441Q176 408 143 408H109Q76 408 76 441V473Q76 506 109 506H143Q176 +506 176 473Z" /> +<glyph unicode="¢" glyph-name="cent" horiz-adv-x="559" d="M258 20V73Q162 86 105 164T48 353Q48 464 105 542T258 634V685Q258 718 290 718H298Q329 718 329 690V634Q385 627 431 593T503 510Q518 481 486 467L458 456Q432 447 415 472Q371 544 298 544Q226 +544 187 491T147 352Q147 267 186 215T298 163T415 235Q433 260 458 251L486 240Q518 226 503 197Q478 149 432 114T329 73V20Q329 -13 298 -13H290Q258 -13 258 20Z" /> +<glyph unicode="£" glyph-name="sterling" horiz-adv-x="578" d="M53 33V53Q53 86 86 86H116V319H95Q65 319 65 351V357Q65 389 95 389H116V525Q116 608 177 663T333 718Q407 718 474 675Q501 655 478 629L463 609Q445 587 417 604Q376 628 334 628Q280 628 +248 598T216 521V389H367Q400 389 400 357V351Q400 319 367 319H216V86H508Q541 86 541 53V33Q541 0 508 0H86Q53 0 53 33Z" /> +<glyph unicode="¥" glyph-name="yen" horiz-adv-x="590" d="M121 199Q88 199 88 228V234Q88 262 121 262H251V299L224 347H121Q88 347 88 376V382Q88 410 117 410H191L46 667Q37 684 43 695T70 706H111Q139 706 149 681L257 486L300 384H302Q323 439 345 +486L453 681Q463 706 491 706H532Q552 706 558 695T556 667L411 410H480Q513 410 513 382V376Q513 347 480 347H377L351 299V262H480Q513 262 513 234V228Q513 199 480 199H351V33Q351 0 318 0H284Q251 0 251 33V199H121Z" /> +<glyph unicode="§" glyph-name="section" horiz-adv-x="439" d="M151 140L86 501Q81 526 81 547Q81 622 132 670T270 718Q333 718 384 686Q411 669 392 640L383 628Q366 607 338 620Q302 637 270 637Q223 637 193 611T163 536Q163 518 169 496L228 147Q232 +130 224 121T199 111H187Q157 111 151 140ZM84 16L92 29Q108 53 137 38Q169 19 207 19Q253 19 283 46T313 124Q313 144 307 169L249 509Q245 526 253 535T278 545H290Q320 545 326 516L390 155Q395 128 395 110Q395 34 344 -14T206 -62Q145 -62 92 -29Q64 -12 84 +16Z" /> +<glyph unicode="¨" glyph-name="dieresis" horiz-adv-x="499" d="M326 781Q293 781 293 814V849Q293 882 326 882H340Q373 882 373 849V814Q373 781 340 781H326ZM159 781Q126 781 126 814V849Q126 882 159 882H173Q206 882 206 849V814Q206 781 173 781H159Z" /> +<glyph unicode="©" glyph-name="copyright" horiz-adv-x="816" d="M51 201T51 353T154 611T406 718Q555 718 660 612T765 353T660 95T406 -12Q258 -12 155 94ZM124 478T124 353T205 142T406 56Q527 56 609 142T692 353T610 564T406 650Q287 650 206 564ZM217 +352Q217 434 271 493T415 552Q464 552 501 530T559 482Q575 460 556 445L543 434Q524 417 503 441Q466 483 417 483Q359 483 326 445T292 351Q292 296 325 259T417 221Q471 221 507 265Q525 286 543 269L555 260Q575 243 559 221Q501 152 415 152Q325 152 271 210T217 +352Z" /> +<glyph unicode="ª" glyph-name="ordfeminine" horiz-adv-x="400" d="M172 382Q128 382 95 408T62 480Q62 589 251 589H261V595Q261 658 198 658Q168 658 138 643Q112 632 101 652L98 658Q84 682 114 695Q156 716 206 716Q268 716 300 684T333 590V422Q333 +389 303 389H299Q268 389 268 420V441H266Q263 434 257 425T226 399T172 382ZM186 441Q219 441 240 468T261 530V538H249Q135 538 135 484Q135 466 148 454T186 441ZM95 265Q62 265 62 292V296Q62 322 95 322H304Q337 322 337 296V292Q337 265 304 265H95Z" /> +<glyph unicode="«" glyph-name="guillemotleft" horiz-adv-x="523" d="M271 259Q253 282 271 305L401 469Q417 488 441 488H462Q483 488 488 476T481 448L350 282L481 117Q495 100 490 89T465 77H441Q417 77 401 96L271 259ZM199 96L70 259Q50 282 70 305L199 +469Q215 488 240 488H260Q281 488 286 476T279 448L148 282L279 117Q292 100 288 89T264 77H240Q215 77 199 96Z" /> +<glyph unicode="¬" glyph-name="logicalnot" horiz-adv-x="617" d="M99 340Q66 340 66 373V385Q66 418 99 418H510Q543 418 543 385V184Q543 151 510 151H495Q462 151 462 184V340H99Z" /> +<glyph unicode="­" glyph-name="uni00AD" horiz-adv-x="420" d="M97 242Q64 242 64 275V295Q64 328 97 328H323Q356 328 356 295V275Q356 242 323 242H97Z" /> +<glyph unicode="®" glyph-name="registered" horiz-adv-x="816" d="M51 201T51 353T155 611T406 718Q556 718 660 612T765 353T661 95T406 -12Q259 -12 155 94ZM124 478T124 353T205 142T406 56Q527 56 609 142T692 353T610 564T406 650Q287 650 206 564ZM284 +198V510Q284 543 317 543H430Q483 543 515 512T548 428Q548 388 527 362T479 328V326Q483 322 492 305L544 204Q553 187 548 177T526 166H514Q486 166 475 190L417 312H355V198Q355 166 324 166H315Q284 166 284 198ZM355 364H415Q444 364 460 381T476 428Q476 +457 460 473T416 489H355V364Z" /> +<glyph unicode="¯" glyph-name="overscore" horiz-adv-x="499" d="M155 784Q122 784 122 816V823Q122 855 155 855H344Q377 855 377 823V816Q377 784 344 784H155Z" /> +<glyph unicode="°" glyph-name="degree" horiz-adv-x="382" d="M191 422Q127 422 83 465T39 570Q39 631 83 674T191 718Q253 718 298 675T343 570T298 466T191 422ZM160 496T191 496T243 517T265 570T244 623T191 645T139 623T117 570T138 518Z" /> +<glyph unicode="±" glyph-name="plusminus" horiz-adv-x="613" d="M75 246Q42 246 42 279V291Q42 324 75 324H266V537Q266 570 299 570H315Q348 570 348 537V324H538Q571 324 571 291V279Q571 246 538 246H348V33Q348 0 315 0H299Q266 0 266 33V246H75ZM91 +-95H522Q555 -95 555 -128V-140Q555 -173 522 -173H91Q58 -173 58 -140V-128Q58 -95 91 -95Z" /> +<glyph unicode="²" glyph-name="twosuperior" horiz-adv-x="357" d="M62 423Q29 423 29 459Q29 506 51 542T104 601T166 643T219 686T241 736Q241 764 221 782T169 801T107 775Q81 756 62 774L58 777Q33 800 56 822Q109 870 173 870Q235 870 276 834T317 +739Q317 699 297 667T246 615T186 576T135 537T111 489H291Q324 489 324 458V454Q324 423 291 423H62Z" /> +<glyph unicode="³" glyph-name="threesuperior" horiz-adv-x="357" d="M184 413Q109 413 59 458Q35 475 54 501L58 506Q74 527 102 512Q137 482 181 482Q214 482 238 504T263 558T238 609T178 629H165Q140 629 133 648T142 688L213 770L238 794V796Q219 793 +202 793H93Q60 793 60 825V829Q60 860 93 860H299Q332 860 332 836V831Q332 813 316 794L223 686Q272 678 305 646T339 558Q339 499 295 456T184 413Z" /> +<glyph unicode="´" glyph-name="acute" horiz-adv-x="499" d="M207 755Q190 755 184 766T187 792L227 859Q240 882 266 882H295Q316 882 321 870T313 842L264 775Q248 755 224 755H207Z" /> +<glyph unicode="µ" glyph-name="mu" horiz-adv-x="630" d="M85 -167V473Q85 506 118 506H149Q181 506 181 473V204Q181 144 200 111T275 78Q351 78 396 134T441 269V473Q441 506 474 506H505Q538 506 538 473V33Q538 0 505 0H477Q444 0 444 33V75L446 104H444Q437 +90 426 75T392 38T334 2T256 -12Q227 -12 205 -4T174 12L166 19H164Q171 -30 171 -59V-167Q171 -200 138 -200H118Q85 -200 85 -167Z" /> +<glyph unicode="¶" glyph-name="paragraph" horiz-adv-x="591" d="M273 -17V241Q176 241 106 308T36 474Q36 571 105 638T273 706H511Q544 706 544 673V653Q544 620 511 620H348V-17Q348 -50 315 -50H306Q273 -50 273 -17ZM410 -17V530Q410 563 443 563H452Q485 +563 485 530V-17Q485 -50 452 -50H443Q410 -50 410 -17Z" /> +<glyph unicode="·" glyph-name="middot" horiz-adv-x="231" d="M97 237Q65 237 65 270V310Q65 343 97 343H133Q166 343 166 310V270Q166 237 133 237H97Z" /> +<glyph unicode="¸" glyph-name="cedilla" horiz-adv-x="499" d="M198 -59L217 19H270L256 -50Q288 -54 308 -73T328 -123Q328 -166 299 -186T226 -207Q174 -207 174 -178Q174 -148 192 -148Q196 -148 204 -149T218 -151Q261 -151 261 -119Q261 -92 214 -87Q190 +-85 198 -59Z" /> +<glyph unicode="¹" glyph-name="onesuperior" horiz-adv-x="303" d="M68 423Q35 423 35 454V458Q35 489 64 489H128V738L130 764H128Q125 757 111 744L90 723Q73 710 58 725L50 734Q30 756 53 779L118 843Q135 860 159 860H170Q203 860 203 827V489H262Q295 +489 295 458V454Q295 423 262 423H68Z" /> +<glyph unicode="º" glyph-name="ordmasculine" d="M298 384T226 384T105 431T55 552Q55 623 105 670T226 717Q298 717 347 670T397 552Q397 479 348 432ZM185 449T226 449T295 478T324 552Q324 596 296 624T226 653T157 625T128 552Q128 507 156 478ZM104 +265Q71 265 71 292V296Q71 322 104 322H350Q383 322 383 296V292Q383 265 350 265H104Z" /> +<glyph unicode="»" glyph-name="guillemotright" horiz-adv-x="523" d="M268 117L399 282L268 448Q254 464 259 476T284 488H308Q332 488 348 469L478 305Q496 282 478 259L348 96Q332 77 308 77H287Q266 77 261 88T268 117ZM85 77Q64 77 59 88T66 117L197 +282L66 448Q53 464 57 476T82 488H106Q130 488 146 469L276 305Q296 282 276 259L146 96Q130 77 106 77H85Z" /> +<glyph unicode="¼" glyph-name="onequarter" horiz-adv-x="941" d="M806 0Q773 0 773 33V107H599Q566 107 566 132V141Q566 159 578 175L752 416Q766 437 792 437H814Q847 437 847 404V173H882Q911 173 911 142V138Q911 107 882 107H847V33Q847 0 814 0H806ZM647 +173H773V296L777 354H775Q761 327 745 306L647 175V173ZM344 25Q332 0 305 0H293Q277 0 272 11T275 39L581 682Q592 706 620 706H631Q648 706 652 696T649 667L344 25ZM87 270Q54 270 54 301V305Q54 336 83 336H147V585L149 611H147Q144 604 130 591L109 570Q92 +557 77 572L69 581Q49 603 72 626L137 690Q154 707 178 707H189Q222 707 222 674V336H281Q314 336 314 305V301Q314 270 281 270H87Z" /> +<glyph unicode="½" glyph-name="onehalf" horiz-adv-x="926" d="M626 0Q593 0 593 36Q593 83 615 119T668 178T730 220T783 263T805 313Q805 341 785 359T733 378T671 352Q645 333 626 351L622 354Q597 377 620 399Q673 447 737 447Q799 447 840 411T881 +316Q881 276 861 244T810 192T750 153T699 114T675 66H855Q888 66 888 35V31Q888 0 855 0H626ZM343 25Q331 0 304 0H292Q276 0 271 11T274 39L580 682Q591 706 619 706H630Q647 706 651 696T648 667L343 25ZM85 270Q52 270 52 301V305Q52 336 81 336H145V585L147 +611H145Q142 604 128 591L107 570Q90 557 75 572L67 581Q47 603 70 626L135 690Q152 707 176 707H187Q220 707 220 674V336H279Q312 336 312 305V301Q312 270 279 270H85Z" /> +<glyph unicode="¾" glyph-name="threequarters" horiz-adv-x="956" d="M836 0Q803 0 803 33V107H629Q596 107 596 132V141Q596 159 608 175L782 416Q796 437 822 437H844Q877 437 877 404V173H912Q941 173 941 142V138Q941 107 912 107H877V33Q877 0 844 +0H836ZM677 173H803V296L807 354H805Q791 327 775 306L677 175V173ZM200 260Q125 260 75 305Q51 322 70 348L74 353Q90 374 118 359Q153 329 197 329Q230 329 254 351T279 405T254 456T194 476H181Q156 476 149 495T158 535L229 617L254 641V643Q235 640 218 640H109Q76 +640 76 672V676Q76 707 109 707H315Q348 707 348 683V678Q348 660 332 641L239 533Q288 525 321 493T355 405Q355 346 311 303T200 260ZM373 25Q361 0 334 0H322Q306 0 301 11T304 39L610 682Q621 706 649 706H660Q677 706 681 696T678 667L373 25Z" /> +<glyph unicode="¿" glyph-name="questiondown" horiz-adv-x="460" d="M297 312Q330 312 330 279V259Q330 220 313 188T270 132T220 87T178 36T160 -24Q160 -66 192 -94T275 -123Q319 -123 362 -98Q393 -82 409 -107L422 -125Q441 -153 416 -170Q348 -214 +268 -214Q180 -214 120 -163T59 -31Q59 13 76 49T119 110T169 156T214 206T235 266L236 287Q240 312 268 312H297ZM333 473V441Q333 408 300 408H265Q232 408 232 441V473Q232 506 265 506H300Q333 506 333 473Z" /> +<glyph unicode="À" glyph-name="Agrave" horiz-adv-x="621" d="M302 755Q278 755 262 775L213 842Q200 858 204 870T230 882H260Q286 882 299 859L338 791Q347 777 343 766T322 755H302ZM24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 +609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 545 288 509L209 285Z" /> +<glyph unicode="Á" glyph-name="Aacute" horiz-adv-x="621" d="M313 755Q296 755 290 766T293 792L333 859Q346 882 372 882H401Q422 882 427 870T419 842L370 775Q354 755 330 755H313ZM24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 +609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 545 288 509L209 285Z" /> +<glyph unicode="Â" glyph-name="Acircumflex" horiz-adv-x="621" d="M221 755Q203 755 199 766T205 795L251 860Q266 882 292 882H341Q367 882 381 860L428 795Q439 778 435 767T413 755H391Q370 755 356 777L317 835H315L276 777Q264 755 241 755H221ZM24 +38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 545 288 509L209 285Z" /> +<glyph unicode="Ã" glyph-name="Atilde" horiz-adv-x="621" d="M180 756Q151 756 151 788Q151 829 177 856T245 883Q276 883 300 866T342 832T378 815Q395 815 404 828T415 860Q417 880 445 880H453Q482 880 482 852Q482 807 457 780T388 753Q357 753 333 +770T291 804T255 821Q219 821 217 776Q214 756 188 756H180ZM24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 545 +288 509L209 285Z" /> +<glyph unicode="Ä" glyph-name="Adieresis" horiz-adv-x="621" d="M24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 +545 288 509L209 285ZM393 781Q360 781 360 814V849Q360 882 393 882H407Q440 882 440 849V814Q440 781 407 781H393ZM226 781Q193 781 193 814V849Q193 882 226 882H240Q273 882 273 849V814Q273 781 240 781H226Z" /> +<glyph unicode="Å" glyph-name="Aring" horiz-adv-x="621" d="M24 38L256 679Q265 706 293 706H341Q369 706 378 679L610 38Q616 21 609 11T583 0H549Q521 0 512 27L449 203H183L121 27Q114 0 85 0H51Q32 0 25 10T24 38ZM209 285H423L345 509L318 609H316Q300 +545 288 509L209 285ZM352 743T317 743T257 763T232 817Q232 851 257 871T317 892T377 872T402 817Q402 784 377 764ZM317 784Q331 784 340 793T350 817Q350 833 341 842T317 852Q302 852 293 843T284 817Q284 803 293 794T317 784Z" /> +<glyph unicode="Æ" glyph-name="AE" horiz-adv-x="859" d="M20 38L285 681Q295 706 323 706H779Q812 706 812 673V653Q812 620 779 620H500V399H721Q754 399 754 366V346Q754 313 721 313H500V86H796Q829 86 829 53V33Q829 0 796 0H435Q402 0 402 33V314H232L117 +26Q107 0 79 0H45Q27 0 20 11T20 38ZM265 396H402V620H355L265 396Z" /> +<glyph unicode="Ç" glyph-name="Ccedilla" horiz-adv-x="709" d="M356 -59L368 -10Q223 3 135 106T47 357Q47 512 148 615T406 718Q542 718 640 645Q663 627 646 599L633 579Q616 553 587 571Q503 627 410 627Q290 627 220 550T149 358Q149 241 221 160T411 +79Q514 79 603 148Q630 169 649 144L664 124Q683 99 659 78Q556 -8 422 -12L414 -50Q446 -54 466 -73T486 -123Q486 -166 457 -186T384 -207Q332 -207 332 -178Q332 -148 350 -148Q354 -148 362 -149T376 -151Q419 -151 419 -119Q419 -92 372 -87Q348 -85 356 -59Z" +/> +<glyph unicode="È" glyph-name="Egrave" horiz-adv-x="555" d="M90 33V673Q90 706 123 706H467Q500 706 500 673V653Q500 620 467 620H188V399H409Q442 399 442 366V346Q442 313 409 313H188V86H484Q517 86 517 53V33Q517 0 484 0H123Q90 0 90 33ZM291 755Q267 +755 251 775L202 842Q189 858 193 870T219 882H249Q275 882 288 859L327 791Q336 777 332 766T311 755H291Z" /> +<glyph unicode="É" glyph-name="Eacute" horiz-adv-x="555" d="M302 755Q285 755 279 766T282 792L322 859Q335 882 361 882H390Q411 882 416 870T408 842L359 775Q343 755 319 755H302ZM90 33V673Q90 706 123 706H467Q500 706 500 673V653Q500 620 467 620H188V399H409Q442 +399 442 366V346Q442 313 409 313H188V86H484Q517 86 517 53V33Q517 0 484 0H123Q90 0 90 33Z" /> +<glyph unicode="Ê" glyph-name="Ecircumflex" horiz-adv-x="555" d="M210 755Q192 755 188 766T194 795L240 860Q255 882 281 882H330Q356 882 370 860L417 795Q428 778 424 767T402 755H380Q359 755 345 777L306 835H304L265 777Q253 755 230 755H210ZM90 +33V673Q90 706 123 706H467Q500 706 500 673V653Q500 620 467 620H188V399H409Q442 399 442 366V346Q442 313 409 313H188V86H484Q517 86 517 53V33Q517 0 484 0H123Q90 0 90 33Z" /> +<glyph unicode="Ë" glyph-name="Edieresis" horiz-adv-x="555" d="M382 781Q349 781 349 814V849Q349 882 382 882H396Q429 882 429 849V814Q429 781 396 781H382ZM215 781Q182 781 182 814V849Q182 882 215 882H229Q262 882 262 849V814Q262 781 229 781H215ZM90 +33V673Q90 706 123 706H467Q500 706 500 673V653Q500 620 467 620H188V399H409Q442 399 442 366V346Q442 313 409 313H188V86H484Q517 86 517 53V33Q517 0 484 0H123Q90 0 90 33Z" /> +<glyph unicode="Ì" glyph-name="Igrave" horiz-adv-x="278" d="M94 33V673Q94 706 127 706H159Q192 706 192 673V33Q192 0 159 0H127Q94 0 94 33ZM130 755Q106 755 90 775L41 842Q28 858 32 870T58 882H88Q114 882 127 859L166 791Q175 777 171 766T150 755H130Z" /> +<glyph unicode="Í" glyph-name="Iacute" horiz-adv-x="278" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V33Q188 0 155 0H123Q90 0 90 33ZM137 755Q120 755 114 766T117 792L157 859Q170 882 196 882H225Q246 882 251 870T243 842L194 775Q178 755 +154 755H137Z" /> +<glyph unicode="Î" glyph-name="Icircumflex" horiz-adv-x="278" d="M94 33V673Q94 706 127 706H159Q192 706 192 673V33Q192 0 159 0H127Q94 0 94 33ZM49 755Q31 755 27 766T33 795L79 860Q94 882 120 882H169Q195 882 209 860L256 795Q267 778 263 767T241 +755H219Q198 755 184 777L145 835H143L104 777Q92 755 69 755H49Z" /> +<glyph unicode="Ï" glyph-name="Idieresis" horiz-adv-x="278" d="M90 33V673Q90 706 123 706H155Q188 706 188 673V33Q188 0 155 0H123Q90 0 90 33ZM217 781Q184 781 184 814V849Q184 882 217 882H231Q264 882 264 849V814Q264 781 231 781H217ZM50 781Q17 +781 17 814V849Q17 882 50 882H64Q97 882 97 849V814Q97 781 64 781H50Z" /> +<glyph unicode="Ð" glyph-name="Eth" horiz-adv-x="730" d="M91 33V312H65Q32 312 32 345V361Q32 394 54 394H91V673Q91 706 124 706H325Q488 706 585 613T682 354Q682 188 585 94T325 0H124Q91 0 91 33ZM189 86H318Q439 86 509 156T580 354Q580 481 510 +550T318 620H189V394H306Q339 394 339 361V345Q339 312 307 312H189V86Z" /> +<glyph unicode="Ñ" glyph-name="Ntilde" horiz-adv-x="744" d="M90 33V673Q90 706 123 706H161Q187 706 201 684L502 247Q513 230 527 205T551 162L560 145H562Q556 208 556 247V673Q556 706 589 706H621Q654 706 654 673V33Q654 0 621 0H583Q556 0 544 22L242 +458L184 561H182Q188 498 188 458V33Q188 0 155 0H123Q90 0 90 33ZM236 756Q207 756 207 788Q207 829 233 856T301 883Q332 883 356 866T398 832T434 815Q451 815 460 828T471 860Q473 880 501 880H509Q538 880 538 852Q538 807 513 780T444 753Q413 753 389 770T347 +804T311 821Q275 821 273 776Q270 756 244 756H236Z" /> +<glyph unicode="Ò" glyph-name="Ograve" horiz-adv-x="815" d="M393 755Q369 755 353 775L304 842Q291 858 295 870T321 882H351Q377 882 390 859L429 791Q438 777 434 766T413 755H393ZM45 358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 +667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="Ó" glyph-name="Oacute" horiz-adv-x="815" d="M404 755Q387 755 381 766T384 792L424 859Q437 882 463 882H492Q513 882 518 870T510 842L461 775Q445 755 421 755H404ZM45 358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 +667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="Ô" glyph-name="Ocircumflex" horiz-adv-x="815" d="M312 755Q294 755 290 766T296 795L342 860Q357 882 383 882H432Q458 882 472 860L519 795Q530 778 526 767T504 755H482Q461 755 447 777L408 835H406L367 777Q355 755 332 755H312ZM45 +358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="Õ" glyph-name="Otilde" horiz-adv-x="815" d="M271 756Q242 756 242 788Q242 829 268 856T336 883Q367 883 391 866T433 832T469 815Q486 815 495 828T506 860Q508 880 536 880H544Q573 880 573 852Q573 807 548 780T479 753Q448 753 424 +770T382 804T346 821Q310 821 308 776Q305 756 279 756H271ZM45 358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="Ö" glyph-name="Odieresis" horiz-adv-x="815" d="M484 781Q451 781 451 814V849Q451 882 484 882H498Q531 882 531 849V814Q531 781 498 781H484ZM317 781Q284 781 284 814V849Q284 882 317 882H331Q364 882 364 849V814Q364 781 331 781H317ZM45 +358Q45 511 148 614T408 718Q564 718 667 615T770 358Q770 201 667 95T408 -12T149 94T45 358ZM147 358Q147 239 221 159T408 79T594 159T668 358Q668 473 594 550T408 627T222 550T147 358Z" /> +<glyph unicode="×" glyph-name="multiply" horiz-adv-x="613" d="M91 33Q68 54 90 79L274 285L90 491Q68 516 91 537L100 546Q124 570 146 545L328 343L510 545Q532 570 557 546L565 537Q588 516 566 491L381 285L566 79Q588 54 565 33L557 24Q532 0 510 +25L328 227L146 25Q124 0 100 24L91 33Z" /> +<glyph unicode="Ø" glyph-name="Oslash" horiz-adv-x="814" d="M135 31L168 77Q110 129 78 201T45 357Q45 510 150 614T408 718Q509 718 593 668L619 706Q639 732 664 715Q687 697 674 678L643 635Q703 584 736 513T770 357Q770 202 666 95T408 -12Q302 -12 +217 42L188 1Q168 -25 144 -8Q119 9 135 31ZM226 158L537 591Q479 627 408 627Q299 627 223 550T147 357Q147 239 226 158ZM272 119Q332 79 407 79Q516 79 592 159T668 357Q668 479 585 555L272 119Z" /> +<glyph unicode="Ù" glyph-name="Ugrave" horiz-adv-x="717" d="M81 250V673Q81 706 114 706H147Q179 706 179 673V251Q179 171 227 125T358 79T488 125T537 252V673Q537 706 570 706H603Q636 706 636 673V250Q636 132 560 60T359 -12Q234 -12 158 60T81 250ZM344 +755Q320 755 304 775L255 842Q242 858 246 870T272 882H302Q328 882 341 859L380 791Q389 777 385 766T364 755H344Z" /> +<glyph unicode="Ú" glyph-name="Uacute" horiz-adv-x="717" d="M354 755Q337 755 331 766T334 792L374 859Q387 882 413 882H442Q463 882 468 870T460 842L411 775Q395 755 371 755H354ZM81 250V673Q81 706 114 706H147Q179 706 179 673V251Q179 171 227 +125T358 79T488 125T537 252V673Q537 706 570 706H603Q636 706 636 673V250Q636 132 560 60T359 -12Q234 -12 158 60T81 250Z" /> +<glyph unicode="Û" glyph-name="Ucircumflex" horiz-adv-x="717" d="M262 755Q244 755 240 766T246 795L292 860Q307 882 333 882H382Q408 882 422 860L469 795Q480 778 476 767T454 755H432Q411 755 397 777L358 835H356L317 777Q305 755 282 755H262ZM81 +250V673Q81 706 114 706H147Q179 706 179 673V251Q179 171 227 125T358 79T488 125T537 252V673Q537 706 570 706H603Q636 706 636 673V250Q636 132 560 60T359 -12Q234 -12 158 60T81 250Z" /> +<glyph unicode="Ü" glyph-name="Udieresis" horiz-adv-x="717" d="M435 781Q402 781 402 814V849Q402 882 435 882H449Q482 882 482 849V814Q482 781 449 781H435ZM268 781Q235 781 235 814V849Q235 882 268 882H282Q315 882 315 849V814Q315 781 282 781H268ZM81 +250V673Q81 706 114 706H147Q179 706 179 673V251Q179 171 227 125T358 79T488 125T537 252V673Q537 706 570 706H603Q636 706 636 673V250Q636 132 560 60T359 -12Q234 -12 158 60T81 250Z" /> +<glyph unicode="Ý" glyph-name="Yacute" horiz-adv-x="567" d="M241 33V299L27 667Q17 684 24 695T50 706H90Q117 706 128 683L247 474L290 385H292Q313 434 335 474L453 683Q465 706 491 706H531Q550 706 557 695T554 667L340 299V33Q340 0 307 0H274Q241 +0 241 33ZM287 755Q270 755 264 766T267 792L307 859Q320 882 346 882H375Q396 882 401 870T393 842L344 775Q328 755 304 755H287Z" /> +<glyph unicode="Þ" glyph-name="Thorn" horiz-adv-x="598" d="M90 33V673Q90 706 123 706H155Q188 706 188 674V586H348Q446 586 507 526T569 365T507 203T347 141H188V33Q188 0 155 0H123Q90 0 90 33ZM188 227H332Q396 227 432 264T469 365Q469 428 433 +464T333 500H188V227Z" /> +<glyph unicode="ß" glyph-name="germandbls" horiz-adv-x="582" d="M71 33V530Q71 618 135 668T287 718Q369 718 423 672T477 557Q477 524 462 496T427 450T393 412T377 371Q377 354 395 336T440 300T492 262T536 211T555 145Q555 72 506 33T385 -7Q322 -7 +269 13Q243 20 243 50V69Q243 105 274 97Q321 77 373 77Q409 77 433 95T457 149Q457 176 429 202T368 248T306 300T278 368Q278 396 294 422T328 465T363 507T379 556Q379 588 354 611T283 634Q236 634 202 605T167 523V33Q167 0 135 0H104Q71 0 71 33Z" /> +<glyph unicode="à" glyph-name="agrave" horiz-adv-x="517" d="M29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 +0 421 0H396Q363 0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146ZM244 580Q220 580 204 600L155 667Q142 684 146 695T172 707H202Q228 +707 241 684L280 616Q289 602 285 591T264 580H244Z" /> +<glyph unicode="á" glyph-name="aacute" horiz-adv-x="517" d="M29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 +0 421 0H396Q363 0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146ZM252 580Q235 580 229 591T232 617L272 684Q285 707 311 707H340Q361 +707 366 696T358 667L309 600Q293 580 269 580H252Z" /> +<glyph unicode="â" glyph-name="acircumflex" horiz-adv-x="517" d="M161 580Q143 580 139 591T145 620L191 685Q206 707 232 707H281Q307 707 321 685L368 620Q379 603 375 592T353 580H331Q310 580 296 602L257 660H255L216 602Q204 580 181 580H161ZM29 +138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 0 421 0H396Q363 0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 +0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146Z" /> +<glyph unicode="ã" glyph-name="atilde" horiz-adv-x="517" d="M120 581Q91 581 91 613Q91 654 117 681T185 708Q216 708 240 691T282 657T318 640Q335 640 344 653T355 685Q357 705 385 705H393Q422 705 422 677Q422 632 397 605T328 578Q297 578 273 595T231 +629T195 646Q159 646 157 601Q154 581 128 581H120ZM29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 0 421 0H396Q363 +0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146Z" /> +<glyph unicode="ä" glyph-name="adieresis" horiz-adv-x="517" d="M29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 +0 421 0H396Q363 0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146ZM333 606Q300 606 300 639V674Q300 707 333 707H347Q380 707 380 +674V639Q380 606 347 606H333ZM166 606Q133 606 133 639V674Q133 707 166 707H180Q213 707 213 674V639Q213 606 180 606H166Z" /> +<glyph unicode="å" glyph-name="aring" horiz-adv-x="517" d="M29 138Q29 183 51 216T104 267T180 295T258 309T331 312H357V325Q357 436 247 436Q190 436 133 404Q104 390 88 416L80 430Q64 460 91 475Q167 518 255 518Q350 518 402 467T454 320V33Q454 +0 421 0H396Q363 0 363 33V63L366 94H364Q362 90 358 83T340 57T308 25T262 0T199 -12Q129 -12 79 29T29 138ZM127 146Q127 113 152 89T221 65Q281 65 319 115T358 226V248H332Q127 248 127 146ZM292 568T257 568T197 588T172 642Q172 676 197 696T257 717T317 +697T342 642Q342 609 317 589ZM257 609Q271 609 280 618T290 642Q290 658 281 667T257 677Q242 677 233 668T224 642Q224 628 233 619T257 609Z" /> +<glyph unicode="æ" glyph-name="ae" horiz-adv-x="853" d="M31 142Q31 175 42 201T72 245T117 275T170 294T228 304T283 309T333 310H358V325Q358 436 244 436Q190 436 133 404Q104 389 88 416L80 430Q65 460 92 475Q165 518 251 518Q378 518 419 429H421Q481 +518 600 518Q702 518 759 452T817 279Q817 266 808 256T783 245H451Q455 162 502 117T620 72Q685 72 741 111Q771 129 786 101L794 86Q811 58 785 42Q708 -12 614 -12Q539 -12 483 21T397 115H395Q390 101 379 84T346 43T287 4T204 -12Q131 -12 81 29T31 142ZM455 +310H719Q717 372 683 406T599 441Q542 441 504 407T455 310ZM129 147Q129 113 154 90T225 66Q284 66 321 116T359 228V245H312Q129 245 129 147Z" /> +<glyph unicode="ç" glyph-name="ccedilla" horiz-adv-x="534" d="M254 -59L266 -9Q164 4 101 76T38 253Q38 366 114 442T308 518Q406 518 475 464Q501 447 481 419L471 404Q455 379 426 396Q373 434 313 434Q237 434 187 383T137 254T187 124T315 72Q383 +72 444 118Q472 136 489 109L497 94Q513 67 488 50Q416 -9 319 -12L312 -50Q344 -54 364 -73T384 -123Q384 -166 355 -186T282 -207Q230 -207 230 -178Q230 -148 248 -148Q252 -148 260 -149T274 -151Q317 -151 317 -119Q317 -92 270 -87Q246 -85 254 -59Z" /> +<glyph unicode="è" glyph-name="egrave" horiz-adv-x="545" d="M38 253Q38 372 109 445T291 518Q394 518 451 452T509 277Q509 263 500 253T475 243H137Q141 163 191 118T312 72Q379 72 433 112Q463 128 478 101L487 86Q504 58 477 42Q400 -12 306 -12Q188 +-12 113 63T38 253ZM141 307H412Q410 372 376 407T289 442Q233 442 192 406T141 307ZM278 580Q254 580 238 600L189 667Q176 684 180 695T206 707H236Q262 707 275 684L314 616Q323 602 319 591T298 580H278Z" /> +<glyph unicode="é" glyph-name="eacute" horiz-adv-x="545" d="M287 580Q270 580 264 591T267 617L307 684Q320 707 346 707H375Q396 707 401 696T393 667L344 600Q328 580 304 580H287ZM38 253Q38 372 109 445T291 518Q394 518 451 452T509 277Q509 263 +500 253T475 243H137Q141 163 191 118T312 72Q379 72 433 112Q463 128 478 101L487 86Q504 58 477 42Q400 -12 306 -12Q188 -12 113 63T38 253ZM141 307H412Q410 372 376 407T289 442Q233 442 192 406T141 307Z" /> +<glyph unicode="ê" glyph-name="ecircumflex" horiz-adv-x="545" d="M195 580Q177 580 173 591T179 620L225 685Q240 707 266 707H315Q341 707 355 685L402 620Q413 603 409 592T387 580H365Q344 580 330 602L291 660H289L250 602Q238 580 215 580H195ZM38 +253Q38 372 109 445T291 518Q394 518 451 452T509 277Q509 263 500 253T475 243H137Q141 163 191 118T312 72Q379 72 433 112Q463 128 478 101L487 86Q504 58 477 42Q400 -12 306 -12Q188 -12 113 63T38 253ZM141 307H412Q410 372 376 407T289 442Q233 442 192 +406T141 307Z" /> +<glyph unicode="ë" glyph-name="edieresis" horiz-adv-x="545" d="M367 606Q334 606 334 639V674Q334 707 367 707H381Q414 707 414 674V639Q414 606 381 606H367ZM200 606Q167 606 167 639V674Q167 707 200 707H214Q247 707 247 674V639Q247 606 214 606H200ZM38 +253Q38 372 109 445T291 518Q394 518 451 452T509 277Q509 263 500 253T475 243H137Q141 163 191 118T312 72Q379 72 433 112Q463 128 478 101L487 86Q504 58 477 42Q400 -12 306 -12Q188 -12 113 63T38 253ZM141 307H412Q410 372 376 407T289 442Q233 442 192 +406T141 307Z" /> +<glyph unicode="ì" glyph-name="igrave" horiz-adv-x="237" d="M74 33V473Q74 506 107 506H138Q171 506 171 473V33Q171 0 138 0H107Q74 0 74 33ZM110 580Q86 580 70 600L21 667Q8 684 12 695T38 707H68Q94 707 107 684L146 616Q155 602 151 591T130 580H110Z" /> +<glyph unicode="í" glyph-name="iacute" horiz-adv-x="237" d="M116 580Q99 580 93 591T96 617L136 684Q149 707 175 707H204Q225 707 230 696T222 667L173 600Q157 580 133 580H116ZM70 33V473Q70 506 103 506H134Q167 506 167 473V33Q167 0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="î" glyph-name="icircumflex" horiz-adv-x="237" d="M28 580Q10 580 6 591T12 620L58 685Q73 707 99 707H148Q174 707 188 685L235 620Q246 603 242 592T220 580H198Q177 580 163 602L124 660H122L83 602Q71 580 48 580H28ZM74 33V473Q74 +506 107 506H138Q171 506 171 473V33Q171 0 138 0H107Q74 0 74 33Z" /> +<glyph unicode="ï" glyph-name="idieresis" horiz-adv-x="237" d="M197 606Q164 606 164 639V674Q164 707 197 707H211Q244 707 244 674V639Q244 606 211 606H197ZM30 606Q-3 606 -3 639V674Q-3 707 30 707H44Q77 707 77 674V639Q77 606 44 606H30ZM70 33V473Q70 +506 103 506H134Q167 506 167 473V33Q167 0 134 0H103Q70 0 70 33Z" /> +<glyph unicode="ð" glyph-name="eth" horiz-adv-x="578" d="M39 235Q39 329 102 397T276 466Q313 466 344 455T389 432L402 420H404Q374 503 292 557L147 492Q131 486 123 488T109 503L105 513Q95 536 123 549L225 594Q187 615 129 632Q98 641 107 673L113 +689Q124 720 154 711Q255 684 330 639L433 685Q461 696 470 675L476 663Q486 642 458 630L386 597Q530 477 530 275Q530 222 516 173T472 82T392 14T276 -12Q168 -12 104 61T39 235ZM138 233Q138 167 175 120T279 72Q354 72 393 128T432 258Q432 315 393 351T290 +388Q217 388 178 343T138 233Z" /> +<glyph unicode="ñ" glyph-name="ntilde" horiz-adv-x="591" d="M70 33V473Q70 506 103 506H131Q164 506 164 473V428L161 399H163Q183 443 232 480T355 518Q528 518 528 324V33Q528 0 495 0H464Q431 0 431 33V302Q431 363 412 396T336 429Q263 429 215 375T167 +242V33Q167 0 134 0H103Q70 0 70 33ZM171 581Q142 581 142 613Q142 654 168 681T236 708Q267 708 291 691T333 657T369 640Q386 640 395 653T406 685Q408 705 436 705H444Q473 705 473 677Q473 632 448 605T379 578Q348 578 324 595T282 629T246 646Q210 646 208 +601Q205 581 179 581H171Z" /> +<glyph unicode="ò" glyph-name="ograve" horiz-adv-x="619" d="M37 140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 -12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383ZM295 +580Q271 580 255 600L206 667Q193 684 197 695T223 707H253Q279 707 292 684L331 616Q340 602 336 591T315 580H295Z" /> +<glyph unicode="ó" glyph-name="oacute" horiz-adv-x="619" d="M306 580Q289 580 283 591T286 617L326 684Q339 707 365 707H394Q415 707 420 696T412 667L363 600Q347 580 323 580H306ZM37 140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 +-12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383Z" /> +<glyph unicode="ô" glyph-name="ocircumflex" horiz-adv-x="619" d="M213 580Q195 580 191 591T197 620L243 685Q258 707 284 707H333Q359 707 373 685L420 620Q431 603 427 592T405 580H383Q362 580 348 602L309 660H307L268 602Q256 580 233 580H213ZM37 +140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 -12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383Z" /> +<glyph unicode="õ" glyph-name="otilde" horiz-adv-x="619" d="M173 581Q144 581 144 613Q144 654 170 681T238 708Q269 708 293 691T335 657T371 640Q388 640 397 653T408 685Q410 705 438 705H446Q475 705 475 677Q475 632 450 605T381 578Q350 578 326 +595T284 629T248 646Q212 646 210 601Q207 581 181 581H173ZM37 140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 -12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383Z" /> +<glyph unicode="ö" glyph-name="odieresis" horiz-adv-x="619" d="M386 606Q353 606 353 639V674Q353 707 386 707H400Q433 707 433 674V639Q433 606 400 606H386ZM219 606Q186 606 186 639V674Q186 707 219 707H233Q266 707 266 674V639Q266 606 233 606H219ZM37 +140T37 254T116 443T309 518Q424 518 503 443T582 254T503 64T309 -12T116 64ZM135 332T135 254T186 124T309 72Q382 72 432 123T483 254Q483 332 433 383T309 434Q237 434 186 383Z" /> +<glyph unicode="÷" glyph-name="divide" horiz-adv-x="613" d="M292 435Q259 435 259 468V493Q259 526 292 526H320Q353 526 353 493V468Q353 435 320 435H292ZM87 246Q54 246 54 279V291Q54 324 87 324H526Q559 324 559 291V279Q559 246 526 246H87ZM259 +77V102Q259 135 292 135H320Q353 135 353 102V77Q353 44 320 44H292Q259 44 259 77Z" /> +<glyph unicode="ø" glyph-name="oslash" horiz-adv-x="620" d="M110 16L133 49Q38 126 38 254Q38 368 117 443T310 518Q382 518 445 485L465 513Q484 539 509 523Q533 507 518 487L493 452Q583 375 583 254Q583 140 504 64T310 -12Q238 -12 183 18L162 -11Q144 +-38 119 -21Q94 -3 110 16ZM187 125L393 413Q354 434 310 434Q238 434 187 383T136 254Q136 178 187 125ZM235 90Q268 72 310 72Q383 72 433 123T484 254Q484 326 438 375L235 90Z" /> +<glyph unicode="ù" glyph-name="ugrave" horiz-adv-x="587" d="M64 182V473Q64 506 97 506H128Q160 506 160 473V204Q160 144 180 111T255 78Q330 78 375 134T420 269V473Q420 506 453 506H484Q517 506 517 473V33Q517 0 484 0H456Q423 0 423 33V78L426 107H424Q404 +62 354 25T236 -12Q150 -12 107 35T64 182ZM277 580Q253 580 237 600L188 667Q175 684 179 695T205 707H235Q261 707 274 684L313 616Q322 602 318 591T297 580H277Z" /> +<glyph unicode="ú" glyph-name="uacute" horiz-adv-x="587" d="M286 580Q269 580 263 591T266 617L306 684Q319 707 345 707H374Q395 707 400 696T392 667L343 600Q327 580 303 580H286ZM64 182V473Q64 506 97 506H128Q160 506 160 473V204Q160 144 180 111T255 +78Q330 78 375 134T420 269V473Q420 506 453 506H484Q517 506 517 473V33Q517 0 484 0H456Q423 0 423 33V78L426 107H424Q404 62 354 25T236 -12Q150 -12 107 35T64 182Z" /> +<glyph unicode="û" glyph-name="ucircumflex" horiz-adv-x="587" d="M194 580Q176 580 172 591T178 620L224 685Q239 707 265 707H314Q340 707 354 685L401 620Q412 603 408 592T386 580H364Q343 580 329 602L290 660H288L249 602Q237 580 214 580H194ZM64 +182V473Q64 506 97 506H128Q160 506 160 473V204Q160 144 180 111T255 78Q330 78 375 134T420 269V473Q420 506 453 506H484Q517 506 517 473V33Q517 0 484 0H456Q423 0 423 33V78L426 107H424Q404 62 354 25T236 -12Q150 -12 107 35T64 182Z" /> +<glyph unicode="ü" glyph-name="udieresis" horiz-adv-x="587" d="M367 606Q334 606 334 639V674Q334 707 367 707H381Q414 707 414 674V639Q414 606 381 606H367ZM200 606Q167 606 167 639V674Q167 707 200 707H214Q247 707 247 674V639Q247 606 214 606H200ZM64 +182V473Q64 506 97 506H128Q160 506 160 473V204Q160 144 180 111T255 78Q330 78 375 134T420 269V473Q420 506 453 506H484Q517 506 517 473V33Q517 0 484 0H456Q423 0 423 33V78L426 107H424Q404 62 354 25T236 -12Q150 -12 107 35T64 182Z" /> +<glyph unicode="ý" glyph-name="yacute" horiz-adv-x="502" d="M35 -134Q46 -110 72 -117Q100 -128 112 -128Q141 -128 163 -107T199 -52L224 6L28 468Q21 485 28 495T53 506H92Q120 506 129 480L248 175L266 114H268Q276 148 285 174L400 479Q409 506 437 +506H473Q491 506 498 496T499 468L276 -89Q254 -147 210 -178T112 -210Q81 -210 42 -194Q13 -182 27 -151L35 -134ZM263 579Q246 579 240 590T243 616L283 683Q296 706 322 706H351Q372 706 377 694T369 666L320 599Q304 579 280 579H263Z" /> +<glyph unicode="þ" glyph-name="thorn" horiz-adv-x="592" d="M72 -167V673Q72 706 105 706H136Q168 706 168 673V476L167 434H169Q170 435 178 445T192 462T213 481T243 499T281 512T329 518Q431 518 492 444T553 253T490 62T325 -12Q293 -12 265 -4T219 +17T190 42T173 62L168 71H166Q168 53 168 27V-167Q168 -200 136 -200H105Q72 -200 72 -167ZM166 252Q166 173 205 123T310 72Q373 72 414 122T455 253Q455 333 416 383T313 434Q249 434 208 389T166 252Z" /> +<glyph unicode="ÿ" glyph-name="ydieresis" horiz-adv-x="502" d="M35 -134Q46 -110 72 -117Q100 -128 112 -128Q141 -128 163 -107T199 -52L224 6L28 468Q21 485 28 495T53 506H92Q120 506 129 480L248 175L266 114H268Q276 148 285 174L400 479Q409 506 +437 506H473Q491 506 498 496T499 468L276 -89Q254 -147 210 -178T112 -210Q81 -210 42 -194Q13 -182 27 -151L35 -134ZM344 605Q311 605 311 638V673Q311 706 344 706H358Q391 706 391 673V638Q391 605 358 605H344ZM177 605Q144 605 144 638V673Q144 706 177 +706H191Q224 706 224 673V638Q224 605 191 605H177Z" /> +<glyph unicode="Œ" glyph-name="OE" horiz-adv-x="946" d="M44 354Q44 507 149 611T410 715Q436 715 476 711T532 706H858Q891 706 891 673V653Q891 620 858 620H579V399H799Q832 399 832 366V346Q832 313 799 313H579V86H875Q908 86 908 53V33Q908 0 875 +0H533Q517 0 477 -4T410 -9Q254 -9 149 95T44 354ZM146 354Q146 236 220 157T410 77Q428 77 445 79T472 83L481 85V622Q450 629 410 629Q294 629 220 550T146 354Z" /> +<glyph unicode="œ" glyph-name="oe" horiz-adv-x="990" d="M37 135T37 252T115 443T306 518Q454 518 526 398H528Q592 518 736 518Q839 518 897 452T955 277Q955 263 945 253T920 243H583Q589 162 638 117T757 72Q823 72 879 112Q909 128 923 101L932 86Q948 +57 922 42Q847 -12 751 -12Q598 -12 530 111H528Q456 -12 307 -12Q193 -12 115 61ZM586 307H856Q854 370 820 405T735 441Q678 441 637 405T586 307ZM136 252Q136 172 186 122T309 72T432 122T483 255Q483 334 432 384T309 434T187 384T136 252Z" /> +<glyph unicode="Š" glyph-name="Scaron" horiz-adv-x="537" d="M264 755Q238 755 223 776L177 842Q166 859 170 870T193 882H213Q235 882 248 860L287 801H289L328 860Q343 882 363 882H384Q402 882 406 871T400 842L353 776Q339 755 313 755H264ZM77 61Q54 +82 73 107L90 131Q108 154 135 137Q214 80 289 80Q345 80 379 107T413 181Q413 224 378 254T293 306T193 351T108 418T73 522Q73 610 138 664T302 718Q358 718 405 701T479 664Q503 647 489 619L475 594Q460 567 430 585Q361 626 300 626Q244 626 209 599T173 527Q173 +492 198 465T261 423T343 386T425 344T488 282T513 189Q513 103 453 46T289 -12Q221 -12 166 11T77 61Z" /> +<glyph unicode="š" glyph-name="scaron" horiz-adv-x="439" d="M214 580Q188 580 173 601L127 667Q116 684 120 695T143 707H163Q185 707 198 685L237 626H239L278 685Q293 707 313 707H334Q352 707 356 696T350 667L303 601Q289 580 263 580H214ZM68 43Q43 +59 61 88L71 102Q88 125 117 109Q180 68 241 68Q279 68 303 85T327 135Q327 162 300 180T235 212T158 242T93 292T66 372Q66 441 118 479T249 518T389 479Q417 465 400 435L391 420Q377 395 347 409Q296 438 244 438Q206 438 183 422T159 374Q159 347 186 328T251 +296T328 267T393 218T420 137Q420 72 370 30T238 -12Q141 -12 68 43Z" /> +<glyph unicode="Ÿ" glyph-name="Ydieresis" horiz-adv-x="567" d="M241 33V299L27 667Q17 684 24 695T50 706H90Q117 706 128 683L247 474L290 385H292Q313 434 335 474L453 683Q465 706 491 706H531Q550 706 557 695T554 667L340 299V33Q340 0 307 0H274Q241 +0 241 33ZM364 781Q331 781 331 814V849Q331 882 364 882H378Q411 882 411 849V814Q411 781 378 781H364ZM197 781Q164 781 164 814V849Q164 882 197 882H211Q244 882 244 849V814Q244 781 211 781H197Z" /> +<glyph unicode="Ž" glyph-name="Zcaron" horiz-adv-x="588" d="M280 755Q254 755 239 776L193 842Q182 859 186 870T209 882H229Q251 882 264 860L303 801H305L344 860Q359 882 379 882H400Q418 882 422 871T416 842L369 776Q355 755 329 755H280ZM32 33V43Q32 +65 46 85L372 556Q384 574 396 590T416 614L423 621V623Q404 620 370 620H83Q50 620 50 653V673Q50 706 83 706H513Q546 706 546 674V664Q546 642 533 622L206 150Q194 133 181 117T162 94L155 86V84Q174 86 208 86H517Q550 86 550 53V33Q550 0 517 0H65Q32 0 32 +33Z" /> +<glyph unicode="ž" glyph-name="zcaron" horiz-adv-x="500" d="M223 580Q197 580 182 601L136 667Q125 684 129 695T152 707H172Q194 707 207 685L246 626H248L287 685Q302 707 322 707H343Q361 707 365 696T359 667L312 601Q298 580 272 580H223ZM31 28V36Q31 +56 45 74L286 376L328 423V425Q312 423 279 423H75Q42 423 42 456V473Q42 506 75 506H426Q459 506 459 478V470Q459 450 445 432L204 129L161 83V81Q177 83 210 83H434Q467 83 467 51V33Q467 0 434 0H64Q31 0 31 28Z" /> +<glyph unicode="ƒ" glyph-name="florin" horiz-adv-x="376" d="M-30 -25Q-14 -27 4 -27Q21 -27 36 -23T70 -9T102 25T118 84L141 350H92Q59 350 59 382V395Q59 428 92 428H148L157 530Q161 578 178 613T218 668T269 699T320 714T365 718Q376 718 418 715Q449 +712 449 680V662Q449 627 423 630Q391 634 370 634Q353 634 337 630T303 616T271 582T255 523L245 428H329Q362 428 362 395V382Q362 350 330 350H238L215 76Q210 17 187 -23T129 -80T67 -104T8 -111Q-9 -111 -31 -109Q-62 -106 -62 -74V-56Q-62 -22 -30 -25Z" +/> +<glyph unicode="ˆ" glyph-name="circumflex" horiz-adv-x="499" d="M158 755Q140 755 136 766T142 795L188 860Q203 882 229 882H278Q304 882 318 860L365 795Q376 778 372 767T350 755H328Q307 755 293 777L254 835H252L213 777Q201 755 178 755H158Z" /> +<glyph unicode="˜" glyph-name="tilde" horiz-adv-x="499" d="M113 756Q84 756 84 788Q84 829 110 856T178 883Q209 883 233 866T275 832T311 815Q328 815 337 828T348 860Q350 880 378 880H386Q415 880 415 852Q415 807 390 780T321 753Q290 753 266 770T224 +804T188 821Q152 821 150 776Q147 756 121 756H113Z" /> +<glyph unicode="–" glyph-name="endash" horiz-adv-x="655" d="M97 246Q65 246 65 279V291Q65 324 97 324H558Q591 324 591 291V279Q591 246 558 246H97Z" /> +<glyph unicode="—" glyph-name="emdash" horiz-adv-x="855" d="M97 246Q65 246 65 279V291Q65 324 97 324H758Q791 324 791 291V279Q791 246 758 246H97Z" /> +<glyph unicode="‘" glyph-name="quoteleft" horiz-adv-x="209" d="M79 499Q61 499 54 509T52 537L102 691Q111 717 139 717H148Q183 717 175 681L139 529Q133 499 104 499H79Z" /> +<glyph unicode="’" glyph-name="quoteright" horiz-adv-x="207" d="M85 499Q48 499 58 536L93 688Q99 717 129 717H153Q171 717 178 707T180 680L130 526Q121 499 93 499H85Z" /> +<glyph unicode="‚" glyph-name="quotesinglbase" horiz-adv-x="226" d="M45 -77L81 76Q87 105 117 105H141Q159 105 166 95T168 68L118 -86Q109 -113 81 -113H73Q38 -113 45 -77Z" /> +<glyph unicode="“" glyph-name="quotedblleft" horiz-adv-x="356" d="M226 499Q208 499 201 509T199 537L249 691Q258 717 286 717H295Q330 717 322 681L287 529Q280 499 251 499H226ZM79 499Q61 499 54 509T52 537L102 691Q111 717 139 717H148Q183 717 +175 681L140 529Q134 499 104 499H79Z" /> +<glyph unicode="”" glyph-name="quotedblright" horiz-adv-x="354" d="M232 499Q196 499 204 536L240 688Q246 717 276 717H301Q339 717 328 680L278 526Q268 499 240 499H232ZM85 499Q48 499 58 536L93 688Q99 717 129 717H154Q172 717 179 707T181 680L131 +526Q122 499 93 499H85Z" /> +<glyph unicode="„" glyph-name="quotedblbase" horiz-adv-x="373" d="M193 -77L229 76Q235 105 264 105H289Q308 105 315 95T316 68L267 -86Q256 -113 229 -113H220Q185 -113 193 -77ZM46 -77L82 76Q88 105 118 105H143Q161 105 168 95T170 68L120 -86Q109 +-113 82 -113H74Q38 -113 46 -77Z" /> +<glyph unicode="†" glyph-name="dagger" horiz-adv-x="423" d="M164 -17V429H76Q43 429 43 461V473Q43 506 76 506H164V673Q164 706 197 706H224Q257 706 257 673V506H348Q381 506 381 473V461Q381 429 348 429H257V-17Q257 -50 224 -50H197Q164 -50 164 -17Z" /> +<glyph unicode="‡" glyph-name="daggerdbl" horiz-adv-x="435" d="M169 -17V171H82Q49 171 49 204V216Q49 249 82 249H169V429H82Q49 429 49 461V473Q49 506 82 506H169V673Q169 706 202 706H230Q263 706 263 673V506H354Q387 506 387 473V461Q387 429 +354 429H263V249H354Q387 249 387 216V204Q387 171 354 171H263V-17Q263 -50 230 -50H202Q169 -50 169 -17Z" /> +<glyph unicode="•" glyph-name="bullet" horiz-adv-x="411" d="M205 136Q141 136 96 181T51 291T96 400T205 446Q270 446 315 401T360 291T315 181T205 136Z" /> +<glyph unicode="…" glyph-name="ellipsis" horiz-adv-x="745" d="M581 33V72Q581 105 614 105H650Q683 105 683 72V33Q683 0 650 0H614Q581 0 581 33ZM322 33V72Q322 105 354 105H390Q423 105 423 72V33Q423 0 390 0H354Q322 0 322 33ZM62 33V72Q62 105 +95 105H131Q164 105 164 72V33Q164 0 131 0H95Q62 0 62 33Z" /> +<glyph unicode="‰" glyph-name="perthousand" horiz-adv-x="1100" d="M199 422Q136 422 92 465T47 570T91 674T199 718Q261 718 306 675T351 570T306 466T199 422ZM94 40L588 687Q603 706 628 706H646Q667 706 673 694T666 666L172 20Q156 0 132 0H114Q93 +0 87 12T94 40ZM168 496T199 496T251 517T273 570T252 623T199 645T147 623T125 570Q125 538 146 517ZM764 136Q764 197 808 240T916 284Q978 284 1023 241T1068 136T1023 32T916 -12Q852 -12 808 31T764 136ZM410 136Q410 197 454 240T561 284T668 241T713 136T669 +32T561 -12T454 31T410 136ZM842 136Q842 104 863 83T916 62Q947 62 968 83T990 136T969 189T916 211T864 189T842 136ZM488 167T488 136T509 84T561 62T613 83T635 136Q635 167 614 189T561 211T509 189Z" /> +<glyph unicode="‹" glyph-name="guilsinglleft" horiz-adv-x="321" d="M199 96L70 259Q50 282 70 305L199 469Q215 488 240 488H260Q281 488 286 476T279 448L148 282L279 117Q292 100 288 89T264 77H240Q215 77 199 96Z" /> +<glyph unicode="›" glyph-name="guilsinglright" horiz-adv-x="321" d="M85 77Q64 77 59 88T66 117L197 282L66 448Q53 464 57 476T82 488H106Q130 488 146 469L276 305Q296 282 276 259L146 96Q130 77 106 77H85Z" /> +<glyph unicode="€" glyph-name="Euro" horiz-adv-x="599" d="M70 258Q40 258 40 290Q40 321 70 321H95Q90 353 95 393H71Q40 393 40 425T71 457H106Q137 573 230 645T445 718Q472 718 512 713Q547 707 537 673L530 646Q523 616 496 621Q463 626 443 626Q360 +626 299 580T212 457H456Q492 457 486 424Q480 393 449 393H197Q192 358 197 321H430Q468 321 460 288Q455 258 424 258H214Q237 178 300 130T446 82Q482 82 505 87Q538 93 544 63L550 36Q557 3 525 -3Q482 -12 445 -12Q318 -12 226 62T105 258H70Z" /> +<glyph unicode="™" glyph-name="trademark" horiz-adv-x="965" d="M454 300L485 675Q487 706 518 706H529Q557 706 568 681L660 476L674 434H676Q682 458 690 476L782 681Q793 706 821 706H832Q863 706 865 675L895 300Q897 266 863 266H853Q823 266 820 +297L802 529L803 559H801L716 373Q706 347 678 347H672Q644 347 634 373L549 559H547L548 529L529 297Q527 266 496 266H486Q452 266 454 300ZM225 266Q192 266 192 299V639H73Q40 639 40 670V675Q40 706 73 706H387Q420 706 420 675V670Q420 639 387 639H268V299Q268 +266 235 266H225Z" /> +</font> +</defs> +</svg> diff --git a/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.ttf b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.ttf Binary files differnew file mode 100644 index 000000000..7bec6cf5f --- /dev/null +++ b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.ttf diff --git a/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.woff b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.woff Binary files differnew file mode 100644 index 000000000..dfbbe1cdc --- /dev/null +++ b/web/cobrands/fixmystreet/fonts/MuseoSansRounded500.woff diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss new file mode 100644 index 000000000..01c23e8d0 --- /dev/null +++ b/web/cobrands/fixmystreet/layout.scss @@ -0,0 +1,160 @@ +@import "_colours"; + +body { + margin: 7px 0 0 0; + padding: 0; + background-attachment: fixed; + background-color: $colour; + background-image: -webkit-linear-gradient(top, $colour_dark, $colour 6px); /* Chrome 10+, Saf5.1+, iOS 5+ */ + background-image: -moz-linear-gradient(top, $colour_dark, $colour 6px); /* FF3.6 */ + background-image: -ms-linear-gradient(top, $colour_dark, $colour 6px); /* IE10 */ + background-image: -o-linear-gradient(top, $colour_dark, $colour 6px); /* Opera 11.10+ */ + background-image: linear-gradient(top, $colour_dark, $colour 6px); +} + +/* A third wrapper is needed because display:table cannot be given a max-width. + * The other two wrappers (to set full width white background and the + * max-width, are defined in base.scss. */ +#wrapper3 { + display: table; + caption-side: top; + width: 100%; + background-color: #fff; +} + +/* As the navigation is put in place using position:absolute in IE6+7, add some + * extra space here to cover it. */ +.ie6, .ie7 { + #wrapper3 { + padding-top: 2em; + } +} + +#mysociety { + padding: 0 0 1em 0; +} + +/* Giving this a display: table-caption, and #wrapper3 a caption-side: top, + * means that this div appears above the main content, even though it is below + * it in source order. */ +#top { + border: none; + padding-top: 0; + margin: 0; + display: table-caption; + line-height: 1.2; +} + +#top .spacer { + display: table-cell; + width: 100%; +} + +/* The two lists in the navigation are displayed as simple horizontal lists in + * table cells. */ +.nav { + display: table-cell; + width: auto; + white-space: nowrap; + margin: 0; + padding: 0; + list-style-type: none; + vertical-align: top; +} + +.nav li { + display: inline-block; +} + +.nav a { + text-decoration: none; + display: block; + padding: 10px; +} + +ul#top-nav li a { + color: $colour; + padding: 9px 20px 8px 0px; +} + +ul#top-nav li a:hover { + color: #000; +} + +ul#mysociety-tab { + line-height: 1.5; + font-size: 68.75%; + text-transform: uppercase; + background: $colour; + border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + -webkit-border-radius: 0 0 6px 6px; +} + +ul#mysociety-tab li a { + color: #fff; +} + +ul#mysociety-tab li a:hover { + color: #000; +} + +#mysociety-logo { + width: 78px; + background: url(mysociety-logo.png) center center no-repeat; + text-indent: -999999em; +} + +/* As IE6 cannot cope with the PNG transparency (the above logo will work on + * any colour), we generate a static non-transparent PNG on the right + * background colour and use that here. */ +.ie6 #mysociety-logo { + background: url(mysociety-logo-ie6.png) center center no-repeat; +} + +#footer p { + text-align: center; + display: table-cell; + width: 31%; + padding: 0 1%; + margin: 0; +} + +/* IE6 and IE7 do no understand display:table, but we'd like them to get the + * grasp of the right thing, rather than the mobile-first default. So move the + * navigation bar into place with position:absolute, and float all the list + * items. */ +.ie6, .ie7 { + + #top { + position: absolute; + top: 7px; + right: 0; + width: 38em; + } + + #top .spacer { + display: none; + } + + .nav { + float: left; + } + + .nav li { + float: left; + display: block; + } + + .nav a { + display: block; + } + + #footer p { + text-align: left; + width: auto; + padding: 0; + margin: 0.5em 0; + } + +} diff --git a/web/cobrands/fixmystreet/mysociety-logo-ie6.png b/web/cobrands/fixmystreet/mysociety-logo-ie6.png Binary files differnew file mode 100644 index 000000000..f86ff95c4 --- /dev/null +++ b/web/cobrands/fixmystreet/mysociety-logo-ie6.png diff --git a/web/cobrands/fixmystreet/mysociety-logo.png b/web/cobrands/fixmystreet/mysociety-logo.png Binary files differnew file mode 100644 index 000000000..8b7d6fc75 --- /dev/null +++ b/web/cobrands/fixmystreet/mysociety-logo.png diff --git a/web/css/core.scss b/web/css/core.scss index 675471b40..a38a188ce 100644 --- a/web/css/core.scss +++ b/web/css/core.scss @@ -86,8 +86,12 @@ $map_width: 500px; margin: 0; } + p#expl small { + display: block; + } + #postcodeForm { - display: table; /* IE6 has fixed width set below */ + display: table; /* Full width in IE6 and IE7 */ text-align: center; font-size: 150%; margin: 1em auto; @@ -95,6 +99,9 @@ $map_width: 500px; -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; + -moz-box-shadow: 2px 2px 4px #999; + -webkit-box-shadow: 2px 2px 4px #999; + box-shadow: 2px 2px 4px #999; label { float: none; @@ -170,7 +177,7 @@ $map_width: 500px; float: left; text-align: right; padding-right: 0.5em; - width: 5em; + width: 6em; } fieldset, .fieldset { @@ -562,15 +569,12 @@ $map_width: 500px; right: 3px; } -.ie6 { +.ie6, .ie7 { #mysociety { #front_stats div { float: left; margin: 0 1em 1em; } - #postcodeForm { - width: 33em; - } } } @@ -587,7 +591,11 @@ $map_width: 500px; @media all and (max-width: 50em) { #mysociety { p#expl { - font-size: 110%; + font-size: 120%; + } + + p#expl small { + display: inline; } #postcodeForm { diff --git a/web/js/fixmystreet.js b/web/js/fixmystreet.js index 638930a35..524bcdafa 100644 --- a/web/js/fixmystreet.js +++ b/web/js/fixmystreet.js @@ -4,11 +4,20 @@ */ function form_category_onchange() { - $.getJSON('/report/new/category_extras', { - latitude: fixmystreet.latitude, - longitude: fixmystreet.longitude, - category: this.options[ this.selectedIndex ].text, - }, function(data) { + var cat = $('#form_category'); + var args = { + category: cat.val() + }; + + if ( typeof fixmystreet !== 'undefined' ) { + args['latitude'] = fixmystreet.latitude; + args['longitude'] = fixmystreet.longitude; + } else { + args['latitude'] = $('input[name="latitude"]').val(); + args['longitude'] = $('input[name="longitude"]').val(); + } + + $.getJSON('/report/new/category_extras', args, function(data) { if ( data.category_extra ) { if ( $('#category_meta').size() ) { $('#category_meta').html( data.category_extra); |