diff options
85 files changed, 26600 insertions, 3461 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index 6e562d97d..e13291c2d 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -440,7 +440,7 @@ class RequestController < ApplicationController elsif @info_request.calculate_status == 'gone_postal' redirect_to respond_to_last_url(@info_request) + "?gone_postal=1" elsif @info_request.calculate_status == 'internal_review' - flash[:notice] = _("<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a response within 20 days, or be told if it will take longer (<a href=\"{{review_url}}\">details</a>).</p>", :review_url => unhappy_url(@info_request) + "#internal_review") + flash[:notice] = _("<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a response within {{late_number_of_days}} days, or be told if it will take longer (<a href=\"{{review_url}}\">details</a>).</p>",:late_number_of_days => MySociety::Config.get('REPLY_LATE_AFTER_DAYS', 20), :review_url => unhappy_url(@info_request) + "#internal_review") redirect_to request_url(@info_request) elsif @info_request.calculate_status == 'error_message' flash[:notice] = _("<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below.</p>") @@ -619,23 +619,29 @@ class RequestController < ApplicationController # special caching code so mime types are handled right around_filter :cache_attachments, :only => [ :get_attachment, :get_attachment_as_html ] def cache_attachments - key = params.merge(:only_path => true) - key_path = foi_fragment_cache_path(key) + if !params[:skip_cache].nil? + yield + else + key = params.merge(:only_path => true) + key_path = foi_fragment_cache_path(key) - if foi_fragment_cache_exists?(key_path) - cached = foi_fragment_cache_read(key_path) - response.content_type = AlaveteliFileTypes.filename_to_mimetype(params[:file_name].join("/")) || 'application/octet-stream' - render_for_text(cached) - return - end + if foi_fragment_cache_exists?(key_path) + cached = foi_fragment_cache_read(key_path) + response.content_type = AlaveteliFileTypes.filename_to_mimetype(params[:file_name].join("/")) || 'application/octet-stream' + render_for_text(cached) + return + end - yield + yield - # write it to the fileystem ourselves, so is just a plain file. (The - # various fragment cache functions using Ruby Marshall to write the file - # which adds a header, so isnt compatible with images that have been - # extracted elsewhere from PDFs) - foi_fragment_cache_write(key_path, response.body) + if params[:skip_cache].nil? + # write it to the fileystem ourselves, so is just a plain file. (The + # various fragment cache functions using Ruby Marshall to write the file + # which adds a header, so isnt compatible with images that have been + # extracted elsewhere from PDFs) + foi_fragment_cache_write(key_path, response.body) + end + end end def get_attachment @@ -664,7 +670,7 @@ class RequestController < ApplicationController view_html_stylesheet = render_to_string :partial => "request/view_html_stylesheet" html.sub!(/<head>/i, "<head>" + view_html_stylesheet) - html.sub!(/<body[^>]*>/i, '<body><prefix-here><div id="' + wrapper_id + '"><div id="view_html_content">') + html.sub!(/<body[^>]*>/i, '<body><prefix-here><div id="' + wrapper_id + '"><div id="view-html-content">') html.sub!(/<\/body[^>]*>/i, '</div></div></body>') view_html_prefix = render_to_string :partial => "request/view_html_prefix" @@ -672,7 +678,6 @@ class RequestController < ApplicationController html.sub!("<attachment-url-here>", CGI.escape(@attachment_url)) @incoming_message.html_mask_stuff!(html) - response.content_type = 'text/html' render :text => html end diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index b0b02fdda..16ae38b92 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -255,7 +255,8 @@ class FOIAttachment text = CGI.escapeHTML(text) text = MySociety::Format.make_clickable(text) html = text.gsub(/\n/, '<br>') - return "<html><head></head><body>" + html + "</body></html>", wrapper_id + return '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" + "http://www.w3.org/TR/html4/loose.dtd"><html><head><title></title></head><body>' + html + "</body></html>", wrapper_id end # the extractions will also produce image files, which go in the @@ -987,7 +988,6 @@ class IncomingMessage < ActiveRecord::Base attachment.filename = _get_censored_part_file_name(leaf) if leaf.within_rfc822_attachment attachment.within_rfc822_subject = leaf.within_rfc822_attachment.subject - # Test to see if we are in the first part of the attached # RFC822 message and it is text, if so add headers. # XXX should probably use hunting algorithm to find main text part, rather than diff --git a/app/views/general/_frontpage_intro_sentence.rhtml b/app/views/general/_frontpage_intro_sentence.rhtml index 2c3bcaf83..4e6dbecb3 100644 --- a/app/views/general/_frontpage_intro_sentence.rhtml +++ b/app/views/general/_frontpage_intro_sentence.rhtml @@ -1,3 +1,3 @@ -First, type in the <strong>name of the UK public authority</strong> you'd -<br>like information from. <strong>By law, they have to respond</strong> -(<a href="<%= help_about_url %>">why?</a>). +<h3>Use your Right to Know</h3> + +Every citizen has the right to access information held by public authorities. <strong>By law, they have to respond</strong>. <a href="<%= help_about_url %>">Find out more about freedom of information.</a> diff --git a/app/views/general/_orglink.rhtml b/app/views/general/_orglink.rhtml index 20d0d6ce4..7d74dbaac 100644 --- a/app/views/general/_orglink.rhtml +++ b/app/views/general/_orglink.rhtml @@ -1,2 +1,2 @@ <%-# Put the link to your organisation here, or leave blank -%> -<a href="http://www.alaveteli.org">an Alaveteli site</a> +<%= link_to image_tag('logo.png'), frontpage_url, :id=>'logo' %> diff --git a/app/views/general/frontpage.rhtml b/app/views/general/frontpage.rhtml index abed0294e..a188e7359 100644 --- a/app/views/general/frontpage.rhtml +++ b/app/views/general/frontpage.rhtml @@ -1,33 +1,40 @@ <% view_cache :ttl => 5.minutes, :tag => I18n.locale do %> -<div id="frontpage_search"> - <h1><%= _('Make or explore Freedom of Information requests') %></h1> + <div class="frontpage-box" id="frontpage-box-1"> + <%= render :partial => 'frontpage_intro_sentence' %> + </div> + + <div class="frontpage-box" id="frontpage-box-2"> + <div id="bighand"> + Make a new <strong>Freedom of Information</strong> request + <br /> + <a href="/select_authority"><img alt="Start-button" src="/images/start-button.png?1314013338"></a> + </div> + </div> + + <div class="frontpage-box" id="frontpage-box-3"> + <div id="littlehand"> + Search over <strong><%= InfoRequest.count %> requests</strong> and <strong><%= PublicBody.count %> authorities</strong>: <% form_tag({:action => "search_redirect"}, {:id => "search_form"}) do %> - <p> - <%= render :partial => 'frontpage_intro_sentence' %> - <br> - - <br> <%= text_field_tag 'query', params[:query], { :size => 30 } %> <%= hidden_field_tag 'bodies', 1 %> - <%= submit_tag _('Search') %> + <%= image_submit_tag 'button-search.png', :title => 'Search' %> <br> <%= _('e.g.') %> <% @search_examples.each_with_index do |name, i| %> <%=link_to name, search_url(name, 'bodies')%><% if i < 2 %>, <% else %>. <% break %><% end %> <% end %> - - <br> - <br> - <%= _('OR, <strong>search</strong> for information others have requested using {{site_name}}', :site_name => site_name) %> - </p> <% end %> -</div> + </div> + </div> + <div id="frontpage_examples"> <% if @popular_bodies.size > 0 %> <div id="examples_0"> + <h3>Who has the information?</h3> + <%= site_name %> covers requests to <%= PublicBody.count %> authorities, including: <ul> <% for popular_body in @popular_bodies %> <li><%=public_body_link(popular_body)%> @@ -36,23 +43,27 @@ <% end%> </ul> <p><strong> - <%= link_to _('More authorities...'), list_public_bodies_default %> + <%= link_to _('Browse all authorities...'), list_public_bodies_default %> </strong></p> </div> <% end %> - <% if @successful_request_events.size > 0 %> <div id="examples_1"> + <h3>What are people asking?</h3> + <%= site_name %> users have asked <%= InfoRequest.count %> questions. <ul> - <% for event in @successful_request_events %> - <li><%=link_to h(excerpt(event.info_request.title, "", 30)), request_url(event.info_request)%> - <%= _('{{length_of_time}} ago', :length_of_time => time_ago_in_words(event.described_at)) %> + + <% for event in @successful_request_events %> + <li> + <%= public_body_link(event.info_request.public_body) %> answered a question about + <%=link_to h(event.info_request.title), request_url(event.info_request)%> + <%= _('{{length_of_time}} ago', :length_of_time => time_ago_in_words(event.described_at)) %> + <p class="excerpt" onclick="document.location.href='<%=request_url(event.info_request)%>'"><%= excerpt(event.info_request.title, "", 200) %></p> </li> <% end %> </ul> <p><strong><%=link_to _('More successful requests...'), request_list_successful_url %></strong></p> </div> - <% end %> </div> diff --git a/app/views/general/search.rhtml b/app/views/general/search.rhtml index ec12b2bf3..cc522b367 100644 --- a/app/views/general/search.rhtml +++ b/app/views/general/search.rhtml @@ -1,120 +1,113 @@ <% @show_tips = @xapian_requests.nil? || (@total_hits == 0) %> -<% if @query.nil? %> - <% @title = _("Search Freedom of Information requests, public authorities and users") %> - <h1><%=@title%></h1> -<% elsif @total_hits == 0 %> - <%= _("Nothing found for ‘{{search_terms}}’", :search_terms => h(@query)) %> -<% else %> - <% @title = _("Results page {{page_number}}", :page_number => @page.to_s) %> -<% end%> - <% @include_request_link_in_authority_listing = true %> -<% if @bodies && (@page == 1 || @xapian_bodies.results.size > 0) %> - <div id="stepwise_instructions"> - <p><strong><%=_("Next, select the public authority you'd like to make the request from.") %></strong></p> - <p><% _('Can\'t find it? <a href="%s">Browse all</a> or <a href="%s">ask us to add it</a>.') % [list_public_bodies_default, "#{help_requesting_path}#missing_body"] %></p> - <p> - </div> -<% end %> - -<% form_tag({:action => "search_redirect"}, {:id => "search_form"}) do %> - <p> - <%= text_field_tag 'query', @query, { :size => 40 } %> - <%= hidden_field_tag 'sortby', @inputted_sortby %> - <% if @bodies %> - <%= hidden_field_tag 'bodies', 1 %> - <% end %> - <%= submit_tag _("Search") %> - <% if not @show_tips %> - <%= link_to _('Advanced search tips'), search_redirect_path %> - <% end %> - </p> -<% end %> - -<% if !@query.nil? %> - <p> - <%=link_to_unless @sortby == 'relevant', _("Show most relevant results first"), search_url(@query, 'relevant') %> - | - <%=link_to_unless @sortby == 'newest', _("Newest results first"), search_url(@query, 'newest') %> - <% if @sortby == 'described' %> - | <%= _('Recently described results first') %> - <% end %> - </p> +<div id="header_left"> + <% if @query.nil? %> + <h1>Search</h1> + <% else %> + <h1>Search results</h1> + <% end%> + + <% form_tag({:action => "search_redirect"}, {:id => "search_form"}) do %> + <p> + <%= text_field_tag 'query', @query, { :size => 40 } %> + <%= hidden_field_tag 'sortby', @inputted_sortby %> + <% if @bodies %> + <%= hidden_field_tag 'bodies', 1 %> + <% end %> + <%= image_submit_tag 'button-search.png', :title=>"Search" %> + <% if not @show_tips %> + <%= link_to _('Advanced search tips'), search_redirect_path %> + <% end %> + </p> + <% end %> + + <% if !@query.nil? %> + <p id="search_controls"> + <%=link_to_unless @sortby == 'relevant', _("Show most relevant results first"), search_url(@query, 'relevant') %> + | + <%=link_to_unless @sortby == 'newest', _("Newest results first"), search_url(@query, 'newest') %> + <% if @sortby == 'described' %> + | <%= _('Recently described results first') %> + <% end %> + </p> + <% end %> +</div> + +<% if @track_thing %> + <div id="header_right"> + <h2>Track this search</h2> + <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> + </div> <% end %> -<% if @bodies && !@query.nil? && @xapian_bodies.results.size == 0 && @page == 1 %> - <h1><%= _('No public authorities found') %></h1> - <% if @spelling_correction %> - <p id="did_you_mean"><%= _('Did you mean: {{correction}}', - :correction => search_link(@spelling_correction, @postfix)) %></p> - <% end %> - <p><%= _('<a href="%s">Browse all</a> or <a href="%s">ask us to add one</a>.') % [list_public_bodies_default, help_requesting_path + '#missing_body'] %></p> -<% end %> +<div style="clear:both;"></div> <% if @total_hits == 0 %> - <h1><%=@title %></h1> + <h2><%=@title %></h2> <% end %> <% if not @query.nil? %> - <% if @spelling_correction %> - <p id="did_you_mean"><%= _('Did you mean: {{correction}}', :correction => search_link(@spelling_correction, @postfix)) %></p> - <% end %> - - <% if (!@bodies || @xapian_requests.results.size == 0) && @track_thing && (@xapian_bodies.results.size > 0 || @xapian_users.results.size > 0 || @total_hits == 0)%> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> - <% end %> - - <% if @xapian_bodies.results.size > 0 %> - <% if @xapian_bodies.results.size == 1 && @page == 1 %> - <h1><%= _('One public authority matching ‘{{user_search_query}}’', :user_search_query => h(@query)) %></h1> - <% else %> - <h1><%= _('Public authorities {{start_count}} to {{end_count}} of {{total_count}} for {{user_search_query}}', :start_count => ((@page-1)*@bodies_per_page+1).to_s, :end_count => [@page*@bodies_per_page, @xapian_bodies.matches_estimated].min.to_s, :total_count => @xapian_bodies.matches_estimated.to_s, :user_search_query => h(@query)) %></h1> - <% end %> - - <% for result in @xapian_bodies.results %> - <%= render :partial => 'public_body/body_listing_single', :locals => { :public_body => result[:model] } %> - <% end %> - - <%= will_paginate WillPaginate::Collection.new(@page, @bodies_per_page, @xapian_bodies.matches_estimated) %> - <% end %> - - <% if @xapian_users.results.size > 0 %> - <% if @xapian_users.results.size == 1 && @page == 1 %> - <h1><%= _("One person matching ‘{{user_search_query}}’", :user_search_query => h(@query)) %></h1> - <% else %> - <h1><%= _("People {{start_count}} to {{end_count}} of {{total_count}} for ‘{{user_search_query}}’", :start_count => ((@page-1)*@users_per_page+1).to_s, :end_count => [@page*@users_per_page, @xapian_users.matches_estimated].min.to_s, :total_count => @xapian_users.matches_estimated.to_s, :user_search_query => h(@query)) %></h1> - <% end %> - - <% for result in @xapian_users.results %> - <%= render :partial => 'user/user_listing_single', :locals => { :display_user => result[:model] } %> - <% end %> - - <%= will_paginate WillPaginate::Collection.new(@page, @users_per_page, @xapian_users.matches_estimated) %> - <% end %> - - <% if @xapian_requests.results.size > 0 %> - <% if @xapian_requests.results.size == 1 && @page == 1 %> - <h1><%= _("One FOI request matching ‘{{user_search_query}}’", :user_search_query => h(@query)) %></h1> - <% else %> - <h1><%= _("FOI requests {{start_count}} to {{end_count}} of {{total_count}} for ‘{{user_search_query}}’", :start_count => ((@page-1)*@requests_per_page+1).to_s, :end_count => [@page*@requests_per_page, @xapian_requests.matches_estimated].min.to_s, :total_count => @xapian_requests.matches_estimated.to_s, :user_search_query => h(@query)) %></h1> - <% end %> - - <% if @track_thing %> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> + <div class="results_section"> + <% if @xapian_bodies.results.size > 0 %> + <% if @xapian_bodies.results.size == 1 && @page == 1 %> + <h2 class="publicbody_results"><%= _('One public authority found') %></h2> + <% else %> + <h2 class="publicbody_results"><%= _('Public authorities {{start_count}} to {{end_count}} of {{total_count}} for {{user_search_query}}', :start_count => ((@page-1)*@bodies_per_page+1).to_s, :end_count => [@page*@bodies_per_page, @xapian_bodies.matches_estimated].min.to_s, :total_count => @xapian_bodies.matches_estimated.to_s, :user_search_query => h(@query)) %></h2> + <% end %> + + <div class="results_block"> + <% for result in @xapian_bodies.results %> + <%= render :partial => 'public_body/body_listing_single', :locals => { :public_body => result[:model] } %> + <% end %> + </div> + + <%= will_paginate WillPaginate::Collection.new(@page, @bodies_per_page, @xapian_bodies.matches_estimated) %> + <% elsif @bodies && !@query.nil? && @xapian_bodies.results.size == 0 && @page == 1 %> + <h2 class="publicbody_results"><%= _('No public authorities found') %></h2> + <% if @spelling_correction %> + <p id="did_you_mean"><%= _('Did you mean: {{correction}}', :correction => search_link(@spelling_correction, @postfix)) %></p> <% end %> + <p><%= _('<a href="%s">Browse all</a> or <a href="%s">ask us to add one</a>.') % [list_public_bodies_default, help_requesting_path + '#missing_body'] %></p> + <% end %> + </div> - <% for result in @xapian_requests.results %> - <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result[:model], :info_request => result[:model].info_request } %> - <% end %> + <div class="results_section"> + <% if @xapian_users.results.size > 0 %> + <% if @xapian_users.results.size == 1 && @page == 1 %> + <h2 class="person_results"><%= _("One person found") %></h2> + <% else %> + <h2 class="person_results"><%= _("People {{start_count}} to {{end_count}} of {{total_count}} for ‘{{user_search_query}}’", :start_count => ((@page-1)*@users_per_page+1).to_s, :end_count => [@page*@users_per_page, @xapian_users.matches_estimated].min.to_s, :total_count => @xapian_users.matches_estimated.to_s, :user_search_query => h(@query)) %></h2> + <% end %> + + <div class="results_block"> + <% for result in @xapian_users.results %> + <%= render :partial => 'user/user_listing_single', :locals => { :display_user => result[:model] } %> + <% end %> + </div> + + <%= will_paginate WillPaginate::Collection.new(@page, @users_per_page, @xapian_users.matches_estimated) %> + <% end %> + </div> - <%= will_paginate WillPaginate::Collection.new(@page, @requests_per_page, @xapian_requests.matches_estimated) %> - <% if @track_thing %> - <p></p> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> - <% end %> - <% end %> + <div class="results_section"> + <% if @xapian_requests.results.size > 0 %> + <% if @xapian_requests.results.size == 1 && @page == 1 %> + <h2 class="foi_results"><%= _("One FOI request found") %></h2> + <% else %> + <h2 class="foi_results"><%= _("FOI requests {{start_count}} to {{end_count}} of {{total_count}} for ‘{{user_search_query}}’", :start_count => ((@page-1)*@requests_per_page+1).to_s, :end_count => [@page*@requests_per_page, @xapian_requests.matches_estimated].min.to_s, :total_count => @xapian_requests.matches_estimated.to_s, :user_search_query => h(@query)) %></h2> + <% end %> + + <div class="results_block"> + <% for result in @xapian_requests.results %> + <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result[:model], :info_request => result[:model].info_request } %> + <% end %> + </div> + + <%= will_paginate WillPaginate::Collection.new(@page, @requests_per_page, @xapian_requests.matches_estimated) %> + <% end %> + </div> <% end %> <% if @show_tips %> @@ -152,7 +145,7 @@ <tr><td><strong><%=search_link('status:user_withdrawn')%></strong></td><td><%= _('The requester has abandoned this request for some reason') %></td></tr> </table> - <h2 id="varieties">Table of varieties</h2> + <h2 id="varieties"><%= _('Table of varieties') %></h2> <table class="status_table"> <tr><td><strong><%=search_link('variety:sent')%></strong></td><td><%= _('Original request sent') %></td></tr> diff --git a/app/views/help/_sidebar.rhtml b/app/views/help/_sidebar.rhtml index 99298e9c6..b6d26271e 100644 --- a/app/views/help/_sidebar.rhtml +++ b/app/views/help/_sidebar.rhtml @@ -1,6 +1,6 @@ -<div id="about_sidebar"> - <h1>Help pages</h1> - <ul> +<div id="right_column"> + <h2>Help pages</h2> + <ul class="no_bullets"> <li><%= link_to_unless_current "Introduction", "/help/about" %></li> <li><%= link_to_unless_current "Making requests", "/help/requesting" %></li> <li><%= link_to_unless_current "Your privacy", "/help/privacy" %></li> @@ -10,7 +10,7 @@ <li><%= link_to_unless_current "Advanced search", "/search" %></li> </ul> - <h1 id="contact">Contact us</h1> + <h2 id="contact">Contact us</h2> <p>If your question isn't answered here, or you just wanted to let us know something about the site, <a href="/help/contact">contact us</a>. </p> diff --git a/app/views/help/about.rhtml b/app/views/help/about.rhtml index d22cc5b30..648ca1fb2 100644 --- a/app/views/help/about.rhtml +++ b/app/views/help/about.rhtml @@ -2,50 +2,52 @@ <%= render :partial => 'sidebar' %> -<h1 id="introduction">Introduction to <%= site_name %><a href="#introduction">#</a> </h1> -<dl> - -<dt id="purpose">What is <%= site_name %> for? <a href="#purpose">#</a> </dt> -<dd>To help you find out inside information about what the UK government -is doing. -</dd> - -<dt id="premise">How does the site work? <a href="#premise">#</a> </dt> -<dd>You choose the public authority that you would like information from, then -write a brief note describing what you want to know. We then send your request -to the public authority. Any response they make is automatically published on the -website for you and anyone else to find and read. -</dd> - -<dt id="whybother_me">Why would I bother to do this? <a href="#whybother_me">#</a> </dt> -<dd>You pay taxes, and then government does things with the money. All sorts of -things that affect your life, from healthcare through to national defence. Some -it does badly, some it does well. The more we find out about how government -works, the better able we are to make suggestions to improve the things that -are done badly, and to celebrate the things that are done well. -</dd> - -<dt id="whybother_them">Why would the public authority bother to reply? <a href="#whybother_them">#</a> </dt> -<dd>Under Freedom of Information (FOI) law, they have to respond. The response -will either contain the information you want, or give a valid legal reason why -it must be kept confidential. -</dd> - -<dt id="who">Who makes <%= site_name %>? <a href="#who">#</a> </dt> -<dd><%= site_name %> is created and run by <a href="http://www.mysociety.org">mySociety</a>, -and was initially <a href="http://www.mysociety.org/2006/12/06/funding-for-freedom-of-information/">funded by the JRSST Charitable Trust</a>. mySociety is a project of the -registered charity <a href="http://www.ukcod.org.uk/UK_Citizens_Online_Democracy">UK Citizens Online Democracy</a>. -If you like what we're doing, then you can -<a href="https://secure.mysociety.org/donate/">make a donation</a>. -</dd> - -<dt id="updates">How can I keep up with news about <%= site_name %>?<a href="#updates">#</a> </dt> -<dd>We have a <a href="/blog">blog</a> and a <a href="http://www.twitter.com/whatdotheyknow">twitter feed</a>. -</dd> - - -</dl> - -<p><strong>Next</strong>, read about <a href="/help/requesting">making requests</a> --> - -<div id="hash_link_padding"></div> +<div id="left_column"> + <h1 id="introduction">Introduction</h1> + <dl> + + <dt id="purpose">What is WhatDoTheyKnow for? <a href="#purpose">#</a> </dt> + <dd>To help you find out inside information about what the UK government + is doing. + </dd> + + <dt id="premise">How does the site work? <a href="#premise">#</a> </dt> + <dd>You choose the public authority that you would like information from, then + write a brief note describing what you want to know. We then send your request + to the public authority. Any response they make is automatically published on the + website for you and anyone else to find and read. + </dd> + + <dt id="whybother_me">Why would I bother to do this? <a href="#whybother_me">#</a> </dt> + <dd>You pay taxes, and then government does things with the money. All sorts of + things that affect your life, from healthcare through to national defence. Some + it does badly, some it does well. The more we find out about how government + works, the better able we are to make suggestions to improve the things that + are done badly, and to celebrate the things that are done well. + </dd> + + <dt id="whybother_them">Why would the public authority bother to reply? <a href="#whybother_them">#</a> </dt> + <dd>Under Freedom of Information (FOI) law, they have to respond. The response + will either contain the information you want, or give a valid legal reason why + it must be kept confidential. + </dd> + + <dt id="who">Who makes WhatDoTheyKnow? <a href="#who">#</a> </dt> + <dd>WhatDoTheyKnow is created and run by <a href="http://www.mysociety.org">mySociety</a>, + and was initially <a href="http://www.mysociety.org/2006/12/06/funding-for-freedom-of-information/">funded by the JRSST Charitable Trust</a>. mySociety is a project of the + registered charity <a href="http://www.ukcod.org.uk/UK_Citizens_Online_Democracy">UK Citizens Online Democracy</a>. + If you like what we're doing, then you can + <a href="https://secure.mysociety.org/donate/">make a donation</a>. + </dd> + + <dt id="updates">How can I keep up with news about WhatDoTheyKnow?<a href="#updates">#</a> </dt> + <dd>We have a <a href="/blog">blog</a> and a <a href="http://www.twitter.com/whatdotheyknow">twitter feed</a>. + </dd> + + + </dl> + + <p><strong>Next</strong>, read about <a href="/help/requesting">making requests</a> --> + + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/help/api.rhtml b/app/views/help/api.rhtml index 3cafbb665..297aa1e8b 100644 --- a/app/views/help/api.rhtml +++ b/app/views/help/api.rhtml @@ -1,82 +1,81 @@ -<% @title = "Application Programming Interface - API" %> +<% @title = "About our API" %> <%= render :partial => 'sidebar' %> -<h1><%=@title %></h1> - -<h2> Introduction </h2> - -<p>This page explains how programmers can make other websites and software -interact with <%= site_name %> via an "API". -</p> - -<p><%= site_name %> does not have a full API yet, but we are gradually adding -lots of things that are similar in use to an API as they are requested. -</p> - -<hr> - -<h2> 1. Linking to new requests </h2> - -<p>To encourage your users to make links to a particular public authority, use URLs of the form -<%= link_to new_request_to_body_url(:url_name => "liverpool_city_council") , new_request_to_body_url(:url_name => "liverpool_city_council") %>. -These are the parameters you can add to those URLs, either in the URL or from a form. - -<ul> - <li> <strong>title</strong> - default summary of the new request.</li> - <li> <strong>default_letter</strong> - default text of the body of the letter. The salutation (Dear...) and signoff (Yours...) are wrapped round this. </li> - <li> <strong>body</strong> - as an alternative to default_letter, this sets the default entire text of the request, so you can customise the salutation and signoff. </li> - <li> <strong>tags</strong> - space separated list of tags, so you can find and link up any requests made later, e.g. <em>openlylocal spending_id:12345</em>. The : indicates it is a machine tag. The values of machine tags may also include colons, useful for URIs. -</ul> - -<hr> - -<h2> 2. RSS (actually, Atom) feeds </h2> - -<p>There are Atom feeds on most pages which list FOI requests, which you can -use to get updates and links in XML format. Find the URL of the Atom feed in -one of these ways: -<ul> - <li>Look for the <img src="/images/feed-16.png" alt=""> RSS feed links.</li> - <li>Examine the <tt><link rel="alternate" type="application/atom+xml"></tt> tag in the head of the HTML. </li> - <li>Add <tt>/feed</tt> to the start of another URL. -</ul> - -<p>In particular, even complicated search queries have Atom feeds. -You can do all sorts of things with them, such as query by authority, by file -type, by date range, or by status. See the <a href="/search">advanced search -tips</a> for details. - -<hr> - -<h2> 3. JSON structured data </h2> - -<p>Quite a few pages have JSON versions, which let you download information about -objects in a structured form. Find them by: -<ul> - <li>Adding <tt>.json</tt> to the end of the URL. </li> - <li>Look for the <tt><link rel="alternate" type="application/json"></tt> tag in the head of the HTML. </li> -</ul> -</p> - -<p>Requests, users and authorities all have JSON versions containing basic -information about them. Every Atom feed has a JSON equivalent, containing -information about the list of events in the feed. -</p> - -<hr> -<h2> 4. Spreadsheet of all authorities </h2> - -<p> -A spreadsheet file listing every body in <%= site_name %> is available: -<%= link_to "all-authorities.csv", all_public_bodies_csv_url() %> -</p> - -<hr> - -<p>Please <a href="/help/contact">contact us</a> if you need an API feature that isn't there yet. It's -very much a work in progress, and we do add things when people ask us to.</p> - -<div id="hash_link_padding"></div> - +<div id="left_column"> + <h1><%=@title %></h1> + <dl> + <dt>Introduction</dt> + <dd> + <p>This page explains how programmers can make other websites and software + interact with WhatDoTheyKnow via an "API". + </p> + + <p>WhatDoTheyKnow does not have a full API yet, but we are gradually adding + lots of things that are similar in use to an API as they are requested. + </p> + </dd> + + <dt>Linking to new requests</dt> + <dd> + <p>To encourage your users to make links to a particular public authority, use URLs of the form + <%= link_to new_request_to_body_url(:url_name => "liverpool_city_council") , new_request_to_body_url(:url_name => "liverpool_city_council") %>. + These are the parameters you can add to those URLs, either in the URL or from a form. + + <ul> + <li> <strong>title</strong> - default summary of the new request.</li> + <li> <strong>default_letter</strong> - default text of the body of the letter. The salutation (Dear...) and signoff (Yours...) are wrapped round this. </li> + <li> <strong>body</strong> - as an alternative to default_letter, this sets the default entire text of the request, so you can customise the salutation and signoff. </li> + <li> <strong>tags</strong> - space separated list of tags, so you can find and link up any requests made later, e.g. <em>openlylocal spending_id:12345</em>. The : indicates it is a machine tag. The values of machine tags may also include colons, useful for URIs. + </ul> + </dd> + + <dt>RSS (actually, Atom) feeds</h2> + <dd> + <p>There are Atom feeds on most pages which list FOI requests, which you can + use to get updates and links in XML format. Find the URL of the Atom feed in + one of these ways: + <ul> + <li>Look for the <img src="/images/feed-16.png" alt=""> RSS feed links.</li> + <li>Examine the <tt><link rel="alternate" type="application/atom+xml"></tt> tag in the head of the HTML. </li> + <li>Add <tt>/feed</tt> to the start of another URL. + </ul> + + <p>In particular, even complicated search queries have Atom feeds. + You can do all sorts of things with them, such as query by authority, by file + type, by date range, or by status. See the <a href="/search">advanced search + tips</a> for details. + </dd> + + <dt>JSON structured data</dt> + <dd> + <p>Quite a few pages have JSON versions, which let you download information about + objects in a structured form. Find them by: + <ul> + <li>Adding <tt>.json</tt> to the end of the URL. </li> + <li>Look for the <tt><link rel="alternate" type="application/json"></tt> tag in the head of the HTML. </li> + </ul> + </p> + + <p>Requests, users and authorities all have JSON versions containing basic + information about them. Every Atom feed has a JSON equivalent, containing + information about the list of events in the feed. + </p> + </dd> + + <dt>Spreadsheet of all authorities</dt> + <dd> + <p> + A spreadsheet file listing every body in WhatDoTheyKnow is available: + <%= link_to "all-authorities.csv", all_public_bodies_csv_url() %> + </p> + + </dd> + </dl> + + <p>Please <a href="/help/contact">contact us</a> if you need an API feature that isn't there yet. It's + very much a work in progress, and we do add things when people ask us to.</p> + + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/help/contact.rhtml b/app/views/help/contact.rhtml index 6c65fb1c9..dd49f7951 100644 --- a/app/views/help/contact.rhtml +++ b/app/views/help/contact.rhtml @@ -2,10 +2,12 @@ <%= foi_error_messages_for :contact %> +<h1><%= @title %></h1> + <div id="contact_preamble"> <% if !flash[:notice] %> - <h1>Contact an authority to get official information</h1> + <h2>Contact an authority to get official information</h2> <ul> <li><a href="/new">Go here</a> to make a request, in public, for information from UK public authorities.</li> @@ -17,7 +19,7 @@ </li> </ul> - <h1>Take up an issue with Government</h1> + <h2>Take up an issue with Government</h2> <ul> <li><a href="http://www.writetothem.com">Write to your MP, @@ -28,7 +30,7 @@ <% end %> - <h1>Contact the <%= site_name %> team</h1> + <h2>Contact the WhatDoTheyKnow team</h2> <% if !flash[:notice] %> <ul> <li> diff --git a/app/views/help/credits.rhtml b/app/views/help/credits.rhtml index 02cd55c90..fd753336b 100644 --- a/app/views/help/credits.rhtml +++ b/app/views/help/credits.rhtml @@ -1,90 +1,91 @@ -<% @title = "Credit where credit is due" %> +<% @title = "Credit where credit's due" %> <%= render :partial => 'sidebar' %> -<h1 id="credits"><%= @title%> <a href="#credits">#</a> </h1> +<div id="left_column"> + <h1 id="credits"><%= @title%></h1> -<dl> - -<dt id="thanks">Which people made <%= site_name %>? <a href="#thanks">#</a> </dt> -<dd>Oh, nearly everyone (and <a href="http://www.mysociety.org/helpus">maybe you too</a>)! -<ul> -<li> - <a href="http://www.yrtk.org">Heather Brooke</a> - (<a href="http://www.guardian.co.uk/politics/2008/mar/29/houseofcommons.michaelmartin?gusrc=rss&feed=worldnews">vampy!</a>) has - been pushing the idea of a UK FOI archive for years now. -</li> -<li> - Both Phil Rodgers and <a href="http://www.flourish.org/blog/">Francis Irving</a> - entered it in a mySociety competition for ideas for public interest websites to build. -</li> -<li> - <a href="http://www.mysociety.org/2006/09/27/the-mysociety-call-for-proposals-the-winner-and-runners-up/">It won</a>, - and then Chris Lightfoot (<a href="http://mk.ucant.org/archives/000129.html">RIP :(</a>) - thought up the wheeze of intercepting email responses to requests and - automatically publishing them. -</li> -<li> - Tom Steinberg got the cash to pay for the site from - <a href="http://www.jrrt.org.uk/">a dead chocolate mogul</a> (<em>thank you!</em>) ... -</li> -<li> - ... so that Francis Irving, Angie Ahl, Tommy Martin, Louise Crow, Matthew Somerville - and Tom Steinberg could do the complex mixture of design and coding to build - what you see today. -</li> -<li> - Thanks particularly to Julian Todd (<a href="http://www.freesteel.co.uk/wpblog/">great blog!</a>), - Francis Davey, and Etienne Pollard for using the site early on and giving - feedback (and/or legal advice!), and also to all our other users and - testers. -</li> -<li> - The amazing team of volunteers who run the site, answer your support - emails, maintain the database of public authorities and - <a href="http://www.mysociety.org/2009/10/13/behind-whatdotheyknow/">so much more</a>. - Thanks to John Cross, Ben Harris, Adam McGreggor, Alex Skene, - Richard Taylor. -</li> -<li> - Volunteers who have provided patches to the code - thanks Peter Collingbourne - and Tony Bowden. -</li> -<li> - Everyone who has helped look up FOI email addresses. -</li> -<li> - We couldn't do any of this without those - <a href="http://www.ukcod.org.uk/UKCOD_Trustees">crazy people</a> who volunteer, - amongst many other things, to do the accounts and fill in our VAT return. -</li> -<li> - Finally, all the officers and servants who have answered the many requests - made through the site. Their diligence, patience and professionalism is - what has actually made the information that you see here. Thank them for - helping make Government more transparent. -</li> -</ul> -You're all stars. -</dd> - -<dt id="helpus">Can I help out? <a href="#helpus">#</a> </dt> -<dd> - <p>Yes please! We're built out of our supporters and volunteers.</p> + <dl> + <dt id="thanks">Who made WhatDoTheyKnow? <a href="#thanks">#</a> </dt> + <dd>Oh, nearly everyone (and <a href="http://www.mysociety.org/helpus">maybe you too</a>)! <ul> - <li>You can <a href="https://secure.mysociety.org/donate/">make a donation</a>. We're a registered charity.</li> - <li>Help people find successful requests, and monitor performance of authorities, by - <a href="/categorise/play">playing the categorisation game</a>. </li> - <li>Find out FOI email addresses of <a href="/help/requesting#missing_body">authorities that we're missing</a>.</li> - <li>Write a blog post about either <%= site_name %> or an interesting request that you've - found. Post about it on a forum that you frequent. Tell friends about it.</li> <li>If you're - a programmer, get the source code for our parent project, <a href="http://alaveteli.org">Alaveteli</a> - and tell us about patches we can pull. It's made in Ruby on Rails. - <li>Read more about <a href="http://www.mysociety.org/helpus/">volunteering with mySociety</a>. + <li> + <a href="http://www.yrtk.org">Heather Brooke</a> + (<a href="http://www.guardian.co.uk/politics/2008/mar/29/houseofcommons.michaelmartin?gusrc=rss&feed=worldnews">vampy!</a>) has + been pushing the idea of a UK FOI archive for years now. + </li> + <li> + Both Phil Rodgers and <a href="http://www.flourish.org/blog/">Francis Irving</a> + entered it in a mySociety competition for ideas for public interest websites to build. + </li> + <li> + <a href="http://www.mysociety.org/2006/09/27/the-mysociety-call-for-proposals-the-winner-and-runners-up/">It won</a>, + and then Chris Lightfoot (<a href="http://mk.ucant.org/archives/000129.html">RIP :(</a>) + thought up the wheeze of intercepting email responses to requests and + automatically publishing them. + </li> + <li> + Tom Steinberg got the cash to pay for the site from + <a href="http://www.jrrt.org.uk/">a dead chocolate mogul</a> (<em>thank you!</em>) ... + </li> + <li> + ... so that Francis Irving, Angie Ahl, Tommy Martin, Louise Crow, Matthew Somerville + and Tom Steinberg could do the complex mixture of design and coding to build + what you see today. + </li> + <li> + Thanks particularly to Julian Todd (<a href="http://www.freesteel.co.uk/wpblog/">great blog!</a>), + Francis Davey, and Etienne Pollard for using the site early on and giving + feedback (and/or legal advice!), and also to all our other users and + testers. + </li> + <li> + The amazing team of volunteers who run the site, answer your support + emails, maintain the database of public authorities and + <a href="http://www.mysociety.org/2009/10/13/behind-whatdotheyknow/">so much more</a>. + Thanks to John Cross, Ben Harris, Adam McGreggor, Alex Skene, + Richard Taylor. + </li> + <li> + Volunteers who have provided patches to the code - thanks Peter Collingbourne + and Tony Bowden. + </li> + <li> + Everyone who has helped look up FOI email addresses. + </li> + <li> + We couldn't do any of this without those + <a href="http://www.ukcod.org.uk/UKCOD_Trustees">crazy people</a> who volunteer, + amongst many other things, to do the accounts and fill in our VAT return. + </li> + <li> + Finally, all the officers and servants who have answered the many requests + made through the site. Their diligence, patience and professionalism is + what has actually made the information that you see here. Thank them for + helping make Government more transparent. + </li> </ul> -</dd> + You're all stars. + </dd> + <dt id="helpus">Can I help out? <a href="#helpus">#</a> </dt> + <dd> + <p>Yes please! We're built out of our supporters and volunteers.</p> + <ul> + <li>You can <a href="https://secure.mysociety.org/donate/">make a donation</a>. We're a registered charity.</li> + <li>Help people find successful requests, and monitor performance of authorities, by + <a href="/categorise/play">playing the categorisation game</a>. </li> + <li>Find out FOI email addresses of <a href="/help/requesting#missing_body">authorities that we're missing</a>.</li> + <li>Write a blog post about either WhatDoTheyKnow or an interesting request that you've + found. Post about it on a forum that you frequent. Tell friends about it.</li> <li>If you're + a programmer, get the source code for our parent project, <a href="http://alaveteli.org">Alaveteli</a> + and tell us about patches we can pull. It's made in Ruby on Rails. + <li>Read more about <a href="http://www.mysociety.org/helpus/">volunteering with mySociety</a>. + </ul> + </dd> + </dl> -<div id="hash_link_padding"></div> + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/help/officers.rhtml b/app/views/help/officers.rhtml index d9656186a..b26138db6 100644 --- a/app/views/help/officers.rhtml +++ b/app/views/help/officers.rhtml @@ -2,246 +2,246 @@ <%= render :partial => 'sidebar' %> -<h1 id="officers"><%= @title %> <a href="#officers">#</a> </h1> - -<dl> - -<dt id="top">I just got here from bottom of an FOI request, what is going on? <a href="#top">#</a> </dt> - -<dd><p><%= site_name %> is a service run by a charity. It helps ordinary members -of the public make FOI requests, and easily track and share the responses.</p> - -<p>The FOI request you received was made by someone using <%= site_name %>. You can -simply reply to the request as you would any other request from an individual. -The only difference is that your response will be automatically published on -the Internet. -</p> -<p>If you have privacy or other concerns, please read the answers below. -You might also like to read the <a -href="/help/about">introduction to <%= site_name %></a> to find out more about what -the site does from the point of view of a user. You can also search the -site to find the authority that you work for, and view the status of -any requests made using the site. - -<p>Finally, we welcome comments and -thoughts from FOI officers, please <a href="/help/contact">get in touch</a>. -</p> -</dd> - -<dt id="responses">Why are you publishing responses to FOI requests? <a href="#responses">#</a> </dt> - -<dd>We think there are lots of benefits. Most importantly it will encourage the -public to be more interested and involved in the work of government. We -also hope that it will reduce the number of duplicate requests on any -subject that a public body will receive. Given that Freedom of Information -responses contain public information, which anybody could easily request -again from the public authority, we think there should be no reason not to -publish it widely. -</dd> - -<dt id="realpeople">Are the people making requests real people? <a href="#realpeople">#</a> </dt> - -<dd>Yes. For the purposes of keeping track of responses we use -computer-generated email addresses for each request. However, before -they can send a request, each user must register on the site with a -unique email address that we then verify. You can search this site and -find a page listing all requests that each person has made. -</dd> - -<dt id="email_only">An email isn't a sufficient address for an FOI request! <a href="#email_only">#</a> </dt> - -<dd>Yes it is. This -<a href="http://www.whatdotheyknow.com/request/1142/response/2894/attach/5/20080806100741260.pdf">letter from the ICO to Rother District Council</a> gives guidance on the matter, specifically -in the context of requests made via <%= site_name %>. -</dd> - -<dt id="vexatious">Aren't you making lots of vexatious requests? <a href="#vexatious">#</a> </dt> - -<dd><p><%= site_name %> is not making any requests. We are sending requests on -behalf of our users, who are real people making the requests. </p> -<p>Look at it like this - if lots of different people made requests from -different Hotmail email addresses, then you would not think that Microsoft were -making vexatious requests. It is exactly the same if lots of requests are made -via <%= site_name %>. Moreover, since all requests are public it is much easier -for you to see if one of our users is making vexatious requests. </p> -<p>If that isn't enough for you, the -<a href="http://www.whatdotheyknow.com/request/1142/response/2894/attach/5/20080806100741260.pdf">letter from the ICO to Rother District Council</a> gives some guidance on the matter.</p> -</dd> - -<dt id="spam_problems">I can see a request on <%= site_name %>, but we never got it by email!<a href="#spam_problems">#</a> </dt> - -<dd><p>If a request appears on the site, then we have attempted to send it to -the authority by email. Any delivery failure messages will automatically -appear on the site. You can check the address we're using with the "View FOI -email address" link which appears on the page for the authority. <a -href="/help/contact">Contact us</a> if there is a better address we can -use.</p> -<p>Requests are sometimes not delivered because they are quietly removed by -"spam filters" in the IT department of the authority. Authorities can make -sure this doesn't happen by asking their IT departments to "whitelist" -any email from <strong>@whatdotheyknow.com</strong>. -If you <a href="/help/contact">ask us</a> we will resend any request, -and/or give technical details of delivery so an IT department can chase -up what happened to the message. -</p> -<p>Finally, you can respond to any request from your web browser, without -needing any email, using the "respond to request" link at the bottom of -each request page. -</dd> - -<dt id="days">How do you calculate the deadline shown on request pages?<a href="#days">#</a> </dt> - -<dd> -<p>The Freedom of Information Act says:</p> - -<blockquote><p>A public authority must comply with section 1(1) <strong>promptly</strong> and -in any event not later than the twentieth working day following the date of -receipt.</p></blockquote> - -<p>The nerdy detail of exactly how weekends are counted, and what happens if -the request arrives out of office hours, is just that - detail. What matters -here is that the law says authorities must respond <strong>promptly</strong>.</p> - -<p>If you've got a good reason why the request is going to take a while to -process, requesters find it really helpful if you can send a quick email with a -sentence or two saying what is happening. </p> - -<p>FOI officers often have to do a lot of <strong>hard work</strong> to answer -requests, and this is hidden from the public. We think it would help everyone -to have more of that complexity visible.</p> - -</dd> - -<dt id="days2">But really, how do you calculate the deadline?<a href="#days2">#</a> </dt> - -<dd> - -<p>Please read the answer to the previous question first. Legally, authorities -must respond <strong>promptly</strong> to FOI requests. If they fail to do that, -it is best if they show the hard work they are doing by explaining what is -taking the extra time to do. -</p> - -<p>That said, <%= site_name %> does show the maximum legal deadline -for response on each request. Here's how we calculate it.</p> - -<ul> - -<li>If the day we deliver the request by email is a working day, we count that -as "day zero", even if it was delivered late in the evening. Days end at -midnight. We then count the next working day as "day one", and so on up to -<strong>20 working days</strong>.</li> - -<li>If the day the request email was delivered was a non-working day, we count -the next working day as "day one". Delivery is delivery, even if it happened on -the weekend. Some authorities -<a href="http://www.whatdotheyknow.com/request/policy_regarding_body_scans#incoming-1100">disagree with this</a>, -our lawyer disagrees with them. </li> - -<li>Requesters are encouraged to mark when they have <strong>clarified</strong> -their request so the clock resets, but sometimes they get this wrong. If you -see a problem with a particular request, let us know and we'll fix it.</li> -</ul> - -<p>The date thus calculated is shown on requests with the text "By law, -Liverpool City Council should normally have responded by...". There is only -one case which is not normal, see the next question about -<a href="#public_interest_test">public interest test time extensions</a>. -</p> - -<p>Schools are also a special case, which <%= site_name %> displays differently. -</p> - -<ul> -<li>Since June 2009, <strong>schools</strong> have "20 working days -disregarding any working day which is not a school day, or 60 working days, -whichever is first" (<a href="http://www.opsi.gov.uk/si/si2009/draft/ukdsi_9780111477632_en_1">FOI (Time for Compliance with Request) Regulations 2009</a>). <%= site_name %> indicates on requests to schools that the 20 day deadline is only -during term time, and shows them as definitely overdue after 60 working days -</li> -</ul> - -<p>If you're getting really nerdy about all this, read the <a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/timeforcompliance.pdf">detailed ICO guidance</a>. -Meanwhile, remember that the law says authorities must respond -<strong>promptly</strong>. That's really what matters.</p> - -</dd> - -<dt id="public_interest_test">How do you reflect time extensions for public interest tests?<a href="#public_interest_test">#</a> </dt> - -<dd> - -<p>The Freedom of Information Act lets authorities claim an indefinite time -extension when applying a <strong>public interest test</strong>. Information -Commissioner guidance says that it should only be used in "exceptionally -complex" cases -(<a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/foi_good_practice_guidance_4.pdf">FOI Good Practice Guidance No. 4</a>). -<%= site_name %> doesn't specifically handle this case, which is why we use the -phrase "should normally have responded by" when the 20 working day time is -exceeded. -</p> - -<p>The same guidance says that, even in exceptionally complex cases, no -Freedom of Information request should take more than <strong>40 working days</strong> -to answer. <%= site_name %> displays requests which are overdue by that much -with stronger wording to indicate they are definitely late. -</p> +<div id="left_column"> + <h1 id="officers"><%= @title %> <a href="#officers">#</a> </h1> + + <dl> + + <dt id="top">I just got here from bottom of an FOI request, what is going on? <a href="#top">#</a> </dt> + + <dd><p>WhatDoTheyKnow is a service run by a charity. It helps ordinary members + of the public make FOI requests, and easily track and share the responses.</p> + + <p>The FOI request you received was made by someone using WhatDoTheyKnow. You can + simply reply to the request as you would any other request from an individual. + The only difference is that your response will be automatically published on + the Internet. + </p> + <p>If you have privacy or other concerns, please read the answers below. + You might also like to read the <a + href="/help/about">introduction to WhatDoTheyKnow</a> to find out more about what + the site does from the point of view of a user. You can also search the + site to find the authority that you work for, and view the status of + any requests made using the site. + + <p>Finally, we welcome comments and + thoughts from FOI officers, please <a href="/help/contact">get in touch</a>. + </p> + </dd> + + <dt id="responses">Why are you publishing responses to FOI requests? <a href="#responses">#</a> </dt> + + <dd>We think there are lots of benefits. Most importantly it will encourage the + public to be more interested and involved in the work of government. We + also hope that it will reduce the number of duplicate requests on any + subject that a public body will receive. Given that Freedom of Information + responses contain public information, which anybody could easily request + again from the public authority, we think there should be no reason not to + publish it widely. + </dd> + + <dt id="realpeople">Are the people making requests real people? <a href="#realpeople">#</a> </dt> + + <dd>Yes. For the purposes of keeping track of responses we use + computer-generated email addresses for each request. However, before + they can send a request, each user must register on the site with a + unique email address that we then verify. You can search this site and + find a page listing all requests that each person has made. + </dd> + + <dt id="email_only">An email isn't a sufficient address for an FOI request! <a href="#email_only">#</a> </dt> + + <dd>Yes it is. This + <a href="http://www.whatdotheyknow.com/request/1142/response/2894/attach/5/20080806100741260.pdf">letter from the ICO to Rother District Council</a> gives guidance on the matter, specifically + in the context of requests made via WhatDoTheyKnow. + </dd> + + <dt id="vexatious">Aren't you making lots of vexatious requests? <a href="#vexatious">#</a> </dt> + + <dd><p>WhatDoTheyKnow is not making any requests. We are sending requests on + behalf of our users, who are real people making the requests. </p> + <p>Look at it like this - if lots of different people made requests from + different Hotmail email addresses, then you would not think that Microsoft were + making vexatious requests. It is exactly the same if lots of requests are made + via WhatDoTheyKnow. Moreover, since all requests are public it is much easier + for you to see if one of our users is making vexatious requests. </p> + <p>If that isn't enough for you, the + <a href="http://www.whatdotheyknow.com/request/1142/response/2894/attach/5/20080806100741260.pdf">letter from the ICO to Rother District Council</a> gives some guidance on the matter.</p> + </dd> + + <dt id="spam_problems">I can see a request on WhatDoTheyKnow, but we never got it by email!<a href="#spam_problems">#</a> </dt> + + <dd><p>If a request appears on the site, then we have attempted to send it to + the authority by email. Any delivery failure messages will automatically + appear on the site. You can check the address we're using with the "View FOI + email address" link which appears on the page for the authority. <a + href="/help/contact">Contact us</a> if there is a better address we can + use.</p> + <p>Requests are sometimes not delivered because they are quietly removed by + "spam filters" in the IT department of the authority. Authorities can make + sure this doesn't happen by asking their IT departments to "whitelist" + any email from <strong>@whatdotheyknow.com</strong>. + If you <a href="/help/contact">ask us</a> we will resend any request, + and/or give technical details of delivery so an IT department can chase + up what happened to the message. + </p> + <p>Finally, you can respond to any request from your web browser, without + needing any email, using the "respond to request" link at the bottom of + each request page. + </dd> + + <dt id="days">How do you calculate the deadline shown on request pages?<a href="#days">#</a> </dt> + + <dd> + <p>The Freedom of Information Act says:</p> + + <blockquote><p>A public authority must comply with section 1(1) <strong>promptly</strong> and + in any event not later than the twentieth working day following the date of + receipt.</p></blockquote> + + <p>The nerdy detail of exactly how weekends are counted, and what happens if + the request arrives out of office hours, is just that - detail. What matters + here is that the law says authorities must respond <strong>promptly</strong>.</p> + + <p>If you've got a good reason why the request is going to take a while to + process, requesters find it really helpful if you can send a quick email with a + sentence or two saying what is happening. </p> + + <p>FOI officers often have to do a lot of <strong>hard work</strong> to answer + requests, and this is hidden from the public. We think it would help everyone + to have more of that complexity visible.</p> + + </dd> + + <dt id="days2">But really, how do you calculate the deadline?<a href="#days2">#</a> </dt> + + <dd> + + <p>Please read the answer to the previous question first. Legally, authorities + must respond <strong>promptly</strong> to FOI requests. If they fail to do that, + it is best if they show the hard work they are doing by explaining what is + taking the extra time to do. + </p> + + <p>That said, WhatDoTheyKnow does show the maximum legal deadline + for response on each request. Here's how we calculate it.</p> + + <ul> + + <li>If the day we deliver the request by email is a working day, we count that + as "day zero", even if it was delivered late in the evening. Days end at + midnight. We then count the next working day as "day one", and so on up to + <strong>20 working days</strong>.</li> + + <li>If the day the request email was delivered was a non-working day, we count + the next working day as "day one". Delivery is delivery, even if it happened on + the weekend. Some authorities <a href="http://www.whatdotheyknow.com/request/policy_regarding_body_scans#incoming-1100">disagree with this</a>, our lawyer disagrees with them. </li> + + <li>Requesters are encouraged to mark when they have <strong>clarified</strong> + their request so the clock resets, but sometimes they get this wrong. If you + see a problem with a particular request, let us know and we'll fix it.</li> + </ul> + + <p>The date thus calculated is shown on requests with the text "By law, + Liverpool City Council should normally have responded by...". There is only + one case which is not normal, see the next question about + <a href="#public_interest_test">public interest test time extensions</a>. + </p> + + <p>Schools are also a special case, which WhatDoTheyKnow displays differently. + </p> + + <ul> + <li>Since June 2009, <strong>schools</strong> have "20 working days + disregarding any working day which is not a school day, or 60 working days, + whichever is first" (<a href="http://www.opsi.gov.uk/si/si2009/draft/ukdsi_9780111477632_en_1">FOI (Time for Compliance with Request) Regulations 2009</a>). WhatDoTheyKnow indicates on requests to schools that the 20 day deadline is only + during term time, and shows them as definitely overdue after 60 working days + </li> + </ul> + + <p>If you're getting really nerdy about all this, read the <a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/timeforcompliance.pdf">detailed ICO guidance</a>. + Meanwhile, remember that the law says authorities must respond + <strong>promptly</strong>. That's really what matters.</p> + + </dd> + + <dt id="public_interest_test">How do you reflect time extensions for public interest tests?<a href="#public_interest_test">#</a> </dt> + + <dd> + + <p>The Freedom of Information Act lets authorities claim an indefinite time + extension when applying a <strong>public interest test</strong>. Information + Commissioner guidance says that it should only be used in "exceptionally + complex" cases + (<a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/foi_good_practice_guidance_4.pdf">FOI Good Practice Guidance No. 4</a>). + WhatDoTheyKnow doesn't specifically handle this case, which is why we use the + phrase "should normally have responded by" when the 20 working day time is + exceeded. + </p> + + <p>The same guidance says that, even in exceptionally complex cases, no + Freedom of Information request should take more than <strong>40 working days</strong> + to answer. WhatDoTheyKnow displays requests which are overdue by that much + with stronger wording to indicate they are definitely late. + </p> -<p>The Freedom of Information (Scotland) Act does not allow such a public -interest extension. <%= site_name %> would like to see the law changed to either -remove the extension from the UK Act, or to reintroduce an absolute time limit -of 40 working days even with the extension (the House of Lords <a -href="http://www.publicwhip.org.uk/division.php?date=2000-10-17&number=1&house=lords">voted -to remove</a> provision for such a time limit during the initial passage -of the UK Act through Parliament). -</p> -</dd> - -<dt id="large_file">How can I send a large file, which won't go by email?<a href="#large_file">#</a> </dt> + <p>The Freedom of Information (Scotland) Act does not allow such a public + interest extension. WhatDoTheyKnow would like to see the law changed to either + remove the extension from the UK Act, or to reintroduce an absolute time limit + of 40 working days even with the extension (the House of Lords <a + href="http://www.publicwhip.org.uk/division.php?date=2000-10-17&number=1&house=lords">voted + to remove</a> provision for such a time limit during the initial passage + of the UK Act through Parliament). + </p> + </dd> -<dd>Instead of email, you can respond to a request directly from your web -browser, including uploading a file. To do this, choose "respond to request" at -the bottom of the request's page. <a href="/help/contact">Contact us</a> if it -is too big for even that (more than, say, 50Mb). -</dd> - -<dt id="names">Why do you publish the names of civil servants and the text of emails? <a href="#names">#</a> </dt> + <dt id="large_file">How can I send a large file, which won't go by email?<a href="#large_file">#</a> </dt> -<dd>We consider what officers or servants do in the course of their employment -to be public information. We will only remove content in exceptional -circumstances, see our <a href="/help/privacy#takedown">take down policy</a>. -</dd> - -<dt id="mobiles">Do you publish email addresses or mobile phone numbers? <a href="#mobiles">#</a> </dt> - -<dd><p>To prevent spam, we automatically remove most emails and some mobile numbers from -responses to requests. Please <a href="/help/contact">contact us</a> if we've -missed one. -For technical reasons we don't always remove them from attachments, such as certain PDFs.</p> -<p>If you need to know what an address was that we've removed, please <a - href="/help/contact">get in touch with us</a>. Occasionally, an email address -forms an important part of a response and we will post it up in an obscured -form in an annotation. -</dd> - -<dt id="copyright"><a name="commercial"></a>What is your policy on copyright of documents?<a href="#copyright">#</a> </dt> - -<dd>Our Freedom of Information law is "applicant blind", so anyone in the -world can request the same document and get a copy of it. - -If you think our making a document available on the internet infringes your -copyright, you may <a href="/help/contact">contact us</a> and ask us -to take it down. However, to save tax payers' money by preventing duplicate -requests, and for good public relations, we'd advise you not to do that. -</dd> - -</dl> - - -</dl> - -<p><strong>If you haven't already</strong>, read <a href="/help/about">the introduction</a> --> -<br><strong>Otherwise</strong>, the <a href="/help/credits">credits</a> or the <a href="/help/api">programmers API</a> --> - -<div id="hash_link_padding"></div> + <dd>Instead of email, you can respond to a request directly from your web + browser, including uploading a file. To do this, choose "respond to request" at + the bottom of the request's page. <a href="/help/contact">Contact us</a> if it + is too big for even that (more than, say, 50Mb). + </dd> + + <dt id="names">Why do you publish the names of civil servants and the text of emails? <a href="#names">#</a> </dt> + + <dd>We consider what officers or servants do in the course of their employment + to be public information. We will only remove content in exceptional + circumstances, see our <a href="/help/privacy#takedown">take down policy</a>. + </dd> + + <dt id="mobiles">Do you publish email addresses or mobile phone numbers? <a href="#mobiles">#</a> </dt> + + <dd><p>To prevent spam, we automatically remove most emails and some mobile numbers from + responses to requests. Please <a href="/help/contact">contact us</a> if we've + missed one. + For technical reasons we don't always remove them from attachments, such as certain PDFs.</p> + <p>If you need to know what an address was that we've removed, please <a + href="/help/contact">get in touch with us</a>. Occasionally, an email address + forms an important part of a response and we will post it up in an obscured + form in an annotation. + </dd> + + <dt id="copyright"><a name="commercial"></a>What is your policy on copyright of documents?<a href="#copyright">#</a> </dt> + + <dd>Our Freedom of Information law is "applicant blind", so anyone in the + world can request the same document and get a copy of it. + + If you think our making a document available on the internet infringes your + copyright, you may <a href="/help/contact">contact us</a> and ask us + to take it down. However, to save tax payers' money by preventing duplicate + requests, and for good public relations, we'd advise you not to do that. + </dd> + + </dl> + + + </dl> + + <p><strong>If you haven't already</strong>, read <a href="/help/about">the introduction</a> --> + <br><strong>Otherwise</strong>, the <a href="/help/credits">credits</a> or the <a href="/help/api">programmers API</a> --> + + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/help/privacy.rhtml b/app/views/help/privacy.rhtml index fc8c54885..d62afa45b 100644 --- a/app/views/help/privacy.rhtml +++ b/app/views/help/privacy.rhtml @@ -2,54 +2,54 @@ <%= render :partial => 'sidebar' %> -<h1 id="privacy"><%= @title %> <a href="#privacy">#</a> </h1> - -<dl> - -<dt id="email_address">Who gets to see my email address? <a href="#email_address">#</a> </dt> - -<dd><p>We will not disclose your email address to anyone unless we are obliged to by law, -or you ask us to. This includes the public authority that you are sending a -request to. They only get to see an email address -@whatdotheyknow.com which is specific to that request. </p> -<p>If you send a message to another user on the site, then it will reveal your -email address to them. You will be told that this is going to happen.</p> -</dd> - -<dt id="nasty_spam">Will you send nasty, brutish spam to my email address? <a href="#nasty_spam">#</a> </dt> -<dd>Nope. After you sign up to <%= site_name %> we will only send you emails -relating to a request you made, an email alert that you have signed up for, -or for other reasons that you specifically authorise. We will never give or -sell your email addresses to anyone else, unless we are obliged to by law, or -you ask us to. -</dd> - -<dt id="public_request">Why will my name and my request appear publicly on the site? <a href="#public_request">#</a> </dt> - -<dd> -<p>We publish your request on the Internet so that anybody can read it and -make use of the information that you have found. We do not normally delete -requests (<a href="#delete_requests">more details</a>). -</p> -<p> -Your name is tangled up with your request, so has to be published as well. -It is only fair, as we're going to publish the name of the civil servant who -writes the response to your request. Using your real name also helps people -get in touch with you to assist you with your research or to campaign with you. -</p> -<p>By law, you must use your real name for the request to be a valid Freedom of -Information request. See the next question for alternatives if you do not want -to publish your full name. -</p> -</dd> - -<dt id="real_name">Can I make an FOI request using a pseudonym? <a href="#real_name">#</a> </dt> - - -<dd> -<p>Technically, you must use your real name for your request to be a valid Freedom of Information request in law. See this -<a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/name_of_applicant_fop083_v1.pdf">guidance from the Information Commissioner</a> (January 2009). -</p> +<div id="left_column"> + <h1 id="privacy"><%= @title %></h1> + <dl> + + <dt id="email_address">Who gets to see my email address? <a href="#email_address">#</a> </dt> + + <dd><p>We will not disclose your email address to anyone unless we are obliged to by law, + or you ask us to. This includes the public authority that you are sending a + request to. They only get to see an email address + @whatdotheyknow.com which is specific to that request. </p> + <p>If you send a message to another user on the site, then it will reveal your + email address to them. You will be told that this is going to happen.</p> + </dd> + + <dt id="nasty_spam">Will you send nasty, brutish spam to my email address? <a href="#nasty_spam">#</a> </dt> + <dd>Nope. After you sign up to WhatDoTheyKnow we will only send you emails + relating to a request you made, an email alert that you have signed up for, + or for other reasons that you specifically authorise. We will never give or + sell your email addresses to anyone else, unless we are obliged to by law, or + you ask us to. + </dd> + + <dt id="public_request">Why will my name and my request appear publicly on the site? <a href="#public_request">#</a> </dt> + + <dd> + <p>We publish your request on the Internet so that anybody can read it and + make use of the information that you have found. We do not normally delete + requests (<a href="#delete_requests">more details</a>). + </p> + <p> + Your name is tangled up with your request, so has to be published as well. + It is only fair, as we're going to publish the name of the civil servant who + writes the response to your request. Using your real name also helps people + get in touch with you to assist you with your research or to campaign with you. + </p> + <p>By law, you must use your real name for the request to be a valid Freedom of + Information request. See the next question for alternatives if you do not want + to publish your full name. + </p> + </dd> + + <dt id="real_name">Can I make an FOI request using a pseudonym? <a href="#real_name">#</a> </dt> + + + <dd> + <p>Technically, you must use your real name for your request to be a valid Freedom of Information request in law. See this + <a href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/detailed_specialist_guides/name_of_applicant_fop083_v1.pdf">guidance from the Information Commissioner</a> (January 2009). + </p> <p>However, the same guidance also says it is good practice for the public authority to still consider a request made using an obvious pseudonym. @@ -179,6 +179,6 @@ that authorities resend these with the personal information removed.</p> <p><strong>Learn more</strong> from the help for <a href="/help/officers">FOI officers</a> --> -<div id="hash_link_padding"></div> - + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/help/requesting.rhtml b/app/views/help/requesting.rhtml index eec887950..bd3ce46f3 100644 --- a/app/views/help/requesting.rhtml +++ b/app/views/help/requesting.rhtml @@ -1,293 +1,293 @@ <% @title = "Making requests" %> <%= render :partial => 'sidebar' %> - -<h1 id="making_requests"><%= @title %> <a href="#making_requests">#</a> </h1> -<dl> - -<dt id="which_authority">I'm not sure which authority to make my request to, how can I find out? <a href="#which_authority">#</a> </dt> - -<dd> -<p>It can be hard to untangle government's complicated structured, and work out -who knows the information that you want. Here are a few tips: -<ul> -<li>Browse or search <%= site_name %> looking for similar requests to yours.</li> -<li>When you've found an authority you think might have the information, use -the "home page" link on the right hand side of their page to check what they do -on their website.</li> -<li>Contact the authority by phone or email to ask if they hold the kind of -information you're after.</li> -<li>Don't worry excessively about getting the right authority. If you get it -wrong, they ought to advise you who to make the request to instead. -</li> -<li>If you've got a thorny case, please <a href="/help/contact">contact us</a> for help.</li> -</ul> - -</dd> - - - -<dt id="missing_body">You're missing the public authority that I want to request from! <a href="#missing_body">#</a> </dt> - -<dd> -<p>Please <a href="/help/contact">contact us</a> with the name of the public authority and, -if you can find it, their contact email address for Freedom of Information requests. -</p> -<p>If you'd like to help add a whole category of public authority to the site, we'd love -to hear from you too. -</p> - -</dd> - -<dt id="authorities">Why do you include some authorities that aren't formally subject to FOI?<a href="#authorities">#</a> </dt> - -<dd> -<p><%= site_name %> lets you make requests for information to a range of -organisations:</p> - -<ul> - <li> Those formally subject to the FOI Act</li> - <li> Those formally subject to the Environmental Regulations (a less well - defined group)</li> - <li> Those which voluntarily comply with the FOI Act</li> - <li> Those which aren't subject to the Act but we think should be, on grounds - such as them having significant public responsibilities. +<div id="left_column"> + <h1 id="making_requests"><%= @title %></h1> + <dl> + + <dt id="which_authority">I'm not sure which authority to make my request to, how can I find out? <a href="#which_authority">#</a> </dt> + + <dd> + <p>It can be hard to untangle government's complicated structured, and work out + who knows the information that you want. Here are a few tips: + <ul> + <li>Browse or search WhatDoTheyKnow looking for similar requests to yours.</li> + <li>When you've found an authority you think might have the information, use + the "home page" link on the right hand side of their page to check what they do + on their website.</li> + <li>Contact the authority by phone or email to ask if they hold the kind of + information you're after.</li> + <li>Don't worry excessively about getting the right authority. If you get it + wrong, they ought to advise you who to make the request to instead. </li> -</ul> - -<p>In the last case, we're using the site to lobby for expansion of the -scope of the FOI Act. Even if an organisation is not legally obliged to respond -to an FOI request, they can still do so voluntarily. -</p> - -</dd> - -<dt id="focused">Why must I keep my request focused?<a href="#focused">#</a> </dt> - -<dd> + <li>If you've got a thorny case, please <a href="/help/contact">contact us</a> for help.</li> + </ul> -<p> -Please put in your request only what is needed so that someone can -easily identify what information you are asking for. Please do -<i>not</i> include any of the following: -</p> + </dd> -<ul> -<li>arguments about your cause</li> -<li>statements that could defame or insult others</li> -</ul> -<p> -If you do, we may have to remove your request to avoid problems with -libel law, which is a pain for both you and us. Short, succinct messages -make it easier for authorities to be clear what information you are -requesting, which means you will get a reply more quickly. -</p> -<p> -If you want information to support an argument or campaign, Freedom of -Information is a powerful tool. Although you may not use this site to -run your campaign, we encourage you to use it to get the information you -need. We also encourage to run your campaign elsewhere - one effective -and very easy way is to <%= link_to 'start your own blog', -"http://wordpress.com/"%>. You are welcome to link to your campaign -from this site in an annotation to your request (you can make -annotations after submitting the request). -</p> + <dt id="missing_body">You're missing the public authority that I want to request from! <a href="#missing_body">#</a> </dt> -</dd> + <dd> + <p>Please <a href="/help/contact">contact us</a> with the name of the public authority and, + if you can find it, their contact email address for Freedom of Information requests. + </p> + <p>If you'd like to help add a whole category of public authority to the site, we'd love + to hear from you too. + </p> -<dt id="fees">Does it cost me anything to make a request?<a href="#fees">#</a> </dt> + </dd> -<dd> + <dt id="authorities">Why do you include some authorities that aren't formally subject to FOI?<a href="#authorities">#</a> </dt> -<p>Making an FOI request is nearly always free.</p> + <dd> + <p>WhatDoTheyKnow lets you make requests for information to a range of + organisations:</p> -<p>Authorities often include unnecessary, scary, boilerplate in -acknowledgement messages saying they "may" charge a fee. Ignore such notices. -They hardly ever will actually charge a fee. If they do, they can only charge you if -you have specifically agreed in advance to pay. <a - href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/practical_application/chargingafee.pdf">More - details</a> from the Information Commissioner. -</p> - -<p>Sometimes an authority will refuse your request, saying that the cost -of handling it exceeds £600 (for central government) or £450 (for all other -public authorities). At this point you can refine your -request. e.g. it would be much cheaper for an authority to tell you the amount -spent on marshmallows in the past year than in the past ten years. -</p> - -</dd> - - - -<dt id="quickly_response">How quickly will I get a response? <a href="#quickly_response">#</a> </dt> - -<dd> -<p>By law, public authorities must respond <strong>promptly</strong> to -requests. -</p> - -<p>Even if they are not prompt, in nearly all cases they must respond within -20 working days. If you had to clarify your request, or they are a school, -or one or two other cases, then they may have more time -(<a href="/help/officers#days">full details</a>). - -<p><%= site_name %> will email you if you don't get a timely response. You can -then send the public authority a message to remind them, and tell them if they -are breaking the law.</p> - -</dd> - -<dt id="deadline_extended">Deadline extended <a href="#deadline_extended">#</a> </dt> - -<dd> -<p>By law, public authorities must needs <strong>more time</strong> for request ... (TO DO) -</p> - - -</dd> -<dt id="no_response">What if I never get a response?<a href="#no_response">#</a> </dt> - -<dd> -<p>There are several things you can do if you never get a response.</p> -<ul> - <li>Sometimes there has been a genuine problem and the authority never - received the request. It is worth telephoning the authority and politely - checking that they received the request. It was sent to them by email. - </li> - <li>If they have not received it, the problem is most likely due to - "spam filters". Refer the authority to the measures in the answer - '<a href="/help/officers#spam_problems">I can see a request on <%= site_name %>, but we never got it by email!</a>' - in the FOI officers section of this help. + <ul> + <li> Those formally subject to the FOI Act</li> + <li> Those formally subject to the Environmental Regulations (a less well + defined group)</li> + <li> Those which voluntarily comply with the FOI Act</li> + <li> Those which aren't subject to the Act but we think should be, on grounds + such as them having significant public responsibilities. </li> - <li>If you're still having no luck, then you can ask for an internal review, - and then complain to the Information Commissioner about the authority. - Read our page '<a href="/help/unhappy">Unhappy about the response you got?</a>'. -</ul> -</dd> - -<dt id="not_satifised">What if I'm not satisfied with the response? <a href="#not_satifised">#</a> </dt> -<dd>If you didn't get the information you asked for, or you didn't get it in time, -then read our page '<a href="/help/unhappy">Unhappy about the response you got?</a>'. -</dd> - -<dt id="reuse">It says I can't re-use the information I got!<a href="#reuse">#</a> </dt> -<dd> -<p>Authorities often add legal boilerplate about the -"<a href="http://www.opsi.gov.uk/si/si2005/20051515">Re-Use of Public Sector -Information Regulations 2005</a>", which at first glance implies you may not -be able do anything with the information. -</p> - -<p>You can, of course, write articles about the information or summarise it, or -quote parts of it. We also think you should feel free to republish the -information in full, just as we do, even though in theory you might not be -allowed to do so. See <a href="/help/officers#copyright">our policy on copyright</a>.</p> - -</dd> - -<dt id="ico_help">Can you tell me more of the nitty gritty about the process of making requests? <a href="#ico_help">#</a> </dt> - -<dd> -<p>Have a look at the -<a href="http://www.ico.gov.uk/for_the_public/access_to_official_information.aspx">access to official information</a> -pages on the Information Commissioner's website.</p> - -<p>If you're requesting information from a Scottish public authority, -the process is very similar. There are differences around time -limits for compliance. -See the <a href="http://www.itspublicknowledge.info/nmsruntime/saveasdialog.asp?lID=1858&sID=321">Scottish -Information Commissioner's guidance</a> for details.</p> -</dd> - -<dt id="data_protection">Can I request information about myself? <a href="#data_protection">#</a> </dt> - -<dd> -<p>No. Requests made using <%= site_name %> are public, made under the Freedom of -Information Act, and cannot help you find information about a private -individual.</p> - -<p>If you would like to know what information a public -authority holds about yourself, you should make a "Subject Access Request" in -private using Data Protection law. The leaflet "<a -href="http://www.ico.gov.uk/upload/documents/library/data_protection/introductory/subject_access_rights.pdf">How to access your information</a>" (on the Information Commissioner's -website) explains how to do this.</p> - -<p>If you see that somebody has included personal information, perhaps -unwittingly, in a request, please <a href="/help/contact">contact us</a> -immediately so we can remove it.</p> -</dd> - - -<dt id="private_requests">I'd like to keep my request secret! (At least until I publish my story) <a href="#private_requests">#</a> </dt> - -<dd><p><%= site_name %> is currently only designed for public requests. All -responses that we receive are automatically published on the website for anyone -to read. </p> -<p>You should contact the public authority directly if you would like to -make a request in private. If you're interested in buying a system which helps -you manage FOI requests in secret, then <a href="/help/contact">contact us</a>. -</p> -</dd> - -<dt id="eir">Why can I only request information about the environment from some authorities? <a href="#eir">#</a> </dt> - -<dd> -<p>Some public authorities, such as <a href="http://www.whatdotheyknow.com/body/south_east_water">South East Water</a>, -don't come under the Freedom of Information Act, but do come under another law called -the Environmental Information Regulations (EIR). -</p> - -<p>It's a very similar law, so you make a request -to them using <%= site_name %> in just the same way as an FOI request. The only -difference is that on the page where your write you request, it reminds you -that you can only request "environmental information" and tells you what that -means. It is quite broad. -</p> - -<p>You can, of course, request environmental information from other -authorities. Just make a Freedom of Information (FOI) request as normal. The -authority has a duty to work out if the Environmental Information Regulations -(EIR) is the more appropriate legislation to reply under. -</p> -</dd> - -<dt id="multiple">Can I make the same to request to lots of authorities, e.g. all councils? <a href="#multiple">#</a> </dt> - -<dd>We ask you to first send a test version of your request to a few -authorities. Their responses will help you improve the wording of your request, -so that you get the best information when you send the request to all of -the authorities. There is currently no automated system for sending the request -to the other authorities, you must copy and paste it by hand. - -</dd> - -<dt id="offsite">I made a request off the site, how do I upload it to the archive?<a href="#offsite">#</a> </dt> - -<dd><%= site_name %> is an archive of requests made through the site, -and does not try to be an archive of all FOI requests. We'll never support uploading -other requests. For one thing, we wouldn't be able to verify that other -responses actually came from the authority. If this really matters to you, -you can always make the same request again via <%= site_name %>. -</dd> - -<dt id="moderation">How do you moderate request annotations? <a href="#moderation">#</a> </dt> - -<dd> -<p>Annotations on <%= site_name %> are to help -people get the information they want, or to give them pointers to places they -can go to help them act on it. We reserve the right to remove anything else. -</p> -<p>Endless, political discussions are not allowed. -Post a link to a suitable forum or campaign site elsewhere.</p> -<dd> + </ul> -</dl> + <p>In the last case, we're using the site to lobby for expansion of the + scope of the FOI Act. Even if an organisation is not legally obliged to respond + to an FOI request, they can still do so voluntarily. + </p> -<p><strong>Next</strong>, read about <a href="/help/privacy">your privacy</a> --> + </dd> -<div id="hash_link_padding"></div> + <dt id="focused">Why must I keep my request focused?<a href="#focused">#</a> </dt> + <dd> + + <p> + Please put in your request only what is needed so that someone can + easily identify what information you are asking for. Please do + <i>not</i> include any of the following: + </p> + + <ul> + <li>arguments about your cause</li> + <li>statements that could defame or insult others</li> + </ul> + + <p> + If you do, we may have to remove your request to avoid problems with + libel law, which is a pain for both you and us. Short, succinct messages + make it easier for authorities to be clear what information you are + requesting, which means you will get a reply more quickly. + </p> + + <p> + If you want information to support an argument or campaign, Freedom of + Information is a powerful tool. Although you may not use this site to + run your campaign, we encourage you to use it to get the information you + need. We also encourage to run your campaign elsewhere - one effective + and very easy way is to <%= link_to 'start your own blog', + "http://wordpress.com/"%>. You are welcome to link to your campaign + from this site in an annotation to your request (you can make + annotations after submitting the request). + </p> + + </dd> + + <dt id="fees">Does it cost me anything to make a request?<a href="#fees">#</a> </dt> + + <dd> + + <p>Making an FOI request is nearly always free.</p> + + <p>Authorities often include unnecessary, scary, boilerplate in + acknowledgement messages saying they "may" charge a fee. Ignore such notices. + They hardly ever will actually charge a fee. If they do, they can only charge you if + you have specifically agreed in advance to pay. <a + href="http://www.ico.gov.uk/upload/documents/library/freedom_of_information/practical_application/chargingafee.pdf">More + details</a> from the Information Commissioner. + </p> + + <p>Sometimes an authority will refuse your request, saying that the cost + of handling it exceeds £600 (for central government) or £450 (for all other + public authorities). At this point you can refine your + request. e.g. it would be much cheaper for an authority to tell you the amount + spent on marshmallows in the past year than in the past ten years. + </p> + + </dd> + + + + <dt id="quickly_response">How quickly will I get a response? <a href="#quickly_response">#</a> </dt> + + <dd> + <p>By law, public authorities must respond <strong>promptly</strong> to + requests. + </p> + + <p>Even if they are not prompt, in nearly all cases they must respond within + 20 working days. If you had to clarify your request, or they are a school, + or one or two other cases, then they may have more time + (<a href="/help/officers#days">full details</a>). + + <p>WhatDoTheyKnow will email you if you don't get a timely response. You can + then send the public authority a message to remind them, and tell them if they + are breaking the law.</p> + + </dd> + + <dt id="deadline_extended">Deadline extended <a href="#deadline_extended">#</a> </dt> + + <dd> + <p>By law, public authorities must needs <strong>more time</strong> for request ... (TO DO) + </p> + + + </dd> + <dt id="no_response">What if I never get a response?<a href="#no_response">#</a> </dt> + + <dd> + <p>There are several things you can do if you never get a response.</p> + <ul> + <li>Sometimes there has been a genuine problem and the authority never + received the request. It is worth telephoning the authority and politely + checking that they received the request. It was sent to them by email. + </li> + <li>If they have not received it, the problem is most likely due to + "spam filters". Refer the authority to the measures in the answer + '<a href="/help/officers#spam_problems">I can see a request on WhatDoTheyKnow, but we never got it by email!</a>' + in the FOI officers section of this help. + </li> + <li>If you're still having no luck, then you can ask for an internal review, + and then complain to the Information Commissioner about the authority. + Read our page '<a href="/help/unhappy">Unhappy about the response you got?</a>'. + </ul> + </dd> + + <dt id="not_satifised">What if I'm not satisfied with the response? <a href="#not_satifised">#</a> </dt> + <dd>If you didn't get the information you asked for, or you didn't get it in time, + then read our page '<a href="/help/unhappy">Unhappy about the response you got?</a>'. + </dd> + + <dt id="reuse">It says I can't re-use the information I got!<a href="#reuse">#</a> </dt> + <dd> + <p>Authorities often add legal boilerplate about the + "<a href="http://www.opsi.gov.uk/si/si2005/20051515">Re-Use of Public Sector + Information Regulations 2005</a>", which at first glance implies you may not + be able do anything with the information. + </p> + + <p>You can, of course, write articles about the information or summarise it, or + quote parts of it. We also think you should feel free to republish the + information in full, just as we do, even though in theory you might not be + allowed to do so. See <a href="/help/officers#copyright">our policy on copyright</a>.</p> + + </dd> + + <dt id="ico_help">Can you tell me more of the nitty gritty about the process of making requests? <a href="#ico_help">#</a> </dt> + + <dd> + <p>Have a look at the + <a href="http://www.ico.gov.uk/for_the_public/access_to_official_information.aspx">access to official information</a> + pages on the Information Commissioner's website.</p> + + <p>If you're requesting information from a Scottish public authority, + the process is very similar. There are differences around time + limits for compliance. + See the <a href="http://www.itspublicknowledge.info/nmsruntime/saveasdialog.asp?lID=1858&sID=321">Scottish + Information Commissioner's guidance</a> for details.</p> + </dd> + + <dt id="data_protection">Can I request information about myself? <a href="#data_protection">#</a> </dt> + + <dd> + <p>No. Requests made using WhatDoTheyKnow are public, made under the Freedom of + Information Act, and cannot help you find information about a private + individual.</p> + + <p>If you would like to know what information a public + authority holds about yourself, you should make a "Subject Access Request" in + private using Data Protection law. The leaflet "<a + href="http://www.ico.gov.uk/upload/documents/library/data_protection/introductory/subject_access_rights.pdf">How to access your information</a>" (on the Information Commissioner's + website) explains how to do this.</p> + + <p>If you see that somebody has included personal information, perhaps + unwittingly, in a request, please <a href="/help/contact">contact us</a> + immediately so we can remove it.</p> + </dd> + + + <dt id="private_requests">I'd like to keep my request secret! (At least until I publish my story) <a href="#private_requests">#</a> </dt> + + <dd><p>WhatDoTheyKnow is currently only designed for public requests. All + responses that we receive are automatically published on the website for anyone + to read. </p> + <p>You should contact the public authority directly if you would like to + make a request in private. If you're interested in buying a system which helps + you manage FOI requests in secret, then <a href="/help/contact">contact us</a>. + </p> + </dd> + + <dt id="eir">Why can I only request information about the environment from some authorities? <a href="#eir">#</a> </dt> + + <dd> + <p>Some public authorities, such as <a href="http://www.whatdotheyknow.com/body/south_east_water">South East Water</a>, + don't come under the Freedom of Information Act, but do come under another law called + the Environmental Information Regulations (EIR). + </p> + + <p>It's a very similar law, so you make a request + to them using WhatDoTheyKnow in just the same way as an FOI request. The only + difference is that on the page where your write you request, it reminds you + that you can only request "environmental information" and tells you what that + means. It is quite broad. + </p> + + <p>You can, of course, request environmental information from other + authorities. Just make a Freedom of Information (FOI) request as normal. The + authority has a duty to work out if the Environmental Information Regulations + (EIR) is the more appropriate legislation to reply under. + </p> + </dd> + + <dt id="multiple">Can I make the same to request to lots of authorities, e.g. all councils? <a href="#multiple">#</a> </dt> + + <dd>We ask you to first send a test version of your request to a few + authorities. Their responses will help you improve the wording of your request, + so that you get the best information when you send the request to all of + the authorities. There is currently no automated system for sending the request + to the other authorities, you must copy and paste it by hand. + + </dd> + + <dt id="offsite">I made a request off the site, how do I upload it to the archive?<a href="#offsite">#</a> </dt> + + <dd>WhatDoTheyKnow is an archive of requests made through the site, + and does not try to be an archive of all FOI requests. We'll never support uploading + other requests. For one thing, we wouldn't be able to verify that other + responses actually came from the authority. If this really matters to you, + you can always make the same request again via WhatDoTheyKnow. + </dd> + + <dt id="moderation">How do you moderate request annotations? <a href="#moderation">#</a> </dt> + + <dd> + <p>Annotations on WhatDoTheyKnow are to help + people get the information they want, or to give them pointers to places they + can go to help them act on it. We reserve the right to remove anything else. + </p> + <p>Endless, political discussions are not allowed. + Post a link to a suitable forum or campaign site elsewhere.</p> + <dd> + + </dl> + + <p><strong>Next</strong>, read about <a href="/help/privacy">your privacy</a> --> + + <div id="hash_link_padding"></div> +</div> diff --git a/app/views/layouts/default.rhtml b/app/views/layouts/default.rhtml index a8a135676..ae2b630c9 100644 --- a/app/views/layouts/default.rhtml +++ b/app/views/layouts/default.rhtml @@ -18,7 +18,9 @@ <link rel="shortcut icon" href="/favicon.ico"> - <%= stylesheet_link_tag 'main', :title => "Main", :rel => "stylesheet" %> + <%= stylesheet_link_tag 'main', :title => "Main", :rel => "stylesheet" %> + <%= stylesheet_link_tag 'fonts', :rel => "stylesheet" %> + <%= stylesheet_link_tag 'theme', :rel => "stylesheet" %> <!--[if LT IE 7]> <style type="text/css">@import url("/stylesheets/ie6.css");</style> <![endif]--> @@ -81,56 +83,50 @@ =end %> <div class="entirebody"> - <div id="banner"></div> - <div id="header"> - <h1> - <%= link_to site_name, frontpage_url %> - </h1> - - <div id="tagline"> - <%= _('Make and explore Freedom of Information requests') %> - </div> - - </div> - <div id="orglogo"> - <%= render :partial => 'general/orglink' %> - </div> - <div class="lang"><%= render :partial => 'general/locale_switcher' %></div> - - <div id="navigation_search"> - <% form_tag({:controller => "general", :action => "search_redirect"}, {:id => "navigation_search_form"}) do %> - <p> - <%= text_field_tag 'query', params[:query], { :size => 40, :id => "navigation_search_query" } %> - <%= submit_tag _("Search") %> - </p> - <% end %> - </div> - - <div id="topnav"> - <ul id="navigation"> - <li><%= link_to _("Home"), frontpage_url %></li> - <li><%= link_to _("Make request"), select_authority_url, :id => 'make-request-link' %></li> - <li><%= link_to _("View requests"), request_list_successful_url %></li> - <li><%= link_to _("View authorities"), list_public_bodies_default %></li> - <% if @user %> - <li><%=link_to _("My requests"), user_url(@user) %></li> - <% end %> - <li><%= link_to _("Read blog"), blog_url %></li> - <li><%= link_to _("Help"), help_about_url %></li> - </ul> + <div id="banner"> + <div id="banner_inner"> + <div class="lang"><%= render :partial => 'general/locale_switcher' %></div> + <% if not (controller.action_name == 'signin' or controller.action_name == 'signup') %> - <div id="logged_in_bar"> - <% if @user %> - <%= _('Hello, {{username}}!', :username => h(@user.name))%> - (<%= link_to _("Sign out"), signout_url(:r => request.request_uri) %>) - <% else %> - <%= _('Hello!') %> - (<%= link_to _("Sign in or sign up"), signin_url(:r => request.request_uri) %>) + <div id="logged_in_bar"> + <% if @user %> + <%= _('Hello, {{username}}!', :username => h(@user.name))%> + + <% if @user %> + <%=link_to _("My profile"), user_url(@user) %> + <% end %> + + + <%= link_to _("Sign out"), signout_url(:r => request.request_uri) %> + <% else %> + <%= link_to _("Sign in or sign up"), signin_url(:r => request.request_uri) %> + <% end %> + </div> + <% end %> + + <div id="navigation_search"> + <% form_tag({:controller => "general", :action => "search_redirect"}, {:id => "navigation_search_form"}) do %> + <p> + <%= text_field_tag 'query', params[:query], { :size => 40, :id => "navigation_search_query" } %> + <%= image_submit_tag('search-button.png') %> + </p> <% end %> - </div> - <% end %> + </div> + + <%= render :partial => 'general/orglink' %> + + <div id="topnav"> + <ul id="navigation"> + <li class="<%= 'selected' if params[:controller] == 'general' %>"><%= link_to _("Home"), frontpage_url %></li> + <li class="<%= 'selected' if params[:controller] == 'request' and ['new', 'select_authority'].include?(params[:action]) %>"><%= link_to _("Make a request"), select_authority_url, :id => 'make-request-link' %></li> + <li class="<%= 'selected' if params[:controller] == 'request' and !['new', 'select_authority'].include?(params[:action]) %>"><%= link_to _("View requests"), request_list_successful_url %></li> + <li class="<%= 'selected' if params[:controller] == 'public_body' %>"><%= link_to _("View authorities"), list_public_bodies_default %></li> + <li class="<%= 'selected' if params[:controller] == 'blog' %>"><%= link_to _("Read blog"), blog_url %></li> + <li class="<%= 'selected' if params[:controller] == 'help' %>"><%= link_to _("Help"), help_about_url %></li> + </ul> + </div> + </div> </div> - <div id="wrapper"> <div id="content"> diff --git a/app/views/public_body/list.rhtml b/app/views/public_body/list.rhtml index 5d88b1501..912f2696a 100644 --- a/app/views/public_body/list.rhtml +++ b/app/views/public_body/list.rhtml @@ -36,19 +36,9 @@ <% @title = _("Public authorities - {{description}}", :description => @description) %> -<h1><%=@title%></h1> - -<p class="subtitle"> - <%= @public_bodies.size %> <%= _('in total') %> - (<%= _('<a href="%s">can\'t find the one you want?</a>') % [help_requesting_path + '#missing_body'] %>) -</p> - -<% if @tag.size == 1 %> - <p><%= render :partial => 'alphabet' %></p> -<% end %> +<h1>Public authorities</h1> +<h2 class="publicbody_results"><%= _('Found {{count}} public bodies {{description}}', :count=>@public_bodies.size, :description=>@description) %></h2> <%= render :partial => 'body_listing', :locals => { :public_bodies => @public_bodies } %> -<% if @tag.size == 1 && @public_bodies.size > 0 %> - <p><%= render :partial => 'alphabet' %></p> -<% end %> -<%= will_paginate(@public_bodies) %> +<%= will_paginate(@public_bodies) %><br/> +<%= _('<a href="%s">Can\'t find the one you want?</a>') % [help_requesting_path + '#missing_body'] %> diff --git a/app/views/public_body/show.rhtml b/app/views/public_body/show.rhtml index 406c1479e..372a1558c 100644 --- a/app/views/public_body/show.rhtml +++ b/app/views/public_body/show.rhtml @@ -1,69 +1,70 @@ <% @title = h(@public_body.name) + " - view and make Freedom of Information requests" %> -<div id="request_sidebar"> - <h2><%= _('Track this authority')%></h2> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'sidebar' } %> - <h2><%= _('More about this authority')%></h2> - <% if !@public_body.calculated_home_page.nil? %> - <%= link_to _('Home page of authority'), @public_body.calculated_home_page %><br> - <% end %> - <% if !@public_body.publication_scheme.empty? %> - <%= link_to _('Publication scheme'), @public_body.publication_scheme %><br> - <% end %> - <% if @public_body.has_tag?("charity") %> - <% for tag_value in @public_body.get_tag_values("charity") %> - <% if tag_value.match(/^SC/) %> - <%= link_to _('Charity registration'), "http://www.oscr.org.uk/CharityIndexDetails.aspx?id=" + tag_value %><br> - <% else %> - <%= link_to _('Charity registration'), "http://www.charity-commission.gov.uk/SHOWCHARITY/RegisterOfCharities/CharityFramework.aspx?RegisteredCharityNumber=" + tag_value %><br> - <% end %> - <% end %> - <% end %> - <%= link_to _('View FOI email address'), view_public_body_email_url(@public_body.url_name) %><br> -</div> - <div id="main_content"> -<h1><%=h(@public_body.name)%></h1> +<div> + <div id="header_right"> + <h2><%= _('Track this authority')%></h2> + <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'sidebar' } %> + <h2><%= _('More about this authority')%></h2> + <% if !@public_body.calculated_home_page.nil? %> + <%= link_to _('Home page of authority'), @public_body.calculated_home_page %><br> + <% end %> + <% if !@public_body.publication_scheme.empty? %> + <%= link_to _('Publication scheme'), @public_body.publication_scheme %><br> + <% end %> + <% if @public_body.has_tag?("charity") %> + <% for tag_value in @public_body.get_tag_values("charity") %> + <% if tag_value.match(/^SC/) %> + <%= link_to _('Charity registration'), "http://www.oscr.org.uk/CharityIndexDetails.aspx?id=" + tag_value %><br> + <% else %> + <%= link_to _('Charity registration'), "http://www.charity-commission.gov.uk/SHOWCHARITY/RegisterOfCharities/CharityFramework.aspx?RegisteredCharityNumber=" + tag_value %><br> + <% end %> + <% end %> + <% end %> + <%= link_to _('View FOI email address'), view_public_body_email_url(@public_body.url_name) %><br> + </div> -<p class="subtitle"> -<%=@public_body.type_of_authority(true)%> -<% if not @public_body.short_name.empty? %>, -<%= _('also called {{public_body_short_name}}', :public_body_short_name => h(@public_body.short_name))%><% end %> -<% if !@user.nil? && @user.admin_page_links? %> -(<%= link_to _("admin"), public_body_admin_url(@public_body) %>) -<% end %> -</p> + <div id="header_left"> + <h1><%=h(@public_body.name)%></h1> -<% if @public_body.has_notes? && (@public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact') %> - <p><%= @public_body.notes_as_html %></p> -<% end %> + <p class="subtitle"> + <%=@public_body.type_of_authority(true)%> + <% if not @public_body.short_name.empty? %>, + <%= _('also called {{public_body_short_name}}', :public_body_short_name => h(@public_body.short_name))%><% end %> + <% if !@user.nil? && @user.admin_page_links? %> + (<%= link_to _("admin"), public_body_admin_url(@public_body) %>) + <% end %> + </p> -<% if @public_body.eir_only? %> - <p><%= _('You can only request information about the environment from this authority.')%></p> -<% end %> + <% if @public_body.has_notes? && (@public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact') %> + <p><%= @public_body.notes_as_html %></p> + <% end %> -<div id="stepwise_make_request"> - <strong> - <% if @public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact' %> - <% if @public_body.eir_only? %> - <%= link_to _("Make a new Environmental Information request"), new_request_to_body_url(:url_name => @public_body.url_name)%> to <%= h(@public_body.name) %> + <% if @public_body.eir_only? %> + <p><%= _('You can only request information about the environment from this authority.')%></p> + <% end %> + <div id="stepwise_make_request"> + <% if @public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact' %> + <% if @public_body.eir_only? %> + Make a new <strong>Environmental Information</strong> request + <% else %> + Make a new <strong>Freedom of Information</strong> request + <% end %> + <%= _('<a href="{{url}}">{{image_tag}}</a>', :url=>new_request_to_body_url(:url_name => @public_body.url_name), :image_tag=>image_tag('start-button.png'))%> + <% elsif @public_body.has_notes? %> + <%= @public_body.notes_as_html %> + <% elsif @public_body.not_requestable_reason == 'not_apply' %> + <%= _('Freedom of Information law does not apply to this authority, so you cannot make + a request to it.')%> + <% elsif @public_body.not_requestable_reason == 'defunct' %> + <%= _('This authority no longer exists, so you cannot make a request to it.')%> <% else %> - <%= _('<a href="{{url}}">Make a new Freedom of Information request</a> to {{public_body_name}}', - :public_body_name => h(@public_body.name), :url=>new_request_to_body_url(:url_name => @public_body.url_name))%> + <%= _('For an unknown reason, it is not possible to make a request to this authority.')%> <% end %> - <% elsif @public_body.has_notes? %> - <%= @public_body.notes_as_html %> - <% elsif @public_body.not_requestable_reason == 'not_apply' %> - <%= _('Freedom of Information law does not apply to this authority, so you cannot make - a request to it.')%> - <% elsif @public_body.not_requestable_reason == 'defunct' %> - <%= _('This authority no longer exists, so you cannot make a request to it.')%> - <% else %> - <%= _('For an unknown reason, it is not possible to make a request to this authority.')%> - <% end %> - </strong> + </div> + </div> </div> - +<div style="clear:both"> </div> <% if !@xapian_requests.nil? %> <% if @xapian_requests.results.empty? %> <% if @public_body.eir_only? %> @@ -74,7 +75,7 @@ <p><%= _('Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet.', :public_body_name => h(@public_body.name))%></p> <% end %> <% else %> - <h2> + <h2 class="foi_results"> <% if @public_body.eir_only? %> <%= pluralize(@public_body.info_requests.size, "Environmental Information Regulations request made using this site") %> <% else %> @@ -101,3 +102,4 @@ <p> <%= _('The search index is currently offline, so we can\'t show the Freedom of Information requests that have been made to this authority.')%></p> <% end %> </div> +</div>
\ No newline at end of file diff --git a/app/views/request/_describe_state.rhtml b/app/views/request/_describe_state.rhtml index 052833a67..71699835c 100644 --- a/app/views/request/_describe_state.rhtml +++ b/app/views/request/_describe_state.rhtml @@ -4,7 +4,7 @@ <h2><%= _('What best describes the status of this request now?') %></h2> <hr> <!------------------------------------------------> - <h3>This request is still in progress:</h3> + <h3><%= _('This request is still in progress:') %></h3> <% if @info_request.described_state != 'internal_review' %> <div> <%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %> @@ -41,7 +41,7 @@ <%= render :partial => 'general/custom_state_transitions_pending', :locals => {:id_suffix => id_suffix } %> <hr> <!------------------------------------------------> - <h3>This particular request is finished:</h3> + <h3><%= _('This particular request is finished:') %></h3> <% if @info_request.described_state == 'internal_review' %> <p><%= _('The <strong>review has finished</strong> and overall:') %></p> @@ -68,7 +68,7 @@ <hr> <!------------------------------------------------> - <h3>Other:</h3> + <h3><%= _('Other:') %></h3> <div> <%= radio_button "incoming_message", "described_state", "error_message", :id => 'error_message' + id_suffix %> diff --git a/app/views/request/_other_describe_state.rhtml b/app/views/request/_other_describe_state.rhtml index 1c88f97f8..e274fe8c9 100644 --- a/app/views/request/_other_describe_state.rhtml +++ b/app/views/request/_other_describe_state.rhtml @@ -7,7 +7,7 @@ Thanks.') %></h2> <hr> <!------------------------------------------------> - <h3>This request is still in progress:</h3> + <h3><%= _('This request is still in progress:') %></h3> <% if @info_request.described_state != 'internal_review' %> <div> <%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %> @@ -37,7 +37,7 @@ <%= render :partial => 'general/custom_state_transitions_pending', :locals => {:id_suffix => id_suffix } %> <hr> <!------------------------------------------------> - <h3>This particular request is finished:</h3> + <h3><%= _('This particular request is finished:') %></h3> <% if @info_request.described_state == 'internal_review' %> <p><%= _('The <strong>review has finished</strong> and overall:') %></p> diff --git a/app/views/request/_request_listing_via_event.rhtml b/app/views/request/_request_listing_via_event.rhtml index afacabea5..e7c378cec 100644 --- a/app/views/request/_request_listing_via_event.rhtml +++ b/app/views/request/_request_listing_via_event.rhtml @@ -3,7 +3,8 @@ end %> <div class="request_listing"> - <span class="head"> + <div class="request_left"> + <span class="head"> <% if event.is_incoming_message? %> <%= link_to highlight_words(info_request.title, @highlight_words), incoming_message_url(event.incoming_message) %> <% elsif event.is_outgoing_message? and event.event_type == 'followup_sent' %> @@ -13,18 +14,9 @@ end %> <% else %> <%= link_to highlight_words(info_request.title, @highlight_words), request_url(info_request) %> <% end %> - </span> - <span class="desc"> - <%= highlight_and_excerpt(event.search_text_main(true), @highlight_words, 150) %> - </span> - - <span class="bottomline icon_<%= info_request.calculate_status %>"> - - <strong> - <%= info_request.display_status %> - </strong><br> - - <% if event.event_type == 'sent' %> + </span> + <div class="requester"> + <% if event.event_type == 'sent' %> <%= _('Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}.',:public_body_name=>public_body_link_absolute(info_request.public_body),:info_request_user=>user_link_absolute(info_request.user),:date=>simple_date(event.created_at )) %> <% elsif event.event_type == 'followup_sent' %> <%=event.display_status %> @@ -37,6 +29,17 @@ end %> <% else %> <% raise _("unknown event type indexed ") + event.event_type %> <% end %> + </div> + <span class="bottomline icon_<%= info_request.calculate_status %>"> + <strong> + <%= info_request.display_status %> + </strong><br> </span> + </div> + <div class="request_right"> + <span class="desc"> + <%= highlight_and_excerpt(event.search_text_main(true), @highlight_words, 150) %> + </span> + </div> </div> diff --git a/app/views/request/list.rhtml b/app/views/request/list.rhtml index 04dc0d010..fcd4cfbf2 100644 --- a/app/views/request/list.rhtml +++ b/app/views/request/list.rhtml @@ -1,40 +1,39 @@ -<div id="list_sidebar"> -<h1><%= _('Show only...')%></h1> -<ul> -<% for view, description, target in [ - ['successful', _('Successful responses'), request_list_successful_url(:view => 'successful')], - ['recent', _('Recently sent requests'), request_list_recent_url(:view => 'recent')] -] %> -<li> - <%= link_to_unless (@view == view), description, target %> -</li> -<% end %> -</ul> +<div id="header_left"> + <h1><%=@title%></h1> + + <p> + <i>Showing:</i> + <%= link_to_unless (@view == 'successful'), 'Successful requests', request_list_successful_url(:view => 'successful') %> | + <%= link_to_unless (@view == 'recent'), 'Successful requests', request_list_recent_url(:view => 'recent') %> + </p> </div> -<h1><%=@title%></h1> +<div id="header_right"> + <h2>Track these requests</h2> + <% if @track_thing %> + <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> + <% end %> +</div> -<% if @track_thing %> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> -<% end %> +<div style="clear:both"></div> -<% view_cache :ttl => 5.minutes, :tag => [@view, @page, I18n.locale] do %> - <% if @list_results.empty? %> - <p> <%= _('No requests of this sort yet.')%></p> - <% else %> - <% for result in @list_results%> - <% if result.class.to_s == 'InfoRequestEvent' %> - <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result, :info_request => result.info_request } %> - <% else %> - <p><strong><%= _('Unexpected search result type') %> <%=result.class.to_s%></strong></p> +<div class="results_section"> + <% view_cache :ttl => 5.minutes, :tag => [@view, @page, I18n.locale] do %> + <% if @list_results.empty? %> + <p> <%= _('No requests of this sort yet.')%></p> + <% else %> + <h2 class="foi_results"><%= _('2 FOI requests found') %></h2> + <div class="results_block"> + <% for result in @list_results%> + <% if result.class.to_s == 'InfoRequestEvent' %> + <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result, :info_request => result.info_request } %> + <% else %> + <p><strong><%= _('Unexpected search result type') %> <%=result.class.to_s%></strong></p> + <% end %> <% end %> - <% end %> - <% end %> - - <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @matches_estimated) %> -<% end %> + </div> + <% end %> -<% if @track_thing %> - <p></p> - <%= render :partial => 'track/tracking_links', :locals => { :track_thing => @track_thing, :own_request => false, :location => 'main' } %> -<% end %> + <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @matches_estimated) %> + <% end %> +</div>
\ No newline at end of file diff --git a/app/views/request/select_authority.rhtml b/app/views/request/select_authority.rhtml index 72660283e..802fefec6 100644 --- a/app/views/request/select_authority.rhtml +++ b/app/views/request/select_authority.rhtml @@ -15,6 +15,7 @@ $("#typeahead_response a").click(function() { $("#authority_preview").load(this.href+" #main_content", function() { $("#authority_preview").show(); + $("#authority_preview #header_right").hide(); }); return false; }); diff --git a/app/views/track/_tracking_links.rhtml b/app/views/track/_tracking_links.rhtml index a08f97c08..5a8316db4 100644 --- a/app/views/track/_tracking_links.rhtml +++ b/app/views/track/_tracking_links.rhtml @@ -16,15 +16,17 @@ <%= submit_tag "unsubscribe" %> </p> <% end %> -<% else %> +<% elsif track_thing %> <div class="feed_link feed_link_<%=location%>"> <%= link_to '<img src="/images/email-16.png" alt="">', do_track_url(track_thing) %> - <%= link_to track_thing.params[:verb_on_page], do_track_url(track_thing) %> + <%= link_to "Track by email", do_track_url(track_thing) %> + </div> + + <div class="feed_link feed_link_<%=location%>"> + <%= link_to '<img src="/images/feed-16.png" alt="">', do_track_url(track_thing, 'feed') %> + <%= link_to (location == 'sidebar' ? 'RSS feed of updates' : 'RSS feed'), do_track_url(track_thing, 'feed') %> </div> <% end %> -<div class="feed_link feed_link_<%=location%>"> - <%= link_to '<img src="/images/feed-16.png" alt="">', do_track_url(track_thing, 'feed') %> - <%= link_to (location == 'sidebar' ? 'RSS feed of updates' : 'RSS feed'), do_track_url(track_thing, 'feed') %> -</div> + diff --git a/app/views/user/show.rhtml b/app/views/user/show.rhtml index c3a99311a..8fd6c52ad 100644 --- a/app/views/user/show.rhtml +++ b/app/views/user/show.rhtml @@ -110,22 +110,19 @@ <% if not @is_you %> <p id="user_not_logged_in"> - <%= link_to _('Sign in'), signin_url(:r => request.request_uri) %> <%= _('to change password, - subscriptions and more')%> (<%=h @display_user.name %> <%= _('only')%>) + <%= _('<a href="%s">Sign in</a> to change password, subscriptions and more ({{user_name}} only)',:user_name=>h(@display_user.name)) % [signin_url(:r => request.request_uri)]%> </p> <% end %> <% if !@xapian_requests.nil? %> <% if @xapian_requests.results.empty? %> <% if @page == 1 %> - <h2 id="foi_requests"><%= _('Freedom of Information requests made by')%> <%= @is_you ? 'you' : 'this person' %> </h2> - <p><%= @is_you ? _('You have') : _('This person has') %> - <%= _(' made no Freedom of Information requests using this site.')%></p> + <h2 id="foi_requests"><%= @is_you ? 'Freedom of Information requests made by you' : 'Freedom of Information requests made by this person' %> </h2> + <p><%= @is_you ? _('You have made no Freedom of Information requests using this site.') : _('This person has made no Freedom of Information requests using this site.') %> <% end %> <% else %> <h2 id="foi_requests"> - <%= @is_you ? 'Your ' : "This person's " %> - <%=pluralize(@display_user.info_requests.size, _('Freedom of Information request')) %> + <%= @is_you ? n_('Your %d Freedom of Information request', 'Your %d Freedom of Information requests', @display_user.info_requests.size) % @display_user.info_requests.size : n_('This person\'s %d Freedom of Information request', 'This person\'s %d Freedom of Information requests', @display_user.info_requests.size) % @display_user.info_requests.size %> <!-- matches_estimated <%=@xapian_requests.matches_estimated%> --> <%= @page_desc %> </h2> @@ -137,21 +134,20 @@ <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @display_user.info_requests.size) %> <% end %> <% else %> - <h2 id="foi_requests"><%= _('Freedom of Information requests made by')%> <%= @is_you ? _('you') : _('this person') %> </h2> + <h2 id="foi_requests"><%= @is_you ? _('Freedom of Information requests made by you') : _('Freedom of Information requests made by this person') %> </h2> <p><%= _('The search index is currently offline, so we can\'t show the Freedom of Information requests this person has made.')%></p> <% end %> <% if !@xapian_comments.nil? %> <% if @xapian_comments.results.empty? %> <% if @page == 1 %> - <h2><%= @is_you ? 'Your' : 'This person\'s' %> <%= _('annotations')%> </h2> - <p>None made.</p> + <h2><%= @is_you ? _('Your annotations') : _('This person\'s annotations') %></h2> + <p><%= _('None made.')%></p> <% end %> <% else %> <h2 id="annotations"> - <%= @is_you ? _('Your ') : _('This person\'s') %> - <%=pluralize(@display_user.visible_comments.size, _('annotation')) %> - <!-- matches_estimated <%=@xapian_comments.matches_estimated%> --> + <%= @is_you ? n_('Your %d annotation', 'Your %d annotations', @display_user.visible_comments.size) % @display_user.visible_comments.size : n_('This person\'s %d annotation', 'This person\'s %d annotations', @display_user.visible_comments.size) % @display_user.visible_comments.size %> + <!-- matches_estimated <%=@xapian_comments.matches_estimated%> --> <%= @page_desc %> </h2> @@ -166,7 +162,7 @@ <% if @is_you %> <% if @track_things.empty? %> <h2 id="email_subscriptions"> <%= _('Your email subscriptions')%></h2> - <p>None made.</p> + <p><%= _('None made.')%></p> <% else %> <h2 id="email_subscriptions"> Your <%=pluralize(@track_things.size, _('email subscription')) %> </h2> <% if @track_things_grouped.size == 1 %> diff --git a/config/environment.rb b/config/environment.rb index 606472740..91da156bb 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -28,6 +28,12 @@ load "config.rb" load "format.rb" load "debug_helpers.rb" load "util.rb" +# Patch Rails::GemDependency to cope with older versions of rubygems, e.g. in Debian Lenny +# Restores override removed in https://github.com/rails/rails/commit/c20a4d18e36a13b5eea3155beba36bb582c0cc87 +# without effecting method behaviour +# and adds fallback gem call removed in https://github.com/rails/rails/commit/4c3725723f15fab0a424cb1318b82b460714b72f +require File.join(File.dirname(__FILE__), '../lib/old_rubygems_patch') + Rails::Initializer.run do |config| # Load intial mySociety config @@ -103,7 +109,7 @@ ActionMailer::Base.default_url_options[:host] = MySociety::Config.get("DOMAIN", # So that javascript assets use full URL, so proxied admin URLs read javascript OK if (MySociety::Config.get("DOMAIN", "") != "") ActionController::Base.asset_host = Proc.new { |source, request| - if request.fullpath.match(/^\/admin\//) + if ENV["RAILS_ENV"] != "test" && request.fullpath.match(/^\/admin\//) MySociety::Config.get("ADMIN_PUBLIC_URL", "") else MySociety::Config.get("DOMAIN", 'localhost:3000') diff --git a/doc/INSTALL-exim4.md b/doc/INSTALL-exim4.md index c564fb70f..6a0e1247e 100644 --- a/doc/INSTALL-exim4.md +++ b/doc/INSTALL-exim4.md @@ -28,7 +28,7 @@ And, assuming you set `OPTION_INCOMING_EMAIL_PREFIX` in your config at `config/general` to "foi+", create `config/aliases` with the following content: - ^foi+.*: |/path/to/alaveteli/software/script/mailin + ^foi\\+.*: |/path/to/alaveteli/software/script/mailin Finally, make sure you have `dc_use_split_config='true'` in `/etc/exim4/update-exim4.conf.conf`, and execute the command diff --git a/doc/TRANSLATE.md b/doc/TRANSLATE.md index 37ed4701b..be88dafa0 100644 --- a/doc/TRANSLATE.md +++ b/doc/TRANSLATE.md @@ -5,7 +5,19 @@ The Transifex project is at https://www.transifex.net/projects/p/alaveteli/; you'll probably want an account there (ask on the mailing list). -# Finding new translatable strings +# Summary + +1. Make some changes to the software with `_('translatable strings')` +2. Run `./script/generate_pot.sh` +3. This should just cause the file at `locale/app.pot` to change. Commit and push +4. Send a message to the alaveteli-dev mailing list warning them that you're going to upload this file to transifex +5. Wait a day or so +6. Update the `app.pot` resource in Transifex +7. When new translations are available, run `tx pull -a` and commit the results to the repository + +# Detail + +## Finding new translatable strings To update the POT file with strings from the software source, run `rake gettext:find` from the Alaveteli software. This will also @@ -13,7 +25,14 @@ update all the PO files for all the languages, which you don't actually want, because these are all handled in Transifex; so you'll want to revert these files again using git. -# Pulling translations from Transifex +The script at `./script/generate_pot.sh` does these steps for you. + +When you've changed the POT file, and committed it, you should warn +people on the mailing list before logging into Transifex and pressing +the button to import it into that system. Otherwise, translators +might lose some of their old but useful translations. + +## Pulling translations from Transifex To update the local translation files using the Transifex command-line client, first install it: @@ -24,4 +43,3 @@ Then you can run the following from the root of your Alaveteli install: tx pull -a Finally, commit these translations to github as usual. - diff --git a/lib/old_rubygems_patch.rb b/lib/old_rubygems_patch.rb new file mode 100644 index 000000000..5601a5e90 --- /dev/null +++ b/lib/old_rubygems_patch.rb @@ -0,0 +1,42 @@ +require File.join(File.dirname(__FILE__),'..','vendor','rails','railties','lib','rails','gem_dependency.rb') + +module Rails + class GemDependency < Gem::Dependency + + # This definition of the requirement method is a patch + if !method_defined?(:requirement) + def requirement + req = version_requirements + end + end + + def add_load_paths + self.class.add_frozen_gem_path + return if @loaded || @load_paths_added + if framework_gem? + @load_paths_added = @loaded = @frozen = true + return + end + + begin + dep = Gem::Dependency.new(name, requirement) + spec = Gem.source_index.find { |_,s| s.satisfies_requirement?(dep) }.last + spec.activate # a way that exists + rescue + begin + gem self.name, self.requirement # < 1.8 unhappy way + # This second rescue is a patch - fall back to passing Rails::GemDependency to gem + # for older rubygems + rescue ArgumentError + gem self + end + end + + @spec = Gem.loaded_specs[name] + @frozen = @spec.loaded_from.include?(self.class.unpacked_path) if @spec + @load_paths_added = true + rescue Gem::LoadError + end + end + +end diff --git a/locale/app.pot b/locale/app.pot index fc579bd69..6a85ddbea 100644 --- a/locale/app.pot +++ b/locale/app.pot @@ -7,3987 +7,3371 @@ msgid "" msgstr "" "Project-Id-Version: version 0.0.1\n" -"POT-Creation-Date: 2011-08-11 12:30+0200\n" -"PO-Revision-Date: 2011-07-12 14:41+0100\n" +"POT-Creation-Date: 2011-08-22 11:15+0100\n" +"PO-Revision-Date: 2011-08-22 11:15+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app/models/incoming_message.rb:866 -msgid "" -"\n" -"\n" -"[ {{site_name}} note: The above text was badly encoded, and has had strange " -"characters removed. ]" -msgstr "" - -#: app/views/user/set_profile_about_me.rhtml:14 -msgid "" -" This will appear on your {{site_name}} profile, to make it\n" -" easier for others to get involved with what you're doing." +#: app/controllers/request_controller.rb:60 +msgid "To update the status of this FOI request" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 -msgid "" -" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " -"policy</a>)" +#: app/controllers/request_controller.rb:61 +msgid "Then you can update the status of your request to " msgstr "" -#: app/views/request/upload_response.rhtml:40 -msgid "" -" (<strong>patience</strong>, especially for large files, it may take a " -"while!)" +#: app/controllers/request_controller.rb:62 +msgid "Update the status of your request to " msgstr "" -#: app/views/user/show.rhtml:59 -msgid " (you)" +#: app/controllers/request_controller.rb:139 +msgid "Recently sent Freedom of Information requests" msgstr "" -#: app/views/user/signchangepassword_send_confirm.rhtml:18 -msgid "" -" <strong>Note:</strong>\n" -" We will send you an email. Follow the instructions in it to change\n" -" your password." +#: app/controllers/request_controller.rb:144 +msgid "Recently successful responses" msgstr "" -#: app/views/user/contact.rhtml:35 -msgid " <strong>Privacy note:</strong> Your email address will be given to" +#: app/controllers/request_controller.rb:280 +msgid "<p>You do not need to include your email in the request in order to get a reply, as we will ask for it on the next screen (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/views/comment/new.rhtml:33 -msgid " <strong>Summarise</strong> the content of any information returned. " +#: app/controllers/request_controller.rb:282 +msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/views/comment/new.rhtml:23 -msgid " Advise on how to <strong>best clarify</strong> the request." +#: app/controllers/request_controller.rb:284 +msgid "<p>We recommend that you edit your request and remove the email address.\n If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/views/comment/new.rhtml:49 -msgid "" -" Ideas on what <strong>other documents to request</strong> which the " -"authority may hold. " +#: app/controllers/request_controller.rb:288 +msgid "<p>Your request contains a <strong>postcode</strong>. Unless it directly relates to the subject of your request, please remove any address as it will <strong>appear publicly on the Internet</strong>.</p>" msgstr "" -#: app/views/public_body/view_email.rhtml:30 -msgid "" -" If you know the address to use, then please <a href=\"%s\">send it to us</" -"a>.\n" -" You may be able to find the address on their website, or by phoning " -"them up and asking." +#: app/controllers/request_controller.rb:298 +msgid "To send your FOI request" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:26 -msgid "" -" Include relevant links, such as to a campaign page, your blog or a\n" -" twitter account. They will be made clickable. \n" -" e.g." +#: app/controllers/request_controller.rb:299 +msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" -#: app/views/comment/new.rhtml:27 -msgid "" -" Link to the information requested, if it is <strong>already available</" -"strong> on the Internet. " +#: app/controllers/request_controller.rb:300 +msgid "Confirm your FOI request to " msgstr "" -#: app/views/comment/new.rhtml:29 -msgid "" -" Offer better ways of <strong>wording the request</strong> to get the " -"information. " +#: app/controllers/request_controller.rb:311 +msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n replied by then.</p>\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n annotation below telling people about your writing.</p>" msgstr "" -#: app/views/user/sign.rhtml:26 -msgid " Please sign in or make a new account." +#: app/controllers/request_controller.rb:337 +msgid "To classify the response to this FOI request" msgstr "" -#: app/views/comment/new.rhtml:34 -msgid "" -" Say how you've <strong>used the information</strong>, with links if " -"possible." +#: app/controllers/request_controller.rb:338 +msgid "Then you can classify the FOI response you have got from " msgstr "" -#: app/views/comment/new.rhtml:28 -msgid "" -" Suggest <strong>where else</strong> the requester might find the " -"information. " +#: app/controllers/request_controller.rb:339 +msgid "Classify an FOI response from " msgstr "" -#: app/views/user/set_profile_about_me.rhtml:11 -msgid " What are you investigating using Freedom of Information? " +#: app/controllers/request_controller.rb:346 +msgid "Please choose whether or not you got some of the information that you wanted." msgstr "" -#: app/controllers/comment_controller.rb:75 -msgid " You are already being emailed updates about the request." +#: app/controllers/request_controller.rb:352 +msgid "The request has been updated since you originally loaded this page. Please check for any new incoming messages below, and try again." msgstr "" -#: app/controllers/comment_controller.rb:73 -msgid " You will also be emailed updates about the request." +#: app/controllers/request_controller.rb:378 +msgid "Thank you for updating the status of the request '<a href=\"{{url}}\">{{info_request_title}}</a>'. There are some more requests below for you to classify." msgstr "" -#: app/views/request/upload_response.rhtml:5 -msgid " made by " +#: app/controllers/request_controller.rb:381 +msgid "Thank you for updating this request!" msgstr "" -#: app/views/user/show.rhtml:123 -msgid " made no Freedom of Information requests using this site." +#: app/controllers/request_controller.rb:389 +msgid "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/views/user/contact.rhtml:36 -msgid " when you send this message." +#: app/controllers/request_controller.rb:393 +msgid "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you should have got a response promptly, and normally before the end of <strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/views/public_body/show.rhtml:80 -msgid "%d Freedom of Information request made using this site" -msgid_plural "%d Freedom of Information requests made using this site" -msgstr[0] "" -msgstr[1] "" - -#: app/views/general/frontpage.rhtml:36 -msgid "%d request" -msgid_plural "%d requests" -msgstr[0] "" -msgstr[1] "" - -#: app/views/public_body/_body_listing_single.rhtml:21 -msgid "%d request made." -msgid_plural "%d requests made." -msgstr[0] "" -msgstr[1] "" - -#: app/views/request/new.rhtml:102 -msgid "'Crime statistics by ward level for Wales'" +#: app/controllers/request_controller.rb:396 +msgid "<p>Thank you! Your request is long overdue, by more than {{very_late_number_of_days}} working days. Most requests should be answered within {{late_number_of_days}} working days. You might like to complain about this, see below.</p>" msgstr "" -#: app/views/request/new.rhtml:100 -msgid "'Pollution levels over time for the River Tyne'" +#: app/controllers/request_controller.rb:399 +msgid "<p>Thank you! Here are some ideas on what to do next:</p>\n <ul>\n <li>To send your request to another authority, first copy the text of your request below, then <a href=\"{{find_authority_url}}\">find the other authority</a>.</li>\n <li>If you would like to contest the authority's claim that they do not hold the information, here is \n <a href=\"{{complain_url}}\">how to complain</a>.\n </li>\n <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n on other means to answer your question.\n </li>\n </ul>" msgstr "" -#: app/controllers/user_controller.rb:355 -msgid "" -",\n" -"\n" -"\n" -"\n" -"Yours,\n" -"\n" -"{{user_name}}" +#: app/controllers/request_controller.rb:414 +msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/views/request/_after_actions.rhtml:9 -msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +#: app/controllers/request_controller.rb:417 +msgid "<p>We're glad you got all the information that you wanted. If you write about or make use of the information, please come back and add an annotation below saying what you did.</p><p>If you found {{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/views/public_body/list.rhtml:29 -msgid "<a href=\"%s\">Are we missing a public authority?</a>." +#: app/controllers/request_controller.rb:420 +msgid "<p>We're glad you got some of the information that you wanted. If you found {{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to the charity which runs it.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>" msgstr "" -#: app/views/request/_sidebar.rhtml:45 -msgid "" -"<a href=\"%s\">Are you the owner of\n" -" any commercial copyright on this page?</a>" +#: app/controllers/request_controller.rb:423 +msgid "Please write your follow up message containing the necessary clarifications below." msgstr "" -#: app/views/general/search.rhtml:53 -msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +#: app/controllers/request_controller.rb:428 +msgid "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a response within {{late_number_of_days}} days, or be told if it will take longer (<a href=\"{{review_url}}\">details</a>).</p>" msgstr "" -#: app/views/general/exception_caught.rhtml:13 -msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +#: app/controllers/request_controller.rb:431 +msgid "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/views/public_body/list.rhtml:43 -msgid "<a href=\"%s\">can't find the one you want?</a>" +#: app/controllers/request_controller.rb:434 +msgid "Please use the form below to tell us more." msgstr "" -#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 -#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 -msgid "<a href=\"%s\">details</a>" +#: app/controllers/request_controller.rb:437 +msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -#: app/views/request/_followup.rhtml:74 -msgid "<a href=\"%s\">what's that?</a>" +#: app/controllers/request_controller.rb:542 +msgid "To send a follow up message to " msgstr "" -#: app/views/public_body/show.rhtml:50 -msgid "" -"<a href=\"{{url}}\">Make a new Freedom of Information request</a> to " -"{{public_body_name}}" +#: app/controllers/request_controller.rb:543 +msgid "To reply to " msgstr "" -#: app/controllers/request_game_controller.rb:23 -msgid "" -"<p>All done! Thank you very much for your help.</p><p>There are <a href=" -"\"{{helpus_url}}\">more things you can do</a> to help {{site_name}}.</p>" +#: app/controllers/request_controller.rb:545 +msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:399 -msgid "" -"<p>Thank you! Here are some ideas on what to do next:</p>\n" -" <ul>\n" -" <li>To send your request to another authority, first copy the " -"text of your request below, then <a href=\"{{find_authority_url}}\">find the " -"other authority</a>.</li>\n" -" <li>If you would like to contest the authority's claim that they " -"do not hold the information, here is \n" -" <a href=\"{{complain_url}}\">how to complain</a>.\n" -" </li>\n" -" <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n" -" on other means to answer your question.\n" -" </li>\n" -" </ul>" +#: app/controllers/request_controller.rb:546 +msgid "Then you can write your reply to " msgstr "" -#: app/controllers/request_controller.rb:393 -msgid "" -"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " -"should have got a response promptly, and normally before the end of <strong>" -"{{date_response_required_by}}</strong>.</p>" +#: app/controllers/request_controller.rb:548 +msgid "Write your FOI follow up message to " msgstr "" -#: app/controllers/request_controller.rb:389 -msgid "" -"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should " -"get a response promptly, and normally before the end of <strong>\n" -"{{date_response_required_by}}</strong>.</p>" +#: app/controllers/request_controller.rb:549 +msgid "Write a reply to " msgstr "" -#: app/controllers/request_controller.rb:428 -msgid "" -"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " -"response within 20 days, or be told if it will take longer (<a href=" -"\"{{review_url}}\">details</a>).</p>" +#: app/controllers/request_controller.rb:556 +msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"%s\">contact us</a> if you really want to send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:431 -msgid "" -"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " -"the error was a delivery failure, and you can find an up to date FOI email " -"address for the authority, please tell us using the form below.</p>" +#: app/controllers/request_controller.rb:559 +msgid "You previously submitted that exact follow up message for this request." msgstr "" -#: app/controllers/request_controller.rb:396 -msgid "" -"<p>Thank you! Your request is long overdue, by more than 40 working days. " -"Most requests should be answered within 20 working days. You might like to " -"complain about this, see below.</p>" +#: app/controllers/request_controller.rb:582 +msgid "Your internal review request has been sent on its way." msgstr "" -#: app/controllers/user_controller.rb:495 -msgid "" -"<p>Thanks for changing the text about you on your profile.</p>\n" -" <p><strong>Next...</strong> You can upload a profile photograph " -"too.</p>" +#: app/controllers/request_controller.rb:584 +msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/user_controller.rb:417 -msgid "" -"<p>Thanks for updating your profile photo.</p>\n" -" <p><strong>Next...</strong> You can put some text about you " -"and your research on your profile.</p>" +#: app/controllers/request_controller.rb:706 +msgid "To upload a response, you must be logged in using an email address from " msgstr "" -#: app/controllers/request_controller.rb:284 -msgid "" -"<p>We recommend that you edit your request and remove the email address.\n" -" If you leave it, the email address will be sent to the " -"authority, but will not be displayed on the site.</p>" +#: app/controllers/request_controller.rb:707 +msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:417 -msgid "" -"<p>We're glad you got all the information that you wanted. If you write " -"about or make use of the information, please come back and add an annotation " -"below saying what you did.</p><p>If you found {{site_name}} useful, <a href=" -"\"{{donation_url}}\">make a donation</a> to the charity which runs it.</p>" +#: app/controllers/request_controller.rb:708 app/controllers/user_controller.rb:515 +msgid "Confirm your account on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:420 -msgid "" -"<p>We're glad you got some of the information that you wanted. If you found " -"{{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to " -"the charity which runs it.</p><p>If you want to try and get the rest of the " -"information, here's what to do now.</p>" +#: app/controllers/request_controller.rb:735 +msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:282 -msgid "" -"<p>You do not need to include your email in the request in order to get a " -"reply (<a href=\"%s\">details</a>).</p>" +#: app/controllers/request_controller.rb:741 +msgid "Thank you for responding to this FOI request! Your response has been published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:280 -msgid "" -"<p>You do not need to include your email in the request in order to get a " -"reply, as we will ask for it on the next screen (<a href=\"%s\">details</a>)." -"</p>" +#: app/controllers/public_body_controller.rb:77 +msgid "There was an error with the words you entered, please try again." msgstr "" -#: app/controllers/request_controller.rb:288 -msgid "" -"<p>Your request contains a <strong>postcode</strong>. Unless it directly " -"relates to the subject of your request, please remove any address as it will " -"<strong>appear publicly on the Internet</strong>.</p>" +#: app/controllers/public_body_controller.rb:111 +msgid "beginning with" msgstr "" -#: app/controllers/request_controller.rb:311 -msgid "" -"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!" -"</p>\n" -" <p><strong>We will email you</strong> when there is a response, " -"or after 20 working days if the authority still hasn't\n" -" replied by then.</p>\n" -" <p>If you write about this request (for example in a forum or a " -"blog) please link to this page, and add an \n" -" annotation below telling people about your writing.</p>" +#: app/controllers/user_controller.rb:189 +msgid "That doesn't look like a valid email address. Please check you have typed it correctly." msgstr "" -#: app/controllers/application_controller.rb:279 -msgid "" -"<p>{{site_name}} is currently in maintenance. You can only view existing " -"requests. You cannot make new ones, add followups or annotations, or " -"otherwise change the database.</p> <p>{{read_only}}</p>" +#: app/controllers/user_controller.rb:203 +msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/views/user/confirm.rhtml:11 -msgid "" -"<small>If you use web-based email or have \"junk mail\" filters, also check " -"your\n" -"bulk/spam mail folders. Sometimes, our messages are marked that way.</" -"small>\n" -"</p>" +#: app/controllers/user_controller.rb:204 +msgid "Change your password {{site_name}}" msgstr "" -#: app/views/request/new.rhtml:131 -msgid "" -"<strong> Can I request information about myself?</strong>\n" -"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +#: app/controllers/user_controller.rb:231 +msgid "Your password has been changed." msgstr "" -#: app/views/general/search.rhtml:130 -msgid "" -"<strong><code>commented_by:tony_bowden</code></strong> to search annotations " -"made by Tony Bowden, typing the name as in the URL." +#: app/controllers/user_controller.rb:248 +msgid "To change your email address used on {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:132 -msgid "" -"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " -"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +#: app/controllers/user_controller.rb:249 +msgid "Then you can change your email address used on {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:131 -msgid "" -"<strong><code>request:</code></strong> to restrict to a specific request, " -"typing the title as in the URL." +#: app/controllers/user_controller.rb:250 app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:129 -msgid "" -"<strong><code>requested_by:julian_todd</code></strong> to search requests " -"made by Julian Todd, typing the name as in the URL." +#: app/controllers/user_controller.rb:310 +msgid "You have now changed your email address used on {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:128 -msgid "" -"<strong><code>requested_from:home_office</code></strong> to search requests " -"from the Home Office, typing the name as in the URL." +#: app/controllers/user_controller.rb:329 +msgid "To send a message to " msgstr "" -#: app/views/general/search.rhtml:126 -msgid "" -"<strong><code>status:</code></strong> to select based on the status or " -"historical status of the request, see the <a href=\"{{statuses_url}}\">table " -"of statuses</a> below." +#: app/controllers/user_controller.rb:330 +msgid "Then you can send a message to " msgstr "" -#: app/views/general/search.rhtml:134 -msgid "" -"<strong><code>tag:charity</code></strong> to find all public bodies or " -"requests with a given tag. You can include multiple tags, \n" -" and tag values, e.g. <code>tag:openlylocal AND tag:" -"financial_transaction:335633</code>. Note that by default any of the tags\n" -" can be present, you have to put <code>AND</code> explicitly if you only " -"want results them all present." +#: app/controllers/user_controller.rb:331 +msgid "Send a message to " msgstr "" -#: app/views/general/search.rhtml:127 -msgid "" -"<strong><code>variety:</code></strong> to select type of thing to search " -"for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." +#: app/controllers/user_controller.rb:349 +msgid "Your message to {{recipient_user_name}} has been sent!" msgstr "" -#: app/views/comment/new.rhtml:56 -msgid "" -"<strong>Advice</strong> on how to get a response that will satisfy the " -"requester. </li>" +#: app/controllers/user_controller.rb:355 +msgid ",\n\n\n\nYours,\n\n{{user_name}}" msgstr "" -#: app/views/request/_other_describe_state.rhtml:56 -msgid "<strong>All the information</strong> has been sent" +#: app/controllers/user_controller.rb:371 +msgid "You need to be logged in to change your profile photo." msgstr "" -#: app/views/request/_followup.rhtml:79 -msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking" +#: app/controllers/user_controller.rb:398 app/controllers/user_controller.rb:414 +msgid "Thank you for updating your profile photo" msgstr "" -#: app/views/request/details.rhtml:12 -msgid "" -"<strong>Caveat emptor!</strong> To use this data in an honourable way, you " -"will need \n" -"a good internal knowledge of user behaviour on {{site_name}}. How, \n" -"why and by whom requests are categorised is not straightforward, and there " -"will\n" -"be user error and ambiguity. You will also need to understand FOI law, and " -"the\n" -"way authorities use it. Plus you'll need to be an elite statistician. " -"Please\n" -"<a href=\"{{contact_path}}\">contact us</a> with questions." +#: app/controllers/user_controller.rb:417 +msgid "<p>Thanks for updating your profile photo.</p>\n <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:28 -msgid "<strong>Clarification</strong> has been requested" +#: app/controllers/user_controller.rb:433 +msgid "You need to be logged in to clear your profile photo." msgstr "" -#: app/views/request/_other_describe_state.rhtml:14 -msgid "" -"<strong>No response</strong> has been received\n" -" <small>(maybe there's just an acknowledgement)</small>" +#: app/controllers/user_controller.rb:442 +msgid "You've now cleared your profile photo" msgstr "" -#: app/views/user/signchangeemail.rhtml:30 -msgid "" -"<strong>Note:</strong>\n" -" We will send an email to your new email address. Follow the\n" -" instructions in it to confirm changing your email." +#: app/controllers/user_controller.rb:470 +msgid "You need to be logged in to change the text about you on your profile." msgstr "" -#: app/views/user/contact.rhtml:32 -msgid "" -"<strong>Note:</strong> You're sending a message to yourself, presumably\n" -" to try out how it works." +#: app/controllers/user_controller.rb:492 +msgid "You have now changed the text about you on your profile." msgstr "" -#: app/views/request/preview.rhtml:31 -msgid "" -"<strong>Privacy note:</strong> If you want to request private information " -"about\n" -" yourself then <a href=\"%s\">click here</a>." +#: app/controllers/user_controller.rb:495 +msgid "<p>Thanks for changing the text about you on your profile.</p>\n <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/views/user/set_crop_profile_photo.rhtml:35 -msgid "" -"<strong>Privacy note:</strong> Your photo will be shown in public on the " -"Internet, \n" -" wherever you do something on {{site_name}}." +#: app/controllers/user_controller.rb:514 +msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/views/request/followup_preview.rhtml:37 -msgid "" -"<strong>Privacy warning:</strong> Your message, and any response\n" -" to it, will be displayed publicly on this website." +#: app/controllers/help_controller.rb:63 +msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon." msgstr "" -#: app/views/request/_other_describe_state.rhtml:52 -msgid "<strong>Some of the information</strong> has been sent " +#: app/controllers/track_controller.rb:98 +msgid "You are already being emailed updates about " msgstr "" -#: app/views/general/exception_caught.rhtml:17 -msgid "<strong>Technical details:</strong>" +#: app/controllers/track_controller.rb:111 +msgid "You will now be emailed updates about " msgstr "" -#: app/views/comment/new.rhtml:35 -msgid "<strong>Thank</strong> the public authority or " +#: app/controllers/track_controller.rb:143 +msgid "To cancel this alert" msgstr "" -#: app/views/request/new.rhtml:23 -msgid "" -"<strong>browse</strong> the authority's <a href=\"%s\">publication scheme</" -"a> or <strong>search</strong> their web site ..." +#: app/controllers/track_controller.rb:144 +msgid "Then you can cancel the alert." msgstr "" -#: app/views/request/show.rhtml:91 -msgid "<strong>did not have</strong> the information requested." +#: app/controllers/track_controller.rb:145 +msgid "Cancel a {{site_name}} alert" msgstr "" -#: app/views/request/new.rhtml:25 -msgid "<strong>search</strong> the authority's web site ..." +#: app/controllers/track_controller.rb:154 +msgid "You will no longer be emailed updates about " msgstr "" -#: app/views/comment/new.rhtml:45 -msgid "" -"A <strong>summary</strong> of the response if you have received it by post. " +#: app/controllers/track_controller.rb:173 +msgid "To cancel these alerts" msgstr "" -#: app/views/general/search.rhtml:162 -msgid "A public authority" +#: app/controllers/track_controller.rb:174 +msgid "Then you can cancel the alerts." msgstr "" -#: app/views/request/_other_describe_state.rhtml:34 -msgid "A response will be sent <strong>by post</strong>" +#: app/controllers/track_controller.rb:175 +msgid "Cancel some {{site_name}} alerts" msgstr "" -#: app/views/general/search.rhtml:151 -msgid "A strange reponse, required attention by the {{site_name}} team" +#: app/controllers/track_controller.rb:183 +msgid "You will no longer be emailed updates for those alerts" msgstr "" -#: app/views/general/search.rhtml:163 -msgid "A {{site_name}} user" +#: app/controllers/request_game_controller.rb:23 +msgid "<p>All done! Thank you very much for your help.</p><p>There are <a href=\"{{helpus_url}}\">more things you can do</a> to help {{site_name}}.</p>" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:20 -msgid "About you:" +#: app/controllers/request_game_controller.rb:40 +msgid "To play the request categorisation game" msgstr "" -#: app/models/info_request_event.rb:293 -msgid "Acknowledgement" +#: app/controllers/request_game_controller.rb:41 +msgid "Then you can play the request categorisation game." msgstr "" -#: app/views/request/_sidebar.rhtml:5 -msgid "Act on what you've learnt" +#: app/controllers/request_game_controller.rb:42 +msgid "Play the request categorisation game" msgstr "" -#: app/views/comment/new.rhtml:14 -msgid "Add an annotation to " +#: app/controllers/request_game_controller.rb:52 +msgid "Thank you for helping us keep the site tidy!" msgstr "" -#: app/views/request/show_response.rhtml:47 -msgid "" -"Add an annotation to your request with choice quotes, or\n" -" a <strong>summary of the response</strong>." +#: app/controllers/application_controller.rb:279 +msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" -#: app/views/public_body/_body_listing_single.rhtml:26 -msgid "Added on {{date}}" +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" msgstr "" -#: app/models/user.rb:54 -msgid "Admin level is not included in list" +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." msgstr "" -#: app/views/request_mailer/requires_admin.rhtml:9 -msgid "Administration URL:" +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 -msgid "Advanced search tips" +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" msgstr "" -#: app/views/comment/new.rhtml:52 -msgid "" -"Advise on whether the <strong>refusal is legal</strong>, and how to complain " -"about it if not." +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." msgstr "" -#: app/views/request/new.rhtml:69 -msgid "" -"Air, water, soil, land, flora and fauna (including how these effect\n" -" human beings)" +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." msgstr "" -#: app/models/info_request_event.rb:309 -msgid "All information sent" +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:146 -msgid "All of the information requested has been received" +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on {{site_name}}" msgstr "" -#: app/views/public_body/list.rhtml:5 -msgid "Alphabet" +#: app/models/track_thing.rb:123 +msgid "Track this request by email" msgstr "" -#: app/views/public_body/_body_listing_single.rhtml:12 -msgid "Also called {{other_name}}." +#: app/models/track_thing.rb:124 +msgid "You are already tracking this request by email" msgstr "" -#: app/views/request_mailer/new_response.rhtml:12 -msgid "" -"Although all responses are automatically published, we depend on\n" -"you, the original requester, to evaluate them." +#: app/models/track_thing.rb:138 +msgid "any <a href=\"/list\">new requests</a>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:70 -msgid "An <strong>error message</strong> has been received" +#: app/models/track_thing.rb:139 +msgid "Email me when there are new requests" msgstr "" -#: app/views/general/search.rhtml:161 -msgid "Annotation added to request" +#: app/models/track_thing.rb:140 +msgid "You are being emailed when there are new requests" msgstr "" -#: app/views/user/show.rhtml:34 -msgid "Annotations" +#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 +msgid "New Freedom of Information requests" msgstr "" -#: app/views/comment/new.rhtml:17 -msgid "" -"Annotations are so anyone, including you, can help the requester with their " -"request. For example:" +#: app/models/track_thing.rb:145 +msgid "To be emailed about any new requests" msgstr "" -#: app/views/comment/new.rhtml:69 -msgid "" -"Annotations will be posted publicly here, and are \n" -" <strong>not</strong> sent to {{public_body_name}}." +#: app/models/track_thing.rb:146 +msgid "Then you will be emailed whenever anyone makes a new FOI request." msgstr "" -#: app/views/request/_after_actions.rhtml:6 -msgid "Anyone:" +#: app/models/track_thing.rb:147 +msgid "Confirm you want to be emailed about new requests" msgstr "" -#: app/views/request/new.rhtml:47 -msgid "" -"Ask for <strong>specific</strong> documents or information, this site is not " -"suitable for general enquiries." +#: app/models/track_thing.rb:154 +msgid "any <a href=\"/list/successful\">successful requests</a>" msgstr "" -#: app/views/request/show_response.rhtml:31 -msgid "" -"At the bottom of this page, write a reply to them trying to persuade them to " -"scan it in\n" -" (<a href=\"%s\">more details</a>)." +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " msgstr "" -#: app/views/request/upload_response.rhtml:33 -msgid "Attachment (optional):" +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" msgstr "" -#: app/models/info_request.rb:783 -msgid "Awaiting classification." +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" msgstr "" -#: app/models/info_request.rb:803 -msgid "Awaiting internal review." +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" msgstr "" -#: app/models/info_request.rb:785 -msgid "Awaiting response." +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/views/request/new.rhtml:43 -msgid "" -"Browse <a href=\"%s\">other requests</a> for examples of how to word your " -"request." +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/views/request/new.rhtml:41 -msgid "" -"Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for " -"examples of how to word your request." +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" msgstr "" -#: app/views/request/show.rhtml:86 -msgid "" -"By law, under all circumstances, {{public_body_link}} should have responded " -"by now" +#: app/models/track_thing.rb:175 +msgid "You are already tracking requests to {{public_body_name}} by email" msgstr "" -#: app/views/request/show.rhtml:78 -msgid "" -"By law, {{public_body_link}} should normally have responded " -"<strong>promptly</strong> and" +#: app/models/track_thing.rb:180 +msgid "To be emailed about requests made using {{site_name}} to the public authority '{{public_body_name}}'" msgstr "" -#: app/views/general/search.rhtml:17 -msgid "" -"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add " -"it</a>." +#: app/models/track_thing.rb:181 +msgid "Then you will be emailed whenever someone requests something or gets a response from '{{public_body_name}}'." msgstr "" -#: app/controllers/track_controller.rb:145 -msgid "Cancel a {{site_name}} alert" +#: app/models/track_thing.rb:182 +msgid "Confirm you want to be emailed about requests to '{{public_body_name}}'" msgstr "" -#: app/controllers/track_controller.rb:175 -msgid "Cancel some {{site_name}} alerts" +#: app/models/track_thing.rb:190 +msgid "Track this person by email" msgstr "" -#: locale/model_attributes.rb:39 -msgid "CensorRule|Last edit comment" +#: app/models/track_thing.rb:191 +msgid "You are already tracking this person by email" msgstr "" -#: locale/model_attributes.rb:38 -msgid "CensorRule|Last edit editor" +#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 +msgid "FOI requests by '{{user_name}}'" msgstr "" -#: locale/model_attributes.rb:37 -msgid "CensorRule|Replacement" +#: app/models/track_thing.rb:196 +msgid "To be emailed about requests by '{{user_name}}'" msgstr "" -#: locale/model_attributes.rb:36 -msgid "CensorRule|Text" +#: app/models/track_thing.rb:197 +msgid "Then you will be emailed whenever '{{user_name}}' requests something or gets a response." msgstr "" -#: lib/public_body_categories_en.rb:14 -msgid "Central government" +#: app/models/track_thing.rb:198 +msgid "Confirm you want to be emailed about requests by '{{user_name}}'" msgstr "" -#: app/views/user/signchangeemail.rhtml:37 -msgid "Change email on {{site_name}}" +#: app/models/track_thing.rb:206 +msgid "Track things matching '{{query}}' by email" msgstr "" -#: app/views/user/signchangepassword.rhtml:27 -msgid "Change password on {{site_name}}" +#: app/models/track_thing.rb:207 +msgid "You are already tracking things matching '{{query}}' by email" msgstr "" -#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 -msgid "Change profile photo" +#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 +msgid "Requests or responses matching '{{query}}'" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:1 -msgid "Change the text about you on your profile at {{site_name}}" +#: app/models/track_thing.rb:212 +msgid "To follow requests and responses matching '{{query}}'" msgstr "" -#: app/views/user/show.rhtml:107 -msgid "Change your email" +#: app/models/track_thing.rb:213 +msgid "Then you will be emailed whenever a new request or response matches '{{query}}'." msgstr "" -#: app/controllers/user_controller.rb:250 -#: app/views/user/signchangeemail.rhtml:1 -#: app/views/user/signchangeemail.rhtml:11 -msgid "Change your email address used on {{site_name}}" +#: app/models/track_thing.rb:214 +msgid "Confirm you want to be emailed about new requests or responses matching '{{query}}'" msgstr "" -#: app/views/user/show.rhtml:106 -msgid "Change your password" +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" msgstr "" -#: app/views/user/signchangepassword.rhtml:1 -#: app/views/user/signchangepassword.rhtml:11 -#: app/views/user/signchangepassword_send_confirm.rhtml:1 -#: app/views/user/signchangepassword_send_confirm.rhtml:9 -msgid "Change your password on {{site_name}}" +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" msgstr "" -#: app/controllers/user_controller.rb:204 -msgid "Change your password {{site_name}}" +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" msgstr "" -#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 -msgid "Charity registration" +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" msgstr "" -#: app/views/general/exception_caught.rhtml:6 -msgid "Check for mistakes if you typed or copied the address." +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/request/followup_preview.rhtml:14 -#: app/views/request/preview.rhtml:7 -msgid "Check you haven't included any <strong>personal information</strong>." +#: app/models/info_request.rb:34 +msgid "Please enter a summary of your request" msgstr "" -#: app/models/info_request_event.rb:331 -msgid "Clarification" +#: app/models/info_request.rb:35 +msgid "Please write a summary with some text in it" msgstr "" -#: app/models/info_request_event.rb:295 -msgid "Clarification required" +#: app/models/info_request.rb:120 +msgid "Please write the summary using a mixture of capital and lower case letters. This makes it easier for others to read." msgstr "" -#: app/controllers/request_controller.rb:339 -msgid "Classify an FOI response from " +#: app/models/info_request.rb:123 +msgid "Please keep the summary short, like in the subject of an email. You can use a phrase, rather than a full sentence." msgstr "" -#: app/views/request_mailer/very_overdue_alert.rhtml:6 -msgid "" -"Click on the link below to send a message to {{public_body_name}} telling " -"them to reply to your request. You might like to ask for an internal\n" -"review, asking them to find out why response to the request has been so slow." +#: app/models/info_request.rb:126 +msgid "Please describe more what the request is about in the subject. There is no need to say it is an FOI request, we add that on anyway." msgstr "" -#: app/views/request_mailer/overdue_alert.rhtml:5 -msgid "" -"Click on the link below to send a message to {{public_body}} reminding them " -"to reply to your request." +#: app/models/info_request.rb:395 +msgid "This request has been set by an administrator to \"allow new responses from nobody\"" msgstr "" -#: locale/model_attributes.rb:22 -msgid "Comment|Body" +#: app/models/info_request.rb:401 +msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" -#: locale/model_attributes.rb:21 -msgid "Comment|Comment type" +#: app/models/info_request.rb:405 +msgid "Only the authority can reply to this request, and I don't recognise the address this reply was sent from" msgstr "" -#: locale/model_attributes.rb:24 -msgid "Comment|Locale" +#: app/models/info_request.rb:785 +msgid "Awaiting classification." msgstr "" -#: locale/model_attributes.rb:23 -msgid "Comment|Visible" +#: app/models/info_request.rb:787 +msgid "Awaiting response." msgstr "" -#: app/models/track_thing.rb:147 -msgid "Confirm you want to be emailed about new requests" +#: app/models/info_request.rb:789 +msgid "Delayed." msgstr "" -#: app/models/track_thing.rb:214 -msgid "" -"Confirm you want to be emailed about new requests or responses matching " -"'{{query}}'" +#: app/models/info_request.rb:791 +msgid "Long overdue." msgstr "" -#: app/models/track_thing.rb:198 -msgid "Confirm you want to be emailed about requests by '{{user_name}}'" +#: app/models/info_request.rb:793 +msgid "Information not held." msgstr "" -#: app/models/track_thing.rb:182 -msgid "Confirm you want to be emailed about requests to '{{public_body_name}}'" +#: app/models/info_request.rb:795 +msgid "Refused." msgstr "" -#: app/models/track_thing.rb:163 -msgid "Confirm you want to be emailed when an FOI request succeeds" +#: app/models/info_request.rb:797 +msgid "Partially successful." msgstr "" -#: app/controllers/request_controller.rb:300 -msgid "Confirm your FOI request to " +#: app/models/info_request.rb:799 +msgid "Successful." msgstr "" -#: app/controllers/request_controller.rb:703 -#: app/controllers/user_controller.rb:515 -msgid "Confirm your account on {{site_name}}" +#: app/models/info_request.rb:801 +msgid "Waiting clarification." msgstr "" -#: app/controllers/comment_controller.rb:57 -msgid "Confirm your annotation to {{info_request_title}}" +#: app/models/info_request.rb:803 +msgid "Handled by post." msgstr "" -#: app/models/user_mailer.rb:34 -msgid "Confirm your new email address on {{site_name}}" +#: app/models/info_request.rb:805 +msgid "Awaiting internal review." msgstr "" -#: app/views/layouts/default.rhtml:127 -msgid "Contact {{site_name}}" +#: app/models/info_request.rb:807 app/models/info_request_event.rb:315 +msgid "Delivery error" msgstr "" -#: app/models/request_mailer.rb:210 -msgid "Could not identify the request from the email address" +#: app/models/info_request.rb:809 +msgid "Unusual response." msgstr "" -#: app/models/profile_photo.rb:96 -msgid "" -"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " -"many other common image file formats are supported." +#: app/models/info_request.rb:811 +msgid "Withdrawn by the requester." msgstr "" -#: app/views/user/set_crop_profile_photo.rhtml:6 -msgid "Crop your profile photo" +#: app/models/info_request.rb:816 app/models/info_request_event.rb:333 +msgid "unknown status " msgstr "" -#: app/views/request/new.rhtml:74 -msgid "" -"Cultural sites and built structures (as they may be affected by the\n" -" environmental factors listed above)" +#: app/models/user.rb:38 +msgid "Please enter a password" msgstr "" -#: app/views/request/show.rhtml:68 -msgid "" -"Currently <strong>waiting for a response</strong> from {{public_body_link}}, " -"they must respond promptly and" +#: app/models/user.rb:49 +msgid "Please enter the same password twice" msgstr "" -#: app/models/info_request_event.rb:299 -msgid "Deadline Extended" +#: app/models/user.rb:54 +msgid "Admin level is not included in list" msgstr "" -#: app/models/outgoing_message.rb:57 -msgid "Dear " +#: app/models/user.rb:106 +msgid "Please enter a valid email address" msgstr "" -#: app/models/info_request.rb:787 -msgid "Delayed." +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." msgstr "" -#: app/models/info_request.rb:805 app/models/info_request_event.rb:315 -msgid "Delivery error" +#: app/models/user.rb:122 +msgid "{{user_name}} (Banned)" msgstr "" -#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 -msgid "Details of request '" +#: app/models/user.rb:135 +msgid "Either the email or password was not recognised, please try again." msgstr "" -#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 -msgid "Did you mean: {{correction}}" +#: app/models/user.rb:137 +msgid "Either the email or password was not recognised, please try again. Or create a new account using the form on the right." msgstr "" -#: app/views/outgoing_mailer/_followup_footer.rhtml:1 -msgid "" -"Disclaimer: This message and any reply that you make will be published on " -"the internet. Our privacy and copyright policies:" +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." msgstr "" -#: app/views/request/_view_html_prefix.rhtml:6 -msgid "Download original attachment" +#: app/models/profile_photo.rb:96 +msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" -#: app/views/request/_followup.rhtml:85 -msgid "" -"Edit and add <strong>more details</strong> to the message above,\n" -" explaining why you are dissatisfied with their response." +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" msgstr "" -#: app/views/admin_public_body/_locale_selector.rhtml:2 -msgid "Edit language version:" +#: app/models/profile_photo.rb:105 +msgid "Failed to convert image to the correct size: at %{cols}x%{rows}, need %{width}x%{height}" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:9 -msgid "Edit text about you" +#: app/models/track_mailer.rb:25 +msgid "Your {{site_name}} email alert" msgstr "" -#: app/models/user.rb:135 -msgid "Either the email or password was not recognised, please try again." +#: app/models/info_request_event.rb:293 +msgid "Acknowledgement" msgstr "" -#: app/models/user.rb:137 -msgid "" -"Either the email or password was not recognised, please try again. Or create " -"a new account using the form on the right." +#: app/models/info_request_event.rb:295 +msgid "Clarification required" msgstr "" -#: app/models/contact_validator.rb:34 -msgid "Email doesn't look like a valid address" +#: app/models/info_request_event.rb:297 +msgid "Handled by post" msgstr "" -#: app/views/comment/_comment_form.rhtml:8 -msgid "Email me future updates to this request" +#: app/models/info_request_event.rb:299 +msgid "Deadline Extended" msgstr "" -#: app/models/track_thing.rb:155 -msgid "Email me new successful responses " +#: app/models/info_request_event.rb:301 +msgid "Wrong Response" msgstr "" -#: app/models/track_thing.rb:139 -msgid "Email me when there are new requests" +#: app/models/info_request_event.rb:303 +msgid "Information not held" msgstr "" -#: app/views/user/show.rhtml:36 -msgid "Email subscriptions" +#: app/models/info_request_event.rb:305 +msgid "Refused" msgstr "" -#: app/views/general/search.rhtml:123 -msgid "" -"Enter words that you want to find separated by spaces, e.g. <strong>climbing " -"lane</strong>" +#: app/models/info_request_event.rb:307 +msgid "Some information sent" msgstr "" -#: app/views/request/upload_response.rhtml:23 -msgid "" -"Enter your response below. You may attach one file (use email, or \n" -"<a href=\"%s\">contact us</a> if you need more)." +#: app/models/info_request_event.rb:309 +msgid "All information sent" msgstr "" -#: app/views/public_body/show.rhtml:96 -msgid "Environmental Information Regulations requests made" +#: app/models/info_request_event.rb:311 +msgid "Internal review acknowledgement" msgstr "" -#: app/views/public_body/show.rhtml:69 -msgid "Environmental Information Regulations requests made using this site" +#: app/models/info_request_event.rb:313 +msgid "Withdrawn by requester" msgstr "" -#: app/views/request/details.rhtml:4 -msgid "Event history" +#: app/models/info_request_event.rb:317 +msgid "Unusual response" msgstr "" -#: app/views/request/_sidebar.rhtml:41 -msgid "Event history details" +#: app/models/info_request_event.rb:328 +msgid "Internal review request" msgstr "" -#: app/views/request/new.rhtml:124 -msgid "" -"Everything that you enter on this page \n" -" will be <strong>displayed publicly</strong> on\n" -" this website forever (<a href=\"%s\">why?</a>)." +#: app/models/info_request_event.rb:331 +msgid "Clarification" msgstr "" -#: app/views/request/new.rhtml:116 -msgid "" -"Everything that you enter on this page, including <strong>your name</" -"strong>, \n" -" will be <strong>displayed publicly</strong> on\n" -" this website forever (<a href=\"%s\">why?</a>)." +#: app/models/info_request_event.rb:335 +msgid "Follow up" msgstr "" -#: locale/model_attributes.rb:60 -msgid "EximLogDone|Filename" +#: app/models/info_request_event.rb:338 +msgid "display_status only works for incoming and outgoing messages right now" msgstr "" -#: locale/model_attributes.rb:61 -msgid "EximLogDone|Last stat" +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" msgstr "" -#: locale/model_attributes.rb:19 -msgid "EximLog|Line" +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" msgstr "" -#: locale/model_attributes.rb:18 -msgid "EximLog|Order" +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" msgstr "" -#: app/views/public_body/view_email.rhtml:3 -msgid "FOI email address for {{public_body}}" +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" msgstr "" -#: app/views/user/show.rhtml:33 -msgid "FOI requests" +#: app/models/change_email_validator.rb:44 +msgid "Old email address isn't the same as the address of the account you are logged in with" msgstr "" -#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 -msgid "FOI requests by '{{user_name}}'" +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" msgstr "" -#: app/models/profile_photo.rb:101 -msgid "Failed to convert image to a PNG" +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" msgstr "" -#: app/models/profile_photo.rb:105 -msgid "" -"Failed to convert image to the correct size: at %{cols}x%{rows}, need %" -"{width}x%{height}" +#: app/models/outgoing_message.rb:63 +msgid "Dear {{public_body_name}}," msgstr "" -#: app/views/request/new.rhtml:21 -msgid "First," +#: app/models/outgoing_message.rb:68 +msgid "Yours sincerely," msgstr "" -#: app/views/general/frontpage.rhtml:8 -msgid "" -"First, type in the <strong>name of the UK public authority</strong> you'd \n" -" <br>like information from. <strong>By law, they have to respond</" -"strong>\n" -" (<a href=\"%s\">why?</a>)." +#: app/models/outgoing_message.rb:70 +msgid "Yours faithfully," msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:4 -msgid "Follow this link to see the request:" +#: app/models/outgoing_message.rb:74 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" msgstr "" -#: app/models/info_request_event.rb:335 -msgid "Follow up" +#: app/models/outgoing_message.rb:146 +msgid "Please give details explaining why you want a review" msgstr "" -#: app/views/general/search.rhtml:159 -msgid "Follow up message sent by requester" +#: app/models/outgoing_message.rb:148 +msgid "Please enter your follow up message" msgstr "" -#: app/views/public_body/view_email.rhtml:14 -msgid "Follow up messages to existing requests are sent to " +#: app/models/outgoing_message.rb:151 +msgid "Please enter your letter requesting information" msgstr "" -#: app/views/request/_followup.rhtml:16 -msgid "" -"Follow ups and new responses to this request have been stopped to prevent " -"spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and " -"need to send a follow up." +#: app/models/outgoing_message.rb:157 +msgid "Please sign at the bottom with your name, or alter the \"%{signoff}\" signature" msgstr "" -#: app/views/public_body/show.rhtml:61 -msgid "" -"For an unknown reason, it is not possible to make a request to this " -"authority." +#: app/models/outgoing_message.rb:160 +msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read." msgstr "" -#: app/views/user/_signin.rhtml:21 -msgid "Forgotten your password?" +#: app/models/outgoing_message.rb:163 +msgid "Please choose what sort of reply you are making." msgstr "" -#: app/views/public_body/show.rhtml:56 -msgid "" -"Freedom of Information law does not apply to this authority, so you cannot " -"make\n" -" a request to it." +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" msgstr "" -#: app/views/request/followup_bad.rhtml:11 -msgid "Freedom of Information law no longer applies to" +#: app/models/public_body.rb:36 +msgid "Name can't be blank" msgstr "" -#: app/views/public_body/view_email.rhtml:10 -msgid "" -"Freedom of Information law no longer applies to this authority.Follow up " -"messages to existing requests are sent to " +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" msgstr "" -#: app/views/user/show.rhtml:128 -msgid "Freedom of Information request" +#: app/models/public_body.rb:39 +msgid "Short name is already taken" msgstr "" -#: app/views/public_body/show.rhtml:98 -msgid "Freedom of Information requests made" +#: app/models/public_body.rb:40 +msgid "Name is already taken" msgstr "" -#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 -msgid "Freedom of Information requests made by" +#: app/models/request_mailer.rb:210 +msgid "Could not identify the request from the email address" msgstr "" -#: app/views/public_body/show.rhtml:72 -msgid "Freedom of Information requests made using this site" +#: app/models/comment.rb:59 +msgid "Please enter your annotation" msgstr "" -#: app/views/request/followup_bad.rhtml:12 -msgid "" -"From the request page, try replying to a particular message, rather than " -"sending\n" -" a general followup. If you need to make a general followup, and know\n" -" an email which will go to the right place, please <a href=\"%s\">send it " -"to us</a>." +#: app/models/comment.rb:62 +msgid "Please write your annotation using a mixture of capital and lower case letters. This makes it easier for others to read." msgstr "" -#: app/models/outgoing_message.rb:73 -msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +#: app/models/incoming_message.rb:868 +msgid "\n\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]" msgstr "" -#: app/views/general/exception_caught.rhtml:14 -msgid "Go to our <a href=\"%s\">front page</a></li>" +#: app/views/request/_correspondence.rhtml:27 app/views/request/_correspondence.rhtml:57 +msgid "Link to this" msgstr "" -#: app/models/info_request_event.rb:297 -msgid "Handled by post" +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" msgstr "" -#: app/models/info_request.rb:801 -msgid "Handled by post." +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" msgstr "" -#: app/views/layouts/default.rhtml:102 -msgid "Hello!" +#: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 +msgid "Show only..." msgstr "" -#: app/views/layouts/default.rhtml:99 -msgid "Hello, {{username}}!" +#: app/views/request/list.rhtml:5 +msgid "Successful responses" msgstr "" -#: app/views/layouts/default.rhtml:94 -msgid "Help" +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" msgstr "" -#: app/views/request/details.rhtml:50 -msgid "" -"Here <strong>described</strong> means when a user selected a status for the " -"request, and\n" -"the most recent event had its status updated to that value. " -"<strong>calculated</strong> is then inferred by\n" -"{{site_name}} for intermediate events, which weren't given an explicit\n" -"description by a user. See the <a href=\"{{search_path}}\">search tips</a> " -"for description of the states." +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." msgstr "" -#: app/views/request/_other_describe_state.rhtml:4 -msgid "" -"Hi! We need your help. The person who made the following request\n" -" hasn't told us whether or not it was successful. Would you mind taking\n" -" a moment to read it and help us keep the place tidy for everyone?\n" -" Thanks." +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" msgstr "" -#: locale/model_attributes.rb:57 -msgid "Holiday|Day" +#: app/views/request/_request_listing_single.rhtml:12 +msgid "Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" msgstr "" -#: locale/model_attributes.rb:58 -msgid "Holiday|Description" +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" msgstr "" -#: app/views/public_body/show.rhtml:7 -msgid "Home page of authority" +#: app/views/request/show_response.rhtml:18 +msgid "The authority say that they <strong>need a postal\n address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/new.rhtml:63 -msgid "" -"However, you have the right to request environmental\n" -" information under a different law" +#: app/views/request/show_response.rhtml:26 +msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" -#: app/views/request/new.rhtml:73 -msgid "Human health and safety" +#: app/views/request/show_response.rhtml:29 +msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\n (<a href=\"%s\">more details</a>)." msgstr "" -#: app/views/request/_followup.rhtml:68 -msgid "I am asking for <strong>new information</strong>" +#: app/views/request/show_response.rhtml:34 +msgid "You want to <strong>give your postal address</strong> to the authority in private." msgstr "" -#: app/views/request/_followup.rhtml:73 -msgid "I am requesting an <strong>internal review</strong>" +#: app/views/request/show_response.rhtml:37 +msgid "To do that please send a private email to " msgstr "" -#: app/views/request_game/play.rhtml:39 -msgid "I don't like these ones — give me some more!" +#: app/views/request/show_response.rhtml:39 +msgid "containing your postal address, and asking them to reply to this request.\n Or you could phone them." msgstr "" -#: app/views/request_game/play.rhtml:40 -msgid "I don't want to do any more tidying now!" +#: app/views/request/show_response.rhtml:42 +msgid "When you receive the paper response, please help\n others find out what it says:" msgstr "" -#: app/views/request/_describe_state.rhtml:91 -msgid "I would like to <strong>withdraw this request</strong>" +#: app/views/request/show_response.rhtml:45 +msgid "Add an annotation to your request with choice quotes, or\n a <strong>summary of the response</strong>." msgstr "" -#: app/views/request/_describe_state.rhtml:11 -msgid "" -"I'm still <strong>waiting</strong> for my information\n" -" <small>(maybe you got an acknowledgement)</small>" +#: app/views/request/show_response.rhtml:47 +msgid "If you can, scan in or photograph the response, and <strong>send us\n a copy to upload</strong>." msgstr "" -#: app/views/request/_describe_state.rhtml:18 -msgid "I'm still <strong>waiting</strong> for the internal review" +#: app/views/request/show_response.rhtml:60 +msgid "New response to your request" msgstr "" -#: app/views/request/_describe_state.rhtml:32 -msgid "I'm waiting for an <strong>internal review</strong> response" +#: app/views/request/show_response.rhtml:62 +msgid "Response to your request" msgstr "" -#: app/views/request/_describe_state.rhtml:25 -msgid "I've been asked to <strong>clarify</strong> my request" +#: app/views/request/show_response.rhtml:66 +msgid "New response to {{law_used_short}} request" msgstr "" -#: app/views/request/_describe_state.rhtml:60 -msgid "I've received <strong>all the information" +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" msgstr "" -#: app/views/request/_describe_state.rhtml:56 -msgid "I've received <strong>some of the information</strong>" +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" msgstr "" -#: app/views/request/_describe_state.rhtml:76 -msgid "I've received an <strong>error message</strong>" +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" msgstr "" -#: app/views/public_body/view_email.rhtml:28 -msgid "" -"If the address is wrong, or you know a better address, please <a href=\"%s" -"\">contact us</a>." +#: app/views/request/_followup.rhtml:16 +msgid "Follow ups and new responses to this request have been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/request_mailer/stopped_responses.rhtml:10 -msgid "" -"If this is incorrect, or you would like to send a late response to the " -"request\n" -"or an email on another subject to {{user}}, then please\n" -"email {{contact_email}} for help." +#: app/views/request/_followup.rhtml:20 +msgid "If you are dissatisfied by the response you got from\n the public authority, you have the right to\n complain (<a href=\"%s\">details</a>)." msgstr "" -#: app/views/request/_followup.rhtml:20 -msgid "" -"If you are dissatisfied by the response you got from\n" -" the public authority, you have the right to\n" -" complain (<a href=\"%s\">details</a>)." +#: app/views/request/_followup.rhtml:27 +msgid "Please <strong>only</strong> write messages directly relating to your request {{request_link}}. If you would like to ask for information that was not in your original request, then <a href=\"{{new_request_link}}\">file a new request</a>." msgstr "" -#: app/views/user/no_cookies.rhtml:20 -msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +#: app/views/request/_followup.rhtml:32 +msgid "The response to your request has been <strong>delayed</strong>. You can say that, \n by law, the authority should normally have responded\n <strong>promptly</strong> and" msgstr "" -#: app/views/request/hidden.rhtml:15 -msgid "" -"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " -"the request." +#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 app/views/request/show.rhtml:80 +msgid "in term time" msgstr "" -#: app/views/request/new.rhtml:119 -msgid "" -"If you are thinking of using a pseudonym,\n" -" please <a href=\"%s\">read this first</a>." +#: app/views/request/_followup.rhtml:38 +msgid "by <strong>{{date}}</strong>" msgstr "" -#: app/views/request/show.rhtml:105 -msgid "If you are {{user_link}}, please" +#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 +#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 +msgid "<a href=\"%s\">details</a>" msgstr "" -#: app/views/user/bad_token.rhtml:7 -msgid "" -"If you can't click on it in the email, you'll have to <strong>select and " -"copy\n" -"it</strong> from the email. Then <strong>paste it into your browser</" -"strong>, into the place\n" -"you would type the address of any other webpage." +#: app/views/request/_followup.rhtml:44 +msgid "The response to your request is <strong>long overdue</strong>. You can say that, by \n law, under all circumstances, the authority should have responded\n by now" msgstr "" -#: app/views/request/show_response.rhtml:49 -msgid "" -"If you can, scan in or photograph the response, and <strong>send us\n" -" a copy to upload</strong>." +#: app/views/request/_followup.rhtml:58 +msgid "What are you doing?" msgstr "" -#: app/views/outgoing_mailer/_followup_footer.rhtml:4 -msgid "" -"If you find this service useful as an FOI officer, please ask your web " -"manager to link to us from your organisation's FOI page." +#: app/views/request/_followup.rhtml:68 +msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/user/bad_token.rhtml:13 -msgid "" -"If you got the email <strong>more than six months ago</strong>, then this " -"login link won't work any\n" -"more. Please try doing what you were doing from the beginning." +#: app/views/request/_followup.rhtml:73 +msgid "I am requesting an <strong>internal review</strong>" msgstr "" -#: app/controllers/request_controller.rb:437 -msgid "" -"If you have not done so already, please write a message below telling the " -"authority that you have withdrawn your request. Otherwise they will not know " -"it has been withdrawn." +#: app/views/request/_followup.rhtml:74 +msgid "<a href=\"%s\">what's that?</a>" msgstr "" -#: app/views/user/signchangeemail_confirm.rhtml:11 -#: app/views/user/signchangepassword_confirm.rhtml:10 -msgid "" -"If you use web-based email or have \"junk mail\" filters, also check your\n" -"bulk/spam mail folders. Sometimes, our messages are marked that way." +#: app/views/request/_followup.rhtml:79 +msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" -#: app/views/user/banned.rhtml:15 -msgid "" -"If you would like us to lift this ban, then you may politely\n" -"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +#: app/views/request/_followup.rhtml:85 +msgid "Edit and add <strong>more details</strong> to the message above,\n explaining why you are dissatisfied with their response." msgstr "" -#: app/views/user/_signup.rhtml:6 -msgid "If you're new to {{site_name}}" +#: app/views/request/_followup.rhtml:96 +msgid "Preview your message" msgstr "" -#: app/views/user/_signin.rhtml:7 -msgid "If you've used {{site_name}} before" +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" msgstr "" -#: app/views/user/no_cookies.rhtml:12 -msgid "" -"If your browser is set to accept cookies and you are seeing this message,\n" -"then there is probably a fault with our server." +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" msgstr "" -#: locale/model_attributes.rb:63 -msgid "IncomingMessage|Cached attachment text clipped" +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" msgstr "" -#: locale/model_attributes.rb:64 -msgid "IncomingMessage|Cached main body text folded" +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" msgstr "" -#: locale/model_attributes.rb:65 -msgid "IncomingMessage|Cached main body text unfolded" +#: app/views/request/_sidebar.rhtml:45 +msgid "<a href=\"%s\">Are you the owner of\n any commercial copyright on this page?</a>" msgstr "" -#: locale/model_attributes.rb:44 -msgid "InfoRequestEvent|Calculated state" +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" msgstr "" -#: locale/model_attributes.rb:43 -msgid "InfoRequestEvent|Described state" +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" msgstr "" -#: locale/model_attributes.rb:41 -msgid "InfoRequestEvent|Event type" +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" msgstr "" -#: locale/model_attributes.rb:45 -msgid "InfoRequestEvent|Last described at" +#: app/views/request/followup_bad.rhtml:12 +msgid "From the request page, try replying to a particular message, rather than sending\n a general followup. If you need to make a general followup, and know\n an email which will go to the right place, please <a href=\"%s\">send it to us</a>." msgstr "" -#: locale/model_attributes.rb:42 -msgid "InfoRequestEvent|Params yaml" +#: app/views/request/followup_bad.rhtml:18 +msgid "no longer exists. If you are trying to make\n From the request page, try replying to a particular message, rather than sending\n a general followup. If you need to make a general followup, and know\n an email which will go to the right place, please <a href=\"%s\">send it to us</a>." msgstr "" -#: locale/model_attributes.rb:46 -msgid "InfoRequestEvent|Prominence" +#: app/views/request/followup_bad.rhtml:24 +msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: locale/model_attributes.rb:86 -msgid "InfoRequest|Allow new responses from" +#: app/views/request/followup_bad.rhtml:24 +msgid "You may be able to find\n one on their website, or by phoning them up and asking. If you manage\n to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: locale/model_attributes.rb:82 -msgid "InfoRequest|Awaiting description" +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " msgstr "" -#: locale/model_attributes.rb:81 -msgid "InfoRequest|Described state" +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" msgstr "" -#: locale/model_attributes.rb:87 -msgid "InfoRequest|Handle rejected responses" +#: app/views/request/preview.rhtml:7 app/views/request/followup_preview.rhtml:14 +msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" -#: locale/model_attributes.rb:85 -msgid "InfoRequest|Law used" +#: app/views/request/preview.rhtml:8 +msgid "Your name, request and any responses will appear in <strong>search engines</strong>\n (<a href=\"%s\">details</a>)." msgstr "" -#: locale/model_attributes.rb:83 -msgid "InfoRequest|Prominence" +#: app/views/request/preview.rhtml:17 app/views/request/followup_preview.rhtml:22 +#: app/views/request/new.rhtml:88 +msgid "To:" msgstr "" -#: locale/model_attributes.rb:80 -msgid "InfoRequest|Title" +#: app/views/request/preview.rhtml:18 app/views/request/followup_preview.rhtml:23 +msgid "Subject:" msgstr "" -#: locale/model_attributes.rb:84 -msgid "InfoRequest|Url title" +#: app/views/request/preview.rhtml:31 +msgid "<strong>Privacy note:</strong> If you want to request private information about\n yourself then <a href=\"%s\">click here</a>." msgstr "" -#: app/models/info_request_event.rb:303 -msgid "Information not held" +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" msgstr "" -#: app/models/info_request.rb:791 -msgid "Information not held." +#: app/views/request/preview.rhtml:41 +msgid "Send public " msgstr "" -#: app/views/request/new.rhtml:71 -msgid "" -"Information on emissions and discharges (e.g. noise, energy,\n" -" radiation, waste materials)" +#: app/views/request/preview.rhtml:45 +msgid "Tags:" msgstr "" -#: app/models/info_request_event.rb:311 -msgid "Internal review acknowledgement" +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" msgstr "" -#: app/models/info_request_event.rb:328 -msgid "Internal review request" +#: app/views/request/new_bad_contact.rhtml:5 +msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\naddress for" msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:8 -msgid "" -"Is {{email_address}} the wrong address for {{type_of_request}} requests to " -"{{public_body_name}}? If so, please contact us using this form:" +#: app/views/request/new_bad_contact.rhtml:6 +msgid "You may be able to find\none on their website, or by phoning them up and asking. If you manage\nto find one, then please <a href=\"{{help_url}}\">send it to us</a>." msgstr "" -#: app/views/user/no_cookies.rhtml:8 -msgid "" -"It may be that your browser is not set to accept a thing called \"cookies" -"\",\n" -"or cannot do so. If you can, please enable cookies, or try using a " -"different\n" -"browser. Then press refresh to have another go." +#: app/views/request/show.rhtml:5 +msgid "This request has prominence 'hidden'. You can only see it because you are logged\n in as a super user." msgstr "" -#: app/views/user/_user_listing_single.rhtml:21 -msgid "Joined in" +#: app/views/request/show.rhtml:11 +msgid "This request is hidden, so that only you the requester can see it. Please\n <a href=\"%s\">contact us</a> if you are not sure why." msgstr "" -#: app/views/user/show.rhtml:62 -msgid "Joined {{site_name}} in" +#: app/views/request/show.rhtml:36 +msgid "{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this {{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to {{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" msgstr "" -#: app/views/request/new.rhtml:48 -msgid "" -"Keep it <strong>focused</strong>, you'll be more likely to get what you want " -"(<a href=\"%s\">why?</a>)." +#: app/views/request/show.rhtml:44 +msgid "{{user}} made this {{law_used_full}} request" msgstr "" -#: app/views/contact_mailer/message.rhtml:10 -msgid "Last authority viewed: " +#: app/views/request/show.rhtml:45 +msgid "to {{public_body}}" msgstr "" -#: app/views/contact_mailer/message.rhtml:7 -msgid "Last request viewed: " +#: app/views/request/show.rhtml:52 +msgid "Please <strong>answer the question above</strong> so we know whether the " msgstr "" -#: app/views/user/no_cookies.rhtml:17 -msgid "" -"Let us know what you were doing when this message\n" -"appeared and your browser and operating system type and version." +#: app/views/request/show.rhtml:53 +msgid "useful information." msgstr "" -#: app/views/request/_correspondence.rhtml:27 -#: app/views/request/_correspondence.rhtml:57 -msgid "Link to this" +#: app/views/request/show.rhtml:55 +msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/public_body/list.rhtml:32 -msgid "List of all authorities (CSV)" +#: app/views/request/show.rhtml:57 +msgid "We're waiting for someone to read" msgstr "" -#: lib/public_body_categories_en.rb:23 -msgid "Local and regional" +#: app/views/request/show.rhtml:59 +msgid "and update the status accordingly. Perhaps <strong>you</strong> might like to help out by doing that?" msgstr "" -#: app/models/info_request.rb:789 -msgid "Long overdue." +#: app/views/request/show.rhtml:61 +msgid "We're waiting for" msgstr "" -#: app/views/public_body/show.rhtml:47 -msgid "Make a new Environmental Information request" +#: app/views/request/show.rhtml:62 +msgid "to read" msgstr "" -#: app/views/request/new.rhtml:1 -msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +#: app/views/request/show.rhtml:64 +msgid "and update the status." msgstr "" -#: app/views/layouts/default.rhtml:15 -msgid "Make and browse Freedom of Information (FOI) requests" +#: app/views/request/show.rhtml:68 +msgid "Currently <strong>waiting for a response</strong> from {{public_body_link}}, they must respond promptly and" msgstr "" -#: app/views/layouts/default.rhtml:67 -msgid "Make and explore Freedom of Information requests" +#: app/views/request/show.rhtml:72 +msgid "normally" msgstr "" -#: app/views/general/frontpage.rhtml:4 -msgid "Make or explore Freedom of Information requests" +#: app/views/request/show.rhtml:74 +msgid "no later than" msgstr "" -#: app/views/layouts/default.rhtml:87 -msgid "Make request" +#: app/views/request/show.rhtml:77 +msgid "Response to this request is <strong>delayed</strong>." msgstr "" -#: app/views/public_body/_body_listing_single.rhtml:23 -msgid "Make your own request" +#: app/views/request/show.rhtml:78 +msgid "By law, {{public_body_link}} should normally have responded <strong>promptly</strong> and" msgstr "" -#: app/views/contact_mailer/message.rhtml:4 -msgid "Message sent using {{site_name}} contact form, " +#: app/views/request/show.rhtml:82 +msgid "by" msgstr "" -#: app/views/request/new_bad_contact.rhtml:1 -msgid "Missing contact details for '" +#: app/views/request/show.rhtml:85 +msgid "Response to this request is <strong>long overdue</strong>." msgstr "" -#: app/views/public_body/show.rhtml:5 -msgid "More about this authority" +#: app/views/request/show.rhtml:86 +msgid "By law, under all circumstances, {{public_body_link}} should have responded by now" msgstr "" -#: app/views/general/frontpage.rhtml:41 -msgid "More authorities..." +#: app/views/request/show.rhtml:88 +msgid "You can <strong>complain</strong> by" msgstr "" -#: app/views/general/frontpage.rhtml:55 -msgid "More successful requests..." +#: app/views/request/show.rhtml:89 +msgid "requesting an internal review" msgstr "" -#: app/views/request/_describe_state.rhtml:64 -msgid "My request has been <strong>refused</strong>" +#: app/views/request/show.rhtml:91 +msgid "<strong>did not have</strong> the information requested." msgstr "" -#: app/views/layouts/default.rhtml:91 -msgid "My requests" +#: app/views/request/show.rhtml:93 +msgid "The request was <strong>refused</strong> by" msgstr "" -#: app/models/public_body.rb:36 -msgid "Name can't be blank" +#: app/views/request/show.rhtml:95 +msgid "The request was <strong>successful</strong>." msgstr "" -#: app/models/public_body.rb:40 -msgid "Name is already taken" +#: app/views/request/show.rhtml:97 +msgid "The request was <strong>partially successful</strong>." msgstr "" -#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 -msgid "New Freedom of Information requests" +#: app/views/request/show.rhtml:100 +msgid "is <strong>waiting for your clarification</strong>." msgstr "" -#: app/views/user/signchangeemail.rhtml:20 -msgid "New e-mail:" +#: app/views/request/show.rhtml:101 +msgid "Please" msgstr "" -#: app/models/change_email_validator.rb:53 -msgid "New email doesn't look like a valid address" +#: app/views/request/show.rhtml:102 +msgid "send a follow up message" msgstr "" -#: app/views/user/signchangepassword.rhtml:15 -msgid "New password:" +#: app/views/request/show.rhtml:104 +msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/user/signchangepassword.rhtml:20 -msgid "New password: (again)" +#: app/views/request/show.rhtml:105 +msgid "If you are {{user_link}}, please" msgstr "" -#: app/views/request/show_response.rhtml:62 -msgid "New response to your request" +#: app/views/request/show.rhtml:106 +msgid "sign in" msgstr "" -#: app/views/request/show_response.rhtml:68 -msgid "New response to {{law_used_short}} request" +#: app/views/request/show.rhtml:106 +msgid "to send a follow up message." msgstr "" -#: app/views/general/search.rhtml:40 -msgid "Newest results first" +#: app/views/request/show.rhtml:109 +msgid "The authority would like to / has <strong>responded by post</strong> to this request." msgstr "" -#: app/views/user/set_draft_profile_photo.rhtml:32 -msgid "Next, crop your photo >>" +#: app/views/request/show.rhtml:111 +msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request." msgstr "" -#: app/views/general/search.rhtml:16 -msgid "Next, select the public authority you'd like to make the request from." +#: app/views/request/show.rhtml:113 +msgid "There was a <strong>delivery error</strong> or similar, which needs fixing by the {{site_name}} team." msgstr "" -#: app/views/general/search.rhtml:48 -msgid "No public authorities found" +#: app/views/request/show.rhtml:115 +msgid "This request has had an unusual response, and <strong>requires attention</strong> from the {{site_name}} team." msgstr "" -#: app/views/request/list.rhtml:23 -msgid "No requests of this sort yet." +#: app/views/request/show.rhtml:117 +msgid "This request has been <strong>withdrawn</strong> by the person who made it. \n There may be an explanation in the correspondence below." msgstr "" #: app/views/request/similar.rhtml:7 msgid "No similar requests found." msgstr "" -#: app/views/public_body/show.rhtml:73 -msgid "" -"Nobody has made any Freedom of Information requests to {{public_body_name}} " -"using this site yet." +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " msgstr "" -#: app/views/public_body/_body_listing.rhtml:2 -#: app/views/request/_request_listing.rhtml:2 +#: app/views/request/_request_listing.rhtml:2 app/views/public_body/_body_listing.rhtml:2 msgid "None found." msgstr "" -#: app/views/user/signchangeemail_confirm.rhtml:3 -#: app/views/user/signchangepassword_confirm.rhtml:1 -#: app/views/user/signchangepassword_confirm.rhtml:3 -msgid "Now check your email!" +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "This response has been hidden. See annotations to find out why.\n If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." msgstr "" -#: app/views/comment/preview.rhtml:5 -msgid "Now preview your annotation" +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "This outgoing message has been hidden. See annotations to\n find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." msgstr "" -#: app/views/request/followup_preview.rhtml:10 -msgid "Now preview your follow up" +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "This comment has been hidden. See annotations to\n find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." msgstr "" -#: app/views/request/followup_preview.rhtml:8 -msgid "Now preview your message asking for an internal review" +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" msgstr "" -#: app/views/request/preview.rhtml:5 -msgid "Now preview your request" +#: app/views/request/new_please_describe.rhtml:5 +msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\nif they are successful yet or not." msgstr "" -#: app/views/user/set_draft_profile_photo.rhtml:46 -msgid "OR remove the existing photo" +#: app/views/request/new_please_describe.rhtml:16 +msgid "When you're done, <strong>come back here</strong>, <a href=\"%s\">reload this page</a> and file your new request." msgstr "" -#: app/views/general/frontpage.rhtml:25 -msgid "" -"OR, <strong>search</strong> for information others have requested using " -"{{site_name}}" +#: app/views/request/new_please_describe.rhtml:20 +msgid "Thanks very much for helping keep everything <strong>neat and organised</strong>.\n We'll also, if you need it, give you advice on what to do next about each of your\n requests." msgstr "" -#: app/controllers/request_controller.rb:414 -msgid "" -"Oh no! Sorry to hear that your request was refused. Here is what to do now." +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" msgstr "" -#: app/views/user/signchangeemail.rhtml:15 -msgid "Old e-mail:" +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" msgstr "" -#: app/models/change_email_validator.rb:44 -msgid "" -"Old email address isn't the same as the address of the account you are " -"logged in with" +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" msgstr "" -#: app/models/change_email_validator.rb:39 -msgid "Old email doesn't look like a valid address" +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" msgstr "" -#: app/views/user/show.rhtml:32 -msgid "On this page" +#: app/views/request/followup_preview.rhtml:37 +msgid "<strong>Privacy warning:</strong> Your message, and any response\n to it, will be displayed publicly on this website." msgstr "" -#: app/views/general/search.rhtml:71 -msgid "One public authority matching ‘{{user_search_query}}’" +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" msgstr "" -#: app/views/public_body/show.rhtml:91 -msgid "Only requests made using {{site_name}} are shown." +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" msgstr "" -#: app/models/info_request.rb:405 -msgid "" -"Only the authority can reply to this request, and I don't recognise the " -"address this reply was sent from" +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" msgstr "" -#: app/models/info_request.rb:401 -msgid "" -"Only the authority can reply to this request, but there is no \"From\" " -"address to check against" +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" msgstr "" -#: app/views/general/search.rhtml:158 -msgid "Original request sent" +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" msgstr "" -#: locale/model_attributes.rb:26 -msgid "OutgoingMessage|Body" +#: app/views/request/_after_actions.rhtml:13 app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" msgstr "" -#: locale/model_attributes.rb:29 -msgid "OutgoingMessage|Last sent at" +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" msgstr "" -#: locale/model_attributes.rb:28 -msgid "OutgoingMessage|Message type" +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" msgstr "" -#: locale/model_attributes.rb:27 -msgid "OutgoingMessage|Status" +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" msgstr "" -#: locale/model_attributes.rb:30 -msgid "OutgoingMessage|What doing" +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" msgstr "" -#: app/models/info_request.rb:795 -msgid "Partially successful." +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/models/change_email_validator.rb:47 -msgid "Password is not correct" +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 -msgid "Password:" +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." msgstr "" -#: app/views/user/_signup.rhtml:35 -msgid "Password: (again)" +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "Request to {{public_body_name}} by {{info_request_user}}. Annotated by {{event_comment_user}} on {{date}}." msgstr "" -#: app/views/user/set_draft_profile_photo.rhtml:13 -msgid "Photo of you:" +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " msgstr "" -#: app/views/request/new.rhtml:76 -msgid "Plans and administrative measures that affect these matters" +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" msgstr "" -#: app/controllers/request_game_controller.rb:42 -msgid "Play the request categorisation game" +#: app/views/request/upload_response.rhtml:5 +msgid " made by " msgstr "" -#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 -msgid "Play the request categorisation game!" +#: app/views/request/upload_response.rhtml:8 +msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"%s\">read why</a> and answers to other questions." msgstr "" -#: app/views/request/show.rhtml:101 -msgid "Please" +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" msgstr "" -#: app/views/user/no_cookies.rhtml:15 -msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +#: app/views/request/upload_response.rhtml:13 +msgid "You should have received a copy of the request by email, and you can respond\nby <strong>simply replying</strong> to that email. For your convenience, here is the address:" msgstr "" -#: app/views/request/show.rhtml:52 -msgid "" -"Please <strong>answer the question above</strong> so we know whether the " +#: app/views/request/upload_response.rhtml:16 +msgid "You may <strong>include attachments</strong>. If you would like to attach a\nfile too large for email, use the form below." msgstr "" -#: app/views/user/show.rhtml:12 -msgid "" -"Please <strong>go to the following requests</strong>, and let us\n" -" know if there was information in the recent responses to them." +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" msgstr "" -#: app/views/request/_followup.rhtml:27 -msgid "" -"Please <strong>only</strong> write messages directly relating to your " -"request {{request_link}}. If you would like to ask for information that was " -"not in your original request, then <a href=\"{{new_request_link}}\">file a " -"new request</a>." +#: app/views/request/upload_response.rhtml:23 +msgid "Enter your response below. You may attach one file (use email, or \n<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/request/new.rhtml:60 -msgid "Please ask for environmental information only" +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" msgstr "" -#: app/views/user/bad_token.rhtml:2 -msgid "" -"Please check the URL (i.e. the long code of letters and numbers) is copied\n" -"correctly from your email." +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" msgstr "" -#: app/models/profile_photo.rb:91 -msgid "Please choose a file containing your photo." +#: app/views/request/upload_response.rhtml:40 +msgid " (<strong>patience</strong>, especially for large files, it may take a while!)" msgstr "" -#: app/models/outgoing_message.rb:162 -msgid "Please choose what sort of reply you are making." +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" msgstr "" -#: app/controllers/request_controller.rb:346 -msgid "" -"Please choose whether or not you got some of the information that you wanted." +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" msgstr "" -#: app/views/user_mailer/changeemail_confirm.rhtml:3 -msgid "" -"Please click on the link below to confirm that you want to \n" -"change the email address that you use for {{site_name}}\n" -"from {{old_email}} to {{new_email}}" +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" msgstr "" -#: app/views/user_mailer/confirm_login.rhtml:3 -msgid "Please click on the link below to confirm your email address." +#: app/views/request/_describe_state.rhtml:7 app/views/request/_other_describe_state.rhtml:10 +msgid "This request is still in progress:" msgstr "" -#: app/models/info_request.rb:126 -msgid "" -"Please describe more what the request is about in the subject. There is no " -"need to say it is an FOI request, we add that on anyway." +#: app/views/request/_describe_state.rhtml:11 +msgid "I'm still <strong>waiting</strong> for my information\n <small>(maybe you got an acknowledgement)</small>" msgstr "" -#: app/views/user/set_draft_profile_photo.rhtml:22 -msgid "" -"Please don't upload offensive pictures. We will take down images\n" -" that we consider inappropriate." +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" msgstr "" -#: app/views/user/no_cookies.rhtml:3 -msgid "Please enable \"cookies\" to carry on" +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/models/user.rb:38 -msgid "Please enter a password" +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" msgstr "" -#: app/models/contact_validator.rb:30 -msgid "Please enter a subject" +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/models/info_request.rb:34 -msgid "Please enter a summary of your request" +#: app/views/request/_describe_state.rhtml:44 app/views/request/_other_describe_state.rhtml:40 +msgid "This particular request is finished:" msgstr "" -#: app/models/user.rb:106 -msgid "Please enter a valid email address" +#: app/views/request/_describe_state.rhtml:47 app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" msgstr "" -#: app/models/contact_validator.rb:31 -msgid "Please enter the message you want to send" +#: app/views/request/_describe_state.rhtml:52 +msgid "They do <strong>not have</strong> the information <small>(maybe they say who does)</small>" msgstr "" -#: app/models/user.rb:49 -msgid "Please enter the same password twice" +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" msgstr "" -#: app/models/comment.rb:59 -msgid "Please enter your annotation" +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" msgstr "" -#: app/models/contact_validator.rb:29 app/models/user.rb:34 -msgid "Please enter your email address" +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" msgstr "" -#: app/models/outgoing_message.rb:147 -msgid "Please enter your follow up message" +#: app/views/request/_describe_state.rhtml:71 +msgid "Other:" msgstr "" -#: app/models/outgoing_message.rb:150 -msgid "Please enter your letter requesting information" +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" msgstr "" -#: app/models/contact_validator.rb:28 app/models/user.rb:36 -msgid "Please enter your name" +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" msgstr "" -#: app/models/user.rb:109 -msgid "Please enter your name, not your email address, in the name field." +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" msgstr "" -#: app/models/change_email_validator.rb:30 -msgid "Please enter your new email address" +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" msgstr "" -#: app/models/change_email_validator.rb:29 -msgid "Please enter your old email address" +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" -#: app/models/change_email_validator.rb:31 -msgid "Please enter your password" +#: app/views/request/_describe_state.rhtml:107 +msgid "We don't know whether the most recent response to this request contains\n information or not\n –\n if you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know." msgstr "" -#: app/models/outgoing_message.rb:145 -msgid "Please give details explaining why you want a review" +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" -#: app/models/about_me_validator.rb:24 -msgid "Please keep it shorter than 500 characters" +#: app/views/request/new.rhtml:6 +msgid "{{existing_request_user}} already\n created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n or edit the details below to make a new but similar request." msgstr "" -#: app/models/info_request.rb:123 -msgid "" -"Please keep the summary short, like in the subject of an email. You can use " -"a phrase, rather than a full sentence." +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" msgstr "" -#: app/views/request/new.rhtml:79 -msgid "" -"Please only request information that comes under those categories, " -"<strong>do not waste your\n" -" time</strong> or the time of the public authority by requesting " -"unrelated information." +#: app/views/request/new.rhtml:21 +msgid "First," msgstr "" -#: app/views/request/new_please_describe.rhtml:5 -msgid "" -"Please select each of these requests in turn, and <strong>let everyone know</" -"strong>\n" -"if they are successful yet or not." +#: app/views/request/new.rhtml:23 +msgid "<strong>browse</strong> the authority's <a href=\"%s\">publication scheme</a> or <strong>search</strong> their web site ..." msgstr "" -#: app/models/outgoing_message.rb:156 -msgid "" -"Please sign at the bottom with your name, or alter the \"%{signoff}\" " -"signature" +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." msgstr "" -#: app/views/user/sign.rhtml:8 -msgid "Please sign in as " +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:80 +#: app/views/general/exception_caught.rhtml:10 app/views/general/frontpage.rhtml:14 +#: app/views/general/search.rhtml:29 +msgid "Search" msgstr "" -#: app/controllers/request_controller.rb:730 -msgid "Please type a message and/or choose a file containing your response." +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." msgstr "" -#: app/controllers/request_controller.rb:434 -msgid "Please use the form below to tell us more." +#: app/views/request/new.rhtml:41 +msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request." msgstr "" -#: app/views/outgoing_mailer/followup.rhtml:6 -#: app/views/outgoing_mailer/initial_request.rhtml:5 -msgid "Please use this email address for all replies to this request:" +#: app/views/request/new.rhtml:43 +msgid "Browse <a href=\"%s\">other requests</a> for examples of how to word your request." msgstr "" -#: app/models/info_request.rb:35 -msgid "Please write a summary with some text in it" +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." msgstr "" -#: app/models/info_request.rb:120 -msgid "" -"Please write the summary using a mixture of capital and lower case letters. " -"This makes it easier for others to read." +#: app/views/request/new.rhtml:47 +msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" -#: app/models/comment.rb:62 -msgid "" -"Please write your annotation using a mixture of capital and lower case " -"letters. This makes it easier for others to read." +#: app/views/request/new.rhtml:48 +msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"%s\">why?</a>)." msgstr "" -#: app/controllers/request_controller.rb:423 -msgid "" -"Please write your follow up message containing the necessary clarifications " -"below." +#: app/views/request/new.rhtml:49 +msgid "This site is <strong>public</strong>. Everything you type and any response will be published." msgstr "" -#: app/models/outgoing_message.rb:159 -msgid "" -"Please write your message using a mixture of capital and lower case letters. " -"This makes it easier for others to read." +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" msgstr "" -#: app/views/comment/new.rhtml:41 -msgid "" -"Point to <strong>related information</strong>, campaigns or forums which may " -"be useful." +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" msgstr "" -#: app/views/comment/preview.rhtml:21 -msgid "Post annotation" +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" -#: locale/model_attributes.rb:55 -msgid "PostRedirect|Circumstance" +#: app/views/request/new.rhtml:63 +msgid "However, you have the right to request environmental\n information under a different law" msgstr "" -#: locale/model_attributes.rb:53 -msgid "PostRedirect|Email token" +#: app/views/request/new.rhtml:65 +msgid "This covers a very wide spectrum of information about the state of\n the <strong>natural and built environment</strong>, such as:" msgstr "" -#: locale/model_attributes.rb:52 -msgid "PostRedirect|Post params yaml" +#: app/views/request/new.rhtml:69 +msgid "Air, water, soil, land, flora and fauna (including how these effect\n human beings)" msgstr "" -#: locale/model_attributes.rb:54 -msgid "PostRedirect|Reason params yaml" +#: app/views/request/new.rhtml:71 +msgid "Information on emissions and discharges (e.g. noise, energy,\n radiation, waste materials)" msgstr "" -#: locale/model_attributes.rb:50 -msgid "PostRedirect|Token" +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" msgstr "" -#: locale/model_attributes.rb:51 -msgid "PostRedirect|Uri" +#: app/views/request/new.rhtml:74 +msgid "Cultural sites and built structures (as they may be affected by the\n environmental factors listed above)" msgstr "" -#: app/views/general/_credits.rhtml:1 -msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" msgstr "" -#: app/views/request/followup_preview.rhtml:1 -msgid "Preview follow up to '" +#: app/views/request/new.rhtml:79 +msgid "Please only request information that comes under those categories, <strong>do not waste your\n time</strong> or the time of the public authority by requesting unrelated information." msgstr "" -#: app/views/comment/preview.rhtml:1 -msgid "Preview new annotation on '{{info_request_title}}'" +#: app/views/request/new.rhtml:93 +msgid "Summary:" msgstr "" -#: app/views/comment/_comment_form.rhtml:15 -msgid "Preview your annotation" +#: app/views/request/new.rhtml:97 +msgid "a one line summary of the information you are requesting, \n e.g." msgstr "" -#: app/views/request/_followup.rhtml:96 -msgid "Preview your message" +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/views/request/new.rhtml:139 -msgid "Preview your public request" +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" msgstr "" -#: locale/model_attributes.rb:15 -msgid "ProfilePhoto|Data" +#: app/views/request/new.rhtml:109 +msgid "Your request:" msgstr "" -#: locale/model_attributes.rb:16 -msgid "ProfilePhoto|Draft" +#: app/views/request/new.rhtml:116 +msgid "Everything that you enter on this page, including <strong>your name</strong>, \n will be <strong>displayed publicly</strong> on\n this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/public_body/list.rhtml:37 -msgid "Public authorities - {{description}}" +#: app/views/request/new.rhtml:119 +msgid "If you are thinking of using a pseudonym,\n please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/general/search.rhtml:73 -msgid "" -"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" +#: app/views/request/new.rhtml:124 +msgid "Everything that you enter on this page \n will be <strong>displayed publicly</strong> on\n this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: locale/model_attributes.rb:12 -msgid "PublicBody|First letter" +#: app/views/request/new.rhtml:131 +msgid "<strong> Can I request information about myself?</strong>\n <a href=\"%s\">No! (Click here for details)</a>" msgstr "" -#: locale/model_attributes.rb:10 -msgid "PublicBody|Home page" +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" msgstr "" -#: locale/model_attributes.rb:8 -msgid "PublicBody|Last edit comment" +#: app/views/request/_other_describe_state.rhtml:4 +msgid "Hi! We need your help. The person who made the following request\n hasn't told us whether or not it was successful. Would you mind taking\n a moment to read it and help us keep the place tidy for everyone?\n Thanks." msgstr "" -#: locale/model_attributes.rb:7 -msgid "PublicBody|Last edit editor" +#: app/views/request/_other_describe_state.rhtml:14 +msgid "<strong>No response</strong> has been received\n <small>(maybe there's just an acknowledgement)</small>" msgstr "" -#: locale/model_attributes.rb:3 -msgid "PublicBody|Name" +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" msgstr "" -#: locale/model_attributes.rb:11 -msgid "PublicBody|Notes" +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" msgstr "" -#: locale/model_attributes.rb:13 -msgid "PublicBody|Publication scheme" +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" msgstr "" -#: locale/model_attributes.rb:5 -msgid "PublicBody|Request email" +#: app/views/request/_other_describe_state.rhtml:48 +msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" -#: locale/model_attributes.rb:4 -msgid "PublicBody|Short name" +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " msgstr "" -#: locale/model_attributes.rb:9 -msgid "PublicBody|Url name" +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" msgstr "" -#: locale/model_attributes.rb:6 -msgid "PublicBody|Version" +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" msgstr "" -#: app/views/public_body/show.rhtml:10 -msgid "Publication scheme" +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" msgstr "" -#: locale/model_attributes.rb:48 -msgid "RawEmail|Data binary" +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" msgstr "" -#: app/views/comment/preview.rhtml:20 -msgid "Re-edit this annotation" +#: app/views/request/details.rhtml:4 +msgid "Event history" msgstr "" -#: app/views/request/followup_preview.rhtml:49 -msgid "Re-edit this message" +#: app/views/request/details.rhtml:6 +msgid "This table shows the technical details of the internal events that happened\nto this request on {{site_name}}. This could be used to generate information about\nthe speed with which authorities respond to requests, the number of requests\nwhich require a postal response and much more." msgstr "" -#: app/views/request/preview.rhtml:40 -msgid "Re-edit this request" +#: app/views/request/details.rhtml:12 +msgid "<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \na good internal knowledge of user behaviour on {{site_name}}. How, \nwhy and by whom requests are categorised is not straightforward, and there will\nbe user error and ambiguity. You will also need to understand FOI law, and the\nway authorities use it. Plus you'll need to be an elite statistician. Please\n<a href=\"{{contact_path}}\">contact us</a> with questions." msgstr "" -#: app/views/general/search.rhtml:137 -msgid "" -"Read about <a href=\"{{advanced_search_url}}\">advanced search operators</" -"a>, such as proximity and wildcards." +#: app/views/request/details.rhtml:50 +msgid "Here <strong>described</strong> means when a user selected a status for the request, and\nthe most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n{{site_name}} for intermediate events, which weren't given an explicit\ndescription by a user. See the <a href=\"{{search_path}}\">search tips</a> for description of the states." msgstr "" -#: app/views/layouts/default.rhtml:93 -msgid "Read blog" +#: app/views/request/details.rhtml:58 +msgid "You can get this page in computer-readable format as part of the main JSON\npage for the request. See the <a href=\"{{api_path}}\">API documentation</a>." msgstr "" -#: app/views/request/new.rhtml:16 -msgid "Read this before writing your {{info_request_law_used_full}} request" +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" msgstr "" -#: app/views/general/search.rhtml:150 -msgid "Received an error message, such as delivery failure." +#: app/views/request/hidden.rhtml:9 +msgid "The request you have tried to view has been removed. There are\nvarious reasons why we might have done this, sorry we can't be more specific here. Please <a\n href=\"%s\">contact us</a> if you have any questions." msgstr "" -#: app/views/general/search.rhtml:42 -msgid "Recently described results first" +#: app/views/request/hidden.rhtml:15 +msgid "If you are the requester, then you may <a href=\"%s\">sign in</a> to view the request." msgstr "" -#: app/controllers/request_controller.rb:139 -msgid "Recently sent Freedom of Information requests" +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" msgstr "" -#: app/views/request/list.rhtml:6 -msgid "Recently sent requests" +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" msgstr "" -#: app/controllers/request_controller.rb:144 -msgid "Recently successful responses" +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "This is an HTML version of an attachment to the Freedom of Information request" msgstr "" -#: app/models/info_request_event.rb:305 -msgid "Refused" +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using {{site_name}} contact form, " msgstr "" -#: app/models/info_request.rb:793 -msgid "Refused." +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " msgstr "" -#: app/views/user/_signin.rhtml:26 -msgid "" -"Remember me</label> (keeps you signed in longer;\n" -" do not use on a public computer) " +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " msgstr "" -#: app/views/request/_correspondence.rhtml:28 -msgid "Reply to this message" +#: app/views/contact_mailer/user_message.rhtml:2 +msgid "{{user_name}} has used {{site_name}} to send you the message below." msgstr "" -#: app/views/comment/_single_comment.rhtml:24 -msgid "Report abuse" +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "Your details have not been given to anyone, unless you choose to reply to this\nmessage, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/request/_after_actions.rhtml:37 -msgid "Request an internal review" +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" -#: app/views/request/_followup.rhtml:4 -msgid "Request an internal review from" +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" msgstr "" -#: app/views/request/hidden.rhtml:1 -msgid "Request has been removed" +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" msgstr "" -#: app/views/request/_request_listing_via_event.rhtml:28 -msgid "" -"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" msgstr "" -#: app/views/request/_request_listing_via_event.rhtml:36 -msgid "" -"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " -"{{event_comment_user}} on {{date}}." +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n wherever you do something on {{site_name}}." msgstr "" -#: app/views/request/_request_listing_single.rhtml:12 -msgid "" -"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +#: app/views/user/_user_listing_single.rhtml:19 app/views/user/_user_listing_single.rhtml:20 +msgid "made." msgstr "" -#: app/views/request/_sidebar_request_listing.rhtml:13 -msgid "Requested on {{date}}" +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" msgstr "" -#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 -msgid "Requests or responses matching '{{query}}'" +#: app/views/user/signchangepassword_confirm.rhtml:1 app/views/user/signchangepassword_confirm.rhtml:3 +#: app/views/user/signchangeemail_confirm.rhtml:3 +msgid "Now check your email!" msgstr "" -#: app/views/request/upload_response.rhtml:11 -msgid "Respond by email" +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "We've sent you an email, click the link in it, then you can change your password." msgstr "" -#: app/views/request/_after_actions.rhtml:46 -msgid "Respond to request" +#: app/views/user/signchangepassword_confirm.rhtml:10 app/views/user/signchangeemail_confirm.rhtml:11 +msgid "If you use web-based email or have \"junk mail\" filters, also check your\nbulk/spam mail folders. Sometimes, our messages are marked that way." msgstr "" -#: app/views/request/upload_response.rhtml:5 -msgid "Respond to the FOI request" +#: app/views/user/signchangepassword.rhtml:1 app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" msgstr "" -#: app/views/request/upload_response.rhtml:21 -msgid "Respond using the web" +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" msgstr "" -#: app/views/general/search.rhtml:160 -msgid "Response from a public authority" +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" msgstr "" -#: app/views/request/show.rhtml:77 -msgid "Response to this request is <strong>delayed</strong>." +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" msgstr "" -#: app/views/request/show.rhtml:85 -msgid "Response to this request is <strong>long overdue</strong>." +#: app/views/user/_signin.rhtml:7 +msgid "If you've used {{site_name}} before" msgstr "" -#: app/views/request/show_response.rhtml:64 -msgid "Response to your request" +#: app/views/user/_signin.rhtml:11 app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 +msgid "Your e-mail:" msgstr "" -#: app/views/request/upload_response.rhtml:28 -msgid "Response:" +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" msgstr "" -#: app/views/general/search.rhtml:9 -msgid "Results page {{page_number}}" +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:35 -msgid "Save" +#: app/views/user/_signin.rhtml:26 +msgid "Remember me</label> (keeps you signed in longer;\n do not use on a public computer) " msgstr "" -#: app/views/general/exception_caught.rhtml:10 -#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 -#: app/views/layouts/default.rhtml:80 app/views/request/new.rhtml:31 -msgid "Search" +#: app/views/user/_signin.rhtml:31 +msgid "Sign in" msgstr "" -#: app/views/general/search.rhtml:4 -msgid "Search Freedom of Information requests, public authorities and users" +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " msgstr "" -#: app/views/general/exception_caught.rhtml:7 -msgid "Search the site to find what you were looking for." +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " msgstr "" -#: app/controllers/user_controller.rb:331 -msgid "Send a message to " +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" msgstr "" -#: app/views/request/_followup.rhtml:7 -msgid "Send a public follow up message to" +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." msgstr "" -#: app/views/request/_followup.rhtml:10 -msgid "Send a public reply to" +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." msgstr "" -#: app/views/request/_correspondence.rhtml:58 -msgid "Send follow up" +#: app/views/user/contact.rhtml:32 +msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\n to try out how it works." msgstr "" -#: app/views/request/followup_preview.rhtml:50 -msgid "Send message" +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" msgstr "" -#: app/views/user/show.rhtml:69 -msgid "Send message to " +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." msgstr "" -#: app/views/request/preview.rhtml:41 -msgid "Send public " +#: app/views/user/confirm.rhtml:6 +msgid "We've sent you an email, and you'll need to click the link in it before you can\ncontinue." msgstr "" -#: app/views/user/show.rhtml:53 -msgid "Set your profile photo" +#: app/views/user/confirm.rhtml:11 +msgid "<small>If you use web-based email or have \"junk mail\" filters, also check your\nbulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n</p>" msgstr "" -#: app/models/public_body.rb:39 -msgid "Short name is already taken" +#: app/views/user/bad_token.rhtml:2 +msgid "Please check the URL (i.e. the long code of letters and numbers) is copied\ncorrectly from your email." msgstr "" -#: app/views/general/search.rhtml:38 -msgid "Show most relevant results first" +#: app/views/user/bad_token.rhtml:7 +msgid "If you can't click on it in the email, you'll have to <strong>select and copy\nit</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\nyou would type the address of any other webpage." msgstr "" -#: app/views/public_body/list.rhtml:3 app/views/request/list.rhtml:2 -msgid "Show only..." +#: app/views/user/bad_token.rhtml:13 +msgid "If you got the email <strong>more than six months ago</strong>, then this login link won't work any\nmore. Please try doing what you were doing from the beginning." msgstr "" -#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 -msgid "Sign in" +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "Unfortunately we don't know the FOI\nemail address for that authority, so we can't validate this.\nPlease <a href=\"%s\">contact us</a> to sort it out." msgstr "" -#: app/views/user/sign.rhtml:20 -msgid "Sign in or make a new account" +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid " <strong>Note:</strong>\n We will send you an email. Follow the instructions in it to change\n your password." msgstr "" -#: app/views/layouts/default.rhtml:103 -msgid "Sign in or sign up" +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" msgstr "" -#: app/views/layouts/default.rhtml:100 -msgid "Sign out" +#: app/views/user/show.rhtml:4 +msgid "There is <strong>more than one person</strong> who uses this site and has this name. \n One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/user/_signup.rhtml:41 -msgid "Sign up" +#: app/views/user/show.rhtml:12 +msgid "Please <strong>go to the following requests</strong>, and let us\n know if there was information in the recent responses to them." msgstr "" -#: app/views/request/_sidebar.rhtml:30 -msgid "Similar requests" +#: app/views/user/show.rhtml:20 +msgid "Thanks very much - this will help others find useful stuff. We'll\n also, if you need it, give advice on what to do next about your\n requests." msgstr "" -#: app/models/info_request_event.rb:307 -msgid "Some information sent" +#: app/views/user/show.rhtml:29 +msgid "Track this person" msgstr "" -#: app/views/general/search.rhtml:145 -msgid "Some of the information requested has been received" +#: app/views/user/show.rhtml:32 +msgid "On this page" msgstr "" -#: app/views/request_game/play.rhtml:31 -msgid "" -"Some people who've made requests haven't let us know whether they were\n" -"successful or not. We need <strong>your</strong> help –\n" -"choose one of these requests, read it, and let everyone know whether or not " -"the\n" -"information has been provided. Everyone'll be exceedingly grateful." +#: app/views/user/show.rhtml:33 +msgid "FOI requests" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:1 -msgid "" -"Someone, perhaps you, just tried to change their email address on\n" -"{{site_name}} from {{old_email}} to {{new_email}}." +#: app/views/user/show.rhtml:34 +msgid "Annotations" msgstr "" -#: app/views/general/exception_caught.rhtml:1 -msgid "Sorry, we couldn't find that page" +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" msgstr "" -#: app/views/request/new.rhtml:53 -msgid "Special note for this authority!" +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" msgstr "" -#: app/views/request/_other_describe_state.rhtml:21 -msgid "Still awaiting an <strong>internal review</strong>" +#: app/views/user/show.rhtml:59 +msgid " (you)" msgstr "" -#: app/views/request/followup_preview.rhtml:23 -#: app/views/request/preview.rhtml:18 -msgid "Subject:" +#: app/views/user/show.rhtml:62 +msgid "Joined {{site_name}} in" msgstr "" -#: app/views/user/signchangepassword_send_confirm.rhtml:26 -msgid "Submit" +#: app/views/user/show.rhtml:69 +msgid "Send message to " msgstr "" -#: app/views/request/_describe_state.rhtml:101 -msgid "Submit status" +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" msgstr "" -#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 -msgid "Successful Freedom of Information requests" +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from {{site_name}} " msgstr "" -#: app/views/request/list.rhtml:5 -msgid "Successful responses" +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" msgstr "" -#: app/models/info_request.rb:797 -msgid "Successful." +#: app/views/user/show.rhtml:96 +msgid "edit text about you" msgstr "" -#: app/views/comment/new.rhtml:38 -msgid "" -"Suggest how the requester can find the <strong>rest of the information</" -"strong>." +#: app/views/user/show.rhtml:106 +msgid "Change your password" msgstr "" -#: app/views/request/new.rhtml:93 -msgid "Summary:" +#: app/views/user/show.rhtml:107 +msgid "Change your email" msgstr "" -#: app/views/general/search.rhtml:140 -msgid "Table of statuses" +#: app/views/user/show.rhtml:113 +msgid "<a href=\"%s\">Sign in</a> to change password, subscriptions and more ({{user_name}} only)" msgstr "" -#: app/views/request/preview.rhtml:45 -msgid "Tags:" +#: app/views/user/show.rhtml:121 +msgid "You have made no Freedom of Information requests using this site." msgstr "" -#: app/controllers/request_game_controller.rb:52 -msgid "Thank you for helping us keep the site tidy!" +#: app/views/user/show.rhtml:121 +msgid "This person has made no Freedom of Information requests using this site." msgstr "" -#: app/controllers/comment_controller.rb:62 -msgid "Thank you for making an annotation!" +#: app/views/user/show.rhtml:125 +msgid "Your %d Freedom of Information request" +msgid_plural "Your %d Freedom of Information requests" +msgstr[0] "" +msgstr[1] "" + +#: app/views/user/show.rhtml:125 +msgid "This person's %d Freedom of Information request" +msgid_plural "This person's %d Freedom of Information requests" +msgstr[0] "" +msgstr[1] "" + +#: app/views/user/show.rhtml:137 +msgid "Freedom of Information requests made by you" msgstr "" -#: app/controllers/request_controller.rb:736 -msgid "" -"Thank you for responding to this FOI request! Your response has been " -"published below, and a link to your response has been emailed to " +#: app/views/user/show.rhtml:137 +msgid "Freedom of Information requests made by this person" msgstr "" -#: app/controllers/request_controller.rb:378 -msgid "" -"Thank you for updating the status of the request '<a href=\"{{url}}\">" -"{{info_request_title}}</a>'. There are some more requests below for you to " -"classify." +#: app/views/user/show.rhtml:138 +msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made." msgstr "" -#: app/controllers/request_controller.rb:381 -msgid "Thank you for updating this request!" +#: app/views/user/show.rhtml:144 +msgid "Your annotations" msgstr "" -#: app/controllers/user_controller.rb:398 -#: app/controllers/user_controller.rb:414 -msgid "Thank you for updating your profile photo" +#: app/views/user/show.rhtml:144 +msgid "This person's annotations" msgstr "" -#: app/views/request_game/play.rhtml:42 -msgid "" -"Thanks for helping - your work will make it easier for everyone to find " -"successful\n" -"responses, and maybe even let us make league tables..." +#: app/views/user/show.rhtml:145 app/views/user/show.rhtml:165 +msgid "None made." msgstr "" -#: app/views/user/show.rhtml:20 -msgid "" -"Thanks very much - this will help others find useful stuff. We'll\n" -" also, if you need it, give advice on what to do next about your\n" -" requests." +#: app/views/user/show.rhtml:149 +msgid "Your %d annotation" +msgid_plural "Your %d annotations" +msgstr[0] "" +msgstr[1] "" + +#: app/views/user/show.rhtml:149 +msgid "This person's %d annotation" +msgid_plural "This person's %d annotations" +msgstr[0] "" +msgstr[1] "" + +#: app/views/user/show.rhtml:164 +msgid "Your email subscriptions" msgstr "" -#: app/views/request/new_please_describe.rhtml:20 -msgid "" -"Thanks very much for helping keep everything <strong>neat and organised</" -"strong>.\n" -" We'll also, if you need it, give you advice on what to do next about " -"each of your\n" -" requests." +#: app/views/user/show.rhtml:167 +msgid "email subscription" msgstr "" -#: app/controllers/user_controller.rb:189 -msgid "" -"That doesn't look like a valid email address. Please check you have typed it " -"correctly." +#: app/views/user/show.rhtml:176 app/views/user/show.rhtml:190 +msgid "unsubscribe all" msgstr "" -#: app/views/request/_describe_state.rhtml:47 -#: app/views/request/_other_describe_state.rhtml:43 -msgid "The <strong>review has finished</strong> and overall:" +#: app/views/user/show.rhtml:204 +msgid "unsubscribe" msgstr "" -#: app/views/request/new.rhtml:62 -msgid "The Freedom of Information Act <strong>does not apply</strong> to" +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:8 -msgid "The accounts have been left as they previously were." +#: app/views/user/no_cookies.rhtml:5 +msgid "To carry on, you need to sign in or make an account. Unfortunately, there\nwas a technical problem trying to do this." msgstr "" -#: app/views/request/_other_describe_state.rhtml:48 -msgid "" -"The authority do <strong>not have</strong> the information <small>(maybe " -"they say who does)" +#: app/views/user/no_cookies.rhtml:8 +msgid "It may be that your browser is not set to accept a thing called \"cookies\",\nor cannot do so. If you can, please enable cookies, or try using a different\nbrowser. Then press refresh to have another go." msgstr "" -#: app/views/request/show_response.rhtml:28 -msgid "" -"The authority only has a <strong>paper copy</strong> of the information." +#: app/views/user/no_cookies.rhtml:12 +msgid "If your browser is set to accept cookies and you are seeing this message,\nthen there is probably a fault with our server." msgstr "" -#: app/views/request/show_response.rhtml:18 -msgid "" -"The authority say that they <strong>need a postal\n" -" address</strong>, not just an email, for it to be a valid FOI " -"request" +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." msgstr "" -#: app/views/request/show.rhtml:109 -msgid "" -"The authority would like to / has <strong>responded by post</strong> to this " -"request." +#: app/views/user/no_cookies.rhtml:17 +msgid "Let us know what you were doing when this message\nappeared and your browser and operating system type and version." msgstr "" -#: app/views/request_mailer/stopped_responses.rhtml:1 -msgid "" -"The email that you, on behalf of {{public_body}}, sent to\n" -"{{user}} to reply to an {{law_used_short}}\n" -"request has not been delivered." +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." msgstr "" -#: app/views/request/show_response.rhtml:22 -msgid "" -"The law, the Ministry of Justice and the Information Commissioner\n" -" all say that an email is sufficient (<a href=\"%s\">more " -"details</a>).\n" -" At the bottom of this page, write a reply to the authority " -"explaining this to them." +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" msgstr "" -#: app/views/general/exception_caught.rhtml:3 -msgid "The page either doesn't exist, or is broken. Things you can try now:" +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " msgstr "" -#: app/views/general/search.rhtml:143 -msgid "The public authority does not have the information requested" +#: app/views/user/banned.rhtml:9 +msgid "You will be unable to make new requests, send follow ups, add annotations or\nsend messages to other users. You may continue to view other requests, and set\nup\nemail alerts." msgstr "" -#: app/views/general/search.rhtml:147 -msgid "The public authority would like part of the request explained" +#: app/views/user/banned.rhtml:15 +msgid "If you would like us to lift this ban, then you may politely\n<a href=\"/help/contact\">contact us</a> giving reasons.\n" msgstr "" -#: app/views/general/search.rhtml:148 -msgid "The public authority would like to / has responded by post" +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to {{site_name}}" msgstr "" -#: app/views/request/_other_describe_state.rhtml:60 -msgid "The request has been <strong>refused</strong>" +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" msgstr "" -#: app/controllers/request_controller.rb:352 -msgid "" -"The request has been updated since you originally loaded this page. Please " -"check for any new incoming messages below, and try again." +#: app/views/user/_signup.rhtml:22 +msgid "Your <strong>name will appear publicly</strong> \n (<a href=\"%s\">why?</a>)\n on this website and in search engines. If you\n are thinking of using a pseudonym, please \n <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 -msgid "The request is <strong>waiting for clarification</strong>." +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" msgstr "" -#: app/views/request/show.rhtml:97 -msgid "The request was <strong>partially successful</strong>." +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" msgstr "" -#: app/views/request/show.rhtml:93 -msgid "The request was <strong>refused</strong> by" +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "We've sent an email to your new email address. You'll need to click the link in\nit before your email address will be changed." msgstr "" -#: app/views/request/show.rhtml:95 -msgid "The request was <strong>successful</strong>." +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at {{site_name}}" msgstr "" -#: app/views/general/search.rhtml:144 -msgid "The request was refused by the public authority" +#: app/views/user/set_profile_about_me.rhtml:3 app/views/user/signchangeemail.rhtml:3 +msgid "internal error" msgstr "" -#: app/views/request/hidden.rhtml:9 -msgid "" -"The request you have tried to view has been removed. There are\n" -"various reasons why we might have done this, sorry we can't be more specific " -"here. Please <a\n" -" href=\"%s\">contact us</a> if you have any questions." +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" msgstr "" -#: app/views/general/search.rhtml:152 -msgid "The requester has abandoned this request for some reason" +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " msgstr "" -#: app/views/request/_followup.rhtml:32 -msgid "" -"The response to your request has been <strong>delayed</strong>. You can say " -"that, \n" -" by law, the authority should normally have responded\n" -" <strong>promptly</strong> and" +#: app/views/user/set_profile_about_me.rhtml:14 +msgid " This will appear on your {{site_name}} profile, to make it\n easier for others to get involved with what you're doing." msgstr "" -#: app/views/request/_followup.rhtml:44 -msgid "" -"The response to your request is <strong>long overdue</strong>. You can say " -"that, by \n" -" law, under all circumstances, the authority should have " -"responded\n" -" by now" +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" msgstr "" -#: app/views/public_body/show.rhtml:100 -msgid "" -"The search index is currently offline, so we can't show the Freedom of " -"Information requests that have been made to this authority." +#: app/views/user/set_profile_about_me.rhtml:26 +msgid " Include relevant links, such as to a campaign page, your blog or a\n twitter account. They will be made clickable. \n e.g." msgstr "" -#: app/views/user/show.rhtml:141 -msgid "" -"The search index is currently offline, so we can't show the Freedom of " -"Information requests this person has made." +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" msgstr "" -#: app/controllers/track_controller.rb:144 -msgid "Then you can cancel the alert." +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" msgstr "" -#: app/controllers/track_controller.rb:174 -msgid "Then you can cancel the alerts." +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "Your photo will be shown in public <strong>on the Internet</strong>, \n wherever you do something on {{site_name}}." msgstr "" -#: app/controllers/user_controller.rb:249 -msgid "Then you can change your email address used on {{site_name}}" +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "Please don't upload offensive pictures. We will take down images\n that we consider inappropriate." msgstr "" -#: app/controllers/user_controller.rb:203 -msgid "Then you can change your password on {{site_name}}" +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" msgstr "" -#: app/controllers/request_controller.rb:338 -msgid "Then you can classify the FOI response you have got from " +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" msgstr "" -#: app/controllers/request_game_controller.rb:41 -msgid "Then you can play the request categorisation game." +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" msgstr "" -#: app/controllers/user_controller.rb:330 -msgid "Then you can send a message to " +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" msgstr "" -#: app/controllers/user_controller.rb:514 -msgid "Then you can sign in to {{site_name}}" +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" msgstr "" -#: app/controllers/request_controller.rb:61 -msgid "Then you can update the status of your request to " +#: app/views/user/signchangeemail.rhtml:30 +msgid "<strong>Note:</strong>\n We will send an email to your new email address. Follow the\n instructions in it to confirm changing your email." msgstr "" -#: app/controllers/request_controller.rb:702 -msgid "Then you can upload an FOI response. " +#: app/views/user/signchangeemail.rhtml:37 +msgid "Change email on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:545 -msgid "Then you can write follow up message to " +#: app/views/track/_tracking_links.rhtml:9 +msgid "This is your own request, so you will be automatically emailed when new responses arrive." msgstr "" -#: app/controllers/request_controller.rb:546 -msgid "Then you can write your reply to " +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "You just tried to sign up to {{site_name}}, when you\nalready have an account. Your name and password have been\nleft as they previously were.\n\nPlease click on the link below." msgstr "" -#: app/models/track_thing.rb:197 -msgid "" -"Then you will be emailed whenever '{{user_name}}' requests something or gets " -"a response." +#: app/views/user_mailer/already_registered.rhtml:11 app/views/user_mailer/confirm_login.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:10 app/views/user_mailer/changeemail_confirm.rhtml:13 +#: app/views/request_mailer/stopped_responses.rhtml:16 app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/comment_on_alert.rhtml:6 app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 app/views/track_mailer/event_digest.rhtml:66 +msgid "the {{site_name}} team" msgstr "" -#: app/models/track_thing.rb:213 -msgid "" -"Then you will be emailed whenever a new request or response matches " -"'{{query}}'." +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." msgstr "" -#: app/models/track_thing.rb:162 -msgid "Then you will be emailed whenever an FOI request succeeds." +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "We will not reveal your email address to anybody unless you\nor the law tell us to." msgstr "" -#: app/models/track_thing.rb:146 -msgid "Then you will be emailed whenever anyone makes a new FOI request." +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "Someone, perhaps you, just tried to change their email address on\n{{site_name}} from {{old_email}} to {{new_email}}." msgstr "" -#: app/models/track_thing.rb:181 -msgid "" -"Then you will be emailed whenever someone requests something or gets a " -"response from '{{public_body_name}}'." +#: app/views/user_mailer/changeemail_already_used.rhtml:5 +msgid "This was not possible because there is already an account using \nthe email address {{email}}." msgstr "" -#: app/controllers/request_controller.rb:299 -msgid "Then your FOI request to {{public_body_name}} will be sent." +#: app/views/user_mailer/changeemail_already_used.rhtml:8 +msgid "The accounts have been left as they previously were." msgstr "" -#: app/controllers/comment_controller.rb:56 -msgid "Then your annotation to {{info_request_title}} will be posted." +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "Please click on the link below to confirm that you want to \nchange the email address that you use for {{site_name}}\nfrom {{old_email}} to {{new_email}}" msgstr "" -#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 -msgid "" -"There are {{count}} new annotations on your {{info_request}} request. Follow " -"this link to see what they wrote." +#: app/views/user_mailer/changeemail_confirm.rhtml:10 +msgid "We will not reveal your email addresses to anybody unless you\nor the law tell us to." msgstr "" -#: app/views/user/show.rhtml:4 -msgid "" -"There is <strong>more than one person</strong> who uses this site and has " -"this name. \n" -" One of them is shown below, you may mean a different one:" +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:113 -msgid "" -"There was a <strong>delivery error</strong> or similar, which needs fixing " -"by the {{site_name}} team." +#: app/views/request_game/play.rhtml:31 +msgid "Some people who've made requests haven't let us know whether they were\nsuccessful or not. We need <strong>your</strong> help –\nchoose one of these requests, read it, and let everyone know whether or not the\ninformation has been provided. Everyone'll be exceedingly grateful." msgstr "" -#: app/controllers/public_body_controller.rb:77 -msgid "There was an error with the words you entered, please try again." +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" msgstr "" -#: app/views/request/_describe_state.rhtml:38 -msgid "They are going to reply <strong>by post</strong>" +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:52 -msgid "" -"They do <strong>not have</strong> the information <small>(maybe they say who " -"does)</small>" +#: app/views/request_game/play.rhtml:42 +msgid "Thanks for helping - your work will make it easier for everyone to find successful\nresponses, and maybe even let us make league tables..." msgstr "" -#: app/views/user/show.rhtml:83 -msgid "They have been given the following explanation:" +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "The email that you, on behalf of {{public_body}}, sent to\n{{user}} to reply to an {{law_used_short}}\nrequest has not been delivered." msgstr "" -#: app/views/request_mailer/overdue_alert.rhtml:3 -msgid "" -"They have not replied to your {{law_used_short}} request {{title}} promptly, " -"as normally required by law" +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "This is because {{title}} is an old request that has been\nmarked to no longer receive responses." msgstr "" -#: app/views/request_mailer/very_overdue_alert.rhtml:3 -msgid "" -"They have not replied to your {{law_used_short}} request {{title}}, \n" -"as required by law" +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "If this is incorrect, or you would like to send a late response to the request\nor an email on another subject to {{user}}, then please\nemail {{contact_email}} for help." msgstr "" -#: app/views/request/_after_actions.rhtml:3 -msgid "Things to do with this request" +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." msgstr "" -#: app/views/public_body/show.rhtml:59 -msgid "This authority no longer exists, so you cannot make a request to it." +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." msgstr "" -#: app/views/request/_hidden_correspondence.rhtml:23 -msgid "" -"This comment has been hidden. See annotations to\n" -" find out why. If you are the requester, then you may <a href=\"%" -"s\">sign in</a> to view the response." +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." msgstr "" -#: app/views/request/new.rhtml:65 -msgid "" -"This covers a very wide spectrum of information about the state of\n" -" the <strong>natural and built environment</strong>, such as:" +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "You will only get an answer to your request if you follow up\nwith the clarification." msgstr "" -#: app/views/request/_view_html_prefix.rhtml:9 -msgid "" -"This is an HTML version of an attachment to the Freedom of Information " -"request" +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "{{user_name}} has annotated your {{law_used_short}} \nrequest. Follow this link to see what they wrote." msgstr "" -#: app/views/request_mailer/stopped_responses.rhtml:5 -msgid "" -"This is because {{title}} is an old request that has been\n" -"marked to no longer receive responses." +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "To help us keep the site tidy, someone else has updated the status of the \n{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" -#: app/views/track/_tracking_links.rhtml:9 -msgid "" -"This is your own request, so you will be automatically emailed when new " -"responses arrive." +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" msgstr "" -#: app/views/request/_hidden_correspondence.rhtml:17 -msgid "" -"This outgoing message has been hidden. See annotations to\n" -"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%" -"s\">sign in</a> to view the response." +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." msgstr "" -#: app/views/user/show.rhtml:122 -msgid "This person has" +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "They have not replied to your {{law_used_short}} request {{title}}, \nas required by law" msgstr "" -#: app/views/user/show.rhtml:152 -msgid "This person's" +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" msgstr "" -#: app/views/request/_describe_state.rhtml:84 -msgid "This request <strong>requires administrator attention</strong>" +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\nreview, asking them to find out why response to the request has been so slow." msgstr "" -#: app/views/request/show.rhtml:55 -msgid "This request has an <strong>unknown status</strong>." +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" msgstr "" -#: app/views/request/show.rhtml:117 -msgid "" -"This request has been <strong>withdrawn</strong> by the person who made " -"it. \n" -" \t There may be an explanation in the correspondence below." +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "response as needing administrator attention. Take a look, and reply to this\nemail to let them know what you are going to do about it." msgstr "" -#: app/models/info_request.rb:395 -msgid "" -"This request has been set by an administrator to \"allow new responses from " -"nobody\"" +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" msgstr "" -#: app/views/request/show.rhtml:115 -msgid "" -"This request has had an unusual response, and <strong>requires attention</" -"strong> from the {{site_name}} team." +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." msgstr "" -#: app/views/request/show.rhtml:5 -msgid "" -"This request has prominence 'hidden'. You can only see it because you are " -"logged\n" -" in as a super user." +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law" msgstr "" -#: app/views/request/show.rhtml:11 -msgid "" -"This request is hidden, so that only you the requester can see it. Please\n" -" <a href=\"%s\">contact us</a> if you are not sure why." +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" msgstr "" -#: app/views/request/_hidden_correspondence.rhtml:10 -msgid "" -"This response has been hidden. See annotations to find out why.\n" -" If you are the requester, then you may <a href=\"%s\">sign in</" -"a> to view the response." +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request." msgstr "" -#: app/views/request/new.rhtml:49 -msgid "" -"This site is <strong>public</strong>. Everything you type and any response " -"will be published." +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." msgstr "" -#: app/views/request/details.rhtml:6 -msgid "" -"This table shows the technical details of the internal events that happened\n" -"to this request on {{site_name}}. This could be used to generate information " -"about\n" -"the speed with which authorities respond to requests, the number of " -"requests\n" -"which require a postal response and much more." +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" -#: app/views/user/show.rhtml:79 -msgid "This user has been banned from {{site_name}} " +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:5 -msgid "" -"This was not possible because there is already an account using \n" -"the email address {{email}}." +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" msgstr "" -#: app/models/track_thing.rb:145 -msgid "To be emailed about any new requests" +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." msgstr "" -#: app/models/track_thing.rb:161 -msgid "To be emailed about any successful requests" +#: app/views/request_mailer/new_response.rhtml:9 +msgid "When you get there, please update the status to say if the response \ncontains any useful information." msgstr "" -#: app/models/track_thing.rb:196 -msgid "To be emailed about requests by '{{user_name}}'" +#: app/views/request_mailer/new_response.rhtml:12 +msgid "Although all responses are automatically published, we depend on\nyou, the original requester, to evaluate them." msgstr "" -#: app/models/track_thing.rb:180 -msgid "" -"To be emailed about requests made using {{site_name}} to the public " -"authority '{{public_body_name}}'" +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote." msgstr "" -#: app/controllers/track_controller.rb:173 -msgid "To cancel these alerts" +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" msgstr "" -#: app/controllers/track_controller.rb:143 -msgid "To cancel this alert" +#: app/views/layouts/default.rhtml:67 +msgid "Make and explore Freedom of Information requests" msgstr "" -#: app/views/user/no_cookies.rhtml:5 -msgid "" -"To carry on, you need to sign in or make an account. Unfortunately, there\n" -"was a technical problem trying to do this." +#: app/views/layouts/default.rhtml:87 +msgid "Make request" msgstr "" -#: app/controllers/user_controller.rb:248 -msgid "To change your email address used on {{site_name}}" +#: app/views/layouts/default.rhtml:88 +msgid "View requests" msgstr "" -#: app/controllers/request_controller.rb:337 -msgid "To classify the response to this FOI request" +#: app/views/layouts/default.rhtml:89 +msgid "View authorities" msgstr "" -#: app/views/request/show_response.rhtml:39 -msgid "To do that please send a private email to " +#: app/views/layouts/default.rhtml:91 +msgid "My requests" msgstr "" -#: app/views/request_mailer/not_clarified_alert.rhtml:2 -msgid "To do this, first click on the link below." +#: app/views/layouts/default.rhtml:93 +msgid "Read blog" msgstr "" -#: app/models/track_thing.rb:212 -msgid "To follow requests and responses matching '{{query}}'" +#: app/views/layouts/default.rhtml:94 +msgid "Help" msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:1 -msgid "" -"To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} that you made to {{public_body}}, to " -"\"{{display_status}}\" If you disagree with their categorisation, please " -"update the status again yourself to what you believe to be more accurate." +#: app/views/layouts/default.rhtml:99 +msgid "Hello, {{username}}!" msgstr "" -#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 -msgid "To let us know, follow this link and then select the appropriate box." +#: app/views/layouts/default.rhtml:100 +msgid "Sign out" msgstr "" -#: app/controllers/request_game_controller.rb:40 -msgid "To play the request categorisation game" +#: app/views/layouts/default.rhtml:102 +msgid "Hello!" msgstr "" -#: app/controllers/comment_controller.rb:55 -msgid "To post your annotation" +#: app/views/layouts/default.rhtml:103 +msgid "Sign in or sign up" msgstr "" -#: app/controllers/request_controller.rb:543 -msgid "To reply to " +#: app/views/layouts/default.rhtml:127 +msgid "Contact {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:542 -msgid "To send a follow up message to " +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" msgstr "" -#: app/controllers/user_controller.rb:329 -msgid "To send a message to " +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" msgstr "" -#: app/controllers/request_controller.rb:298 -msgid "To send your FOI request" +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." msgstr "" -#: app/controllers/request_controller.rb:60 -msgid "To update the status of this FOI request" +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/request_controller.rb:701 -msgid "" -"To upload a response, you must be logged in using an email address from " +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/view_email_captcha.rhtml:5 -msgid "" -"To view the email address that we use to send FOI requests to " -"{{public_body_name}}, please enter these words." +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" msgstr "" -#: app/views/request_mailer/new_response.rhtml:5 -msgid "To view the response, click on the link below." +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" msgstr "" -#: app/views/request/_request_listing_short_via_event.rhtml:9 -msgid "To {{public_body_link_absolute}}" +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" msgstr "" -#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 -#: app/views/request/preview.rhtml:17 -msgid "To:" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." msgstr "" -#: app/models/track_thing.rb:174 -msgid "Track requests to {{public_body_name}} by email" +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" msgstr "" -#: app/models/track_thing.rb:206 -msgid "Track things matching '{{query}}' by email" +#: app/views/general/frontpage.rhtml:16 +msgid "e.g." msgstr "" -#: app/views/public_body/show.rhtml:3 -msgid "Track this authority" +#: app/views/general/frontpage.rhtml:23 +msgid "OR, <strong>search</strong> for information others have requested using {{site_name}}" msgstr "" -#: app/views/user/show.rhtml:29 -msgid "Track this person" +#: app/views/general/frontpage.rhtml:34 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "" +msgstr[1] "" + +#: app/views/general/frontpage.rhtml:39 +msgid "More authorities..." msgstr "" -#: app/models/track_thing.rb:190 -msgid "Track this person by email" +#: app/views/general/frontpage.rhtml:49 +msgid "{{length_of_time}} ago" msgstr "" -#: app/views/request/_sidebar.rhtml:2 -msgid "Track this request" +#: app/views/general/frontpage.rhtml:53 +msgid "More successful requests..." msgstr "" -#: app/models/track_thing.rb:123 -msgid "Track this request by email" +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" msgstr "" -#: locale/model_attributes.rb:33 -msgid "TrackThing|Track medium" +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" msgstr "" -#: locale/model_attributes.rb:32 -msgid "TrackThing|Track query" +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." msgstr "" -#: locale/model_attributes.rb:34 -msgid "TrackThing|Track type" +#: app/views/general/search.rhtml:17 +msgid "Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add it</a>." msgstr "" -#: app/views/general/search.rhtml:133 -msgid "" -"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " -"things that happened in the first two weeks of January." +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" msgstr "" -#: app/models/public_body.rb:37 -msgid "URL name can't be blank" +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" msgstr "" -#: app/models/user_mailer.rb:45 -msgid "Unable to change email address on {{site_name}}" +#: app/views/general/search.rhtml:40 +msgid "Newest results first" msgstr "" -#: app/views/request/followup_bad.rhtml:4 -msgid "Unable to send a reply to {{username}}" +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" msgstr "" -#: app/views/request/followup_bad.rhtml:2 -msgid "Unable to send follow up message to {{username}}" +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" msgstr "" -#: app/views/request/list.rhtml:29 -msgid "Unexpected search result type" +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" msgstr "" -#: app/views/request/similar.rhtml:18 -msgid "Unexpected search result type " +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." msgstr "" -#: app/views/user/wrong_user_unknown_email.rhtml:3 -msgid "" -"Unfortunately we don't know the FOI\n" -"email address for that authority, so we can't validate this.\n" -"Please <a href=\"%s\">contact us</a> to sort it out." +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" msgstr "" -#: app/views/request/new_bad_contact.rhtml:5 -msgid "" -"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" -"address for" +#: app/views/general/search.rhtml:73 +msgid "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for {{user_search_query}}" msgstr "" -#: app/views/general/exception_caught.rhtml:17 -msgid "Unknown" +#: app/views/general/search.rhtml:123 +msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" -#: app/models/info_request_event.rb:317 -msgid "Unusual response" +#: app/views/general/search.rhtml:124 +msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>" msgstr "" -#: app/models/info_request.rb:807 -msgid "Unusual response." +#: app/views/general/search.rhtml:125 +msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Liverpool City Council\"</code></strong>" msgstr "" -#: app/views/request/_after_actions.rhtml:13 -#: app/views/request/_after_actions.rhtml:33 -msgid "Update the status of this request" +#: app/views/general/search.rhtml:126 +msgid "<strong><code>status:</code></strong> to select based on the status or historical status of the request, see the <a href=\"{{statuses_url}}\">table of statuses</a> below." msgstr "" -#: app/controllers/request_controller.rb:62 -msgid "Update the status of your request to " +#: app/views/general/search.rhtml:127 +msgid "<strong><code>variety:</code></strong> to select type of thing to search for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." msgstr "" -#: app/views/general/search.rhtml:124 -msgid "" -"Use OR (in capital letters) where you don't mind which word, e.g. " -"<strong><code>commons OR lords</code></strong>" +#: app/views/general/search.rhtml:128 +msgid "<strong><code>requested_from:home_office</code></strong> to search requests from the Home Office, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:125 -msgid "" -"Use quotes when you want to find an exact phrase, e.g. <strong><code>" -"\"Liverpool City Council\"</code></strong>" +#: app/views/general/search.rhtml:129 +msgid "<strong><code>requested_by:julian_todd</code></strong> to search requests made by Julian Todd, typing the name as in the URL." msgstr "" -#: locale/model_attributes.rb:67 -msgid "UserInfoRequestSentAlert|Alert type" +#: app/views/general/search.rhtml:130 +msgid "<strong><code>commented_by:tony_bowden</code></strong> to search annotations made by Tony Bowden, typing the name as in the URL." msgstr "" -#: locale/model_attributes.rb:78 -msgid "User|About me" +#: app/views/general/search.rhtml:131 +msgid "<strong><code>request:</code></strong> to restrict to a specific request, typing the title as in the URL." msgstr "" -#: locale/model_attributes.rb:76 -msgid "User|Admin level" +#: app/views/general/search.rhtml:132 +msgid "<strong><code>filetype:pdf</code></strong> to find all responses with PDF attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" -#: locale/model_attributes.rb:77 -msgid "User|Ban text" +#: app/views/general/search.rhtml:133 +msgid "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show things that happened in the first two weeks of January." msgstr "" -#: locale/model_attributes.rb:69 -msgid "User|Email" +#: app/views/general/search.rhtml:134 +msgid "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" -#: locale/model_attributes.rb:73 -msgid "User|Email confirmed" +#: app/views/general/search.rhtml:137 +msgid "Read about <a href=\"{{advanced_search_url}}\">advanced search operators</a>, such as proximity and wildcards." msgstr "" -#: locale/model_attributes.rb:71 -msgid "User|Hashed password" +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" msgstr "" -#: locale/model_attributes.rb:75 -msgid "User|Last daily track email" +#: app/views/general/search.rhtml:142 +msgid "Waiting for the public authority to reply" msgstr "" -#: locale/model_attributes.rb:70 -msgid "User|Name" +#: app/views/general/search.rhtml:143 +msgid "The public authority does not have the information requested" msgstr "" -#: locale/model_attributes.rb:72 -msgid "User|Salt" +#: app/views/general/search.rhtml:144 +msgid "The request was refused by the public authority" msgstr "" -#: locale/model_attributes.rb:74 -msgid "User|Url name" +#: app/views/general/search.rhtml:145 +msgid "Some of the information requested has been received" msgstr "" -#: app/views/public_body/show.rhtml:21 -msgid "View FOI email address" +#: app/views/general/search.rhtml:146 +msgid "All of the information requested has been received" msgstr "" -#: app/views/public_body/view_email_captcha.rhtml:1 -msgid "View FOI email address for '{{public_body_name}}'" +#: app/views/general/search.rhtml:147 +msgid "The public authority would like part of the request explained" msgstr "" -#: app/views/public_body/view_email_captcha.rhtml:3 -msgid "View FOI email address for {{public_body_name}}" +#: app/views/general/search.rhtml:148 +msgid "The public authority would like to / has responded by post" msgstr "" -#: app/views/contact_mailer/user_message.rhtml:10 -msgid "View Freedom of Information requests made by {{user_name}}:" +#: app/views/general/search.rhtml:149 +msgid "Waiting for the public authority to complete an internal review of their handling of the request" msgstr "" -#: app/views/layouts/default.rhtml:89 -msgid "View authorities" +#: app/views/general/search.rhtml:150 +msgid "Received an error message, such as delivery failure." msgstr "" -#: app/views/public_body/view_email_captcha.rhtml:12 -msgid "View email" +#: app/views/general/search.rhtml:151 +msgid "A strange reponse, required attention by the {{site_name}} team" msgstr "" -#: app/views/layouts/default.rhtml:88 -msgid "View requests" +#: app/views/general/search.rhtml:152 +msgid "The requester has abandoned this request for some reason" msgstr "" -#: app/models/info_request.rb:799 -msgid "Waiting clarification." +#: app/views/general/search.rhtml:155 +msgid "Table of varieties" msgstr "" -#: app/views/request/show.rhtml:111 -msgid "" -"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " -"their handling of this request." +#: app/views/general/search.rhtml:158 +msgid "Original request sent" msgstr "" -#: app/views/general/search.rhtml:149 -msgid "" -"Waiting for the public authority to complete an internal review of their " -"handling of the request" +#: app/views/general/search.rhtml:159 +msgid "Follow up message sent by requester" msgstr "" -#: app/views/general/search.rhtml:142 -msgid "Waiting for the public authority to reply" +#: app/views/general/search.rhtml:160 +msgid "Response from a public authority" msgstr "" -#: app/views/public_body/view_email.rhtml:17 -msgid "We do not have a working request email address for this authority." +#: app/views/general/search.rhtml:161 +msgid "Annotation added to request" msgstr "" -#: app/views/request/followup_bad.rhtml:24 -msgid "" -"We do not have a working {{law_used_full}} address for {{public_body_name}}." +#: app/views/general/search.rhtml:162 +msgid "A public authority" msgstr "" -#: app/views/request/_describe_state.rhtml:107 -msgid "" -"We don't know whether the most recent response to this request contains\n" -" information or not\n" -" –\n" -"\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let " -"everyone know." +#: app/views/general/search.rhtml:163 +msgid "A {{site_name}} user" msgstr "" -#: app/views/user_mailer/confirm_login.rhtml:8 -msgid "" -"We will not reveal your email address to anybody unless you\n" -"or the law tell us to." +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" msgstr "" -#: app/views/user_mailer/changeemail_confirm.rhtml:10 -msgid "" -"We will not reveal your email addresses to anybody unless you\n" -"or the law tell us to." +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." msgstr "" -#: app/views/request/show.rhtml:61 -msgid "We're waiting for" +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" msgstr "" -#: app/views/request/show.rhtml:57 -msgid "We're waiting for someone to read" +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" msgstr "" -#: app/views/user/signchangeemail_confirm.rhtml:6 -msgid "" -"We've sent an email to your new email address. You'll need to click the link " -"in\n" -"it before your email address will be changed." +#: app/views/public_body/list.rhtml:42 +msgid "in total" msgstr "" -#: app/views/user/confirm.rhtml:6 -msgid "" -"We've sent you an email, and you'll need to click the link in it before you " -"can\n" -"continue." +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" msgstr "" -#: app/views/user/signchangepassword_confirm.rhtml:6 -msgid "" -"We've sent you an email, click the link in it, then you can change your " -"password." +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" msgstr "" -#: app/views/request/_followup.rhtml:58 -msgid "What are you doing?" +#: app/views/public_body/view_email.rhtml:7 +msgid "{{site_name}} sends new requests to <strong>{{request_email}}</strong> for this authority." msgstr "" -#: app/views/request/_describe_state.rhtml:4 -msgid "What best describes the status of this request now?" +#: app/views/public_body/view_email.rhtml:10 +msgid "Freedom of Information law no longer applies to this authority.Follow up messages to existing requests are sent to " msgstr "" -#: app/views/request_mailer/new_response.rhtml:9 -msgid "" -"When you get there, please update the status to say if the response \n" -"contains any useful information." +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " msgstr "" -#: app/views/request/show_response.rhtml:44 -msgid "" -"When you receive the paper response, please help\n" -" others find out what it says:" +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." msgstr "" -#: app/views/request/new_please_describe.rhtml:16 -msgid "" -"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " -"this page</a> and file your new request." +#: app/views/public_body/view_email.rhtml:28 +msgid "If the address is wrong, or you know a better address, please <a href=\"%s\">contact us</a>." msgstr "" -#: app/views/request/show_response.rhtml:13 -msgid "Which of these is happening?" +#: app/views/public_body/view_email.rhtml:30 +msgid " If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n You may be able to find the address on their website, or by phoning them up and asking." msgstr "" -#: app/models/info_request_event.rb:313 -msgid "Withdrawn by requester" +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" msgstr "" -#: app/models/info_request.rb:809 -msgid "Withdrawn by the requester." +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" msgstr "" -#: app/controllers/request_controller.rb:549 -msgid "Write a reply to " +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" msgstr "" -#: app/controllers/request_controller.rb:548 -msgid "Write your FOI follow up message to " +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" msgstr "" -#: app/views/request/new.rhtml:46 -msgid "Write your request in <strong>simple, precise language</strong>." +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" msgstr "" -#: app/models/info_request_event.rb:301 -msgid "Wrong Response" +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" msgstr "" -#: app/views/comment/_single_comment.rhtml:10 -msgid "You" +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" msgstr "" -#: app/controllers/track_controller.rb:98 -msgid "You are already being emailed updates about " +#: app/views/public_body/show.rhtml:31 +msgid "admin" msgstr "" -#: app/models/track_thing.rb:175 -msgid "You are already tracking requests to {{public_body_name}} by email" +#: app/views/public_body/show.rhtml:40 +msgid "You can only request information about the environment from this authority." msgstr "" -#: app/models/track_thing.rb:207 -msgid "You are already tracking things matching '{{query}}' by email" +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" msgstr "" -#: app/models/track_thing.rb:191 -msgid "You are already tracking this person by email" +#: app/views/public_body/show.rhtml:50 +msgid "<a href=\"{{url}}\">Make a new Freedom of Information request</a> to {{public_body_name}}" msgstr "" -#: app/models/track_thing.rb:124 -msgid "You are already tracking this request by email" +#: app/views/public_body/show.rhtml:56 +msgid "Freedom of Information law does not apply to this authority, so you cannot make\n a request to it." msgstr "" -#: app/models/track_thing.rb:156 -msgid "You are being emailed about any new successful responses" +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" -#: app/models/track_thing.rb:140 -msgid "You are being emailed when there are new requests" +#: app/views/public_body/show.rhtml:61 +msgid "For an unknown reason, it is not possible to make a request to this authority." msgstr "" -#: app/views/request/show.rhtml:88 -msgid "You can <strong>complain</strong> by" +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" msgstr "" -#: app/views/request/details.rhtml:58 -msgid "" -"You can get this page in computer-readable format as part of the main JSON\n" -"page for the request. See the <a href=\"{{api_path}}\">API documentation</" -"a>." +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" msgstr "" -#: app/views/public_body/show.rhtml:40 -msgid "" -"You can only request information about the environment from this authority." +#: app/views/public_body/show.rhtml:73 +msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet." msgstr "" -#: app/views/user/show.rhtml:122 -msgid "You have" +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request made using this site" +msgid_plural "%d Freedom of Information requests made using this site" +msgstr[0] "" +msgstr[1] "" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." msgstr "" -#: app/views/request_mailer/new_response.rhtml:1 -msgid "You have a new response to the {{law_used_full}} request " +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" msgstr "" -#: app/controllers/user_controller.rb:492 -msgid "You have now changed the text about you on your profile." +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" msgstr "" -#: app/controllers/user_controller.rb:310 -msgid "You have now changed your email address used on {{site_name}}" +#: app/views/public_body/show.rhtml:100 +msgid "The search index is currently offline, so we can't show the Freedom of Information requests that have been made to this authority." msgstr "" -#: app/views/user_mailer/already_registered.rhtml:3 -msgid "" -"You just tried to sign up to {{site_name}}, when you\n" -"already have an account. Your name and password have been\n" -"left as they previously were.\n" -"\n" -"Please click on the link below." +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" msgstr "" -#: app/views/comment/new.rhtml:59 -msgid "" -"You know what caused the error, and can <strong>suggest a solution</strong>, " -"such as a working email address." +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" msgstr "" -#: app/views/request/upload_response.rhtml:16 -msgid "" -"You may <strong>include attachments</strong>. If you would like to attach a\n" -"file too large for email, use the form below." +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words." msgstr "" -#: app/views/request/followup_bad.rhtml:24 -msgid "" -"You may be able to find\n" -" one on their website, or by phoning them up and asking. If you manage\n" -" to find one, then please <a href=\"%s\">send it to us</a>." +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" msgstr "" -#: app/views/request/new_bad_contact.rhtml:6 -msgid "" -"You may be able to find\n" -"one on their website, or by phoning them up and asking. If you manage\n" -"to find one, then please <a href=\"%s\">send it to us</a>." +#: app/views/public_body/_body_listing_single.rhtml:12 +msgid "Also called {{other_name}}." msgstr "" -#: app/controllers/user_controller.rb:470 -msgid "You need to be logged in to change the text about you on your profile." +#: app/views/public_body/_body_listing_single.rhtml:21 +msgid "%d request made." +msgid_plural "%d requests made." +msgstr[0] "" +msgstr[1] "" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" msgstr "" -#: app/controllers/user_controller.rb:371 -msgid "You need to be logged in to change your profile photo." +#: app/views/public_body/_body_listing_single.rhtml:26 +msgid "Added on {{date}}" msgstr "" -#: app/controllers/user_controller.rb:433 -msgid "You need to be logged in to clear your profile photo." +#: app/views/outgoing_mailer/followup.rhtml:6 app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" msgstr "" -#: app/controllers/request_controller.rb:559 -msgid "You previously submitted that exact follow up message for this request." +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "Is {{email_address}} the wrong address for {{type_of_request}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" -#: app/views/request/upload_response.rhtml:13 -msgid "" -"You should have received a copy of the request by email, and you can " -"respond\n" -"by <strong>simply replying</strong> to that email. For your convenience, " -"here is the address:" +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:" msgstr "" -#: app/views/request/show_response.rhtml:36 -msgid "" -"You want to <strong>give your postal address</strong> to the authority in " -"private." +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "If you find this service useful as an FOI officer, please ask your web manager to link to us from your organisation's FOI page." msgstr "" -#: app/views/user/banned.rhtml:9 -msgid "" -"You will be unable to make new requests, send follow ups, add annotations " -"or\n" -"send messages to other users. You may continue to view other requests, and " -"set\n" -"up\n" -"email alerts." +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" msgstr "" -#: app/controllers/track_controller.rb:154 -msgid "You will no longer be emailed updates about " +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" msgstr "" -#: app/controllers/track_controller.rb:183 -msgid "You will no longer be emailed updates for those alerts" +#: app/views/comment/_comment_form.rhtml:16 +msgid " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation policy</a>)" msgstr "" -#: app/controllers/track_controller.rb:111 -msgid "You will now be emailed updates about " +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/request_mailer/not_clarified_alert.rhtml:6 -msgid "" -"You will only get an answer to your request if you follow up\n" -"with the clarification." +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" msgstr "" -#: app/controllers/user_controller.rb:442 -msgid "You've now cleared your profile photo" +#: app/views/comment/preview.rhtml:10 +msgid "Your name and annotation will appear in <strong>search engines</strong>." msgstr "" -#: app/views/user/show.rhtml:152 -msgid "Your " +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" msgstr "" -#: app/views/user/_signup.rhtml:22 -msgid "" -"Your <strong>name will appear publicly</strong> \n" -" (<a href=\"%s\">why?</a>)\n" -" on this website and in search engines. If you\n" -" are thinking of using a pseudonym, please \n" -" <a href=\"%s\">read this first</a>." +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" msgstr "" -#: app/views/contact_mailer/user_message.rhtml:3 -msgid "" -"Your details have not been given to anyone, unless you choose to reply to " -"this\n" -"message, which will then go directly to the person who wrote the message." +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 -#: app/views/user/signchangepassword_send_confirm.rhtml:13 -msgid "Your e-mail:" +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" msgstr "" -#: app/views/user/show.rhtml:168 -msgid "Your email subscriptions" +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" msgstr "" -#: app/controllers/request_controller.rb:556 -msgid "" -"Your follow up has not been sent because this request has been stopped to " -"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " -"send a follow up message." +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " msgstr "" -#: app/controllers/request_controller.rb:584 -msgid "Your follow up message has been sent on its way." +#: app/views/comment/new.rhtml:17 +msgid "Annotations are so anyone, including you, can help the requester with their request. For example:" msgstr "" -#: app/controllers/request_controller.rb:582 -msgid "Your internal review request has been sent on its way." +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" -#: app/controllers/help_controller.rb:63 -msgid "" -"Your message has been sent. Thank you for getting in touch! We'll get back " -"to you soon." +#: app/views/comment/new.rhtml:27 +msgid " Link to the information requested, if it is <strong>already available</strong> on the Internet. " msgstr "" -#: app/controllers/user_controller.rb:349 -msgid "Your message to {{recipient_user_name}} has been sent!" +#: app/views/comment/new.rhtml:28 +msgid " Suggest <strong>where else</strong> the requester might find the information. " msgstr "" -#: app/views/request/followup_preview.rhtml:15 -msgid "Your message will appear in <strong>search engines</strong>" +#: app/views/comment/new.rhtml:29 +msgid " Offer better ways of <strong>wording the request</strong> to get the information. " msgstr "" -#: app/views/comment/preview.rhtml:10 -msgid "" -"Your name and annotation will appear in <strong>search engines</strong>." +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" -#: app/views/request/preview.rhtml:8 -msgid "" -"Your name, request and any responses will appear in <strong>search engines</" -"strong>\n" -" (<a href=\"%s\">details</a>)." +#: app/views/comment/new.rhtml:34 +msgid " Say how you've <strong>used the information</strong>, with links if possible." msgstr "" -#: app/views/user/_signup.rhtml:18 -msgid "Your name:" +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " msgstr "" -#: app/views/request_mailer/stopped_responses.rhtml:14 -msgid "Your original message is attached." +#: app/views/comment/new.rhtml:38 +msgid "Suggest how the requester can find the <strong>rest of the information</strong>." msgstr "" -#: app/controllers/user_controller.rb:231 -msgid "Your password has been changed." +#: app/views/comment/new.rhtml:41 +msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful." msgstr "" -#: app/views/user/signchangeemail.rhtml:25 -msgid "Your password:" +#: app/views/comment/new.rhtml:45 +msgid "A <strong>summary</strong> of the response if you have received it by post. " msgstr "" -#: app/views/user/set_draft_profile_photo.rhtml:18 -msgid "" -"Your photo will be shown in public <strong>on the Internet</strong>, \n" -" wherever you do something on {{site_name}}." +#: app/views/comment/new.rhtml:49 +msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. " msgstr "" -#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 -msgid "" -"Your request was called {{info_request}}. Letting everyone know whether you " -"got the information will help us keep tabs on" +#: app/views/comment/new.rhtml:52 +msgid "Advise on whether the <strong>refusal is legal</strong>, and how to complain about it if not." msgstr "" -#: app/views/request/new.rhtml:109 -msgid "Your request:" +#: app/views/comment/new.rhtml:56 +msgid "<strong>Advice</strong> on how to get a response that will satisfy the requester. </li>" msgstr "" -#: app/views/request/upload_response.rhtml:8 -msgid "" -"Your response will <strong>appear on the Internet</strong>, <a href=\"%s" -"\">read why</a> and answers to other questions." +#: app/views/comment/new.rhtml:59 +msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address." msgstr "" #: app/views/comment/new.rhtml:62 -msgid "" -"Your thoughts on what the {{site_name}} <strong>administrators</strong> " -"should do about the request." +msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" -#: app/models/track_mailer.rb:25 -msgid "Your {{site_name}} email alert" +#: app/views/comment/new.rhtml:69 +msgid "Annotations will be posted publicly here, and are \n <strong>not</strong> sent to {{public_body_name}}." msgstr "" -#: app/models/outgoing_message.rb:69 -msgid "Yours faithfully," +#: lib/public_body_categories_en.rb:14 +msgid "Central government" msgstr "" -#: app/models/outgoing_message.rb:67 -msgid "Yours sincerely," +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" msgstr "" -#: app/views/request/new.rhtml:97 -msgid "" -"a one line summary of the information you are requesting, \n" -"\t\t\te.g." +#: locale/model_attributes.rb:2 +msgid "public body" msgstr "" -#: app/views/public_body/show.rhtml:31 -msgid "admin" +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" msgstr "" -#: app/views/public_body/show.rhtml:29 -msgid "also called {{public_body_short_name}}" +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" msgstr "" -#: app/views/user/wrong_user.rhtml:5 -msgid "and sign in as " +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" msgstr "" -#: app/views/request/show.rhtml:59 -msgid "" -"and update the status accordingly. Perhaps <strong>you</strong> might like " -"to help out by doing that?" +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" msgstr "" -#: app/views/request/show.rhtml:64 -msgid "and update the status." +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" msgstr "" -#: app/views/request/_describe_state.rhtml:101 -msgid "and we'll suggest <strong>what to do next</strong>" +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" msgstr "" -#: app/views/user/show.rhtml:153 -msgid "annotation" +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" msgstr "" -#: app/views/user/show.rhtml:147 -msgid "annotations" +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" msgstr "" -#: app/models/track_thing.rb:138 -msgid "any <a href=\"/list\">new requests</a>" +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" msgstr "" -#: app/models/track_thing.rb:154 -msgid "any <a href=\"/list/successful\">successful requests</a>" +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" msgstr "" -#: app/views/request_mailer/very_overdue_alert.rhtml:1 -msgid "are long overdue." +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" msgstr "" -#: app/controllers/public_body_controller.rb:111 -msgid "beginning with" +#: locale/model_attributes.rb:14 +msgid "profile photo" msgstr "" -#: app/views/request/show.rhtml:82 -msgid "by" +#: locale/model_attributes.rb:15 +msgid "ProfilePhoto|Data" msgstr "" -#: app/views/request/_followup.rhtml:38 -msgid "by <strong>{{date}}</strong>" +#: locale/model_attributes.rb:16 +msgid "ProfilePhoto|Draft" msgstr "" -#: app/views/request/_request_listing_via_event.rhtml:34 -msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +#: locale/model_attributes.rb:17 +msgid "exim log" msgstr "" -#: app/views/request/_request_listing_short_via_event.rhtml:10 -msgid "by {{user_link_absolute}}" +#: locale/model_attributes.rb:18 +msgid "EximLog|Order" msgstr "" -#: locale/model_attributes.rb:35 -msgid "censor rule" +#: locale/model_attributes.rb:19 +msgid "EximLog|Line" msgstr "" #: locale/model_attributes.rb:20 msgid "comment" msgstr "" -#: app/views/request/show_response.rhtml:41 -msgid "" -"containing your postal address, and asking them to reply to this request.\n" -" Or you could phone them." +#: locale/model_attributes.rb:21 +msgid "Comment|Comment type" msgstr "" -#: app/models/info_request_event.rb:338 -msgid "display_status only works for incoming and outgoing messages right now" +#: locale/model_attributes.rb:22 +msgid "Comment|Body" msgstr "" -#: app/views/request_mailer/overdue_alert.rhtml:3 -msgid "during term time" +#: locale/model_attributes.rb:23 +msgid "Comment|Visible" msgstr "" -#: app/views/general/frontpage.rhtml:18 -msgid "e.g." +#: locale/model_attributes.rb:24 +msgid "Comment|Locale" msgstr "" -#: app/views/user/show.rhtml:96 -msgid "edit text about you" +#: locale/model_attributes.rb:25 +msgid "outgoing message" msgstr "" -#: app/views/user/show.rhtml:171 -msgid "email subscription" +#: locale/model_attributes.rb:26 +msgid "OutgoingMessage|Body" msgstr "" -#: app/views/request_mailer/very_overdue_alert.rhtml:4 -msgid "even during holidays" +#: locale/model_attributes.rb:27 +msgid "OutgoingMessage|Status" msgstr "" -#: locale/model_attributes.rb:17 -msgid "exim log" +#: locale/model_attributes.rb:28 +msgid "OutgoingMessage|Message type" msgstr "" -#: locale/model_attributes.rb:59 -msgid "exim log done" +#: locale/model_attributes.rb:29 +msgid "OutgoingMessage|Last sent at" msgstr "" -#: app/views/request_mailer/requires_admin.rhtml:2 -msgid "has reported an" +#: locale/model_attributes.rb:30 +msgid "OutgoingMessage|What doing" msgstr "" -#: app/views/request_mailer/overdue_alert.rhtml:1 -msgid "have delayed." +#: locale/model_attributes.rb:31 +msgid "track thing" msgstr "" -#: locale/model_attributes.rb:56 -msgid "holiday" +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" msgstr "" -#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 -#: app/views/request/show.rhtml:80 -msgid "in term time" +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" msgstr "" -#: app/views/public_body/list.rhtml:42 -msgid "in total" +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" msgstr "" -#: locale/model_attributes.rb:62 -msgid "incoming message" +#: locale/model_attributes.rb:35 +msgid "censor rule" msgstr "" -#: locale/model_attributes.rb:79 -msgid "info request" +#: locale/model_attributes.rb:36 +msgid "CensorRule|Text" msgstr "" -#: locale/model_attributes.rb:40 -msgid "info request event" +#: locale/model_attributes.rb:37 +msgid "CensorRule|Replacement" msgstr "" -#: app/views/user/set_profile_about_me.rhtml:3 -#: app/views/user/signchangeemail.rhtml:3 -msgid "internal error" +#: locale/model_attributes.rb:38 +msgid "CensorRule|Last edit editor" msgstr "" -#: app/views/request/show.rhtml:100 -msgid "is <strong>waiting for your clarification</strong>." +#: locale/model_attributes.rb:39 +msgid "CensorRule|Last edit comment" msgstr "" -#: app/views/user/show.rhtml:71 -msgid "just to see how it works" +#: locale/model_attributes.rb:40 +msgid "info request event" msgstr "" -#: app/views/comment/_single_comment.rhtml:10 -msgid "left an annotation" +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Event type" msgstr "" -#: app/views/user/_user_listing_single.rhtml:19 -#: app/views/user/_user_listing_single.rhtml:20 -msgid "made." +#: locale/model_attributes.rb:42 +msgid "InfoRequestEvent|Params yaml" msgstr "" -#: app/views/request/show.rhtml:74 -msgid "no later than" +#: locale/model_attributes.rb:43 +msgid "InfoRequestEvent|Described state" msgstr "" -#: app/views/request/followup_bad.rhtml:18 -msgid "" -"no longer exists. If you are trying to make\n" -" From the request page, try replying to a particular message, rather than " -"sending\n" -" a general followup. If you need to make a general followup, and know\n" -" an email which will go to the right place, please <a href=\"%s\">send it " -"to us</a>." +#: locale/model_attributes.rb:44 +msgid "InfoRequestEvent|Calculated state" msgstr "" -#: app/views/request/show.rhtml:72 -msgid "normally" +#: locale/model_attributes.rb:45 +msgid "InfoRequestEvent|Last described at" msgstr "" -#: app/views/user/show.rhtml:114 -msgid "only" +#: locale/model_attributes.rb:46 +msgid "InfoRequestEvent|Prominence" msgstr "" -#: locale/model_attributes.rb:25 -msgid "outgoing message" +#: locale/model_attributes.rb:47 +msgid "post redirect" msgstr "" -#: app/views/user/sign.rhtml:11 -msgid "please sign in as " +#: locale/model_attributes.rb:48 +msgid "PostRedirect|Token" msgstr "" -#: app/views/user/sign.rhtml:28 -msgid "please sign in or make a new account." +#: locale/model_attributes.rb:49 +msgid "PostRedirect|Uri" msgstr "" -#: locale/model_attributes.rb:49 -msgid "post redirect" +#: locale/model_attributes.rb:50 +msgid "PostRedirect|Post params yaml" msgstr "" -#: locale/model_attributes.rb:14 -msgid "profile photo" +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Email token" msgstr "" -#: locale/model_attributes.rb:2 -msgid "public body" +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Reason params yaml" msgstr "" -#: locale/model_attributes.rb:47 -msgid "raw email" +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Circumstance" msgstr "" -#: app/views/request_mailer/not_clarified_alert.rhtml:1 -msgid "request." +#: locale/model_attributes.rb:54 +msgid "holiday" msgstr "" -#: app/views/request/show.rhtml:89 -msgid "requesting an internal review" +#: locale/model_attributes.rb:55 +msgid "Holiday|Day" msgstr "" -#: app/views/request_mailer/requires_admin.rhtml:3 -msgid "" -"response as needing administrator attention. Take a look, and reply to this\n" -"email to let them know what you are going to do about it." +#: locale/model_attributes.rb:56 +msgid "Holiday|Description" msgstr "" -#: app/views/request/show.rhtml:102 -msgid "send a follow up message" +#: locale/model_attributes.rb:57 +msgid "exim log done" msgstr "" -#: app/views/request/_request_listing_via_event.rhtml:31 -msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +#: locale/model_attributes.rb:58 +msgid "EximLogDone|Filename" msgstr "" -#: app/views/request/show.rhtml:106 -msgid "sign in" +#: locale/model_attributes.rb:59 +msgid "EximLogDone|Last stat" msgstr "" -#: app/views/user/wrong_user.rhtml:4 -msgid "sign out" +#: locale/model_attributes.rb:60 +msgid "incoming message" msgstr "" -#: app/views/request_mailer/new_response.rhtml:2 -msgid "that you made to" +#: locale/model_attributes.rb:61 +msgid "IncomingMessage|Cached attachment text clipped" msgstr "" -#: app/views/request_mailer/comment_on_alert.rhtml:6 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response.rhtml:15 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 -#: app/views/request_mailer/overdue_alert.rhtml:9 -#: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/very_overdue_alert.rhtml:11 -#: app/views/track_mailer/event_digest.rhtml:66 -#: app/views/user_mailer/already_registered.rhtml:11 -#: app/views/user_mailer/changeemail_already_used.rhtml:10 -#: app/views/user_mailer/changeemail_confirm.rhtml:13 -#: app/views/user_mailer/confirm_login.rhtml:11 -msgid "the {{site_name}} team" +#: locale/model_attributes.rb:62 +msgid "IncomingMessage|Cached main body text folded" msgstr "" -#: app/views/user/show.rhtml:140 -msgid "this person" +#: locale/model_attributes.rb:63 +msgid "IncomingMessage|Cached main body text unfolded" msgstr "" -#: app/views/user/show.rhtml:113 -msgid "" -"to change password, \n" -" subscriptions and more" +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Sent at" msgstr "" -#: app/views/request/new.rhtml:34 -msgid "to check that the info isn't already published." +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Subject" msgstr "" -#: app/views/request/show.rhtml:62 -msgid "to read" +#: locale/model_attributes.rb:66 +msgid "IncomingMessage|Safe mail from" msgstr "" -#: app/views/request/show.rhtml:106 -msgid "to send a follow up message." +#: locale/model_attributes.rb:67 +msgid "IncomingMessage|Mail from domain" msgstr "" -#: app/views/request/show.rhtml:45 -msgid "to {{public_body}}" +#: locale/model_attributes.rb:68 +msgid "IncomingMessage|Valid to reply to" msgstr "" -#: locale/model_attributes.rb:31 -msgid "track thing" +#: locale/model_attributes.rb:69 +msgid "user info request sent alert" msgstr "" -#: app/views/request/_hidden_correspondence.rhtml:32 -msgid "unexpected prominence on request event" +#: locale/model_attributes.rb:70 +msgid "UserInfoRequestSentAlert|Alert type" msgstr "" -#: app/views/request/_request_listing_via_event.rhtml:38 -msgid "unknown event type indexed " +#: locale/model_attributes.rb:71 +msgid "user" msgstr "" -#: app/views/request/followup_bad.rhtml:29 -msgid "unknown reason " +#: locale/model_attributes.rb:72 +msgid "User|Email" msgstr "" -#: app/models/info_request.rb:814 app/models/info_request_event.rb:333 -msgid "unknown status " +#: locale/model_attributes.rb:73 +msgid "User|Name" msgstr "" -#: app/views/user/show.rhtml:208 -msgid "unsubscribe" +#: locale/model_attributes.rb:74 +msgid "User|Hashed password" msgstr "" -#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 -msgid "unsubscribe all" +#: locale/model_attributes.rb:75 +msgid "User|Salt" msgstr "" -#: app/views/request/show.rhtml:53 -msgid "useful information." +#: locale/model_attributes.rb:76 +msgid "User|Email confirmed" msgstr "" -#: locale/model_attributes.rb:68 -msgid "user" +#: locale/model_attributes.rb:77 +msgid "User|Url name" msgstr "" -#: locale/model_attributes.rb:66 -msgid "user info request sent alert" +#: locale/model_attributes.rb:78 +msgid "User|Last daily track email" msgstr "" -#: app/views/user/show.rhtml:140 -msgid "you" +#: locale/model_attributes.rb:79 +msgid "User|Admin level" msgstr "" -#: app/views/request/new.rhtml:6 -msgid "" -"{{existing_request_user}} already\n" -" created the same request on {{date}}. You can either view the <a href=" -"\"{{existing_request}}\">existing request</a>,\n" -" or edit the details below to make a new but similar request." +#: locale/model_attributes.rb:80 +msgid "User|Ban text" msgstr "" -#: app/views/request/_after_actions.rhtml:20 -msgid "{{info_request_user_name}} only:" +#: locale/model_attributes.rb:81 +msgid "User|About me" msgstr "" -#: app/views/general/frontpage.rhtml:51 -msgid "{{length_of_time}} ago" +#: locale/model_attributes.rb:82 +msgid "info request" msgstr "" -#: app/views/request/_after_actions.rhtml:43 -msgid "{{public_body_name}} only:" +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Title" msgstr "" -#: app/views/public_body/view_email.rhtml:7 -msgid "" -"{{site_name}} sends new requests to <strong>{{request_email}}</strong> for " -"this authority." +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Described state" msgstr "" -#: app/models/user.rb:122 -msgid "{{user_name}} (Banned)" +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Awaiting description" msgstr "" -#: app/views/request_mailer/comment_on_alert.rhtml:1 -msgid "" -"{{user_name}} has annotated your {{law_used_short}} \n" -"request. Follow this link to see what they wrote." +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Prominence" msgstr "" -#: app/views/contact_mailer/user_message.rhtml:2 -msgid "{{user_name}} has used {{site_name}} to send you the message below." +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Url title" msgstr "" -#: app/views/request/show.rhtml:36 -msgid "" -"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this " -"{{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to " -"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" +#: locale/model_attributes.rb:88 +msgid "InfoRequest|Law used" msgstr "" -#: app/views/request/show.rhtml:44 -msgid "{{user}} made this {{law_used_full}} request" +#: locale/model_attributes.rb:89 +msgid "InfoRequest|Allow new responses from" +msgstr "" + +#: locale/model_attributes.rb:90 +msgid "InfoRequest|Handle rejected responses" +msgstr "" + +#: locale/model_attributes.rb:91 +msgid "InfoRequest|Idhash" msgstr "" diff --git a/locale/model_attributes.rb b/locale/model_attributes.rb index c52dcb37c..e68b40168 100644 --- a/locale/model_attributes.rb +++ b/locale/model_attributes.rb @@ -44,8 +44,6 @@ _('InfoRequestEvent|Described state') _('InfoRequestEvent|Calculated state') _('InfoRequestEvent|Last described at') _('InfoRequestEvent|Prominence') -_('raw email') -_('RawEmail|Data binary') _('post redirect') _('PostRedirect|Token') _('PostRedirect|Uri') @@ -63,6 +61,11 @@ _('incoming message') _('IncomingMessage|Cached attachment text clipped') _('IncomingMessage|Cached main body text folded') _('IncomingMessage|Cached main body text unfolded') +_('IncomingMessage|Sent at') +_('IncomingMessage|Subject') +_('IncomingMessage|Safe mail from') +_('IncomingMessage|Mail from domain') +_('IncomingMessage|Valid to reply to') _('user info request sent alert') _('UserInfoRequestSentAlert|Alert type') _('user') @@ -85,4 +88,5 @@ _('InfoRequest|Url title') _('InfoRequest|Law used') _('InfoRequest|Allow new responses from') _('InfoRequest|Handle rejected responses') +_('InfoRequest|Idhash') #DO NOT MODIFY! AUTOMATICALLY GENERATED FILE! diff --git a/locale/sq/app.po_ b/locale/sq/app.po_ new file mode 100644 index 000000000..2bf510317 --- /dev/null +++ b/locale/sq/app.po_ @@ -0,0 +1,4312 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <bresta@gmail.com>, 2011. +# driton <dritoni.h@gmail.com>, 2011. +# <vbrestovci@gmail.com>, 2011. +# Valon <vbrestovci@gmail.com>, 2011. +# vbrestovci <vbrestovci@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: alaveteli\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-08-11 12:30+0200\n" +"PO-Revision-Date: 2011-08-12 06:48+0000\n" +"Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app/models/incoming_message.rb:866 +msgid "" +"\n" +"\n" +"[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:14 +msgid "" +" This will appear on your {{site_name}} profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" +" (pa politikë <strong>llafazane</strong>, lexo <a href=\"%s\">politikat e " +"moderimit</a>)" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" +"<strong>(Durim,</strong> sidomos për fotografi të mëdha, mund të marrë më " +"shum kohë!)" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr "(ti)" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" +"<strong>Shënim:</strong>Do të dërgoj një email. Ndiq udhëzimet në te për të " +"ndryshuar fjalëkalimin tënd." + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr "<strong>Shënim privacie:</strong> Adresa e emailit do t'i jepet" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" +"<strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera " +"(përgjegura)." + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr " Këshillo se si <strong>më së miri të sqarohet</strong> një kërkesë." + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" +" Ide se çfarë <strong>dokumentesh tjera të kërkohen</strong> që mund t'i " +"posedojë institucioni. " + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n" +" You may be able to find the address on their website, or by phoning them up and asking." +msgstr "" +"Nëse e din adresën e emailit për ta përdorur, atëherë të lutem <a " +"href=\"%s\">na e dërgon</a> . Ti mund ta gjen adresën e emailit në ueb " +"sajtin e tyre ose duke ju telefonuar dhe pyetur." + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" +" Përfshij vegzat relevante, si p.sh. te faqja e fushatës, blogu yt apo\n" +" llogaria e twitterit. Ato do të bëhen të klikueshme. \n" +" p.sh." + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already " +"available</strong> on the Internet. " +msgstr "" +"Vegza për informatat e kërkuara, në qoftë se ato <strong> tashmë " +"janë</strong> në dispozicion në internet." + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" +"Propozo mënyra më të mira të <strong>formulim të kërkesës</strong> për të " +"marrë informacion." + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr "Të lutem kyçu ose krijo një llogari të re." + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" +"Trego se si ke <strong>përdorur informacionin,</strong> me ueb vegza nëse " +"është e mundur." + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" +"Sugjero <strong>ku tjetër</strong> kërkuesi mund të gjej informacionin." + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" +"Çfarë jeni duke hulumtuar (hetuar) duke përdor kërkesat për çasje në " +"Informata Zyrtare?" + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" +"Ti tashmë je duke i pranuar me email aktualizimet në lidhje me këtë kërkesë." + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" +"Ti gjithashtu do të pranon email me aktualizimet e reja në lidhje me " +"kërkesën." + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr "bërë nga " + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "" +"nuk ka bërë kërkesa për informata zyrtare duke përdorur këtë ueb faqe." + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr "kur e dërgoni këtë mesazh." + +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request made using this site" +msgid_plural "%d Freedom of Information requests made using this site" +msgstr[0] "" +msgstr[1] "" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/public_body/_body_listing_single.rhtml:21 +msgid "%d request made." +msgid_plural "%d requests made." +msgstr[0] "" +msgstr[1] "" + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "'Statistikat e krimit në nivel komune'" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "'Niveli i ndotjes për lumin Drin'" + +#: app/controllers/user_controller.rb:355 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" +",\n" +"\n" +"\n" +"\n" +"Me nderime,\n" +"\n" +"{{user_name}}" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" +"<a href=\"%s\">Shto një shënim</a> (për të ndihmuar kërkuesit ose të tjerët)" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "<a href=\"%s\">A po mungon ndonjë autoritet publik?</a> ." + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" +"<a href=\"%s\">Are you the owner of any commercial copyright on this " +"page?</a>" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" +"<a href=\"%s\">Shfletoni të gjitha</a> ose <a href=\"%s\">kërkoni nga ne që " +"të shtojmë një</a> ." + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" + +#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 +#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 +msgid "<a href=\"%s\">details</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/views/request/_followup.rhtml:74 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "<a href=\"%s\">Çfarë është ajo?</a>" + +#: app/views/public_body/show.rhtml:50 +msgid "" +"<a href=\"{{url}}\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a " +"href=\"{{helpus_url}}\">more things you can do</a> to help " +"{{site_name}}.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:399 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the text of your request below, then <a href=\"{{find_authority_url}}\">find the other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they do not hold the information, here is \n" +" <a href=\"{{complain_url}}\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>" +msgstr "" + +#: app/controllers/request_controller.rb:393 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of " +"<strong>{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:389 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:428 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a " +"href=\"{{review_url}}\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:431 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:396 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:495 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph too.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:417 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:284 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:417 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation" +" below saying what you did.</p><p>If you found {{site_name}} useful, <a " +"href=\"{{donation_url}}\">make a donation</a> to the charity which runs " +"it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:420 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"{{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to " +"the charity which runs it.</p><p>If you want to try and get the rest of the " +"information, here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:282 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjegje ( <a href=\"%s\">detaje</a> ). </p>" + +#: app/controllers/request_controller.rb:280 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:288 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will" +" <strong>appear publicly on the Internet</strong>.</p>" +msgstr "" +"<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhet " +"direkt me temën e kërkesës tënde, të lutem largo çdo adresë sepse do të jetë" +" <strong> publike në internet</strong>. </p>" + +#: app/controllers/request_controller.rb:311 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" +" <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/controllers/application_controller.rb:279 +msgid "" +"<p>{{site_name}} is currently in maintenance. You can only view existing " +"requests. You cannot make new ones, add followups or annotations, or " +"otherwise change the database.</p> <p>{{read_only}}</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n" +"</p>" +msgstr "" +"<small>Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke " +"\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " +"mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" +"<strong> A mund të kërkoj informatë për veten time?</strong>\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><a href=\"%s\">Jo! (Kliko këtu për detaje)</a>" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations" +" made by Tony Bowden, typing the name as in the URL." +msgstr "" +"<strong><code>komentuar_nga:filan_fisteku</code></strong> për të kërkuar " +"shenimet nga Filan Fisteku, shtypeni emrin si në URL." + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" +"<strong><code>tipi_i_fajjlit:pdf</code></strong> për t'i gjetë të gjitha " +"përgjegjet me PDF të bashkangjitur. Apo provo këto: " +"<code>{{list_of_file_extensions}}</code>" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" +"<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " +"caktuar, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " +"kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_te:zyra_e_kryeministrit</code></strong> për të kërkuar" +" kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në " +"URL." + +#: app/views/general/search.rhtml:126 +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"{{statuses_url}}\">table" +" of statuses</a> below." +msgstr "" + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only want results them all present." +msgstr "" +"<strong><code>etiketa:charity</code></strong> për të gjetur të gjitha institucionet apo kërkesat me etiketën e dhënë. Mund të përfshihen edhe disa etiketa, \n" +" dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" +" prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse do që vetëm ato te përfshihen." + +#: app/views/general/search.rhtml:127 +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." +msgstr "" + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/request/_followup.rhtml:79 +msgid "" +"<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" + +#: app/views/request/details.rhtml:12 +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" +"a good internal knowledge of user behaviour on {{site_name}}. How, \n" +"why and by whom requests are categorised is not straightforward, and there will\n" +"be user error and ambiguity. You will also need to understand FOI law, and the\n" +"way authorities use it. Plus you'll need to be an elite statistician. Please\n" +"<a href=\"{{contact_path}}\">contact us</a> with questions." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "Është kërkuar<strong>sqarim</strong> " + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" +"<strong>Shenim:</strong>\n" +" Do të dërgojmë email në adresën tënde të re. Përcjelli\n" +" udhëzimet për të konfirmuar ndërrimin e emailit." + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" +"<strong>Shenim:</strong> Je duke dërguar email vetëvetes, me gjasë\n" +" për të provuar se si funksionon." + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" +"<strong>Shenim privacie:</strong> Nëse do të kërkosh informatë private për\n" +" veten tënde <a href=\"%s\">kliko këtu</a>." + +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" +" wherever you do something on {{site_name}}." +msgstr "" + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" +"<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjegje do të" +" paraqitet publikisht në këtë ueb faqe " + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "<strong>Disa nga informacionet</strong> janë dërguar" + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "<strong>Detajet teknike:</strong>" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "<strong>Falënderoju</strong> autoritet publik ose " + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." +msgstr "" + +#: app/views/request/show.rhtml:91 +msgid "<strong>did not have</strong> the information requested." +msgstr "<strong>nuk e kanë</strong> informacionin e kërkuar." + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>kërko</strong> në ueb sajtin e autoritetit ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" +"Një <strong>përmbledhje</strong> e përgjegjes nëse ate e keni marrë me " +"postë." + +#: app/views/general/search.rhtml:162 +msgid "A public authority" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "Përgjegja do të dërgohet <strong>me postë</strong>" + +#: app/views/general/search.rhtml:151 +msgid "A strange reponse, required attention by the {{site_name}} team" +msgstr "" + +#: app/views/general/search.rhtml:163 +msgid "A {{site_name}} user" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "Për ty:" + +#: app/models/info_request_event.rb:293 +msgid "Acknowledgement" +msgstr "Konfirmim për pranim " + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "Vepro sipas asaj që ke marrë vesh" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "Shto një shënim për" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" +"Shto shenim në kërkesën tënde me citate të zgjedhura, apo\n" +" me <strong>përmbledhje të përgjegjes</strong>." + +#: app/views/public_body/_body_listing_single.rhtml:26 +msgid "Added on {{date}}" +msgstr "" + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "Niveli i administratorit nuk është i përfshir në listë" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "URL për administrim:" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "Këshilla te avansuara për kërkim" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain" +" about it if not." +msgstr "" + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" + +#: app/models/info_request_event.rb:309 +msgid "All information sent" +msgstr "Të gjitha informatat janë dërguar" + +#: app/views/general/search.rhtml:146 +msgid "All of the information requested has been received" +msgstr "" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "Sipas alfabetit" + +#: app/views/public_body/_body_listing_single.rhtml:12 +msgid "Also called {{other_name}}." +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" +"Edhe pse të gjitha përgjegjet publikohen automatikisht, ne varemi nga ti, si" +" kërkues i tyre, për t'i vlerësuar ato." + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "Një <strong>mesazh gabimi</strong> është marrë" + +#: app/views/general/search.rhtml:161 +msgid "Annotation added to request" +msgstr "" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "Shënimet" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" +"Shënimet shërbejne për të gjithë, duke përfshirë edhe ty, që të mund të " +"ndihmoj kërkuesit me kërkesën e tyre. Për shembull:" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "Çdokush:" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not" +" suitable for general enquiries." +msgstr "" +"Kërko dokumente apo informata <strong>specifike</strong>, kjo faqe nuk është" +" e përshtatshme për pyetje të përgjithshme." + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" +"Në fund të kësaj faqeje, shkruaji atyre për të kërkuar nga ata që t'i scannojnë\n" +" (<a href=\"%s\">më shumë detaje</a>)." + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "Shtojca - attachment (opcionale):" + +#: app/models/info_request.rb:783 +msgid "Awaiting classification." +msgstr "Në pritje të klasifikimit." + +#: app/models/info_request.rb:803 +msgid "Awaiting internal review." +msgstr "Në pritje për rishqyrtim intern." + +#: app/models/info_request.rb:785 +msgid "Awaiting response." +msgstr "Në pritje të përgjegjes." + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" +"Shfleto <a href=\"%s\">kërkesa të tjera</a> për shembuj se si të formulosh " +"kërkesën tënde." + +#: app/views/request/new.rhtml:41 +msgid "" +"Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" + +#: app/views/request/show.rhtml:86 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" +"Sipas ligjit, në të gjitha rrethanat, {{public_body_link}} është duhur të " +"përgjegjet deri tani" + +#: app/views/request/show.rhtml:78 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" +"Sipas ligjit, {{public_body_link}} do të duhej të ishte përgjegjur " +"<strong>menjëherë</strong> dhe" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" +" it</a>." +msgstr "" +"Nuk u gjet? <a href=\"%s\">Shfleto të gjtiha</a> apo <a href=\"%s\">kërko që" +" të shtohet</a>." + +#: app/controllers/track_controller.rb:145 +msgid "Cancel a {{site_name}} alert" +msgstr "Anulo njoftimet për {{site_name}}" + +#: app/controllers/track_controller.rb:175 +msgid "Cancel some {{site_name}} alerts" +msgstr "Anulo disa njoftime për {{site_name}}" + +#: locale/model_attributes.rb:39 +msgid "CensorRule|Last edit comment" +msgstr "CensorRule | Redaktimi i fundit i koment" + +#: locale/model_attributes.rb:38 +msgid "CensorRule|Last edit editor" +msgstr "CensorRule | Redaktimi i fundit të editorit" + +#: locale/model_attributes.rb:37 +msgid "CensorRule|Replacement" +msgstr "CensorRule | Zëvendësimi" + +#: locale/model_attributes.rb:36 +msgid "CensorRule|Text" +msgstr "CensorRule | Teksti" + +#: lib/public_body_categories_en.rb:14 +msgid "Central government" +msgstr "Qeveria" + +#: app/views/user/signchangeemail.rhtml:37 +msgid "Change email on {{site_name}}" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" +msgstr "Ndrysho fotografinë e profilit" + +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at {{site_name}}" +msgstr "" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "Ndrysho email adresën tënde" + +#: app/controllers/user_controller.rb:250 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "Ndrysho fjalëkalimin tënd" + +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/controllers/user_controller.rb:204 +msgid "Change your password {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd {{site_name}}" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "Regjistrimi i organizatës" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." + +#: app/views/request/followup_preview.rhtml:14 +#: app/views/request/preview.rhtml:7 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" +"Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" + +#: app/models/info_request_event.rb:331 +msgid "Clarification" +msgstr "Sqarim" + +#: app/models/info_request_event.rb:295 +msgid "Clarification required" +msgstr "Kërkohet sqarim" + +#: app/controllers/request_controller.rb:339 +msgid "Classify an FOI response from " +msgstr "Klasifiko një përgjegje për kërkesë për informatë zyrtare prej " + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" +"Kliko në vegzën më poshtë për të dërguar një mesazh te {{public_body_name}} " +"duke u thënë atyre që të përgjegjen në kërkesën tënde. Ti mund të dëshirosh " +"të kërkosh rishqyrtim intern, duke u kërkuar atyre për të gjetur se pse " +"përgjegja ndaj kërkesës ka qenë kaq e ngadaltë." + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" +"Kliko në vegzën e mëposhtme për t'i dërguar mesazh {{public_body}} për t'ua " +"përkujtuar që t'i përgjigjen kërkesës tënde." + +#: locale/model_attributes.rb:22 +msgid "Comment|Body" +msgstr "Komenti | Body" + +#: locale/model_attributes.rb:21 +msgid "Comment|Comment type" +msgstr "Koment|Lloji i komentit" + +#: locale/model_attributes.rb:24 +msgid "Comment|Locale" +msgstr "Koment | Lokale" + +#: locale/model_attributes.rb:23 +msgid "Comment|Visible" +msgstr "Koment | i/e dukshëm" + +#: app/models/track_thing.rb:147 +msgid "Confirm you want to be emailed about new requests" +msgstr "" + +#: app/models/track_thing.rb:214 +msgid "" +"Confirm you want to be emailed about new requests or responses matching " +"'{{query}}'" +msgstr "" + +#: app/models/track_thing.rb:198 +msgid "Confirm you want to be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:182 +msgid "" +"Confirm you want to be emailed about requests to '{{public_body_name}}'" +msgstr "" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" +"Konfirmo që doni të merrni email kur një kërkesë për informata zyrtare ka " +"sukses" + +#: app/controllers/request_controller.rb:300 +msgid "Confirm your FOI request to " +msgstr "Konfirmo kërkesën tënde për " + +#: app/controllers/request_controller.rb:703 +#: app/controllers/user_controller.rb:515 +msgid "Confirm your account on {{site_name}}" +msgstr "Konfirmo llogarinë tënde në {{site_name}}" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "Konfirmo shënimin tënd për {{info_request_title}}" + +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on {{site_name}}" +msgstr "" + +#: app/views/layouts/default.rhtml:127 +msgid "Contact {{site_name}}" +msgstr "Kontakto {{site_name}}" + +#: app/models/request_mailer.rb:210 +msgid "Could not identify the request from the email address" +msgstr "" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" +"Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga " +"sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "Preje fotografinë e profilit tënd" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" + +#: app/views/request/show.rhtml:68 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}," +" they must respond promptly and" +msgstr "" +"Momentalisht <strong>duke pritur përgjegje</strong> nga " +"{{public_body_link}}, ata duhet të përgjegjen menjëherë dhe" + +#: app/models/info_request_event.rb:299 +msgid "Deadline Extended" +msgstr "Afati është vazhduar" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "I/e nderuar " + +#: app/models/info_request.rb:787 +msgid "Delayed." +msgstr "Vonuar." + +#: app/models/info_request.rb:805 app/models/info_request_event.rb:315 +msgid "Delivery error" +msgstr "Gabim gjatë dorëzimit" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "Detajet e kërkesës" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "Mos mendove këtë: {{correction}}" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "Shkarko shtojcën (attachment) origjinale" + +#: app/views/request/_followup.rhtml:85 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" +"Redakto dhe shto <strong>më shumë detaje</strong> në mesazhin e mësipërm,\n" +" duke shpjeguar se pse nuk je i kënaqur me përgjegjen e tyre." + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "Redakto versionin e gjuhës:" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr " tekstin për vetën tënde" + +#: app/models/user.rb:135 +msgid "Either the email or password was not recognised, please try again." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri." + +#: app/models/user.rb:137 +msgid "" +"Either the email or password was not recognised, please try again. Or create" +" a new account using the form on the right." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri. " +"Ose krijo një llogari të re duke përdor formën në të djathtë." + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "Email adresa nuk duket si një adresë e vlefshme" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "M'i dërgo me email përgjegjet e reja të suksesshme" + +#: app/models/track_thing.rb:139 +msgid "Email me when there are new requests" +msgstr "" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "Abonimet me email" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing" +" lane</strong>" +msgstr "" +"Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim " +"rruge</strong>" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" +"Shkruaj përgjegjen tënde më poshtë. Ti mund të bashkëangjitësh një fajll " +"(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " +"shumë)." + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "\"Environmental Information Regulations\" kërkesa të bëra" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" +"\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë" +" ueb sajt" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "Historiku i ngjarjeve" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "Detajet e historikut të ngjarjeve" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe, përfshi edhe <strong>emri yt</strong>, \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: locale/model_attributes.rb:60 +msgid "EximLogDone|Filename" +msgstr "EximLogDone|Filename" + +#: locale/model_attributes.rb:61 +msgid "EximLogDone|Last stat" +msgstr "EximLogDone|Statistika e fundit" + +#: locale/model_attributes.rb:19 +msgid "EximLog|Line" +msgstr "EximLog|Linja" + +#: locale/model_attributes.rb:18 +msgid "EximLog|Order" +msgstr "EximLog|Order" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "Kërkesat për Informata Zyrtare" + +#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 +msgid "FOI requests by '{{user_name}}'" +msgstr "" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "Konvertimi i imazhit në PNG dështoi" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need " +"%{width}x%{height}" +msgstr "Kyçu ose krijo llogari " + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "Së pari," + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Së pari, shkruani <strong>emrin e autoritetit publik </strong> <br> prej të " +"cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të " +"përgjegjen</strong> ( <a href=\"%s\">pse?</a> )." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "Kliko këtë vegzë për të parë kërkesën:" + +#: app/models/info_request_event.rb:335 +msgid "Follow up" +msgstr "" + +#: app/views/general/search.rhtml:159 +msgid "Follow up message sent by requester" +msgstr "" + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "Mesazhet vazhduese të kërkesës ekzistuese dërgohen te " + +#: app/views/request/_followup.rhtml:16 +msgid "" +"Follow ups and new responses to this request have been stopped to prevent " +"spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and" +" need to send a follow up." +msgstr "" + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" +"Për një arsye të panjohur, nuk është e mundur për të bërë një kërkesë tek ky" +" autoritet." + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot make\n" +" a request to it." +msgstr "" +"Ligji mbi lirinë e informacionit nuk ka të bëjë me këtë autoritet, kështu që" +" ju nuk mund të bëni kërkesa për informata zyrtare." + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "Ligji për qasje në dokumente publike nuk aplikohet më për" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "Kërkesa për Informatë zyrtare është bërë" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "Kërkesat për Informata Zyrtare bërë nga" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" +"Nga faqja e kërkesës, provo të përgjegjesh në një mesazh të caktuar, më parë se të\n" +" shkruash një përgjegje të përgjithshme. Nëse të duhet të shkruash përgjegje të përgjithshme, dhe e di\n" +" emailin ku duhet ta drejtosh, atëherë të lutem <a href=\"%s\">dërgoje te ne</a>." + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "JEPI DETAJET PËR ANKESËN TËNDE KËTU" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "Shko te <a href=\"%s\">ballina</a> </li>" + +#: app/models/info_request_event.rb:297 +msgid "Handled by post" +msgstr "Do të trajtohet me postë" + +#: app/models/info_request.rb:801 +msgid "Handled by post." +msgstr "Do të trajtohet me postë." + +#: app/views/layouts/default.rhtml:102 +msgid "Hello!" +msgstr "Përshëndetje" + +#: app/views/layouts/default.rhtml:99 +msgid "Hello, {{username}}!" +msgstr "Përshëndetje, {{username}}!" + +#: app/views/layouts/default.rhtml:94 +msgid "Help" +msgstr "Ndihmë" + +#: app/views/request/details.rhtml:50 +msgid "" +"Here <strong>described</strong> means when a user selected a status for the request, and\n" +"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" +"{{site_name}} for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"{{search_path}}\">search tips</a> for description of the states." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" + +#: locale/model_attributes.rb:57 +msgid "Holiday|Day" +msgstr "Festa | Dita" + +#: locale/model_attributes.rb:58 +msgid "Holiday|Description" +msgstr "Festa | Përshkrimi" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "Ueb sajti i autoritetit" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "" + +#: app/views/request/_followup.rhtml:68 +msgid "I am asking for <strong>new information</strong>" +msgstr "Unë jam duke kërkuar <strong>informacion të ri</strong>" + +#: app/views/request/_followup.rhtml:73 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "Po kërkoj <strong>rishqyrtimin intern</strong>" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "Nuk më pëlqejnë këto kërkesa &mdash më jep disa të tjera!" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "Nuk dua të pastroj më tutje!" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "Ddo të doja të <strong>tërheqë këtë kërkesë</strong>" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" +"Akoma po e <strong>pres</strong> informatën time \n" +" <small>(ndoshta ke marrë konfirmim)</small>" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "Akoma po e <strong>pres</strong> rishqyrtimin intern" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "Po pres përgjegje nga <strong>rishqyrtimi intern</strong>" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "Kam marrë <strong>të gjitha informatat</strong>" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "Kam marrë <strong>disa prej informatave</strong>" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "Kam marrë një <strong>mesazh gabimi</strong>" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a " +"href=\"%s\">contact us</a>." +msgstr "" +"Nëse adresa është e gabuar, ose ti e din një adresë më të mirë, të lutem <a " +"href=\"%s\">na kontakto</a> ." + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" +"Nëse kjo është e pasakt, apo do t'i dërgosh përgjegje të vonuar në këtë kërkesë\n" +"apo një email me një temë tjetër te {{user}}, atëherë \n" +"dërgo email në {{contact_email}} për ndihmë." + +#: app/views/request/_followup.rhtml:20 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" +"Nëse je i pakënaqur me përgjegjen nga\n" +" institucioni publik, ke të drejtën të\n" +" ankohesh (<a href=\"%s\">detajet</a>)." + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "Nëse ende po ka probleme, të lutem <a href=\"%s\">na kontakto</a> ." + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" +"Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të " +"parë kërkesën." + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" +"Nëse je duke mendu me përdor pseudonim, të lutem <a href=\"%s\">lexo këtë së" +" pari</a> ." + +#: app/views/request/show.rhtml:105 +msgid "If you are {{user_link}}, please" +msgstr "Nëse ti je {{user_link}}, të lutem" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" +"Nëse ti nuk mund të klikosh mbi të në e-mail, duhet që ta <strong>përzgjedhësh dhe t'a kopjosh </strong>. Pastaj <strong>e bashkangjet (paste) \n" +"</strong>në fushën e adresës të shfletuesit tënd." + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" +"Nëse mund të skanoni ose fotografoni përgjegjen, dhe të <strong>na e dërgoni" +" që ne ta ngarkojme ate.</strong>" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" +"Nëse keni marrë këtë email <strong>më shumë se gjashtë muaj më " +"parë,</strong> atëherë kjo vegzë për kyçje nuk do të funksionojë më. Të " +"lutem provon duke bërë atë që keni vepruar nga fillimi." + +#: app/controllers/request_controller.rb:437 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know" +" it has been withdrawn." +msgstr "" + +#: app/views/user/signchangeemail_confirm.rhtml:11 +#: app/views/user/signchangepassword_confirm.rhtml:10 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" +"Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke \"junk " +"mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, mesazhet tona " +"janë të shenjuara në këtë mënyrë." + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" +"Nëse do që ne ta heqim këtë leçitje, atëherë të lutem\n" +"<a href=\"/help/contact\">na kontakto</a> duke i dhënë arsyet.\n" + +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to {{site_name}}" +msgstr "" + +#: app/views/user/_signin.rhtml:7 +msgid "If you've used {{site_name}} before" +msgstr "" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" +"Nëse shfletuesi yt është vendosur për të pranuar \"cookies\" dhe ju jeni " +"duke parë këtë mesazh, atëherë me sa duket ka gabim në serverin tonë." + +#: locale/model_attributes.rb:63 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "IncomingMessage|Cached attachment text clipped" + +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Cached main body text folded" +msgstr "IncomingMessage|Cached main body text folded" + +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "IncomingMessage|Cached main body text unfolded" + +#: locale/model_attributes.rb:44 +msgid "InfoRequestEvent|Calculated state" +msgstr "InfoRequestEvent|Calculated state" + +#: locale/model_attributes.rb:43 +msgid "InfoRequestEvent|Described state" +msgstr "InfoRequestEvent|Described state" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Event type" +msgstr "InfoRequestEvent|Event type" + +#: locale/model_attributes.rb:45 +msgid "InfoRequestEvent|Last described at" +msgstr "InfoRequestEvent|Last described at" + +#: locale/model_attributes.rb:42 +msgid "InfoRequestEvent|Params yaml" +msgstr "InfoRequestEvent|Params yaml" + +#: locale/model_attributes.rb:46 +msgid "InfoRequestEvent|Prominence" +msgstr "InfoRequestEvent|Prominence" + +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Allow new responses from" +msgstr "InfoRequest|Lejo përgjegje të reja prej" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Awaiting description" +msgstr "InfoRequest|Awaiting description" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Described state" +msgstr "InfoRequest|Described state" + +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Handle rejected responses" +msgstr "InfoRequest|Handle rejected responses" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Law used" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Prominence" +msgstr "Info të kërkesës | Rëndësi" + +#: locale/model_attributes.rb:80 +msgid "InfoRequest|Title" +msgstr "Info të kërkesës | Titulli" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Url title" +msgstr "Info të kërkesës | Titulli Url" + +#: app/models/info_request_event.rb:303 +msgid "Information not held" +msgstr "Informata nuk mbahet këtu" + +#: app/models/info_request.rb:791 +msgid "Information not held." +msgstr "Informata nuk mbahet këtu." + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" + +#: app/models/info_request_event.rb:311 +msgid "Internal review acknowledgement" +msgstr "Pranimi i rishqyrtimit intern" + +#: app/models/info_request_event.rb:328 +msgid "Internal review request" +msgstr "Kërkesë për rishqyrtim intern" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests to " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" +"A ështe {{email_address}} adresë e gabuar e {{type_of_request}} kërkesave " +"për {{public_body_name}}? Nëse po, të luten na kontakto nëpermjet kësaj " +"forme:" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies\",\n" +"or cannot do so. If you can, please enable cookies, or try using a different\n" +"browser. Then press refresh to have another go." +msgstr "" +"Kjo mund të jetë sepse shfletuesi yt nuk është i vendosur të pranojë " +"\"cookies\", ose nuk mund ta bëjë këtë. Nëse ke mundësi, të lutem aktivizoni" +" \"cookies\", ose përdor një shfletues (browser) tjeter. Pastaj shtyp " +"\"refresh\" për të provuar edhe një herë." + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "Bashkangjitur më" + +#: app/views/user/show.rhtml:62 +msgid "Joined {{site_name}} in" +msgstr "" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Mbaje <strong>të fokusuar</strong>, gjasat janë më të mëdha që të marrësh " +"përgjegjen e dëshiruar (<a href=\"%s\">pse?</a>)." + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "Autoriteti i shikuar së fundi:" + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "Kërkesa e shikuar së fundi:" + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" +"Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe emrin e " +"shfletuesit (browser-it) dhe versionin e tij. Gjithashtu na trego për emrin " +"e sistemit operativ dhe versionin." + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "Vegza e kësaj kërkese" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "Listo të gjitha autoritetet (CSV)" + +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" +msgstr "Lokale dhe regjionale" + +#: app/models/info_request.rb:789 +msgid "Long overdue." +msgstr "Shumë e vonuar." + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "Bëj një kërkesë të re për informacione rreth Mjedisit" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "Bëjë një kërkesë {{law_used_short}} për '{{public_body_name}}'" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:67 +msgid "Make and explore Freedom of Information requests" +msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:87 +msgid "Make request" +msgstr "Bëj kërkesë" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "Bëj kërkesën tënde" + +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using {{site_name}} contact form, " +msgstr "" + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "Mungojnë të dhënat për '" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "Më shumë për këtë autoritet" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Më shumë autoritete" + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Më shumë kërkesa te suksesshme" + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "Kërkesa ime është <strong>refuzuar</strong>" + +#: app/views/layouts/default.rhtml:91 +msgid "My requests" +msgstr "Kërkesat e mia" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "Emri nuk mund të jetë i zbrazët" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "Emri është i zënë" + +#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 +msgid "New Freedom of Information requests" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "Email i ri:" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "Email adresa e re nuk duket si një adresë e vlefshme" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "Fjalëkalim i ri:" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "Fjalëkalim i ri: (përsërite)" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "Përgjegje e re për kërkesën tënde" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "Përgjegje e re për {{law_used_short}} kërkesën" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "Rezultatet më të reja të parat" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "Pastaj, preje foton tënde >>" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "Ende nuk ka kërkesa të këtij lloji." + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "Nuk gjetëm kërkesa të ngjashme." + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" +"Ende askush nuk ka bërë ndonjë kërkesë te {{public_body_name}} duke përdorur" +" këtë faqe." + +#: app/views/public_body/_body_listing.rhtml:2 +#: app/views/request/_request_listing.rhtml:2 +msgid "None found." +msgstr "Asnjë nuk u gjet." + +#: app/views/user/signchangeemail_confirm.rhtml:3 +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "Kontrollo emailin tënd!" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "Tani shiko shënimin tënd" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "Shiko vazhdimësinë e komunikimit" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "Shiko mesazhin tënd ku ke kërkuar rishqyrtim intern" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "Shiko kërkesën tënde" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "Ose hiqni fotografinë ekzistuese" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " +"përdorur {{site_name}}" + +#: app/controllers/request_controller.rb:414 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "Na vjen keq që kërkesa yte është refuzuar. Ja se çfarë të bëhet tani." + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "Emali i vjetër:" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" +"Adresa e emailit të vjetër nuk është e njëjtë me adresën e llogarisë me të " +"cilën jeni kyçur për momentin" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "Email adresa e vjetër nuk duket si një adresë e vlefshme" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "Në këtë faqe" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" +"Një autoritet publik përputhet me ‘{{user_search_query}}’" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." + +#: app/models/info_request.rb:405 +msgid "" +"Only the authority can reply to this request, and I don't recognise the " +"address this reply was sent from" +msgstr "" + +#: app/models/info_request.rb:401 +msgid "" +"Only the authority can reply to this request, but there is no \"From\" " +"address to check against" +msgstr "" + +#: app/views/general/search.rhtml:158 +msgid "Original request sent" +msgstr "" + +#: locale/model_attributes.rb:26 +msgid "OutgoingMessage|Body" +msgstr "OutgoingMessage | Body" + +#: locale/model_attributes.rb:29 +msgid "OutgoingMessage|Last sent at" +msgstr "OutgoingMessage | Së fundi është dërguar në" + +#: locale/model_attributes.rb:28 +msgid "OutgoingMessage|Message type" +msgstr "OutgoingMessage|Message type" + +#: locale/model_attributes.rb:27 +msgid "OutgoingMessage|Status" +msgstr "OutgoingMessage|Status" + +#: locale/model_attributes.rb:30 +msgid "OutgoingMessage|What doing" +msgstr "OutgoingMessage|What doing" + +#: app/models/info_request.rb:795 +msgid "Partially successful." +msgstr "Pjesërisht e suksesshme." + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "Fjalëkalimi nuk është i saktë" + +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "Fjalëkalimi: (përsërite)" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "Fotografia yte:" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "Planet dhe masat administrative që ndikojnë këto çështje" + +#: app/controllers/request_game_controller.rb:42 +msgid "Play the request categorisation game" +msgstr "Luaj në lojën e kategorizimit të kërkesave" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "Luaj lojën e kategorizimit të kërkesave!" + +#: app/views/request/show.rhtml:101 +msgid "Please" +msgstr "Të lutem" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "Të lutem <a href=\"%s\">na kontakto</a> që neve ta rregullojme ate." + +#: app/views/request/show.rhtml:52 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" +"Të lutem <strong> përgjegju pyetjes së mësipërme</strong> që ne të dimë nëse" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" +"Të lutem <strong>shko te kërkesa</strong>, dhe na e bëj\n" +" medije nëse ka pasë informatë në përgjegjen e fundit drejtuar atyre." + +#: app/views/request/_followup.rhtml:27 +msgid "" +"Please <strong>only</strong> write messages directly relating to your " +"request {{request_link}}. If you would like to ask for information that was " +"not in your original request, then <a href=\"{{new_request_link}}\">file a " +"new request</a>." +msgstr "" + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "Të lutem kërko vetëm për informacion në lidhje me mjedisin" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" +"Të lutem kontrollo që URL (dmth. kodin e gjatë me shkronja e numra) është " +"kopjuar në rregull nga emaili yt." + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "Të lutem zgjedh një fajll që përmban foton tënde." + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "Të lutem zgjedh llojin e përgjegjes." + +#: app/controllers/request_controller.rb:346 +msgid "" +"Please choose whether or not you got some of the information that you " +"wanted." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for {{site_name}}\n" +"from {{old_email}} to {{new_email}}" +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" +"Të lutem kliko në vegzën e mëposhëtme për të konfirmuar email adresën tënde." + +#: app/models/info_request.rb:126 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" +"Të lutem përshkruaj në lëndë më gjerësisht se për çfarë është kërkesa. Nuk " +"ka nevojë të shkruhet që bëhet fjalë për kërkesë për qasje në informata, ajo" +" shtohet automatikisht." + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" +"Të lutem mos ngarko fotografi ofenduese. Ne do t'i largojmë imazhet që ne i " +"konsiderojmë të papërshtatshme." + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "Të lutem aktivizo \"cookies\" në shfletues për të vazhduar" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "Të lutem shkruaj fjalëkalimin" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "Të lutem shkruaj lëndën" + +#: app/models/info_request.rb:34 +msgid "Please enter a summary of your request" +msgstr "Të lutem shkruaj një përmbledhje të kërkesës tënde" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "Të lutem shkruaj adresën korrekte të emailit" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "Të lutem shkruaj mesazhin që dëshiron do ta dërgosh" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "Të lutem shkruaj shënimin tënd" + +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" +msgstr "Të lutem shkruaj adresën e emailit tënd" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "Të lutem shto mesazhin për përcjellje" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "Të lutem shkruaj letrën e kërkesës për informatë " + +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" +msgstr "Të lutem shkruaj emrin tënd" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "Të lutem shkruaj adresën e re të emailit " + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "Të lutem shkruaj adresën e vjetër të emailit " + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "Të lutem shkruaj fjalëkalimin tënd" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" +"Të lutem shkruaj hollësi spjeguese se për çfarë arsye po kërkon rishqyrtim" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" + +#: app/models/info_request.rb:123 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" +"Të lutem bëje përmbledhjen sa më shkurt, sikurse në lëndën (subjektin) e " +"emailit. Mund të shkruash një togfjalësh në vend të një fjalie të plotë." + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, <strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting unrelated information." +msgstr "" +"Të lutem kërko vetëm informata që hyjnë në këto kategori, <strong>mos e humb\n" +" kohën tënde</strong> apo kohën e institucionit duke kërkuar informata që s'kanë të bëjnë me të." + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</strong>\n" +"if they are successful yet or not." +msgstr "" +"Të lutem selektoi të gjitha kërkesat një pas një, dhe <strong>bëje të njohur për të gjithë</strong>\n" +"nëse kanë qenë të suksesshme deri tash apo jo." + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" +"Te lutem nënshkruaj në fund me emrin tënd, ose ndrysho \"% {signoff}\" " +"nënshkrimin" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "Të lutem kyçu si " + +#: app/controllers/request_controller.rb:730 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" +"Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjegjen " +"tënde." + +#: app/controllers/request_controller.rb:434 +msgid "Please use the form below to tell us more." +msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" +"Të lutem përdor këtë adresë të emailit për të gjitha përgjegjet në këtë " +"kërkesë:" + +#: app/models/info_request.rb:35 +msgid "Please write a summary with some text in it" +msgstr "Të lutem shkruaj përmbledhjen" + +#: app/models/info_request.rb:120 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj përmbledhjen duke përdorur kombinim të germave të mëdha dhe" +" të vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/controllers/request_controller.rb:423 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters." +" This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj mesazhin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may" +" be useful." +msgstr "" +"Udhëzo te <strong>informatat që nderlidhen me këtë,</strong> fushata ose " +"forume të cilat mund të jenë të dobishme." + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "Posto shënimin" + +#: locale/model_attributes.rb:55 +msgid "PostRedirect|Circumstance" +msgstr "PostRedirect|Circumstance" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Email token" +msgstr "PostRedirect|Email token" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Post params yaml" +msgstr "PostRedirect|Post params yaml" + +#: locale/model_attributes.rb:54 +msgid "PostRedirect|Reason params yaml" +msgstr "PostRedirect|Reason params yaml" + +#: locale/model_attributes.rb:50 +msgid "PostRedirect|Token" +msgstr "PostRedirect|Token" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Uri" +msgstr "PostRedirect|Uri" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "Shiko shënimin e ri në '{{info_request_title}}'" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "Shiko shënimin tënd" + +#: app/views/request/_followup.rhtml:96 +msgid "Preview your message" +msgstr "Shiko mesazhin tënd" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "Shiko kërkesën tënde publike" + +#: locale/model_attributes.rb:15 +msgid "ProfilePhoto|Data" +msgstr "ProfilePhoto|Data" + +#: locale/model_attributes.rb:16 +msgid "ProfilePhoto|Draft" +msgstr "ProfilePhoto|Draft" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "Autoritetet publike - {{description}}" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" +"Autoritetet publike prej {{start_count}} tek {{end_count}} prej " +"{{total_count}} për {{user_search_query}}" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "PublicBody |Germa e parë" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "PublicBody |Ballina" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "PublicBody | Redaktimi i fundit i komentit" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "PublicBody | Redaktimi i fundit editor" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "PublicBody |Emri" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "PublicBody |Shënime" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "PublicBody | Skema e publikimit" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "PublicBody |Emaili me kërkesë" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "PublicBody |Emri i shkurtë" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "PublicBody |URL emri" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "PublicBody |Versioni" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "Skema e publikimit" + +#: locale/model_attributes.rb:48 +msgid "RawEmail|Data binary" +msgstr "RawEmail |Të dhënat binare" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "Ri edito këtë shënim" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "Re-edito këtë mesazh" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "Re-edito këtë kërkesë" + +#: app/views/general/search.rhtml:137 +msgid "" +"Read about <a href=\"{{advanced_search_url}}\">advanced search " +"operators</a>, such as proximity and wildcards." +msgstr "" + +#: app/views/layouts/default.rhtml:93 +msgid "Read blog" +msgstr "Lexo blog-un" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" +"Lexoni këtë para se të shkruani {{info_request_law_used_full}} kërkesën" + +#: app/views/general/search.rhtml:150 +msgid "Received an error message, such as delivery failure." +msgstr "" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "Rezultatet e përshkruara së fundi radhiti të parat" + +#: app/controllers/request_controller.rb:139 +msgid "Recently sent Freedom of Information requests" +msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "Kërkesat e dërguara së fundi" + +#: app/controllers/request_controller.rb:144 +msgid "Recently successful responses" +msgstr "Përgjegjet e marra së fundi" + +#: app/models/info_request_event.rb:305 +msgid "Refused" +msgstr "Refuzuar" + +#: app/models/info_request.rb:793 +msgid "Refused." +msgstr "Refuzuar." + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" +"Me mbaj mend </label> (të mban të kyçur më gjatë\n" +" mos e përdor në kompjuter publik) " + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "Pergjegju këtij mesazhi" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "Raporto abuzim" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "Kërko një rishqyrtim intern" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "Kërko një rishqyrtim intern prej" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "Kërkesa është larguar (fshirë)" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" +"Kërkesë dërguar te {{public_body_name}} nga {{info_request_user}} me " +"{{date}}." + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" +"Kërkesë për {{public_body_name}} nga {{info_request_user}}. Shënuar nga " +"{{event_comment_user}} me {{date}}." + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "" +"Kërkuar nga {{public_body_name}} nga {{info_request_user}} me {{date}}" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 +msgid "Requests or responses matching '{{query}}'" +msgstr "" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "Përgjegju me email" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "Përgjegju kërkesës" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "Përgjegju kërkesës për Informata Zyrtare" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "Përgjegju duke përdorur uebin" + +#: app/views/general/search.rhtml:160 +msgid "Response from a public authority" +msgstr "" + +#: app/views/request/show.rhtml:77 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show.rhtml:85 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "Përgjegje për kërkesën tënde" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "Përgjegja:" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "Faqja e rezultateve {{page_number}}" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "Ruaj" + +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +#: app/views/layouts/default.rhtml:80 app/views/request/new.rhtml:31 +msgid "Search" +msgstr "Kërko" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdoruesit" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." + +#: app/controllers/user_controller.rb:331 +msgid "Send a message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "Dërgo përgjegje publike te" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "Dërgo mesazh" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "Dërgo mesazh te" + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "Dërgo" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "Vendos fotografinë e profilit tënd" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "Emri i shkurtë është i zënë" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "Shfaqi rezultatet më relevante" + +#: app/views/public_body/list.rhtml:3 app/views/request/list.rhtml:2 +msgid "Show only..." +msgstr "Shfaq vetëm..." + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "Kyçu" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "Kyçu ose krijo një llogari të re" + +#: app/views/layouts/default.rhtml:103 +msgid "Sign in or sign up" +msgstr "Kyçu ose Ç'kyçu" + +#: app/views/layouts/default.rhtml:100 +msgid "Sign out" +msgstr "Ç'kyçu" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "Regjistrohu" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "Kërkesa të ngjashme" + +#: app/models/info_request_event.rb:307 +msgid "Some information sent" +msgstr "Disa informata janë dërguar" + +#: app/views/general/search.rhtml:145 +msgid "Some of the information requested has been received" +msgstr "" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" +"Disa individë që kanë bërë kërkesa nuk kanë treguar se a ishin ato të " +"sukseshme apo jo. Kemi nevojë për ndihmën <strong>tënde</strong> - përzgjedh" +" një nga këto kërkesa, lexo atë, dhe njofto të tjerët se a u ofruan " +"informatat e kërkuara. Të gjithë do të jenë shumë mirënjohës për këtë." + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"{{site_name}} from {{old_email}} to {{new_email}}." +msgstr "" + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "Shënim të veçantë për këtë autoritet!" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "Ende në pritje të <strong>rishqyrtimit intern</strong>" + +#: app/views/request/followup_preview.rhtml:23 +#: app/views/request/preview.rhtml:18 +msgid "Subject:" +msgstr "Lënda:" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "Dërgo" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "Dërgo statusin" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "Kërkesat e suksesshme për Informata Zyrtare" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "Përgjegjet e suksesshme" + +#: app/models/info_request.rb:797 +msgid "Successful." +msgstr "Suksesshme." + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the " +"information</strong>." +msgstr "" +"Sugjero si kërkuesi mund të gjen pjesën <strong>tjetër të " +"informacionit.</strong>" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "Përmbledhje:" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "Tabela e statuseve" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "Etiketat:" + +#: app/controllers/request_game_controller.rb:52 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "Faleminderit që keni bërë një shënim!" + +#: app/controllers/request_controller.rb:736 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" +"Faleminderit që i jeni përgjegjur kësaj kërkese për informata zyrtare. " +"Përgjegja yte është publikuar më poshtë, si dhe vegza për përgjegjen tënde i" +" është derguar me email " + +#: app/controllers/request_controller.rb:378 +msgid "" +"Thank you for updating the status of the request '<a " +"href=\"{{url}}\">{{info_request_title}}</a>'. There are some more requests " +"below for you to classify." +msgstr "" + +#: app/controllers/request_controller.rb:381 +msgid "Thank you for updating this request!" +msgstr "Faleminderit për aktualizimin e kësaj kërkese!" + +#: app/controllers/user_controller.rb:398 +#: app/controllers/user_controller.rb:414 +msgid "Thank you for updating your profile photo" +msgstr "Faleminderit për aktualizimin e fotografisë e profilit tënd" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" +"Faleminderit për ndihmë - ndihma yte do ta bëjë më të lehtë që të tjerët të " +"gjejnë kërkesat e suksesshme, e ndoshta edhe të na mundesojë krijim e " +"ranglistave..." + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" +"Shumë faleminderit - kjo do të ndihmojë të tjerët të gjejnë gjëra të dobishme. \n" +"Ne gjithashtu mund të ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat tuaja." + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" +" We'll also, if you need it, give you advice on what to do next about each of your\n" +" requests." +msgstr "" +"Shumë faleminderit për ndihmën për të mbajtur të tërat të " +"<strong>organizuara dhe në rregull</strong>. Ne gjithashtu mund të " +"ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat " +"tuaja." + +#: app/controllers/user_controller.rb:189 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it" +" correctly." +msgstr "" +"Kjo nuk duket si një email adresë e vlefshme. Të lutem kontrollo që e ke " +"shtypur të saktë." + +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "<strong>Rishqyrtimi ka përfunduar</strong> dhe përfundimi është:" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" + +#: app/views/user_mailer/changeemail_already_used.rhtml:8 +msgid "The accounts have been left as they previously were." +msgstr "Llogaritë janë lënë siq kanë qenë më përpara." + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" +"Autoriteti <strong>nuk e ka</strong> informatën <small>(ndoshta ata e dine " +"kush e ka)</small>" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI request" +msgstr "" +"Autoriteti thotë se ata kanë <strong>nevojë për një adresë postare,</strong>" +" jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " +"informatë zyrtare" + +#: app/views/request/show.rhtml:109 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this" +" request." +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" +"Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu " +"përgjegjur një kërkese {{law_used_short}} nuk është dorëzuar." + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" +" At the bottom of this page, write a reply to the authority explaining this to them." +msgstr "" + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" +"Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " +"tani:" + +#: app/views/general/search.rhtml:143 +msgid "The public authority does not have the information requested" +msgstr "" + +#: app/views/general/search.rhtml:147 +msgid "The public authority would like part of the request explained" +msgstr "" + +#: app/views/general/search.rhtml:148 +msgid "The public authority would like to / has responded by post" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "Kërkesa është <strong>refuzuar</strong>" + +#: app/controllers/request_controller.rb:352 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" + +#: app/views/request/show.rhtml:104 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "Kërkesa është në <strong>pritje për sqarim</strong>." + +#: app/views/request/show.rhtml:97 +msgid "The request was <strong>partially successful</strong>." +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme</strong>." + +#: app/views/request/show.rhtml:93 +msgid "The request was <strong>refused</strong> by" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/show.rhtml:95 +msgid "The request was <strong>successful</strong>." +msgstr "Kërkesa ishte e <strong>suksesshme</strong>." + +#: app/views/general/search.rhtml:144 +msgid "The request was refused by the public authority" +msgstr "" + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" +"Kërkesa që ti je përpjek për të parë është hequr (larguar). Ka arsye të " +"ndryshme pse ne kemi mund për të bërë këtë, na vie keq që nuk mund të jemi " +"më specifik. Të lutem të <a href=\"%s\">na kontakton</a> nëse ke ndonjë " +"pyetje." + +#: app/views/general/search.rhtml:152 +msgid "The requester has abandoned this request for some reason" +msgstr "" + +#: app/views/request/_followup.rhtml:32 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" +"Përgjegja në kërkesën tënde është e <strong>vonuar</strong>. Mund të thuhet që,\n" +"sipas ligjit, autoriteti ishte dashtë të përgjegjet në \n" +"<strong>afat</strong> të paraparë dhe " + +#: app/views/request/_followup.rhtml:44 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say that, by \n" +" law, under all circumstances, the authority should have responded\n" +" by now" +msgstr "" +"Përgjegja në kërkesën tënde është <strong>vonuar për së tepërmi</strong>. Mund të thuhet që,\n" +"sipas ligjit, duke i patur parasyesh të gjitha rrethanat, autoriteti ishte dashtë të përgjegjet \n" +"deri më tani" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" +"Indeksi i kërkimit aktualisht është i shkëputur, kështu që nuk mund të shfaq" +" kërkesat e Informata zyrtare që kan të bëjnë me këtë autoritet" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" +"Indeksi i kërkimit është jashtë funksioni, kështu që ne nuk mund t'i " +"tregojmë kërkesat për informata zyrtare që ky person ka bërë." + +#: app/controllers/track_controller.rb:144 +msgid "Then you can cancel the alert." +msgstr "Pastaj ti mund të anulon njoftimin." + +#: app/controllers/track_controller.rb:174 +msgid "Then you can cancel the alerts." +msgstr "Pastaj ti mund të anulon njoftimet." + +#: app/controllers/user_controller.rb:249 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh adresën tënde të emailit që përdoret në " +"{{site_name}}" + +#: app/controllers/user_controller.rb:203 +msgid "Then you can change your password on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh fjalëkalimin tënd që përdoret në {{site_name}}" + +#: app/controllers/request_controller.rb:338 +msgid "Then you can classify the FOI response you have got from " +msgstr "Pastaj ti mund të klasifikon përgjegjet e marra nga " + +#: app/controllers/request_game_controller.rb:41 +msgid "Then you can play the request categorisation game." +msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." + +#: app/controllers/user_controller.rb:330 +msgid "Then you can send a message to " +msgstr "Pastaj ti mund të dërgon mesazh te " + +#: app/controllers/user_controller.rb:514 +msgid "Then you can sign in to {{site_name}}" +msgstr "Pastaj ti mund të kyçesh në {{site_name}}" + +#: app/controllers/request_controller.rb:61 +msgid "Then you can update the status of your request to " +msgstr "Pastaj ti mund të aktualizosh statusin e kërkesës tënde për " + +#: app/controllers/request_controller.rb:702 +msgid "Then you can upload an FOI response. " +msgstr "" +"Pastaj ti mund të ngarkon një përgjegje ndaj kërkesës për informata zyrtare." + +#: app/controllers/request_controller.rb:545 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:546 +msgid "Then you can write your reply to " +msgstr "Pastaj ti mund të shkruash përgjegjen tënde për " + +#: app/models/track_thing.rb:197 +msgid "" +"Then you will be emailed whenever '{{user_name}}' requests something or gets" +" a response." +msgstr "" + +#: app/models/track_thing.rb:213 +msgid "" +"Then you will be emailed whenever a new request or response matches " +"'{{query}}'." +msgstr "" + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" + +#: app/models/track_thing.rb:146 +msgid "Then you will be emailed whenever anyone makes a new FOI request." +msgstr "" + +#: app/models/track_thing.rb:181 +msgid "" +"Then you will be emailed whenever someone requests something or gets a " +"response from '{{public_body_name}}'." +msgstr "" + +#: app/controllers/request_controller.rb:299 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "Pastaj kërkesa yte për " + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "Pastaj shënimi yt për {{info_request_title}} do të postohet." + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow" +" this link to see what they wrote." +msgstr "" +"Ka {{count}} shënime të reja në kërkesën tënde {{info_request}}. Ndiqni " +"këtë vegzë për t'i parë ato." + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" +"Ekziston <strong>më shumë se një individ</strong> i cili e përdor këtë ueb sajt dhe ka të njejtin emërtim.\n" +"Njëri prej tyre është listuar më poshtë, ti mund të kesh menduar për tjetër kend:" + +#: app/views/request/show.rhtml:113 +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the {{site_name}} team." +msgstr "" + +#: app/controllers/public_body_controller.rb:77 +msgid "There was an error with the words you entered, please try again." +msgstr "Kishte një gabim me fjalët që keni shtypur, të lutem provo përsëri." + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "Ata do të përgjegjen <strong>me postë</strong>" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who" +" does)</small>" +msgstr "" +"Ata <strong>nuk e kanë</strong> informatën <small>(ndoshta ata tregojnë kush" +" e ka)</small>" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "Atyre u është dhënë shpjegimi vijues:" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly," +" as normally required by law" +msgstr "" +"Ata nuk janë përgjegj ndaj kërkesës {{law_used_short}} tënde {{title}} " +"menjëherë, siç kërkohet normalisht nga ligji" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" +"Ata nuk janë përgjegjur {{law_used_short}} ndaj kërkesës teënde {{title}}, " +"siç kërkohet me ligj" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "Gjëra për të bërë me këtë kërkesë" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" +"Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëni një kërkesë për " +"të." + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Ky koment është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh </a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" +"Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " +"zyrtare" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" +"Kjo është për shkak se {{title}} është një kërkesë e vjetër që ka qenë e " +"shenjuar të mos marrë më përgjegje." + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" +"Kjo është kërkesa yte, kështu që ti do të merr email automatikisht kur " +"përgjegjet e reja arrijnë." + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "Ky person ka" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "e këtij personi" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" + +#: app/views/request/show.rhtml:55 +msgid "This request has an <strong>unknown status</strong>." +msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." + +#: app/views/request/show.rhtml:117 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" +"Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " +"Mund të ketë një shpjegim në korrespondencën më poshtë." + +#: app/models/info_request.rb:395 +msgid "" +"This request has been set by an administrator to \"allow new responses from " +"nobody\"" +msgstr "" + +#: app/views/request/show.rhtml:115 +msgid "" +"This request has had an unusual response, and <strong>requires " +"attention</strong> from the {{site_name}} team." +msgstr "" + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are logged\n" +" in as a super user." +msgstr "" +"Kjo kërkesë ka klasifikim 'fshehur'. Ti mund të shohësh atë, vetëm sepse je " +"kyçur 'super user'." + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" +"Kjo kërkesë është e fshehur, kështu që vetëm ti - kërkuesi mund ta shoh " +"ate. Të lutem <a href=\"%s\">na kontakto</a> nëse nuk je i sigurt pse kjo po" +" ndodhë." + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Kjo përgjegje është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" +"Ky ueb sajt është <strong>publik.</strong>Kërkesat dhe pergjegjet do të jenë" +" publike." + +#: app/views/request/details.rhtml:6 +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on {{site_name}}. This could be used to generate information about\n" +"the speed with which authorities respond to requests, the number of requests\n" +"which require a postal response and much more." +msgstr "" + +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from {{site_name}} " +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:5 +msgid "" +"This was not possible because there is already an account using \n" +"the email address {{email}}." +msgstr "" + +#: app/models/track_thing.rb:145 +msgid "To be emailed about any new requests" +msgstr "" + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "" + +#: app/models/track_thing.rb:196 +msgid "To be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:180 +msgid "" +"To be emailed about requests made using {{site_name}} to the public " +"authority '{{public_body_name}}'" +msgstr "" + +#: app/controllers/track_controller.rb:173 +msgid "To cancel these alerts" +msgstr "Për të anuluar njoftimet" + +#: app/controllers/track_controller.rb:143 +msgid "To cancel this alert" +msgstr "Për të anuluar këtë njoftim" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" +"Për të vazhduar, ti duhet të kyçesh ose të hapë një llogari. Për fat të keq," +" ka pasur një problem teknik duke u përpjekur për të bërë këtë." + +#: app/controllers/user_controller.rb:248 +msgid "To change your email address used on {{site_name}}" +msgstr "Për të ndryshuar email adresën tënde të përdorur në {{site_name}}" + +#: app/controllers/request_controller.rb:337 +msgid "To classify the response to this FOI request" +msgstr "Për të klasifikuar përgjegjen e kësaj kërkese për informata zyrtare" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "Për të bërë këtë të lutem dërgoni një email privat te" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "Për ta bërë këtë, së pari kliko në vegzën më poshtë." + +#: app/models/track_thing.rb:212 +msgid "To follow requests and responses matching '{{query}}'" +msgstr "" + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" +"Që të na njoftoni, ndiqni këtë vegzë dhe pastaj zgjedhni kutinë e duhur." + +#: app/controllers/request_game_controller.rb:40 +msgid "To play the request categorisation game" +msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "Për të postuar shënimin tënd" + +#: app/controllers/request_controller.rb:543 +msgid "To reply to " +msgstr "Për t'iu përgjegjur " + +#: app/controllers/request_controller.rb:542 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:329 +msgid "To send a message to " +msgstr "Për të dërguar mesazh te " + +#: app/controllers/request_controller.rb:298 +msgid "To send your FOI request" +msgstr "Për të dërguar kërkesën tënde për informata zyrtare" + +#: app/controllers/request_controller.rb:60 +msgid "To update the status of this FOI request" +msgstr "Për të aktualizuar statusin e kësaj kërkese për informata zyrtare" + +#: app/controllers/request_controller.rb:701 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" +"Të ngarkoni një përgjegje, ti duhet të kyçesh duke përdorur një email adresë" +" nga " + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" +"Për të parë adresën e emailit që ne përdorim për të dërguar kërkesa për " +"informata zyrtare te {{public_body_name}}, të lutem shkruaj këto fjalë." + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "Për të parë përgjegjen, kliko në vegzën më poshtë." + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "Për {{public_body_link_absolute}}" + +#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 +#: app/views/request/preview.rhtml:17 +msgid "To:" +msgstr "Për:" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "Përcjell kërkesat e bëra për {{public_body_name}} me email" + +#: app/models/track_thing.rb:206 +msgid "Track things matching '{{query}}' by email" +msgstr "" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "Përcjell këtë autoritet" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/models/track_thing.rb:190 +msgid "Track this person by email" +msgstr "" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "Përcjell këtë kërkesë" + +#: app/models/track_thing.rb:123 +msgid "Track this request by email" +msgstr "" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "TrackThing |Track medium" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "TrackThing|Track query" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "TrackThing |Track type" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" +"Tipi<code><strong>01/01/2008..14/01/2008</strong></code>është për të treguar" +" vetëm gjëra që kanë ndodhur në dy javët e para të janarit." + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "URL emri nuk mund të jetë i zbrazët" + +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on {{site_name}}" +msgstr "" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "Nuk munda të dërgoj përgjegje te {{username}}" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "Lloji i papritur i rezultatit të kërkuar" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "Lloji i papritur i rezultatit të kërkuar " + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" +"Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë " +"autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a " +"href=\"%s\">na kontakton</a> për ta rregulluar atë." + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" +"Për fat të keq, ne nuk kemi një adresë funksionale " +"{{info_request_law_used_full}} për" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "I/e panjohur" + +#: app/models/info_request_event.rb:317 +msgid "Unusual response" +msgstr "Përgjegje e pazakonshme" + +#: app/models/info_request.rb:807 +msgid "Unusual response." +msgstr "Përgjegje e pazakonshme." + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "Aktualizo statusin e kësaj kërkese" + +#: app/controllers/request_controller.rb:62 +msgid "Update the status of your request to " +msgstr "Aktualizo statusin e kërkesës tënde për " + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" +"Përdor OSE (me shkronja të mëdha), ku ju nuk jeni në dijeni për cilat fjalë " +"bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të " +"mdhaja</strong></code>" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. " +"<strong><code>\"Liverpool City Council\"</code></strong>" +msgstr "" +"Përdor thonjëzat (\" \") kur ti dëshiron të gjeshë një fjalë ekzakte, " +"p.sh.<code><strong>\"Ministria e Arsimit\"</strong></code>" + +#: locale/model_attributes.rb:67 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "UserInfoRequestSentAlert|Alert type" + +#: locale/model_attributes.rb:78 +msgid "User|About me" +msgstr "Përdoruesi |Rreth meje" + +#: locale/model_attributes.rb:76 +msgid "User|Admin level" +msgstr "Përdoruesi | Niveli i Administrimit" + +#: locale/model_attributes.rb:77 +msgid "User|Ban text" +msgstr "Përdoruesi |Tekst i ndaluar" + +#: locale/model_attributes.rb:69 +msgid "User|Email" +msgstr "Përdoruesi |Email" + +#: locale/model_attributes.rb:73 +msgid "User|Email confirmed" +msgstr "Përdoruesi|Emaili u konfirmua" + +#: locale/model_attributes.rb:71 +msgid "User|Hashed password" +msgstr "User|Hashed password" + +#: locale/model_attributes.rb:75 +msgid "User|Last daily track email" +msgstr "User|Last daily track email" + +#: locale/model_attributes.rb:70 +msgid "User|Name" +msgstr "Përdoruesi|Emri" + +#: locale/model_attributes.rb:72 +msgid "User|Salt" +msgstr "User|Salt" + +#: locale/model_attributes.rb:74 +msgid "User|Url name" +msgstr "Përdoruesi | Emri Url" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "Shiko adresën e emailit për Informatë Zyrtare" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" + +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by {{user_name}}:" +msgstr "" + +#: app/views/layouts/default.rhtml:89 +msgid "View authorities" +msgstr "Shiko autoritetet" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "Shiko adresën e emailit" + +#: app/views/layouts/default.rhtml:88 +msgid "View requests" +msgstr "Shiko kërkesat" + +#: app/models/info_request.rb:799 +msgid "Waiting clarification." +msgstr "Duke pritur sqarim." + +#: app/views/request/show.rhtml:111 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" +"Duke pritur për <strong>rishqyrtim intern</strong> nga {{public_body_link}} " +"për trajtimin e kësaj kërkese." + +#: app/views/general/search.rhtml:149 +msgid "" +"Waiting for the public authority to complete an internal review of their " +"handling of the request" +msgstr "" + +#: app/views/general/search.rhtml:142 +msgid "Waiting for the public authority to reply" +msgstr "" + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" +"Për fat të keq, ne nuk kemi një email adresë funksionale për këtë autoritet" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "Ne nuk kemi {{law_used_full}} adresë për {public_body_name}}." + +#: app/views/request/_describe_state.rhtml:107 +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know." +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/user_mailer/changeemail_confirm.rhtml:10 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/request/show.rhtml:61 +msgid "We're waiting for" +msgstr "Po presim për" + +#: app/views/request/show.rhtml:57 +msgid "We're waiting for someone to read" +msgstr "Jemi në pritje që dikush ta lexoj" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link in\n" +"it before your email address will be changed." +msgstr "" +"Ne të kemi dërguar një email të ri në adresën e emailit tënd. Ti duhet të " +"klikosh në vegzën në te para se adresa e emailit tënd do të ndryshohet." + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you can\n" +"continue." +msgstr "" +"Ne të kemi dërguar një email, ti duhet të klikosh në vegzën në te para se të" +" mund të vazhdosh." + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" +"Ne të kemi dërguar një email, kliko në vegzën në te që të mund të ndryshon " +"fjalëkalimin tënd." + +#: app/views/request/_followup.rhtml:58 +msgid "What are you doing?" +msgstr "Çfarë je duke bërë?" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "Çfarë përshkruan më së miri statusin e kësaj kërkese tani?" + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" +"Kur të gjendesh atje, të lutem aktualizo statusin e kërkesës që të tregosh nëse pergjegja ka \n" +"informata të dobishme." + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" +"Kur të marrësh përgjegjen në letër, të lutem i ndihmoni të tjerët të gjejnë " +"se çfarë thotë në te:" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" +"Kur të kesh mbaruar, <strong>kthehu këtu,</strong> <a href=\"%s\">rifresko " +"këtë faqe</a> dhe bëj kërkesën tënde të re." + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "Cila nga këto po ndodh?" + +#: app/models/info_request_event.rb:313 +msgid "Withdrawn by requester" +msgstr "E tërhequr nga kërkuesi" + +#: app/models/info_request.rb:809 +msgid "Withdrawn by the requester." +msgstr "E tërhequr nga kërkuesi." + +#: app/controllers/request_controller.rb:549 +msgid "Write a reply to " +msgstr "Shkruaj një përgjegje për " + +#: app/controllers/request_controller.rb:548 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "" +"Shkruaje kërkesën tënde me <strong>gjuhë të thjeshtë, dhe të saktë</strong>." + +#: app/models/info_request_event.rb:301 +msgid "Wrong Response" +msgstr "Përgjegje e gabuar." + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "Ti" + +#: app/controllers/track_controller.rb:98 +msgid "You are already being emailed updates about " +msgstr "" + +#: app/models/track_thing.rb:175 +msgid "You are already tracking requests to {{public_body_name}} by email" +msgstr "" + +#: app/models/track_thing.rb:207 +msgid "You are already tracking things matching '{{query}}' by email" +msgstr "" + +#: app/models/track_thing.rb:191 +msgid "You are already tracking this person by email" +msgstr "" + +#: app/models/track_thing.rb:124 +msgid "You are already tracking this request by email" +msgstr "" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "Ti je duke pranuar me email çdo përgjegje të re të suksesshme" + +#: app/models/track_thing.rb:140 +msgid "You are being emailed when there are new requests" +msgstr "" + +#: app/views/request/show.rhtml:88 +msgid "You can <strong>complain</strong> by" +msgstr "Ti mund të <strong>ankohesh</strong> duke" + +#: app/views/request/details.rhtml:58 +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"{{api_path}}\">API documentation</a>." +msgstr "" + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" +"Ju vetëm mund të kërkoni informacione në lidhje me mjedisin nga ky " +"autoritet." + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "Ti ke" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "Ti ke një përgjegje të re për kërkesën {{law_used_full}}" + +#: app/controllers/user_controller.rb:492 +msgid "You have now changed the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:310 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" +"Tash ke ndryshuar adresën tënde të emailit që përdoret në {{site_name}}" + +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "" +"You just tried to sign up to {{site_name}}, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>," +" such as a working email address." +msgstr "" + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" +"Ti mund të <strong>bashkangjitë shtojca (attachments).</strong>. Nëse dëshiron të bashkangjet një\n" +"fajll tepër të madh për email format, përdor formularin e mëposhtëm." + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +" në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +" atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +"në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +"atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/controllers/user_controller.rb:470 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:371 +msgid "You need to be logged in to change your profile photo." +msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." + +#: app/controllers/user_controller.rb:433 +msgid "You need to be logged in to clear your profile photo." +msgstr "" +"Ti duhet të jesh i kyçur për të larguar (fshirë) fotografinë e profilit " +"tënd." + +#: app/controllers/request_controller.rb:559 +msgid "" +"You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" +msgstr "" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations or\n" +"send messages to other users. You may continue to view other requests, and set\n" +"up\n" +"email alerts." +msgstr "" + +#: app/controllers/track_controller.rb:154 +msgid "You will no longer be emailed updates about " +msgstr "" + +#: app/controllers/track_controller.rb:183 +msgid "You will no longer be emailed updates for those alerts" +msgstr "Ti nuk të merr më aktualizime me email për këto njoftime " + +#: app/controllers/track_controller.rb:111 +msgid "You will now be emailed updates about " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" +"Ti do të merr përgjegje në kërkesën tënde vetëm në qoftë se e sqaroni atë." + +#: app/controllers/user_controller.rb:442 +msgid "You've now cleared your profile photo" +msgstr "Ke pastruar fotografinë e profilit tënd" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "" + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" + +#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +msgid "Your e-mail:" +msgstr "Adresa e emailit tënd:" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "Email abonimet e tua" + +#: app/controllers/request_controller.rb:556 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:584 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:582 +msgid "Your internal review request has been sent on its way." +msgstr "Kërkesa për rishqyrtim intern është dërguar." + +#: app/controllers/help_controller.rb:63 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" +"Mesazhi yt u dërgua. Faleminderit që na kontaktuat! Ne do t'ju përgjegjemi " +"së shpejti." + +#: app/controllers/user_controller.rb:349 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" +"Mesazhi yt do të shfaqet në <strong>kërkuesit e internetit (p.sh. " +"Google)</strong>" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" +"Emri yt dhe shënimi do të shfaqen në <strong>kërkuesit e internetit (p.sh. " +"Google).</strong>" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" +"Emrin yt, kërkesa dhe çdo përgjegje do të shfaqen në <strong>kërkuesit e " +"internetit (p.sh. Google)</strong> ( <a href=\"%s\">detaje</a> )." + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "Emri yt:" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "Mesazhi yt origjinal është i bashkangjitur." + +#: app/controllers/user_controller.rb:231 +msgid "Your password has been changed." +msgstr "Fjalëkalimi yt është ndryshuar." + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "Fjalëkalimi yt:" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on {{site_name}}." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" +"Kërkesa yte qe emëruar {{info_request}}. Nëse i lejoni të tjerër ta dijnë a " +"i keni marrë informatat në pergjigje, do të na mundësoni ta mbikqyrim " + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "Kërkesa yte:" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a " +"href=\"%s\">read why</a> and answers to other questions." +msgstr "" +"Përgjegja yte do të <strong>shfaqet në internet,</strong> <a " +"href=\"%s\">lexoni pse</a> dhe përgjegjet për pyetje të tjera." + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the {{site_name}} <strong>administrators</strong> " +"should do about the request." +msgstr "" + +#: app/models/track_mailer.rb:25 +msgid "Your {{site_name}} email alert" +msgstr "" + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "Me nderime," + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "Sinqerisht," + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" +"një përmbledhje në një rresht të informacionit që ti kërkon,\n" +"»» »p.sh." + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "admin" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "i quajtur edhe {{public_body_short_name}}" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "dhe kyçu si" + +#: app/views/request/show.rhtml:59 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" + +#: app/views/request/show.rhtml:64 +msgid "and update the status." +msgstr "dhe aktualizo statusin." + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "dhe ne do të sugjerojmë <strong>çfarë të bëjë pastaj</strong>" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "shënim" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "shënimet" + +#: app/models/track_thing.rb:138 +msgid "any <a href=\"/list\">new requests</a>" +msgstr "" + +#: app/models/track_thing.rb:154 +msgid "any <a href=\"/list/successful\">successful requests</a>" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "janë vonuar së tepërmi." + +#: app/controllers/public_body_controller.rb:111 +msgid "beginning with" +msgstr "duke filluar me" + +#: app/views/request/show.rhtml:82 +msgid "by" +msgstr "nga" + +#: app/views/request/_followup.rhtml:38 +msgid "by <strong>{{date}}</strong>" +msgstr "nga <strong>{{date}}</strong>" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "nga {{public_body_name}} për {{info_request_user}} me {{date}}." + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "nga {{user_link_absolute}}" + +#: locale/model_attributes.rb:35 +msgid "censor rule" +msgstr "censor rregulli" + +#: locale/model_attributes.rb:20 +msgid "comment" +msgstr "komenti" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" + +#: app/models/info_request_event.rb:338 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" +"display_status tani për tani punon vetëm për mesazhet hyrëse dhe dalëse" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "p.sh." + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "edito tekstin në lidhje me ty" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "abonimet me email" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "madje edhe gjatë pushimeve" + +#: locale/model_attributes.rb:17 +msgid "exim log" +msgstr "exim log" + +#: locale/model_attributes.rb:59 +msgid "exim log done" +msgstr "exim log done" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "ka raportuar një" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "kanë vonuar." + +#: locale/model_attributes.rb:56 +msgid "holiday" +msgstr "festë" + +#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 +#: app/views/request/show.rhtml:80 +msgid "in term time" +msgstr "" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "në total" + +#: locale/model_attributes.rb:62 +msgid "incoming message" +msgstr "mesazhi i ardhur" + +#: locale/model_attributes.rb:79 +msgid "info request" +msgstr "kërkesë për informatë" + +#: locale/model_attributes.rb:40 +msgid "info request event" +msgstr "info request event" + +#: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 +msgid "internal error" +msgstr "gabim i brendshëm i sistemit" + +#: app/views/request/show.rhtml:100 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "është duke <strong>pritur për sqarim tuaj</strong>." + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "vetëm për të parë se si funksionon" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "ka lënë një shënim" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "bërë." + +#: app/views/request/show.rhtml:74 +msgid "no later than" +msgstr "jo më vonë se" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/show.rhtml:72 +msgid "normally" +msgstr "normalisht" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "vetëm" + +#: locale/model_attributes.rb:25 +msgid "outgoing message" +msgstr "Mesazhi dalës" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "Të lutem kyçu si" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "të lutem kyçu ose krijo një llogari të re." + +#: locale/model_attributes.rb:49 +msgid "post redirect" +msgstr "ridrejto postën në tjetër adresë" + +#: locale/model_attributes.rb:14 +msgid "profile photo" +msgstr "fotografia e profilit" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "institucioni publik" + +#: locale/model_attributes.rb:47 +msgid "raw email" +msgstr "raw email" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "kërkesë." + +#: app/views/request/show.rhtml:89 +msgid "requesting an internal review" +msgstr "kërko rishqyrtim intern" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" + +#: app/views/request/show.rhtml:102 +msgid "send a follow up message" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." + +#: app/views/request/show.rhtml:106 +msgid "sign in" +msgstr "Kyçu" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "Ç'kyçu" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "që ti ke bërë për" + +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/track_mailer/event_digest.rhtml:66 +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:10 +#: app/views/user_mailer/changeemail_confirm.rhtml:13 +#: app/views/user_mailer/confirm_login.rhtml:11 +msgid "the {{site_name}} team" +msgstr "" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "ky person" + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" +"për të ndryshuar, fjalëkalimin,\n" +"abonimet dhe më shumë" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "" + +#: app/views/request/show.rhtml:62 +msgid "to read" +msgstr "për të lexuar" + +#: app/views/request/show.rhtml:106 +msgid "to send a follow up message." +msgstr "" + +#: app/views/request/show.rhtml:45 +msgid "to {{public_body}}" +msgstr "për {{public_body}}" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "përcjell gjënë" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "Indeksim i llojit të panjohur të ngjarjes " + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "arsye e panjohur" + +#: app/models/info_request.rb:814 app/models/info_request_event.rb:333 +msgid "unknown status " +msgstr "status i panjohur" + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "ndërprej abonimin" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "ndërpreji të gjitha abonimet" + +#: app/views/request/show.rhtml:53 +msgid "useful information." +msgstr "informata të dobishëme." + +#: locale/model_attributes.rb:68 +msgid "user" +msgstr "përdoruesi" + +#: locale/model_attributes.rb:66 +msgid "user info request sent alert" +msgstr "shfrytëzuesi info kërkesë dërguar alarm" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "ti" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{date}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" +"apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të ngjashme." + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "{{info_request_user_name}} vetëm:" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} më parë" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "{{public_body_name}} vetëm:" + +#: app/views/public_body/view_email.rhtml:7 +msgid "" +"{{site_name}} sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" + +#: app/models/user.rb:122 +msgid "{{user_name}} (Banned)" +msgstr "" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" +"{{user_name}} ka lënë shënim në kërkesën tënde {{law_used_short}}. Ndiqni " +"këtë vegzë për të parë se çfarë ata shkruan." + +#: app/views/contact_mailer/user_message.rhtml:2 +msgid "{{user_name}} has used {{site_name}} to send you the message below." +msgstr "" + +#: app/views/request/show.rhtml:36 +msgid "" +"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this " +"{{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to " +"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" +msgstr "" + +#: app/views/request/show.rhtml:44 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" + + diff --git a/locale/sq/app__.po b/locale/sq/app__.po new file mode 100644 index 000000000..502bed447 --- /dev/null +++ b/locale/sq/app__.po @@ -0,0 +1,4049 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <bresta@gmail.com>, 2011. +# driton <dritoni.h@gmail.com>, 2011. +# <vbrestovci@gmail.com>, 2011. +# Valon <vbrestovci@gmail.com>, 2011. +# vbrestovci <vbrestovci@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: alaveteli\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-08-05 15:13+0000\n" +"Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app/views/user/set_profile_about_me.rhtml:14 +msgid "" +" This will appear on your WhatDoTheyKnow profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" +"Kjo do të shfaqet në profilin tuaj në InformataZyrtare, për ta bërë më të " +"lehtë për të tjerët që të përfshihen me çfarë jeni duke bërë." + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" +" (pa politikë <strong>llafazane</strong>, lexo <a href=\"%s\">politikat e " +"moderimit</a>)" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" +"<strong>(Durim,</strong> sidomos për fotografi të mëdha, mund të marrë më " +"shum kohë!)" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr "(ti)" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" +"<strong>Shënim:</strong>Do të dërgoj një email. Ndiq udhëzimet në te për të " +"ndryshuar fjalëkalimin tënd." + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr "<strong>Shënim privacie:</strong> Adresa e emailit do t'i jepet" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" +"<strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera " +"(përgjegura)." + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr " Këshillo se si <strong>më së miri të sqarohet</strong> një kërkesë." + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" +" Ide se çfarë <strong>dokumentesh tjera të kërkohen</strong> që mund t'i " +"posedojë institucioni. " + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n" +" You may be able to find the address on their website, or by phoning them up and asking." +msgstr "" +"Nëse e din adresën e emailit për ta përdorur, atëherë të lutem <a " +"href=\"%s\">na e dërgon</a> . Ti mund ta gjen adresën e emailit në ueb " +"sajtin e tyre ose duke ju telefonuar dhe pyetur." + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" +" Përfshij vegzat relevante, si p.sh. te faqja e fushatës, blogu yt apo\n" +" llogaria e twitterit. Ato do të bëhen të klikueshme. \n" +" p.sh." + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already " +"available</strong> on the Internet. " +msgstr "" +"Vegza për informatat e kërkuara, në qoftë se ato <strong> tashmë " +"janë</strong> në dispozicion në internet." + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" +"Propozo mënyra më të mira të <strong>formulim të kërkesës</strong> për të " +"marrë informacion." + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr "Të lutem kyçu ose krijo një llogari të re." + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" +"Trego se si ke <strong>përdorur informacionin,</strong> me ueb vegza nëse " +"është e mundur." + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" +"Sugjero <strong>ku tjetër</strong> kërkuesi mund të gjej informacionin." + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" +"Çfarë jeni duke hulumtuar (hetuar) duke përdor kërkesat për çasje në " +"Informata Zyrtare?" + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" +"Ti tashmë je duke i pranuar me email aktualizimet në lidhje me këtë kërkesë." + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" +"Ti gjithashtu do të pranon email me aktualizimet e reja në lidhje me " +"kërkesën." + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr "bërë nga " + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "" +"nuk ka bërë kërkesa për informata zyrtare duke përdorur këtë ueb faqe." + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr "kur e dërgoni këtë mesazh." + +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request" +msgid_plural "%d Freedom of Information requests" +msgstr[0] "%d Freedom of Information requests" +msgstr[1] "%d Freedom of Information requests" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "'Statistikat e krimit në nivel komune'" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "'Niveli i ndotjes për lumin Drin'" + +#: app/controllers/user_controller.rb:354 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" +"<a href=\"%s\">Shto një shënim</a> (për të ndihmuar kërkuesit ose të tjerët)" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "<a href=\"%s\">A po mungon ndonjë autoritet publik?</a> ." + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" +"<a href=\"%s\">Are you the owner of any commercial copyright on this " +"page?</a>" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" +"<a href=\"%s\">Kërkoni të gjitha</a> ose <a href=\"%s\">të na pyetni ne që " +"të shtoni një</a> ." + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" + +#: app/views/public_body/show.rhtml:50 +msgid "" +"<a href=\"%s\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" +"<a href=\"%s\">Bëj një kërkesë të re për Inforamata Zyrtare</a> te " +"{{public_body_name}}" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" + +#: app/views/request/_followup.rhtml:42 app/views/request/_followup.rhtml:49 +#: app/views/request/show.rhtml:76 app/views/request/show.rhtml:80 +msgid "<a href=\"%s\">details</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/views/request/_followup.rhtml:77 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "<a href=\"%s\">Çfarë është ajo?</a>" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a " +"href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:394 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the text of your request below, then <a href=\"%s\">find the other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they do not hold the information, here is \n" +" <a href=\"%s\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"%s\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>\n" +" " +msgstr "" + +#: app/controllers/request_controller.rb:388 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of " +"<strong>{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:384 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:421 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Faleminderit! Shpresojmë që pritja yte nuk do të jetë shumë e gjatë. " +"</p><p> Ti duhet të merr përgjegje brenda 7 ditë pune, ose të njoftohesh se " +"do të marrë më gjatë ( <a href=\"%s\">details</a> ). </p>" + +#: app/controllers/request_controller.rb:424 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:391 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:494 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph too.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:416 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:279 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:410 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation" +" below saying what you did.</p><p>If you found WhatDoTheyKnow useful, <a " +"href=\"%s\">make a donation</a> to the charity which runs it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:413 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " +"which runs it.</p><p>If you want to try and get the rest of the information," +" here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:277 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjegje ( <a href=\"%s\">detaje</a> ). </p>" + +#: app/controllers/request_controller.rb:275 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:283 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will" +" <strong>appear publicly on the Internet</strong>.</p>" +msgstr "" +"<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhet " +"direkt me temën e kërkesës tënde, të lutem largo çdo adresë sepse do të jetë" +" <strong> publike në internet</strong>. </p>" + +#: app/controllers/request_controller.rb:306 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" +" <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n" +"</p>" +msgstr "" +"<small>Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke " +"\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " +"mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" +"<strong> A mund të kërkoj informatë për veten time?</strong>\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><a href=\"%s\">Jo! (Kliko këtu për detaje)</a>" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations" +" made by Tony Bowden, typing the name as in the URL." +msgstr "" +"<strong><code>komentuar_nga:filan_fisteku</code></strong> për të kërkuar " +"shenimet nga Filan Fisteku, shtypeni emrin si në URL." + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" +"<strong><code>tipi_i_fajjlit:pdf</code></strong> për t'i gjetë të gjitha " +"përgjegjet me PDF të bashkangjitur. Apo provo këto: " +"<code>{{list_of_file_extensions}}</code>" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" +"<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " +"caktuar, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " +"kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_te:zyra_e_kryeministrit</code></strong> për të kërkuar" +" kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në " +"URL." + +#: app/views/general/search.rhtml:126 +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"%s\">table of " +"statuses</a> below." +msgstr "" +"<strong><code>statusi:</code></strong> për të kërkuar në bazë të statusit të" +" kërkesës apo historisë së statusit, shih <a href=\"%s\">tabelën e " +"statuseve</a> më poshtë." + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only want results them all present." +msgstr "" +"<strong><code>etiketa:charity</code></strong> për të gjetur të gjitha institucionet apo kërkesat me etiketën e dhënë. Mund të përfshihen edhe disa etiketa, \n" +" dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" +" prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse do që vetëm ato te përfshihen." + +#: app/views/general/search.rhtml:127 +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"%s\">table of varieties</a> below." +msgstr "" +"<strong><code>variantet:</code></strong> për të zgjedhur tipin e asaj që do " +"të kërkosh, shih <a href=\"%s\">tabelën e varianteve</a> më poshtë." + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/request/_followup.rhtml:82 +msgid "" +"<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" + +#: app/views/request/details.rhtml:12 +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" +"a good internal knowledge of user behaviour on WhatDoTheyKnow. How, \n" +"why and by whom requests are categorised is not straightforward, and there will\n" +"be user error and ambiguity. You will also need to understand FOI law, and the\n" +"way authorities use it. Plus you'll need to be an elite statistician. Please\n" +"<a href=\"%s\">contact us</a> with questions." +msgstr "" +"<strong>Caveat emptor!</strong> Për të përdorur këto shenime në mënyrë të ndershme, ju duhet njohuri e brendshme e pikënisjes së përdoruesve të InformataZyrtare. Si, \n" +"pse dhe nga kush kategorizohen kërkesat nuk është diçka e vetëkuptueshme pra edhe mund të ketë gabime dhe paqartësi. Gjithashtu duhet ta kuptoni ligjin për qasje në dokumente publike, si dhe mënyrën se si institucionet e zbatojnë atë. Plus duhet të jeni ekspert i statistikës. Ju lutem\n" +"<a href=\"%s\">na kontaktoni</a> me pyetje." + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "Është kërkuar<strong>sqarim</strong> " + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" +"<strong>Shenim:</strong>\n" +" Do të dërgojmë email në adresën tënde të re. Përcjelli\n" +" udhëzimet për të konfirmuar ndërrimin e emailit." + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" +"<strong>Shenim:</strong> Je duke dërguar email vetëvetes, me gjasë\n" +" për të provuar se si funksionon." + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" +"<strong>Shenim privacie:</strong> Nëse do të kërkosh informatë private për\n" +" veten tënde <a href=\"%s\">kliko këtu</a>." + +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" +" wherever you do something on WhatDoTheyKnow." +msgstr "" +"<strong>Shenim privacie:</strong> Fotografia yte do të tregohet publikisht në internet, \n" +" kudo që vepron diçka në InformataZyrtare." + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" +"<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjegje do të" +" paraqitet publikisht në këtë ueb faqe " + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "<strong>Disa nga informacionet</strong> janë dërguar" + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "<strong>Detajet teknike:</strong>" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "<strong>Falënderoju</strong> autoritet publik ose " + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." +msgstr "" + +#: app/views/request/show.rhtml:84 +msgid "<strong>did not have</strong> the information requested." +msgstr "<strong>nuk e kanë</strong> informacionin e kërkuar." + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>kërko</strong> në ueb sajtin e autoritetit ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" +"Një <strong>përmbledhje</strong> e përgjegjes nëse ate e keni marrë me " +"postë." + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "Përgjegja do të dërgohet <strong>me postë</strong>" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "Për ty:" + +#: app/models/info_request_event.rb:288 +msgid "Acknowledgement" +msgstr "Konfirmim për pranim " + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "Vepro sipas asaj që ke marrë vesh" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "Shto një shënim për" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" +"Shto shenim në kërkesën tënde me citate të zgjedhura, apo\n" +" me <strong>përmbledhje të përgjegjes</strong>." + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "Niveli i administratorit nuk është i përfshir në listë" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "URL për administrim:" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "Këshilla te avansuara për kërkim" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain" +" about it if not." +msgstr "" + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" + +#: app/models/info_request_event.rb:304 +msgid "All information sent" +msgstr "Të gjitha informatat janë dërguar" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "Sipas alfabetit" + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" +"Edhe pse të gjitha përgjegjet publikohen automatikisht, ne varemi nga ti, si" +" kërkues i tyre, për t'i vlerësuar ato." + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "Një <strong>mesazh gabimi</strong> është marrë" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "Shënimet" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" +"Shënimet shërbejne për të gjithë, duke përfshirë edhe ty, që të mund të " +"ndihmoj kërkuesit me kërkesën e tyre. Për shembull:" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "Çdokush:" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not" +" suitable for general enquiries." +msgstr "" +"Kërko dokumente apo informata <strong>specifike</strong>, kjo faqe nuk është" +" e përshtatshme për pyetje të përgjithshme." + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" +"Në fund të kësaj faqeje, shkruaji atyre për të kërkuar nga ata që t'i scannojnë\n" +" (<a href=\"%s\">më shumë detaje</a>)." + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "Attachment (opcionale):" + +#: app/models/info_request.rb:776 +msgid "Awaiting classification." +msgstr "Në pritje të klasifikimit." + +#: app/models/info_request.rb:796 +msgid "Awaiting internal review." +msgstr "Në pritje për rishqyrtim intern." + +#: app/models/info_request.rb:778 +msgid "Awaiting response." +msgstr "Në pritje të përgjegjes." + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" +"Shfleto <a href=\"%s\">kërkesa të tjera</a> për shembuj se si të formulosh " +"kërkesën tënde." + +#: app/views/request/new.rhtml:41 +msgid "" +"Browse <a href='%s'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" +"Shfleto <a href='%s'>kërkesa të tjera</a> për '{{public_body_name}}' për " +"shembuj se si të formulosh kërkesën tënde." + +#: app/views/request/show.rhtml:79 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" +"Sipas ligjit, në të gjitha rrethanat, {{public_body_link}} është duhur të " +"përgjegjet deri tani" + +#: app/views/request/show.rhtml:71 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" +"Sipas ligjit, {{public_body_link}} do të duhej të ishte përgjegjur " +"<strong>menjëherë</strong> dhe" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" +" it</a>." +msgstr "" +"Nuk u gjet? <a href=\"%s\">Shfleto të gjtiha</a> apo <a href=\"%s\">kërko që" +" të shtohet</a>." + +#: app/controllers/track_controller.rb:143 +msgid "Cancel a {{site_name}} alert" +msgstr "Anulo njoftimet për {{site_name}}" + +#: app/controllers/track_controller.rb:173 +msgid "Cancel some {{site_name}} alerts" +msgstr "Anulo disa njoftime për {{site_name}}" + +#: locale/model_attributes.rb:46 +msgid "CensorRule|Last edit comment" +msgstr "CensorRule | Redaktimi i fundit i koment" + +#: locale/model_attributes.rb:45 +msgid "CensorRule|Last edit editor" +msgstr "CensorRule | Redaktimi i fundit të editorit" + +#: locale/model_attributes.rb:44 +msgid "CensorRule|Replacement" +msgstr "CensorRule | Zëvendësimi" + +#: locale/model_attributes.rb:43 +msgid "CensorRule|Text" +msgstr "CensorRule | Teksti" + +#: lib/public_body_categories_en.rb:14 +msgid "Central government" +msgstr "Qeveria" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" +msgstr "Ndrysho fotografinë e profilit" + +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at WhatDoTheyKnow.com" +msgstr "Ndrysho tekstin për ty në profilin tënd në InformataZyrtare.org" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "Ndrysho email adresën tënde" + +#: app/controllers/user_controller.rb:249 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "Ndrysho fjalëkalimin tënd" + +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/controllers/user_controller.rb:203 +msgid "Change your password {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd {{site_name}}" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "Regjistrimi i organizatës" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." + +#: app/views/request/preview.rhtml:7 +#: app/views/request/followup_preview.rhtml:14 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" +"Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" + +#: app/models/info_request_event.rb:326 +msgid "Clarification" +msgstr "Sqarim" + +#: app/models/info_request_event.rb:290 +msgid "Clarification required" +msgstr "Kërkohet sqarim" + +#: app/controllers/request_controller.rb:334 +msgid "Classify an FOI response from " +msgstr "Klasifiko një përgjegje për kërkesë për informatë zyrtare prej " + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" +"Kliko në vegzën më poshtë për të dërguar një mesazh te {{public_body_name}} " +"duke u thënë atyre që të përgjegjen në kërkesën tënde. Ti mund të dëshirosh " +"të kërkosh rishqyrtim intern, duke u kërkuar atyre për të gjetur se pse " +"përgjegja ndaj kërkesës ka qenë kaq e ngadaltë." + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" +"Kliko në vegzën e mëposhtme për t'i dërguar mesazh {{public_body}} për t'ua " +"përkujtuar që t'i përgjigjen kërkesës tënde." + +#: locale/model_attributes.rb:28 +msgid "Comment|Body" +msgstr "Komenti | Body" + +#: locale/model_attributes.rb:27 +msgid "Comment|Comment type" +msgstr "Koment|Lloji i komentit" + +#: locale/model_attributes.rb:30 +msgid "Comment|Locale" +msgstr "Koment | Lokale" + +#: locale/model_attributes.rb:29 +msgid "Comment|Visible" +msgstr "Koment | i/e dukshëm" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" +"Konfirmo që doni të merrni email kur një kërkesë për informata zyrtare ka " +"sukses" + +#: app/controllers/request_controller.rb:295 +msgid "Confirm your FOI request to " +msgstr "Konfirmo kërkesën tënde për " + +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 +msgid "Confirm your account on {{site_name}}" +msgstr "Konfirmo llogarinë tënde në {{site_name}}" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "Konfirmo shënimin tënd për {{info_request_title}}" + +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on WhatDoTheyKnow.com" +msgstr "Konfirmo adresën e email-it tënd të ri në InformataZyrtare.org" + +#: app/views/layouts/default.rhtml:146 +msgid "Contact {{site_name}}" +msgstr "Kontakt {{site_name}}" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" +"Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga " +"sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "Preje fotografinë e profilit tënd" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" + +#: app/views/request/show.rhtml:61 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}," +" they must respond promptly and" +msgstr "" +"Momentalisht <strong>duke pritur përgjegje</strong> nga " +"{{public_body_link}}, ata duhet të përgjegjen menjëherë dhe" + +#: app/models/info_request_event.rb:294 +msgid "Deadline Extended" +msgstr "Afati është vazhduar" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "I/e nderuar " + +#: app/models/info_request.rb:780 +msgid "Delayed." +msgstr "Vonuar." + +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 +msgid "Delivery error" +msgstr "Gabim gjatë dorëzimit" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "Detajet e kërkesës" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "Mos mendove këtë: {{correction}}" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "Shkarko attachment-in origjinal" + +#: app/views/request/_followup.rhtml:88 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" +"Redakto dhe shto <strong>më shumë detaje</strong> në mesazhin e mësipërm,\n" +" duke shpjeguar se pse nuk je i kënaqur me përgjegjen e tyre." + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "Redakto versionin e gjuhës:" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr " tekstin për vetën tënde" + +#: app/models/user.rb:132 +msgid "Either the email or password was not recognised, please try again." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri." + +#: app/models/user.rb:134 +msgid "" +"Either the email or password was not recognised, please try again. Or create" +" a new account using the form on the right." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri. " +"Ose krijo një llogari të re duke përdor formën në të djathtë." + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "Email adresa nuk duket si një adresë e vlefshme" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "M'i dërgo me email përgjegjet e reja të suksesshme" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "Abonimet me email" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing" +" lane</strong>" +msgstr "" +"Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim " +"rruge</strong>" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" +"Shkruaj përgjegjen tënde më poshtë. Ti mund të bashkëangjitësh një fajll " +"(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " +"shumë)." + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "\"Environmental Information Regulations\" kërkesa të bëra" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" +"\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë" +" ueb sajt" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "Historiku i ngjarjeve" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "Detajet e historikut të ngjarjeve" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe, përfshi edhe <strong>emri yt</strong>, \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: locale/model_attributes.rb:61 +msgid "EximLogDone|Filename" +msgstr "EximLogDone|Filename" + +#: locale/model_attributes.rb:62 +msgid "EximLogDone|Last stat" +msgstr "EximLogDone|Statistika e fundit" + +#: locale/model_attributes.rb:16 +msgid "EximLog|Line" +msgstr "EximLog|Linja" + +#: locale/model_attributes.rb:15 +msgid "EximLog|Order" +msgstr "EximLog|Order" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "Kërkesat për Informata Zyrtare" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "Konvertimi i imazhit në PNG dështoi" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need " +"%{width}x%{height}" +msgstr "Kyçu ose krijo llogari " + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "Së pari," + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Së pari, shkruani <strong>emrin e autoritetit publik </strong> <br> prej të " +"cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të " +"përgjegjen</strong> ( <a href=\"%s\">pse?</a> )." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "Kliko këtë vegzë për të parë kërkesën:" + +#: app/models/info_request_event.rb:330 +msgid "Follow up" +msgstr "" + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "Mesazhet vazhduese të kërkesës ekzistuese dërgohen te " + +#: app/views/request/_followup.rhtml:16 +msgid "" +"Follow ups and new responses to this request have been stopped to prevent spam. Please\n" +" <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." +msgstr "" + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" +"Për një arsye të panjohur, nuk është e mundur për të bërë një kërkesë tek ky" +" autoritet." + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot make\n" +" a request to it." +msgstr "" +"Ligji mbi lirinë e informacionit nuk ka të bëjë me këtë autoritet, kështu që" +" ju nuk mund të bëjë një kërkesë për të." + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "Ligji për qasje në dokumente publike nuk aplikohet më për" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "Kërkesa për Informatë zyrtare është bërë" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "Kërkesat për Informata Zyrtare bërë nga" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" +"Nga faqja e kërkesës, provo të përgjegjesh në një mesazh të caktuar, më parë se të\n" +" shkruash një përgjegje të përgjithshme. Nëse të duhet të shkruash përgjegje të përgjithshme, dhe e di\n" +" emailin ku duhet ta drejtosh, atëherë të lutem <a href=\"%s\">dërgoje te ne</a>." + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "JEPI DETAJET PËR ANKESËN TËNDE KËTU" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "Shko te <a href=\"%s\">ballina</a> </li>" + +#: app/models/info_request_event.rb:292 +msgid "Handled by post" +msgstr "Do të trajtohet me postë" + +#: app/models/info_request.rb:794 +msgid "Handled by post." +msgstr "Do të trajtohet me postë." + +#: app/views/layouts/default.rhtml:121 +msgid "Hello!" +msgstr "Përshëndetje" + +#: app/views/layouts/default.rhtml:118 +msgid "Hello, {{username}}!" +msgstr "Përshëndetje, {{username}}!" + +#: app/views/layouts/default.rhtml:113 +msgid "Help" +msgstr "Ndihmë" + +#: app/views/request/details.rhtml:50 +msgid "" +"Here <strong>described</strong> means when a user selected a status for the request, and\n" +"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" +"WhatDoTheyKnow for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"%s\">search tips</a> for description of the states." +msgstr "" +"Këtu <strong>përshkruar</strong> nënkupton kur një përdorues ka zgjedhë statusin e kërkesës, dhe\n" +"ngjarja e fundit ka azhuruar statusin me këtë vlerë. <strong>llogaritur</strong> në këtë rast është vënë nga \n" +"InformataZyrtare për ngjarjet e ndërmjeme, të cilave nuk u është dhënë\n" +"përshkrim eksplicit nga përdoruesi. Shih <a href=\"%s\">këshillat e kërkimit</a> për përshkrimet e statusave." + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" + +#: locale/model_attributes.rb:58 +msgid "Holiday|Day" +msgstr "Festa | Dita" + +#: locale/model_attributes.rb:59 +msgid "Holiday|Description" +msgstr "Festa | Përshkrimi" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "Ueb sajti i autoritetit" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "" + +#: app/views/request/_followup.rhtml:71 +msgid "I am asking for <strong>new information</strong>" +msgstr "Unë jam duke kërkuar <strong>informacion të ri</strong>" + +#: app/views/request/_followup.rhtml:76 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "Po kërkoj <strong>rishqyrtimin intern</strong>" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "Nuk më pëlqejnë këto kërkesa &mdash më jep disa të tjera!" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "Nuk dua të pastroj më tutje!" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "Ddo të doja të <strong>tërheqë këtë kërkesë</strong>" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" +"Akoma po e <strong>pres</strong> informatën time \n" +" <small>(ndoshta ke marrë konfirmim)</small>" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "Akoma po e <strong>pres</strong> rishqyrtimin intern" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "Po pres përgjegje nga <strong>rishqyrtimi intern</strong>" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "Kam marrë <strong>të gjithë informacionin</strong>" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "Kam marrë <strong>disa prej informatave</strong>" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "Kam marrë një <strong>mesazh gabimi</strong>" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a " +"href=\"%s\">contact us</a>." +msgstr "" +"Nëse adresa është e gabuar, ose ti e din një adresë më të mirë, të lutem <a " +"href=\"%s\">na kontakto</a> ." + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" +"Nëse kjo është e pasakt, apo do t'i dërgosh përgjegje të vonuar në këtë kërkesë\n" +"apo një email me një temë tjetër te {{user}}, atëherë \n" +"dërgo email në {{contact_email}} për ndihmë." + +#: app/views/request/_followup.rhtml:21 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" +"Nëse je i pakënaqur me përgjegjen nga\n" +" institucioni publik, ke të drejtën të\n" +" ankohesh (<a href=\"%s\">detajet</a>)." + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "Nëse ende po ka probleme, të lutem <a href=\"%s\">na kontakto</a> ." + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" +"Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të " +"parë kërkesën." + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" +"Nëse je duke mendu me përdor pseudonim, të lutem <a href=\"%s\">lexo këtë së" +" pari</a> ." + +#: app/views/request/show.rhtml:98 +msgid "If you are {{user_link}}, please" +msgstr "Nëse ti je {{user_link}}, të lutem" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" +"Nëse mund të skanoni ose fotografoni përgjegjen, dhe të <strong>na e dërgoni" +" që ne ta ngarkojme ate.</strong>" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" +"Nëse keni marrë këtë email <strong>më shumë se gjashtë muaj më " +"parë,</strong> atëherë kjo vegzë për kyçje nuk do të funksionojë më. Të " +"lutem provon duke bërë atë që keni vepruar nga fillimi." + +#: app/controllers/request_controller.rb:430 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know" +" it has been withdrawn." +msgstr "" + +#: app/views/user/signchangepassword_confirm.rhtml:10 +#: app/views/user/signchangeemail_confirm.rhtml:11 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" +"Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke \"junk " +"mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, mesazhet tona " +"janë të shenjuara në këtë mënyrë." + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" +"Nëse do që ne ta heqim këtë leçitje, atëherë të lutem\n" +"<a href=\"/help/contact\">na kontakto</a> duke i dhënë arsyet.\n" + +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to WhatDoTheyKnow" +msgstr "Nëse je i ri në InformataZyrtare" + +#: app/views/user/_signin.rhtml:7 +msgid "If you've used WhatDoTheyKnow before" +msgstr "Nëse e ke përdorë InformataZyrtare më parë" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" +"Nëse shfletuesi yt është vendosur për të pranuar \"cookies\" dhe ju jeni " +"duke parë këtë mesazh, atëherë me sa duket ka gabim në serverin tonë." + +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "IncomingMessage|Cached attachment text clipped" + +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Cached main body text folded" +msgstr "IncomingMessage|Cached main body text folded" + +#: locale/model_attributes.rb:66 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "IncomingMessage|Cached main body text unfolded" + +#: locale/model_attributes.rb:39 +msgid "InfoRequestEvent|Calculated state" +msgstr "InfoRequestEvent|Calculated state" + +#: locale/model_attributes.rb:38 +msgid "InfoRequestEvent|Described state" +msgstr "InfoRequestEvent|Described state" + +#: locale/model_attributes.rb:36 +msgid "InfoRequestEvent|Event type" +msgstr "InfoRequestEvent|Event type" + +#: locale/model_attributes.rb:40 +msgid "InfoRequestEvent|Last described at" +msgstr "InfoRequestEvent|Last described at" + +#: locale/model_attributes.rb:37 +msgid "InfoRequestEvent|Params yaml" +msgstr "InfoRequestEvent|Params yaml" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Prominence" +msgstr "InfoRequestEvent|Prominence" + +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Allow new responses from" +msgstr "InfoRequest|Lejo përgjegje të reja prej" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Awaiting description" +msgstr "InfoRequest|Awaiting description" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Described state" +msgstr "InfoRequest|Described state" + +#: locale/model_attributes.rb:88 +msgid "InfoRequest|Handle rejected responses" +msgstr "InfoRequest|Handle rejected responses" + +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Law used" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Prominence" +msgstr "Info të kërkesës | Rëndësi" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Title" +msgstr "Info të kërkesës | Titulli" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Url title" +msgstr "Info të kërkesës | Titulli Url" + +#: app/models/info_request_event.rb:298 +msgid "Information not held" +msgstr "Informata nuk mbahet këtu" + +#: app/models/info_request.rb:784 +msgid "Information not held." +msgstr "Informata nuk mbahet këtu." + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" + +#: app/models/info_request_event.rb:306 +msgid "Internal review acknowledgement" +msgstr "" + +#: app/models/info_request_event.rb:323 +msgid "Internal review request" +msgstr "Kërkesë për rishqyrtim intern" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies\",\n" +"or cannot do so. If you can, please enable cookies, or try using a different\n" +"browser. Then press refresh to have another go." +msgstr "" +"Kjo mund të jetë sepse shfletuesi yt nuk është i vendosur të pranojë " +"\"cookies\", ose nuk mund ta bëjë këtë. Nëse ke mundësi, të lutem aktivizoni" +" \"cookies\", ose përdor një shfletues (browser) tjeter. Pastaj shtyp " +"\"refresh\" për të provuar edhe një herë." + +#: app/views/user/show.rhtml:62 +msgid "Joined WhatDoTheyKnow in" +msgstr "Je anëtarësuar në InformataZyrtare" + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "Bashkangjitur më" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Mbaje <strong>të fokusuar</strong>, gjasat janë më të mëdha që të marrësh " +"përgjegjen e dëshiruar (<a href=\"%s\">pse?</a>)." + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "Autoriteti i shikuar së fundi:" + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "Kërkesa e shikuar së fundi:" + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" +"Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe emrin e " +"shfletuesit (browser-it) dhe versionin e tij. Gjithashtu na trego për emrin " +"e sistemit operativ dhe versionin." + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "Vegza e kësaj kërkese" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "Listo të gjitha autoritetet (CSV)" + +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" +msgstr "Lokale dhe regjionale" + +#: app/models/info_request.rb:782 +msgid "Long overdue." +msgstr "Shumë e vonuar." + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "Bëjë një kërkesë {{law_used_short}} për '{{public_body_name}}'" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:86 +msgid "Make and explore Freedom of Information requests" +msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:106 +msgid "Make request" +msgstr "Bëjë kërkesë" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "Bëj kërkesën tënde" + +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using WhatDoTheyKnow contact form, " +msgstr "Mesazhi i dërguar duke përdorur kontakt formën e InformataZyrtare," + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "Mungojnë të dhënat për '" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "Më shumë për këtë autoritet" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Më shumë autoritete" + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Më shumë kërkesa te suksesshme" + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "Kërkesa ime është <strong>refuzuar</strong>" + +#: app/views/layouts/default.rhtml:110 +msgid "My requests" +msgstr "Kërkesat e mia" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "Emri nuk mund të jetë i zbrazët" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "Emri është i zënë" + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "Email i ri:" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "Email adresa e re nuk duket si një adresë e vlefshme" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "Fjalëkalim i ri:" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "Fjalëkalim i ri: (përsërite)" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "Përgjegje e re për kërkesën tënde" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "Përgjegje e re për {{law_used_short}} kërkesën" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "Rezultatet më të reja të parat" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "Pastaj, preje foton tënde >>" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "Ende nuk ka kërkesa të këtij lloji." + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "Nuk gjetëm kërkesa të ngjashme." + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" +"Ende askush nuk ka bërë ndonjë kërkesë te {{public_body_name}} duke përdorur" +" këtë faqe." + +#: app/views/request/_request_listing.rhtml:2 +#: app/views/public_body/_body_listing.rhtml:2 +msgid "None found." +msgstr "Asnjë nuk u gjet." + +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +#: app/views/user/signchangeemail_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "Kontrollo emailin tënd!" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "Tani shiko shenimin tënd" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "Shiko vazhdimësinë e muhabetit" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "Shiko mesazhin tënd ku ke kërkuar rishqyrtim intern" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "Shiko kërkesën tënde" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "Ose hiqni fotografinë ekzistuese" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " +"përdorur {{site_name}}" + +#: app/controllers/request_controller.rb:407 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "Na vjen keq që kërkesa yte është refuzuar. Ja se çfarë të bëhet tani." + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "Emali i vjetër:" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" +"Adresa e emailit të vjetër nuk është e njëjtë me adresën e llogarisë me të " +"cilën jeni kyçur për momentin" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "Email adresa e vjetër nuk duket si një adresë e vlefshme" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "Në këtë faqe" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." + +#: locale/model_attributes.rb:21 +msgid "OutgoingMessage|Body" +msgstr "OutgoingMessage | Body" + +#: locale/model_attributes.rb:24 +msgid "OutgoingMessage|Last sent at" +msgstr "OutgoingMessage | Së fundi është dërguar në" + +#: locale/model_attributes.rb:23 +msgid "OutgoingMessage|Message type" +msgstr "OutgoingMessage|Message type" + +#: locale/model_attributes.rb:22 +msgid "OutgoingMessage|Status" +msgstr "OutgoingMessage|Status" + +#: locale/model_attributes.rb:25 +msgid "OutgoingMessage|What doing" +msgstr "OutgoingMessage|What doing" + +#: app/models/info_request.rb:788 +msgid "Partially successful." +msgstr "Pjesërisht e suksesshme." + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "Fjalëkalimi nuk është i saktë" + +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "Fjalëkalimi: (përsërite)" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "Fotografia yte:" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "Planet dhe masat administrative që ndikojnë këto çështje" + +#: app/controllers/request_game_controller.rb:40 +msgid "Play the request categorisation game" +msgstr "Luaj në lojën e kategorizimit të kërkesave" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "Luaj lojën e kategorizimit të kërkesave!" + +#: app/views/request/show.rhtml:94 +msgid "Please" +msgstr "Të lutem" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "Të lutem <a href=\"%s\">na kontakto</a> që neve ta rregullojme ate." + +#: app/views/request/show.rhtml:45 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" +"Të lutem <strong> përgjegju pyetjes së mësipërme</strong> që ne të dimë nëse" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" +"Të lutem <strong>shko te kërkesa</strong>, dhe na e bëj\n" +" medije nëse ka pasë informatë në përgjegjen e fundit drejtuar atyre." + +#: app/views/request/_followup.rhtml:28 +msgid "" +"Please <strong>only</strong> write messages directly relating to your \n" +"\t\t\t\trequest {{request_link}}. If you would like to ask for information\n" +"\t\t\t\tthat was not in your original request, then <a href=\"%s\">file a new request</a>." +msgstr "" + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "Të lutem kërko vetëm për informacion në lidhje me mjedisin" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" +"Të lutem kontrollo që URL (dmth. kodin e gjatë me shkronja e numra) është " +"kopjuar në rregull nga emaili yt." + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "Të lutem zgjedh një fajll që përmban foton tënde." + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "Të lutem zgjedh llojin e përgjegjes." + +#: app/controllers/request_controller.rb:341 +msgid "" +"Please choose whether or not you got some of the information that you " +"wanted." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for WhatDoTheyKnow\n" +"from " +msgstr "" +"Të lutem klikoni në vegzën e më poshtëme për të konfirmuar se dëshironi të " +"ndryshoni adresën e emailit që ju përdorni për InformataZyrtare nga" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" +"Të lutem kliko në vegzën e mëposhëtme për të konfirmuar email adresën tënde." + +#: app/models/info_request.rb:127 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" +"Të lutem përshkruaj në lëndë më gjerësisht se për çfarë është kërkesa. Nuk " +"ka nevojë të shkruhet që bëhet fjalë për kërkesë për qasje në informata, ajo" +" shtohet automatikisht." + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" +"Të lutem mos ngarko fotografi ofenduese. Ne do t'i largojmë imazhet që ne i " +"konsiderojmë të papërshtatshme." + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "Të lutem aktivizo \"cookies\" në shfletues për të vazhduar" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "Të lutem shkruaj fjalëkalimin" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "Të lutem shkruaj lëndën" + +#: app/models/info_request.rb:35 +msgid "Please enter a summary of your request" +msgstr "Të lutem shkruaj një përmbledhje të kërkesës tënde" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "Të lutem shkruaj adresën korrekte të emailit" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "Të lutem shkruaj mesazhin që dëshiron do ta dërgosh" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "Të lutem shkruaj shënimin tënd" + +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" +msgstr "Të lutem shkruaj adresën e emailit tënd" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "Të lutem shto mesazhin për përcjellje" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "Të lutem shkruaj letrën e kërkesës për informatë " + +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" +msgstr "Të lutem shkruaj emrin tënd" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "Të lutem shkruaj adresën e re të emailit " + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "Të lutem shkruaj adresën e vjetër të emailit " + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "Të lutem shkruaj fjalëkalimin tënd" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" +"Të lutem shkruaj hollësi spjeguese se për çfarë arsye po kërkon rishqyrtim" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" + +#: app/models/info_request.rb:124 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" +"Të lutem bëje përmbledhjen sa më shkurt, sikurse në lëndën (subjektin) e " +"emailit. Mund të shkruash një togfjalësh në vend të një fjalie të plotë." + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, <strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting unrelated information." +msgstr "" +"Të lutem kërko vetëm informata që hyjnë në këto kategori, <strong>mos e humb\n" +" kohën tënde</strong> apo kohën e institucionit duke kërkuar informata që s'kanë të bëjnë me të." + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</strong>\n" +"if they are successful yet or not." +msgstr "" +"Të lutem selektoi të gjitha kërkesat një pas një, dhe <strong>bëje të njohur për të gjithë</strong>\n" +"nëse kanë qenë të suksesshme deri tash apo jo." + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" +"Te lutem nënshkruaj në fund me emrin tënd, ose ndrysho \"% {signoff}\" " +"nënshkrimin" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "Të lutem kyçu si " + +#: app/controllers/request_controller.rb:723 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" +"Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjegjen " +"tënde." + +#: app/controllers/request_controller.rb:427 +msgid "Please use the form below to tell us more." +msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" +"Të lutem përdor këtë adresë të emailit për të gjitha përgjegjet në këtë " +"kërkesë:" + +#: app/models/info_request.rb:36 +msgid "Please write a summary with some text in it" +msgstr "Të lutem shkruaj përmbledhjen" + +#: app/models/info_request.rb:121 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj përmbledhjen duke përdorur kombinim të germave të mëdha dhe" +" të vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/controllers/request_controller.rb:416 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters." +" This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj mesazhin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may" +" be useful." +msgstr "" + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "Posto shënimin" + +#: locale/model_attributes.rb:56 +msgid "PostRedirect|Circumstance" +msgstr "PostRedirect|Circumstance" + +#: locale/model_attributes.rb:54 +msgid "PostRedirect|Email token" +msgstr "PostRedirect|Email token" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Post params yaml" +msgstr "PostRedirect|Post params yaml" + +#: locale/model_attributes.rb:55 +msgid "PostRedirect|Reason params yaml" +msgstr "PostRedirect|Reason params yaml" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Token" +msgstr "PostRedirect|Token" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Uri" +msgstr "PostRedirect|Uri" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "Shiko shenimin e ri në '{{info_request_title}}'" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "Shiko shenimin tënd" + +#: app/views/request/_followup.rhtml:99 +msgid "Preview your message" +msgstr "Shiko mesazhin tënd" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "Shiko kërkesën tënde publike" + +#: locale/model_attributes.rb:18 +msgid "ProfilePhoto|Data" +msgstr "ProfilePhoto|Data" + +#: locale/model_attributes.rb:19 +msgid "ProfilePhoto|Draft" +msgstr "ProfilePhoto|Draft" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "Autoritetet publike - {{description}}" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" +"Autoritetet publike prej {{start_count}} tek {{end_count}} prej " +"{{total_count}} për {{user_search_query}}" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "PublicBody |Germa e parë" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "PublicBody |Ballina" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "PublicBody | Redaktimi i fundit i komentit" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "PublicBody | Redaktimi i fundit editor" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "PublicBody |Emri" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "PublicBody |Shënime" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "PublicBody | Skema e publikimit" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "PublicBody |Emaili me kërkesë" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "PublicBody |Emri i shkurtë" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "PublicBody |URL emri" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "PublicBody |Versioni" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "Skema e publikimit" + +#: locale/model_attributes.rb:49 +msgid "RawEmail|Data binary" +msgstr "RawEmail |Të dhënat binare" + +#: locale/model_attributes.rb:48 +msgid "RawEmail|Data text" +msgstr "RawEmail | Teksti i të dhënave" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "Ri edito këtë shënim" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "Ri-edito këtë mesazh" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "Ri-edito këtë kërkesë" + +#: app/views/general/search.rhtml:137 +msgid "" +"Read about <a href=\"%s\">advanced search operators</a>, such as proximity " +"and wildcards." +msgstr "" +"Lexo rreth <a href=\"%s\">kërkimit të avansuar të operatorëve</a> , të tilla" +" si afërsia dhe gjithëpërfshirëse." + +#: app/views/layouts/default.rhtml:112 +msgid "Read blog" +msgstr "Lexo blog-un" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" +"Lexoni këtë para se të shkruani {{info_request_law_used_full}} kërkesën" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "Rezultatet e përshkruara së fundi radhiti të parat" + +#: app/controllers/request_controller.rb:134 +msgid "Recently sent Freedom of Information requests" +msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "Kërkesat e dërguara së fundi" + +#: app/controllers/request_controller.rb:139 +msgid "Recently successful responses" +msgstr "Përgjegjet e marra së fundi" + +#: app/models/info_request_event.rb:300 +msgid "Refused" +msgstr "Refuzuar" + +#: app/models/info_request.rb:786 +msgid "Refused." +msgstr "Refuzuar." + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" +"Me mbaj mend </label> (të mban të kyçur më gjatë\n" +" mos e përdor në kompjuter publik) " + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "Pergjegju këtij mesazhi" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "Raporto abuzim" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "Kërko një rishqyrtim intern" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "Kërko një rishqyrtim intern prej" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "Kërkesa është larguar (fshirë)" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" +"Kërkesë dërguar te {{public_body_name}} nga {{info_request_user}} me " +"{{date}}." + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "" +"Kërkuar nga {{public_body_name}} nga {{info_request_user}} me {{date}}" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "Përgjegju me email" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "Përgjegju kërkesës" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "Përgjegju kërkesës për Informata Zyrtare" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "Përgjegju duke përdorur uebin" + +#: app/views/request/show.rhtml:70 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show.rhtml:78 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "Përgjegje për kërkesën tënde" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "Përgjegja:" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "Faqja e rezultateve {{page_number}}" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "Ruaj" + +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +msgid "Search" +msgstr "Kërko" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdoruesit" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." + +#: app/controllers/user_controller.rb:330 +msgid "Send a message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "Dërgo përgjegje publike te" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "Dërgo mesazh" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "Dërgo mesazh te" + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "Dërgo" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "Vendos fotografinë e profilit tënd" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "Emri i shkurtë është i zënë" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "Shfaqi rezultatet më të rëndësishme" + +#: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 +msgid "Show only..." +msgstr "Shfaq vetëm..." + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "Kyçu" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "Kyçu ose krijo një llogari të re" + +#: app/views/layouts/default.rhtml:122 +msgid "Sign in or sign up" +msgstr "Kyçu ose Ç'kyçu" + +#: app/views/layouts/default.rhtml:119 +msgid "Sign out" +msgstr "Ç'kyçu" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "Regjistrohu" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "Kërkesa të ngjashme" + +#: app/models/info_request_event.rb:302 +msgid "Some information sent" +msgstr "Disa informata janë dërguar" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"WhatDoTheyKnow.com from " +msgstr "" +"Dikush, ndoshta ti, u përpoq të ndryshojë adresën e emailit në " +"InformataZyrtare.org nga" + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "Shënim të veçantë për këtë autoritet!" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "Ende në pritje të <strong>rishqyrtimit intern</strong>" + +#: app/views/request/preview.rhtml:18 +#: app/views/request/followup_preview.rhtml:23 +msgid "Subject:" +msgstr "Lënda:" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "Dërgo" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "Dërgo statusin" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "Kërkesat e suksesshme për Informata Zyrtare" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "Përgjegjet e suksesshme" + +#: app/models/info_request.rb:790 +msgid "Successful." +msgstr "Suksesshme." + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the " +"information</strong>." +msgstr "" +"Sugjero si kërkuesi mund të gjen pjesën <strong>tjetër të " +"informacionit.</strong>" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "Përmbledhje:" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "Tabela e statuseve" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "Etiketat:" + +#: app/controllers/request_game_controller.rb:50 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "Faleminderit që keni bërë një shënim!" + +#: app/controllers/request_controller.rb:729 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" +"Faleminderit që i jeni përgjegjur kësaj kërkese për informata zyrtare. " +"Përgjegja yte është publikuar më poshtë, si dhe vegza për përgjegjen tënde i" +" është derguar me email " + +#: app/controllers/request_controller.rb:373 +msgid "" +"Thank you for updating the status of the request '<a " +"href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " +"for you to classify." +msgstr "" + +#: app/controllers/request_controller.rb:376 +msgid "Thank you for updating this request!" +msgstr "Faleminderit për aktualizimin e kësaj kërkese!" + +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 +msgid "Thank you for updating your profile photo" +msgstr "Faleminderit për aktualizimin e fotografisë e profilit tënd" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" +" We'll also, if you need it, give you advice on what to do next about each of your\n" +" requests." +msgstr "" + +#: app/controllers/user_controller.rb:188 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it" +" correctly." +msgstr "" +"Kjo nuk duket si një email adresë e vlefshme. Të lutem kontrollo që e ke " +"shtypur të saktë." + +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" + +#: app/views/user_mailer/changeemail_already_used.rhtml:7 +msgid "The accounts have been left as they previously were." +msgstr "Llogaritë janë lënë siq kanë qenë më përpara." + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" +"Autoriteti <strong>nuk e ka</strong> informatën <small>(ndoshta ata e dine " +"kush e ka)</small>" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI request" +msgstr "" +"Autoriteti thotë se ata kanë <strong>nevojë për një adresë postare,</strong>" +" jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " +"informatë zyrtare" + +#: app/views/request/show.rhtml:102 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this" +" request." +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" +"Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu " +"përgjegjur një kërkese {{law_used_short}} nuk është dorëzuar." + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" +" At the bottom of this page, write a reply to the authority explaining this to them." +msgstr "" + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" +"Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " +"tani:" + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "Kërkesa është <strong>refuzuar</strong>" + +#: app/controllers/request_controller.rb:347 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" + +#: app/views/request/show.rhtml:97 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "Kërkesa është në <strong>pritje për sqarim</strong>." + +#: app/views/request/show.rhtml:90 +msgid "The request was <strong>partially successful</strong>." +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme</strong>." + +#: app/views/request/show.rhtml:86 +msgid "The request was <strong>refused</strong> by" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/show.rhtml:88 +msgid "The request was <strong>successful</strong>." +msgstr "Kërkesa ishte e <strong>suksesshme</strong>." + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" +"Kërkesa që ti je përpjek për të parë është hequr (larguar). Ka arsye të " +"ndryshme pse ne kemi mund për të bërë këtë, na vie keq që nuk mund të jemi " +"më specifik. Të lutem të <a href=\"%s\">na kontakton</a> nëse ke ndonjë " +"pyetje." + +#: app/views/request/_followup.rhtml:35 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" + +#: app/views/request/_followup.rhtml:47 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say that, by \n" +" law, under all circumstances, the authority should have responded\n" +" by now" +msgstr "" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" +"Indeksi i kërkimit aktualisht është i shkëputur, kështu që nuk mundë të " +"shfaq kërkesat e Informata zyrtare që kan të bëjnë me këtë autoritet" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" +"Indeksi i kërkimit është jashtë funksioni, kështu që ne nuk mund t'i " +"tregojmë kërkesat për informata zyrtare që ky person ka bërë." + +#: app/controllers/track_controller.rb:142 +msgid "Then you can cancel the alert." +msgstr "Pastaj ti mund të anulon njoftimin." + +#: app/controllers/track_controller.rb:172 +msgid "Then you can cancel the alerts." +msgstr "Pastaj ti mund të anulon njoftimet." + +#: app/controllers/user_controller.rb:248 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh adresën tënde të emailit që përdoret në " +"{{site_name}}" + +#: app/controllers/user_controller.rb:202 +msgid "Then you can change your password on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh fjalëkalimin tënd që përdoret në {{site_name}}" + +#: app/controllers/request_controller.rb:333 +msgid "Then you can classify the FOI response you have got from " +msgstr "Pastaj ti mund të klasifikon përgjegjet e marra nga " + +#: app/controllers/request_game_controller.rb:39 +msgid "Then you can play the request categorisation game." +msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." + +#: app/controllers/user_controller.rb:329 +msgid "Then you can send a message to " +msgstr "Pastaj ti mund të dërgon mesazh te " + +#: app/controllers/user_controller.rb:513 +msgid "Then you can sign in to {{site_name}}" +msgstr "Pastaj ti mund të kyçesh në {{site_name}}" + +#: app/controllers/request_controller.rb:59 +msgid "Then you can update the status of your request to " +msgstr "Pastaj ti mund të aktualizosh statusin e kërkesës tënde për " + +#: app/controllers/request_controller.rb:695 +msgid "Then you can upload an FOI response. " +msgstr "" +"Pastaj ti mund të ngarkon një përgjegje ndaj kërkesës për informata zyrtare." + +#: app/controllers/request_controller.rb:538 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:539 +msgid "Then you can write your reply to " +msgstr "Pastaj ti mund të shkruash përgjegjen tënde për " + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" + +#: app/controllers/request_controller.rb:294 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "Pastaj kërkesa yte për " + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "Pastaj shënimi yt për {{info_request_title}} do të postohet." + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow" +" this link to see what they wrote." +msgstr "" +"Ka {{count}} shënime të reja në kërkesën tënde {{info_request}}. Ndiqni " +"këtë vegzë për t'i parë ato." + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" + +#: app/views/request/show.rhtml:106 +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the WhatDoTheyKnow team." +msgstr "" + +#: app/controllers/public_body_controller.rb:76 +msgid "There was an error with the words you entered, please try again." +msgstr "Kishte një gabim me fjalët që keni shtypur, të lutem provo përsëri." + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "Ata do të përgjegjen <strong>me postë</strong>" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who" +" does)</small>" +msgstr "" +"Ata <strong>nuk e kanë</strong> informatën <small>(ndoshta ata tregojnë kush" +" e ka)</small>" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "Atyre u është dhënë shpjegimi vijues:" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly," +" as normally required by law" +msgstr "" +"Ata nuk janë përgjegj ndaj kërkesës {{law_used_short}} tënde {{title}} " +"menjëherë, siç kërkohet normalisht nga ligji" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" +"Ata nuk janë përgjegjur {{law_used_short}} ndaj kërkesës teënde {{title}}, " +"siç kërkohet me ligj" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "Gjëra për të bërë me këtë kërkesë" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" +"Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëjni një kërkesë për" +" të." + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Ky koment është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh </a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" +"Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " +"zyrtare" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" +"Kjo është për shkak se {{title}} është një kërkesë e vjetër që ka qenë e " +"shenjuar të mos marrë më përgjegje." + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" +"Kjo është kërkesa yte, kështu që ti do të merr email automatikisht kur " +"përgjegjet e reja arrijnë." + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "Ky person ka" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "e këtij personi" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" + +#: app/views/request/show.rhtml:48 +msgid "This request has an <strong>unknown status</strong>." +msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." + +#: app/views/request/show.rhtml:110 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" +"Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " +"Mund të ketë një shpjegim në korrespondencën më poshtë." + +#: app/views/request/show.rhtml:108 +msgid "" +"This request has had an unusual response, and <strong>requires " +"attention</strong> from the WhatDoTheyKnow team." +msgstr "" +"Kjo kërkesë ka pasë një përgjegje të pazakontë dhe <strong>kërkon " +"vëmendje</strong> nga ekipi i InformataZyrtare." + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are logged\n" +" in as a super user." +msgstr "" +"Kjo kërkesë ka klasifikim 'fshehur'. Ti mund të shohësh atë, vetëm sepse je " +"kyçur 'super user'." + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" +"Kjo kërkesë është e fshehur, kështu që vetëm ti - kërkuesi mund ta shoh " +"ate. Të lutem <a href=\"%s\">na kontakto</a> nëse nuk je i sigurt pse kjo po" +" ndodhë." + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Kjo përgjegje është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" +"Ky ueb sajt është <strong>publik.</strong>Kërkesat dhe pergjegjet do të jenë" +" publike." + +#: app/views/request/details.rhtml:6 +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on WhatDoTheyKnow. This could be used to generate information about\n" +"the speed with which authorities respond to requests, the number of requests\n" +"which require a postal response and much more." +msgstr "" + +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from WhatDoTheyKnow.com " +msgstr "Ky përdorues është ndaluar (përjashtuar) nga InformataZyrtare.org" + +#: app/views/user_mailer/changeemail_already_used.rhtml:4 +msgid "" +"This was not possible because there is already an account using \n" +"the email address " +msgstr "" +"Kjo nuk ishte e mundur sepse egziston një llogari duke \n" +"përdorur këtë adresë të emailit." + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "" + +#: app/controllers/track_controller.rb:171 +msgid "To cancel these alerts" +msgstr "Për të anuluar njoftimet" + +#: app/controllers/track_controller.rb:141 +msgid "To cancel this alert" +msgstr "Për të anuluar këtë njoftim" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" +"Për të vazhduar, ti duhet të kyçesh ose të hapë një llogari. Për fat të keq," +" ka pasur një problem teknik duke u përpjekur për të bërë këtë." + +#: app/controllers/user_controller.rb:247 +msgid "To change your email address used on {{site_name}}" +msgstr "Për të ndryshuar email adresën tënde të përdorur në {{site_name}}" + +#: app/controllers/request_controller.rb:332 +msgid "To classify the response to this FOI request" +msgstr "Për të klasifikuar përgjegjen e kësaj kërkese për informata zyrtare" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "Për të bërë këtë të lutem dërgoni një email privat te" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "Për ta bërë këtë, së pari kliko në vegzën më poshtë." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" +"Që të na njoftoni, ndiqni këtë vegzë dhe pastaj zgjedhni kutinë e duhur." + +#: app/controllers/request_game_controller.rb:38 +msgid "To play the request categorisation game" +msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "Për të postuar shënimin tënd" + +#: app/controllers/request_controller.rb:536 +msgid "To reply to " +msgstr "Për t'iu përgjegjur " + +#: app/controllers/request_controller.rb:535 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:328 +msgid "To send a message to " +msgstr "Për të dërguar mesazh te " + +#: app/controllers/request_controller.rb:293 +msgid "To send your FOI request" +msgstr "Për të dërguar kërkesën tënde për informata zyrtare" + +#: app/controllers/request_controller.rb:58 +msgid "To update the status of this FOI request" +msgstr "Për të aktualizuar statusin e kësaj kërkese për informata zyrtare" + +#: app/controllers/request_controller.rb:694 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" +"Të ngarkoni një përgjegje, ti duhet të kyçesh duke përdorur një email adresë" +" nga " + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "Për të parë përgjegjen, kliko në linkun më poshtë." + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "Për {{public_body_link_absolute}}" + +#: app/views/request/preview.rhtml:17 +#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 +msgid "To:" +msgstr "Për:" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "Përcjell kërkesat e bëra për {{public_body_name}} me email" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "Përcjell këtë autoritet" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "Përcjell këtë kërkesë" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "TrackThing |Track medium" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "TrackThing|Track query" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "TrackThing |Track type" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" +"Tipi<code><strong>01/01/2008..14/01/2008</strong></code>është për të treguar" +" vetëm gjëra që kanë ndodhur në dy javët e para të janarit." + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "URL emri nuk mund të jetë i zbrazët" + +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on WhatDoTheyKnow.com" +msgstr "E pamundur për të ndryshuar email adresën në InformataZyrtare.org" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "Nuk munda të dërgoj përgjegje te {{username}}" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "" + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" +"Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë " +"autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a " +"href=\"%s\">na kontakton</a> për ta rregulluar atë." + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" +"Për fat të keq, ne nuk kemi një adresë funksionale " +"{{info_request_law_used_full}} për" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "I/e panjohur" + +#: app/models/info_request_event.rb:312 +msgid "Unusual response" +msgstr "Përgjegje e pazakonshme" + +#: app/models/info_request.rb:800 +msgid "Unusual response." +msgstr "Përgjegje e pazakonshme." + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "Aktualizo statusin e kësaj kërkese" + +#: app/controllers/request_controller.rb:60 +msgid "Update the status of your request to " +msgstr "Aktualizo statusin e kërkesës tënde për " + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" +"Përdor OSE (me shkronja kapitale), ku ju nuk jeni në dijeni për cilat fjalë " +"bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të " +"mdhaja</strong></code>" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. " +"<strong><code>\"Liverpool City Council\"</code></strong>" +msgstr "" +"Përdor kuotat (thonjëzat \"\") kur ti dëshiron të gjeshë një fjalë ekzakte, " +"p.sh.<code><strong>\"Ministria e Arsimit\"</strong></code>" + +#: locale/model_attributes.rb:68 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "UserInfoRequestSentAlert|Alert type" + +#: locale/model_attributes.rb:79 +msgid "User|About me" +msgstr "Përdoruesi |Rreth meje" + +#: locale/model_attributes.rb:77 +msgid "User|Admin level" +msgstr "Përdoruesi | Niveli i Administrimit" + +#: locale/model_attributes.rb:78 +msgid "User|Ban text" +msgstr "Përdoruesi |Tekst i ndaluar" + +#: locale/model_attributes.rb:70 +msgid "User|Email" +msgstr "Përdoruesi |Email" + +#: locale/model_attributes.rb:74 +msgid "User|Email confirmed" +msgstr "Përdoruesi|Emaili u konfirmua" + +#: locale/model_attributes.rb:72 +msgid "User|Hashed password" +msgstr "User|Hashed password" + +#: locale/model_attributes.rb:76 +msgid "User|Last daily track email" +msgstr "User|Last daily track email" + +#: locale/model_attributes.rb:71 +msgid "User|Name" +msgstr "Përdoruesi|Emri" + +#: locale/model_attributes.rb:73 +msgid "User|Salt" +msgstr "User|Salt" + +#: locale/model_attributes.rb:75 +msgid "User|Url name" +msgstr "Përdoruesi | Emri Url" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "Shiko adresën e emailit për Informatë Zyrtare" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" + +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by" +msgstr "Shiko kërkesat për informata zyrtare të bëra nga" + +#: app/views/layouts/default.rhtml:108 +msgid "View authorities" +msgstr "Shiko autoritetet" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "Shiko adresën e emailit" + +#: app/views/layouts/default.rhtml:107 +msgid "View requests" +msgstr "Shiko kërkesat" + +#: app/models/info_request.rb:792 +msgid "Waiting clarification." +msgstr "Duke pritur sqarim." + +#: app/views/request/show.rhtml:104 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" +"Duke pritur për <strong>rishqyrtim intern</strong> nga {{public_body_link}} " +"për trajtimin e kësaj kërkese." + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" +"Për fat të keq, ne nuk kemi një email adresë funksionale për këtë autoritet" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "Ne nuk kemi {{law_used_full}} adresë për {public_body_name}}." + +#: app/views/request/_describe_state.rhtml:107 +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"%s\">sign in</a> and let everyone know." +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/user_mailer/changeemail_confirm.rhtml:9 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/request/show.rhtml:54 +msgid "We're waiting for" +msgstr "Po presim për" + +#: app/views/request/show.rhtml:50 +msgid "We're waiting for someone to read" +msgstr "" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link in\n" +"it before your email address will be changed." +msgstr "" +"Ne të kemi dërguar një email të ri në adresën e emailit tënd. Ti duhet të " +"klikosh në vegzën në te para se adresa e emailit tënd do të ndryshohet." + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you can\n" +"continue." +msgstr "" +"Ne të kemi dërguar një email, ti duhet të klikosh në vegzën në te para se të" +" mund të vazhdosh." + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" +"Ne të kemi dërguar një email, kliko në vegzën në te që të mund të ndryshon " +"fjalëkalimin tënd." + +#: app/views/request/_followup.rhtml:61 +msgid "What are you doing?" +msgstr "Çfarë je duke bërë?" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "Çfarë përshkruan më së miri statusin e kësaj kërkese tani?" + +#: app/views/public_body/view_email.rhtml:7 +msgid "" +"WhatDoTheyKnow sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" +"InformataZyrtare.org dërgon kërkesa të reja për " +"<strong>{{request_email}}</strong> për këtë autoritet." + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" +"Kur të marrësh përgjegjen në letër, të lutem i ndihmoni të tjerët të gjejnë " +"se çfarë thotë në te:" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" +"Kur të kesh mbaruar, <strong>kthehu këtu,</strong> <a href=\"%s\">rifresko " +"këtë faqe</a> dhe bëj kërkesën tënde të re." + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "Cila nga këto po ndodh?" + +#: app/models/info_request_event.rb:308 +msgid "Withdrawn by requester" +msgstr "E tërhequr nga kërkuesi" + +#: app/models/info_request.rb:802 +msgid "Withdrawn by the requester." +msgstr "E tërhequr nga kërkuesi." + +#: app/controllers/request_controller.rb:542 +msgid "Write a reply to " +msgstr "Shkruaj një përgjegje për " + +#: app/controllers/request_controller.rb:541 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "" + +#: app/models/info_request_event.rb:296 +msgid "Wrong Response" +msgstr "Përgjegje e gabuar." + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "Ti" + +#: app/controllers/track_controller.rb:96 +msgid "You are already being emailed updates about " +msgstr "" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "Ti je duke pranuar me email çdo përgjegje të re të suksesshme" + +#: app/views/request/show.rhtml:81 +msgid "You can <strong>complain</strong> by" +msgstr "Ti mund të <strong>ankohesh</strong> duke" + +#: app/views/request/details.rhtml:57 +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"%s\">API documentation</a>." +msgstr "" + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" +"Ju vetëm mund të kërkoni informacione në lidhje me mjedisin nga ky " +"autoritet." + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "Ti ke" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "Ti ke një përgjegje të re për kërkesën {{law_used_full}}" + +#: app/controllers/user_controller.rb:491 +msgid "You have now changed the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:309 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" +"Tash ke ndryshuar adresën tënde të emailit që përdoret në {{site_name}}" + +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "" +"You just tried to sign up to WhatDoTheyKnow.com, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>," +" such as a working email address." +msgstr "" + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/controllers/user_controller.rb:469 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:370 +msgid "You need to be logged in to change your profile photo." +msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." + +#: app/controllers/user_controller.rb:432 +msgid "You need to be logged in to clear your profile photo." +msgstr "" +"Ti duhet të jesh i kyçur për të larguar (fshirë) fotografinë e profilit " +"tënd." + +#: app/controllers/request_controller.rb:552 +msgid "" +"You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" +msgstr "" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations or\n" +"send messages to other users. You may continue to view other requests, and set\n" +"up\n" +"email alerts." +msgstr "" + +#: app/controllers/track_controller.rb:152 +msgid "You will no longer be emailed updates about " +msgstr "" + +#: app/controllers/track_controller.rb:181 +msgid "You will no longer be emailed updates for those alerts" +msgstr "Ti nuk të merr më aktualizime me email për këto njoftime " + +#: app/controllers/track_controller.rb:109 +msgid "You will now be emailed updates about " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" +"Ti do të merr përgjegje në kërkesën tënde vetëm në qoftë se e sqaroni ate." + +#: app/controllers/user_controller.rb:441 +msgid "You've now cleared your profile photo" +msgstr "Ke pastruar fotografinë e profilit tënd" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "" + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" + +#: app/views/user/_signin.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 +msgid "Your e-mail:" +msgstr "Adresa e emailit tënd:" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "Email abonimet e tua" + +#: app/controllers/request_controller.rb:549 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:577 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:575 +msgid "Your internal review request has been sent on its way." +msgstr "Kërkesa për rishqyrtim intern është dërguar." + +#: app/controllers/help_controller.rb:61 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" +"Mesazhi yt u dërgua. Faleminderit që na kontaktuat! Ne do t'ju përgjegjemi " +"së shpejti." + +#: app/controllers/user_controller.rb:348 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" +"Mesazhi yt do të shfaqet në <strong>kërkuesit e internetit (p.sh. " +"Google)</strong>" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" +"Emri yt dhe shënimi do të shfaqen në <strong>kërkuesit e internetit (p.sh. " +"Google).</strong>" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" +"Emrin yt, kërkesa dhe çdo përgjegje do të shfaqen në <strong>kërkuesit e " +"internetit (p.sh. Google)</strong> ( <a href=\"%s\">detaje</a> )." + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "Emri yt:" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "Mesazhi yt origjinal është i bashkangjitur." + +#: app/controllers/user_controller.rb:230 +msgid "Your password has been changed." +msgstr "Fjalëkalimi yt është ndryshuar." + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "Fjalëkalimi yt:" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on WhatDoTheyKnow." +msgstr "" +"Fotografia yte do të shfaqet në publikisht <strong>në internet,</strong> " +"kurdo që të bëni diçka në InformataZyrtare." + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "Kërkesa yte:" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a " +"href=\"%s\">read why</a> and answers to other questions." +msgstr "" +"Përgjegja yte do të <strong>shfaqet në internet,</strong> <a " +"href=\"%s\">lexoni pse</a> dhe përgjegjet për pyetje të tjera." + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the WhatDoTheyKnow <strong>administrators</strong> " +"should do about the request." +msgstr "" +"Mendimet tua se çfare duhet <strong>administratorët e</strong> " +"InformataZyrtare.org bërë me kërkesën." + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "Me nderime," + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "Sinqerisht," + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" +"një përmbledhje në një rresht të informacionit që ti kërkon,\n" +"»» »p.sh." + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "admin" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "i quajtur edhe {{public_body_short_name}}" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "dhe kyçu si" + +#: app/views/request/show.rhtml:52 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" + +#: app/views/request/show.rhtml:57 +msgid "and update the status." +msgstr "dhe aktualizo statusin." + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "dhe ne do të sugjerojmë <strong>çfarë të bëjë pastaj</strong>" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "shënim" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "shënimet" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "janë vonuar së tepërmi." + +#: app/controllers/public_body_controller.rb:109 +msgid "beginning with" +msgstr "duke filluar me" + +#: app/views/request/show.rhtml:75 +msgid "by" +msgstr "nga" + +#: app/views/request/_followup.rhtml:41 +msgid "by <strong>{{date}}</strong>" +msgstr "nga <strong>{{date}}</strong>" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "nga {{public_body_name}} për {{info_request_user}} me {{date}}." + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "nga {{user_link_absolute}}" + +#: locale/model_attributes.rb:42 +msgid "censor rule" +msgstr "censor rregulli" + +#: locale/model_attributes.rb:26 +msgid "comment" +msgstr "komenti" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" + +#: app/models/info_request_event.rb:333 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" +"display_status tani për tani punon vetëm për mesazhet hyrëse dhe dalëse" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "p.sh." + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "edito tekstin në lidhje me ty" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "abonimet me email" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "madje edhe gjatë pushimeve" + +#: locale/model_attributes.rb:14 +msgid "exim log" +msgstr "exim log" + +#: locale/model_attributes.rb:60 +msgid "exim log done" +msgstr "exim log done" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "ka raportuar një" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "kanë vonuar." + +#: locale/model_attributes.rb:57 +msgid "holiday" +msgstr "festë" + +#: app/views/request/_followup.rhtml:39 app/views/request/show.rhtml:63 +#: app/views/request/show.rhtml:73 +msgid "in term time" +msgstr "" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "në total" + +#: locale/model_attributes.rb:63 +msgid "incoming message" +msgstr "mesazhi i ardhur" + +#: locale/model_attributes.rb:80 +msgid "info request" +msgstr "kërkesë për informatë" + +#: locale/model_attributes.rb:35 +msgid "info request event" +msgstr "info request event" + +#: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 +msgid "internal error" +msgstr "gabim i brendshëm i sistemit" + +#: app/views/request/show.rhtml:93 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "është duke <strong>pritur për sqarim tuaj</strong>." + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "vetëm për të parë se si funksionon" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "ka lënë një shënim" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "bërë." + +#: app/views/request/show.rhtml:67 +msgid "no later than" +msgstr "jo më vonë se" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/show.rhtml:65 +msgid "normally" +msgstr "normalisht" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "vetëm" + +#: locale/model_attributes.rb:20 +msgid "outgoing message" +msgstr "Mesazhi dalës" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "Të lutem kyçu si" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "të lutem kyçu ose krijo një llogari të re." + +#: locale/model_attributes.rb:50 +msgid "post redirect" +msgstr "ridrejto postën në tjetër adresë" + +#: locale/model_attributes.rb:17 +msgid "profile photo" +msgstr "foto e profilit" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "institucioni publik" + +#: locale/model_attributes.rb:47 +msgid "raw email" +msgstr "email para" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "kërkesë." + +#: app/views/request/show.rhtml:82 +msgid "requesting an internal review" +msgstr "kërko rishqyrtim intern" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" + +#: app/views/request/show.rhtml:95 +msgid "send a follow up message" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." + +#: app/views/request/show.rhtml:99 +msgid "sign in" +msgstr "Kyçu" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "Ç'kyçu" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "që ti ke bërë për" + +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/confirm_login.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +msgid "the WhatDoTheyKnow team" +msgstr "ekipi i InformataZyrtare" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "ky person" + +#: app/views/user_mailer/changeemail_already_used.rhtml:2 +msgid "to" +msgstr "për" + +#: app/views/user_mailer/changeemail_confirm.rhtml:5 +msgid "to " +msgstr "për " + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" +"për të ndryshuar, fjalekalimin,\n" +"abonimet dhe më shumë" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "" + +#: app/views/request/show.rhtml:55 +msgid "to read" +msgstr "për të lexuar" + +#: app/views/request/show.rhtml:99 +msgid "to send a follow up message." +msgstr "" + +#: app/views/request/show.rhtml:39 +msgid "to {{public_body}}" +msgstr "për {{public_body}}" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "përcjell gjënë" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "" + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "arsye e panjohur" + +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 +msgid "unknown status " +msgstr "status i panjohur" + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "ndërprej abonimin" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "ndërpreji të gjitha abonimet" + +#: app/views/request/show.rhtml:46 +msgid "useful information." +msgstr "informata të dobishëme." + +#: locale/model_attributes.rb:69 +msgid "user" +msgstr "përdoruesi" + +#: locale/model_attributes.rb:67 +msgid "user info request sent alert" +msgstr "" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "ti" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{date}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" +"apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të ngjashme." + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "{{info_request_user_name}} vetëm:" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} më parë" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "{{public_body_name}} vetëm:" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" +"{{user_name}} ka lënë shënim në kërkesën tënde {{law_used_short}}. Ndiqni " +"këtë vegzë për të parë se çfarë ata shkruan." + +#: app/views/request/show.rhtml:35 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" + + diff --git a/locale/sq/app_old3.po b/locale/sq/app_old3.po new file mode 100644 index 000000000..548775fc1 --- /dev/null +++ b/locale/sq/app_old3.po @@ -0,0 +1,4627 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <bresta@gmail.com>, 2011. +# driton <dritoni.h@gmail.com>, 2011. +# <vbrestovci@gmail.com>, 2011. +# Valon <vbrestovci@gmail.com>, 2011. +# vbrestovci <vbrestovci@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: version 0.0.1\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-08-12 11:07+0200\n" +"PO-Revision-Date: 2011-07-12 14:28+0000\n" +"Last-Translator: sebbacon <seb.bacon@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app/models/incoming_message.rb:866 +msgid "" +"\n" +"\n" +"[ {{site_name}} note: The above text was badly encoded, and has had strange " +"characters removed. ]" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:14 +#, fuzzy +msgid "" +" This will appear on your {{site_name}} profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" +"Kjo do të shfaqet në profilin tuaj në InformataZyrtare, për ta bërë më të " +"lehtë për të tjerët që të përfshihen me çfarë jeni duke bërë." + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" +"AA (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" +"<strong>(Durim,</strong> sidomos për fotografi të mëdha, mund të marrë më " +"shum kohë!)" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr "(ti)" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" +"<strong>Shënim:</strong>Do të dërgoj një email. Ndiq udhëzimet në te për të " +"ndryshuar fjalëkalimin tënd." + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr "<strong>Shënim privacie:</strong> Adresa e emailit do t'i jepet" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" +"<strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera " +"(përgjegura)." + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr "AA Advise on how to <strong>best clarify</strong> the request." + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" +"AA Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</" +"a>.\n" +" You may be able to find the address on their website, or by phoning " +"them up and asking." +msgstr "" +"Nëse e din adresën e emailit për ta përdorur, atëherë të lutem <a href=\"%s" +"\">na e dërgon</a> . Ti mund ta gjen adresën e emailit në ueb sajtin e tyre " +"ose duke ju telefonuar dhe pyetur." + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" +"AA Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already available</" +"strong> on the Internet. " +msgstr "" +"Linku për informatat e kërkuara, në qoftë se ato <strong> tashmë janë </" +"strong> në dispozicion në internet." + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" +"Propozo mënyra më të mira të <strong>formulim të kërkesës</strong> për të " +"marrë informacion." + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr "Të lutem kyçu ose krijo një llogari të re." + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" +"Trego se si ke <strong>përdorur informacionin,</strong> me ueb linqe nëse " +"është e mundur." + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" +"Sugjero <strong>ku tjetër</strong> kërkuesi mund të gjej informacionin." + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" +"Çfarë jeni duke hulumtuar (hetuar) duke përdor kërkesat për çasje në " +"Informata Zyrtare?" + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr "bërë nga " + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "nuk ka bërë kërkesa për informata zyrtare duke përdorur këtë ueb faqe." + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr "kur e dërgoni këtë mesazh." + +#: app/views/public_body/show.rhtml:80 +#, fuzzy +msgid "%d Freedom of Information request made using this site" +msgid_plural "%d Freedom of Information requests made using this site" +msgstr[0] "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" +msgstr[1] "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/public_body/_body_listing_single.rhtml:21 +#, fuzzy +msgid "%d request made." +msgid_plural "%d requests made." +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "'Statistikat e krimit në nivel komune'" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "'Niveli i ndotjes për lumin Drin'" + +#: app/controllers/user_controller.rb:355 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" +"<a href=\"%s\">Shto një shënim</a> (për të ndihmuar kërkuesit ose të tjerët)" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "<a href=\"%s\">A po mungon ndonjë autoritet publik?</a> ." + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" +"<a href=\"%s\">Are you the owner of any commercial copyright on this page?</" +"a>" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" +"<a href=\"%s\">Kërkoni të gjitha</a> ose <a href=\"%s\">të na pyetni ne që " +"të shtoni një</a> ." + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" + +#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 +#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 +msgid "<a href=\"%s\">details</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/views/request/_followup.rhtml:74 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "<a href=\"%s\">Çfarë është ajo?</a>" + +#: app/views/public_body/show.rhtml:50 +#, fuzzy +msgid "" +"<a href=\"{{url}}\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" +"<a href=\"%s\">Bëj një kërkesë të re për Inforamata Zyrtare</a> te " +"{{public_body_name}}" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a href=" +"\"{{helpus_url}}\">more things you can do</a> to help {{site_name}}.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:399 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the " +"text of your request below, then <a href=\"{{find_authority_url}}\">find the " +"other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they " +"do not hold the information, here is \n" +" <a href=\"{{complain_url}}\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>" +msgstr "" + +#: app/controllers/request_controller.rb:393 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of <strong>" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:389 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should " +"get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:428 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a href=" +"\"{{review_url}}\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:431 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:396 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:495 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph " +"too.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:417 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you " +"and your research on your profile.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:284 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the " +"authority, but will not be displayed on the site.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:417 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation " +"below saying what you did.</p><p>If you found {{site_name}} useful, <a href=" +"\"{{donation_url}}\">make a donation</a> to the charity which runs it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:420 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"{{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to " +"the charity which runs it.</p><p>If you want to try and get the rest of the " +"information, here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:282 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjegje ( <a href=\"%s\">detaje</a> ). </p>" + +#: app/controllers/request_controller.rb:280 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a href=\"%s\">details</a>)." +"</p>" +msgstr "" + +#: app/controllers/request_controller.rb:288 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will " +"<strong>appear publicly on the Internet</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:311 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!" +"</p>\n" +" <p><strong>We will email you</strong> when there is a response, " +"or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a " +"blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/controllers/application_controller.rb:279 +msgid "" +"<p>{{site_name}} is currently in maintenance. You can only view existing " +"requests. You cannot make new ones, add followups or annotations, or " +"otherwise change the database.</p> <p>{{read_only}}</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check " +"your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</" +"small>\n" +"</p>" +msgstr "" +"<small>Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke " +"\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " +"mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" +"AA <strong> Can I request information about myself?</strong>><a href=\"%s" +"\">No! (Click here for details)</a>" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations " +"made by Tony Bowden, typing the name as in the URL." +msgstr "" +"AA <strong><code>commented_by:tony_bowden</code></strong> to search " +"annotations made by Tony Bowden, typing the name as in the URL." + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" +"<strong><code>tipi_i_fajjlit:pdf</code></strong> për t'i gjetë të gjitha " +"përgjegjet me PDF të bashkangjitur. Apo provo këto: <code>" +"{{list_of_file_extensions}}</code>" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" +"<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " +"caktuar, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " +"kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_te:zyra_e_kryeministrit</code></strong> për të kërkuar " +"kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:126 +#, fuzzy +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"{{statuses_url}}\">table " +"of statuses</a> below." +msgstr "" +"<strong><code>statusi:</code></strong> për të kërkuar në bazë të statusit të " +"kërkesës apo historisë së statusit, shih <a href=\"%s\">tabelën e statuseve</" +"a> më poshtë." + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or " +"requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:" +"financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only " +"want results them all present." +msgstr "" +"<strong><code>etiketa:charity</code></strong> për të gjetur të gjitha " +"institucionet apo kërkesat me etiketën e dhënë. Mund të përfshihen edhe disa " +"etiketa, \n" +" dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:" +"financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" +" prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse " +"do që vetëm ato te përfshihen." + +#: app/views/general/search.rhtml:127 +#, fuzzy +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." +msgstr "" +"<strong><code>variantet:</code></strong> për të zgjedhur tipin e asaj që do " +"të kërkosh, shih <a href=\"%s\">tabelën e varianteve</a> më poshtë." + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/request/_followup.rhtml:79 +msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" + +#: app/views/request/details.rhtml:12 +#, fuzzy +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you " +"will need \n" +"a good internal knowledge of user behaviour on {{site_name}}. How, \n" +"why and by whom requests are categorised is not straightforward, and there " +"will\n" +"be user error and ambiguity. You will also need to understand FOI law, and " +"the\n" +"way authorities use it. Plus you'll need to be an elite statistician. " +"Please\n" +"<a href=\"{{contact_path}}\">contact us</a> with questions." +msgstr "" +"AA <strong>Caveat emptor!</strong> To use this data in an honourable way, " +"you will need \n" +"a good internal knowledge of user behaviour on WhatDoTheyKnow. How, \n" +"why and by whom requests are categorised is not straightforward, and there " +"will\n" +"be user error and ambiguity. You will also need to understand FOI law, and " +"the\n" +"way authorities use it. Plus you'll need to be an elite statistician. " +"Please\n" +"<a href=\"%s\">contact us</a> with questions." + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "Është kërkuar<strong>sqarim</strong> " + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" +"AA <strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" +"AA <strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information " +"about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" +"AA <strong>Privacy note:</strong> If you want to request private information " +"about\n" +" yourself then <a href=\"%s\">click here</a>." + +#: app/views/user/set_crop_profile_photo.rhtml:35 +#, fuzzy +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the " +"Internet, \n" +" wherever you do something on {{site_name}}." +msgstr "" +"AA <strong>Privacy note:</strong> Your photo will be shown in public on the " +"Internet, \n" +" wherever you do something on WhatDoTheyKnow." + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" +"<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjegje do të " +"paraqitet publikisht në këtë ueb faqe " + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "<strong>Disa nga informacionet</strong> janë dërguar" + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "<strong>Detajet teknike:</strong>" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "AA <strong>Thank</strong> the public authority or " + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication scheme</" +"a> or <strong>search</strong> their web site ..." +msgstr "" +"AA <strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." + +#: app/views/request/show.rhtml:91 +msgid "<strong>did not have</strong> the information requested." +msgstr "AA <strong>did not have</strong> the information requested." + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>kërko</strong> në ueb sajtin e autoritetit ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" +"Një <strong>përmbledhje</strong> e përgjegjes nëse ate e keni marrë me postë." + +#: app/views/general/search.rhtml:162 +#, fuzzy +msgid "A public authority" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "Përgjigja do të dërgohet <strong>me postë</strong>" + +#: app/views/general/search.rhtml:151 +msgid "A strange reponse, required attention by the {{site_name}} team" +msgstr "" + +#: app/views/general/search.rhtml:163 +#, fuzzy +msgid "A {{site_name}} user" +msgstr "Kontakt {{site_name}}" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "Për ty:" + +#: app/models/info_request_event.rb:293 +msgid "Acknowledgement" +msgstr "" + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "AA Act on what you've learnt" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "Shto një shënim për" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" +"AA Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." + +#: app/views/public_body/_body_listing_single.rhtml:26 +#, fuzzy +msgid "Added on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "Niveli i administratorit nuk është i përfshir në listë" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "URL për administrim:" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "Këshilla te avansuara për kërkim" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain " +"about it if not." +msgstr "" + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" +"AA Air, water, soil, land, flora and fauna (including how these effect human " +"beings)" + +#: app/models/info_request_event.rb:309 +msgid "All information sent" +msgstr "Të gjitha informatat janë dërguar" + +#: app/views/general/search.rhtml:146 +#, fuzzy +msgid "All of the information requested has been received" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "Sipas alfabetit" + +#: app/views/public_body/_body_listing_single.rhtml:12 +#, fuzzy +msgid "Also called {{other_name}}." +msgstr "i quajtur edhe {{other_name}}" + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" +"Edhe pse të gjitha përgjegjet publikohen automatikisht, ne varemi nga ti, si " +"kërkues i tyre, për t'i vlerësuar ato." + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "Një <strong>mesazh gabimi</strong> është marrë" + +#: app/views/general/search.rhtml:161 +#, fuzzy +msgid "Annotation added to request" +msgstr "Përgjegju kërkesës" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "Shënimet" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" +"Shënimet shërbejne për të gjithë, duke përfshirë edhe ty, që të mund të " +"ndihmoj kërkuesit me kërkesën e tyre. Për shembull:" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "Çdokush:" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not " +"suitable for general enquiries." +msgstr "" +"AA Ask for <strong>specific</strong> documents or information, this site is " +"not suitable for general enquiries." + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to " +"scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" +"AA At the bottom of this page, write a reply to them trying to persuade them " +"to scan it in(<a href=\"%s\">more details</a>)." + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "AA Attachment (optional):" + +#: app/models/info_request.rb:783 +msgid "Awaiting classification." +msgstr "Në pritje të klasifikimit." + +#: app/models/info_request.rb:803 +msgid "Awaiting internal review." +msgstr "Në pritje për rishikimit të brendshëm." + +#: app/models/info_request.rb:785 +msgid "Awaiting response." +msgstr "Në pritje të përgjegjes." + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" +"AA Browse <a href=\"%s\">other requests</a> for examples of how to word " +"your request." + +#: app/views/request/new.rhtml:41 +#, fuzzy +msgid "" +"Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" +"Shfleto <a href='%s'>kërkesa të tjera</a> për '{{public_body_name}}' për " +"shembuj se si të formulosh kërkesën tënde." + +#: app/views/request/show.rhtml:86 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" +"AA By law, under all circumstances, {{public_body_link}} should have " +"responded by now" + +#: app/views/request/show.rhtml:78 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" +"AA By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add " +"it</a>." +msgstr "" +"Nuk u gjet? <a href=\"%s\">Shfleto të gjtiha</a> apo <a href=\"%s\">kërko që " +"të shtohet</a>." + +#: app/controllers/track_controller.rb:145 +msgid "Cancel a {{site_name}} alert" +msgstr "" + +#: app/controllers/track_controller.rb:175 +msgid "Cancel some {{site_name}} alerts" +msgstr "" + +#: locale/model_attributes.rb:46 +msgid "CensorRule|Last edit comment" +msgstr "CensorRule | Redaktimi i fundit i koment" + +#: locale/model_attributes.rb:45 +msgid "CensorRule|Last edit editor" +msgstr "CensorRule | Redaktimi i fundit të editorit" + +#: locale/model_attributes.rb:44 +msgid "CensorRule|Replacement" +msgstr "CensorRule | Zëvendësimi" + +#: locale/model_attributes.rb:43 +msgid "CensorRule|Text" +msgstr "CensorRule | Teksti" + +#: app/views/user/signchangeemail.rhtml:37 +#, fuzzy +msgid "Change email on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +msgid "Change profile photo" +msgstr "Ndrysho fotografinë e profilit" + +#: app/views/user/set_profile_about_me.rhtml:1 +#, fuzzy +msgid "Change the text about you on your profile at {{site_name}}" +msgstr "AA Change the text about you on your profile at WhatDoTheyKnow.com" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "Ndrysho email adresën tënde" + +#: app/controllers/user_controller.rb:250 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "Ndrysho fjalëkalimin tënd" + +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +msgid "Change your password on {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/controllers/user_controller.rb:204 +msgid "Change your password {{site_name}}" +msgstr "" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "Regjistrimi i organizatës" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." + +#: app/views/request/preview.rhtml:7 +#: app/views/request/followup_preview.rhtml:14 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" +"AA Check you haven't included any <strong>personal information</strong>." + +#: app/models/info_request_event.rb:331 +msgid "Clarification" +msgstr "Sqarim" + +#: app/models/info_request_event.rb:295 +msgid "Clarification required" +msgstr "Kërkohet sqarim" + +#: app/controllers/request_controller.rb:339 +msgid "Classify an FOI response from " +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling " +"them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" +"Klikoni në linkun më poshtë për të dërguar një mesazh te " +"{{public_body_name}} duke u thënë atyre që të përgjegjen në kërkesën tënde. " +"Ti mund të dëshirosh të kërkosh rishikimin të brendshëm, duke u kërkuar " +"atyre për të gjetur se pse përgjegja ndaj kërkesës ka qenë kaq e ngadaltë." + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" +"AA Click on the link below to send a message to {{public_body}} reminding " +"them to reply to your request." + +#: locale/model_attributes.rb:28 +msgid "Comment|Body" +msgstr "Komenti | Body" + +#: locale/model_attributes.rb:27 +msgid "Comment|Comment type" +msgstr "Koment|Lloji i komentit" + +#: locale/model_attributes.rb:30 +msgid "Comment|Locale" +msgstr "Koment | Lokale" + +#: locale/model_attributes.rb:29 +msgid "Comment|Visible" +msgstr "Koment | i/e dukshëm" + +#: app/models/track_thing.rb:147 +msgid "Confirm you want to be emailed about new requests" +msgstr "" + +#: app/models/track_thing.rb:214 +msgid "" +"Confirm you want to be emailed about new requests or responses matching " +"'{{query}}'" +msgstr "" + +#: app/models/track_thing.rb:198 +msgid "Confirm you want to be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:182 +#, fuzzy +msgid "Confirm you want to be emailed about requests to '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" + +#: app/controllers/request_controller.rb:300 +msgid "Confirm your FOI request to " +msgstr "" + +#: app/controllers/request_controller.rb:703 +#: app/controllers/user_controller.rb:515 +msgid "Confirm your account on {{site_name}}" +msgstr "" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "" + +#: app/models/user_mailer.rb:34 +#, fuzzy +msgid "Confirm your new email address on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/layouts/default.rhtml:127 +msgid "Contact {{site_name}}" +msgstr "Kontakt {{site_name}}" + +#: app/models/request_mailer.rb:210 +msgid "Could not identify the request from the email address" +msgstr "" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" +"Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga " +"sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "Preje fotografinë e profilit tënd" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" +"AA Cultural sites and built structures (as they may be affected by the " +"environmental factors listed above)" + +#: app/views/request/show.rhtml:68 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}, " +"they must respond promptly and" +msgstr "" +"AA Currently <strong>waiting for a response</strong> from " +"{{public_body_link}}, they must respond promptly and" + +#: app/models/info_request_event.rb:299 +msgid "Deadline Extended" +msgstr "" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "" + +#: app/models/info_request.rb:787 +msgid "Delayed." +msgstr "" + +#: app/models/info_request_event.rb:315 app/models/info_request.rb:805 +msgid "Delivery error" +msgstr "" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "Detajet e kërkesës" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "Mos mendove këtë: {{correction}}" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" +"AA Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "Shkarko attachment-in origjinal" + +#: app/views/request/_followup.rhtml:85 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" +"AA Edit and add <strong>more details</strong> to the message above,\n" +"explaining why you are dissatisfied with their response." + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "Edito versionin e gjuhës:" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr "Edito tekstin për vetën tënde" + +#: app/models/user.rb:135 +msgid "Either the email or password was not recognised, please try again." +msgstr "" + +#: app/models/user.rb:137 +msgid "" +"Either the email or password was not recognised, please try again. Or create " +"a new account using the form on the right." +msgstr "" + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "" + +#: app/models/track_thing.rb:139 +#, fuzzy +msgid "Email me when there are new requests" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "Abonimet me email" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing " +"lane</strong>" +msgstr "" +"Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim " +"rruge</strong>" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" +"Shkruaj përgjegjen tënde më poshtë. Ti mund të bashkëangjitësh një fajll " +"(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " +"shumë)." + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "\"Environmental Information Regulations\" kërkesa të bëra" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" +"\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë " +"ueb sajt" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "Historiku i ngjarjeve" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "Detajet e historikut të ngjarjeve" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"AA Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</" +"strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"AA Everything that you enter on this page, including <strong>your name</" +"strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." + +#: locale/model_attributes.rb:58 +msgid "EximLogDone|Filename" +msgstr "EximLogDone|Filename" + +#: locale/model_attributes.rb:59 +msgid "EximLogDone|Last stat" +msgstr "EximLogDone|Statistika e fundit" + +#: locale/model_attributes.rb:16 +msgid "EximLog|Line" +msgstr "EximLog|Linja" + +#: locale/model_attributes.rb:15 +msgid "EximLog|Order" +msgstr "EximLog|Order" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "Kërkesat për Informata Zyrtare" + +#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 +msgid "FOI requests by '{{user_name}}'" +msgstr "" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "Konvertimi i imazhit në PNG dështoi" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need %" +"{width}x%{height}" +msgstr "" +"Konvertimi i imazhit në madhësinë adekuate dështoi: në %{cols}x%{rows}, " +"duhet %{width}x%{height}" + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "Së pari," + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</" +"strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Së pari, shkruani <strong>emrin e autoritetit publik </strong> <br> prej të " +"cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të përgjegjen</" +"strong> ( <a href=\"%s\">pse?</a> )." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "Kliko këtë link për të parë të kërkesën:" + +#: app/models/info_request_event.rb:335 +msgid "Follow up" +msgstr "" + +#: app/views/general/search.rhtml:159 +#, fuzzy +msgid "Follow up message sent by requester" +msgstr "AA Follow up messages to existing requests are sent to " + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "AA Follow up messages to existing requests are sent to " + +#: app/views/request/_followup.rhtml:16 +#, fuzzy +msgid "" +"Follow ups and new responses to this request have been stopped to prevent " +"spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and " +"need to send a follow up." +msgstr "" +"AA Follow ups and new responses to this request have been stopped to prevent " +"spam. Please\n" +" <a href=\"%s\">contact us</a> if you are {{user_link}} and need to " +"send a follow up." + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" +"Për një arsye të panjohur, nuk është e mundur për të bërë një kërkesë tek ky " +"autoritet." + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot " +"make\n" +" a request to it." +msgstr "" +"Ligji mbi lirinë e informacionit nuk ka të bëjë me këtë autoritet, kështu që " +"ju nuk mund të bëjë një kërkesë për të." + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "AA Freedom of Information law no longer applies to" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" +"AA Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "Kërkesa për Informatë zyrtare është bërë" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "Kërkesat për Informata Zyrtare bërë nga" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than " +"sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it " +"to us</a>." +msgstr "" +"AA From the request page, try replying to a particular message, rather than " +"sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it " +"to us</a>." + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "JEPI DETAJET PËR ANKESËN TËNDE KËTU" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "Shko te <a href=\"%s\">ballina</a> </li>" + +#: app/models/info_request_event.rb:297 +msgid "Handled by post" +msgstr "" + +#: app/models/info_request.rb:801 +msgid "Handled by post." +msgstr "" + +#: app/views/layouts/default.rhtml:102 +msgid "Hello!" +msgstr "Përshëndetje" + +#: app/views/layouts/default.rhtml:99 +msgid "Hello, {{username}}!" +msgstr "Përshëndetje, {{username}}!" + +#: app/views/layouts/default.rhtml:94 +msgid "Help" +msgstr "Ndihmë" + +#: app/views/request/details.rhtml:50 +#, fuzzy +msgid "" +"Here <strong>described</strong> means when a user selected a status for the " +"request, and\n" +"the most recent event had its status updated to that value. " +"<strong>calculated</strong> is then inferred by\n" +"{{site_name}} for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"{{search_path}}\">search tips</a> " +"for description of the states." +msgstr "" +"AA Here <strong>described</strong> means when a user selected a status for " +"the request, and\n" +"the most recent event had its status updated to that value. " +"<strong>calculated</strong> is then inferred by\n" +"WhatDoTheyKnow for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"%s\">search tips</a> for " +"description of the states." + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" + +#: locale/model_attributes.rb:55 +msgid "Holiday|Day" +msgstr "Festa | Dita" + +#: locale/model_attributes.rb:56 +msgid "Holiday|Description" +msgstr "Festa | Përshkrimi" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "Ueb sajti i autoritetit" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" +"AA However, you have the right to request environmental information under a " +"different law" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "AA Human health and safety" + +#: app/views/request/_followup.rhtml:68 +msgid "I am asking for <strong>new information</strong>" +msgstr "AA I am asking for <strong>new information</strong>" + +#: app/views/request/_followup.rhtml:73 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "AA I am requesting an <strong>internal review</strong>" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "AA I don't like these ones — give me some more!" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "AA I don't want to do any more tidying now!" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "Ddo të doja të <strong>tërheqë këtë kërkesë</strong>" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" +"AA I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "AA I'm still <strong>waiting</strong> for the internal review" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "AA I'm waiting for an <strong>internal review</strong> response" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "Kam marrë <strong>të gjithë informacionin</strong>" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "Kam marrë <strong>disa prej informatave</strong>" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "Kam marrë një <strong>mesazh gabimi</strong>" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a href=\"%s" +"\">contact us</a>." +msgstr "" +"AA If the address is wrong, or you know a better address, please <a href=\"%s" +"\">contact us</a>." + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the " +"request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" +"AA If this is incorrect, or you would like to send a late response to the " +"request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." + +#: app/views/request/_followup.rhtml:20 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" +"AA If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "" +"AA If you are still having trouble, please <a href=\"%s\">contact us</a>." + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" +"AA If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" +"AA If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." + +#: app/views/request/show.rhtml:105 +msgid "If you are {{user_link}}, please" +msgstr "Nëse ti je {{user_link}}, të lutem" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and " +"copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</" +"strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" +"AA If you can't click on it in the email, you'll have to <strong>select and " +"copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</" +"strong>, into the place\n" +"you would type the address of any other webpage." + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" +"Nëse mund të skanoni ose fotografoni përgjegjen, dhe të <strong>na e dërgoni " +"që ne ta ngarkojme ate.</strong>" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +#, fuzzy +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" +"AA If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " +"manager to suggest us on your organisation's FOI page." + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this " +"login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" +"Nëse keni marrë këtë email <strong>më shumë se gjashtë muaj më parë,</" +"strong> atëherë ky link për kyçje nuk do të funksionojë më. Të lutem provon " +"duke bërë atë që keni vepruar nga fillimi." + +#: app/controllers/request_controller.rb:437 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know " +"it has been withdrawn." +msgstr "" + +#: app/views/user/signchangepassword_confirm.rhtml:10 +#: app/views/user/signchangeemail_confirm.rhtml:11 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" +"Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke \"junk " +"mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, mesazhet tona " +"janë të shenjuara në këtë mënyrë." + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" +"AA If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" + +#: app/views/user/_signup.rhtml:6 +#, fuzzy +msgid "If you're new to {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/views/user/_signin.rhtml:7 +#, fuzzy +msgid "If you've used {{site_name}} before" +msgstr "Nëse e ke përdorë InformataZyrtare më parë" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" +"Nëse shfletuesi yt është vendosur për të pranuar \"cookies\" dhe ju jeni " +"duke parë këtë mesazh, atëherë me sa duket ka gabim në serverin tonë." + +#: locale/model_attributes.rb:61 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "IncomingMessage|Cached attachment text clipped" + +#: locale/model_attributes.rb:62 +msgid "IncomingMessage|Cached main body text folded" +msgstr "IncomingMessage|Cached main body text folded" + +#: locale/model_attributes.rb:63 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "IncomingMessage|Cached main body text unfolded" + +#: locale/model_attributes.rb:39 +msgid "InfoRequestEvent|Calculated state" +msgstr "InfoRequestEvent|Calculated state" + +#: locale/model_attributes.rb:38 +msgid "InfoRequestEvent|Described state" +msgstr "InfoRequestEvent|Described state" + +#: locale/model_attributes.rb:36 +msgid "InfoRequestEvent|Event type" +msgstr "InfoRequestEvent|Event type" + +#: locale/model_attributes.rb:40 +msgid "InfoRequestEvent|Last described at" +msgstr "InfoRequestEvent|Last described at" + +#: locale/model_attributes.rb:37 +msgid "InfoRequestEvent|Params yaml" +msgstr "InfoRequestEvent|Params yaml" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Prominence" +msgstr "InfoRequestEvent|Prominence" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Allow new responses from" +msgstr "InfoRequest|Lejo përgjegje të reja prej" + +#: locale/model_attributes.rb:80 +msgid "InfoRequest|Awaiting description" +msgstr "InfoRequest|Awaiting description" + +#: locale/model_attributes.rb:79 +msgid "InfoRequest|Described state" +msgstr "InfoRequest|Described state" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Handle rejected responses" +msgstr "InfoRequest|Handle rejected responses" + +#: locale/model_attributes.rb:86 +#, fuzzy +msgid "InfoRequest|Idhash" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Law used" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Prominence" +msgstr "Info të kërkesës | Rëndësi" + +#: locale/model_attributes.rb:78 +msgid "InfoRequest|Title" +msgstr "Info të kërkesës | Titulli" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Url title" +msgstr "Info të kërkesës | Titulli Url" + +#: app/models/info_request_event.rb:303 +msgid "Information not held" +msgstr "Informata nuk mbahet këtu" + +#: app/models/info_request.rb:791 +msgid "Information not held." +msgstr "Informata nuk mbahet këtu." + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" +"AA Information on emissions and discharges (e.g. noise, energy, radiation, " +"waste materials)" + +#: app/models/info_request_event.rb:311 +msgid "Internal review acknowledgement" +msgstr "" + +#: app/models/info_request_event.rb:328 +msgid "Internal review request" +msgstr "" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests to " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies" +"\",\n" +"or cannot do so. If you can, please enable cookies, or try using a " +"different\n" +"browser. Then press refresh to have another go." +msgstr "" +"Kjo mund të jetë sepse shfletuesi yt nuk është i vendosur të pranojë " +"\"cookies\", ose nuk mund ta bëjë këtë. Nëse ke mundësi, të lutem aktivizoni " +"\"cookies\", ose përdor një shfletues (browser) tjeter. Pastaj shtyp " +"\"refresh\" për të provuar edhe një herë." + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "Bashkangjitur më" + +#: app/views/user/show.rhtml:62 +#, fuzzy +msgid "Joined {{site_name}} in" +msgstr "Kontakt {{site_name}}" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want " +"(<a href=\"%s\">why?</a>)." +msgstr "" +"AA Keep it <strong>focused</strong>, you'll be more likely to get what you " +"want (<a href=\"%s\">why?</a>)." + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "Autoriteti i shikuar së fundi:" + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "Kërkesa e shikuar së fundi:" + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" +"Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe emrin e " +"shfletuesit (browser-it) dhe versionin e tij. Gjithashtu na trego për emrin " +"e sistemit operativ dhe versionin." + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "Listo të gjitha autoritetet (CSV)" + +#: app/models/info_request.rb:789 +msgid "Long overdue." +msgstr "" + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "AA Make a new Environmental Information request" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "AA Make an {{law_used_short}} request to '{{public_body_name}}'" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:67 +msgid "Make and explore Freedom of Information requests" +msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:87 +msgid "Make request" +msgstr "Bëjë kërkesë" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "Bëj kërkesën tënde" + +#: app/views/contact_mailer/message.rhtml:4 +#, fuzzy +msgid "Message sent using {{site_name}} contact form, " +msgstr "Mesazhi i dërguar duke përdorur kontakt formën e InformataZyrtare," + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "Mungojnë të dhënat për '" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "Më shumë për këtë autoritet" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Më shumë autoritete" + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Më shumë kërkesa te suksesshme" + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "Kërkesa ime është <strong>refuzuar</strong>" + +#: app/views/layouts/default.rhtml:91 +msgid "My requests" +msgstr "Kërkesat e mia" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "Emri nuk mund të jetë i zbrazët" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "Emri është i zënë" + +#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 +#, fuzzy +msgid "New Freedom of Information requests" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "Email i ri:" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "Fjalëkalim i ri:" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "Fjalëkalim i ri: (përsërite)" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "Përgjegje e re për kërkesën tënde" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "Përgjegje e re për {{law_used_short}} kërkesën" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "Rezultatet më të reja të parat" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "Pastaj, preje foton tënde >>" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "Ende nuk ka kërkesa të këtij lloji." + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "Nuk gjetëm kërkesa të ngjashme." + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" +"Ende askush nuk ka bërë ndonjë kërkesë te {{public_body_name}} duke përdorur " +"këtë faqe." + +#: app/views/request/_request_listing.rhtml:2 +#: app/views/public_body/_body_listing.rhtml:2 +msgid "None found." +msgstr "Asnjë nuk u gjet." + +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +#: app/views/user/signchangeemail_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "Kontrollo emailin tënd!" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "AA Now preview your follow up" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "AA Now preview your message asking for an internal review" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "AA Now preview your request" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "Ose hiqni fotografinë ekzistuese" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " +"përdorur {{site_name}}" + +#: app/controllers/request_controller.rb:414 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "" + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "Emali i vjetër:" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "Në këtë faqe" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." + +#: app/models/info_request.rb:405 +msgid "" +"Only the authority can reply to this request, and I don't recognise the " +"address this reply was sent from" +msgstr "" + +#: app/models/info_request.rb:401 +msgid "" +"Only the authority can reply to this request, but there is no \"From\" " +"address to check against" +msgstr "" + +#: app/views/general/search.rhtml:158 +#, fuzzy +msgid "Original request sent" +msgstr "info request event" + +#: locale/model_attributes.rb:21 +msgid "OutgoingMessage|Body" +msgstr "OutgoingMessage | Body" + +#: locale/model_attributes.rb:24 +msgid "OutgoingMessage|Last sent at" +msgstr "OutgoingMessage | Së fundi është dërguar në" + +#: locale/model_attributes.rb:23 +msgid "OutgoingMessage|Message type" +msgstr "OutgoingMessage|Message type" + +#: locale/model_attributes.rb:22 +msgid "OutgoingMessage|Status" +msgstr "OutgoingMessage|Status" + +#: locale/model_attributes.rb:25 +msgid "OutgoingMessage|What doing" +msgstr "OutgoingMessage|What doing" + +#: app/models/info_request.rb:795 +msgid "Partially successful." +msgstr "Pjesërisht e suksesshme." + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "Fjalëkalimi nuk është i saktë" + +#: app/views/user/_signup.rhtml:30 app/views/user/_signin.rhtml:16 +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "Fjalëkalimi: (përsërite)" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "Fotografia yte:" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "Planet dhe masat administrative që ndikojnë këto çështje" + +#: app/controllers/request_game_controller.rb:42 +msgid "Play the request categorisation game" +msgstr "" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "Luaj lojën e kategorizimit të kërkesave!" + +#: app/views/request/show.rhtml:101 +msgid "Please" +msgstr "Të lutem" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "Të lutem <a href=\"%s\">na kontakto</a> që neve ta rregullojme ate." + +#: app/views/request/show.rhtml:52 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" +"Të lutem <strong> përgjegju pyetjes së mësipërme</strong> që ne të dimë nëse" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" +"AA Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." + +#: app/views/request/_followup.rhtml:27 +#, fuzzy +msgid "" +"Please <strong>only</strong> write messages directly relating to your " +"request {{request_link}}. If you would like to ask for information that was " +"not in your original request, then <a href=\"{{new_request_link}}\">file a " +"new request</a>." +msgstr "" +"AAPlease <strong>only</strong> write messages directly relating to your \n" +"title=\"Tab\">»</span>request {{request_link}}. If you would like to ask for " +"information\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span>that was not in your " +"original request, then <a href=\"%s\">file a new request</a>." + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "Të lutem kërko vetëm për informacion në lidhje me mjedisin" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" +"AA Please check the URL (i.e. the long code of letters and numbers) is " +"copied\n" +"correctly from your email." + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "Të lutem zgjedh një fajll që përmban foton tënde." + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "Të lutem zgjedh llojin e përgjigjes." + +#: app/controllers/request_controller.rb:346 +msgid "" +"Please choose whether or not you got some of the information that you wanted." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +#, fuzzy +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for {{site_name}}\n" +"from {{old_email}} to {{new_email}}" +msgstr "" +"Të lutem klikoni në linkun më poshtë për të konfirmuar se dëshironi të " +"ndryshoni adresën e emailit që ju përdorni për InformataZyrtare nga" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" +"Të lutem kliko në linkun e mëposhtëm për të konfirmuar email adresën tënde." + +#: app/models/info_request.rb:126 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" +"Të lutem përshkruaj në lëndë më gjerësisht se për çfarë është kërkesa. Nuk " +"ka nevojë të shkruhet që bëhet fjalë për kërkesë për qasje në informata, ajo " +"shtohet automatikisht." + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" +"Të lutem mos ngarko fotografi ofenduese. Ne do t'i largojmë imazhet që ne i " +"konsiderojmë të papërshtatshme." + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "Të lutem aktivizo \"cookies\" në shfletues për të vazhduar" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "Të lutem shkruaj fjalëkalimin" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "Të lutem shkruaj lëndën" + +#: app/models/info_request.rb:34 +msgid "Please enter a summary of your request" +msgstr "Të lutem shkruaj një përmbledhje të kërkesës tënde" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "Të lutem shkruaj adresën korrekte të emailit" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "Të lutem shkruaj mesazhin që dëshiron do ta dërgosh" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "Të lutem shto komentin tënd" + +#: app/models/user.rb:34 app/models/contact_validator.rb:29 +msgid "Please enter your email address" +msgstr "Të lutem shkruaj adresën e emailit tënd" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "Të lutem shto mesazhin për përcjellje" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "Të lutem shkruaj letrën e kërkesës për informatë " + +#: app/models/user.rb:36 app/models/contact_validator.rb:28 +msgid "Please enter your name" +msgstr "Të lutem shkruaj emrin tënd" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "Të lutem shkruaj adresën e re të emailit " + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "Të lutem shkruaj adresën e vjetër të emailit " + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "Të lutem shkruaj fjalëkalimin tënd" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" +"Të lutem shkruaj hollësi spjeguese se për çfarë arsye po kërkon rishqyrtim" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" + +#: app/models/info_request.rb:123 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" +"Të lutem bëje përmbledhjen sa më shkurt, sikurse në lëndën (subjektin) e " +"emailit. Mund të shkruash një togfjalësh në vend të një fjalie të plotë." + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, " +"<strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting " +"unrelated information." +msgstr "" +"AA Please only request information that comes under those categories, " +"<strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting " +"unrelated information." + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</" +"strong>\n" +"if they are successful yet or not." +msgstr "" +"AA Please select each of these requests in turn, and <strong>let everyone " +"know</strong>\n" +"if they are successful yet or not." + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" +"Te lutem nënshkruaj në fund me emrin tënd, ose ndrysho \"% {signoff}\" " +"nënshkrimin" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "Të lutem kyçu si " + +#: app/controllers/request_controller.rb:730 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" + +#: app/controllers/request_controller.rb:434 +msgid "Please use the form below to tell us more." +msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" +"Të lutem përdor këtë adresë të emailit për të gjitha përgjegjet në këtë " +"kërkesë:" + +#: app/models/info_request.rb:35 +msgid "Please write a summary with some text in it" +msgstr "Të lutem shkruaj përmbledhjen" + +#: app/models/info_request.rb:120 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj përmbledhjen duke përdorur kombinim të germave të mëdha dhe " +"të vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/controllers/request_controller.rb:423 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj mesazhin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may " +"be useful." +msgstr "" +"AA Point to <strong>related information</strong>, campaigns or forums which " +"may be useful." + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Circumstance" +msgstr "PostRedirect|Circumstance" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Email token" +msgstr "PostRedirect|Email token" + +#: locale/model_attributes.rb:50 +msgid "PostRedirect|Post params yaml" +msgstr "PostRedirect|Post params yaml" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Reason params yaml" +msgstr "PostRedirect|Reason params yaml" + +#: locale/model_attributes.rb:48 +msgid "PostRedirect|Token" +msgstr "PostRedirect|Token" + +#: locale/model_attributes.rb:49 +msgid "PostRedirect|Uri" +msgstr "PostRedirect|Uri" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "AA Preview follow up to '" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "AA Preview your annotation" + +#: app/views/request/_followup.rhtml:96 +msgid "Preview your message" +msgstr "AA Preview your message" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "AA Preview your public request" + +#: locale/model_attributes.rb:18 +msgid "ProfilePhoto|Data" +msgstr "ProfilePhoto|Data" + +#: locale/model_attributes.rb:19 +msgid "ProfilePhoto|Draft" +msgstr "ProfilePhoto|Draft" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "Autoritetet publike - {{description}}" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" +"Autoritetet publike prej {{start_count}} tek {{end_count}} prej " +"{{total_count}} për {{user_search_query}}" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "PublicBody |Germa e parë" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "PublicBody |Ballina" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "PublicBody | Redaktimi i fundit i komentit" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "PublicBody | Redaktimi i fundit editor" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "PublicBody |Emri" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "PublicBody |Shënime" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "PublicBody | Skema e publikimit" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "PublicBody |Emaili me kërkesë" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "PublicBody |Emri i shkurtë" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "PublicBody |URL emri" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "PublicBody |Versioni" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "Skema e publikimit" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "Ri-edito këtë mesazh" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "Ri-edito këtë kërkesë" + +#: app/views/general/search.rhtml:137 +#, fuzzy +msgid "" +"Read about <a href=\"{{advanced_search_url}}\">advanced search operators</" +"a>, such as proximity and wildcards." +msgstr "" +"Lexo rreth <a href=\"%s\">kërkimit të avansuar të operatorëve</a> , të tilla " +"si afërsia dhe gjithëpërfshirëse." + +#: app/views/layouts/default.rhtml:93 +msgid "Read blog" +msgstr "Lexo blog-un" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" +"Lexoni këtë para se të shkruani {{info_request_law_used_full}} kërkesën" + +#: app/views/general/search.rhtml:150 +msgid "Received an error message, such as delivery failure." +msgstr "" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "Rezultatet e përshkruara së fundi radhiti të parat" + +#: app/controllers/request_controller.rb:139 +msgid "Recently sent Freedom of Information requests" +msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "Kërkesat e dërguara së fundi" + +#: app/controllers/request_controller.rb:144 +msgid "Recently successful responses" +msgstr "Përgjegjet e marra së fundi" + +#: app/models/info_request_event.rb:305 +msgid "Refused" +msgstr "Refuzuar" + +#: app/models/info_request.rb:793 +msgid "Refused." +msgstr "Refuzuar." + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" +"AA Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "Raporto abuzim" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "Kërko një rishikim intern" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "Kërko një rishikim intern prej" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "Kërkesa është larguar (fshirë)" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" +"Kërkesë dërguar te {{public_body_name}} nga {{info_request_user}} me " +"{{date}}." + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" +"AA Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "Kërkuar nga {{public_body_name}} nga {{info_request_user}} me {{date}}" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 +msgid "Requests or responses matching '{{query}}'" +msgstr "" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "Përgjegju me email" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "Përgjegju kërkesës" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "Përgjegju kërkesës për Informata Zyrtare" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "Përgjegju duke përdorur uebin" + +#: app/views/general/search.rhtml:160 +#, fuzzy +msgid "Response from a public authority" +msgstr "AA <strong>Thank</strong> the public authority or " + +#: app/views/request/show.rhtml:77 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show.rhtml:85 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "Përgjegje për kërkesën tënde" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "Përgjegja:" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "Faqja e rezultateve {{page_number}}" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "Ruaj" + +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:80 +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +msgid "Search" +msgstr "Kërko" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdoruesit" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." + +#: app/controllers/user_controller.rb:331 +msgid "Send a message to " +msgstr "" + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "AA Send a public follow up message to" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "AA Send a public reply to" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "Dërgo mesazh" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "Dërgo mesazh te" + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "Dërgo" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "Vendos fotografinë e profilit tënd" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "Emri i shkurtë është i zënë" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "Shfaqi rezultatet më të rëndësishme" + +#: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 +msgid "Show only..." +msgstr "Shfaq vetëm..." + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "Kyçu" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "Kyçu ose krijo një llogari të re" + +#: app/views/layouts/default.rhtml:103 +msgid "Sign in or sign up" +msgstr "Kyçu ose Ç'kyçu" + +#: app/views/layouts/default.rhtml:100 +msgid "Sign out" +msgstr "Ç'kyçu" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "Regjistrohu" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "Kërkesa të ngjashme" + +#: app/models/info_request_event.rb:307 +msgid "Some information sent" +msgstr "Disa informata janë dërguar" + +#: app/views/general/search.rhtml:145 +#, fuzzy +msgid "Some of the information requested has been received" +msgstr "<strong>Disa nga informacionet</strong> janë dërguar" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not " +"the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" +"AA Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not " +"the\n" +"information has been provided. Everyone'll be exceedingly grateful." + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +#, fuzzy +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"{{site_name}} from {{old_email}} to {{new_email}}." +msgstr "" +"Dikush, ndoshta ti, u përpoq të ndryshojë adresën e emailit në " +"InformataZyrtare.org nga" + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "Shënim të veçantë për këtë autoritet!" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "Ende në pritje të <strong>shqyrtimit të brendshëm</strong>" + +#: app/views/request/preview.rhtml:18 +#: app/views/request/followup_preview.rhtml:23 +msgid "Subject:" +msgstr "Lënda:" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "Dërgo" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "Dërgo statusin" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "Kërkesat e suksesshme për Informata Zyrtare" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "Përgjegjet e suksesshme" + +#: app/models/info_request.rb:797 +msgid "Successful." +msgstr "Suksesshme." + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the information</" +"strong>." +msgstr "" +"Sugjero si kërkuesi mund të gjen pjesën <strong>tjetër të informacionit.</" +"strong>" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "Përmbledhje:" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "Tabela e statuseve" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "Etiketat:" + +#: app/controllers/request_game_controller.rb:52 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "" + +#: app/controllers/request_controller.rb:736 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" + +#: app/controllers/request_controller.rb:378 +msgid "" +"Thank you for updating the status of the request '<a href=\"{{url}}\">" +"{{info_request_title}}</a>'. There are some more requests below for you to " +"classify." +msgstr "" + +#: app/controllers/request_controller.rb:381 +msgid "Thank you for updating this request!" +msgstr "" + +#: app/controllers/user_controller.rb:398 +#: app/controllers/user_controller.rb:414 +msgid "Thank you for updating your profile photo" +msgstr "" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find " +"successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" +"AA Thanks for helping - your work will make it easier for everyone to find " +"successful\n" +"responses, and maybe even let us make league tables..." + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" +"AA Thanks very much - this will help others find useful stuff. We'll also, " +"if you need it, give advice on what to do next about your\n" +" requests." + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</" +"strong>.\n" +" We'll also, if you need it, give you advice on what to do next about " +"each of your\n" +" requests." +msgstr "" +"AA Thanks very much for helping keep everything <strong>neat and organised</" +"strong>.\n" +" We'll also, if you need it, give you advice on what to do next about " +"each of your\n" +" requests." + +#: app/controllers/user_controller.rb:189 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it " +"correctly." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:43 +#: app/views/request/_describe_state.rhtml:47 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "AA The <strong>review has finished</strong> and overall:" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" + +#: app/views/user_mailer/changeemail_already_used.rhtml:8 +msgid "The accounts have been left as they previously were." +msgstr "Llogaritë janë lënë siq kanë qenë më përpara." + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI " +"request" +msgstr "" +"Autoriteti thotë se ata kanë <strong>nevojë për një adresë postare,</strong> " +"jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " +"informatë zyrtare" + +#: app/views/request/show.rhtml:109 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this " +"request." +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" +"Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu " +"përgjegjur një kërkese {{law_used_short}} nuk është dorëzuar." + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more " +"details</a>).\n" +" At the bottom of this page, write a reply to the authority " +"explaining this to them." +msgstr "" +"AA The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more " +"details</a>).\n" +" At the bottom of this page, write a reply to the authority " +"explaining this to them." + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" +"Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " +"tani:" + +#: app/views/general/search.rhtml:143 +#, fuzzy +msgid "The public authority does not have the information requested" +msgstr "AA <strong>did not have</strong> the information requested." + +#: app/views/general/search.rhtml:147 +#, fuzzy +msgid "The public authority would like part of the request explained" +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:148 +#, fuzzy +msgid "The public authority would like to / has responded by post" +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "Kërkesa është <strong>refuzuar</strong>" + +#: app/controllers/request_controller.rb:352 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" + +#: app/views/request/show.rhtml:104 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "Kërkesa është në <strong>pritje për sqarim.</strong>" + +#: app/views/request/show.rhtml:97 +msgid "The request was <strong>partially successful</strong>." +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme.</strong>" + +#: app/views/request/show.rhtml:93 +msgid "The request was <strong>refused</strong> by" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/show.rhtml:95 +msgid "The request was <strong>successful</strong>." +msgstr "Kërkesa ishte e <strong>suksesshme</strong>." + +#: app/views/general/search.rhtml:144 +#, fuzzy +msgid "The request was refused by the public authority" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific " +"here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" +"Kërkesa që ti je përpjek për të parë është hequr (larguar). Ka arsye të " +"ndryshme pse ne kemi mund për të bërë këtë, na vie keq që nuk mund të jemi " +"më specifik. Të lutem të <a href=\"%s\">na kontakton</a> nëse ke ndonjë " +"pyetje." + +#: app/views/general/search.rhtml:152 +msgid "The requester has abandoned this request for some reason" +msgstr "" + +#: app/views/request/_followup.rhtml:32 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say " +"that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" +"AA The response to your request has been <strong>delayed</strong>. You can " +"say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" + +#: app/views/request/_followup.rhtml:44 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say " +"that, by \n" +" law, under all circumstances, the authority should have " +"responded\n" +" by now" +msgstr "" +"AA The response to your request is <strong>long overdue</strong>. You can " +"say that, by \n" +" law, under all circumstances, the authority should have " +"responded\n" +" by now" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" +"Indeksi i kërkimit aktualisht është i shkëputur, kështu që nuk mundë të " +"shfaq kërkesat e Informata zyrtare që kan të bëjnë me këtë autoritet" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" +"AA The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." + +#: app/controllers/track_controller.rb:144 +msgid "Then you can cancel the alert." +msgstr "" + +#: app/controllers/track_controller.rb:174 +msgid "Then you can cancel the alerts." +msgstr "" + +#: app/controllers/user_controller.rb:249 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" + +#: app/controllers/user_controller.rb:203 +msgid "Then you can change your password on {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:338 +msgid "Then you can classify the FOI response you have got from " +msgstr "" + +#: app/controllers/request_game_controller.rb:41 +msgid "Then you can play the request categorisation game." +msgstr "" + +#: app/controllers/user_controller.rb:330 +msgid "Then you can send a message to " +msgstr "" + +#: app/controllers/user_controller.rb:514 +msgid "Then you can sign in to {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:61 +msgid "Then you can update the status of your request to " +msgstr "" + +#: app/controllers/request_controller.rb:702 +msgid "Then you can upload an FOI response. " +msgstr "" + +#: app/controllers/request_controller.rb:545 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:546 +msgid "Then you can write your reply to " +msgstr "" + +#: app/models/track_thing.rb:197 +msgid "" +"Then you will be emailed whenever '{{user_name}}' requests something or gets " +"a response." +msgstr "" + +#: app/models/track_thing.rb:213 +msgid "" +"Then you will be emailed whenever a new request or response matches " +"'{{query}}'." +msgstr "" + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" + +#: app/models/track_thing.rb:146 +msgid "Then you will be emailed whenever anyone makes a new FOI request." +msgstr "" + +#: app/models/track_thing.rb:181 +msgid "" +"Then you will be emailed whenever someone requests something or gets a " +"response from '{{public_body_name}}'." +msgstr "" + +#: app/controllers/request_controller.rb:299 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "" + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "" + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow " +"this link to see what they wrote." +msgstr "" +"AA There are {{count}} new annotations on your {{info_request}} request. " +"Follow this link to see what they wrote." + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has " +"this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" +"AA There is <strong>more than one person</strong> who uses this site and has " +"this name. \n" +" One of them is shown below, you may mean a different one:" + +#: app/views/request/show.rhtml:113 +#, fuzzy +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the {{site_name}} team." +msgstr "" +"AA There was a <strong>delivery error</strong> or similar, which needs " +"fixing by the WhatDoTheyKnow team." + +#: app/controllers/public_body_controller.rb:77 +msgid "There was an error with the words you entered, please try again." +msgstr "" + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "Ata do të përgjegjen <strong>me postë</strong>" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who " +"does)</small>" +msgstr "" +"Ata <strong>nuk e kanë</strong> informatën <small>(ndoshta ata tregojnë kush " +"e ka)</small>" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "Atyre u është dhënë shpjegimi vijues:" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly, " +"as normally required by law" +msgstr "" +"Ata nuk janë përgjegj ndaj kërkesës {{law_used_short}} tënde {{title}} " +"menjëherë, siç kërkohet normalisht nga ligji" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" +"Ata nuk janë përgjegjur {{law_used_short}} ndaj kërkesës teënde {{title}}, " +"siç kërkohet me ligj" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "Gjëra për të bërë me këtë kërkesë" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" +"Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëjni një kërkesë për " +"të." + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%" +"s\">sign in</a> to view the response." +msgstr "" +"Ky koment është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh </a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" +"AA This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" +"Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " +"zyrtare Lirinë e të kërkojë informacion" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" +"Kjo është për shkak se {{title}} është një kërkesë e vjetër që ka qenë e " +"shenjuar të mos marrë më përgjegje." + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" +"Kjo është kërkesa yte, kështu që ti do të merr email automatikisht kur " +"përgjegjet e reja arrijnë." + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%" +"s\">sign in</a> to view the response." +msgstr "" +"AA This outgoing message has been hidden. See annotations to title=\"Tab" +"\">»</span>find out why. If you are the requester, then you may <a href=\"%s" +"\">sign in</a> to view the response." + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "Ky person ka" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "e këtij personi" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" + +#: app/views/request/show.rhtml:55 +msgid "This request has an <strong>unknown status</strong>." +msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." + +#: app/views/request/show.rhtml:117 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made " +"it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" +"Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " +"Mund të ketë një shpjegim në korrespondencën më poshtë." + +#: app/models/info_request.rb:395 +msgid "" +"This request has been set by an administrator to \"allow new responses from " +"nobody\"" +msgstr "" + +#: app/views/request/show.rhtml:115 +#, fuzzy +msgid "" +"This request has had an unusual response, and <strong>requires attention</" +"strong> from the {{site_name}} team." +msgstr "" +"Kjo kërkesë ka pasë një përgjegje të pazakontë dhe <strong>kërkon vëmendje</" +"strong> nga ekipi i InformataZyrtare." + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are " +"logged\n" +" in as a super user." +msgstr "" +"Kjo kërkesë ka klasifikim 'fshehur'. Ti mund të shohësh atë, vetëm sepse je " +"kyçur 'super user'." + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" +"Kjo kërkesë është e fshehur, kështu që vetëm ti - kërkuesi mund ta shoh " +"ate. Të lutem <a href=\"%s\">na kontakto</a> nëse nuk je i sigurt pse kjo po " +"ndodhë." + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</" +"a> to view the response." +msgstr "" +"Kjo përgjegje është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë " +"përgjegjen." + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" +"Ky ueb sajt është <strong>publik.</strong>Kërkesat dhe pergjegjet do të jenë " +"publike." + +#: app/views/request/details.rhtml:6 +#, fuzzy +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on {{site_name}}. This could be used to generate information " +"about\n" +"the speed with which authorities respond to requests, the number of " +"requests\n" +"which require a postal response and much more." +msgstr "" +"AA This table shows the technical details of the internal events that " +"happened\n" +"to this request on WhatDoTheyKnow. This could be used to generate " +"information about\n" +"the speed with which authorities respond to requests, the number of " +"requests\n" +"which require a postal response and much more." + +#: app/views/user/show.rhtml:79 +#, fuzzy +msgid "This user has been banned from {{site_name}} " +msgstr "Ky përdorues është ndaluar (përjashtuar) nga InformataZyrtare.org" + +#: app/views/user_mailer/changeemail_already_used.rhtml:5 +#, fuzzy +msgid "" +"This was not possible because there is already an account using \n" +"the email address {{email}}." +msgstr "" +"Kjo nuk ishte e mundur sepse egziston një llogari duke \n" +"përdorur këtë adresë të emailit." + +#: app/models/track_thing.rb:145 +msgid "To be emailed about any new requests" +msgstr "" + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "" + +#: app/models/track_thing.rb:196 +msgid "To be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:180 +msgid "" +"To be emailed about requests made using {{site_name}} to the public " +"authority '{{public_body_name}}'" +msgstr "" + +#: app/controllers/track_controller.rb:173 +msgid "To cancel these alerts" +msgstr "" + +#: app/controllers/track_controller.rb:143 +msgid "To cancel this alert" +msgstr "" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" +"Për të vazhduar, ti duhet të kyçesh ose të hapë një llogari. Për fat të keq, " +"ka pasur një problem teknik duke u përpjekur për të bërë këtë." + +#: app/controllers/user_controller.rb:248 +msgid "To change your email address used on {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:337 +msgid "To classify the response to this FOI request" +msgstr "" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "Për të bërë këtë të lutem dërgoni një email privat te" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "Për ta bërë këtë, së pari kliko në linkun më poshtë." + +#: app/models/track_thing.rb:212 +msgid "To follow requests and responses matching '{{query}}'" +msgstr "" + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +#, fuzzy +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to " +"\"{{display_status}}\" If you disagree with their categorisation, please " +"update the status again yourself to what you believe to be more accurate." +msgstr "" +"AA To help us keep the site tidy, someone else has updated the status of " +"the \n" +"{{law_used_full}} request {{title}} \n" +"that you made to {{public_body}}, to \n" +"{{display_status}} If you disagree with \n" +"their categorisation, please update the status again yourself to what\n" +"you believe to be more accurate." + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" +"Që të na njoftoni, ndiqni këtë link dhe pastaj zgjedhni kutinë e duhur." + +#: app/controllers/request_game_controller.rb:40 +msgid "To play the request categorisation game" +msgstr "" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "" + +#: app/controllers/request_controller.rb:543 +msgid "To reply to " +msgstr "" + +#: app/controllers/request_controller.rb:542 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:329 +msgid "To send a message to " +msgstr "" + +#: app/controllers/request_controller.rb:298 +msgid "To send your FOI request" +msgstr "" + +#: app/controllers/request_controller.rb:60 +msgid "To update the status of this FOI request" +msgstr "" + +#: app/controllers/request_controller.rb:701 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "Për të parë përgjegjen, kliko në linkun më poshtë." + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "Për {{public_body_link_absolute}}" + +#: app/views/request/preview.rhtml:17 app/views/request/new.rhtml:88 +#: app/views/request/followup_preview.rhtml:22 +msgid "To:" +msgstr "Për:" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "" + +#: app/models/track_thing.rb:206 +msgid "Track things matching '{{query}}' by email" +msgstr "" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "Përcjell këtë autoritet" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/models/track_thing.rb:190 +#, fuzzy +msgid "Track this person by email" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "Përcjell këtë kërkesë" + +#: app/models/track_thing.rb:123 +#, fuzzy +msgid "Track this request by email" +msgstr "Përcjell këtë kërkesë" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "TrackThing |Track medium" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "TrackThing|Track query" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "TrackThing |Track type" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" +"Tipi<code><strong>01/01/2008..14/01/2008</strong></code>është për të treguar " +"vetëm gjëra që kanë ndodhur në dy javët e para të janarit." + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "URL emri nuk mund të jetë i zbrazët" + +#: app/models/user_mailer.rb:45 +#, fuzzy +msgid "Unable to change email address on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "Nuk munda të dërgoj përgjegje te {{username}}" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "AA Unexpected search result type" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "AA Unexpected search result type " + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" +"Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë " +"autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a href=\"%s" +"\">na kontakton</a> për ta rregulluar atë." + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" +"Për fat të keq, ne nuk kemi një adresë funksionale " +"{{info_request_law_used_full}} për" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "I/e panjohur" + +#: app/models/info_request_event.rb:317 +msgid "Unusual response" +msgstr "Përgjegje e pazakonshme" + +#: app/models/info_request.rb:807 +msgid "Unusual response." +msgstr "Përgjegje e pazakonshme." + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "Aktualizo statusin e kësaj kërkese" + +#: app/controllers/request_controller.rb:62 +msgid "Update the status of your request to " +msgstr "" + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" +"Përdor OSE (me shkronja kapitale), ku ju nuk jeni në dijeni për cilat fjalë " +"bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të mdhaja</strong></code>" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. <strong><code>" +"\"Liverpool City Council\"</code></strong>" +msgstr "" +"Përdor kuotat (thonjëzat \"\") kur ti dëshiron të gjeshë një fjalë ekzakte, " +"p.sh.<code><strong>\"Ministria e Arsimit\"</strong></code>" + +#: locale/model_attributes.rb:65 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "UserInfoRequestSentAlert|Alert type" + +#: locale/model_attributes.rb:76 +msgid "User|About me" +msgstr "Përdoruesi |Rreth meje" + +#: locale/model_attributes.rb:74 +msgid "User|Admin level" +msgstr "Përdoruesi | Niveli i Administrimit" + +#: locale/model_attributes.rb:75 +msgid "User|Ban text" +msgstr "Përdoruesi |Tekst i ndaluar" + +#: locale/model_attributes.rb:67 +msgid "User|Email" +msgstr "Përdoruesi |Email" + +#: locale/model_attributes.rb:71 +msgid "User|Email confirmed" +msgstr "Përdoruesi|Emaili u konfirmua" + +#: locale/model_attributes.rb:69 +msgid "User|Hashed password" +msgstr "User|Hashed password" + +#: locale/model_attributes.rb:73 +msgid "User|Last daily track email" +msgstr "User|Last daily track email" + +#: locale/model_attributes.rb:68 +msgid "User|Name" +msgstr "Përdoruesi|Emri" + +#: locale/model_attributes.rb:70 +msgid "User|Salt" +msgstr "User|Salt" + +#: locale/model_attributes.rb:72 +msgid "User|Url name" +msgstr "Përdoruesi | Emri Url" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "Shiko adresën e emailit për Informatë Zyrtare" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" + +#: app/views/contact_mailer/user_message.rhtml:10 +#, fuzzy +msgid "View Freedom of Information requests made by {{user_name}}:" +msgstr "Shiko kërkesat për informata zyrtare të bëra nga" + +#: app/views/layouts/default.rhtml:89 +msgid "View authorities" +msgstr "Shiko autoritetet" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "Shiko adresën e emailit" + +#: app/views/layouts/default.rhtml:88 +msgid "View requests" +msgstr "Shiko kërkesat" + +#: app/models/info_request.rb:799 +msgid "Waiting clarification." +msgstr "Duke pritur sqarim." + +#: app/views/request/show.rhtml:111 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" +"AA Waiting for an <strong>internal review</strong> by {{public_body_link}} " +"of their handling of this request." + +#: app/views/general/search.rhtml:149 +#, fuzzy +msgid "" +"Waiting for the public authority to complete an internal review of their " +"handling of the request" +msgstr "" +"AA Waiting for an <strong>internal review</strong> by {{public_body_link}} " +"of their handling of this request." + +#: app/views/general/search.rhtml:142 +#, fuzzy +msgid "Waiting for the public authority to reply" +msgstr "AA <strong>Thank</strong> the public authority or " + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" +"Për fat të keq, ne nuk kemi një email adresë funksionale për këtë autoritet" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "" + +#: app/views/request/_describe_state.rhtml:107 +#, fuzzy +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let " +"everyone know." +msgstr "" +"AA We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span>if you are " +"{{user_link}} please <a href=\"%s\">sign in</a> and let everyone know." + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni " +"këtë." + +#: app/views/user_mailer/changeemail_confirm.rhtml:10 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni " +"këtë." + +#: app/views/request/show.rhtml:61 +msgid "We're waiting for" +msgstr "Po presim për" + +#: app/views/request/show.rhtml:57 +msgid "We're waiting for someone to read" +msgstr "AA We're waiting for someone to read" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link " +"in\n" +"it before your email address will be changed." +msgstr "" +"Ne të kemi dërguar një email të ri në adresën e emailit tënd. Ti duhet të " +"klikosh në linkun në te para se adresa e emailit tënd do të ndryshohet." + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you " +"can\n" +"continue." +msgstr "" +"Ne të kemi dërguar një email, ti duhet të klikosh në linkun në te para se të " +"mund të vazhdojë." + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" +"Ne të kemi dërguar një email, kliko në linkun në te që të ti mund të " +"ndryshon fjalëkalimin tënd." + +#: app/views/request/_followup.rhtml:58 +msgid "What are you doing?" +msgstr "Çfarë je duke bërë?" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "Çfarë përshkruan më së miri statusin e kësaj kërkese tani?" + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" +"AA When you get there, please update the status to say if the response \n" +"contains any useful information." + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" +"Kur të marrësh përgjegjen në letër, të lutem i ndihmoni të tjerët të gjejnë " +"se çfarë thotë në te:" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" +"AA When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "Cila nga këto po ndodh?" + +#: app/models/info_request_event.rb:313 +msgid "Withdrawn by requester" +msgstr "E tërhequr nga kërkuesi" + +#: app/models/info_request.rb:809 +msgid "Withdrawn by the requester." +msgstr "E tërhequr nga kërkuesi." + +#: app/controllers/request_controller.rb:549 +msgid "Write a reply to " +msgstr "Shkruaj një përgjegje për " + +#: app/controllers/request_controller.rb:548 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "AA Write your request in <strong>simple, precise language</strong>." + +#: app/models/info_request_event.rb:301 +msgid "Wrong Response" +msgstr "Përgjegje e gabuar." + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "Ti" + +#: app/controllers/track_controller.rb:98 +msgid "You are already being emailed updates about " +msgstr "" + +#: app/models/track_thing.rb:175 +#, fuzzy +msgid "You are already tracking requests to {{public_body_name}} by email" +msgstr "AA Make an {{law_used_short}} request to '{{public_body_name}}'" + +#: app/models/track_thing.rb:207 +msgid "You are already tracking things matching '{{query}}' by email" +msgstr "" + +#: app/models/track_thing.rb:191 +msgid "You are already tracking this person by email" +msgstr "" + +#: app/models/track_thing.rb:124 +msgid "You are already tracking this request by email" +msgstr "" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "" + +#: app/models/track_thing.rb:140 +msgid "You are being emailed when there are new requests" +msgstr "" + +#: app/views/request/show.rhtml:88 +msgid "You can <strong>complain</strong> by" +msgstr "Ti mund të <strong>ankohesh</strong> duke" + +#: app/views/request/details.rhtml:58 +#, fuzzy +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"{{api_path}}\">API documentation</" +"a>." +msgstr "" +"AA You can get this page in computer-readable format as part of the main " +"JSON\n" +"page for the request. See the <a href=\"%s\">API documentation</a>." + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" +"Ju vetëm mund të kërkoni informacione në lidhje me mjedisin nga ky autoritet." + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "Ti ke" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "Ti ke një përgjegje të re për kërkesën {{law_used_full}}" + +#: app/controllers/user_controller.rb:492 +msgid "You have now changed the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:310 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" + +#: app/views/user_mailer/already_registered.rhtml:3 +#, fuzzy +msgid "" +"You just tried to sign up to {{site_name}}, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" +"AA You just tried to sign up to WhatDoTheyKnow.com, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>, " +"such as a working email address." +msgstr "" + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" +"AA You may <strong>include attachments</strong>. If you would like to attach " +"a\n" +"file too large for email, use the form below." + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"AA You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"AA You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." + +#: app/controllers/user_controller.rb:470 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:371 +msgid "You need to be logged in to change your profile photo." +msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." + +#: app/controllers/user_controller.rb:433 +msgid "You need to be logged in to clear your profile photo." +msgstr "" + +#: app/controllers/request_controller.rb:559 +msgid "You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can " +"respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, " +"here is the address:" +msgstr "" +"AA You should have received a copy of the request by email, and you can " +"respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, " +"here is the address:" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" +"AA You want to <strong>give your postal address</strong> to the authority in " +"private." + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations " +"or\n" +"send messages to other users. You may continue to view other requests, and " +"set\n" +"up\n" +"email alerts." +msgstr "" +"AA You will be unable to make new requests, send follow ups, add annotations " +"or\n" +"send messages to other users. You may continue to view other requests, and " +"set\n" +"up\n" +"email alerts." + +#: app/controllers/track_controller.rb:154 +msgid "You will no longer be emailed updates about " +msgstr "" + +#: app/controllers/track_controller.rb:183 +msgid "You will no longer be emailed updates for those alerts" +msgstr "" + +#: app/controllers/track_controller.rb:111 +msgid "You will now be emailed updates about " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" +"AA You will only get an answer to your request if you follow up\n" +"with the clarification." + +#: app/controllers/user_controller.rb:442 +msgid "You've now cleared your profile photo" +msgstr "" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "AA Your " + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" +"AA Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to " +"this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" +"AA Your details have not been given to anyone, unless you choose to reply to " +"this\n" +"message, which will then go directly to the person who wrote the message." + +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 app/views/user/_signin.rhtml:11 +msgid "Your e-mail:" +msgstr "Adresa e emailit tënd:" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "Email abonimet e tua" + +#: app/controllers/request_controller.rb:556 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:584 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:582 +msgid "Your internal review request has been sent on its way." +msgstr "" + +#: app/controllers/help_controller.rb:63 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" + +#: app/controllers/user_controller.rb:349 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" +"Mesazhi yt do të shfaqet në <strong>kërkuesit e internetit (p.sh. Google)</" +"strong>" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" +"Emri yt dhe shënimi do të shfaqen në <strong>kërkuesit e internetit (p.sh. " +"Google).</strong>" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</" +"strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" +"Emrin yt, kërkesa dhe çdo përgjegje do të shfaqen në <strong>kërkuesit e " +"internetit (p.sh. Google)</strong> ( <a href=\"%s\">detaje</a> )." + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "Emri yt:" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "Mesazhi yt origjinal është i bashkangjitur." + +#: app/controllers/user_controller.rb:231 +msgid "Your password has been changed." +msgstr "Fjalëkalimi yt është ndryshuar." + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "Fjalëkalimi yt:" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +#, fuzzy +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on {{site_name}}." +msgstr "" +"Fotografia yte do të shfaqet në publikisht <strong>në internet,</strong> " +"kurdo që të bëni diçka në InformataZyrtare." + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" +"AA Your request was called {{info_request}}. Letting everyone know whether " +"you got the information will help us keep tabs on" + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "Kërkesa yte:" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a href=\"%s" +"\">read why</a> and answers to other questions." +msgstr "" +"Përgjegja yte do të <strong>shfaqet në internet,</strong> <a href=\"%s" +"\">lexoni pse</a> dhe përgjegjet për pyetje të tjera." + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the {{site_name}} <strong>administrators</strong> " +"should do about the request." +msgstr "" + +#: app/models/track_mailer.rb:25 +msgid "Your {{site_name}} email alert" +msgstr "" + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "" + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "Sinqerisht," + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" +"një përmbledhje në një rresht të informacionit që ti kërkon,\n" +"»» »p.sh." + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "admin" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "i quajtur edhe {{public_body_short_name}}" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "dhe kyçu si" + +#: app/views/request/show.rhtml:59 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" +"AA and update the status accordingly. Perhaps <strong>you</strong> might " +"like to help out by doing that?" + +#: app/views/request/show.rhtml:64 +msgid "and update the status." +msgstr "dhe aktualizo statusin." + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "AA and we'll suggest <strong>what to do next</strong>" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "shënim" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "shënimet" + +#: app/models/track_thing.rb:138 +#, fuzzy +msgid "any <a href=\"/list\">new requests</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/models/track_thing.rb:154 +msgid "any <a href=\"/list/successful\">successful requests</a>" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "janë vonuar së tepërmi." + +#: app/controllers/public_body_controller.rb:111 +msgid "beginning with" +msgstr "duke filluar me" + +#: app/views/request/show.rhtml:82 +msgid "by" +msgstr "nga" + +#: app/views/request/_followup.rhtml:38 +msgid "by <strong>{{date}}</strong>" +msgstr "nga <strong>{{date}}</strong>" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "nga {{public_body_name}} për {{info_request_user}} me {{date}}." + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "nga {{user_link_absolute}}" + +#: locale/model_attributes.rb:42 +msgid "censor rule" +msgstr "censor rregulli" + +#: locale/model_attributes.rb:26 +msgid "comment" +msgstr "komenti" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" +"AA containing your postal address, and asking them to reply to this " +"request.\n" +" Or you could phone them." + +#: app/models/info_request_event.rb:338 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "AA during term time" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "p.sh." + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "edito tekstin në lidhje me ty" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "abonimet me email" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "madje edhe gjatë pushimeve" + +#: locale/model_attributes.rb:14 +msgid "exim log" +msgstr "exim log" + +#: locale/model_attributes.rb:57 +msgid "exim log done" +msgstr "exim log done" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "ka raportuar një" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "kanë vonuar." + +#: locale/model_attributes.rb:54 +msgid "holiday" +msgstr "festë" + +#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 +#: app/views/request/show.rhtml:80 +msgid "in term time" +msgstr "AA in term time" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "në total" + +#: locale/model_attributes.rb:60 +msgid "incoming message" +msgstr "mesazhi i ardhur" + +#: locale/model_attributes.rb:77 +msgid "info request" +msgstr "kërkesë për informatë" + +#: locale/model_attributes.rb:35 +msgid "info request event" +msgstr "info request event" + +#: app/views/user/signchangeemail.rhtml:3 +#: app/views/user/set_profile_about_me.rhtml:3 +msgid "internal error" +msgstr "gabim i brendshëm i sistemit" + +#: app/views/request/show.rhtml:100 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "është duke <strong>pritur për sqarim tuaj</strong>." + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "vetëm për të parë se si funksionon" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "ka lënë një shënim" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "bërë." + +#: app/views/request/show.rhtml:74 +msgid "no later than" +msgstr "jo më vonë se" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than " +"sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it " +"to us</a>." +msgstr "" +"AA no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than " +"sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it " +"to us</a>." + +#: app/views/request/show.rhtml:72 +msgid "normally" +msgstr "normalisht" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "vetëm" + +#: locale/model_attributes.rb:20 +msgid "outgoing message" +msgstr "Mesazhi dalës" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "Të lutem kyçu si" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "të lutem kyçu ose krijo një llogari të re." + +#: locale/model_attributes.rb:47 +msgid "post redirect" +msgstr "ridrejto postën në tjetër adresë" + +#: locale/model_attributes.rb:17 +msgid "profile photo" +msgstr "foto e profilit" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "institucioni publik" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "kërkesë." + +#: app/views/request/show.rhtml:89 +msgid "requesting an internal review" +msgstr "" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" +"AA response as needing administrator attention. Take a look, and reply to " +"this\n" +"email to let them know what you are going to do about it." + +#: app/views/request/show.rhtml:102 +msgid "send a follow up message" +msgstr "AA send a follow up message" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." + +#: app/views/request/show.rhtml:106 +msgid "sign in" +msgstr "Kyçu" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "Ç'kyçu" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "që ti ke bërë për" + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/confirm_login.rhtml:11 +#: app/views/user_mailer/changeemail_confirm.rhtml:13 +#: app/views/user_mailer/changeemail_already_used.rhtml:10 +#: app/views/track_mailer/event_digest.rhtml:66 +#, fuzzy +msgid "the {{site_name}} team" +msgstr "Kontakt {{site_name}}" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "ky person" + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" +"për të ndryshuar, fjalekalimin,\n" +"abonimet dhe më shumë" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "AA to check that the info isn't already published." + +#: app/views/request/show.rhtml:62 +msgid "to read" +msgstr "për të lexuar" + +#: app/views/request/show.rhtml:106 +msgid "to send a follow up message." +msgstr "AA to send a follow up message." + +#: app/views/request/show.rhtml:45 +msgid "to {{public_body}}" +msgstr "për {{public_body}}" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "përcjell gjënë" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "AA unexpected prominence on request event" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "AA unknown event type indexed " + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "arsye e panjohur" + +#: app/models/info_request_event.rb:333 app/models/info_request.rb:814 +msgid "unknown status " +msgstr "status i panjohur" + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "ndërprej abonimin" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "ndërpreji të gjitha abonimet" + +#: app/views/request/show.rhtml:53 +msgid "useful information." +msgstr "informata të dobishëme." + +#: locale/model_attributes.rb:66 +msgid "user" +msgstr "përdoruesi" + +#: locale/model_attributes.rb:64 +msgid "user info request sent alert" +msgstr "AA user info request sent alert" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "ti" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=" +"\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{Data}}. " +"Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</" +"a> , \n" +"apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të " +"ngjashme." + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "{{info_request_user_name}} vetëm:" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} më parë" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "{{public_body_name}} vetëm:" + +#: app/views/public_body/view_email.rhtml:7 +#, fuzzy +msgid "" +"{{site_name}} sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" +"InformataZyrtare.org dërgon kërkesa të reja për <strong>{{request_email}}</" +"strong> për këtë autoritet." + +#: app/models/user.rb:122 +msgid "{{user_name}} (Banned)" +msgstr "" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" +"{{user_name}} ka lënë shënim në kërkesën tënde {{law_used_short}}. Ndiqni " +"këtë link për të parë se çfarë ata shkruan." + +#: app/views/contact_mailer/user_message.rhtml:2 +msgid "{{user_name}} has used {{site_name}} to send you the message below." +msgstr "" + +#: app/views/request/show.rhtml:36 +msgid "" +"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this " +"{{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to " +"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" +msgstr "" + +#: app/views/request/show.rhtml:44 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" + +#~ msgid "%d Freedom of Information request" +#~ msgid_plural "%d Freedom of Information requests" +#~ msgstr[0] "%d Freedom of Information requests" +#~ msgstr[1] "%d Freedom of Information requests" + +#~ msgid "" +#~ "Authority has replied but the response <strong>does not correspond to the " +#~ "request</strong>" +#~ msgstr "" +#~ "Autoriteti është përgjegjur, por përgjegja <strong>nuk korrespondon me " +#~ "kërkesën</strong>" + +#~ msgid "Authority has requested <strong>extension of the deadline.</strong>" +#~ msgstr "Autoriteti ka kërkuar <strong>shtyrje të afatit.</strong>" + +#~ msgid "Authority has requested extension of the deadline." +#~ msgstr "Autoriteti ka kërkuar shtyrje të afatit." + +#~ msgid "Central government" +#~ msgstr "Qeveria" + +#~ msgid "" +#~ "FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " +#~ "{{user_search_query}}" +#~ msgstr "" +#~ "Kërkesat për IZ {{start_count}} deri {{end_count}} nga {{total_count}} " +#~ "për {{user_search_query}}" + +#~ msgid "If you're new to WhatDoTheyKnow" +#~ msgstr "Nëse je i ri në InformataZyrtare" + +#~ msgid "Local and regional" +#~ msgstr "Lokale dhe regjionale" + +#~ msgid "Nothing found for '{{search_terms}}'" +#~ msgstr "Asgjë nuk u gjet për '{{search_terms}}'" + +#~ msgid "" +#~ "People {{start_count}} to {{end_count}} of {{total_count}} for " +#~ "{{user_search_query}}" +#~ msgstr "" +#~ "Njerëzit {{start_count}} {{end_count}} i {{total_count}} " +#~ "{{user_search_query}}" + +#~ msgid "RawEmail|Data binary" +#~ msgstr "RawEmail |Të dhënat binare" + +#~ msgid "RawEmail|Data text" +#~ msgstr "RawEmail | Teksti i të dhënave" + +#~ msgid "Wrong Response." +#~ msgstr "Përgjegje e gabuar." + +#~ msgid "" +#~ "XXX this section needs localising re EIR as these are specific to UK law" +#~ msgstr "" +#~ "ABC XXX this section needs localising re EIR as these are specific to UK " +#~ "law" + +#~ msgid "raw email" +#~ msgstr "email para" + +#~ msgid "the WhatDoTheyKnow team" +#~ msgstr "ekipi i InformataZyrtare" + +#~ msgid "to" +#~ msgstr "për" + +#~ msgid "to " +#~ msgstr "për " diff --git a/locale/sq/app_old4.po b/locale/sq/app_old4.po new file mode 100644 index 000000000..a0a7b952e --- /dev/null +++ b/locale/sq/app_old4.po @@ -0,0 +1,4312 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <bresta@gmail.com>, 2011. +# driton <dritoni.h@gmail.com>, 2011. +# <vbrestovci@gmail.com>, 2011. +# Valon <vbrestovci@gmail.com>, 2011. +# vbrestovci <vbrestovci@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: alaveteli\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-08-11 12:30+0200\n" +"PO-Revision-Date: 2011-08-12 08:23+0000\n" +"Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app/models/incoming_message.rb:866 +msgid "" +"\n" +"\n" +"[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:14 +msgid "" +" This will appear on your {{site_name}} profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" +" (pa politikë <strong>llafazane</strong>, lexo <a href=\"%s\">politikat e " +"moderimit</a>)" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" +"<strong>(Durim,</strong> sidomos për fotografi të mëdha, mund të marrë më " +"shum kohë!)" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr "(ti)" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" +"<strong>Shënim:</strong>Do të dërgoj një email. Ndiq udhëzimet në te për të " +"ndryshuar fjalëkalimin tënd." + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr "<strong>Shënim privacie:</strong> Adresa e emailit do t'i jepet" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" +"<strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera " +"(përgjegura)." + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr " Këshillo se si <strong>më së miri të sqarohet</strong> një kërkesë." + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" +" Ide se çfarë <strong>dokumentesh tjera të kërkohen</strong> që mund t'i " +"posedojë institucioni. " + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n" +" You may be able to find the address on their website, or by phoning them up and asking." +msgstr "" +"Nëse e din adresën e emailit për ta përdorur, atëherë të lutem <a " +"href=\"%s\">na e dërgon</a> . Ti mund ta gjen adresën e emailit në ueb " +"sajtin e tyre ose duke ju telefonuar dhe pyetur." + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" +" Përfshij vegzat relevante, si p.sh. te faqja e fushatës, blogu yt apo\n" +" llogaria e twitterit. Ato do të bëhen të klikueshme. \n" +" p.sh." + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already " +"available</strong> on the Internet. " +msgstr "" +"Vegza për informatat e kërkuara, në qoftë se ato <strong> tashmë " +"janë</strong> në dispozicion në internet." + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" +"Propozo mënyra më të mira të <strong>formulim të kërkesës</strong> për të " +"marrë informacion." + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr "Të lutem kyçu ose krijo një llogari të re." + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" +"Trego se si ke <strong>përdorur informacionin,</strong> me ueb vegza nëse " +"është e mundur." + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" +"Sugjero <strong>ku tjetër</strong> kërkuesi mund të gjej informacionin." + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" +"Çfarë jeni duke hulumtuar (hetuar) duke përdor kërkesat për çasje në " +"Informata Zyrtare?" + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" +"Ti tashmë je duke i pranuar me email aktualizimet në lidhje me këtë kërkesë." + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" +"Ti gjithashtu do të pranon email me aktualizimet e reja në lidhje me " +"kërkesën." + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr "bërë nga " + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "" +"nuk ka bërë kërkesa për informata zyrtare duke përdorur këtë ueb faqe." + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr "kur e dërgoni këtë mesazh." + +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request made using this site" +msgid_plural "%d Freedom of Information requests made using this site" +msgstr[0] "" +msgstr[1] "" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/public_body/_body_listing_single.rhtml:21 +msgid "%d request made." +msgid_plural "%d requests made." +msgstr[0] "" +msgstr[1] "" + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "'Statistikat e krimit në nivel komune'" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "'Niveli i ndotjes për lumin Drin'" + +#: app/controllers/user_controller.rb:355 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" +",\n" +"\n" +"\n" +"\n" +"Me nderime,\n" +"\n" +"{{user_name}}" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" +"<a href=\"%s\">Shto një shënim</a> (për të ndihmuar kërkuesit ose të tjerët)" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "<a href=\"%s\">A po mungon ndonjë autoritet publik?</a> ." + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" +"<a href=\"%s\">Are you the owner of any commercial copyright on this " +"page?</a>" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" +"<a href=\"%s\">Shfletoni të gjitha</a> ose <a href=\"%s\">kërkoni nga ne që " +"të shtojmë një</a> ." + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" + +#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 +#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 +msgid "<a href=\"%s\">details</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/views/request/_followup.rhtml:74 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "<a href=\"%s\">Çfarë është ajo?</a>" + +#: app/views/public_body/show.rhtml:50 +msgid "" +"<a href=\"{{url}}\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a " +"href=\"{{helpus_url}}\">more things you can do</a> to help " +"{{site_name}}.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:399 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the text of your request below, then <a href=\"{{find_authority_url}}\">find the other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they do not hold the information, here is \n" +" <a href=\"{{complain_url}}\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>" +msgstr "" + +#: app/controllers/request_controller.rb:393 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of " +"<strong>{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:389 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:428 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a " +"href=\"{{review_url}}\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:431 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:396 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:495 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph too.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:417 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:284 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:417 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation" +" below saying what you did.</p><p>If you found {{site_name}} useful, <a " +"href=\"{{donation_url}}\">make a donation</a> to the charity which runs " +"it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:420 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"{{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to " +"the charity which runs it.</p><p>If you want to try and get the rest of the " +"information, here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:282 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjigje ( <a href=\"%s\">detaje</a> ). </p>" + +#: app/controllers/request_controller.rb:280 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:288 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will" +" <strong>appear publicly on the Internet</strong>.</p>" +msgstr "" +"<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhet " +"direkt me temën e kërkesës tënde, të lutem largo çdo adresë sepse do të jetë" +" <strong> publike në internet</strong>. </p>" + +#: app/controllers/request_controller.rb:311 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" +" <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/controllers/application_controller.rb:279 +msgid "" +"<p>{{site_name}} is currently in maintenance. You can only view existing " +"requests. You cannot make new ones, add followups or annotations, or " +"otherwise change the database.</p> <p>{{read_only}}</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n" +"</p>" +msgstr "" +"<small>Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke " +"\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " +"mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" +"<strong> A mund të kërkoj informatë për veten time?</strong>\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><a href=\"%s\">Jo! (Kliko këtu për detaje)</a>" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations" +" made by Tony Bowden, typing the name as in the URL." +msgstr "" +"<strong><code>komentuar_nga:filan_fisteku</code></strong> për të kërkuar " +"shenimet nga Filan Fisteku, shtypeni emrin si në URL." + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" +"<strong><code>tipi_i_fajjlit:pdf</code></strong> për t'i gjetë të gjitha " +"përgjigjet me PDF të bashkangjitur. Apo provo këto: " +"<code>{{list_of_file_extensions}}</code>" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" +"<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " +"caktuar, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " +"kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_te:zyra_e_kryeministrit</code></strong> për të kërkuar" +" kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në " +"URL." + +#: app/views/general/search.rhtml:126 +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"{{statuses_url}}\">table" +" of statuses</a> below." +msgstr "" + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only want results them all present." +msgstr "" +"<strong><code>etiketa:charity</code></strong> për të gjetur të gjitha institucionet apo kërkesat me etiketën e dhënë. Mund të përfshihen edhe disa etiketa, \n" +" dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" +" prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse do që vetëm ato te përfshihen." + +#: app/views/general/search.rhtml:127 +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." +msgstr "" + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/request/_followup.rhtml:79 +msgid "" +"<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" + +#: app/views/request/details.rhtml:12 +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" +"a good internal knowledge of user behaviour on {{site_name}}. How, \n" +"why and by whom requests are categorised is not straightforward, and there will\n" +"be user error and ambiguity. You will also need to understand FOI law, and the\n" +"way authorities use it. Plus you'll need to be an elite statistician. Please\n" +"<a href=\"{{contact_path}}\">contact us</a> with questions." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "Është kërkuar<strong>sqarim</strong> " + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" +"<strong>Shenim:</strong>\n" +" Do të dërgojmë email në adresën tënde të re. Përcjelli\n" +" udhëzimet për të konfirmuar ndërrimin e emailit." + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" +"<strong>Shenim:</strong> Je duke dërguar email vetëvetes, me gjasë\n" +" për të provuar se si funksionon." + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" +"<strong>Shenim privacie:</strong> Nëse do të kërkosh informatë private për\n" +" veten tënde <a href=\"%s\">kliko këtu</a>." + +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" +" wherever you do something on {{site_name}}." +msgstr "" + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" +"<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjigje do të" +" paraqitet publikisht në këtë ueb faqe " + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "<strong>Disa nga informacionet</strong> janë dërguar" + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "<strong>Detajet teknike:</strong>" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "<strong>Falënderoju</strong> autoritet publik ose " + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." +msgstr "" + +#: app/views/request/show.rhtml:91 +msgid "<strong>did not have</strong> the information requested." +msgstr "<strong>nuk e kanë</strong> informacionin e kërkuar." + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>kërko</strong> në ueb sajtin e autoritetit ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" +"Një <strong>përmbledhje</strong> e përgjigjes nëse ate e keni marrë me " +"postë." + +#: app/views/general/search.rhtml:162 +msgid "A public authority" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "Përgjigja do të dërgohet <strong>me postë</strong>" + +#: app/views/general/search.rhtml:151 +msgid "A strange reponse, required attention by the {{site_name}} team" +msgstr "" + +#: app/views/general/search.rhtml:163 +msgid "A {{site_name}} user" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "Për ty:" + +#: app/models/info_request_event.rb:293 +msgid "Acknowledgement" +msgstr "Konfirmim për pranim " + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "Vepro sipas asaj që ke marrë vesh" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "Shto një shënim për" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" +"Shto shenim në kërkesën tënde me citate të zgjedhura, apo\n" +" me <strong>përmbledhje të përgjigjes</strong>." + +#: app/views/public_body/_body_listing_single.rhtml:26 +msgid "Added on {{date}}" +msgstr "" + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "Niveli i administratorit nuk është i përfshir në listë" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "URL për administrim:" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "Këshilla te avansuara për kërkim" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain" +" about it if not." +msgstr "" + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" + +#: app/models/info_request_event.rb:309 +msgid "All information sent" +msgstr "Të gjitha informatat janë dërguar" + +#: app/views/general/search.rhtml:146 +msgid "All of the information requested has been received" +msgstr "" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "Sipas alfabetit" + +#: app/views/public_body/_body_listing_single.rhtml:12 +msgid "Also called {{other_name}}." +msgstr "i quajtur edhe {{other_name}}." + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" +"Edhe pse të gjitha përgjigjet publikohen automatikisht, ne varemi nga ti, si" +" kërkues i tyre, për t'i vlerësuar ato." + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "Një <strong>mesazh gabimi</strong> është marrë" + +#: app/views/general/search.rhtml:161 +msgid "Annotation added to request" +msgstr "" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "Shënimet" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" +"Shënimet shërbejne për të gjithë, duke përfshirë edhe ty, që të mund të " +"ndihmoj kërkuesit me kërkesën e tyre. Për shembull:" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "Çdokush:" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not" +" suitable for general enquiries." +msgstr "" +"Kërko dokumente apo informata <strong>specifike</strong>, kjo faqe nuk është" +" e përshtatshme për pyetje të përgjithshme." + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" +"Në fund të kësaj faqeje, shkruaji atyre për të kërkuar nga ata që t'i scannojnë\n" +" (<a href=\"%s\">më shumë detaje</a>)." + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "Shtojca - attachment (opcionale):" + +#: app/models/info_request.rb:783 +msgid "Awaiting classification." +msgstr "Në pritje të klasifikimit." + +#: app/models/info_request.rb:803 +msgid "Awaiting internal review." +msgstr "Në pritje për rishqyrtim intern." + +#: app/models/info_request.rb:785 +msgid "Awaiting response." +msgstr "Në pritje të përgjigjes." + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" +"Shfleto <a href=\"%s\">kërkesa të tjera</a> për shembuj se si të formulosh " +"kërkesën tënde." + +#: app/views/request/new.rhtml:41 +msgid "" +"Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" + +#: app/views/request/show.rhtml:86 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" +"Sipas ligjit, në të gjitha rrethanat, {{public_body_link}} është duhur të " +"përgjigjet deri tani" + +#: app/views/request/show.rhtml:78 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" +"Sipas ligjit, {{public_body_link}} do të duhej të ishte përgjegjur " +"<strong>menjëherë</strong> dhe" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" +" it</a>." +msgstr "" +"Nuk u gjet? <a href=\"%s\">Shfleto të gjtiha</a> apo <a href=\"%s\">kërko që" +" të shtohet</a>." + +#: app/controllers/track_controller.rb:145 +msgid "Cancel a {{site_name}} alert" +msgstr "Anulo njoftimet për {{site_name}}" + +#: app/controllers/track_controller.rb:175 +msgid "Cancel some {{site_name}} alerts" +msgstr "Anulo disa njoftime për {{site_name}}" + +#: locale/model_attributes.rb:39 +msgid "CensorRule|Last edit comment" +msgstr "CensorRule | Redaktimi i fundit i koment" + +#: locale/model_attributes.rb:38 +msgid "CensorRule|Last edit editor" +msgstr "CensorRule | Redaktimi i fundit të editorit" + +#: locale/model_attributes.rb:37 +msgid "CensorRule|Replacement" +msgstr "CensorRule | Zëvendësimi" + +#: locale/model_attributes.rb:36 +msgid "CensorRule|Text" +msgstr "CensorRule | Teksti" + +#: lib/public_body_categories_en.rb:14 +msgid "Central government" +msgstr "Qeveria" + +#: app/views/user/signchangeemail.rhtml:37 +msgid "Change email on {{site_name}}" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" +msgstr "Ndrysho fotografinë e profilit" + +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at {{site_name}}" +msgstr "" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "Ndrysho email adresën tënde" + +#: app/controllers/user_controller.rb:250 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "Ndrysho fjalëkalimin tënd" + +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/controllers/user_controller.rb:204 +msgid "Change your password {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd {{site_name}}" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "Regjistrimi i organizatës" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." + +#: app/views/request/followup_preview.rhtml:14 +#: app/views/request/preview.rhtml:7 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" +"Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" + +#: app/models/info_request_event.rb:331 +msgid "Clarification" +msgstr "Sqarim" + +#: app/models/info_request_event.rb:295 +msgid "Clarification required" +msgstr "Kërkohet sqarim" + +#: app/controllers/request_controller.rb:339 +msgid "Classify an FOI response from " +msgstr "Klasifiko një përgjigje për kërkesë për informatë zyrtare prej " + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" +"Kliko në vegzën më poshtë për të dërguar një mesazh te {{public_body_name}} " +"duke u thënë atyre që të përgjigjen në kërkesën tënde. Ti mund të dëshirosh " +"të kërkosh rishqyrtim intern, duke u kërkuar atyre për të gjetur se pse " +"përgjegja ndaj kërkesës ka qenë kaq e ngadaltë." + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" +"Kliko në vegzën e mëposhtme për t'i dërguar mesazh {{public_body}} për t'ua " +"përkujtuar që t'i përgjigjen kërkesës tënde." + +#: locale/model_attributes.rb:22 +msgid "Comment|Body" +msgstr "Komenti | Body" + +#: locale/model_attributes.rb:21 +msgid "Comment|Comment type" +msgstr "Koment|Lloji i komentit" + +#: locale/model_attributes.rb:24 +msgid "Comment|Locale" +msgstr "Koment | Lokale" + +#: locale/model_attributes.rb:23 +msgid "Comment|Visible" +msgstr "Koment | i/e dukshëm" + +#: app/models/track_thing.rb:147 +msgid "Confirm you want to be emailed about new requests" +msgstr "Konfirmo që doni të merrni email për kërkesa të reja" + +#: app/models/track_thing.rb:214 +msgid "" +"Confirm you want to be emailed about new requests or responses matching " +"'{{query}}'" +msgstr "" + +#: app/models/track_thing.rb:198 +msgid "Confirm you want to be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:182 +msgid "" +"Confirm you want to be emailed about requests to '{{public_body_name}}'" +msgstr "" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" +"Konfirmo që doni të merrni email kur një kërkesë për informata zyrtare ka " +"sukses" + +#: app/controllers/request_controller.rb:300 +msgid "Confirm your FOI request to " +msgstr "Konfirmo kërkesën tënde për " + +#: app/controllers/request_controller.rb:703 +#: app/controllers/user_controller.rb:515 +msgid "Confirm your account on {{site_name}}" +msgstr "Konfirmo llogarinë tënde në {{site_name}}" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "Konfirmo shënimin tënd për {{info_request_title}}" + +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on {{site_name}}" +msgstr "Konfirmo adresën e email-it tënd të ri në {{site_name}}" + +#: app/views/layouts/default.rhtml:127 +msgid "Contact {{site_name}}" +msgstr "Kontakto {{site_name}}" + +#: app/models/request_mailer.rb:210 +msgid "Could not identify the request from the email address" +msgstr "" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" +"Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga " +"sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "Preje fotografinë e profilit tënd" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" + +#: app/views/request/show.rhtml:68 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}," +" they must respond promptly and" +msgstr "" +"Momentalisht <strong>duke pritur përgjigje</strong> nga " +"{{public_body_link}}, ata duhet të përgjigjen menjëherë dhe" + +#: app/models/info_request_event.rb:299 +msgid "Deadline Extended" +msgstr "Afati është vazhduar" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "I/e nderuar " + +#: app/models/info_request.rb:787 +msgid "Delayed." +msgstr "Vonuar." + +#: app/models/info_request.rb:805 app/models/info_request_event.rb:315 +msgid "Delivery error" +msgstr "Gabim gjatë dorëzimit" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "Detajet e kërkesës" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "Mos mendove këtë: {{correction}}" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "Shkarko shtojcën (attachment) origjinale" + +#: app/views/request/_followup.rhtml:85 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" +"Redakto dhe shto <strong>më shumë detaje</strong> në mesazhin e mësipërm,\n" +" duke shpjeguar se pse nuk je i kënaqur me përgjigjen e tyre." + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "Redakto versionin e gjuhës:" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr " tekstin për vetën tënde" + +#: app/models/user.rb:135 +msgid "Either the email or password was not recognised, please try again." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri." + +#: app/models/user.rb:137 +msgid "" +"Either the email or password was not recognised, please try again. Or create" +" a new account using the form on the right." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri. " +"Ose krijo një llogari të re duke përdor formën në të djathtë." + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "Email adresa nuk duket si një adresë e vlefshme" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "M'i dërgo me email përgjigjet e reja të suksesshme" + +#: app/models/track_thing.rb:139 +msgid "Email me when there are new requests" +msgstr "" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "Abonimet me email" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing" +" lane</strong>" +msgstr "" +"Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim " +"rruge</strong>" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" +"Shkruaj përgjigjen tënde më poshtë. Ti mund të bashkëangjitësh një fajll " +"(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " +"shumë)." + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "\"Environmental Information Regulations\" kërkesa të bëra" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" +"\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë" +" ueb sajt" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "Historiku i ngjarjeve" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "Detajet e historikut të ngjarjeve" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe, përfshi edhe <strong>emri yt</strong>, \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: locale/model_attributes.rb:60 +msgid "EximLogDone|Filename" +msgstr "EximLogDone|Filename" + +#: locale/model_attributes.rb:61 +msgid "EximLogDone|Last stat" +msgstr "EximLogDone|Statistika e fundit" + +#: locale/model_attributes.rb:19 +msgid "EximLog|Line" +msgstr "EximLog|Linja" + +#: locale/model_attributes.rb:18 +msgid "EximLog|Order" +msgstr "EximLog|Order" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "Kërkesat për Informata Zyrtare" + +#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 +msgid "FOI requests by '{{user_name}}'" +msgstr "" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "Konvertimi i imazhit në PNG dështoi" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need " +"%{width}x%{height}" +msgstr "Kyçu ose krijo llogari " + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "Së pari," + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Së pari, shkruani <strong>emrin e autoritetit publik </strong> <br> prej të " +"cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të " +"përgjigjen</strong> ( <a href=\"%s\">pse?</a> )." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "Kliko këtë vegzë për të parë kërkesën:" + +#: app/models/info_request_event.rb:335 +msgid "Follow up" +msgstr "" + +#: app/views/general/search.rhtml:159 +msgid "Follow up message sent by requester" +msgstr "" + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "Mesazhet vazhduese të kërkesës ekzistuese dërgohen te " + +#: app/views/request/_followup.rhtml:16 +msgid "" +"Follow ups and new responses to this request have been stopped to prevent " +"spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and" +" need to send a follow up." +msgstr "" + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" +"Për një arsye të panjohur, nuk është e mundur për të bërë një kërkesë tek ky" +" autoritet." + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot make\n" +" a request to it." +msgstr "" +"Ligji mbi lirinë e informacionit nuk ka të bëjë me këtë autoritet, kështu që" +" ju nuk mund të bëni kërkesa për informata zyrtare." + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "Ligji për qasje në dokumente publike nuk aplikohet më për" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "Kërkesa për Informatë zyrtare është bërë" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "Kërkesat për Informata Zyrtare bërë nga" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" +"Nga faqja e kërkesës, provo të përgjigjesh në një mesazh të caktuar, më parë se të\n" +" shkruash një përgjigje të përgjithshme. Nëse të duhet të shkruash përgjigje të përgjithshme, dhe e di\n" +" emailin ku duhet ta drejtosh, atëherë të lutem <a href=\"%s\">dërgoje te ne</a>." + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "JEPI DETAJET PËR ANKESËN TËNDE KËTU" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "Shko te <a href=\"%s\">ballina</a> </li>" + +#: app/models/info_request_event.rb:297 +msgid "Handled by post" +msgstr "Do të trajtohet me postë" + +#: app/models/info_request.rb:801 +msgid "Handled by post." +msgstr "Do të trajtohet me postë." + +#: app/views/layouts/default.rhtml:102 +msgid "Hello!" +msgstr "Përshëndetje" + +#: app/views/layouts/default.rhtml:99 +msgid "Hello, {{username}}!" +msgstr "Përshëndetje, {{username}}!" + +#: app/views/layouts/default.rhtml:94 +msgid "Help" +msgstr "Ndihmë" + +#: app/views/request/details.rhtml:50 +msgid "" +"Here <strong>described</strong> means when a user selected a status for the request, and\n" +"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" +"{{site_name}} for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"{{search_path}}\">search tips</a> for description of the states." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" + +#: locale/model_attributes.rb:57 +msgid "Holiday|Day" +msgstr "Festa | Dita" + +#: locale/model_attributes.rb:58 +msgid "Holiday|Description" +msgstr "Festa | Përshkrimi" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "Ueb sajti i autoritetit" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "" + +#: app/views/request/_followup.rhtml:68 +msgid "I am asking for <strong>new information</strong>" +msgstr "Unë jam duke kërkuar <strong>informacion të ri</strong>" + +#: app/views/request/_followup.rhtml:73 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "Po kërkoj <strong>rishqyrtimin intern</strong>" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "Nuk më pëlqejnë këto kërkesa &mdash më jep disa të tjera!" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "Nuk dua të pastroj më tutje!" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "Ddo të doja të <strong>tërheqë këtë kërkesë</strong>" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" +"Akoma po e <strong>pres</strong> informatën time \n" +" <small>(ndoshta ke marrë konfirmim)</small>" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "Akoma po e <strong>pres</strong> rishqyrtimin intern" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "Po pres përgjigje nga <strong>rishqyrtimi intern</strong>" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "Kam marrë <strong>të gjitha informatat</strong>" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "Kam marrë <strong>disa prej informatave</strong>" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "Kam marrë një <strong>mesazh gabimi</strong>" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a " +"href=\"%s\">contact us</a>." +msgstr "" +"Nëse adresa është e gabuar, ose ti e din një adresë më të mirë, të lutem <a " +"href=\"%s\">na kontakto</a> ." + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" +"Nëse kjo është e pasakt, apo do t'i dërgosh përgjigje të vonuar në këtë kërkesë\n" +"apo një email me një temë tjetër te {{user}}, atëherë \n" +"dërgo email në {{contact_email}} për ndihmë." + +#: app/views/request/_followup.rhtml:20 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" +"Nëse je i pakënaqur me përgjigjen nga\n" +" institucioni publik, ke të drejtën të\n" +" ankohesh (<a href=\"%s\">detajet</a>)." + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "Nëse ende po ka probleme, të lutem <a href=\"%s\">na kontakto</a> ." + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" +"Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të " +"parë kërkesën." + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" +"Nëse je duke mendu me përdor pseudonim, të lutem <a href=\"%s\">lexo këtë së" +" pari</a> ." + +#: app/views/request/show.rhtml:105 +msgid "If you are {{user_link}}, please" +msgstr "Nëse ti je {{user_link}}, të lutem" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" +"Nëse ti nuk mund të klikosh mbi të në e-mail, duhet që ta <strong>përzgjedhësh dhe t'a kopjosh </strong>. Pastaj <strong>e bashkangjet (paste) \n" +"</strong>në fushën e adresës të shfletuesit tënd." + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" +"Nëse mund të skanoni ose fotografoni përgjigjen, dhe të <strong>na e dërgoni" +" që ne ta ngarkojme ate.</strong>" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" +"Nëse keni marrë këtë email <strong>më shumë se gjashtë muaj më " +"parë,</strong> atëherë kjo vegzë për kyçje nuk do të funksionojë më. Të " +"lutem provon duke bërë atë që keni vepruar nga fillimi." + +#: app/controllers/request_controller.rb:437 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know" +" it has been withdrawn." +msgstr "" + +#: app/views/user/signchangeemail_confirm.rhtml:11 +#: app/views/user/signchangepassword_confirm.rhtml:10 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" +"Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke \"junk " +"mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, mesazhet tona " +"janë të shenjuara në këtë mënyrë." + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" +"Nëse do që ne ta heqim këtë leçitje, atëherë të lutem\n" +"<a href=\"/help/contact\">na kontakto</a> duke i dhënë arsyet.\n" + +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to {{site_name}}" +msgstr "Nëse je i ri në {{site_name}}" + +#: app/views/user/_signin.rhtml:7 +msgid "If you've used {{site_name}} before" +msgstr "Nëse e ke përdorë {{site_name}} më parë" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" +"Nëse shfletuesi yt është vendosur për të pranuar \"cookies\" dhe ju jeni " +"duke parë këtë mesazh, atëherë me sa duket ka gabim në serverin tonë." + +#: locale/model_attributes.rb:63 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "IncomingMessage|Cached attachment text clipped" + +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Cached main body text folded" +msgstr "IncomingMessage|Cached main body text folded" + +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "IncomingMessage|Cached main body text unfolded" + +#: locale/model_attributes.rb:44 +msgid "InfoRequestEvent|Calculated state" +msgstr "InfoRequestEvent|Calculated state" + +#: locale/model_attributes.rb:43 +msgid "InfoRequestEvent|Described state" +msgstr "InfoRequestEvent|Described state" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Event type" +msgstr "InfoRequestEvent|Event type" + +#: locale/model_attributes.rb:45 +msgid "InfoRequestEvent|Last described at" +msgstr "InfoRequestEvent|Last described at" + +#: locale/model_attributes.rb:42 +msgid "InfoRequestEvent|Params yaml" +msgstr "InfoRequestEvent|Params yaml" + +#: locale/model_attributes.rb:46 +msgid "InfoRequestEvent|Prominence" +msgstr "InfoRequestEvent|Prominence" + +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Allow new responses from" +msgstr "InfoRequest|Lejo përgjigje të reja prej" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Awaiting description" +msgstr "InfoRequest|Awaiting description" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Described state" +msgstr "InfoRequest|Described state" + +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Handle rejected responses" +msgstr "InfoRequest|Handle rejected responses" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Law used" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Prominence" +msgstr "Info të kërkesës | Rëndësi" + +#: locale/model_attributes.rb:80 +msgid "InfoRequest|Title" +msgstr "Info të kërkesës | Titulli" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Url title" +msgstr "Info të kërkesës | Titulli Url" + +#: app/models/info_request_event.rb:303 +msgid "Information not held" +msgstr "Informata nuk mbahet këtu" + +#: app/models/info_request.rb:791 +msgid "Information not held." +msgstr "Informata nuk mbahet këtu." + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" + +#: app/models/info_request_event.rb:311 +msgid "Internal review acknowledgement" +msgstr "Pranimi i rishqyrtimit intern" + +#: app/models/info_request_event.rb:328 +msgid "Internal review request" +msgstr "Kërkesë për rishqyrtim intern" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests to " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" +"A ështe {{email_address}} adresë e gabuar e {{type_of_request}} kërkesave " +"për {{public_body_name}}? Nëse po, të luten na kontakto nëpermjet kësaj " +"forme:" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies\",\n" +"or cannot do so. If you can, please enable cookies, or try using a different\n" +"browser. Then press refresh to have another go." +msgstr "" +"Kjo mund të jetë sepse shfletuesi yt nuk është i vendosur të pranojë " +"\"cookies\", ose nuk mund ta bëjë këtë. Nëse ke mundësi, të lutem aktivizoni" +" \"cookies\", ose përdor një shfletues (browser) tjeter. Pastaj shtyp " +"\"refresh\" për të provuar edhe një herë." + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "Bashkangjitur më" + +#: app/views/user/show.rhtml:62 +msgid "Joined {{site_name}} in" +msgstr "Bashkangjitur {{site_name}} më" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Mbaje <strong>të fokusuar</strong>, gjasat janë më të mëdha që të marrësh " +"përgjigjen e dëshiruar (<a href=\"%s\">pse?</a>)." + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "Autoriteti i shikuar së fundi:" + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "Kërkesa e shikuar së fundi:" + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" +"Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe emrin e " +"shfletuesit (browser-it) dhe versionin e tij. Gjithashtu na trego për emrin " +"e sistemit operativ dhe versionin." + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "Vegza e kësaj kërkese" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "Listo të gjitha autoritetet (CSV)" + +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" +msgstr "Lokale dhe regjionale" + +#: app/models/info_request.rb:789 +msgid "Long overdue." +msgstr "Shumë e vonuar." + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "Bëj një kërkesë të re për informacione rreth Mjedisit" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "Bëjë një kërkesë {{law_used_short}} për '{{public_body_name}}'" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:67 +msgid "Make and explore Freedom of Information requests" +msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:87 +msgid "Make request" +msgstr "Bëj kërkesë" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "Bëj kërkesën tënde" + +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using {{site_name}} contact form, " +msgstr "Mesazhi i dërguar duke përdorur kontakt formën e {{site_name}}, " + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "Mungojnë të dhënat për '" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "Më shumë për këtë autoritet" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Më shumë autoritete" + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Më shumë kërkesa te suksesshme" + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "Kërkesa ime është <strong>refuzuar</strong>" + +#: app/views/layouts/default.rhtml:91 +msgid "My requests" +msgstr "Kërkesat e mia" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "Emri nuk mund të jetë i zbrazët" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "Emri është i zënë" + +#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 +msgid "New Freedom of Information requests" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "Email i ri:" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "Email adresa e re nuk duket si një adresë e vlefshme" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "Fjalëkalim i ri:" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "Fjalëkalim i ri: (përsërite)" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "përgjigje e re për kërkesën tënde" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "përgjigje e re për {{law_used_short}} kërkesën" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "Rezultatet më të reja të parat" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "Pastaj, preje foton tënde >>" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "Ende nuk ka kërkesa të këtij lloji." + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "Nuk gjetëm kërkesa të ngjashme." + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" +"Ende askush nuk ka bërë ndonjë kërkesë te {{public_body_name}} duke përdorur" +" këtë faqe." + +#: app/views/public_body/_body_listing.rhtml:2 +#: app/views/request/_request_listing.rhtml:2 +msgid "None found." +msgstr "Asnjë nuk u gjet." + +#: app/views/user/signchangeemail_confirm.rhtml:3 +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "Kontrollo emailin tënd!" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "Tani shiko shënimin tënd" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "Shiko vazhdimësinë e komunikimit" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "Shiko mesazhin tënd ku ke kërkuar rishqyrtim intern" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "Shiko kërkesën tënde" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "Ose hiqni fotografinë ekzistuese" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " +"përdorur {{site_name}}" + +#: app/controllers/request_controller.rb:414 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "Na vjen keq që kërkesa yte është refuzuar. Ja se çfarë të bëhet tani." + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "Emali i vjetër:" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" +"Adresa e emailit të vjetër nuk është e njëjtë me adresën e llogarisë me të " +"cilën jeni kyçur për momentin" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "Email adresa e vjetër nuk duket si një adresë e vlefshme" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "Në këtë faqe" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" +"Një autoritet publik përputhet me ‘{{user_search_query}}’" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." + +#: app/models/info_request.rb:405 +msgid "" +"Only the authority can reply to this request, and I don't recognise the " +"address this reply was sent from" +msgstr "" + +#: app/models/info_request.rb:401 +msgid "" +"Only the authority can reply to this request, but there is no \"From\" " +"address to check against" +msgstr "" + +#: app/views/general/search.rhtml:158 +msgid "Original request sent" +msgstr "" + +#: locale/model_attributes.rb:26 +msgid "OutgoingMessage|Body" +msgstr "OutgoingMessage | Body" + +#: locale/model_attributes.rb:29 +msgid "OutgoingMessage|Last sent at" +msgstr "OutgoingMessage | Së fundi është dërguar në" + +#: locale/model_attributes.rb:28 +msgid "OutgoingMessage|Message type" +msgstr "OutgoingMessage|Message type" + +#: locale/model_attributes.rb:27 +msgid "OutgoingMessage|Status" +msgstr "OutgoingMessage|Status" + +#: locale/model_attributes.rb:30 +msgid "OutgoingMessage|What doing" +msgstr "OutgoingMessage|What doing" + +#: app/models/info_request.rb:795 +msgid "Partially successful." +msgstr "Pjesërisht e suksesshme." + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "Fjalëkalimi nuk është i saktë" + +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "Fjalëkalimi: (përsërite)" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "Fotografia yte:" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "Planet dhe masat administrative që ndikojnë këto çështje" + +#: app/controllers/request_game_controller.rb:42 +msgid "Play the request categorisation game" +msgstr "Luaj në lojën e kategorizimit të kërkesave" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "Luaj lojën e kategorizimit të kërkesave!" + +#: app/views/request/show.rhtml:101 +msgid "Please" +msgstr "Të lutem" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "Të lutem <a href=\"%s\">na kontakto</a> që neve ta rregullojme ate." + +#: app/views/request/show.rhtml:52 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" +"Të lutem <strong> përgjegju pyetjes së mësipërme</strong> që ne të dimë nëse" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" +"Të lutem <strong>shko te kërkesa</strong>, dhe na e bëj\n" +" medije nëse ka pasë informatë në përgjigjen e fundit drejtuar atyre." + +#: app/views/request/_followup.rhtml:27 +msgid "" +"Please <strong>only</strong> write messages directly relating to your " +"request {{request_link}}. If you would like to ask for information that was " +"not in your original request, then <a href=\"{{new_request_link}}\">file a " +"new request</a>." +msgstr "" + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "Të lutem kërko vetëm për informacion në lidhje me mjedisin" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" +"Të lutem kontrollo që URL (dmth. kodin e gjatë me shkronja e numra) është " +"kopjuar në rregull nga emaili yt." + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "Të lutem zgjedh një fajll që përmban foton tënde." + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "Të lutem zgjedh llojin e përgjigjes." + +#: app/controllers/request_controller.rb:346 +msgid "" +"Please choose whether or not you got some of the information that you " +"wanted." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for {{site_name}}\n" +"from {{old_email}} to {{new_email}}" +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" +"Të lutem kliko në vegzën e mëposhëtme për të konfirmuar email adresën tënde." + +#: app/models/info_request.rb:126 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" +"Të lutem përshkruaj në lëndë më gjerësisht se për çfarë është kërkesa. Nuk " +"ka nevojë të shkruhet që bëhet fjalë për kërkesë për qasje në informata, ajo" +" shtohet automatikisht." + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" +"Të lutem mos ngarko fotografi ofenduese. Ne do t'i largojmë imazhet që ne i " +"konsiderojmë të papërshtatshme." + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "Të lutem aktivizo \"cookies\" në shfletues për të vazhduar" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "Të lutem shkruaj fjalëkalimin" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "Të lutem shkruaj lëndën" + +#: app/models/info_request.rb:34 +msgid "Please enter a summary of your request" +msgstr "Të lutem shkruaj një përmbledhje të kërkesës tënde" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "Të lutem shkruaj adresën korrekte të emailit" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "Të lutem shkruaj mesazhin që dëshiron do ta dërgosh" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "Të lutem shkruaj shënimin tënd" + +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" +msgstr "Të lutem shkruaj adresën e emailit tënd" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "Të lutem shto mesazhin për përcjellje" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "Të lutem shkruaj letrën e kërkesës për informatë " + +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" +msgstr "Të lutem shkruaj emrin tënd" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "Të lutem shkruaj adresën e re të emailit " + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "Të lutem shkruaj adresën e vjetër të emailit " + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "Të lutem shkruaj fjalëkalimin tënd" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" +"Të lutem shkruaj hollësi spjeguese se për çfarë arsye po kërkon rishqyrtim" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" + +#: app/models/info_request.rb:123 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" +"Të lutem bëje përmbledhjen sa më shkurt, sikurse në lëndën (subjektin) e " +"emailit. Mund të shkruash një togfjalësh në vend të një fjalie të plotë." + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, <strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting unrelated information." +msgstr "" +"Të lutem kërko vetëm informata që hyjnë në këto kategori, <strong>mos e humb\n" +" kohën tënde</strong> apo kohën e institucionit duke kërkuar informata që s'kanë të bëjnë me të." + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</strong>\n" +"if they are successful yet or not." +msgstr "" +"Të lutem selektoi të gjitha kërkesat një pas një, dhe <strong>bëje të njohur për të gjithë</strong>\n" +"nëse kanë qenë të suksesshme deri tash apo jo." + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" +"Te lutem nënshkruaj në fund me emrin tënd, ose ndrysho \"% {signoff}\" " +"nënshkrimin" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "Të lutem kyçu si " + +#: app/controllers/request_controller.rb:730 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" +"Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjigjen " +"tënde." + +#: app/controllers/request_controller.rb:434 +msgid "Please use the form below to tell us more." +msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" +"Të lutem përdor këtë adresë të emailit për të gjitha përgjigjet në këtë " +"kërkesë:" + +#: app/models/info_request.rb:35 +msgid "Please write a summary with some text in it" +msgstr "Të lutem shkruaj përmbledhjen" + +#: app/models/info_request.rb:120 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj përmbledhjen duke përdorur kombinim të germave të mëdha dhe" +" të vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/controllers/request_controller.rb:423 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters." +" This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj mesazhin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may" +" be useful." +msgstr "" +"Udhëzo te <strong>informatat që nderlidhen me këtë,</strong> fushata ose " +"forume të cilat mund të jenë të dobishme." + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "Posto shënimin" + +#: locale/model_attributes.rb:55 +msgid "PostRedirect|Circumstance" +msgstr "PostRedirect|Circumstance" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Email token" +msgstr "PostRedirect|Email token" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Post params yaml" +msgstr "PostRedirect|Post params yaml" + +#: locale/model_attributes.rb:54 +msgid "PostRedirect|Reason params yaml" +msgstr "PostRedirect|Reason params yaml" + +#: locale/model_attributes.rb:50 +msgid "PostRedirect|Token" +msgstr "PostRedirect|Token" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Uri" +msgstr "PostRedirect|Uri" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "Shiko shënimin e ri në '{{info_request_title}}'" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "Shiko shënimin tënd" + +#: app/views/request/_followup.rhtml:96 +msgid "Preview your message" +msgstr "Shiko mesazhin tënd" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "Shiko kërkesën tënde publike" + +#: locale/model_attributes.rb:15 +msgid "ProfilePhoto|Data" +msgstr "ProfilePhoto|Data" + +#: locale/model_attributes.rb:16 +msgid "ProfilePhoto|Draft" +msgstr "ProfilePhoto|Draft" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "Autoritetet publike - {{description}}" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" +"Autoritetet publike prej {{start_count}} tek {{end_count}} prej " +"{{total_count}} për {{user_search_query}}" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "PublicBody |Germa e parë" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "PublicBody |Ballina" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "PublicBody | Redaktimi i fundit i komentit" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "PublicBody | Redaktimi i fundit editor" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "PublicBody |Emri" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "PublicBody |Shënime" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "PublicBody | Skema e publikimit" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "PublicBody |Emaili me kërkesë" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "PublicBody |Emri i shkurtë" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "PublicBody |URL emri" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "PublicBody |Versioni" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "Skema e publikimit" + +#: locale/model_attributes.rb:48 +msgid "RawEmail|Data binary" +msgstr "RawEmail |Të dhënat binare" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "Ri edito këtë shënim" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "Re-edito këtë mesazh" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "Re-edito këtë kërkesë" + +#: app/views/general/search.rhtml:137 +msgid "" +"Read about <a href=\"{{advanced_search_url}}\">advanced search " +"operators</a>, such as proximity and wildcards." +msgstr "" + +#: app/views/layouts/default.rhtml:93 +msgid "Read blog" +msgstr "Lexo blog-un" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" +"Lexoni këtë para se të shkruani {{info_request_law_used_full}} kërkesën" + +#: app/views/general/search.rhtml:150 +msgid "Received an error message, such as delivery failure." +msgstr "" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "Rezultatet e përshkruara së fundi radhiti të parat" + +#: app/controllers/request_controller.rb:139 +msgid "Recently sent Freedom of Information requests" +msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "Kërkesat e dërguara së fundi" + +#: app/controllers/request_controller.rb:144 +msgid "Recently successful responses" +msgstr "përgjigjet e marra së fundi" + +#: app/models/info_request_event.rb:305 +msgid "Refused" +msgstr "Refuzuar" + +#: app/models/info_request.rb:793 +msgid "Refused." +msgstr "Refuzuar." + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" +"Me mbaj mend </label> (të mban të kyçur më gjatë\n" +" mos e përdor në kompjuter publik) " + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "Pergjegju këtij mesazhi" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "Raporto abuzim" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "Kërko një rishqyrtim intern" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "Kërko një rishqyrtim intern prej" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "Kërkesa është larguar (fshirë)" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" +"Kërkesë dërguar te {{public_body_name}} nga {{info_request_user}} me " +"{{date}}." + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" +"Kërkesë për {{public_body_name}} nga {{info_request_user}}. Shënuar nga " +"{{event_comment_user}} me {{date}}." + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "" +"Kërkuar nga {{public_body_name}} nga {{info_request_user}} me {{date}}" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 +msgid "Requests or responses matching '{{query}}'" +msgstr "" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "Përgjegju me email" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "Përgjegju kërkesës" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "Përgjegju kërkesës për Informata Zyrtare" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "Përgjegju duke përdorur uebin" + +#: app/views/general/search.rhtml:160 +msgid "Response from a public authority" +msgstr "" + +#: app/views/request/show.rhtml:77 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show.rhtml:85 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "përgjigje për kërkesën tënde" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "Përgjigja:" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "Faqja e rezultateve {{page_number}}" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "Ruaj" + +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +#: app/views/layouts/default.rhtml:80 app/views/request/new.rhtml:31 +msgid "Search" +msgstr "Kërko" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdoruesit" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." + +#: app/controllers/user_controller.rb:331 +msgid "Send a message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "Dërgo përgjigje publike te" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "Dërgo mesazh" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "Dërgo" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "Vendos fotografinë e profilit tënd" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "Emri i shkurtë është i zënë" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "Shfaqi rezultatet më relevante" + +#: app/views/public_body/list.rhtml:3 app/views/request/list.rhtml:2 +msgid "Show only..." +msgstr "Shfaq vetëm..." + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "Kyçu" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "Kyçu ose krijo një llogari të re" + +#: app/views/layouts/default.rhtml:103 +msgid "Sign in or sign up" +msgstr "Kyçu ose Ç'kyçu" + +#: app/views/layouts/default.rhtml:100 +msgid "Sign out" +msgstr "Ç'kyçu" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "Regjistrohu" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "Kërkesa të ngjashme" + +#: app/models/info_request_event.rb:307 +msgid "Some information sent" +msgstr "Disa informata janë dërguar" + +#: app/views/general/search.rhtml:145 +msgid "Some of the information requested has been received" +msgstr "" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" +"Disa individë që kanë bërë kërkesa nuk kanë treguar se a ishin ato të " +"sukseshme apo jo. Kemi nevojë për ndihmën <strong>tënde</strong> - përzgjedh" +" një nga këto kërkesa, lexo atë, dhe njofto të tjerët se a u ofruan " +"informatat e kërkuara. Të gjithë do të jenë shumë mirënjohës për këtë." + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"{{site_name}} from {{old_email}} to {{new_email}}." +msgstr "" + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "Shënim të veçantë për këtë autoritet!" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "Ende në pritje të <strong>rishqyrtimit intern</strong>" + +#: app/views/request/followup_preview.rhtml:23 +#: app/views/request/preview.rhtml:18 +msgid "Subject:" +msgstr "Lënda:" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "Dërgo" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "Dërgo statusin" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "Kërkesat e suksesshme për Informata Zyrtare" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "përgjigjet e suksesshme" + +#: app/models/info_request.rb:797 +msgid "Successful." +msgstr "Suksesshme." + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the " +"information</strong>." +msgstr "" +"Sugjero si kërkuesi mund të gjen pjesën <strong>tjetër të " +"informacionit.</strong>" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "Përmbledhje:" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "Tabela e statuseve" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "Etiketat:" + +#: app/controllers/request_game_controller.rb:52 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "Faleminderit që keni bërë një shënim!" + +#: app/controllers/request_controller.rb:736 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" +"Faleminderit që i jeni përgjegjur kësaj kërkese për informata zyrtare. " +"Përgjegja yte është publikuar më poshtë, si dhe vegza për përgjigjen tënde i" +" është derguar me email " + +#: app/controllers/request_controller.rb:378 +msgid "" +"Thank you for updating the status of the request '<a " +"href=\"{{url}}\">{{info_request_title}}</a>'. There are some more requests " +"below for you to classify." +msgstr "" + +#: app/controllers/request_controller.rb:381 +msgid "Thank you for updating this request!" +msgstr "Faleminderit për aktualizimin e kësaj kërkese!" + +#: app/controllers/user_controller.rb:398 +#: app/controllers/user_controller.rb:414 +msgid "Thank you for updating your profile photo" +msgstr "Faleminderit për aktualizimin e fotografisë e profilit tënd" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" +"Faleminderit për ndihmë - ndihma yte do ta bëjë më të lehtë që të tjerët të " +"gjejnë kërkesat e suksesshme, e ndoshta edhe të na mundesojë krijim e " +"ranglistave..." + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" +"Shumë faleminderit - kjo do të ndihmojë të tjerët të gjejnë gjëra të dobishme. \n" +"Ne gjithashtu mund të ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat tuaja." + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" +" We'll also, if you need it, give you advice on what to do next about each of your\n" +" requests." +msgstr "" +"Shumë faleminderit për ndihmën për të mbajtur të tërat të " +"<strong>organizuara dhe në rregull</strong>. Ne gjithashtu mund të " +"ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat " +"tuaja." + +#: app/controllers/user_controller.rb:189 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it" +" correctly." +msgstr "" +"Kjo nuk duket si një email adresë e vlefshme. Të lutem kontrollo që e ke " +"shtypur të saktë." + +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "<strong>Rishqyrtimi ka përfunduar</strong> dhe përfundimi është:" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" + +#: app/views/user_mailer/changeemail_already_used.rhtml:8 +msgid "The accounts have been left as they previously were." +msgstr "Llogaritë janë lënë siq kanë qenë më përpara." + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" +"Autoriteti <strong>nuk e ka</strong> informatën <small>(ndoshta ata e dine " +"kush e ka)</small>" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI request" +msgstr "" +"Autoriteti thotë se ata kanë <strong>nevojë për një adresë postare,</strong>" +" jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " +"informatë zyrtare" + +#: app/views/request/show.rhtml:109 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this" +" request." +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" +"Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu " +"përgjegjur një kërkese {{law_used_short}} nuk është dorëzuar." + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" +" At the bottom of this page, write a reply to the authority explaining this to them." +msgstr "" + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" +"Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " +"tani:" + +#: app/views/general/search.rhtml:143 +msgid "The public authority does not have the information requested" +msgstr "" + +#: app/views/general/search.rhtml:147 +msgid "The public authority would like part of the request explained" +msgstr "" + +#: app/views/general/search.rhtml:148 +msgid "The public authority would like to / has responded by post" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "Kërkesa është <strong>refuzuar</strong>" + +#: app/controllers/request_controller.rb:352 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" + +#: app/views/request/show.rhtml:104 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "Kërkesa është në <strong>pritje për sqarim</strong>." + +#: app/views/request/show.rhtml:97 +msgid "The request was <strong>partially successful</strong>." +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme</strong>." + +#: app/views/request/show.rhtml:93 +msgid "The request was <strong>refused</strong> by" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/show.rhtml:95 +msgid "The request was <strong>successful</strong>." +msgstr "Kërkesa ishte e <strong>suksesshme</strong>." + +#: app/views/general/search.rhtml:144 +msgid "The request was refused by the public authority" +msgstr "" + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" +"Kërkesa që ti je përpjek për të parë është hequr (larguar). Ka arsye të " +"ndryshme pse ne kemi mund për të bërë këtë, na vie keq që nuk mund të jemi " +"më specifik. Të lutem të <a href=\"%s\">na kontakton</a> nëse ke ndonjë " +"pyetje." + +#: app/views/general/search.rhtml:152 +msgid "The requester has abandoned this request for some reason" +msgstr "" + +#: app/views/request/_followup.rhtml:32 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" +"Përgjegja në kërkesën tënde është e <strong>vonuar</strong>. Mund të thuhet që,\n" +"sipas ligjit, autoriteti ishte dashtë të përgjigjet në \n" +"<strong>afat</strong> të paraparë dhe " + +#: app/views/request/_followup.rhtml:44 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say that, by \n" +" law, under all circumstances, the authority should have responded\n" +" by now" +msgstr "" +"Përgjigja në kërkesën tënde është <strong>vonuar për së tepërmi</strong>. Mund të thuhet që,\n" +"sipas ligjit, duke i patur parasyesh të gjitha rrethanat, autoriteti ishte dashtë të përgjigjet \n" +"deri më tani" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" +"Indeksi i kërkimit aktualisht është i shkëputur, kështu që nuk mund të shfaq" +" kërkesat e Informata zyrtare që kan të bëjnë me këtë autoritet" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" +"Indeksi i kërkimit është jashtë funksioni, kështu që ne nuk mund t'i " +"tregojmë kërkesat për informata zyrtare që ky person ka bërë." + +#: app/controllers/track_controller.rb:144 +msgid "Then you can cancel the alert." +msgstr "Pastaj ti mund të anulon njoftimin." + +#: app/controllers/track_controller.rb:174 +msgid "Then you can cancel the alerts." +msgstr "Pastaj ti mund të anulon njoftimet." + +#: app/controllers/user_controller.rb:249 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh adresën tënde të emailit që përdoret në " +"{{site_name}}" + +#: app/controllers/user_controller.rb:203 +msgid "Then you can change your password on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh fjalëkalimin tënd që përdoret në {{site_name}}" + +#: app/controllers/request_controller.rb:338 +msgid "Then you can classify the FOI response you have got from " +msgstr "Pastaj ti mund të klasifikon përgjigjet e marra nga " + +#: app/controllers/request_game_controller.rb:41 +msgid "Then you can play the request categorisation game." +msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." + +#: app/controllers/user_controller.rb:330 +msgid "Then you can send a message to " +msgstr "Pastaj ti mund të dërgon mesazh te " + +#: app/controllers/user_controller.rb:514 +msgid "Then you can sign in to {{site_name}}" +msgstr "Pastaj ti mund të kyçesh në {{site_name}}" + +#: app/controllers/request_controller.rb:61 +msgid "Then you can update the status of your request to " +msgstr "Pastaj ti mund të aktualizosh statusin e kërkesës tënde për " + +#: app/controllers/request_controller.rb:702 +msgid "Then you can upload an FOI response. " +msgstr "" +"Pastaj ti mund të ngarkon një përgjigje ndaj kërkesës për informata zyrtare." + +#: app/controllers/request_controller.rb:545 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:546 +msgid "Then you can write your reply to " +msgstr "Pastaj ti mund të shkruash përgjigjen tënde për " + +#: app/models/track_thing.rb:197 +msgid "" +"Then you will be emailed whenever '{{user_name}}' requests something or gets" +" a response." +msgstr "" + +#: app/models/track_thing.rb:213 +msgid "" +"Then you will be emailed whenever a new request or response matches " +"'{{query}}'." +msgstr "" + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" + +#: app/models/track_thing.rb:146 +msgid "Then you will be emailed whenever anyone makes a new FOI request." +msgstr "" + +#: app/models/track_thing.rb:181 +msgid "" +"Then you will be emailed whenever someone requests something or gets a " +"response from '{{public_body_name}}'." +msgstr "" + +#: app/controllers/request_controller.rb:299 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "Pastaj kërkesa yte për " + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "Pastaj shënimi yt për {{info_request_title}} do të postohet." + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow" +" this link to see what they wrote." +msgstr "" +"Ka {{count}} shënime të reja në kërkesën tënde {{info_request}}. Ndiqni " +"këtë vegzë për t'i parë ato." + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" +"Ekziston <strong>më shumë se një individ</strong> i cili e përdor këtë ueb sajt dhe ka të njejtin emërtim.\n" +"Njëri prej tyre është listuar më poshtë, ti mund të kesh menduar për tjetër kend:" + +#: app/views/request/show.rhtml:113 +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the {{site_name}} team." +msgstr "" + +#: app/controllers/public_body_controller.rb:77 +msgid "There was an error with the words you entered, please try again." +msgstr "Kishte një gabim me fjalët që keni shtypur, të lutem provo përsëri." + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "Ata do të përgjigjen <strong>me postë</strong>" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who" +" does)</small>" +msgstr "" +"Ata <strong>nuk e kanë</strong> informatën <small>(ndoshta ata tregojnë kush" +" e ka)</small>" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "Atyre u është dhënë shpjegimi vijues:" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly," +" as normally required by law" +msgstr "" +"Ata nuk janë përgjegj ndaj kërkesës {{law_used_short}} tënde {{title}} " +"menjëherë, siç kërkohet normalisht nga ligji" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" +"Ata nuk janë përgjegjur {{law_used_short}} ndaj kërkesës teënde {{title}}, " +"siç kërkohet me ligj" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "Gjëra për të bërë me këtë kërkesë" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" +"Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëni një kërkesë për " +"të." + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Ky koment është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh </a> për të parë " +"përgjigjen." + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" +"Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " +"zyrtare" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" +"Kjo është për shkak se {{title}} është një kërkesë e vjetër që ka qenë e " +"shenjuar të mos marrë më përgjigje." + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" +"Kjo është kërkesa yte, kështu që ti do të merr email automatikisht kur " +"përgjigjet e reja arrijnë." + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "Ky person ka" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "e këtij personi" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" + +#: app/views/request/show.rhtml:55 +msgid "This request has an <strong>unknown status</strong>." +msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." + +#: app/views/request/show.rhtml:117 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" +"Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " +"Mund të ketë një shpjegim në korrespondencën më poshtë." + +#: app/models/info_request.rb:395 +msgid "" +"This request has been set by an administrator to \"allow new responses from " +"nobody\"" +msgstr "" + +#: app/views/request/show.rhtml:115 +msgid "" +"This request has had an unusual response, and <strong>requires " +"attention</strong> from the {{site_name}} team." +msgstr "" + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are logged\n" +" in as a super user." +msgstr "" +"Kjo kërkesë ka klasifikim 'fshehur'. Ti mund të shohësh atë, vetëm sepse je " +"kyçur 'super user'." + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" +"Kjo kërkesë është e fshehur, kështu që vetëm ti - kërkuesi mund ta shoh " +"ate. Të lutem <a href=\"%s\">na kontakto</a> nëse nuk je i sigurt pse kjo po" +" ndodhë." + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Kjo përgjigje është fshehur. Shih shënimet për të kuptuar pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë " +"përgjigjen." + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" +"Ky ueb sajt është <strong>publik.</strong>Kërkesat dhe pergjegjet do të jenë" +" publike." + +#: app/views/request/details.rhtml:6 +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on {{site_name}}. This could be used to generate information about\n" +"the speed with which authorities respond to requests, the number of requests\n" +"which require a postal response and much more." +msgstr "" + +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from {{site_name}} " +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:5 +msgid "" +"This was not possible because there is already an account using \n" +"the email address {{email}}." +msgstr "" + +#: app/models/track_thing.rb:145 +msgid "To be emailed about any new requests" +msgstr "" + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "" + +#: app/models/track_thing.rb:196 +msgid "To be emailed about requests by '{{user_name}}'" +msgstr "" + +#: app/models/track_thing.rb:180 +msgid "" +"To be emailed about requests made using {{site_name}} to the public " +"authority '{{public_body_name}}'" +msgstr "" + +#: app/controllers/track_controller.rb:173 +msgid "To cancel these alerts" +msgstr "Për të anuluar njoftimet" + +#: app/controllers/track_controller.rb:143 +msgid "To cancel this alert" +msgstr "Për të anuluar këtë njoftim" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" +"Për të vazhduar, ti duhet të kyçesh ose të hapë një llogari. Për fat të keq," +" ka pasur një problem teknik duke u përpjekur për të bërë këtë." + +#: app/controllers/user_controller.rb:248 +msgid "To change your email address used on {{site_name}}" +msgstr "Për të ndryshuar email adresën tënde të përdorur në {{site_name}}" + +#: app/controllers/request_controller.rb:337 +msgid "To classify the response to this FOI request" +msgstr "Për të klasifikuar përgjigjen e kësaj kërkese për informata zyrtare" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "Për të bërë këtë të lutem dërgoni një email privat te" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "Për ta bërë këtë, së pari kliko në vegzën më poshtë." + +#: app/models/track_thing.rb:212 +msgid "To follow requests and responses matching '{{query}}'" +msgstr "" + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" +"Që të na njoftoni, ndiqni këtë vegzë dhe pastaj zgjedhni kutinë e duhur." + +#: app/controllers/request_game_controller.rb:40 +msgid "To play the request categorisation game" +msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "Për të postuar shënimin tënd" + +#: app/controllers/request_controller.rb:543 +msgid "To reply to " +msgstr "Për t'iu përgjegjur " + +#: app/controllers/request_controller.rb:542 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:329 +msgid "To send a message to " +msgstr "Për të dërguar mesazh te " + +#: app/controllers/request_controller.rb:298 +msgid "To send your FOI request" +msgstr "Për të dërguar kërkesën tënde për informata zyrtare" + +#: app/controllers/request_controller.rb:60 +msgid "To update the status of this FOI request" +msgstr "Për të aktualizuar statusin e kësaj kërkese për informata zyrtare" + +#: app/controllers/request_controller.rb:701 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" +"Të ngarkoni një përgjigje, ti duhet të kyçesh duke përdorur një email adresë" +" nga " + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" +"Për të parë adresën e emailit që ne përdorim për të dërguar kërkesa për " +"informata zyrtare te {{public_body_name}}, të lutem shkruaj këto fjalë." + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "Për të parë përgjigjen, kliko në vegzën më poshtë." + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "Për {{public_body_link_absolute}}" + +#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 +#: app/views/request/preview.rhtml:17 +msgid "To:" +msgstr "Për:" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "Përcjell kërkesat e bëra për {{public_body_name}} me email" + +#: app/models/track_thing.rb:206 +msgid "Track things matching '{{query}}' by email" +msgstr "" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "Përcjell këtë autoritet" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/models/track_thing.rb:190 +msgid "Track this person by email" +msgstr "Përcjell aktivitetin e këtij personi me email" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "Përcjell këtë kërkesë" + +#: app/models/track_thing.rb:123 +msgid "Track this request by email" +msgstr "Përcjell këtë kërkesë me email" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "TrackThing |Track medium" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "TrackThing|Track query" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "TrackThing |Track type" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" +"Tipi<code><strong>01/01/2008..14/01/2008</strong></code>është për të treguar" +" vetëm gjëra që kanë ndodhur në dy javët e para të janarit." + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "URL emri nuk mund të jetë i zbrazët" + +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on {{site_name}}" +msgstr "" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "Nuk munda të dërgoj përgjigje te {{username}}" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "Lloji i papritur i rezultatit të kërkuar" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "Lloji i papritur i rezultatit të kërkuar " + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" +"Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë " +"autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a " +"href=\"%s\">na kontakton</a> për ta rregulluar atë." + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" +"Për fat të keq, ne nuk kemi një adresë funksionale " +"{{info_request_law_used_full}} për" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "I/e panjohur" + +#: app/models/info_request_event.rb:317 +msgid "Unusual response" +msgstr "përgjigje e pazakonshme" + +#: app/models/info_request.rb:807 +msgid "Unusual response." +msgstr "përgjigje e pazakonshme." + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "Aktualizo statusin e kësaj kërkese" + +#: app/controllers/request_controller.rb:62 +msgid "Update the status of your request to " +msgstr "Aktualizo statusin e kërkesës tënde për " + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" +"Përdor OSE (me shkronja të mëdha), ku ju nuk jeni në dijeni për cilat fjalë " +"bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të " +"mdhaja</strong></code>" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. " +"<strong><code>\"Liverpool City Council\"</code></strong>" +msgstr "" +"Përdor thonjëzat (\" \") kur ti dëshiron të gjeshë një fjalë ekzakte, " +"p.sh.<code><strong>\"Ministria e Arsimit\"</strong></code>" + +#: locale/model_attributes.rb:67 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "UserInfoRequestSentAlert|Alert type" + +#: locale/model_attributes.rb:78 +msgid "User|About me" +msgstr "Përdoruesi |Rreth meje" + +#: locale/model_attributes.rb:76 +msgid "User|Admin level" +msgstr "Përdoruesi | Niveli i Administrimit" + +#: locale/model_attributes.rb:77 +msgid "User|Ban text" +msgstr "Përdoruesi |Tekst i ndaluar" + +#: locale/model_attributes.rb:69 +msgid "User|Email" +msgstr "Përdoruesi |Email" + +#: locale/model_attributes.rb:73 +msgid "User|Email confirmed" +msgstr "Përdoruesi|Emaili u konfirmua" + +#: locale/model_attributes.rb:71 +msgid "User|Hashed password" +msgstr "User|Hashed password" + +#: locale/model_attributes.rb:75 +msgid "User|Last daily track email" +msgstr "User|Last daily track email" + +#: locale/model_attributes.rb:70 +msgid "User|Name" +msgstr "Përdoruesi|Emri" + +#: locale/model_attributes.rb:72 +msgid "User|Salt" +msgstr "User|Salt" + +#: locale/model_attributes.rb:74 +msgid "User|Url name" +msgstr "Përdoruesi | Emri Url" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "Shiko adresën e emailit për Informatë Zyrtare" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" + +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by {{user_name}}:" +msgstr "" + +#: app/views/layouts/default.rhtml:89 +msgid "View authorities" +msgstr "Shiko autoritetet" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "Shiko adresën e emailit" + +#: app/views/layouts/default.rhtml:88 +msgid "View requests" +msgstr "Shiko kërkesat" + +#: app/models/info_request.rb:799 +msgid "Waiting clarification." +msgstr "Duke pritur sqarim." + +#: app/views/request/show.rhtml:111 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" +"Duke pritur për <strong>rishqyrtim intern</strong> nga {{public_body_link}} " +"për trajtimin e kësaj kërkese." + +#: app/views/general/search.rhtml:149 +msgid "" +"Waiting for the public authority to complete an internal review of their " +"handling of the request" +msgstr "" + +#: app/views/general/search.rhtml:142 +msgid "Waiting for the public authority to reply" +msgstr "" + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" +"Për fat të keq, ne nuk kemi një email adresë funksionale për këtë autoritet" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "Ne nuk kemi {{law_used_full}} adresë për {public_body_name}}." + +#: app/views/request/_describe_state.rhtml:107 +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know." +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/user_mailer/changeemail_confirm.rhtml:10 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/request/show.rhtml:61 +msgid "We're waiting for" +msgstr "Po presim për" + +#: app/views/request/show.rhtml:57 +msgid "We're waiting for someone to read" +msgstr "Jemi në pritje që dikush ta lexoj" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link in\n" +"it before your email address will be changed." +msgstr "" +"Ne të kemi dërguar një email të ri në adresën e emailit tënd. Ti duhet të " +"klikosh në vegzën në te para se adresa e emailit tënd do të ndryshohet." + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you can\n" +"continue." +msgstr "" +"Ne të kemi dërguar një email, ti duhet të klikosh në vegzën në te para se të" +" mund të vazhdosh." + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" +"Ne të kemi dërguar një email, kliko në vegzën në te që të mund të ndryshon " +"fjalëkalimin tënd." + +#: app/views/request/_followup.rhtml:58 +msgid "What are you doing?" +msgstr "Çfarë je duke bërë?" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "Çfarë përshkruan më së miri statusin e kësaj kërkese tani?" + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" +"Kur të gjendesh atje, të lutem aktualizo statusin e kërkesës që të tregosh nëse pergjegja ka \n" +"informata të dobishme." + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" +"Kur të marrësh përgjigjen në letër, të lutem i ndihmoni të tjerët të gjejnë " +"se çfarë thotë në te:" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" +"Kur të kesh mbaruar, <strong>kthehu këtu,</strong> <a href=\"%s\">rifresko " +"këtë faqe</a> dhe bëj kërkesën tënde të re." + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "Cila nga këto po ndodh?" + +#: app/models/info_request_event.rb:313 +msgid "Withdrawn by requester" +msgstr "E tërhequr nga kërkuesi" + +#: app/models/info_request.rb:809 +msgid "Withdrawn by the requester." +msgstr "E tërhequr nga kërkuesi." + +#: app/controllers/request_controller.rb:549 +msgid "Write a reply to " +msgstr "Shkruaj një përgjigje për " + +#: app/controllers/request_controller.rb:548 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "" +"Shkruaje kërkesën tënde me <strong>gjuhë të thjeshtë, dhe të saktë</strong>." + +#: app/models/info_request_event.rb:301 +msgid "Wrong Response" +msgstr "përgjigje e gabuar." + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "Ti" + +#: app/controllers/track_controller.rb:98 +msgid "You are already being emailed updates about " +msgstr "" + +#: app/models/track_thing.rb:175 +msgid "You are already tracking requests to {{public_body_name}} by email" +msgstr "" + +#: app/models/track_thing.rb:207 +msgid "You are already tracking things matching '{{query}}' by email" +msgstr "" + +#: app/models/track_thing.rb:191 +msgid "You are already tracking this person by email" +msgstr "" + +#: app/models/track_thing.rb:124 +msgid "You are already tracking this request by email" +msgstr "" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "Ti je duke pranuar me email çdo përgjigje të re të suksesshme" + +#: app/models/track_thing.rb:140 +msgid "You are being emailed when there are new requests" +msgstr "" + +#: app/views/request/show.rhtml:88 +msgid "You can <strong>complain</strong> by" +msgstr "Ti mund të <strong>ankohesh</strong> duke" + +#: app/views/request/details.rhtml:58 +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"{{api_path}}\">API documentation</a>." +msgstr "" + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" +"Ju vetëm mund të kërkoni informacione në lidhje me mjedisin nga ky " +"autoritet." + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "Ti ke" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "Ti ke një përgjigje të re për kërkesën {{law_used_full}}" + +#: app/controllers/user_controller.rb:492 +msgid "You have now changed the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:310 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" +"Tash ke ndryshuar adresën tënde të emailit që përdoret në {{site_name}}" + +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "" +"You just tried to sign up to {{site_name}}, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>," +" such as a working email address." +msgstr "" + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" +"Ti mund të <strong>bashkangjitë shtojca (attachments).</strong>. Nëse dëshiron të bashkangjet një\n" +"fajll tepër të madh për email format, përdor formularin e mëposhtëm." + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +" në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +" atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +"në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +"atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/controllers/user_controller.rb:470 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:371 +msgid "You need to be logged in to change your profile photo." +msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." + +#: app/controllers/user_controller.rb:433 +msgid "You need to be logged in to clear your profile photo." +msgstr "" +"Ti duhet të jesh i kyçur për të larguar (fshirë) fotografinë e profilit " +"tënd." + +#: app/controllers/request_controller.rb:559 +msgid "" +"You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" +msgstr "" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations or\n" +"send messages to other users. You may continue to view other requests, and set\n" +"up\n" +"email alerts." +msgstr "" + +#: app/controllers/track_controller.rb:154 +msgid "You will no longer be emailed updates about " +msgstr "" + +#: app/controllers/track_controller.rb:183 +msgid "You will no longer be emailed updates for those alerts" +msgstr "Ti nuk të merr më aktualizime me email për këto njoftime " + +#: app/controllers/track_controller.rb:111 +msgid "You will now be emailed updates about " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" +"Ti do të merr përgjigje në kërkesën tënde vetëm në qoftë se e sqaroni atë." + +#: app/controllers/user_controller.rb:442 +msgid "You've now cleared your profile photo" +msgstr "Ke pastruar fotografinë e profilit tënd" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "" + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" + +#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +msgid "Your e-mail:" +msgstr "Adresa e emailit tënd:" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "Email abonimet e tua" + +#: app/controllers/request_controller.rb:556 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:584 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:582 +msgid "Your internal review request has been sent on its way." +msgstr "Kërkesa për rishqyrtim intern është dërguar." + +#: app/controllers/help_controller.rb:63 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" +"Mesazhi yt u dërgua. Faleminderit që na kontaktuat! Ne do t'ju përgjigjemi " +"së shpejti." + +#: app/controllers/user_controller.rb:349 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" +"Mesazhi yt do të shfaqet në <strong>kërkuesit e internetit (p.sh. " +"Google)</strong>" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" +"Emri yt dhe shënimi do të shfaqen në <strong>kërkuesit e internetit (p.sh. " +"Google).</strong>" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" +"Emrin yt, kërkesa dhe çdo përgjigje do të shfaqen në <strong>kërkuesit e " +"internetit (p.sh. Google)</strong> ( <a href=\"%s\">detaje</a> )." + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "Emri yt:" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "Mesazhi yt origjinal është i bashkangjitur." + +#: app/controllers/user_controller.rb:231 +msgid "Your password has been changed." +msgstr "Fjalëkalimi yt është ndryshuar." + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "Fjalëkalimi yt:" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on {{site_name}}." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" +"Kërkesa yte qe emëruar {{info_request}}. Nëse i lejoni të tjerër ta dijnë a " +"i keni marrë informatat në pergjigje, do të na mundësoni ta mbikqyrim " + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "Kërkesa yte:" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a " +"href=\"%s\">read why</a> and answers to other questions." +msgstr "" +"Përgjegja yte do të <strong>shfaqet në internet,</strong> <a " +"href=\"%s\">lexoni pse</a> dhe përgjigjet për pyetje të tjera." + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the {{site_name}} <strong>administrators</strong> " +"should do about the request." +msgstr "" + +#: app/models/track_mailer.rb:25 +msgid "Your {{site_name}} email alert" +msgstr "" + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "Me nderime," + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "Sinqerisht," + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" +"një përmbledhje në një rresht të informacionit që ti kërkon,\n" +"»» »p.sh." + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "admin" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "i quajtur edhe {{public_body_short_name}}" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "dhe kyçu si" + +#: app/views/request/show.rhtml:59 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" + +#: app/views/request/show.rhtml:64 +msgid "and update the status." +msgstr "dhe aktualizo statusin." + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "dhe ne do të sugjerojmë <strong>çfarë të bëjë pastaj</strong>" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "shënim" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "shënimet" + +#: app/models/track_thing.rb:138 +msgid "any <a href=\"/list\">new requests</a>" +msgstr "" + +#: app/models/track_thing.rb:154 +msgid "any <a href=\"/list/successful\">successful requests</a>" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "janë vonuar së tepërmi." + +#: app/controllers/public_body_controller.rb:111 +msgid "beginning with" +msgstr "duke filluar me" + +#: app/views/request/show.rhtml:82 +msgid "by" +msgstr "nga" + +#: app/views/request/_followup.rhtml:38 +msgid "by <strong>{{date}}</strong>" +msgstr "nga <strong>{{date}}</strong>" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "nga {{public_body_name}} për {{info_request_user}} me {{date}}." + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "nga {{user_link_absolute}}" + +#: locale/model_attributes.rb:35 +msgid "censor rule" +msgstr "censor rregulli" + +#: locale/model_attributes.rb:20 +msgid "comment" +msgstr "komenti" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" + +#: app/models/info_request_event.rb:338 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" +"display_status tani për tani punon vetëm për mesazhet hyrëse dhe dalëse" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "p.sh." + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "edito tekstin në lidhje me ty" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "abonimet me email" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "madje edhe gjatë pushimeve" + +#: locale/model_attributes.rb:17 +msgid "exim log" +msgstr "exim log" + +#: locale/model_attributes.rb:59 +msgid "exim log done" +msgstr "exim log done" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "ka raportuar një" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "kanë vonuar." + +#: locale/model_attributes.rb:56 +msgid "holiday" +msgstr "festë" + +#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 +#: app/views/request/show.rhtml:80 +msgid "in term time" +msgstr "" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "në total" + +#: locale/model_attributes.rb:62 +msgid "incoming message" +msgstr "mesazhi i ardhur" + +#: locale/model_attributes.rb:79 +msgid "info request" +msgstr "kërkesë për informatë" + +#: locale/model_attributes.rb:40 +msgid "info request event" +msgstr "info request event" + +#: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 +msgid "internal error" +msgstr "gabim i brendshëm i sistemit" + +#: app/views/request/show.rhtml:100 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "është duke <strong>pritur për sqarim tuaj</strong>." + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "vetëm për të parë se si funksionon" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "ka lënë një shënim" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "bërë." + +#: app/views/request/show.rhtml:74 +msgid "no later than" +msgstr "jo më vonë se" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/show.rhtml:72 +msgid "normally" +msgstr "normalisht" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "vetëm" + +#: locale/model_attributes.rb:25 +msgid "outgoing message" +msgstr "Mesazhi dalës" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "Të lutem kyçu si" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "të lutem kyçu ose krijo një llogari të re." + +#: locale/model_attributes.rb:49 +msgid "post redirect" +msgstr "ridrejto postën në tjetër adresë" + +#: locale/model_attributes.rb:14 +msgid "profile photo" +msgstr "fotografia e profilit" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "institucioni publik" + +#: locale/model_attributes.rb:47 +msgid "raw email" +msgstr "raw email" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "kërkesë." + +#: app/views/request/show.rhtml:89 +msgid "requesting an internal review" +msgstr "kërko rishqyrtim intern" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" + +#: app/views/request/show.rhtml:102 +msgid "send a follow up message" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." + +#: app/views/request/show.rhtml:106 +msgid "sign in" +msgstr "Kyçu" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "Ç'kyçu" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "që ti ke bërë për" + +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/track_mailer/event_digest.rhtml:66 +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:10 +#: app/views/user_mailer/changeemail_confirm.rhtml:13 +#: app/views/user_mailer/confirm_login.rhtml:11 +msgid "the {{site_name}} team" +msgstr "" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "ky person" + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" +"për të ndryshuar, fjalëkalimin,\n" +"abonimet dhe më shumë" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "" + +#: app/views/request/show.rhtml:62 +msgid "to read" +msgstr "për të lexuar" + +#: app/views/request/show.rhtml:106 +msgid "to send a follow up message." +msgstr "" + +#: app/views/request/show.rhtml:45 +msgid "to {{public_body}}" +msgstr "për {{public_body}}" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "përcjell gjënë" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "Indeksim i llojit të panjohur të ngjarjes " + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "arsye e panjohur" + +#: app/models/info_request.rb:814 app/models/info_request_event.rb:333 +msgid "unknown status " +msgstr "status i panjohur" + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "ndërprej abonimin" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "ndërpreji të gjitha abonimet" + +#: app/views/request/show.rhtml:53 +msgid "useful information." +msgstr "informata të dobishëme." + +#: locale/model_attributes.rb:68 +msgid "user" +msgstr "përdoruesi" + +#: locale/model_attributes.rb:66 +msgid "user info request sent alert" +msgstr "shfrytëzuesi info kërkesë dërguar alarm" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "ti" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{date}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" +"apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të ngjashme." + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "{{info_request_user_name}} vetëm:" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} më parë" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "{{public_body_name}} vetëm:" + +#: app/views/public_body/view_email.rhtml:7 +msgid "" +"{{site_name}} sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" + +#: app/models/user.rb:122 +msgid "{{user_name}} (Banned)" +msgstr "" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" +"{{user_name}} ka lënë shënim në kërkesën tënde {{law_used_short}}. Ndiqni " +"këtë vegzë për të parë se çfarë ata shkruan." + +#: app/views/contact_mailer/user_message.rhtml:2 +msgid "{{user_name}} has used {{site_name}} to send you the message below." +msgstr "" + +#: app/views/request/show.rhtml:36 +msgid "" +"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this " +"{{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to " +"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" +msgstr "" + +#: app/views/request/show.rhtml:44 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" + + diff --git a/locale/sq/app_old5.po b/locale/sq/app_old5.po new file mode 100644 index 000000000..780ae4b41 --- /dev/null +++ b/locale/sq/app_old5.po @@ -0,0 +1,4457 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <bresta@gmail.com>, 2011. +# driton <dritoni.h@gmail.com>, 2011. +# <vbrestovci@gmail.com>, 2011. +# Valon <vbrestovci@gmail.com>, 2011. +# vbrestovci <vbrestovci@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: alaveteli\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-08-11 12:30+0200\n" +"PO-Revision-Date: 2011-08-15 22:01+0000\n" +"Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app/models/incoming_message.rb:866 +msgid "" +"\n" +"\n" +"[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]" +msgstr "" +"\n" +"\n" +"[{{site_name}} shënim: Teksti i lartshënuar është koduar keq, dhe i janë hequr karaktere të çuditshme.]" + +#: app/views/user/set_profile_about_me.rhtml:14 +msgid "" +" This will appear on your {{site_name}} profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" +"Kjo do të shfaqet në profilin tënd në {{site_name}}, për ta bërë më të\n" +"lehtë për të tjerët që të involvohen me çfarë jeni duke bërë." + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" +" (pa politikë <strong>llafazane</strong>, lexo <a href=\"%s\">politikat e " +"moderimit</a>)" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" +"<strong>(Durim,</strong> sidomos për fotografi të mëdha, mund të marrë më " +"shum kohë!)" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr " (ti)" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" +" <strong>Shënim:</strong>\n" +"Do të dërgoj një email. Ndiq udhëzimet në te për të ndryshuar \n" +"fjalëkalimin tënd." + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr " <strong>Shënim privacie:</strong> Adresa e emailit do t'i jepet" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" +" <strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera " +"(përgjegura)." + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr " Këshillo se si <strong>më së miri të sqarohet</strong> një kërkesë." + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" +" Ide se çfarë <strong>dokumentesh tjera të kërkohen</strong> që mund t'i " +"posedojë institucioni. " + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n" +" You may be able to find the address on their website, or by phoning them up and asking." +msgstr "" +" Nëse e din adresën e emailit për ta përdorur, atëherë të lutem <a href=\"%s\">na e dërgon</a>. \n" +"Ti mund ta gjen adresën e emailit në ueb sajtin e tyre ose duke ju telefonuar dhe pyetur." + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" +" Përfshij vegzat relevante, si p.sh. te faqja e fushatës, blogu yt apo\n" +" llogaria e twitterit. Ato do të bëhen të klikueshme. \n" +" p.sh." + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already " +"available</strong> on the Internet. " +msgstr "" +" Vegza për informatat e kërkuara, në qoftë se ato <strong> tashmë " +"janë</strong> në dispozicion në internet. " + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" +" Propozo mënyra më të mira të <strong>formulim të kërkesës</strong> për të " +"marrë informacion. " + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr " Të lutem kyçu ose krijo një llogari të re." + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" +" Trego se si ke <strong>përdorur informacionin,</strong> me ueb vegza nëse " +"është e mundur." + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" +" Sugjero <strong>ku tjetër</strong> kërkuesi mund të gjej informacionin. " + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" +" Çfarë jeni duke hulumtuar (hetuar) duke përdor kërkesat për çasje në " +"Informata Zyrtare? " + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" +" Ti tashmë je duke i pranuar me email aktualizimet në lidhje me këtë " +"kërkesë." + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" +" Ti gjithashtu do të pranon email me aktualizimet e reja në lidhje me " +"kërkesën." + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr " bërë nga " + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "" +" nuk ka bërë kërkesa për informata zyrtare duke përdorur këtë ueb faqe." + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr " kur e dërgoni këtë mesazh." + +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request made using this site" +msgid_plural "%d Freedom of Information requests made using this site" +msgstr[0] "%d Kërkesë për informata zyrtare të bërë duke përdorur këtë ueb faqe" +msgstr[1] "%d Kërkesa për informata zyrtare të bëra duke përdorur këtë ueb faqe" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "%d kërkesë" +msgstr[1] "%d kërkesa" + +#: app/views/public_body/_body_listing_single.rhtml:21 +msgid "%d request made." +msgid_plural "%d requests made." +msgstr[0] "%d e kërkesës së bërë." +msgstr[1] "%d e kërkesave të bëra." + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "'Statistikat e krimit në nivel komune'" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "'Niveli i ndotjes për lumin Drin'" + +#: app/controllers/user_controller.rb:355 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" +",\n" +"\n" +"\n" +"\n" +"Me nderime,\n" +"\n" +"{{user_name}}" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" +"<a href=\"%s\">Shto një shënim</a> (për të ndihmuar kërkuesit ose të tjerët)" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "<a href=\"%s\">A po mungon ndonjë autoritet publik?</a>." + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" +"<a href=\"%s\">Shfletoni të gjitha</a> ose <a href=\"%s\">kërkoni nga ne që " +"të shtojmë një</a> ." + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" + +#: app/views/request/_followup.rhtml:39 app/views/request/_followup.rhtml:46 +#: app/views/request/show.rhtml:83 app/views/request/show.rhtml:87 +msgid "<a href=\"%s\">details</a>" +msgstr "<a href=\"%s\">detajet</a>" + +#: app/views/request/_followup.rhtml:74 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "<a href=\"%s\">Çfarë është ajo?</a>" + +#: app/views/public_body/show.rhtml:50 +msgid "" +"<a href=\"{{url}}\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" +"<a href=\"{{url}}\">Bëj një kërkesë të re për informatë zyrtare </a> te " +"{{public_body_name}}" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a " +"href=\"{{helpus_url}}\">more things you can do</a> to help " +"{{site_name}}.</p>" +msgstr "" +"<p>Të gjitha u bënë! Shumë faleminderit për ndihmën tënde. </p><p>Ka <a " +"href=\"{{helpus_url}}\">shumë gjëra që ti mund të bësh</a> për të ndihmuar " +"{{site_name}}. </p>" + +#: app/controllers/request_controller.rb:399 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the text of your request below, then <a href=\"{{find_authority_url}}\">find the other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they do not hold the information, here is \n" +" <a href=\"{{complain_url}}\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"{{other_means_url}}\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>" +msgstr "" + +#: app/controllers/request_controller.rb:393 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of " +"<strong>{{date_response_required_by}}</strong>.</p>" +msgstr "" +"<p> Faleminderit! Shpresojmë se ti nuk do të presësh shumë gjatë. </p><p> " +"Sipas ligjit, ti duhet të kesh marrë një përgjigje menjëherë, dhe normalisht" +" para <strong>{{date_response_required_by}}</strong>. </p>" + +#: app/controllers/request_controller.rb:389 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" +"<p> Faleminderit! Shpresojmë se pristja yte nuk do të jetë shumë e gjatë. </p><p> Sipas ligjit, ti duhet merrë një përgjigje menjëherë, dhe normalisht para <strong>\n" +"{{date_response_required_by}}</strong>. </p>" + +#: app/controllers/request_controller.rb:428 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a " +"href=\"{{review_url}}\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:431 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" +"<p> Faleminderit! Ne do të shohim çfarë ka ndodhur dhe të përpiqemi që ta " +"rregullojmë atë. </p><p> Nëse gabimi ishte në dorëzimin e kërkesës në email " +"adresën e autoritetit, dhe ti mund të gjesh email adresën aktuale të " +"autoritetit, të lutem na e trego duke përdorur formularin e mëposhtëm.</p>" + +#: app/controllers/request_controller.rb:396 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:495 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph too.</p>" +msgstr "" +"<p> Faleminderit për ndryshimin e tekstit për vetën tënde në profil. </p>\n" +" <p> <strong>Pastaj ...</strong> Ti gjithashtu mund ta ngarkon (upload) një fotografi në profilin tënd. </p>" + +#: app/controllers/user_controller.rb:417 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" +msgstr "" +"<p> Faleminderit për azhurimin e fotografisë në profilit tënd. </p><p> " +"<strong>Pastaj ...</strong> Ti mund të shkruash një tekst për veti dhe për " +"temat e hulumtimit tënd në profil. </p>" + +#: app/controllers/request_controller.rb:284 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" +msgstr "" +"<p> Ne të rekomandojmë që të editosh kërkesën dhe për të fshire adresën e emailit.\n" +" Nëse e len atë, adresa e emailit do ti dërgohet autoritetit, por nuk do të shfaqet në këtë ueb faqe. </p>" + +#: app/controllers/request_controller.rb:417 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation" +" below saying what you did.</p><p>If you found {{site_name}} useful, <a " +"href=\"{{donation_url}}\">make a donation</a> to the charity which runs " +"it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:420 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"{{site_name}} useful, <a href=\"{{donation_url}}\">make a donation</a> to " +"the charity which runs it.</p><p>If you want to try and get the rest of the " +"information, here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:282 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjigje (<a href=\"%s\">detaje</a> ). </p>" + +#: app/controllers/request_controller.rb:280 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" +"<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " +"marrësh përgjigje, sepse ne do ta kërkojme atë ne faqen vijuese (<a " +"href=\"%s\">detaje</a> )." + +#: app/controllers/request_controller.rb:288 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will" +" <strong>appear publicly on the Internet</strong>.</p>" +msgstr "" +"<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhet " +"direkt me temën e kërkesës tënde, të lutem largo çdo adresë sepse do të jetë" +" <strong> publike në internet</strong>. </p>" + +#: app/controllers/request_controller.rb:311 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" +" <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/controllers/application_controller.rb:279 +msgid "" +"<p>{{site_name}} is currently in maintenance. You can only view existing " +"requests. You cannot make new ones, add followups or annotations, or " +"otherwise change the database.</p> <p>{{read_only}}</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n" +"</p>" +msgstr "" +"<small>Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke " +"\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " +"mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" +"<strong> A mund të kërkoj informatë për veten time?</strong>\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><a href=\"%s\">Jo! (Kliko këtu për detaje)</a>" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations" +" made by Tony Bowden, typing the name as in the URL." +msgstr "" +"<strong><code>komentuar_nga:filan_fisteku</code></strong> për të kërkuar " +"shenimet nga Filan Fisteku, shtypeni emrin si në URL." + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" +"<strong><code>tipi_i_fajjlit:pdf</code></strong> për t'i gjetë të gjitha " +"përgjigjet me PDF të bashkangjitur. Apo provo këto: " +"<code>{{list_of_file_extensions}}</code>" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" +"<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " +"caktuar, duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " +"kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" +"<strong><code>kerkuar_te:zyra_e_kryeministrit</code></strong> për të kërkuar" +" kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në " +"URL." + +#: app/views/general/search.rhtml:126 +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"{{statuses_url}}\">table" +" of statuses</a> below." +msgstr "" + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only want results them all present." +msgstr "" +"<strong><code>etiketa:charity</code></strong> për të gjetur të gjitha institucionet apo kërkesat me etiketën e dhënë. Mund të përfshihen edhe disa etiketa, \n" +" dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" +" prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse do që vetëm ato te përfshihen." + +#: app/views/general/search.rhtml:127 +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"{{varieties_url}}\">table of varieties</a> below." +msgstr "" + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" +"<strong>Këshillo</strong> se si të merrni një përgjigje që do të kënaqte " +"kërkuesin. </li>" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "<strong>Të gjitha informatat</strong> janë dërguar" + +#: app/views/request/_followup.rhtml:79 +msgid "" +"<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" + +#: app/views/request/details.rhtml:12 +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" +"a good internal knowledge of user behaviour on {{site_name}}. How, \n" +"why and by whom requests are categorised is not straightforward, and there will\n" +"be user error and ambiguity. You will also need to understand FOI law, and the\n" +"way authorities use it. Plus you'll need to be an elite statistician. Please\n" +"<a href=\"{{contact_path}}\">contact us</a> with questions." +msgstr "" +"<strong>Caveat emptor!</strong> Për të përdorur këto shenime në mënyrë të ndershme, ju duhet njohuri e brendshme e pikënisjes së përdoruesve të {{site_name}}. Si,\n" +"pse dhe nga kush kategorizohen kërkesat nuk është diçka e vetëkuptueshme pra edhe mund të ketë gabime dhe paqartësi. Gjithashtu duhet ta kuptoni ligjin për qasje në dokumente publike, si dhe mënyrën se si institucionet (autoritetet) e zbatojnë atë. Plus duhet të jeni ekspert i statistikës. Të lutem\n" +"<a href=\"{{contact_path}}\"> na kontakto </a> me pyetje." + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "Është kërkuar<strong>sqarim</strong> " + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" +"<strong>Asnjë përgjigje</strong> nuk është marrë <small>(ndoshta ke marrë " +"konfirmim të pranimit)</small>" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" +"<strong>Shenim:</strong>\n" +" Do të dërgojmë email në adresën tënde të re. Përcjelli\n" +" udhëzimet për të konfirmuar ndërrimin e emailit." + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" +"<strong>Shenim:</strong> Je duke dërguar email vetëvetes, me gjasë\n" +" për të provuar se si funksionon." + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" +"<strong>Shenim privacie:</strong> Nëse do të kërkosh informatë private për\n" +" veten tënde <a href=\"%s\">kliko këtu</a>." + +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" +" wherever you do something on {{site_name}}." +msgstr "" +"<strong>Shënim privacie:</strong> Fotografia yte do të tregohet publikisht në internet, \n" +" kudo që vepron diçka në {{site_name}}." + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" +"<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjigje do të" +" paraqitet publikisht në këtë ueb faqe " + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "<strong>Disa nga informacionet</strong> janë dërguar " + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "<strong>Detajet teknike:</strong>" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "<strong>Falënderoju</strong> autoritet publik ose " + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." +msgstr "" +"<strong>Shfleto</strong> <a href=\"%s\">skemën e publikimit</a> të " +"autoritetit ose vizito ueb faqen e tyre..." + +#: app/views/request/show.rhtml:91 +msgid "<strong>did not have</strong> the information requested." +msgstr "<strong>nuk e kanë</strong> informacionin e kërkuar." + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>kërko</strong> në ueb sajtin e autoritetit ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" +"Një <strong>përmbledhje</strong> e përgjigjes nëse ate e keni marrë me " +"postë. " + +#: app/views/general/search.rhtml:162 +msgid "A public authority" +msgstr "Autoriteti publik" + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "Përgjigja do të dërgohet <strong>me postë</strong>" + +#: app/views/general/search.rhtml:151 +msgid "A strange reponse, required attention by the {{site_name}} team" +msgstr "" +"Një përgjigje e çuditshme, kërkohet vëmendje e ekipit të {{site_name}}" + +#: app/views/general/search.rhtml:163 +msgid "A {{site_name}} user" +msgstr "Përdorues i {{site_name}}" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "Për ty:" + +#: app/models/info_request_event.rb:293 +msgid "Acknowledgement" +msgstr "Konfirmim për pranim " + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "Vepro sipas asaj që ke marrë vesh" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "Shto një shënim për" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" +"Shto shenim në kërkesën tënde me citate të zgjedhura, apo\n" +" me <strong>përmbledhje të përgjigjes</strong>." + +#: app/views/public_body/_body_listing_single.rhtml:26 +msgid "Added on {{date}}" +msgstr "Shtuar më {{date}}" + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "Niveli i administratorit nuk është i përfshir në listë" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "URL për administrim:" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "Këshilla te avansuara për kërkim" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain" +" about it if not." +msgstr "" +"Këshillo se a <strong>është refuzimi i ligjshëm,</strong> dhe si të " +"ankohensh për atë nëse nuk është i ligjshëm." + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" + +#: app/models/info_request_event.rb:309 +msgid "All information sent" +msgstr "Të gjitha informatat janë dërguar" + +#: app/views/general/search.rhtml:146 +msgid "All of the information requested has been received" +msgstr "Të gjitha informatat e kërkuara janë marrë" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "Sipas alfabetit" + +#: app/views/public_body/_body_listing_single.rhtml:12 +msgid "Also called {{other_name}}." +msgstr "i quajtur edhe {{other_name}}." + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" +"Edhe pse të gjitha përgjigjet publikohen automatikisht, ne varemi nga ti, si" +" kërkues i tyre, për t'i vlerësuar ato." + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "Një <strong>mesazh gabimi</strong> është marrë" + +#: app/views/general/search.rhtml:161 +msgid "Annotation added to request" +msgstr "Shënimi iu shtua kërkesës" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "Shënimet" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" +"Shënimet shërbejne për të gjithë, duke përfshirë edhe ty, që të mund të " +"ndihmoj kërkuesit me kërkesën e tyre. Për shembull:" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" +"Shënimet do të shfaqen publikisht këtu, dhe\n" +"<strong>nuk</strong> dërgohen te {{public_body_name}}." + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "Çdokush:" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not" +" suitable for general enquiries." +msgstr "" +"Kërko dokumente apo informata <strong>specifike</strong>, kjo faqe nuk është" +" e përshtatshme për pyetje të përgjithshme." + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" +"Në fund të kësaj faqeje, shkruaji atyre për të kërkuar nga ata që t'i scannojnë\n" +" (<a href=\"%s\">më shumë detaje</a>)." + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "Shtojca - attachment (opcionale):" + +#: app/models/info_request.rb:783 +msgid "Awaiting classification." +msgstr "Në pritje të klasifikimit." + +#: app/models/info_request.rb:803 +msgid "Awaiting internal review." +msgstr "Në pritje për rishqyrtim intern." + +#: app/models/info_request.rb:785 +msgid "Awaiting response." +msgstr "Në pritje të përgjigjes." + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" +"Shfleto <a href=\"%s\">kërkesa të tjera</a> për shembuj se si të formulosh " +"kërkesën tënde." + +#: app/views/request/new.rhtml:41 +msgid "" +"Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" +"Shfleto <a href='{{url}}'>kërkesa të tjera</a> të drejtuara te " +"'{{public_body_name}}' për shembuj se si të formulosh kërkesën tënde." + +#: app/views/request/show.rhtml:86 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" +"Sipas ligjit, në të gjitha rrethanat, {{public_body_link}} është duhur të " +"përgjigjet deri tani" + +#: app/views/request/show.rhtml:78 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" +"Sipas ligjit, {{public_body_link}} do të duhej të ishte përgjegjur " +"<strong>menjëherë</strong> dhe" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" +" it</a>." +msgstr "" +"Nuk u gjet? <a href=\"%s\">Shfleto të gjtiha</a> apo <a href=\"%s\">kërko që" +" të shtohet</a>." + +#: app/controllers/track_controller.rb:145 +msgid "Cancel a {{site_name}} alert" +msgstr "Anulo njoftimet për {{site_name}}" + +#: app/controllers/track_controller.rb:175 +msgid "Cancel some {{site_name}} alerts" +msgstr "Anulo disa njoftime për {{site_name}}" + +#: locale/model_attributes.rb:39 +msgid "CensorRule|Last edit comment" +msgstr "CensorRule | Editimi i fundit i koment" + +#: locale/model_attributes.rb:38 +msgid "CensorRule|Last edit editor" +msgstr "CensorRule | Editimi i fundit të editorit" + +#: locale/model_attributes.rb:37 +msgid "CensorRule|Replacement" +msgstr "CensorRule | Zëvendësimi" + +#: locale/model_attributes.rb:36 +msgid "CensorRule|Text" +msgstr "CensorRule | Teksti" + +#: lib/public_body_categories_en.rb:14 +msgid "Central government" +msgstr "Qeveria qendrore" + +#: app/views/user/signchangeemail.rhtml:37 +msgid "Change email on {{site_name}}" +msgstr "Ndrysho emailin në {{site_name}}" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Ndrysho fjalekalimin në {{site_name}}" + +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" +msgstr "Ndrysho fotografinë e profilit" + +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at {{site_name}}" +msgstr "Ndrysho tekstin për vetën në profilin tënd në {{site_name}}" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "Ndrysho email adresën tënde" + +#: app/controllers/user_controller.rb:250 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "Ndysho email adresën tënde të përdorur në këtë {{site_name}}" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "Ndrysho fjalëkalimin tënd" + +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" + +#: app/controllers/user_controller.rb:204 +msgid "Change your password {{site_name}}" +msgstr "Ndrysho fjalëkalimin tënd {{site_name}}" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "Regjistrimi i organizatës" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." + +#: app/views/request/followup_preview.rhtml:14 +#: app/views/request/preview.rhtml:7 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" +"Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" + +#: app/models/info_request_event.rb:331 +msgid "Clarification" +msgstr "Sqarim" + +#: app/models/info_request_event.rb:295 +msgid "Clarification required" +msgstr "Kërkohet sqarim" + +#: app/controllers/request_controller.rb:339 +msgid "Classify an FOI response from " +msgstr "Klasifiko një përgjigje për kërkesë për informatë zyrtare prej " + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" +"Kliko në vegzën më poshtë për të dërguar një mesazh te {{public_body_name}} " +"duke u thënë atyre që të përgjigjen në kërkesën tënde. Ti mund të dëshirosh " +"të kërkosh rishqyrtim intern, duke u kërkuar atyre për të gjetur se pse " +"përgjegja ndaj kërkesës ka qenë kaq e ngadaltë." + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" +"Kliko në vegzën e mëposhtme për t'i dërguar mesazh {{public_body}} për t'ua " +"përkujtuar që t'i përgjigjen kërkesës tënde." + +#: locale/model_attributes.rb:22 +msgid "Comment|Body" +msgstr "Komenti | Body" + +#: locale/model_attributes.rb:21 +msgid "Comment|Comment type" +msgstr "Koment|Lloji i komentit" + +#: locale/model_attributes.rb:24 +msgid "Comment|Locale" +msgstr "Koment | Lokale" + +#: locale/model_attributes.rb:23 +msgid "Comment|Visible" +msgstr "Koment | i/e dukshëm" + +#: app/models/track_thing.rb:147 +msgid "Confirm you want to be emailed about new requests" +msgstr "Konfirmo që doni të merrni email për kërkesa të reja" + +#: app/models/track_thing.rb:214 +msgid "" +"Confirm you want to be emailed about new requests or responses matching " +"'{{query}}'" +msgstr "" +"Konfirmo që doni të merrni email për kërkesa ose përgjigje të reja që " +"përputhen me këtë '{{query}}'" + +#: app/models/track_thing.rb:198 +msgid "Confirm you want to be emailed about requests by '{{user_name}}'" +msgstr "" +"Konfirmo që doni të merrni email për kërkesat e reja të '{{user_name}}'" + +#: app/models/track_thing.rb:182 +msgid "" +"Confirm you want to be emailed about requests to '{{public_body_name}}'" +msgstr "" +"Konfirmo që doni të merrni email për kërkesat e reja te " +"'{{public_body_name}}'" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" +"Konfirmo që doni të merrni email kur një kërkesë për informata zyrtare ka " +"sukses" + +#: app/controllers/request_controller.rb:300 +msgid "Confirm your FOI request to " +msgstr "Konfirmo kërkesën tënde për " + +#: app/controllers/request_controller.rb:703 +#: app/controllers/user_controller.rb:515 +msgid "Confirm your account on {{site_name}}" +msgstr "Konfirmo llogarinë tënde në {{site_name}}" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "Konfirmo shënimin tënd për {{info_request_title}}" + +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on {{site_name}}" +msgstr "Konfirmo adresën e email-it tënd të ri në {{site_name}}" + +#: app/views/layouts/default.rhtml:127 +msgid "Contact {{site_name}}" +msgstr "Kontakto {{site_name}}" + +#: app/models/request_mailer.rb:210 +msgid "Could not identify the request from the email address" +msgstr "Nuk mund ta identifikoj kërkesën nga email adresa" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" +"Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga " +"sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "Preje fotografinë e profilit tënd" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" + +#: app/views/request/show.rhtml:68 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}," +" they must respond promptly and" +msgstr "" +"Momentalisht <strong>duke pritur përgjigje</strong> nga " +"{{public_body_link}}, ata duhet të përgjigjen menjëherë dhe" + +#: app/models/info_request_event.rb:299 +msgid "Deadline Extended" +msgstr "Afati është vazhduar" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "I/e nderuar " + +#: app/models/info_request.rb:787 +msgid "Delayed." +msgstr "Vonuar." + +#: app/models/info_request.rb:805 app/models/info_request_event.rb:315 +msgid "Delivery error" +msgstr "Gabim gjatë dorëzimit" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "Detajet e kërkesës" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "Mos mendove këtë: {{correction}}" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "Shkarko shtojcën (attachment) origjinale" + +#: app/views/request/_followup.rhtml:85 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" +"Redakto dhe shto <strong>më shumë detaje</strong> në mesazhin e mësipërm,\n" +" duke shpjeguar se pse nuk je i kënaqur me përgjigjen e tyre." + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "Edito versionin e gjuhës:" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr "Edito tekstin për vetën tënde" + +#: app/models/user.rb:135 +msgid "Either the email or password was not recognised, please try again." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri." + +#: app/models/user.rb:137 +msgid "" +"Either the email or password was not recognised, please try again. Or create" +" a new account using the form on the right." +msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri. " +"Ose krijo një llogari të re duke përdor formën në të djathtë." + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "Email adresa nuk duket si një adresë e vlefshme" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "M'i dërgo me email përgjigjet e reja të suksesshme" + +#: app/models/track_thing.rb:139 +msgid "Email me when there are new requests" +msgstr "Më dërgo email kur ka kërkesa të reja" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "Abonimet me email" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing" +" lane</strong>" +msgstr "" +"Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim " +"rruge</strong>" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" +"Shkruaj përgjigjen tënde më poshtë. Ti mund të bashkëangjitësh një fajll " +"(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " +"shumë)." + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "\"Environmental Information Regulations\" kërkesa të bëra" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" +"\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë" +" ueb sajt" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "Historiku i ngjarjeve" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "Detajet e historikut të ngjarjeve" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" +"Çdo gjë që ke shkruar në këtë faqe, përfshi edhe <strong>emri yt</strong>, \n" +" do të <strong>tregohet publikisht</strong> në\n" +" këtë faqe përgjithmonë (<a href=\"%s\">pse?</a>)." + +#: locale/model_attributes.rb:60 +msgid "EximLogDone|Filename" +msgstr "EximLogDone|Filename" + +#: locale/model_attributes.rb:61 +msgid "EximLogDone|Last stat" +msgstr "EximLogDone|Statistika e fundit" + +#: locale/model_attributes.rb:19 +msgid "EximLog|Line" +msgstr "EximLog|Linja" + +#: locale/model_attributes.rb:18 +msgid "EximLog|Order" +msgstr "EximLog|Order" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "Kërkesat për Informata Zyrtare" + +#: app/models/track_thing.rb:193 app/models/track_thing.rb:194 +msgid "FOI requests by '{{user_name}}'" +msgstr "Kërkesa për informata zyrtare nga '{{user_name}}'" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "Konvertimi i imazhit në PNG dështoi" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need " +"%{width}x%{height}" +msgstr "Kyçu ose krijo llogari " + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "Së pari," + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Së pari, shkruani <strong>emrin e autoritetit publik </strong> <br> prej të " +"cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të " +"përgjigjen</strong> ( <a href=\"%s\">pse?</a> )." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "Kliko këtë vegzë për të parë kërkesën:" + +#: app/models/info_request_event.rb:335 +msgid "Follow up" +msgstr "" + +#: app/views/general/search.rhtml:159 +msgid "Follow up message sent by requester" +msgstr "" + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "Mesazhet vazhduese të kërkesës ekzistuese dërgohen te " + +#: app/views/request/_followup.rhtml:16 +msgid "" +"Follow ups and new responses to this request have been stopped to prevent " +"spam. Please <a href=\"{{url}}\">contact us</a> if you are {{user_link}} and" +" need to send a follow up." +msgstr "" + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" +"Për një arsye të panjohur, nuk është e mundur për të bërë një kërkesë tek ky" +" autoritet." + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin?" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot make\n" +" a request to it." +msgstr "" +"Ligji mbi lirinë e informacionit nuk ka të bëjë me këtë autoritet, kështu që" +" ju nuk mund të bëni kërkesa për informata zyrtare." + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "Ligji për qasje në dokumente publike nuk aplikohet më për" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" +"Ligjit mbi qasje në dokumente publike nuk aplikohet më për këtë autoritet. " +"Follow up mesazhet ndaj kërkesave ekzistuese dërgohen te " + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "Kërkesë për informatë zyrtare" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "Kërkesa për Informatë zyrtare është bërë" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "Kërkesat për Informata Zyrtare bërë nga" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" +"Nga faqja e kërkesës, provo të përgjigjesh në një mesazh të caktuar, më parë se të\n" +" shkruash një përgjigje të përgjithshme. Nëse të duhet të shkruash përgjigje të përgjithshme, dhe e di\n" +" emailin ku duhet ta drejtosh, atëherë të lutem <a href=\"%s\">dërgoje te ne</a>." + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "JEPI DETAJET PËR ANKESËN TËNDE KËTU" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "Shko te <a href=\"%s\">ballina</a> </li>" + +#: app/models/info_request_event.rb:297 +msgid "Handled by post" +msgstr "Do të trajtohet me postë" + +#: app/models/info_request.rb:801 +msgid "Handled by post." +msgstr "Do të trajtohet me postë." + +#: app/views/layouts/default.rhtml:102 +msgid "Hello!" +msgstr "Përshëndetje" + +#: app/views/layouts/default.rhtml:99 +msgid "Hello, {{username}}!" +msgstr "Përshëndetje, {{username}}!" + +#: app/views/layouts/default.rhtml:94 +msgid "Help" +msgstr "Ndihmë" + +#: app/views/request/details.rhtml:50 +msgid "" +"Here <strong>described</strong> means when a user selected a status for the request, and\n" +"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" +"{{site_name}} for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"{{search_path}}\">search tips</a> for description of the states." +msgstr "" +"Këtu <strong>përshkruar</strong> nënkupton kur një përdorues ka zgjedhë statusin e kërkesës, dhe\n" +"ngjarja e fundit ka azhuruar statusin me këtë vlerë. <strong>llogaritur</strong> në këtë rast është vënë nga\n" +"{{site_name}} për ngjarjet e ndërmjeme, të cilave nuk u është dhënë\n" +"përshkrim eksplicit nga përdoruesi. Shih <a href=\"{{search_path}}>këshillat e kërkimit</a> për përshkrimet e statuseve." + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" +"Tung! Ne kemi nevojë për ndihmën tënde. Personi që ka bërë kërkesën e mëposhtme\n" +" nuk na ka thënë se ishte apo nuk ishte e suksesshme. A mund ta marrësh një \n" +" moment për ta lexuar dhe klasifikuar atë që ta mbajme ueb faqen të rregullt dhe të organizuar?\n" +" Faleminderit." + +#: locale/model_attributes.rb:57 +msgid "Holiday|Day" +msgstr "Festa | Dita" + +#: locale/model_attributes.rb:58 +msgid "Holiday|Description" +msgstr "Festa | Përshkrimi" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "Ueb sajti i autoritetit" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "" + +#: app/views/request/_followup.rhtml:68 +msgid "I am asking for <strong>new information</strong>" +msgstr "Unë jam duke kërkuar <strong>informacion të ri</strong>" + +#: app/views/request/_followup.rhtml:73 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "Po kërkoj <strong>rishqyrtimin intern</strong>" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "Nuk më pëlqejnë këto kërkesa &mdash më jep disa të tjera!" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "Nuk dua të rregullojë e organizoj më tutje!" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "Do të doja të <strong>tërheqë këtë kërkesë</strong>" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" +"Akoma po e <strong>pres</strong> informatën time \n" +" <small>(ndoshta ke marrë konfirmim)</small>" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "Akoma po e <strong>pres</strong> rishqyrtimin intern" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "Po pres përgjigje nga <strong>rishqyrtimi intern</strong>" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "Kam marrë <strong>të gjitha informatat</strong>" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "Kam marrë <strong>disa prej informatave</strong>" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "Kam marrë një <strong>mesazh gabimi</strong>" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a " +"href=\"%s\">contact us</a>." +msgstr "" +"Nëse adresa është e gabuar, ose ti e din një adresë më të mirë, të lutem <a " +"href=\"%s\">na kontakto</a> ." + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" +"Nëse kjo është e pasakt, apo do t'i dërgosh përgjigje të vonuar në këtë kërkesë\n" +"apo një email me një temë tjetër te {{user}}, atëherë \n" +"dërgo email në {{contact_email}} për ndihmë." + +#: app/views/request/_followup.rhtml:20 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" +"Nëse je i pakënaqur me përgjigjen nga\n" +" institucioni publik, ke të drejtën të\n" +" ankohesh (<a href=\"%s\">detajet</a>)." + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "Nëse ende po ka probleme, të lutem <a href=\"%s\">na kontakto</a> ." + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" +"Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të " +"parë kërkesën." + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" +"Nëse je duke mendu me përdor pseudonim, të lutem <a href=\"%s\">lexo këtë së" +" pari</a> ." + +#: app/views/request/show.rhtml:105 +msgid "If you are {{user_link}}, please" +msgstr "Nëse ti je {{user_link}}, të lutem" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" +"Nëse ti nuk mund të klikosh mbi të në e-mail, duhet që ta <strong>përzgjedhësh dhe t'a kopjosh </strong>. Pastaj <strong>e bashkangjet (paste) \n" +"</strong>në fushën e adresës të shfletuesit tënd." + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" +"Nëse mund të skanoni ose fotografoni përgjigjen, dhe të <strong>na e dërgoni" +" që ne ta ngarkojme ate.</strong>" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" +"Nëse ti si zyrtarë per qasje në dokumente publike e gjenë këtë shërbim të " +"dobishëm, të lutem pyete webmaster-in tënd që vendosë vegzë (link) për në " +"ueb faqen tonë në faqen e juaj." + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" +"Nëse keni marrë këtë email <strong>më shumë se gjashtë muaj më " +"parë,</strong> atëherë kjo vegzë për kyçje nuk do të funksionojë më. Të " +"lutem provon duke bërë atë që keni vepruar nga fillimi." + +#: app/controllers/request_controller.rb:437 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know" +" it has been withdrawn." +msgstr "" +"Nëse nuk e ke bërë këtë deri tani, të lutem shkruaj një mesazh më poshtë për" +" ti treguar autoritetit që ti e ke tërheq kërkesën tënde. Përndryshe ata nuk" +" do të dinë se është e tërhequr kërkesa." + +#: app/views/user/signchangeemail_confirm.rhtml:11 +#: app/views/user/signchangepassword_confirm.rhtml:10 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" +"Nëse ti përdor \"web-based\" email klient (p.sh. hotmail.com) ose ke \"junk " +"mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, mesazhet tona " +"janë të shenjuara në këtë mënyrë." + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" +"Nëse do që ne ta heqim këtë leçitje, atëherë të lutem\n" +"<a href=\"/help/contact\">na kontakto</a> duke i dhënë arsyet.\n" + +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to {{site_name}}" +msgstr "Nëse je i ri në {{site_name}}" + +#: app/views/user/_signin.rhtml:7 +msgid "If you've used {{site_name}} before" +msgstr "Nëse e ke përdorë {{site_name}} më parë" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" +"Nëse shfletuesi yt është vendosur për të pranuar \"cookies\" dhe ju jeni " +"duke parë këtë mesazh, atëherë me sa duket ka gabim në serverin tonë." + +#: locale/model_attributes.rb:63 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "IncomingMessage|Cached attachment text clipped" + +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Cached main body text folded" +msgstr "IncomingMessage|Cached main body text folded" + +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "IncomingMessage|Cached main body text unfolded" + +#: locale/model_attributes.rb:44 +msgid "InfoRequestEvent|Calculated state" +msgstr "InfoRequestEvent|Calculated state" + +#: locale/model_attributes.rb:43 +msgid "InfoRequestEvent|Described state" +msgstr "InfoRequestEvent|Described state" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Event type" +msgstr "InfoRequestEvent|Event type" + +#: locale/model_attributes.rb:45 +msgid "InfoRequestEvent|Last described at" +msgstr "InfoRequestEvent|Last described at" + +#: locale/model_attributes.rb:42 +msgid "InfoRequestEvent|Params yaml" +msgstr "InfoRequestEvent|Params yaml" + +#: locale/model_attributes.rb:46 +msgid "InfoRequestEvent|Prominence" +msgstr "InfoRequestEvent|Prominence" + +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Allow new responses from" +msgstr "InfoRequest|Lejo përgjigje të reja prej" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Awaiting description" +msgstr "InfoRequest|Awaiting description" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Described state" +msgstr "InfoRequest|Described state" + +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Handle rejected responses" +msgstr "InfoRequest|Handle rejected responses" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Law used" +msgstr "Info të kërkesës | Ligji i përdorur" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Prominence" +msgstr "Info të kërkesës | Rëndësi" + +#: locale/model_attributes.rb:80 +msgid "InfoRequest|Title" +msgstr "Info të kërkesës | Titulli" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Url title" +msgstr "Info të kërkesës | Titulli Url" + +#: app/models/info_request_event.rb:303 +msgid "Information not held" +msgstr "Informata nuk mbahet këtu" + +#: app/models/info_request.rb:791 +msgid "Information not held." +msgstr "Informata nuk mbahet këtu." + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" + +#: app/models/info_request_event.rb:311 +msgid "Internal review acknowledgement" +msgstr "Pranimi i rishqyrtimit intern" + +#: app/models/info_request_event.rb:328 +msgid "Internal review request" +msgstr "Kërkesë për rishqyrtim intern" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests to " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" +"A ështe {{email_address}} adresë e gabuar e {{type_of_request}} kërkesave " +"për {{public_body_name}}? Nëse po, të luten na kontakto nëpermjet kësaj " +"forme:" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies\",\n" +"or cannot do so. If you can, please enable cookies, or try using a different\n" +"browser. Then press refresh to have another go." +msgstr "" +"Kjo mund të jetë sepse shfletuesi yt nuk është i vendosur të pranojë " +"\"cookies\", ose nuk mund ta bëjë këtë. Nëse ke mundësi, të lutem aktivizoni" +" \"cookies\", ose përdor një shfletues (browser) tjeter. Pastaj shtyp " +"\"refresh\" për të provuar edhe një herë." + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "Bashkangjitur më" + +#: app/views/user/show.rhtml:62 +msgid "Joined {{site_name}} in" +msgstr "Bashkangjitur {{site_name}} më" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Mbaje <strong>të fokusuar</strong>, gjasat janë më të mëdha që të marrësh " +"përgjigjen e dëshiruar (<a href=\"%s\">pse?</a>)." + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "Autoriteti i shikuar së fundi: " + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "Kërkesa e shikuar së fundi: " + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" +"Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe emrin e " +"shfletuesit (browser-it) dhe versionin e tij. Gjithashtu na trego për emrin " +"e sistemit operativ dhe versionin." + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "Vegza e kësaj kërkese" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "Listo të gjitha autoritetet (CSV)" + +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" +msgstr "Lokale dhe regjionale" + +#: app/models/info_request.rb:789 +msgid "Long overdue." +msgstr "Shumë e vonuar." + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "Bëj një kërkesë të re për informacione rreth Mjedisit" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "Bëjë një kërkesë {{law_used_short}} për '{{public_body_name}}'" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:67 +msgid "Make and explore Freedom of Information requests" +msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" + +#: app/views/layouts/default.rhtml:87 +msgid "Make request" +msgstr "Bëj kërkesë" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "Bëj kërkesën tënde" + +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using {{site_name}} contact form, " +msgstr "Mesazhi i dërguar duke përdorur kontakt formën e {{site_name}}, " + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "Mungojnë të dhënat për '" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "Më shumë për këtë autoritet" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Më shumë autoritete" + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Më shumë kërkesa te suksesshme" + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "Kërkesa ime është <strong>refuzuar</strong>" + +#: app/views/layouts/default.rhtml:91 +msgid "My requests" +msgstr "Kërkesat e mia" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "Emri nuk mund të jetë i zbrazët" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "Emri është i zënë" + +#: app/models/track_thing.rb:142 app/models/track_thing.rb:143 +msgid "New Freedom of Information requests" +msgstr "Kërkesat e reja për informata zyrtare " + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "Email i ri:" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "Email adresa e re nuk duket si një adresë e vlefshme" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "Fjalëkalim i ri:" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "Fjalëkalim i ri: (përsërite)" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "përgjigje e re për kërkesën tënde" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "përgjigje e re për {{law_used_short}} kërkesën" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "Rezultatet më të reja të parat" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "Pastaj, preje foton tënde >>" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" +"Tjetra, zgjidhni autoritin publik për të cilin dëshironi të bëni kërkesë" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "Nuk u gjet asnjë autoritet" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "Ende nuk ka kërkesa të këtij lloji." + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "Nuk gjetëm kërkesa të ngjashme." + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" +"Ende askush nuk ka bërë ndonjë kërkesë te {{public_body_name}} duke përdorur" +" këtë faqe." + +#: app/views/public_body/_body_listing.rhtml:2 +#: app/views/request/_request_listing.rhtml:2 +msgid "None found." +msgstr "Asnjë nuk u gjet." + +#: app/views/user/signchangeemail_confirm.rhtml:3 +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "Kontrollo emailin tënd!" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "Tani shiko shënimin tënd" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "Shiko vazhdimësinë e komunikimit" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "Shiko mesazhin tënd ku ke kërkuar rishqyrtim intern" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "Shiko kërkesën tënde" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "Ose hiqni fotografinë ekzistuese" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " +"përdorur {{site_name}}" + +#: app/controllers/request_controller.rb:414 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "Na vjen keq që kërkesa yte është refuzuar. Ja se çfarë të bëhet tani." + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "Emali i vjetër:" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" +"Adresa e emailit të vjetër nuk është e njëjtë me adresën e llogarisë me të " +"cilën jeni kyçur për momentin" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "Email adresa e vjetër nuk duket si një adresë e vlefshme" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "Në këtë faqe" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" +"Një autoritet publik përputhet me ‘{{user_search_query}}’" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." + +#: app/models/info_request.rb:405 +msgid "" +"Only the authority can reply to this request, and I don't recognise the " +"address this reply was sent from" +msgstr "" +"Vetëm autoriteti mund të përgjigjet në këtë kërkesë, dhe unë nuk e njoha " +"adresën prej nga kjo përgjegje u dërgua" + +#: app/models/info_request.rb:401 +msgid "" +"Only the authority can reply to this request, but there is no \"From\" " +"address to check against" +msgstr "" +"Vetëm autoriteti mund të përgjigjet në këtë kërkesë, por nuk kishte \"Prej: " +"(From:)\" adresë për ta verifikuar dërguesin" + +#: app/views/general/search.rhtml:158 +msgid "Original request sent" +msgstr "Kërkesa origjinale dërguar nga" + +#: locale/model_attributes.rb:26 +msgid "OutgoingMessage|Body" +msgstr "OutgoingMessage | Body" + +#: locale/model_attributes.rb:29 +msgid "OutgoingMessage|Last sent at" +msgstr "OutgoingMessage | Së fundi është dërguar në" + +#: locale/model_attributes.rb:28 +msgid "OutgoingMessage|Message type" +msgstr "OutgoingMessage|Message type" + +#: locale/model_attributes.rb:27 +msgid "OutgoingMessage|Status" +msgstr "OutgoingMessage|Status" + +#: locale/model_attributes.rb:30 +msgid "OutgoingMessage|What doing" +msgstr "OutgoingMessage|What doing" + +#: app/models/info_request.rb:795 +msgid "Partially successful." +msgstr "Pjesërisht e suksesshme." + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "Fjalëkalimi nuk është i saktë" + +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" +msgstr "Fjalëkalimi:" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "Fjalëkalimi: (përsërite)" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "Fotografia yte:" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "Planet dhe masat administrative që ndikojnë këto çështje" + +#: app/controllers/request_game_controller.rb:42 +msgid "Play the request categorisation game" +msgstr "Luaj në lojën e kategorizimit të kërkesave" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "Luaj lojën e kategorizimit të kërkesave!" + +#: app/views/request/show.rhtml:101 +msgid "Please" +msgstr "Të lutem" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "Të lutem <a href=\"%s\">na kontakto</a> që neve ta rregullojme ate." + +#: app/views/request/show.rhtml:52 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" +"Të lutem <strong> përgjegju pyetjes së mësipërme</strong> që ne të dimë nëse" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" +"Të lutem <strong>shko te kërkesa</strong>, dhe na e bëj\n" +" medije nëse ka pasë informatë në përgjigjen e fundit drejtuar atyre." + +#: app/views/request/_followup.rhtml:27 +msgid "" +"Please <strong>only</strong> write messages directly relating to your " +"request {{request_link}}. If you would like to ask for information that was " +"not in your original request, then <a href=\"{{new_request_link}}\">file a " +"new request</a>." +msgstr "" + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "Të lutem kërko vetëm për informacion në lidhje me mjedisin" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" +"Të lutem kontrollo që URL (dmth. kodin e gjatë me shkronja e numra) është " +"kopjuar në rregull nga emaili yt." + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "Të lutem zgjedh një fajll që përmban fotografinë tënde." + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "Të lutem zgjedh llojin e përgjigjes." + +#: app/controllers/request_controller.rb:346 +msgid "" +"Please choose whether or not you got some of the information that you " +"wanted." +msgstr "" +"Të lutem zgjidh nëse ke marrë ose jo disa nga informatat që i ke kërkuar." + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for {{site_name}}\n" +"from {{old_email}} to {{new_email}}" +msgstr "" +"Të lutem klikoni në vegzën e më poshtëme për të konfirmuar se dëshironi të\n" +"ndryshoni adresën e emailit që ju përdorni për {{site_name}}\n" +"prej {{old_email}} në {{new_email}}" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" +"Të lutem kliko në vegzën e mëposhëtme për të konfirmuar email adresën tënde." + +#: app/models/info_request.rb:126 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" +"Të lutem përshkruaj në lëndë më gjerësisht se për çfarë është kërkesa. Nuk " +"ka nevojë të shkruhet që bëhet fjalë për kërkesë për qasje në informata, ajo" +" shtohet automatikisht." + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" +"Të lutem mos ngarko fotografi ofenduese. Ne do t'i largojmë imazhet që ne i " +"konsiderojmë të papërshtatshme." + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "Të lutem aktivizo \"cookies\" në shfletues për të vazhduar" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "Të lutem shkruaj fjalëkalimin" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "Të lutem shkruaj lëndën" + +#: app/models/info_request.rb:34 +msgid "Please enter a summary of your request" +msgstr "Të lutem shkruaj një përmbledhje të kërkesës tënde" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "Të lutem shkruaj adresën korrekte të emailit" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "Të lutem shkruaj mesazhin që dëshiron do ta dërgosh" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "Të lutem shkruaj shënimin tënd" + +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" +msgstr "Të lutem shkruaj adresën e emailit tënd" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "Të lutem shto mesazhin për përcjellje" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "Të lutem shkruaj letrën e kërkesës për informatë " + +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" +msgstr "Të lutem shkruaj emrin tënd" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "Të lutem shkruaj adresën e re të emailit " + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "Të lutem shkruaj adresën e vjetër të emailit " + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "Të lutem shkruaj fjalëkalimin tënd" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" +"Të lutem shkruaj hollësi spjeguese se për çfarë arsye po kërkon rishqyrtim" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" + +#: app/models/info_request.rb:123 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" +"Të lutem bëje përmbledhjen sa më shkurt, sikurse në lëndën (subjektin) e " +"emailit. Mund të shkruash një togfjalësh në vend të një fjalie të plotë." + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, <strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting unrelated information." +msgstr "" +"Të lutem kërko vetëm informata që hyjnë në këto kategori, <strong>mos e humb\n" +" kohën tënde</strong> apo kohën e institucionit duke kërkuar informata që s'kanë të bëjnë me të." + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</strong>\n" +"if they are successful yet or not." +msgstr "" +"Të lutem selektoi të gjitha kërkesat një pas një, dhe <strong>bëje të njohur për të gjithë</strong>\n" +"nëse kanë qenë të suksesshme deri tash apo jo." + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" +"Te lutem nënshkruaj në fund me emrin tënd, ose ndrysho \"% {signoff}\" " +"nënshkrimin" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "Të lutem kyçu si " + +#: app/controllers/request_controller.rb:730 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" +"Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjigjen " +"tënde." + +#: app/controllers/request_controller.rb:434 +msgid "Please use the form below to tell us more." +msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" +"Të lutem përdor këtë adresë të emailit për të gjitha përgjigjet në këtë " +"kërkesë:" + +#: app/models/info_request.rb:35 +msgid "Please write a summary with some text in it" +msgstr "Të lutem shkruaj përmbledhjen" + +#: app/models/info_request.rb:120 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj përmbledhjen duke përdorur kombinim të germave të mëdha dhe" +" të vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/controllers/request_controller.rb:423 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters." +" This makes it easier for others to read." +msgstr "" +"Të lutem shkruaj mesazhin duke përdorur kombinim të germave të mëdha dhe të " +"vogla. Kjo e bën leximin për të tjerët më të lehtë." + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may" +" be useful." +msgstr "" +"Udhëzo te <strong>informatat që nderlidhen me këtë,</strong> fushata ose " +"forume të cilat mund të jenë të dobishme." + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "Posto shënimin" + +#: locale/model_attributes.rb:55 +msgid "PostRedirect|Circumstance" +msgstr "PostRedirect|Circumstance" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Email token" +msgstr "PostRedirect|Email token" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Post params yaml" +msgstr "PostRedirect|Post params yaml" + +#: locale/model_attributes.rb:54 +msgid "PostRedirect|Reason params yaml" +msgstr "PostRedirect|Reason params yaml" + +#: locale/model_attributes.rb:50 +msgid "PostRedirect|Token" +msgstr "PostRedirect|Token" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Uri" +msgstr "PostRedirect|Uri" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "Shiko shënimin e ri në '{{info_request_title}}'" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "Shiko shënimin tënd" + +#: app/views/request/_followup.rhtml:96 +msgid "Preview your message" +msgstr "Shiko mesazhin tënd" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "Shiko kërkesën tënde publike" + +#: locale/model_attributes.rb:15 +msgid "ProfilePhoto|Data" +msgstr "ProfilePhoto|Data" + +#: locale/model_attributes.rb:16 +msgid "ProfilePhoto|Draft" +msgstr "ProfilePhoto|Draft" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "Autoritetet publike - {{description}}" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" +"Autoritetet publike prej {{start_count}} tek {{end_count}} prej " +"{{total_count}} për {{user_search_query}}" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "PublicBody |Germa e parë" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "PublicBody |Ballina" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "PublicBody | Editimi i fundit i komentit" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "PublicBody | Editimi i fundit editor" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "PublicBody |Emri" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "PublicBody |Shënime" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "PublicBody | Skema e publikimit" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "PublicBody |Emaili me kërkesë" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "PublicBody |Emri i shkurtë" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "PublicBody |URL emri" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "PublicBody |Versioni" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "Skema e publikimit" + +#: locale/model_attributes.rb:48 +msgid "RawEmail|Data binary" +msgstr "RawEmail |Të dhënat binare" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "Re-edito këtë shënim" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "Re-edito këtë mesazh" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "Re-edito këtë kërkesë" + +#: app/views/general/search.rhtml:137 +msgid "" +"Read about <a href=\"{{advanced_search_url}}\">advanced search " +"operators</a>, such as proximity and wildcards." +msgstr "" +"Lexo rreth <a href=\"{{advanced_search_url}}\">kërkimit të avansuar të " +"operatorëve</a> , të tilla si afërsia dhe gjithëpërfshirëse." + +#: app/views/layouts/default.rhtml:93 +msgid "Read blog" +msgstr "Lexo blog-un" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" +"Lexoni këtë para se të shkruani {{info_request_law_used_full}} kërkesën" + +#: app/views/general/search.rhtml:150 +msgid "Received an error message, such as delivery failure." +msgstr "" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "Rezultatet e përshkruara së fundi radhiti të parat" + +#: app/controllers/request_controller.rb:139 +msgid "Recently sent Freedom of Information requests" +msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "Kërkesat e dërguara së fundi" + +#: app/controllers/request_controller.rb:144 +msgid "Recently successful responses" +msgstr "përgjigjet e marra së fundi" + +#: app/models/info_request_event.rb:305 +msgid "Refused" +msgstr "Refuzuar" + +#: app/models/info_request.rb:793 +msgid "Refused." +msgstr "Refuzuar." + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" +"Me mbaj mend </label> (të mban të kyçur më gjatë\n" +" mos e përdor në kompjuter publik) " + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "Pergjegju këtij mesazhi" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "Raporto abuzim" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "Kërko një rishqyrtim intern" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "Kërko një rishqyrtim intern prej" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "Kërkesa është larguar (fshirë)" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" +"Kërkesë dërguar te {{public_body_name}} nga {{info_request_user}} me " +"{{date}}." + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" +"Kërkesë për {{public_body_name}} nga {{info_request_user}}. Shënuar nga " +"{{event_comment_user}} me {{date}}." + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "" +"Kërkuar nga {{public_body_name}} nga {{info_request_user}} me {{date}}" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "Kërkuar me {{date}}" + +#: app/models/track_thing.rb:209 app/models/track_thing.rb:210 +msgid "Requests or responses matching '{{query}}'" +msgstr "Kërkesat apo përgjigjet që përputhen me '{{query}}'" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "Përgjegju me email" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "Përgjegju kërkesës" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "Përgjegju kërkesës për Informata Zyrtare" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "Përgjegju duke përdorur uebin" + +#: app/views/general/search.rhtml:160 +msgid "Response from a public authority" +msgstr "Përgjigje nga një autoritet publik" + +#: app/views/request/show.rhtml:77 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show.rhtml:85 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "Përgjegja e kësaj kërkese është <strong>vonuar.</strong>" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "përgjigje për kërkesën tënde" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "Përgjigja:" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "Faqja e rezultateve {{page_number}}" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "Ruaj" + +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +#: app/views/layouts/default.rhtml:80 app/views/request/new.rhtml:31 +msgid "Search" +msgstr "Kërko" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdoruesit" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." + +#: app/controllers/user_controller.rb:331 +msgid "Send a message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "Dërgo përgjigje publike te" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "Dërgo mesazh" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "Dërgo mesazh te " + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "Dërgo" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "Vendos fotografinë e profilit tënd" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "Emri i shkurtë është i zënë" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "Shfaqi rezultatet më relevante" + +#: app/views/public_body/list.rhtml:3 app/views/request/list.rhtml:2 +msgid "Show only..." +msgstr "Shfaq vetëm..." + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "Kyçu" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "Kyçu ose krijo një llogari të re" + +#: app/views/layouts/default.rhtml:103 +msgid "Sign in or sign up" +msgstr "Kyçu ose Ç'kyçu" + +#: app/views/layouts/default.rhtml:100 +msgid "Sign out" +msgstr "Ç'kyçu" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "Regjistrohu" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "Kërkesa të ngjashme" + +#: app/models/info_request_event.rb:307 +msgid "Some information sent" +msgstr "Disa informata janë dërguar" + +#: app/views/general/search.rhtml:145 +msgid "Some of the information requested has been received" +msgstr "Disa nga informatat e kërkuara janë marrë" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" +"Disa individë që kanë bërë kërkesa nuk kanë treguar se a ishin ato të " +"sukseshme apo jo. Kemi nevojë për ndihmën <strong>tënde</strong> - përzgjedh" +" një nga këto kërkesa, lexo atë, dhe njofto të tjerët se a u ofruan " +"informatat e kërkuara. Të gjithë do të jenë shumë mirënjohës për këtë." + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"{{site_name}} from {{old_email}} to {{new_email}}." +msgstr "" +"Dikush, ndoshta ti, u përpoq të ndryshojë adresën e emailit në\n" +"{{site_name}} prej {{old_email}} në {{new_email}}." + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "Shënim të veçantë për këtë autoritet!" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "Ende në pritje të <strong>rishqyrtimit intern</strong>" + +#: app/views/request/followup_preview.rhtml:23 +#: app/views/request/preview.rhtml:18 +msgid "Subject:" +msgstr "Lënda:" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "Dërgo" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "Dërgo statusin" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "Kërkesat e suksesshme për Informata Zyrtare" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "përgjigjet e suksesshme" + +#: app/models/info_request.rb:797 +msgid "Successful." +msgstr "Suksesshme." + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the " +"information</strong>." +msgstr "" +"Sugjero si kërkuesi mund të gjen pjesën <strong>tjetër të " +"informacionit.</strong>" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "Përmbledhje:" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "Tabela e statuseve" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "Etiketat:" + +#: app/controllers/request_game_controller.rb:52 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" +"Faleminderit për ndihmën tënde për mbajtjen e rregullt dhe të organizuar të " +"ueb faqes!" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "Faleminderit që keni bërë një shënim!" + +#: app/controllers/request_controller.rb:736 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" +"Faleminderit që i jeni përgjegjur kësaj kërkese për informata zyrtare. " +"Përgjegja yte është publikuar më poshtë, si dhe vegza për përgjigjen tënde i" +" është derguar me email " + +#: app/controllers/request_controller.rb:378 +msgid "" +"Thank you for updating the status of the request '<a " +"href=\"{{url}}\">{{info_request_title}}</a>'. There are some more requests " +"below for you to classify." +msgstr "" +"Faleminderit për aktualizimin e statusit të kërkesës ' <a " +"href=\"{{url}}\">{{info_request_title}}</a> '. Ka disa kërkesa të tjera për " +"ty për ti klasifikuar." + +#: app/controllers/request_controller.rb:381 +msgid "Thank you for updating this request!" +msgstr "Faleminderit për aktualizimin e kësaj kërkese!" + +#: app/controllers/user_controller.rb:398 +#: app/controllers/user_controller.rb:414 +msgid "Thank you for updating your profile photo" +msgstr "Faleminderit për aktualizimin e fotografisë e profilit tënd" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" +"Faleminderit për ndihmë - ndihma yte do ta bëjë më të lehtë që të tjerët të gjejnë kërkesat e suksesshme, \n" +"e ndoshta edhe të na mundesojë krijim e ranglistave..." + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" +"Shumë faleminderit - kjo do të ndihmojë të tjerët të gjejnë gjëra të dobishme. \n" +"Ne gjithashtu mund të ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat tuaja." + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" +" We'll also, if you need it, give you advice on what to do next about each of your\n" +" requests." +msgstr "" +"Shumë faleminderit për ndihmën për të mbajtur të tërat të " +"<strong>organizuara dhe në rregull</strong>. Ne gjithashtu mund të " +"ndihmojmë, nëse ke nevojë, me këshilla si të veproni në vijim me kërkesat " +"tuaja." + +#: app/controllers/user_controller.rb:189 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it" +" correctly." +msgstr "" +"Kjo nuk duket si një email adresë e vlefshme. Të lutem kontrollo që e ke " +"shtypur të saktë." + +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "<strong>Rishqyrtimi ka përfunduar</strong> dhe përfundimi është:" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" + +#: app/views/user_mailer/changeemail_already_used.rhtml:8 +msgid "The accounts have been left as they previously were." +msgstr "Llogaritë janë lënë siq kanë qenë më përpara." + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" +"Autoriteti <strong>nuk e ka</strong> informatën <small>(ndoshta ata e dine " +"kush e ka)</small>" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI request" +msgstr "" +"Autoriteti thotë se ata kanë <strong>nevojë për një adresë postare,</strong>" +" jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " +"informatë zyrtare" + +#: app/views/request/show.rhtml:109 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this" +" request." +msgstr "" +"Autoriteti do të / është <strong>përgjegjur me postë</strong> në këtë " +"kërkesë." + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" +"Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu " +"përgjegjur një kërkese {{law_used_short}} nuk është dorëzuar." + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" +" At the bottom of this page, write a reply to the authority explaining this to them." +msgstr "" + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" +"Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " +"tani:" + +#: app/views/general/search.rhtml:143 +msgid "The public authority does not have the information requested" +msgstr "Autoriteti publik nuk i ka informatat e kërkuara" + +#: app/views/general/search.rhtml:147 +msgid "The public authority would like part of the request explained" +msgstr "Autoriteti publik do të donte që një pjesë e kërkesës të shpjegohet" + +#: app/views/general/search.rhtml:148 +msgid "The public authority would like to / has responded by post" +msgstr "" +"Autoriteti publik do të përgjigjet ose tashmë është përgjegjur me postë" + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "Kërkesa është <strong>refuzuar</strong>" + +#: app/controllers/request_controller.rb:352 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" +"Kërkesa është aktualizuar prejse ti fillimisht ke ngarkuar (lexuar) këtë " +"faqe. Të lutem kontrollo për ndonjë mesazh të ri më poshtë, dhe provo " +"përsëri." + +#: app/views/request/show.rhtml:104 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "Kërkesa është në <strong>pritje për sqarim</strong>." + +#: app/views/request/show.rhtml:97 +msgid "The request was <strong>partially successful</strong>." +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme</strong>." + +#: app/views/request/show.rhtml:93 +msgid "The request was <strong>refused</strong> by" +msgstr "Kërkesa u <strong>refuzua</strong> nga" + +#: app/views/request/show.rhtml:95 +msgid "The request was <strong>successful</strong>." +msgstr "Kërkesa ishte e <strong>suksesshme</strong>." + +#: app/views/general/search.rhtml:144 +msgid "The request was refused by the public authority" +msgstr "Kërkesa u refuzua nga autoriteti publik" + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" +"Kërkesa që ti je përpjek për të parë është hequr (larguar). Ka arsye të " +"ndryshme pse ne kemi mund për të bërë këtë, na vie keq që nuk mund të jemi " +"më specifik. Të lutem të <a href=\"%s\">na kontakton</a> nëse ke ndonjë " +"pyetje." + +#: app/views/general/search.rhtml:152 +msgid "The requester has abandoned this request for some reason" +msgstr "" + +#: app/views/request/_followup.rhtml:32 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" +"Përgjegja në kërkesën tënde është e <strong>vonuar</strong>. Mund të thuhet që,\n" +"sipas ligjit, autoriteti ishte dashtë të përgjigjet në \n" +"<strong>afat</strong> të paraparë dhe " + +#: app/views/request/_followup.rhtml:44 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say that, by \n" +" law, under all circumstances, the authority should have responded\n" +" by now" +msgstr "" +"Përgjigja në kërkesën tënde është <strong>vonuar për së tepërmi</strong>. Mund të thuhet që,\n" +"sipas ligjit, duke i patur parasyesh të gjitha rrethanat, autoriteti ishte dashtë të përgjigjet \n" +"deri më tani" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" +"Indeksi i kërkimit aktualisht është i shkëputur, kështu që nuk mund të shfaq" +" kërkesat e Informata zyrtare që kan të bëjnë me këtë autoritet" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" +"Indeksi i kërkimit është jashtë funksioni, kështu që ne nuk mund t'i " +"tregojmë kërkesat për informata zyrtare që ky person ka bërë." + +#: app/controllers/track_controller.rb:144 +msgid "Then you can cancel the alert." +msgstr "Pastaj ti mund të anulon njoftimin." + +#: app/controllers/track_controller.rb:174 +msgid "Then you can cancel the alerts." +msgstr "Pastaj ti mund të anulon njoftimet." + +#: app/controllers/user_controller.rb:249 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh adresën tënde të emailit që përdoret në " +"{{site_name}}" + +#: app/controllers/user_controller.rb:203 +msgid "Then you can change your password on {{site_name}}" +msgstr "" +"Pastaj ti mund të ndryshosh fjalëkalimin tënd që përdoret në {{site_name}}" + +#: app/controllers/request_controller.rb:338 +msgid "Then you can classify the FOI response you have got from " +msgstr "Pastaj ti mund të klasifikon përgjigjet e marra nga " + +#: app/controllers/request_game_controller.rb:41 +msgid "Then you can play the request categorisation game." +msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." + +#: app/controllers/user_controller.rb:330 +msgid "Then you can send a message to " +msgstr "Pastaj ti mund të dërgon mesazh te " + +#: app/controllers/user_controller.rb:514 +msgid "Then you can sign in to {{site_name}}" +msgstr "Pastaj ti mund të kyçesh në {{site_name}}" + +#: app/controllers/request_controller.rb:61 +msgid "Then you can update the status of your request to " +msgstr "Pastaj ti mund të aktualizosh statusin e kërkesës tënde për " + +#: app/controllers/request_controller.rb:702 +msgid "Then you can upload an FOI response. " +msgstr "" +"Pastaj ti mund të ngarkon një përgjigje ndaj kërkesës për informata zyrtare." +" " + +#: app/controllers/request_controller.rb:545 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:546 +msgid "Then you can write your reply to " +msgstr "Pastaj ti mund të shkruash përgjigjen tënde për " + +#: app/models/track_thing.rb:197 +msgid "" +"Then you will be emailed whenever '{{user_name}}' requests something or gets" +" a response." +msgstr "" +"Atëher ti do njoftohesh me email sa herë që '{{user_name}}' bën ndonjë " +"kërkesë apo merr përgjigje." + +#: app/models/track_thing.rb:213 +msgid "" +"Then you will be emailed whenever a new request or response matches " +"'{{query}}'." +msgstr "" +"Atëher ti do njoftohesh me email sa herë që një kërkese e re apo një " +"pergjigje përputhet me '{{query}}'." + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" +"Atëher ti do njoftohesh me email sa herë që një kërkesë për informata " +"zyrtare është e suksesshme." + +#: app/models/track_thing.rb:146 +msgid "Then you will be emailed whenever anyone makes a new FOI request." +msgstr "" +"Atëher ti do njoftohesh me email sa herë që dikush bën ndonjë kërkesë për " +"informata zyrtare." + +#: app/models/track_thing.rb:181 +msgid "" +"Then you will be emailed whenever someone requests something or gets a " +"response from '{{public_body_name}}'." +msgstr "" +"Atëher ti do njoftohesh me email sa herë që dikush bën ndonjë kërkesë apo " +"merr përgjigje nga '{{public_body_name}}'." + +#: app/controllers/request_controller.rb:299 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "Pastaj kërkesa yte për " + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "Pastaj shënimi yt për {{info_request_title}} do të postohet." + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow" +" this link to see what they wrote." +msgstr "" +"Ka {{count}} shënime të reja në kërkesën tënde {{info_request}}. Ndiqni " +"këtë vegzë për t'i parë ato." + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" +"Ekziston <strong>më shumë se një individ</strong> i cili e përdor këtë ueb sajt dhe ka të njejtin emërtim.\n" +"Njëri prej tyre është listuar më poshtë, ti mund të kesh menduar për tjetër kend:" + +#: app/views/request/show.rhtml:113 +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the {{site_name}} team." +msgstr "" + +#: app/controllers/public_body_controller.rb:77 +msgid "There was an error with the words you entered, please try again." +msgstr "Kishte një gabim me fjalët që keni shtypur, të lutem provo përsëri." + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "Ata do të përgjigjen <strong>me postë</strong>" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who" +" does)</small>" +msgstr "" +"Ata <strong>nuk e kanë</strong> informatën <small>(ndoshta ata tregojnë kush" +" e ka)</small>" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "Atyre u është dhënë shpjegimi vijues:" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly," +" as normally required by law" +msgstr "" +"Ata nuk janë përgjegj ndaj kërkesës {{law_used_short}} tënde {{title}} " +"menjëherë, siç kërkohet normalisht nga ligji" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" +"Ata nuk janë përgjegjur {{law_used_short}} ndaj kërkesës teënde {{title}}, " +"siç kërkohet me ligj" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "Gjëra për të bërë me këtë kërkesë" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" +"Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëni një kërkesë për " +"të." + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Ky koment është fshehur. Shih shënimet për të gjetur pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh </a> për të parë " +"përgjigjen." + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" +"Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " +"zyrtare" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" +"Kjo është për shkak se {{title}} është një kërkesë e vjetër që ka qenë e " +"shenjuar të mos marrë më përgjigje." + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" +"Kjo është kërkesa yte, kështu që ti do të merr email automatikisht kur " +"përgjigjet e reja arrijnë." + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Mesazhi në largim është fshehur. Shih shënimet në \n" +" »» »» »» për të kuptuar arsyen. Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë përgjigjen." + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "Ky person ka" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "e këtij personi" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" + +#: app/views/request/show.rhtml:55 +msgid "This request has an <strong>unknown status</strong>." +msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." + +#: app/views/request/show.rhtml:117 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" +"Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " +"Mund të ketë një shpjegim në korrespondencën më poshtë." + +#: app/models/info_request.rb:395 +msgid "" +"This request has been set by an administrator to \"allow new responses from " +"nobody\"" +msgstr "" + +#: app/views/request/show.rhtml:115 +msgid "" +"This request has had an unusual response, and <strong>requires " +"attention</strong> from the {{site_name}} team." +msgstr "" +"Kjo kërkesë ka pasë një përgjigje të pazakontë dhe <strong>kërkon \"\n" +"\"vëmendje</strong> nga ekipi i {{site_name}}." + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are logged\n" +" in as a super user." +msgstr "" +"Kjo kërkesë ka klasifikim 'fshehur'. Ti mund të shohësh atë, vetëm sepse je " +"kyçur 'super user'." + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" +"Kjo kërkesë është e fshehur, kështu që vetëm ti - kërkuesi mund ta shoh " +"ate. Të lutem <a href=\"%s\">na kontakto</a> nëse nuk je i sigurt pse kjo po" +" ndodhë." + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" +"Kjo përgjigje është fshehur. Shih shënimet për të kuptuar pse. Nëse ti je " +"kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të parë " +"përgjigjen." + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" +"Ky ueb sajt është <strong>publik.</strong>Kërkesat dhe pergjegjet do të jenë" +" publike." + +#: app/views/request/details.rhtml:6 +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on {{site_name}}. This could be used to generate information about\n" +"the speed with which authorities respond to requests, the number of requests\n" +"which require a postal response and much more." +msgstr "" + +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from {{site_name}} " +msgstr "Ky përdorues është ndaluar (përjashtuar) nga {site_name}} " + +#: app/views/user_mailer/changeemail_already_used.rhtml:5 +msgid "" +"This was not possible because there is already an account using \n" +"the email address {{email}}." +msgstr "" +"Kjo nuk ishte e mundur sepse egziston një llogari duke\n" +"përdorur këtë adresë të emailit {{email}}." + +#: app/models/track_thing.rb:145 +msgid "To be emailed about any new requests" +msgstr "Të marrësh email për cdo kërkesë të re" + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "Të marrësh email për cdo kërkesë të suksesshme" + +#: app/models/track_thing.rb:196 +msgid "To be emailed about requests by '{{user_name}}'" +msgstr "Të marrësh email për kërkesat e bëra nga '{{user_name}}'" + +#: app/models/track_thing.rb:180 +msgid "" +"To be emailed about requests made using {{site_name}} to the public " +"authority '{{public_body_name}}'" +msgstr "" +"Të marrësh email për kërkesat e bëra duke përdorur '{{site_name}}' për " +"autoritetin publik të quajur '{{public_body_name}}'" + +#: app/controllers/track_controller.rb:173 +msgid "To cancel these alerts" +msgstr "Për të anuluar njoftimet" + +#: app/controllers/track_controller.rb:143 +msgid "To cancel this alert" +msgstr "Për të anuluar këtë njoftim" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" +"Për të vazhduar, ti duhet të kyçesh ose të hapë një llogari. Për fat të keq," +" ka pasur një problem teknik duke u përpjekur për të bërë këtë." + +#: app/controllers/user_controller.rb:248 +msgid "To change your email address used on {{site_name}}" +msgstr "Për të ndryshuar email adresën tënde të përdorur në {{site_name}}" + +#: app/controllers/request_controller.rb:337 +msgid "To classify the response to this FOI request" +msgstr "Për të klasifikuar përgjigjen e kësaj kërkese për informata zyrtare" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "Për të bërë këtë të lutem dërgoni një email privat te" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "Për ta bërë këtë, së pari kliko në vegzën më poshtë." + +#: app/models/track_thing.rb:212 +msgid "To follow requests and responses matching '{{query}}'" +msgstr "" + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" +"Për të na ndihmuar mbajtjen e rregullt dhe të organizuar te ueb faqes, dikush tjetër e ka aktualizuar statusin e \n" +"{{law_used_full}} kërkesës {{title}} që keni bërë për të {{public_body}}, të \"{{display_status}}\" Nëse ti nuk pajtohesh me kategorizim e tyre, të lutem aktualizo statusin e kërkesës përsëri në atë që ti beson të jetë më e saktë." + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" +"Që të na njoftoni, ndiqni këtë vegzë dhe pastaj zgjedhni kutinë e duhur." + +#: app/controllers/request_game_controller.rb:40 +msgid "To play the request categorisation game" +msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "Për të postuar shënimin tënd" + +#: app/controllers/request_controller.rb:543 +msgid "To reply to " +msgstr "Për t'iu përgjegjur " + +#: app/controllers/request_controller.rb:542 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:329 +msgid "To send a message to " +msgstr "Për të dërguar mesazh te " + +#: app/controllers/request_controller.rb:298 +msgid "To send your FOI request" +msgstr "Për të dërguar kërkesën tënde për informata zyrtare" + +#: app/controllers/request_controller.rb:60 +msgid "To update the status of this FOI request" +msgstr "Për të aktualizuar statusin e kësaj kërkese për informata zyrtare" + +#: app/controllers/request_controller.rb:701 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" +"Të ngarkoni një përgjigje, ti duhet të kyçesh duke përdorur një email adresë" +" nga " + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" +"Për të parë adresën e emailit që ne përdorim për të dërguar kërkesa për " +"informata zyrtare te {{public_body_name}}, të lutem shkruaj këto fjalë." + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "Për të parë përgjigjen, kliko në vegzën më poshtë." + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "Për {{public_body_link_absolute}}" + +#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 +#: app/views/request/preview.rhtml:17 +msgid "To:" +msgstr "Për:" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "Përcjell kërkesat e bëra për {{public_body_name}} me email" + +#: app/models/track_thing.rb:206 +msgid "Track things matching '{{query}}' by email" +msgstr "Përcjell gjërat që përputhen me këtë '{{query}}' me email" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "Përcjell këtë autoritet" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "Përcjell aktivitetin e këtij personi" + +#: app/models/track_thing.rb:190 +msgid "Track this person by email" +msgstr "Përcjell aktivitetin e këtij personi me email" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "Përcjell këtë kërkesë" + +#: app/models/track_thing.rb:123 +msgid "Track this request by email" +msgstr "Përcjell këtë kërkesë me email" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "TrackThing |Track medium" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "TrackThing|Track query" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "TrackThing |Track type" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" +"Tipi<code><strong>01/01/2008..14/01/2008</strong></code>është për të treguar" +" vetëm gjëra që kanë ndodhur në dy javët e para të janarit." + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "URL emri nuk mund të jetë i zbrazët" + +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on {{site_name}}" +msgstr "E pamundur për të ndryshuar email adresën në {{site_name}}" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "Nuk munda të dërgoj përgjigje te {{username}}" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "Lloji i papritur i rezultatit të kërkuar" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "Lloji i papritur i rezultatit të kërkuar " + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" +"Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë " +"autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a " +"href=\"%s\">na kontakton</a> për ta rregulluar atë." + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" +"Për fat të keq, ne nuk kemi një adresë funksionale " +"{{info_request_law_used_full}} për" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "I/e panjohur" + +#: app/models/info_request_event.rb:317 +msgid "Unusual response" +msgstr "përgjigje e pazakonshme" + +#: app/models/info_request.rb:807 +msgid "Unusual response." +msgstr "përgjigje e pazakonshme." + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "Aktualizo statusin e kësaj kërkese" + +#: app/controllers/request_controller.rb:62 +msgid "Update the status of your request to " +msgstr "Aktualizo statusin e kërkesës tënde për " + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" +"Përdor OSE (me shkronja të mëdha), ku ju nuk jeni në dijeni për cilat fjalë " +"bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të " +"mdhaja</strong></code>" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. " +"<strong><code>\"Liverpool City Council\"</code></strong>" +msgstr "" +"Përdor thonjëzat (\" \") kur ti dëshiron të gjeshë një fjalë ekzakte, " +"p.sh.<code><strong>\"Ministria e Arsimit\"</strong></code>" + +#: locale/model_attributes.rb:67 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "UserInfoRequestSentAlert|Alert type" + +#: locale/model_attributes.rb:78 +msgid "User|About me" +msgstr "Përdoruesi |Rreth meje" + +#: locale/model_attributes.rb:76 +msgid "User|Admin level" +msgstr "Përdoruesi | Niveli i Administrimit" + +#: locale/model_attributes.rb:77 +msgid "User|Ban text" +msgstr "Përdoruesi |Tekst i ndaluar" + +#: locale/model_attributes.rb:69 +msgid "User|Email" +msgstr "Përdoruesi |Email" + +#: locale/model_attributes.rb:73 +msgid "User|Email confirmed" +msgstr "Përdoruesi|Emaili u konfirmua" + +#: locale/model_attributes.rb:71 +msgid "User|Hashed password" +msgstr "User|Hashed password" + +#: locale/model_attributes.rb:75 +msgid "User|Last daily track email" +msgstr "User|Last daily track email" + +#: locale/model_attributes.rb:70 +msgid "User|Name" +msgstr "Përdoruesi|Emri" + +#: locale/model_attributes.rb:72 +msgid "User|Salt" +msgstr "User|Salt" + +#: locale/model_attributes.rb:74 +msgid "User|Url name" +msgstr "Përdoruesi | Emri Url" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "Shiko adresën e emailit për Informatë Zyrtare" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" +"Shiko adresën e emailit për Informata Zyrtare të '{{public_body_name}}'" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" + +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by {{user_name}}:" +msgstr "Shiko kërkesat për informata zyrtare të bëra nga {{user_name}}: " + +#: app/views/layouts/default.rhtml:89 +msgid "View authorities" +msgstr "Shiko autoritetet" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "Shiko adresën e emailit" + +#: app/views/layouts/default.rhtml:88 +msgid "View requests" +msgstr "Shiko kërkesat" + +#: app/models/info_request.rb:799 +msgid "Waiting clarification." +msgstr "Duke pritur sqarim." + +#: app/views/request/show.rhtml:111 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" +"Duke pritur për <strong>rishqyrtim intern</strong> nga {{public_body_link}} " +"për trajtimin e kësaj kërkese." + +#: app/views/general/search.rhtml:149 +msgid "" +"Waiting for the public authority to complete an internal review of their " +"handling of the request" +msgstr "" + +#: app/views/general/search.rhtml:142 +msgid "Waiting for the public authority to reply" +msgstr "" + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" +"Për fat të keq, ne nuk kemi një email adresë funksionale për këtë autoritet" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "Ne nuk kemi {{law_used_full}} adresë për {public_body_name}}." + +#: app/views/request/_describe_state.rhtml:107 +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know." +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/user_mailer/changeemail_confirm.rhtml:10 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" +"Ne nuk do ta zbulojmë adresën e emailit tënd askujt, përveç nëse ju e lejoni" +" këtë." + +#: app/views/request/show.rhtml:61 +msgid "We're waiting for" +msgstr "Po presim për" + +#: app/views/request/show.rhtml:57 +msgid "We're waiting for someone to read" +msgstr "Jemi në pritje që dikush ta lexoj" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link in\n" +"it before your email address will be changed." +msgstr "" +"Ne të kemi dërguar një email të ri në adresën e emailit tënd. Ti duhet të " +"klikosh në vegzën në te para se adresa e emailit tënd do të ndryshohet." + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you can\n" +"continue." +msgstr "" +"Ne të kemi dërguar një email, ti duhet të klikosh në vegzën në te para se të" +" mund të vazhdosh." + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" +"Ne të kemi dërguar një email, kliko në vegzën në te që të mund të ndryshon " +"fjalëkalimin tënd." + +#: app/views/request/_followup.rhtml:58 +msgid "What are you doing?" +msgstr "Çfarë je duke bërë?" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "Çfarë përshkruan më së miri statusin e kësaj kërkese tani?" + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" +"Kur të gjendesh atje, të lutem aktualizo statusin e kërkesës që të tregosh nëse pergjegja ka \n" +"informata të dobishme." + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" +"Kur të marrësh përgjigjen në letër, të lutem i ndihmoni të tjerët të gjejnë " +"se çfarë thotë në te:" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" +"Kur të kesh mbaruar, <strong>kthehu këtu,</strong> <a href=\"%s\">rifresko " +"këtë faqe</a> dhe bëj kërkesën tënde të re." + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "Cila nga këto po ndodh?" + +#: app/models/info_request_event.rb:313 +msgid "Withdrawn by requester" +msgstr "E tërhequr nga kërkuesi" + +#: app/models/info_request.rb:809 +msgid "Withdrawn by the requester." +msgstr "E tërhequr nga kërkuesi." + +#: app/controllers/request_controller.rb:549 +msgid "Write a reply to " +msgstr "Shkruaj një përgjigje për " + +#: app/controllers/request_controller.rb:548 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "" +"Shkruaje kërkesën tënde me <strong>gjuhë të thjeshtë, dhe të saktë</strong>." + +#: app/models/info_request_event.rb:301 +msgid "Wrong Response" +msgstr "përgjigje e gabuar." + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "Ti" + +#: app/controllers/track_controller.rb:98 +msgid "You are already being emailed updates about " +msgstr "Ti tashmë je duke i pranuar me email aktualizimet në lidhje me " + +#: app/models/track_thing.rb:175 +msgid "You are already tracking requests to {{public_body_name}} by email" +msgstr "" +"Ti tashmë je duke i përcjell kërkesat për {{public_body_name}} me email" + +#: app/models/track_thing.rb:207 +msgid "You are already tracking things matching '{{query}}' by email" +msgstr "" +"Ti tashmë je duke i përcjell gjërat që përputhen me këtë '{{query}}' me " +"email" + +#: app/models/track_thing.rb:191 +msgid "You are already tracking this person by email" +msgstr "Ti tashmë je duke e përcjell këtë individ me email" + +#: app/models/track_thing.rb:124 +msgid "You are already tracking this request by email" +msgstr "Ti tashmë je duke e përcjell këtë kërkesë me email" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "Ti je duke pranuar me email çdo përgjigje të re të suksesshme" + +#: app/models/track_thing.rb:140 +msgid "You are being emailed when there are new requests" +msgstr "" + +#: app/views/request/show.rhtml:88 +msgid "You can <strong>complain</strong> by" +msgstr "Ti mund të <strong>ankohesh</strong> duke" + +#: app/views/request/details.rhtml:58 +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"{{api_path}}\">API documentation</a>." +msgstr "" + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" +"Ju vetëm mund të kërkoni informacione në lidhje me mjedisin nga ky " +"autoritet." + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "Ti ke" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "Ti ke një përgjigje të re për kërkesën {{law_used_full}}" + +#: app/controllers/user_controller.rb:492 +msgid "You have now changed the text about you on your profile." +msgstr "Ju keni ndryshuar tani tekstin për ju në profilin tuaj." + +#: app/controllers/user_controller.rb:310 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" +"Tash ke ndryshuar adresën tënde të emailit që përdoret në {{site_name}}" + +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "" +"You just tried to sign up to {{site_name}}, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>," +" such as a working email address." +msgstr "" +"Ti e di se çfarë e shkaktoi gabim, dhe mund të <strong>sugjerosh një " +"zgjidhje,</strong>p.sh. email adresë funksionale të autoritetit." + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" +"Ti mund të <strong>bashkangjitë shtojca (attachments).</strong>. Nëse dëshiron të bashkangjet një\n" +"fajll tepër të madh për email format, përdor formularin e mëposhtëm." + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +" në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +" atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" +"Ti ke mundësi të gjejsh atë\n" +"në ueb sajtin e tyre, ose duke iu telefonuar. Nëse keni arritur të gjeni adresën,\n" +"atëherë të lutem <a href=\"%s\">na e dërgo të njejtën</a>." + +#: app/controllers/user_controller.rb:470 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" +"Duhet të jesh i kyçur për të ndryshuar tekstin për vetën tënde në profil." + +#: app/controllers/user_controller.rb:371 +msgid "You need to be logged in to change your profile photo." +msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." + +#: app/controllers/user_controller.rb:433 +msgid "You need to be logged in to clear your profile photo." +msgstr "" +"Ti duhet të jesh i kyçur për të larguar (fshirë) fotografinë e profilit " +"tënd." + +#: app/controllers/request_controller.rb:559 +msgid "" +"You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" +msgstr "" +"Ti duhet të kesh marrë një kopje të kërkesës me e-mail, dhe mund të " +"përgjigjesh duke <strong>u përgjigjur (reply)</strong> në atë email. Për " +"komoditetin tënd, kjo është adresa:" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" +"Ti dëshiron t'ja <strong>jep adresën tënde postale </strong> autoritetit ne " +"menyrë private" + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations or\n" +"send messages to other users. You may continue to view other requests, and set\n" +"up\n" +"email alerts." +msgstr "" +"Ti nuk do të mund të bësh kërkesa të reja, të dërgon follow ups, të shtosh shënime ose \n" +"të dërgon mesazhe te përdoruesit tjerë. Ti mund të vazhdosh ti shiqosh kërkesat tjera, dhe të vendosësh email njoftimet." + +#: app/controllers/track_controller.rb:154 +msgid "You will no longer be emailed updates about " +msgstr "Ti nuk do të merr më aktualizime me email për " + +#: app/controllers/track_controller.rb:183 +msgid "You will no longer be emailed updates for those alerts" +msgstr "Ti nuk do të merr më aktualizime me email për këto njoftime " + +#: app/controllers/track_controller.rb:111 +msgid "You will now be emailed updates about " +msgstr "Tani do të merr aktualizime me email për " + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" +"Ti do të merr përgjigje në kërkesën tënde vetëm në qoftë se e sqaroni atë." + +#: app/controllers/user_controller.rb:442 +msgid "You've now cleared your profile photo" +msgstr "Ke pastruar fotografinë e profilit tënd" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "I juaji " + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" +"<strong>Emri yt do të shfaqet publikisht </strong>\n" +" (<a href=\"%s\">pse?</a>)\n" +" në këtë ueb faqe dhe në këruesit e internetit (p.sh. Google). \n" +" Nëse mendon ta përdorësh një pseudonim, të lutem\n" +" <a href=\"%s\">së pari lexoje këtë</a>." + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" +"Të dhënat tuaja nuk iu kanë dhënë askujt, përveç nëse ju vendos të përgjigjesh në këtë\n" +"mesazh, i cili pastaj do të shkon direkt tek personi i cili shkroi mesazhin." + +#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +msgid "Your e-mail:" +msgstr "Adresa e emailit tënd:" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "Email abonimet e tua" + +#: app/controllers/request_controller.rb:556 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:584 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:582 +msgid "Your internal review request has been sent on its way." +msgstr "Kërkesa për rishqyrtim intern është dërguar." + +#: app/controllers/help_controller.rb:63 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" +"Mesazhi yt u dërgua. Faleminderit që na kontaktuat! Ne do t'ju përgjigjemi " +"së shpejti." + +#: app/controllers/user_controller.rb:349 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" +"Mesazhi yt do të shfaqet në <strong>kërkuesit e internetit (p.sh. " +"Google)</strong>" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" +"Emri yt dhe shënimi do të shfaqen në <strong>kërkuesit e internetit (p.sh. " +"Google).</strong>" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" +"Emrin yt, kërkesa dhe çdo përgjigje do të shfaqen në <strong>kërkuesit e " +"internetit (p.sh. Google)</strong> ( <a href=\"%s\">detaje</a> )." + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "Emri yt:" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "Mesazhi yt origjinal është i bashkangjitur." + +#: app/controllers/user_controller.rb:231 +msgid "Your password has been changed." +msgstr "Fjalëkalimi yt është ndryshuar." + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "Fjalëkalimi yt:" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on {{site_name}}." +msgstr "" +"Fotografia yte do të shfaqet në publikisht <strong>në internet</strong>,\n" +" kurdo që të bëni diçka në {{site_name}}." + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" +"Kërkesa yte qe emëruar {{info_request}}. Nëse i lejoni të tjerër ta dijnë a " +"i keni marrë informatat në pergjigje, do të na mundësoni ta mbikqyrim " + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "Kërkesa yte:" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a " +"href=\"%s\">read why</a> and answers to other questions." +msgstr "" +"Përgjegja yte do të <strong>shfaqet në internet,</strong> <a " +"href=\"%s\">lexoni pse</a> dhe përgjigjet për pyetje të tjera." + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the {{site_name}} <strong>administrators</strong> " +"should do about the request." +msgstr "" +"Mendimet tua se çfare duhet <strong>administratorët e</strong> \n" +"{{site_name}} bërë me kërkesën." + +#: app/models/track_mailer.rb:25 +msgid "Your {{site_name}} email alert" +msgstr "" + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "Me nderime," + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "Sinqerisht," + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" +"një përmbledhje në një rresht të informacionit që ti kërkon,\n" +"»» »p.sh." + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "admin" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "i quajtur edhe {{public_body_short_name}}" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "dhe kyçu si" + +#: app/views/request/show.rhtml:59 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" +"dhe aktualizo statusin në përputhje me rrethanat. Ndoshta " +"<strong>ti</strong> mund të ndihmosh duke vepruar kështu?" + +#: app/views/request/show.rhtml:64 +msgid "and update the status." +msgstr "dhe aktualizo statusin." + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "dhe ne do të sugjerojmë <strong>çfarë të bëjë pastaj</strong>" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "shënim" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "shënimet" + +#: app/models/track_thing.rb:138 +msgid "any <a href=\"/list\">new requests</a>" +msgstr "any <a href=\"/list\">new requests</a>" + +#: app/models/track_thing.rb:154 +msgid "any <a href=\"/list/successful\">successful requests</a>" +msgstr "ndonjë <a href=\"/list/successful\">kërkesë e re</a>" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "janë vonuar së tepërmi." + +#: app/controllers/public_body_controller.rb:111 +msgid "beginning with" +msgstr "duke filluar me" + +#: app/views/request/show.rhtml:82 +msgid "by" +msgstr "nga" + +#: app/views/request/_followup.rhtml:38 +msgid "by <strong>{{date}}</strong>" +msgstr "nga <strong>{{date}}</strong>" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "nga {{public_body_name}} për {{info_request_user}} me {{date}}." + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "nga {{user_link_absolute}}" + +#: locale/model_attributes.rb:35 +msgid "censor rule" +msgstr "censor rregulli" + +#: locale/model_attributes.rb:20 +msgid "comment" +msgstr "komenti" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" +"që përmban adresën tënde postale, dhe duke u kërkuar atyre të përgjigjen në këtë kërkesë. \n" +" Ose ju mund t'iu telefononi atyre." + +#: app/models/info_request_event.rb:338 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" +"display_status tani për tani punon vetëm për mesazhet hyrëse dhe dalëse" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "gjatë gjysmëvjetorit" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "p.sh." + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "edito tekstin në lidhje me ty" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "abonimet me email" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "madje edhe gjatë pushimeve" + +#: locale/model_attributes.rb:17 +msgid "exim log" +msgstr "exim log" + +#: locale/model_attributes.rb:59 +msgid "exim log done" +msgstr "exim log done" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "ka raportuar një" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "kanë vonuar." + +#: locale/model_attributes.rb:56 +msgid "holiday" +msgstr "festë" + +#: app/views/request/_followup.rhtml:36 app/views/request/show.rhtml:70 +#: app/views/request/show.rhtml:80 +msgid "in term time" +msgstr "në gjysmëvjetor" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "në total" + +#: locale/model_attributes.rb:62 +msgid "incoming message" +msgstr "mesazhi i ardhur" + +#: locale/model_attributes.rb:79 +msgid "info request" +msgstr "kërkesë për informatë" + +#: locale/model_attributes.rb:40 +msgid "info request event" +msgstr "info request event" + +#: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 +msgid "internal error" +msgstr "gabim i brendshëm i sistemit" + +#: app/views/request/show.rhtml:100 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "është duke <strong>pritur për sqarim tuaj</strong>." + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "vetëm për të parë se si funksionon" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "ka lënë një shënim" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "bërë." + +#: app/views/request/show.rhtml:74 +msgid "no later than" +msgstr "jo më vonë se" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/show.rhtml:72 +msgid "normally" +msgstr "normalisht" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "vetëm" + +#: locale/model_attributes.rb:25 +msgid "outgoing message" +msgstr "Mesazhi në largim" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "Të lutem kyçu si" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "të lutem kyçu ose krijo një llogari të re." + +#: locale/model_attributes.rb:49 +msgid "post redirect" +msgstr "ridrejto postën në tjetër adresë" + +#: locale/model_attributes.rb:14 +msgid "profile photo" +msgstr "fotografia e profilit" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "institucioni publik" + +#: locale/model_attributes.rb:47 +msgid "raw email" +msgstr "raw email" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "kërkesë." + +#: app/views/request/show.rhtml:89 +msgid "requesting an internal review" +msgstr "kërko rishqyrtim intern" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" +"përgjigje që ka nevojë për vëmendjen e administratorit. Hidhni një sy, dhe përgjigju në këtë \n" +"email, për ti njoftuar se çfarë do të bëni lidhur me të." + +#: app/views/request/show.rhtml:102 +msgid "send a follow up message" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." + +#: app/views/request/show.rhtml:106 +msgid "sign in" +msgstr "Kyçu" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "Ç'kyçu" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "që ti ke bërë për" + +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/track_mailer/event_digest.rhtml:66 +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:10 +#: app/views/user_mailer/changeemail_confirm.rhtml:13 +#: app/views/user_mailer/confirm_login.rhtml:11 +msgid "the {{site_name}} team" +msgstr "ekipi i {{site_name}}" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "ky person" + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" +"për të ndryshuar, fjalëkalimin,\n" +"abonimet dhe më shumë" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "për të kontrolluar se mos është veç e publikuar informata." + +#: app/views/request/show.rhtml:62 +msgid "to read" +msgstr "për të lexuar" + +#: app/views/request/show.rhtml:106 +msgid "to send a follow up message." +msgstr "" + +#: app/views/request/show.rhtml:45 +msgid "to {{public_body}}" +msgstr "për {{public_body}}" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "përcjell gjënë" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "rëndësi (prominence) e papritur për kërkesën" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "Indeksim i llojit të panjohur të ngjarjes " + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "arsye e panjohur " + +#: app/models/info_request.rb:814 app/models/info_request_event.rb:333 +msgid "unknown status " +msgstr "status i panjohur " + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "ndërprej abonimin" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "ndërpreji të gjitha abonimet" + +#: app/views/request/show.rhtml:53 +msgid "useful information." +msgstr "informata të dobishëme." + +#: locale/model_attributes.rb:68 +msgid "user" +msgstr "përdoruesi" + +#: locale/model_attributes.rb:66 +msgid "user info request sent alert" +msgstr "shfrytëzuesi info kërkesë dërguar alarm" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "ti" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{date}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" +"apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të ngjashme." + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "{{info_request_user_name}} vetëm:" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} më parë" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "{{public_body_name}} vetëm:" + +#: app/views/public_body/view_email.rhtml:7 +msgid "" +"{{site_name}} sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" +"{{site_name}} dërgon kërkesa të reja për <strong>{{request_email}}</strong> " +"për këtë autoritet." + +#: app/models/user.rb:122 +msgid "{{user_name}} (Banned)" +msgstr "{{user_name}} (Përjashtuar)" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" +"{{user_name}} ka lënë shënim në kërkesën tënde {{law_used_short}}. Ndiqni " +"këtë vegzë për të parë se çfarë ata shkruan." + +#: app/views/contact_mailer/user_message.rhtml:2 +msgid "{{user_name}} has used {{site_name}} to send you the message below." +msgstr "" +"{{user_name}} ka përdorur {{site_name}} për të dërguar mesazhin e posht " +"shënuar." + +#: app/views/request/show.rhtml:36 +msgid "" +"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) made this " +"{{law_used_full}} request (<a href=\"{{request_admin_url}}\">admin</a>) to " +"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" +msgstr "" +"{{user}} (<a href=\"{{user_admin_url}}\">admin</a>) bëri këtë " +"{{law_used_full}} kërkesë (<a href=\"{{request_admin_url}}\">admin</a>) te " +"{{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)" + +#: app/views/request/show.rhtml:44 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" + + diff --git a/locale/sr/app.po b/locale/sr/app.po index 93262c6bb..9d13a3a0d 100644 --- a/locale/sr/app.po +++ b/locale/sr/app.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" "POT-Creation-Date: 2011-08-11 12:30+0200\n" -"PO-Revision-Date: 2011-08-12 11:09+0000\n" +"PO-Revision-Date: 2011-08-22 10:22+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" diff --git a/public/images/bighand.png b/public/images/bighand.png Binary files differnew file mode 100644 index 000000000..92a4a6105 --- /dev/null +++ b/public/images/bighand.png diff --git a/public/images/button-awaiting-classification.png b/public/images/button-awaiting-classification.png Binary files differnew file mode 100644 index 000000000..f5a848f60 --- /dev/null +++ b/public/images/button-awaiting-classification.png diff --git a/public/images/button-complete.png b/public/images/button-complete.png Binary files differnew file mode 100644 index 000000000..fdc48f01d --- /dev/null +++ b/public/images/button-complete.png diff --git a/public/images/button-overdue.png b/public/images/button-overdue.png Binary files differnew file mode 100644 index 000000000..9d6885862 --- /dev/null +++ b/public/images/button-overdue.png diff --git a/public/images/button-search.png b/public/images/button-search.png Binary files differnew file mode 100644 index 000000000..23945f4f0 --- /dev/null +++ b/public/images/button-search.png diff --git a/public/images/defaultprofilepic.png b/public/images/defaultprofilepic.png Binary files differnew file mode 100644 index 000000000..affdaad3d --- /dev/null +++ b/public/images/defaultprofilepic.png diff --git a/public/images/icon-foi.png b/public/images/icon-foi.png Binary files differnew file mode 100644 index 000000000..138bf3b5c --- /dev/null +++ b/public/images/icon-foi.png diff --git a/public/images/icon-person.png b/public/images/icon-person.png Binary files differnew file mode 100644 index 000000000..dfb35a849 --- /dev/null +++ b/public/images/icon-person.png diff --git a/public/images/icon-publicbody.png b/public/images/icon-publicbody.png Binary files differnew file mode 100644 index 000000000..0f3848ccf --- /dev/null +++ b/public/images/icon-publicbody.png diff --git a/public/images/littlehand.png b/public/images/littlehand.png Binary files differnew file mode 100644 index 000000000..f7ec82045 --- /dev/null +++ b/public/images/littlehand.png diff --git a/public/images/logo.png b/public/images/logo.png Binary files differnew file mode 100644 index 000000000..1a865124f --- /dev/null +++ b/public/images/logo.png diff --git a/public/images/quote-marks.png b/public/images/quote-marks.png Binary files differnew file mode 100644 index 000000000..752b7d4cf --- /dev/null +++ b/public/images/quote-marks.png diff --git a/public/images/rss-blue.png b/public/images/rss-blue.png Binary files differnew file mode 100644 index 000000000..abc1b1859 --- /dev/null +++ b/public/images/rss-blue.png diff --git a/public/images/rss-orange.png b/public/images/rss-orange.png Binary files differnew file mode 100644 index 000000000..d0e6a949e --- /dev/null +++ b/public/images/rss-orange.png diff --git a/public/images/search-button.png b/public/images/search-button.png Binary files differnew file mode 100644 index 000000000..f5d41d4f1 --- /dev/null +++ b/public/images/search-button.png diff --git a/public/images/start-button.png b/public/images/start-button.png Binary files differnew file mode 100644 index 000000000..585931c35 --- /dev/null +++ b/public/images/start-button.png diff --git a/public/images/stripes.png b/public/images/stripes.png Binary files differnew file mode 100644 index 000000000..fda1c339d --- /dev/null +++ b/public/images/stripes.png diff --git a/public/images/stripes.png_ b/public/images/stripes.png_ Binary files differnew file mode 100644 index 000000000..ae45b49f9 --- /dev/null +++ b/public/images/stripes.png_ diff --git a/public/stylesheets/fonts.css b/public/stylesheets/fonts.css new file mode 100644 index 000000000..f63b4b1f8 --- /dev/null +++ b/public/stylesheets/fonts.css @@ -0,0 +1,73 @@ + +@font-face { + font-family: 'DeliciousBold'; + src: url('./fonts/delicious-bold-webfont.eot'); + src: url('./fonts/delicious-bold-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-bold-webfont.woff') format('woff'), + url('./fonts/delicious-bold-webfont.ttf') format('truetype'), + url('./fonts/delicious-bold-webfont.svg#DeliciousBold') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'DeliciousBoldItalic'; + src: url('./fonts/delicious-bolditalic-webfont.eot'); + src: url('./fonts/delicious-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-bolditalic-webfont.woff') format('woff'), + url('./fonts/delicious-bolditalic-webfont.ttf') format('truetype'), + url('./fonts/delicious-bolditalic-webfont.svg#DeliciousBoldItalic') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'DeliciousHeavyRegular'; + src: url('./fonts/delicious-heavy-webfont.eot'); + src: url('./fonts/delicious-heavy-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-heavy-webfont.woff') format('woff'), + url('./fonts/delicious-heavy-webfont.ttf') format('truetype'), + url('./fonts/delicious-heavy-webfont.svg#DeliciousHeavyRegular') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'DeliciousItalic'; + src: url('./fonts/delicious-italic-webfont.eot'); + src: url('./fonts/delicious-italic-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-italic-webfont.woff') format('woff'), + url('./fonts/delicious-italic-webfont.ttf') format('truetype'), + url('./fonts/delicious-italic-webfont.svg#DeliciousItalic') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'DeliciousRoman'; + src: url('./fonts/delicious-roman-webfont.eot'); + src: url('./fonts/delicious-roman-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-roman-webfont.woff') format('woff'), + url('./fonts/delicious-roman-webfont.ttf') format('truetype'), + url('./fonts/delicious-roman-webfont.svg#DeliciousRoman') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'DeliciousSmallCapsRegular'; + src: url('./fonts/delicious-smallcaps-webfont.eot'); + src: url('./fonts/delicious-smallcaps-webfont.eot?#iefix') format('embedded-opentype'), + url('./fonts/delicious-smallcaps-webfont.woff') format('woff'), + url('./fonts/delicious-smallcaps-webfont.ttf') format('truetype'), + url('./fonts/delicious-smallcaps-webfont.svg#DeliciousSmallCapsRegular') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/public/stylesheets/fonts/delicious-bold-webfont.eot b/public/stylesheets/fonts/delicious-bold-webfont.eot Binary files differnew file mode 100755 index 000000000..90d2e95fa --- /dev/null +++ b/public/stylesheets/fonts/delicious-bold-webfont.eot diff --git a/public/stylesheets/fonts/delicious-bold-webfont.svg b/public/stylesheets/fonts/delicious-bold-webfont.svg new file mode 100755 index 000000000..51a5d9080 --- /dev/null +++ b/public/stylesheets/fonts/delicious-bold-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : copyright 19941996 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousBold" horiz-adv-x="921" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="	" horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="!" horiz-adv-x="540" d="M143 104.5q0 61.5 48.5 106.5t109.5 45t101 -37t40 -96q0 -61 -48 -107.5t-109.5 -46.5t-101.5 37t-40 98.5zM180 1049q0 254 29 356l221 29q-39 -217 -39 -416v-637h-184q-27 510 -27 668z" /> +<glyph unicode=""" horiz-adv-x="708" d="M109 1317l30 156h152l33 -156l-48 -342h-122zM377 1317l31 156h149l35 -156l-47 -342h-123z" /> +<glyph unicode="#" horiz-adv-x="1138" d="M98 416l29 196h168l27 226h-140l27 196h137l43 385h184l-43 -385h154l41 346h184l-41 -346h164l-16 -196h-170l-29 -226h135l-18 -196h-143l-52 -412h-186l53 412h-153l-52 -361h-186l53 361h-170zM479 612h154l29 226h-154z" /> +<glyph unicode="$" horiz-adv-x="888" d="M88 979q0 143 91 236.5t235 103.5v113h92v-115q78 -10 156.5 -53t123.5 -105l-122 -121q-63 70 -158 95v-377l123 -84q96 -63 143 -138t47 -198q0 -139 -87 -237.5t-226 -121.5v-127h-92v119q-76 2 -159 38t-140 87l102 162q106 -86 197 -94v387l-138 90 q-88 57 -138 147.5t-50 192.5zM307 989q0 -109 107 -178v319q-49 -12 -78 -51t-29 -90zM506 178q94 43 94 160q0 82 -94 147v-307z" /> +<glyph unicode="%" horiz-adv-x="1431" d="M90 1032q0 119 84 204t205 85q55 0 137 -35q31 -18 37 -20q39 -12 98 -13q154 0 322 66l153 -39l-643 -1280h-200l589 1167q-78 -61 -215 -61q10 -41 11 -74q0 -119 -84 -204t-205 -85t-205 85t-84 204zM266 1032q0 -45 33 -78.5t80 -33.5t80 33.5t33 78.5t-33 79t-80 34 t-80 -34t-33 -79zM756 258q0 119 85 204t203.5 85t203.5 -85t85 -204t-85 -204t-203.5 -85t-203.5 85t-85 204zM932 258q0 -45 33.5 -79t79 -34t79 34t33.5 79t-33.5 79t-79 34t-79 -34t-33.5 -79z" /> +<glyph unicode="&" horiz-adv-x="1290" d="M82 489q0 168 84 307.5t240 161.5q-55 20 -91 70.5t-36 108.5q0 129 109.5 204.5t244.5 75.5q154 0 263.5 -81t109.5 -228v-104h192v-177h-188v-600q0 -41 10 -61.5t47 -20.5q41 0 113 29l51 -139q-53 -27 -79 -38t-64.5 -19.5t-88.5 -8.5q-104 0 -154 71t-50 179v608 h-82q-162 0 -203 -10q-193 -53 -193 -319q0 -98 24 -226.5t77 -128.5q16 0 43.5 29t70.5 58.5t101 29.5q37 0 82 -10l-39 -144q-35 8 -61.5 -3t-46.5 -33l-39 -45q-19 -23 -48.5 -39.5t-66.5 -16.5q-113 0 -193 92.5t-109.5 204.5t-29.5 223zM489 1120q0 -117 173 -116h149 v57q0 92 -34 142t-120 50q-168 0 -168 -133z" /> +<glyph unicode="'" horiz-adv-x="425" d="M100 1317l33 156h150l34 -156l-47 -342h-125z" /> +<glyph unicode="(" horiz-adv-x="688" d="M76 678q0 281 149.5 522.5t399.5 394.5l26 -184q-182 -117 -287.5 -316.5t-105.5 -420.5q0 -473 393 -789l-22 -198q-279 211 -416 440t-137 551z" /> +<glyph unicode=")" horiz-adv-x="694" d="M41 -115q393 315 393 789q0 221 -104.5 420.5t-286.5 316.5l25 184q250 -154 399 -395.5t149 -521.5q0 -322 -137 -552t-416 -439z" /> +<glyph unicode="*" horiz-adv-x="868" d="M55 1100v190l273 -114l-64 221h318l-58 -221l271 114v-190l-236 -76l215 -332h-221l-127 209l-129 -209h-219l215 332z" /> +<glyph unicode="+" horiz-adv-x="964" d="M78 420v184h313v336h180v-336h316v-184h-316v-336h-180v336h-313z" /> +<glyph unicode="," horiz-adv-x="528" d="M27 -229q137 199 137 327q0 35 -4 52q61 49 123 49q43 0 89 -37t74 -82q-109 -213 -290 -397z" /> +<glyph unicode="-" horiz-adv-x="618" d="M86 430v184h440v-184h-440z" /> +<glyph unicode="." horiz-adv-x="528" d="M121 104q0 61 47 106.5t111 45.5q59 0 99 -37t40 -96q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38t-40 97z" /> +<glyph unicode="/" horiz-adv-x="729" d="M8 -289l522 1825h191l-522 -1825h-191z" /> +<glyph unicode="0" d="M49 500q0 233 104.5 383.5t307.5 150.5t307 -152.5t104 -381.5q0 -137 -42 -254t-138 -197t-231 -80q-199 0 -305.5 160t-106.5 371zM256 500q0 -141 56.5 -240.5t148.5 -99.5q205 0 205 340q0 154 -55.5 249t-149.5 95t-149.5 -94t-55.5 -250z" /> +<glyph unicode="1" d="M201 799v155q117 0 250 41l26 9h174v-1004h-213v799h-237z" /> +<glyph unicode="2" d="M111 160q141 80 307 259t166 306q0 57 -39 88t-99 31q-70 0 -145.5 -32t-126.5 -81l-45 172q59 61 155.5 96t184.5 35q152 0 242 -75.5t90 -225.5q0 -154 -102.5 -300t-247.5 -240h385v-193h-686z" /> +<glyph unicode="3" d="M131 -178q111 2 213 34.5t181 114.5t79 199q0 152 -239 152q-90 0 -199 -11v164l108 17q100 55 236 163q70 57 70 115q0 35 -27 57.5t-61 22.5q-41 0 -114 -27.5t-124 -56.5l-53 -29l-54 162q74 43 121 66.5t118 45t136 21.5q125 0 199 -67.5t74 -171.5q0 -94 -80 -182.5 t-170 -123.5q115 -10 193.5 -93t78.5 -193q0 -141 -56 -250t-152.5 -171.5t-214.5 -92t-251 -29.5h-12v164z" /> +<glyph unicode="4" d="M59 166q145 373 494 838h209v-816h117v-188h-121v-283h-205v283h-483zM281 188h272v502q-186 -281 -272 -502z" /> +<glyph unicode="5" d="M123 -176q113 0 217 33.5t182 116.5t78 198q0 72 -49 109.5t-121 37.5q-102 0 -278 -49l61 734h547v-185h-354l-19 -323q98 12 100 12q141 0 234.5 -82t93.5 -223q0 -170 -96 -297t-243 -187q-142 -57 -301 -57h-11h-41v162z" /> +<glyph unicode="6" d="M84 530q0 506 598 795l82 -145q-164 -102 -257 -187.5t-159 -224.5q106 43 189 43q137 0 229 -107.5t92 -248.5q0 -201 -99.5 -343.5t-291.5 -142.5q-104 0 -183 52.5t-120 139.5t-60.5 179t-19.5 190zM295 489q0 -47 8 -99t27.5 -107.5t58.5 -92t90 -36.5q168 0 168 307 q0 92 -52 139t-144 47q-51 0 -146 -37q-10 -51 -10 -121z" /> +<glyph unicode="7" d="M119 811v193h680v-115q0 -285 -129 -650.5t-305 -598.5l-183 92q166 236 286 531.5t128 547.5h-477z" /> +<glyph unicode="8" d="M72 334q0 117 54 196.5t161 145.5q-180 109 -181 280q0 154 101.5 244t257.5 90q162 0 253 -83t91 -238q0 -98 -49 -165t-142 -122q117 -59 179.5 -133t62.5 -189q0 -178 -115.5 -284.5t-295.5 -106.5q-156 0 -266.5 104.5t-110.5 260.5zM285 354q0 -82 51 -146.5 t131 -64.5q78 0 128 64.5t50 144.5q0 43 -16.5 78t-55 66.5t-59.5 44.5l-74 43q-155 -95 -155 -230zM313 948q0 -63 37 -103t103 -75q152 88 151 201q0 156 -149 155q-72 0 -107 -51t-35 -127z" /> +<glyph unicode="9" d="M68 545q0 201 98 345t289 144q115 0 194.5 -52t120.5 -143t57.5 -184.5t16.5 -201.5q0 -266 -193.5 -475t-468.5 -320l-57 160q338 168 453 413q-102 -39 -160 -38q-152 0 -251 100t-99 252zM279 541q0 -78 50 -132.5t126 -54.5q88 0 166 39q10 66 10 121 q0 49 -8.5 102.5t-28 111.5t-57 95t-91.5 37q-167 0 -167 -319z" /> +<glyph unicode=":" horiz-adv-x="528" d="M121 104q0 61 47 106.5t111 45.5q59 0 99 -37t40 -96q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38t-40 97zM121 694q0 63 47 108.5t111 45.5q59 0 99 -38t40 -97q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38t-40 97z" /> +<glyph unicode=";" horiz-adv-x="528" d="M23 -229q137 205 137 327q0 27 -6 52q61 49 122 49q43 0 89.5 -37t74.5 -82q-109 -213 -290 -397zM135 692q0 63 47 108.5t111 45.5q59 0 99 -38t40 -97q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38t-40 97z" /> +<glyph unicode="<" horiz-adv-x="614" d="M33 512l403 410l146 -117l-295 -293l299 -293l-146 -117z" /> +<glyph unicode="=" horiz-adv-x="983" d="M86 270v185h811v-185h-811zM86 559v184h811v-184h-811z" /> +<glyph unicode=">" horiz-adv-x="614" d="M29 219l297 293l-293 293l145 117l404 -410l-408 -410z" /> +<glyph unicode="?" horiz-adv-x="733" d="M129 104q0 61 47 106.5t111 45.5q59 0 99 -37t40 -96q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38t-40 97zM190 381v111q0 147 18.5 200t106.5 168l109 144q63 88 63 137q0 100 -79 100q-98 0 -197 -29v172q121 33 235.5 33t184 -74.5t69.5 -189.5q0 -49 -17 -98t-37 -78 l-58 -82l-148 -203q-66 -92 -65 -198v-113h-185z" /> +<glyph unicode="@" horiz-adv-x="1622" d="M92 727q0 297 221.5 525.5t515.5 228.5q315 0 505 -171t190 -481q0 -199 -139.5 -364.5t-333.5 -165.5q-66 0 -119 41t-55 104q-57 -45 -133 -82.5t-130 -37.5q-94 0 -136 94t-42 201q0 207 101.5 363.5t298.5 156.5q76 0 172 -86l14 57h172l-141 -575q-8 -33 -9 -48 q0 -53 41 -53q94 0 166 100.5t86 204.5q6 43 6 90q0 231 -140 355.5t-376 124.5q-227 0 -383.5 -178.5t-156.5 -407.5q0 -256 173 -421t429 -165q281 0 493 217l109 -98q-250 -287 -641 -287q-315 0 -536.5 221.5t-221.5 536.5zM614 590q0 -98 62 -98q55 0 219 92l82 340 q-98 59 -158 59q-66 0 -116 -74.5t-69.5 -160.5t-19.5 -158z" /> +<glyph unicode="A" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM426 567h195l-97 398z" /> +<glyph unicode="B" horiz-adv-x="1028" d="M150 27v1263h335q170 0 288 -75.5t118 -237.5q0 -88 -48 -167t-126 -116q109 -16 176.5 -104t67.5 -201q0 -199 -134.5 -309.5t-337.5 -110.5q-122 1 -339 58zM373 774h110q84 0 135.5 47t51.5 131q0 92 -45 122t-142 30h-110v-330zM373 184q66 -18 112 -18 q117 0 184.5 55t67.5 168q0 117 -68.5 154t-193.5 37h-102v-396z" /> +<glyph unicode="C" horiz-adv-x="1017" d="M106 645q0 117 31 232.5t90.5 217t159.5 164t225 62.5q209 0 334 -92l-86 -154q-92 55 -248 55q-68 0 -124 -52t-88.5 -130t-51 -159.5t-18.5 -151.5q0 -78 12 -152.5t41 -151.5t89 -124t144 -47q139 0 246 78l103 -152q-66 -55 -165.5 -87t-191.5 -32 q-135 0 -235.5 59.5t-156.5 161t-83 215t-27 240.5z" /> +<glyph unicode="D" horiz-adv-x="1120" d="M150 0v1290h387q133 0 230 -55t150.5 -151.5t77 -205t23.5 -235.5q0 -125 -27.5 -235.5t-85 -204.5t-157 -148.5t-230.5 -54.5h-368zM371 193h147q274 0 275 446q0 459 -265 459h-157v-905z" /> +<glyph unicode="E" horiz-adv-x="929" d="M147 0v1290h697v-198h-473v-320h362v-201h-362v-368h493v-203h-717z" /> +<glyph unicode="F" horiz-adv-x="843" d="M145 0v1290h643v-196h-419v-322h331v-201h-331v-571h-224z" /> +<glyph unicode="G" horiz-adv-x="1073" d="M100 645q0 119 31 234.5t90.5 217t160.5 163t228 61.5q92 0 193.5 -28.5t167.5 -80.5l-88 -157q-117 78 -273 78q-96 0 -164.5 -92.5t-95 -200t-26.5 -203.5q0 -78 13 -153.5t43 -151.5t90 -123t144 -47q78 0 138 16v412h211v-559q-143 -61 -353 -62q-135 0 -237.5 59.5 t-159.5 159t-85 215t-28 242.5z" /> +<glyph unicode="H" horiz-adv-x="1122" d="M152 0v1290h223v-518h373v518h223v-1290h-223v571h-373v-571h-223z" /> +<glyph unicode="I" horiz-adv-x="487" d="M133 0v1290h221v-1290h-221z" /> +<glyph unicode="J" horiz-adv-x="501" d="M-6 -180q150 66 149 162v1308h219v-1319q0 -215 -317 -307z" /> +<glyph unicode="K" horiz-adv-x="993" d="M152 0v1290h223v-491l356 491h240l-471 -659l481 -541v-90h-205l-401 457v-457h-223z" /> +<glyph unicode="L" horiz-adv-x="782" d="M145 0v1290h215v-1093h404v-197h-619z" /> +<glyph unicode="M" horiz-adv-x="1519" d="M162 0v1290h262l307 -874l29 -115q8 55 28 115l308 874h262v-1290h-223v711l16 149l-299 -860h-184l-299 860l16 -149v-711h-223z" /> +<glyph unicode="N" horiz-adv-x="1134" d="M152 0v1290h262l286 -651q33 -74 60 -186v837h223v-1290h-215l-408 903q14 -84 15 -170v-733h-223z" /> +<glyph unicode="O" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM326 645q0 -84 11 -161.5t35.5 -152.5t74 -120t115 -45t114.5 45t73.5 120 t36 152.5t11.5 161.5t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162z" /> +<glyph unicode="P" horiz-adv-x="1001" d="M133 0v1290h299q504 0 504 -409q0 -195 -126 -320t-321 -125q-59 0 -133 33v-469h-223zM356 659q76 -29 119 -28q102 0 170 74.5t68 177.5q0 109 -83 162t-198 53h-76v-439z" /> +<glyph unicode="Q" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5q0 -215 -79 -400.5t-236 -248.5q51 -31 76.5 -43t63.5 -21.5t85 -9.5l94 15l-39 -220q-49 -8 -74 -8q-51 0 -97 14.5t-95 50.5t-73.5 56t-81.5 77l-66 66 q-135 20 -228.5 132t-130.5 250t-37 290zM326 645q0 -84 11 -162t35.5 -152.5t74 -119.5t115 -45t114.5 45t73.5 119.5t36 152.5t11.5 162t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162z" /> +<glyph unicode="R" horiz-adv-x="1034" d="M152 0v1290h297q254 0 372.5 -112.5t118.5 -296.5q0 -152 -87 -275t-224 -135l366 -381v-90h-200l-420 461v-461h-223zM375 655q63 -27 117 -26q104 0 162.5 73.5t58.5 180.5q0 215 -264 215h-74v-443z" /> +<glyph unicode="S" horiz-adv-x="888" d="M88 979q0 154 103.5 248t259.5 94q94 0 188 -44t147 -118l-122 -121q-90 98 -203 99q-68 0 -111 -40t-43 -108q0 -74 53.5 -130t128 -98t149.5 -91t128 -134t53 -200q0 -164 -114.5 -265.5t-280.5 -101.5q-78 0 -164 36t-145 89l102 162q119 -94 209 -94q78 0 126 49 t48 127q0 49 -38 95t-95 80t-122.5 79t-123 93t-95.5 125t-38 169z" /> +<glyph unicode="T" horiz-adv-x="829" d="M20 1085v205h789v-205h-285v-1085h-221v1085h-283z" /> +<glyph unicode="U" horiz-adv-x="1142" d="M150 506v784h223v-784q0 -340 198.5 -340t198.5 340v784h223v-784q0 -231 -102.5 -384t-319.5 -153t-319 153t-102 384z" /> +<glyph unicode="V" horiz-adv-x="1044" d="M12 1290h238l219 -772l53 -182l45 160l228 794h237l-399 -1290h-221z" /> +<glyph unicode="W" horiz-adv-x="1449" d="M18 1290h226l157 -723q16 -74 25 -188q4 119 23 190l169 721h213l170 -721q18 -72 23 -190q8 115 25 188l159 723h224l-295 -1290h-219l-175 782q-10 35 -18 115q-8 -78 -16 -115l-177 -782h-219z" /> +<glyph unicode="X" horiz-adv-x="1007" d="M14 0l359 659l-348 631h247l222 -424l217 424h237l-330 -620l377 -670h-258l-243 459l-232 -459h-248z" /> +<glyph unicode="Y" horiz-adv-x="964" d="M27 1290h239l215 -583l228 583h229l-344 -809v-481h-223v483z" /> +<glyph unicode="Z" horiz-adv-x="937" d="M72 0v174q197 408 479 913h-438v203h712v-178q-295 -508 -493 -909h547v-203h-807z" /> +<glyph unicode="[" horiz-adv-x="507" d="M31 -319v1816h370v-180h-182v-1456h182v-180h-370z" /> +<glyph unicode="\" horiz-adv-x="686" d="M-4 1536h192l523 -1825h-193z" /> +<glyph unicode="]" horiz-adv-x="509" d="M111 -139h180v1456h-180v180h368v-1816h-368v180z" /> +<glyph unicode="^" horiz-adv-x="1277" d="M113 643l448 819h152l448 -819h-215l-309 559l-309 -559h-215z" /> +<glyph unicode="_" d="M0 -123h922v-184h-922v184z" /> +<glyph unicode="`" horiz-adv-x="692" d="M55 1407l172 176q123 -168 342 -328l-98 -139q-258 137 -416 291z" /> +<glyph unicode="a" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90z" /> +<glyph unicode="b" horiz-adv-x="1030" d="M158 102v1321h215v-493q35 41 94 72.5t108 31.5q178 0 275.5 -142t97.5 -331q0 -109 -22.5 -208t-69.5 -188t-134 -142.5t-204 -53.5q-184 0 -360 133zM373 201q82 -55 159 -56q57 0 99.5 43t62 111t27.5 127t8 115q0 49 -7 95t-23.5 96t-53.5 80t-88 30q-76 0 -184 -103 v-538z" /> +<glyph unicode="c" horiz-adv-x="843" d="M86 492q0 131 42 250.5t139.5 205.5t232.5 86q82 0 165 -32.5t130 -90.5l-109 -127q-80 70 -184 70q-66 0 -115 -63.5t-67.5 -138t-18.5 -140.5q0 -51 10.5 -108.5t33 -116t65.5 -97t98 -38.5q106 0 235 102l74 -148q-63 -59 -153.5 -98t-169.5 -39q-129 0 -225.5 82 t-139.5 198t-43 243z" /> +<glyph unicode="d" horiz-adv-x="1048" d="M90 457q0 115 19.5 212t62.5 182t125 134t195 49q37 0 84 -8t75 -16l29 -9v422h215v-1212q0 -51 11.5 -69.5t56.5 -18.5l-66 -154q-12 -1 -22 0q-65 0 -97 21q-55 39 -78 133q-31 -59 -92 -106.5t-147 -47.5q-166 0 -268.5 141.5t-102.5 346.5zM311 479q0 -45 6.5 -91 t21.5 -101.5t50 -91t86 -39.5q5 0 10 -1q87 0 140 105q55 111 55 211v342q-106 33 -180 33q-189 0 -189 -367z" /> +<glyph unicode="e" horiz-adv-x="964" d="M88 526q0 203 120 355.5t318 152.5q145 0 253 -118.5t112 -266.5q0 -23 1 -67.5t1 -67.5h-586q-2 -12 -2 -37q0 -66 17.5 -136.5t64.5 -129.5t115 -59q123 0 268 110l72 -139q-74 -61 -173.5 -107.5t-179.5 -46.5q-143 0 -237 89t-129 209t-35 259zM336 692h342 q-6 78 -49 130t-117 52q-131 0 -176 -182z" /> +<glyph unicode="f" horiz-adv-x="585" d="M27 850v154h131v114q0 63 21.5 116.5t54 86.5t73.5 58.5t82 38t74 19.5t53 9h23l36 -156q-8 0 -21 -2t-49 -13t-62.5 -28.5t-48 -54.5t-21.5 -84v-104h186v-181h-186v-823h-215v827z" /> +<glyph unicode="g" horiz-adv-x="931" d="M70 -145q0 70 56 125t128 86q-47 6 -84 50t-37 95q0 55 42 98t101 66q-84 35 -128 120t-44 179q0 164 99.5 262t263.5 98q98 0 168 -30h256v-185h-117q29 -94 29 -151q0 -127 -67.5 -213t-192.5 -117q-2 0 -29 -4t-41 -8l-10 -2q-10 -4 -15.5 -5.5t-15.5 -4.5t-16 -5 t-16.5 -7t-15.5 -9t-13.5 -11.5t-11.5 -13.5t-6 -15t-3 -20q0 -16 16.5 -25t45 -12t52 -3t56.5 1t39 1h66q109 0 183.5 -60.5t74.5 -167.5q0 -170 -139.5 -271.5t-317.5 -101.5q-145 0 -250.5 64t-105.5 197zM281 -117q0 -133 153 -133q96 0 169 55.5t73 145.5q0 78 -156 78 h-119q-4 -2 -12 -7.5l-29.5 -20.5t-37 -30.5t-28.5 -40t-13 -47.5zM315 696q0 -201 144 -200q74 0 105.5 54t31.5 132q0 80 -34 138.5t-107.5 58.5t-106.5 -52.5t-33 -130.5z" /> +<glyph unicode="h" horiz-adv-x="1062" d="M154 0v1423h215v-493q53 43 132 73.5t142 30.5q158 0 214 -78.5t56 -214.5v-741h-215v741q0 61 -15 83t-65 22q-61 0 -131.5 -34t-117.5 -71v-741h-215z" /> +<glyph unicode="i" horiz-adv-x="487" d="M102 1251q0 57 44 99.5t102 42.5q55 0 96 -38t41 -93q0 -57 -44 -99.5t-101 -42.5q-55 0 -96.5 38t-41.5 93zM137 0v1004h211v-1004h-211z" /> +<glyph unicode="j" horiz-adv-x="487" d="M-6 -244q59 20 102 65.5t43 104.5v1078h211v-1090q0 -57 -21.5 -105.5t-51 -79t-76.5 -58t-81 -41t-81 -27.5zM102 1251q0 57 44 99.5t102 42.5q55 0 96 -38t41 -93q0 -57 -44 -99.5t-101 -42.5q-55 0 -96.5 38t-41.5 93z" /> +<glyph unicode="k" horiz-adv-x="964" d="M156 0v1423h215v-745l282 326h265l-369 -429l407 -493v-82h-206l-379 471v-471h-215z" /> +<glyph unicode="l" horiz-adv-x="483" d="M125 420v1003h211v-1003q0 -182 70 -420h-222q-59 152 -59 420z" /> +<glyph unicode="m" horiz-adv-x="1579" d="M156 0v1004h215v-72q35 31 115.5 66.5t136.5 35.5q143 0 235 -119q2 2 28.5 18.5t38.5 22.5l38 22q27 15 44 22.5t41.5 16.5t47 13t43.5 4q291 0 291 -284v-750h-216v750q0 55 -18 76.5t-70 21.5q-86 0 -213 -92v-756h-215v721q0 127 -88 127q-53 0 -126.5 -39 t-112.5 -72v-737h-215z" /> +<glyph unicode="n" horiz-adv-x="1062" d="M154 0v1004h215v-74q53 43 132 73.5t142 30.5q158 0 214 -78.5t56 -214.5v-741h-215v741q0 61 -15 84t-65 23q-115 0 -249 -107v-741h-215z" /> +<glyph unicode="o" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM305 502q0 -143 53.5 -245.5t141.5 -102.5t141 102t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5z" /> +<glyph unicode="p" horiz-adv-x="1056" d="M158 -358v1362h217v-74q96 104 221 104q178 0 275.5 -149.5t97.5 -337.5q0 -102 -17.5 -195.5t-57.5 -183.5t-120 -144.5t-190 -54.5q-154 0 -209 103v-430h-217zM375 489q0 -78 12 -145.5t60.5 -127.5t127.5 -60q55 0 92.5 41t52.5 106.5t21.5 117.5t6.5 105 q0 315 -173 316q-94 0 -200 -103v-250z" /> +<glyph unicode="q" horiz-adv-x="1054" d="M88 465q0 133 41 258t138.5 218t234.5 93q80 0 179 -19.5t159 -39.5l59 -19v-1314h-217v430q-33 -45 -92.5 -74t-116.5 -29q-133 0 -223 77t-126 184.5t-36 234.5zM307 492q0 -49 7.5 -99.5t23.5 -108t53 -93t90 -35.5q51 0 86 26q115 84 115 307v338q-12 4 -30.5 8.5 t-71.5 12.5q-27 4 -47.5 4t-34.5 -4q-55 -8 -94 -47t-59.5 -94.5t-29 -108.5t-8.5 -106z" /> +<glyph unicode="r" horiz-adv-x="653" d="M150 0v1004h217v-74q90 104 155 104l121 -30l-35 -203q-66 37 -114 37q-25 0 -56.5 -22.5t-52.5 -45.5l-20 -22v-748h-215z" /> +<glyph unicode="s" horiz-adv-x="858" d="M90 739q0 141 104.5 218t251.5 77q88 0 177.5 -36.5t134.5 -102.5l-113 -111q-37 37 -93 60.5t-110 23.5q-51 0 -95 -31.5t-44 -80.5q0 -57 96 -103l250 -127q68 -35 106 -102.5t38 -144.5q0 -147 -109 -228.5t-262 -81.5q-72 0 -156 36t-147 87l80 144q131 -94 229 -95 q66 0 110 29t44 92q0 70 -103 123l-278 145q-53 29 -82 86t-29 123z" /> +<glyph unicode="t" horiz-adv-x="626" d="M35 850v154h137v180h203v-180h182v-183h-178v-594q0 -72 51 -71l107 26l51 -151q-106 -51 -156 -58q-27 -4 -63 -4q-104 0 -154.5 71t-50.5 181v606z" /> +<glyph unicode="u" horiz-adv-x="1062" d="M152 258v746h215v-746q0 -53 17 -75.5t71 -22.5q104 0 241 102v742h215v-818q0 -68 41 -98l-65 -119q-47 4 -96.5 43t-61.5 80q-66 -49 -149.5 -86t-151.5 -37q-147 0 -211.5 71t-64.5 218z" /> +<glyph unicode="v" horiz-adv-x="925" d="M18 1004h232l219 -695q139 352 211 695h229q-143 -520 -368 -1004h-158z" /> +<glyph unicode="w" horiz-adv-x="1372" d="M12 1004h228l184 -682l162 682h205l176 -682q119 377 157 682h226q-66 -487 -297 -1004h-205l-103 369q-12 45 -25 113.5t-20 115.5l-8 47q-27 -178 -55 -276l-105 -369h-213z" /> +<glyph unicode="x" horiz-adv-x="868" d="M20 0l291 518l-272 486h242l151 -302l154 302h235l-272 -474l307 -530h-246l-180 340l-174 -340h-236z" /> +<glyph unicode="y" horiz-adv-x="929" d="M23 1004h227l180 -564q43 -137 53 -207q125 360 205 771h219q-33 -147 -79 -314.5t-115.5 -381.5t-158.5 -383t-175 -230q-33 -25 -86 -46.5t-90 -29.5l-37 -10l-47 162q90 29 139 71q47 41 113 158z" /> +<glyph unicode="z" horiz-adv-x="872" d="M70 0v170q221 379 432 641h-393v193h663v-175q-281 -356 -444 -634h487v-195h-745z" /> +<glyph unicode="{" horiz-adv-x="681" d="M61 518v141q66 0 113 58.5t47 148.5v357q0 168 62.5 227t160.5 59h144l35 -172h-156q-39 0 -49 -26.5t-10 -114.5v-356q0 -88 -46.5 -160t-93.5 -94q53 -33 96.5 -97.5t43.5 -152.5v-356q0 -86 12 -113t57 -27h146l-35 -172h-70h-69q-98 0 -163 58.5t-65 226.5v356 q0 90 -47 149.5t-113 59.5z" /> +<glyph unicode="|" horiz-adv-x="454" d="M135 -29v1569h184v-1569h-184z" /> +<glyph unicode="}" horiz-adv-x="681" d="M53 -160h146q45 0 57 27t12 113v356q0 88 42 152.5t96 97.5q-47 23 -92.5 94.5t-45.5 159.5v356q0 88 -10 114.5t-49 26.5h-156l35 172h143q98 0 161 -59t63 -227v-357q0 -90 47 -148.5t112 -58.5v-141q-66 0 -112.5 -59.5t-46.5 -149.5v-356q0 -168 -64.5 -226.5 t-163.5 -58.5h-71h-68z" /> +<glyph unicode="~" horiz-adv-x="1363" d="M285 459v207l22 32q14 20 64.5 53t105.5 33q84 0 220.5 -65.5t199.5 -65.5q109 0 178 119l6 12v-217l-21 -30q-13 -18 -61.5 -49t-101.5 -31q-94 0 -230.5 66.5t-191.5 66.5q-35 0 -67.5 -13.5t-54 -33t-38 -39t-24.5 -33.5z" /> +<glyph unicode="¡" horiz-adv-x="540" d="M94 852q0 61 48 107.5t109.5 46.5t101.5 -37t40 -98.5t-48 -107.5t-109.5 -46t-101.5 38t-40 97zM104 -459q41 211 41 414v639h185q27 -510 26 -668q0 -254 -30 -356z" /> +<glyph unicode="¢" horiz-adv-x="843" d="M86 492q0 231 102 368q109 154 277 172v137h92v-139q70 -8 129 -37.5t84 -54.5l25 -27l-109 -129q-53 47 -129 66v-690q41 10 88 33.5t72 41.5l26 21l74 -148q-115 -104 -260 -131v-127h-92v123q-150 12 -254 138q-125 145 -125 383zM301 512q0 -127 45 -226.5 t119 -125.5v688q-68 -23 -116 -110t-48 -226z" /> +<glyph unicode="£" horiz-adv-x="905" d="M25 745l59 148h78v252q0 141 105.5 207.5t240.5 66.5q150 0 242 -78l-56 -149q-86 51 -174 51q-143 0 -143 -127v-223h260v-184h-260v-195q0 -154 -37 -328h100l90 -30q38 -12 73 -13q96 0 167 97l18 28l43 -172q-2 -4 -7 -10l-20 -25q-15 -18 -32.5 -31.5t-46.5 -31.5 t-58.5 -25.5t-68.5 -11.5q-9 -1 -17 -1l-61 11l-106 29h-332q80 352 80 524v195z" /> +<glyph unicode="¤" horiz-adv-x="1110" d="M6 463l78 172h111v55v58h-181l82 176h123q33 217 180.5 353t378.5 136q197 0 344 -141l-75 -168q-68 70 -128.5 98.5t-150.5 28.5q-270 0 -338 -307h551l-82 -174h-491q-7 -36 -8 -70q0 -23 3 -45h445l-82 -174h-336q51 -303 318 -303q156 0 319 192v-241 q-139 -133 -330 -134q-205 0 -346 130.5t-172 357.5h-213z" /> +<glyph unicode="¥" horiz-adv-x="974" d="M31 1290h241l220 -583l221 583h231l-211 -487h197v-187h-277l-49 -114h326v-187h-334v-315h-221v315h-324v187h316l-50 114h-266v187h189z" /> +<glyph unicode="§" horiz-adv-x="860" d="M25 -158l77 160q160 -100 306 -100q72 0 111.5 33.5t39.5 91.5q0 43 -40 77.5t-150 88.5q-10 4 -56.5 26.5t-61.5 30.5t-54 30.5t-55 41.5l-38 45q-23 27 -30.5 57.5t-7.5 67.5q0 98 62 172.5t163 105.5q-217 96 -217 242q0 141 100 225t256 84q158 0 326 -94l-84 -160 q-150 74 -246 74q-66 0 -102.5 -35t-36.5 -90q0 -10 4 -20.5t12 -19.5t15.5 -16.5t21.5 -15.5t20.5 -12t22.5 -11.5t18 -9.5l63 -30l73 -37l67 -38q45 -26 68.5 -48.5t50.5 -52t39 -62.5t12 -70q0 -96 -62.5 -179t-154.5 -113q59 -33 97 -57.5t75 -72t37 -98.5 q0 -154 -100.5 -245t-266.5 -91q-167 0 -374 125zM276 514q0 -41 32 -74.5t85 -33.5q84 0 134.5 36.5t50.5 92.5q0 43 -38 73.5t-94 30.5q-76 0 -123 -35t-47 -90z" /> +<glyph unicode="¨" horiz-adv-x="786" d="M76 1276q0 57 43 103t100 46q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75zM422 1276q0 57 43 103t100 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -75.5 30t-30.5 75z" /> +<glyph unicode="©" horiz-adv-x="1800" d="M242 503.5q0 274.5 194.5 468t467 193.5t467 -193.5t194.5 -468t-194.5 -468t-467 -193.5t-467 193.5t-194.5 468zM403 504q0 -207 146.5 -353.5t353.5 -146.5t353.5 146.5t146.5 353.5t-146.5 353.5t-353.5 146.5t-353.5 -146.5t-146.5 -353.5zM600 514q0 150 85 253 t230 103q55 0 121 -29.5t111 -70.5l-82 -108q-88 63 -147 63q-72 0 -111 -67.5t-39 -143.5q0 -92 38 -162.5t122 -70.5q66 0 143 59l62 -117q-100 -88 -211 -88q-158 0 -240 107.5t-82 271.5z" /> +<glyph unicode="ª" horiz-adv-x="774" d="M70 936q0 66 47 151l336 146v78q0 76 -93 75q-98 0 -196 -94l-58 99q49 57 123 96t146 39q111 0 176 -54.5t65 -162.5v-445q0 -39 29 -39q18 0 29 9l43 -82q-55 -33 -111 -33q-53 0 -90 29.5t-47 80.5q-74 -113 -193 -112q-206 0 -206 219zM225 936q0 -35 18.5 -59.5 t51.5 -24.5q70 0 115 68.5t45 146.5v27l-219 -88q-11 -56 -11 -70z" /> +<glyph unicode="«" horiz-adv-x="1024" d="M27 496l403 409l145 -117l-296 -288l301 -297l-146 -117zM387 496l404 409l145 -117l-295 -288l299 -297l-145 -117z" /> +<glyph unicode="¬" horiz-adv-x="1095" d="M82 717v184h850v-555l-182 -35v406h-668z" /> +<glyph unicode="­" horiz-adv-x="618" d="M86 430v184h440v-184h-440z" /> +<glyph unicode="®" horiz-adv-x="1800" d="M242 503.5q0 274.5 194.5 468t467 193.5t467 -193.5t194.5 -468t-194.5 -468t-467 -193.5t-467 193.5t-194.5 468zM403 504q0 -207 146.5 -353.5t353.5 -146.5t353.5 146.5t146.5 353.5t-146.5 353.5t-353.5 146.5t-353.5 -146.5t-146.5 -353.5zM692 147v725h178 q125 0 203 -58t78 -179q0 -76 -39 -141.5t-106 -87.5l176 -183v-76h-138l-192 205v-205h-160zM852 530q16 -8 41 -8q47 0 71.5 33t24.5 80q0 94 -119 94h-18v-199z" /> +<glyph unicode="¯" horiz-adv-x="686" d="M43 1143v182h598v-182h-598z" /> +<glyph unicode="°" horiz-adv-x="720" d="M49 1038q0 125 89 214t214 89t214 -89t89 -214t-89 -214t-214 -89t-214 89t-89 214zM205 1038.5q0 -61.5 43 -104.5t104.5 -43t104.5 43t43 104.5t-43 104.5t-104.5 43t-104.5 -43t-43 -104.5z" /> +<glyph unicode="±" horiz-adv-x="915" d="M78 487v172h313v271h180v-271h316v-172h-316v-225h-180v225h-313zM98 0v170h768v-170h-768z" /> +<glyph unicode="²" d="M111 160q141 80 307 259t166 306q0 57 -39 88t-99 31q-70 0 -145.5 -32t-126.5 -81l-45 172q59 61 155.5 96t184.5 35q152 0 242 -75.5t90 -225.5q0 -154 -102.5 -300t-247.5 -240h385v-193h-686z" /> +<glyph unicode="³" d="M131 -178q111 2 213 34.5t181 114.5t79 199q0 152 -239 152q-90 0 -199 -11v164l108 17q100 55 236 163q70 57 70 115q0 35 -27 57.5t-61 22.5q-41 0 -114 -27.5t-124 -56.5l-53 -29l-54 162q74 43 121 66.5t118 45t136 21.5q125 0 199 -67.5t74 -171.5q0 -94 -80 -182.5 t-170 -123.5q115 -10 193.5 -93t78.5 -193q0 -141 -56 -250t-152.5 -171.5t-214.5 -92t-251 -29.5h-12v164z" /> +<glyph unicode="´" horiz-adv-x="692" d="M86 1255q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291z" /> +<glyph unicode="µ" horiz-adv-x="1058" d="M57 -371q92 145 93 277q0 45 -9.5 127t-9.5 141v49v781h215v-791q0 -53 84 -53q51 0 97 16.5t68.5 30.5t78.5 57v740h215v-818q0 -39 22.5 -47t55.5 15l67 -134q-78 -51 -155 -51q-59 0 -116.5 27t-78.5 76q-141 -102 -242 -103q-51 0 -88 19q12 -90 13 -152 q0 -80 -50 -164z" /> +<glyph unicode="¶" horiz-adv-x="1112" d="M61 778q-11 61 -11 122.5t11 122.5q23 122 125.5 207t255.5 85q45 0 95.5 -4t113 -11.5t94.5 -9.5v80h177v-78l106 19l-8 -168l-100 -23q-2 -340 -73 -715.5t-202 -642.5l-188 78q139 256 209.5 598t74.5 678q-27 2 -77 9.5t-91 11.5t-75 4q-116 -4 -116 -193 q0 -18 1 -39q14 -199 119 -221q9 -2 18 -1q64 0 152 71q-94 -272 -271 -273q-133 0 -225 85t-115 208z" /> +<glyph unicode="·" horiz-adv-x="528" d="M121 492q0 63 47 108t111 45q59 0 99 -38t40 -97q0 -63 -47 -108.5t-111 -45.5q-59 0 -99 38.5t-40 97.5z" /> +<glyph unicode="¸" horiz-adv-x="823" d="M375 -299q66 35 95.5 53.5t53 42t23.5 47.5q0 33 -40 37q-10 1 -20 1q-30 0 -61 -9l-39 -14l2 141h246q84 -61 84 -154q0 -78 -73 -142t-165 -103z" /> +<glyph unicode="¹" d="M201 799v155q117 0 250 41l26 9h174v-1004h-213v799h-237z" /> +<glyph unicode="º" horiz-adv-x="802" d="M94 1118.5q0 157.5 82 281.5t229.5 124t230.5 -124t83 -281.5t-83 -280.5t-230.5 -123t-229.5 123t-82 280.5zM258 1118.5q0 -108.5 41 -186.5t107 -78q68 0 108.5 78t40.5 186.5t-41 187t-108 78.5q-66 0 -107 -78.5t-41 -187z" /> +<glyph unicode="»" horiz-adv-x="1024" d="M98 788l146 117l407 -409l-403 -410l-146 117l295 289zM459 788l145 117l408 -409l-404 -410l-145 117l297 289z" /> +<glyph unicode="¼" horiz-adv-x="2537" d="M201 799v155q117 0 250 41l26 9h174v-1004h-213v799h-237zM743 -256l869 1769h198l-868 -1769h-199zM1675 166q145 373 494 838h209v-816h116v-188h-120v-283h-205v283h-483zM1896 188h273v502q-187 -281 -273 -502z" /> +<glyph unicode="½" horiz-adv-x="2537" d="M201 799v155q117 0 250 41l26 9h174v-1004h-213v799h-237zM743 -256l869 1769h198l-868 -1769h-199zM1726 160q141 80 307.5 259t166.5 306q0 57 -39 88t-99 31q-70 0 -145.5 -32t-126.5 -81l-45 172q59 61 155.5 96t184.5 35q152 0 242 -75.5t90 -225.5 q0 -154 -102.5 -300t-248.5 -240h385v-193h-686z" /> +<glyph unicode="¾" horiz-adv-x="2537" d="M131 -178q111 2 213 34.5t181 114.5t79 199q0 152 -239 152q-90 0 -199 -11v164l108 17q100 55 236 163q70 57 70 115q0 35 -27 57.5t-61 22.5q-41 0 -114 -27.5t-124 -56.5l-53 -29l-54 162q74 43 121 66.5t118 45t136 21.5q125 0 199 -67.5t74 -171.5q0 -94 -80 -182.5 t-170 -123.5q115 -10 193.5 -93t78.5 -193q0 -141 -56 -250t-152.5 -171.5t-214.5 -92t-251 -29.5h-12v164zM743 -256l869 1769h198l-868 -1769h-199zM1675 166q145 373 494 838h209v-816h116v-188h-120v-283h-205v283h-483zM1896 188h273v502q-187 -281 -273 -502z" /> +<glyph unicode="¿" horiz-adv-x="733" d="M57 -150q0 49 17.5 98.5t36 78t57.5 82.5l149 202q63 88 64 199v113h184v-111q0 -150 -17.5 -202t-105.5 -167l-108 -143q-63 -82 -64 -137q0 -100 78 -101q100 0 197 29v-172q-135 -33 -236 -33q-115 0 -183.5 73.5t-68.5 190.5zM330 881q0 61 48 107t109.5 46 t101.5 -36.5t40 -98t-48.5 -106.5t-109.5 -45t-101 37t-40 96z" /> +<glyph unicode="À" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM262 1659l172 176q121 -168 342 -328l-98 -139q-254 133 -416 291zM426 567h195l-97 398z" /> +<glyph unicode="Á" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM262 1507q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291zM426 567h195l-97 398z" /> +<glyph unicode="Â" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM174 1505q195 135 346 334q14 -20 41 -53t117 -121t188 -158l-98 -139q-109 57 -248 188q-111 -119 -248 -190zM426 567h195l-97 398z" /> +<glyph unicode="Ã" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM115 1581q90 72 149.5 102.5t118.5 30.5q63 0 146 -43t120 -43q45 0 70.5 12.5t99.5 61.5l88 -129q-90 -84 -141 -108.5t-131 -24.5q-47 0 -129 43t-129 43q-72 0 -184 -82zM426 567h195l-97 398z" /> +<glyph unicode="Ä" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM215 1528q0 59 44 104t101 45q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM426 567h195l-97 398zM561 1528q0 59 44 104t102 45q45 0 78.5 -32.5t33.5 -77.5 q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="Å" horiz-adv-x="1044" d="M23 0l407 1290h184l410 -1290h-229l-123 371h-295l-123 -371h-231zM283 1581q0 98 71.5 169t167.5 71t166 -72t70 -168q0 -98 -71 -169t-169 -71t-166.5 71t-68.5 169zM426 567h195l-97 398zM438 1581q0 -33 24.5 -58.5t55.5 -25.5q33 0 57.5 25.5t24.5 58.5t-23.5 57.5 t-52.5 24.5q-37 0 -61.5 -24.5t-24.5 -57.5z" /> +<glyph unicode="Æ" horiz-adv-x="1497" d="M18 0l408 1290h178l84 -262v262h698v-198h-473v-320h363v-201h-363v-368h494v-203h-717v393h-309l-131 -393h-232zM436 590h201l-100 375z" /> +<glyph unicode="Ç" horiz-adv-x="1017" d="M106 645q0 162 52.5 311.5t171.5 257t282 107.5q94 0 177 -23.5t120 -46.5l37 -22l-86 -154q-90 55 -248 55q-57 0 -120.5 -48t-102.5 -128q-59 -129 -59 -317q0 -78 12 -152.5t41 -151.5t89 -124t144 -47q135 0 246 78l103 -152q-90 -76 -236 -106q63 -59 64 -136 q0 -78 -73 -142t-165 -103l-106 100q66 35 95 53.5t53 42t24 47.5q0 33 -40 37q-10 1 -20 1q-30 0 -61 -9l-39 -14v131q-94 29 -165 97.5t-111 160.5t-59.5 191.5t-19.5 205.5z" /> +<glyph unicode="È" horiz-adv-x="929" d="M147 0v1290h697v-198h-473v-320h362v-201h-362v-368h493v-203h-717zM244 1659l172 176q127 -174 342 -328l-99 -139q-253 133 -415 291z" /> +<glyph unicode="É" horiz-adv-x="929" d="M147 0v1290h697v-198h-473v-320h362v-201h-362v-368h493v-203h-717zM244 1507q98 70 183 152t122 129l37 47l172 -176q-156 -156 -416 -291z" /> +<glyph unicode="Ê" horiz-adv-x="929" d="M147 0v1290h697v-198h-473v-320h362v-201h-362v-368h493v-203h-717zM152 1505q190 131 348 334q14 -20 40.5 -53t117 -121t186.5 -158l-99 -139q-111 59 -247 188q-111 -119 -246 -190z" /> +<glyph unicode="Ë" horiz-adv-x="929" d="M147 0v1290h697v-198h-473v-320h362v-201h-362v-368h493v-203h-717zM201 1528q0 59 43 104t100 45q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -75.5 30t-30.5 75zM547 1528q0 59 43 104t100 45q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5 q-45 0 -75.5 30t-30.5 75z" /> +<glyph unicode="Ì" horiz-adv-x="487" d="M-12 1659l172 176q121 -168 342 -328l-101 -139q-253 135 -413 291zM133 0v1290h221v-1290h-221z" /> +<glyph unicode="Í" horiz-adv-x="487" d="M-12 1507q96 70 182 152t123 129l37 47l172 -176q-182 -168 -416 -291zM133 0v1290h221v-1290h-221z" /> +<glyph unicode="Î" horiz-adv-x="487" d="M-106 1505q190 131 348 334q14 -20 40.5 -53t116.5 -121t187 -158l-99 -139q-111 59 -247 188q-113 -121 -246 -190zM133 0v1290h221v-1290h-221z" /> +<glyph unicode="Ï" horiz-adv-x="487" d="M-61 1528q0 59 43 104t100 45q47 0 81 -32.5t34 -77.5q0 -57 -46.5 -100.5t-103.5 -43.5q-45 0 -76.5 30t-31.5 75zM133 0v1290h221v-1290h-221zM285 1528q0 59 43 104t100 45q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75z" /> +<glyph unicode="Ñ" horiz-adv-x="1134" d="M152 0v1290h262l286 -651q33 -74 60 -186v837h223v-1290h-215l-408 903q14 -84 15 -170v-733h-223zM168 1581q92 72 150.5 102.5t119.5 30.5q63 0 145.5 -43t118.5 -43q45 0 73 12.5t97 61.5l89 -129q-90 -84 -141.5 -108.5t-129.5 -24.5q-47 0 -130 43t-128 43 q-74 0 -186 -82z" /> +<glyph unicode="Ò" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM297 1659l172 176q121 -168 342 -328l-98 -139q-254 133 -416 291zM326 645 q0 -84 11 -161.5t35.5 -152.5t74 -120t115 -45t114.5 45t73.5 120t36 152.5t11.5 161.5t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162z" /> +<glyph unicode="Ó" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM301 1507q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291z M326 645q0 -84 11 -162t35.5 -152.5t74 -119.5t115 -45t114.5 45t73.5 119.5t36 152.5t11.5 162t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162z" /> +<glyph unicode="Ô" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM219 1505q195 135 346 334q14 -20 41 -53t117 -121t188 -158l-98 -139 q-109 57 -248 188q-111 -119 -248 -190zM326 645q0 -84 11 -161.5t35.5 -152.5t74 -120t115 -45t114.5 45t73.5 120t36 152.5t11.5 161.5t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162z" /> +<glyph unicode="Õ" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM156 1581q92 72 150.5 102.5t119.5 30.5q63 0 146 -43t120 -43q45 0 72 12.5 t96 61.5l88 -129q-90 -84 -140 -108.5t-130 -24.5q-47 0 -129 43t-129 43q-74 0 -184 -82zM326 645q0 -84 11 -161.5t35.5 -152.5t74 -120t115 -45t114.5 45t73.5 120t36 152.5t11.5 161.5t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5 t-11 -162z" /> +<glyph unicode="Ö" horiz-adv-x="1122" d="M102 645q0 119 27 234.5t79 216t144 163t209 62.5q119 0 211 -61.5t144.5 -164t78 -216t25.5 -234.5t-25.5 -234.5t-78 -216t-144.5 -164t-211 -61.5t-211 61.5t-144 164t-78 216t-26 234.5zM260 1528q0 59 43 104t100 45q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5 t-103 -43.5q-45 0 -76 30t-31 75zM326 645q0 -84 11 -161.5t35.5 -152.5t74 -120t115 -45t114.5 45t73.5 120t36 152.5t11.5 161.5t-11.5 162t-36 152.5t-73.5 119.5t-114.5 45t-115 -45t-74 -119.5t-35.5 -152.5t-11 -162zM606 1528q0 59 43 104t101 45q47 0 79.5 -32.5 t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -76 30t-31 75z" /> +<glyph unicode="Ø" horiz-adv-x="1122" d="M102 655q0 111 26 221.5t77 214t143 167t213 63.5q66 0 133 -23l68 236h102l-82 -283q121 -90 179.5 -259t58.5 -345q0 -113 -24.5 -225.5t-76 -217t-144.5 -170t-214 -65.5q-72 0 -139 25l-80 -281h-102l94 332q-119 90 -175.5 261t-56.5 349zM326 635q0 -254 71 -373 l242 846q-33 16 -78 16q-235 0 -235 -489zM477 184q39 -18 84 -18q236 0 236 481q0 262 -76 385z" /> +<glyph unicode="Ù" horiz-adv-x="1142" d="M150 506v784h223v-784q0 -340 198.5 -340t198.5 340v784h223v-784q0 -231 -102.5 -384t-319.5 -153t-319 153t-102 384zM309 1659l172 176q125 -170 344 -328l-100 -139q-252 133 -416 291z" /> +<glyph unicode="Ú" horiz-adv-x="1142" d="M150 506v784h223v-784q0 -340 198.5 -340t198.5 340v784h223v-784q0 -231 -102.5 -384t-319.5 -153t-319 153t-102 384zM319 1507q98 70 183.5 152t122.5 129l37 47l172 -176q-156 -156 -414 -291z" /> +<glyph unicode="Û" horiz-adv-x="1142" d="M150 506v784h223v-784q0 -340 198.5 -340t198.5 340v784h223v-784q0 -231 -102.5 -384t-319.5 -153t-319 153t-102 384zM225 1505q195 135 346 334q14 -20 41 -53t117 -121t189 -158l-99 -139q-111 59 -248 188q-111 -119 -247 -190z" /> +<glyph unicode="Ü" horiz-adv-x="1142" d="M150 506v784h223v-784q0 -340 198.5 -340t198.5 340v784h223v-784q0 -231 -102.5 -384t-319.5 -153t-319 153t-102 384zM270 1528q0 59 44 104t102 45q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM616 1528q0 59 44.5 104t101.5 45 q45 0 78.5 -32.5t33.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="Ý" horiz-adv-x="964" d="M27 1290h239l215 -583l228 583h229l-344 -809v-481h-223v483zM385 1583q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291z" /> +<glyph unicode="ß" horiz-adv-x="1171" d="M27 846v158h129v131q0 143 113.5 226t260.5 83q180 0 299 -95.5t119 -271.5q0 -31 -5 -66.5t-11 -59.5l-18 -66q-11 -43 -15 -62q-68 31 -135 31q-113 0 -113 -98q0 -12 6.5 -24.5t14.5 -21t22.5 -18.5t22.5 -15t26.5 -14.5t20.5 -11.5l250 -135q57 -31 91 -88t34 -125 q0 -158 -103.5 -246t-265.5 -88q-172 0 -324 99l86 161q111 -76 246 -75q68 0 111 30.5t43 94.5q0 72 -92 120l-273 144q-129 68 -129 207q0 117 74 196.5t190 79.5q31 0 48 -2q8 31 8 70q0 168 -215 168q-68 0 -120 -42t-52 -110v-1110h-215v827z" /> +<glyph unicode="à" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM229 1407l172 176q123 -168 342 -328l-98 -139q-258 137 -416 291zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90z" /> +<glyph unicode="á" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM240 1255q98 70 183 152t122 129l37 47l172 -176q-156 -156 -416 -291zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90z" /> +<glyph unicode="â" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM133 1253q186 127 348 334q14 -20 41 -53t117 -121t186 -158l-98 -139q-117 61 -248 187q-115 -119 -246 -189zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90z" /> +<glyph unicode="ã" horiz-adv-x="954" d="M74 1329q92 72 150.5 102.5t119.5 30.5q63 0 145 -43t119 -43q45 0 73 12.5t97 61.5l88 -129q-90 -84 -140 -108.5t-130 -24.5q-47 0 -129 43t-129 43q-74 0 -186 -82zM78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127 t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75t-68.5 212zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90z " /> +<glyph unicode="ä" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM180 1276q0 57 44 103t102 46q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90zM526 1276q0 57 44 103t102 46q47 0 79.5 -32.5 t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="å" horiz-adv-x="954" d="M78 256q0 84 61 203l441 190v101q0 100 -119 100q-63 0 -136 -36t-124 -87l-74 129q63 76 160.5 127t191.5 51q145 0 231.5 -72.5t86.5 -213.5v-584q0 -53 39 -53q12 0 36 12l56 -109q-70 -43 -146 -43q-68 0 -117 39t-61 107q-96 -147 -254 -148q-135 0 -203.5 75 t-68.5 212zM240 1349.5q0 98.5 71.5 169t167.5 70.5t166 -70.5t70 -169t-71 -169t-169 -70.5t-166.5 70.5t-68.5 169zM281 258q0 -45 25.5 -79t68.5 -34q92 0 150.5 91.5t58.5 193.5v37l-287 -119q-16 -57 -16 -90zM393 1349.5q0 -32.5 25.5 -57t56.5 -24.5q33 0 57.5 24.5 t24.5 57t-23.5 57.5t-52.5 25q-37 0 -62.5 -25t-25.5 -57.5z" /> +<glyph unicode="æ" horiz-adv-x="1511" d="M102 264q0 66 50 189l462 190v98q-16 41 -46.5 73t-67.5 32q-61 0 -137 -49t-132 -109l-88 146q68 84 169.5 142t201.5 58q182 0 260 -108q115 109 273 108q152 0 255 -118.5t109 -272.5l4 -135h-588q0 -53 10.5 -109.5t32 -114t64.5 -94t100 -36.5q137 0 256 71l74 -155 q-156 -100 -340 -101q-102 0 -188 50.5t-142 138.5l-129 -111q-90 -78 -186 -78q-129 0 -203 82t-74 213zM315 258q0 -43 21.5 -71.5t64.5 -28.5q20 0 45 9t54.5 29.5t47 34t49.5 41t38 31.5q-18 72 -23 164l-272 -117q-25 -74 -25 -92zM856 686h332q-10 68 -50 118 t-103.5 50t-109.5 -50t-69 -118z" /> +<glyph unicode="ç" horiz-adv-x="843" d="M86 492q0 133 40 251.5t137 204.5t237 86q76 0 127 -15t73 -32l95 -72l-109 -131q-90 70 -184 70q-76 0 -138.5 -95t-62.5 -247q0 -147 58.5 -254.5t148.5 -107.5q49 0 117.5 33.5t115.5 72.5l76 -152q-88 -74 -199 -112q74 -59 74 -146q0 -78 -72.5 -142t-164.5 -103 l-107 100q66 35 95.5 53.5t53 42t23.5 47.5q0 33 -40 37q-10 1 -20 1q-30 0 -59 -9l-41 -14v137q-92 37 -156.5 124t-91 181.5t-26.5 190.5z" /> +<glyph unicode="è" horiz-adv-x="960" d="M88 526q0 203 120 355.5t318 152.5q145 0 253 -118.5t112 -266.5q0 -23 1 -67.5t1 -67.5h-586q-2 -12 -2 -37q0 -66 17.5 -136.5t64.5 -129.5t115 -59q123 0 268 110l72 -139q-74 -61 -173.5 -107.5t-179.5 -46.5q-143 0 -237 89t-129 209t-35 259zM252 1407l172 176 q127 -174 342 -328l-98 -139q-254 133 -416 291zM336 692h342q-6 78 -49 130t-117 52q-131 0 -176 -182z" /> +<glyph unicode="é" horiz-adv-x="960" d="M88 526q0 203 120 355.5t318 152.5q145 0 253 -118.5t112 -266.5q0 -23 1 -67.5t1 -67.5h-586q-2 -12 -2 -37q0 -66 17.5 -136.5t64.5 -129.5t115 -59q123 0 268 110l72 -139q-74 -61 -173.5 -107.5t-179.5 -46.5q-143 0 -237 89t-129 209t-35 259zM276 1255 q96 70 182.5 152t123.5 129l36 47l173 -176q-184 -170 -416 -291zM336 692h342q-6 78 -49 130t-117 52q-131 0 -176 -182z" /> +<glyph unicode="ê" horiz-adv-x="960" d="M88 526q0 203 120 355.5t318 152.5q145 0 253 -118.5t112 -266.5q0 -23 1 -67.5t1 -67.5h-586q-2 -12 -2 -37q0 -66 17.5 -136.5t64.5 -129.5t115 -59q123 0 268 110l72 -139q-74 -61 -173.5 -107.5t-179.5 -46.5q-143 0 -237 89t-129 209t-35 259zM164 1253 q193 131 346 334q14 -20 41 -53t117 -121t188 -158l-98 -139q-117 61 -248 187q-115 -119 -248 -189zM336 692h342q-6 78 -49 130t-117 52q-131 0 -176 -182z" /> +<glyph unicode="ë" horiz-adv-x="960" d="M88 526q0 203 120 355.5t318 152.5q145 0 253 -118.5t112 -266.5q0 -23 1 -67.5t1 -67.5h-586q-2 -12 -2 -37q0 -66 17.5 -136.5t64.5 -129.5t115 -59q123 0 268 110l72 -139q-74 -61 -173.5 -107.5t-179.5 -46.5q-143 0 -237 89t-129 209t-35 259zM217 1276q0 57 44 103 t99 46q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM336 692h342q-6 78 -49 130t-117 52q-131 0 -176 -182zM563 1276q0 57 44 103t100 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="ì" horiz-adv-x="487" d="M-16 1407l172 176q127 -174 342 -328l-99 -139q-259 135 -415 291zM137 0v1004h213v-1004h-213z" /> +<glyph unicode="í" horiz-adv-x="487" d="M-10 1255q98 70 183 152t122 129l37 47l172 -176q-156 -156 -416 -291zM137 0v1004h213v-1004h-213z" /> +<glyph unicode="î" horiz-adv-x="487" d="M-98 1253q186 127 348 334q14 -20 40.5 -53t117 -121t186.5 -158l-98 -139q-117 61 -248 187q-115 -119 -248 -189zM137 0v1004h213v-1004h-213z" /> +<glyph unicode="ï" horiz-adv-x="487" d="M-55 1276q0 57 44 103t101 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75zM137 0v1004h213v-1004h-213zM291 1276q0 57 44 103t101 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75z" /> +<glyph unicode="ñ" horiz-adv-x="1062" d="M141 1329q90 72 149.5 102.5t119.5 30.5q63 0 146 -43t120 -43q45 0 72.5 12.5t97.5 61.5l88 -129q-90 -84 -141.5 -108.5t-130.5 -24.5q-45 0 -128 43t-131 43q-72 0 -184 -82zM154 0v1004h215v-74q53 43 132 73.5t142 30.5q158 0 214 -78.5t56 -214.5v-741h-215v741 q0 61 -15 84t-65 23q-115 0 -249 -107v-741h-215z" /> +<glyph unicode="ò" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM250 1407l172 176q125 -170 344 -328l-100 -139q-258 137 -416 291zM305 502q0 -143 53.5 -245.5t141.5 -102.5t141 102 t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5z" /> +<glyph unicode="ó" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM250 1255q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291zM305 502q0 -143 53.5 -245.5t141.5 -102.5 t141 102t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5z" /> +<glyph unicode="ô" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM162 1253q186 127 348 334q14 -20 41 -53t117 -121t186 -158l-98 -139q-117 61 -248 187q-115 -119 -248 -189zM305 502 q0 -143 53.5 -245.5t141.5 -102.5t141 102t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5z" /> +<glyph unicode="õ" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM113 1329q90 72 149.5 102.5t118.5 30.5q63 0 146 -43t120 -43q45 0 70.5 12.5t99.5 61.5l88 -129q-90 -84 -141 -108.5 t-131 -24.5q-47 0 -129 43t-129 43q-72 0 -185 -82zM305 502q0 -143 53.5 -245.5t141.5 -102.5t141 102t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5z" /> +<glyph unicode="ö" horiz-adv-x="999" d="M90 502q0 131 43 248.5t139.5 200.5t227.5 83t227 -83t139 -200.5t43 -248.5q0 -133 -43 -251t-139 -200t-227 -82t-227.5 82t-139.5 200t-43 251zM199 1276q0 57 44 103t101 46q45 0 79 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75zM305 502 q0 -143 53.5 -245.5t141.5 -102.5t141 102t53 246q0 141 -53 244.5t-141 103.5t-141.5 -103.5t-53.5 -244.5zM545 1276q0 57 44 103t99 46q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75z" /> +<glyph unicode="÷" horiz-adv-x="1001" d="M96 420v184h807v-184h-807zM342 213q0 63 47 108.5t111 45.5q59 0 99 -38t40 -98q0 -61 -47 -106t-111 -45q-59 0 -99 37t-40 96zM342 799q0 63 47 108t111 45q59 0 99 -37.5t40 -97.5q0 -63 -47 -108t-111 -45q-59 0 -99 38t-40 97z" /> +<glyph unicode="ø" horiz-adv-x="999" d="M90 500q0 129 42 246.5t138.5 202.5t229.5 85q49 0 96 -12l49 172h103l-60 -213q111 -68 166 -202t55 -279q0 -205 -107.5 -368t-301.5 -163q-49 0 -99 13l-57 -205h-102l69 246q-111 68 -166 201t-55 276zM305 500q0 -182 64 -275l176 619q-20 6 -45 6q-59 0 -100.5 -36 t-59.5 -94t-26.5 -111.5t-8.5 -108.5zM453 160q18 -8 47 -8q59 0 100 35.5t59.5 94t26.5 110.5t8 108q0 184 -65 278z" /> +<glyph unicode="ù" horiz-adv-x="1058" d="M152 258v746h215v-746q0 -53 17 -75.5t71 -22.5q104 0 241 102v742h215v-818q0 -68 41 -98l-65 -119q-47 4 -96.5 43t-61.5 80q-66 -49 -149.5 -86t-151.5 -37q-147 0 -211.5 71t-64.5 218zM276 1407l173 176q121 -168 342 -328l-99 -139q-260 135 -416 291z" /> +<glyph unicode="ú" horiz-adv-x="1058" d="M152 258v746h215v-746q0 -53 17 -75.5t71 -22.5q104 0 241 102v742h215v-818q0 -68 41 -98l-65 -119q-47 4 -96.5 43t-61.5 80q-66 -49 -149.5 -86t-151.5 -37q-147 0 -211.5 71t-64.5 218zM268 1255q96 70 182.5 152t122.5 129l37 47l172 -176q-156 -156 -415 -291z" /> +<glyph unicode="û" horiz-adv-x="1058" d="M152 258v746h215v-746q0 -53 17 -75.5t71 -22.5q104 0 241 102v742h215v-818q0 -68 41 -98l-65 -119q-47 4 -96.5 43t-61.5 80q-66 -49 -149.5 -86t-151.5 -37q-147 0 -211.5 71t-64.5 218zM176 1253q184 127 346 334q14 -20 41 -53t117 -121t188 -158l-100 -139 q-119 63 -246 187q-125 -125 -248 -189z" /> +<glyph unicode="ü" horiz-adv-x="1058" d="M152 258v746h215v-746q0 -53 17 -75.5t71 -22.5q104 0 241 102v742h215v-818q0 -68 41 -98l-65 -119q-47 4 -96.5 43t-61.5 80q-66 -49 -149.5 -86t-151.5 -37q-147 0 -211.5 71t-64.5 218zM223 1276q0 57 43 103t101 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5 t-103 -43.5q-45 0 -77 30t-32 75zM569 1276q0 57 43 103t101 46q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -76 30t-31 75z" /> +<glyph unicode="ý" horiz-adv-x="929" d="M23 1004h227l180 -564q43 -137 53 -207q125 360 205 771h219q-33 -147 -79 -314.5t-115.5 -381.5t-158.5 -383t-175 -230q-33 -25 -86 -46.5t-90 -29.5l-37 -10l-47 162q90 29 139 71q47 41 113 158zM367 1296q96 70 182 152t123 129l37 47l172 -176q-184 -170 -416 -291 z" /> +<glyph unicode="ÿ" horiz-adv-x="929" d="M23 1004h227l180 -564q43 -137 53 -207q125 360 205 771h219q-33 -147 -79 -314.5t-115.5 -381.5t-158.5 -383t-175 -230q-33 -25 -86 -46.5t-90 -29.5l-37 -10l-47 162q90 29 139 71q47 41 113 158zM182 1276q0 57 44 103t100 46q47 0 80.5 -32.5t33.5 -77.5 q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM528 1276q0 57 43 103t101 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="Œ" horiz-adv-x="1290" d="M102 653q0 106 25 212t74 204t137 159.5t203 61.5h663v-198h-473v-320h363v-201h-363v-368h494v-203h-684q-117 0 -206 63.5t-137 165t-72 208.5t-24 216zM319 633q0 -408 189 -440v903q-189 -35 -189 -463z" /> +<glyph unicode="œ" horiz-adv-x="1558" d="M102 494q0 129 43 248.5t139.5 205.5t229.5 86q178 0 285 -139q123 139 303 139q152 0 255 -118.5t109 -272.5l7 -135h-590q0 -72 17.5 -147.5t67.5 -141t122 -65.5q139 0 256 71l73 -155q-162 -100 -354 -101q-156 0 -272 133q-113 -133 -279 -133q-129 0 -226.5 83 t-141.5 200t-44 242zM317 493.5q0 -55.5 8.5 -107.5t28 -108.5t60.5 -91t100 -34.5q121 0 174 165q-23 96 -22 185q0 100 22 178q-49 170 -174 170q-57 0 -99 -37t-61.5 -96.5t-28 -113.5t-8.5 -109.5zM913 686h332q-10 68 -51 118t-104.5 50t-107.5 -49t-69 -119z" /> +<glyph unicode="Ÿ" horiz-adv-x="964" d="M27 1290h239l215 -583l228 583h229l-344 -809v-481h-223v483zM186 1528q0 59 43 104t101 45q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -76 30t-31 75zM532 1528q0 59 43 104t101 45q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5 q-45 0 -76 30t-31 75z" /> +<glyph unicode="ˆ" horiz-adv-x="823" d="M92 1253q193 131 346 334q14 -20 41 -53t117 -121t188 -158l-98 -139q-117 61 -248 187q-115 -119 -248 -189z" /> +<glyph unicode="˜" horiz-adv-x="778" d="M-14 1329q92 72 150.5 102.5t117.5 30.5q63 0 146 -43t120 -43q45 0 73 12.5t97 61.5l88 -129q-90 -84 -141 -108.5t-129 -24.5q-47 0 -130 43t-128 43q-74 0 -187 -82z" /> +<glyph unicode="–" horiz-adv-x="733" d="M0 430v184h733v-184h-733z" /> +<glyph unicode="—" horiz-adv-x="1245" d="M0 432v184h1245v-184h-1245z" /> +<glyph unicode="‘" horiz-adv-x="546" d="M70 1006q109 213 290 397l127 -88q-137 -195 -137 -328q0 -18 4 -51q-61 -49 -121 -49q-43 0 -87.5 37t-75.5 82z" /> +<glyph unicode="’" horiz-adv-x="552" d="M63 891q137 199 138 330q0 25 -6 49q68 51 122 51q43 0 88.5 -37t75.5 -82q-109 -209 -291 -399z" /> +<glyph unicode="‚" horiz-adv-x="528" d="M27 -229q137 199 137 327q0 35 -4 52q61 49 123 49q43 0 89 -37t74 -82q-109 -213 -290 -397z" /> +<glyph unicode="“" horiz-adv-x="913" d="M66 1006q109 213 290 397l127 -88q-137 -195 -137 -328q0 -18 4 -51q-61 -49 -121 -49q-43 0 -87.5 37t-75.5 82zM440 1006q117 221 293 397l127 -88q-137 -195 -137 -328q0 -18 4 -51q-61 -49 -123 -49q-80 0 -164 119z" /> +<glyph unicode="”" horiz-adv-x="913" d="M59 891q137 199 138 330q0 25 -7 49q68 51 123 51q43 0 88 -37t76 -82q-109 -209 -291 -399zM434 891q139 203 139 330q0 25 -6 49q63 51 123 51q41 0 88 -37t76 -82q-109 -209 -291 -399z" /> +<glyph unicode="„" horiz-adv-x="888" d="M27 -223q137 195 137 327q0 35 -4 52q61 49 123 49q41 0 88 -37t75 -82q-109 -213 -290 -397zM371 -223q137 195 137 327q0 18 -4 52q61 49 121 49q43 0 88 -37t75 -82q-109 -213 -290 -397z" /> +<glyph unicode="•" horiz-adv-x="868" d="M63 645.5q0 151.5 109 260t260.5 108.5t261 -108.5t109.5 -260t-109.5 -260.5t-261 -109t-260.5 109t-109 260.5z" /> +<glyph unicode="…" horiz-adv-x="1236" d="M100 104.5q0 61.5 47.5 106.5t110.5 45q59 0 99 -37t40 -96q0 -61 -47 -107.5t-108.5 -46.5t-101.5 37t-40 98.5zM451 104.5q0 61.5 47 106.5t110 45q59 0 99.5 -37t40.5 -96q0 -61 -47.5 -107.5t-109 -46.5t-101 37t-39.5 98.5zM797 104.5q0 61.5 47 106.5t110 45 q59 0 99.5 -37t40.5 -96q0 -61 -47.5 -107.5t-108.5 -46.5t-101 37t-40 98.5z" /> +<glyph unicode="‹" horiz-adv-x="614" d="M33 512l403 410l146 -117l-295 -289l299 -297l-146 -117z" /> +<glyph unicode="›" horiz-adv-x="614" d="M29 219l297 293l-293 293l145 117l404 -410l-408 -410z" /> +<glyph unicode="™" horiz-adv-x="1642" d="M145 1278v129h500v-129h-182v-684h-137v684h-181zM713 596v813h166l192 -551l19 -72q6 35 18 72l192 551h166v-813h-139v448l8 95l-186 -543h-117l-188 543l10 -95v-448h-141z" /> +<glyph unicode="" horiz-adv-x="1004" d="M0 1005h1005v-1005h-1005v1005z" /> +<glyph unicode="fi" horiz-adv-x="1069" d="M37 846v158h127v92q0 96 38 166.5t101.5 107.5t133 54.5t147.5 17.5q51 0 107.5 -8.5t119.5 -25.5t104 -55t41 -91q0 -61 -44 -100.5t-105 -39.5q-59 0 -86 29t-38 64.5t-24 44.5q-45 27 -112 26q-66 0 -116 -60.5t-50 -178.5v-43h188v-181h-188v-823h-217v827zM713 0 v1004h211v-1004h-211z" /> +<glyph unicode="fl" horiz-adv-x="1069" d="M37 846v158h129v73q0 174 100.5 264.5t253.5 90.5q119 0 191 -91l4 -4v84h211v-1001q0 -182 69 -420h-221q-59 152 -59 420v774q-51 74 -156 74q-100 0 -139 -57.5t-39 -163.5v-43h188v-181h-188v-823h-215v827z" /> +<glyph unicode="ffi" horiz-adv-x="1658" d="M27 850v154h131v114q0 63 21.5 116.5t54 86.5t73.5 58.5t82 38t74 19.5t53 9h23l36 -156q-8 0 -21 -2t-49 -13t-62.5 -28.5t-48 -54.5t-21.5 -84v-104h186v-181h-186v-823h-215v827zM612 850v154h131v114q0 63 21.5 116.5t54.5 86.5t74 58.5t82 38t73.5 19.5t53.5 9h22 l37 -156q-8 0 -21.5 -2t-49 -13t-62.5 -28.5t-48.5 -54.5t-21.5 -84v-104h187v-181h-187v-823h-215v827zM1274 1251q0 57 44 99.5t101 42.5q55 0 96 -38t41 -93q0 -57 -44 -99.5t-101 -42.5q-55 0 -96 38t-41 93zM1309 0v1004h211v-1004h-211z" /> +<glyph unicode="ffl" horiz-adv-x="1654" d="M27 850v154h131v114q0 63 21.5 116.5t54 86.5t73.5 58.5t82 38t74 19.5t53 9h23l36 -156q-8 0 -21 -2t-49 -13t-62.5 -28.5t-48 -54.5t-21.5 -84v-104h186v-181h-186v-823h-215v827zM612 850v154h131v114q0 63 21.5 116.5t54.5 86.5t74 58.5t82 38t73.5 19.5t53.5 9h22 l37 -156q-8 0 -21.5 -2t-49 -13t-62.5 -28.5t-48.5 -54.5t-21.5 -84v-104h187v-181h-187v-823h-215v827zM1296 420v1003h211v-1003q0 -182 70 -420h-221q-60 152 -60 420z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-bold-webfont.ttf b/public/stylesheets/fonts/delicious-bold-webfont.ttf Binary files differnew file mode 100755 index 000000000..2ec5d3e49 --- /dev/null +++ b/public/stylesheets/fonts/delicious-bold-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-bold-webfont.woff b/public/stylesheets/fonts/delicious-bold-webfont.woff Binary files differnew file mode 100755 index 000000000..b47277ef1 --- /dev/null +++ b/public/stylesheets/fonts/delicious-bold-webfont.woff diff --git a/public/stylesheets/fonts/delicious-bolditalic-webfont.eot b/public/stylesheets/fonts/delicious-bolditalic-webfont.eot Binary files differnew file mode 100755 index 000000000..8e8957864 --- /dev/null +++ b/public/stylesheets/fonts/delicious-bolditalic-webfont.eot diff --git a/public/stylesheets/fonts/delicious-bolditalic-webfont.svg b/public/stylesheets/fonts/delicious-bolditalic-webfont.svg new file mode 100755 index 000000000..7368c90f2 --- /dev/null +++ b/public/stylesheets/fonts/delicious-bolditalic-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : 40 I1995 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousBoldItalic" horiz-adv-x="921" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="	" horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="!" horiz-adv-x="514" d="M74 104.5q0 61.5 50 105.5t114 44q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5zM168 381l14 309q6 160 10.5 223.5t21.5 176t50 217.5l31 102l237 27q-100 -254 -135 -602q-20 -219 -45 -453h-184z" /> +<glyph unicode=""" horiz-adv-x="583" d="M166 999l4 314l51 137h141l11 -147l-90 -304h-117zM453 999l4 314l51 137h141l10 -147l-90 -304h-116z" /> +<glyph unicode="#" horiz-adv-x="1138" d="M106 412l29 206h164l25 216h-140l37 206h129l39 379h189l-39 -379h137l41 344h188l-41 -344h160l-18 -206h-164l-27 -216h129l-18 -206h-138l-51 -412h-188l51 412h-139l-51 -359h-189l51 359h-166zM487 618h140l26 216h-139z" /> +<glyph unicode="$" horiz-adv-x="878" d="M37 92l121 164q78 -68 170 -82l61 393l-131 99q-124 91 -124 240q0 25 3 52q16 147 114.5 246t250.5 113l16 106h123l-16 -110q59 -12 116.5 -48t85.5 -65l27 -29l-137 -114q-45 45 -123 59l-55 -364l75 -54q164 -119 164 -292q0 -164 -100 -283t-256 -148l-21 -131h-122 l18 127q-68 8 -133.5 38t-95.5 57zM367 954q0 -63 61 -120l43 272q-104 -39 -104 -152zM455 197q102 53 102 159q0 68 -59 127z" /> +<glyph unicode="%" horiz-adv-x="1431" d="M90 1032q0 119 84 204t205 85q104 0 182 -66l311 64l144 -39l-451 -1280h-200l401 1106h-109q10 -41 11 -74q0 -119 -84 -204t-205 -85t-205 85t-84 204zM266 1032q0 -45 33 -78.5t80 -33.5t80 33.5t33 78.5t-33 79t-80 34t-80 -34t-33 -79zM756 256q0 121 85 205 t203.5 84t203.5 -84t85 -205t-85 -205t-203.5 -84t-203.5 84t-85 205zM932 256q0 -47 33.5 -80t79 -33t79 33t33.5 80t-33.5 80t-79 33t-79 -33t-33.5 -80z" /> +<glyph unicode="&" horiz-adv-x="1800" d="M117 590q0 262 184 457.5t451 246.5l28 -182q-201 -53 -325 -217q-100 -132 -101 -284q0 -38 6 -76q309 252 551 469q105 95 105 170q0 51 -49 97q-47 44 -97 62l54 115q12 -2 32.5 -8t72.5 -31t92 -53.5t73 -79.5t33 -111q0 -141 -166 -280l-631 -533q135 -199 401 -198 q236 0 420.5 164.5t184.5 398.5q0 78 -21 133h-137l-25 115q86 41 148 41q156 0 209 -80t53 -221q0 -209 -128 -381t-317.5 -262.5t-392.5 -92.5h-10q-182 0 -338 71q-160 73 -260 217.5t-100 332.5z" /> +<glyph unicode="'" horiz-adv-x="301" d="M164 999l6 314l51 137h141l11 -147l-90 -304h-119z" /> +<glyph unicode="(" horiz-adv-x="716" d="M140 522q11 213 86 410.5t226.5 379t356.5 306.5l-2 -205q-199 -125 -331 -348t-157 -461q-5 -52 -5 -103q0 -183 69 -354q39 -84 69.5 -123.5t137.5 -146.5l-98 -139q-211 174 -289 383q-64 163 -64 345q0 28 1 56z" /> +<glyph unicode=")" horiz-adv-x="696" d="M-33 -117q129 102 172 144.5t109 128.5q154 205 199 455q19 103 19 200q0 140 -39 268q-67 217 -226 340l47 195q229 -170 327 -427q69 -181 70 -376q0 -81 -12 -164q-41 -283 -209 -538q-129 -197 -389 -388z" /> +<glyph unicode="*" horiz-adv-x="808" d="M74 758l229 264l-227 76l69 176l205 -100l-31 208h322l-102 -208l217 100l49 -176l-250 -82l145 -307h-202l-82 192l-164 -199z" /> +<glyph unicode="+" horiz-adv-x="964" d="M92 418v188h299v322h180v-322h301v-188h-301v-322h-180v322h-299z" /> +<glyph unicode="," horiz-adv-x="528" d="M-55 -201q106 129 141 211q18 41 25 133l25 11q15 6 49 15t51 9q37 -2 70.5 -31.5t47.5 -56.5l15 -29l-70 -110q-45 -72 -262 -246z" /> +<glyph unicode="-" horiz-adv-x="618" d="M106 436v172h406v-172h-406z" /> +<glyph unicode="." horiz-adv-x="528" d="M74 104.5q0 61.5 50 105.5t114 44q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5z" /> +<glyph unicode="/" horiz-adv-x="755" d="M-154 -303l793 1853h201l-805 -1853h-189z" /> +<glyph unicode="0" d="M49 383q0 104 32 215t90 210t155.5 162.5t214.5 63.5q168 0 249.5 -116.5t81.5 -284.5q0 -152 -51 -299.5t-165.5 -256t-268.5 -108.5q-168 0 -253 122t-85 292zM264 399q0 -98 32 -168.5t103 -70.5q90 0 151.5 78.5t84 178t22.5 204.5q0 217 -141 217q-80 0 -139.5 -75 t-86 -172.5t-26.5 -191.5z" /> +<glyph unicode="1" d="M231 791l25 167q133 0 260 43h164l-143 -1001h-199l115 791h-222z" /> +<glyph unicode="2" d="M102 178q180 92 357 275q182 197 182 303q0 35 -24.5 58.5t-71.5 23.5q-94 0 -260 -97l-82 148q84 59 120.5 81.5t104.5 43t147 20.5q233 0 277 -182q8 -35 8 -71q0 -56 -19 -114q-32 -97 -99.5 -185.5t-135 -155t-143.5 -125.5h344l-31 -201h-661z" /> +<glyph unicode="3" d="M53 -182q135 12 250 51q274 102 275 338q0 47 -33 72.5t-66 29.5t-86 4q-98 0 -184 -10l-14 178q33 4 78.5 8.5t58.5 6.5l223 161q88 66 88 129q0 25 -17.5 40.5t-45.5 15.5q-41 0 -166 -54l-119 -51l-64 152l115 53q201 92 281 92q111 0 172 -57t61 -170 q0 -68 -49 -134.5t-98 -103.5t-127 -86q211 -31 211 -237q0 -172 -96.5 -307.5t-254.5 -204.5q-168 -72 -358 -72z" /> +<glyph unicode="4" d="M37 0l16 170l58 86q229 356 473 662l69 86h215l-127 -824h121l-33 -180h-124q-55 -242 -127 -352l-162 69q31 66 80 283h-459zM293 180h237l74 475q-61 -86 -311 -475z" /> +<glyph unicode="5" d="M63 -180q143 0 275 59q113 49 183.5 134t70.5 196q0 106 -179 106q-65 0 -155 -14l-78 -14l164 717h533l-29 -193h-334l-76 -313q43 6 92 6q119 0 201 -67.5t82 -188.5q0 -178 -103.5 -311.5t-267.5 -204.5q-162 -74 -348 -74z" /> +<glyph unicode="6" d="M96 381q0 426 346 719q152 127 359 223l65 -145q-166 -100 -227 -150q-162 -123 -256 -311q-35 -70 -58.5 -168t-23.5 -176q0 -88 32 -150.5t93 -62.5q72 0 123 63.5t69.5 140t18.5 150.5q0 86 -62 110q-57 22 -166 21h-20l174 168q104 0 194.5 -77t90.5 -218 q0 -215 -125 -383t-326 -168q-86 0 -147.5 38t-93 101.5t-46 131t-14.5 143.5z" /> +<glyph unicode="7" d="M84 -250q193 219 350.5 505t204.5 548h-473l31 201h682l-25 -168q-43 -285 -229.5 -636.5t-395.5 -582.5z" /> +<glyph unicode="8" d="M66 287q0 119 72.5 222t183.5 165q-129 94 -129 231q0 162 114.5 273.5t278.5 111.5q137 0 219 -69q84 -70 84 -191q0 -203 -244 -352q88 -39 141.5 -111.5t53.5 -167.5q0 -49 -19 -114q-43 -145 -162.5 -231.5t-273.5 -86.5q-139 0 -229 90.5t-90 229.5zM283 315 q0 -68 36.5 -114.5t100.5 -46.5q80 0 139 76.5t59 158.5q0 39 -16 69.5t-29.5 43t-56.5 40t-53 33.5q-180 -98 -180 -260zM399 907q0 -72 93 -129q18 8 55 29q53 27 96 85t43 112q0 104 -121 104q-72 0 -119 -63.5t-47 -137.5z" /> +<glyph unicode="9" d="M74 -176q166 100 227 149q162 123 256 312q35 70 59.5 169t24.5 175q0 213 -127 213q-68 0 -118 -63.5t-71.5 -141.5t-21.5 -150q0 -86 62 -109q57 -22 166 -22h20l-174 -168q-104 0 -194.5 77t-90.5 218q0 215 124 383t327 168q115 0 186.5 -68.5t94 -154.5t22.5 -190 q0 -410 -348 -719q-137 -121 -359 -224z" /> +<glyph unicode=":" horiz-adv-x="528" d="M74 104.5q0 61.5 50 105.5t114 44q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5zM158 682q0 61 50 105t114 44q59 0 99 -36.5t40 -96.5q0 -61 -50.5 -106t-113.5 -45q-59 0 -99 38t-40 97z" /> +<glyph unicode=";" horiz-adv-x="528" d="M-55 -201q106 129 141 211q18 41 25 133l25 11q15 6 49 15t51 9q37 -2 70.5 -31.5t47.5 -56.5l15 -29l-70 -110q-45 -72 -262 -246zM158 682q0 61 50 105t114 44q59 0 99 -36.5t40 -96.5q0 -61 -50.5 -106t-113.5 -45q-59 0 -99 38t-40 97z" /> +<glyph unicode="<" horiz-adv-x="614" d="M53 512l371 397l137 -116l-266 -277l268 -285l-135 -116z" /> +<glyph unicode="=" horiz-adv-x="983" d="M90 293v172h782v-172h-782zM90 549v172h782v-172h-782z" /> +<glyph unicode=">" horiz-adv-x="614" d="M51 231l268 285l-266 277l137 116l371 -397l-375 -397z" /> +<glyph unicode="?" horiz-adv-x="813" d="M92 104.5q0 61.5 50.5 105.5t113.5 44q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5zM193 1362l122 131q51 -70 105 -70h160q82 0 136 -31.5t71.5 -76.5t25.5 -95q3 -20 3 -38q0 -26 -7 -47q-8 -43 -40 -99.5t-55.5 -86t-83 -97.5t-65.5 -74 q-94 -111 -119.5 -158t-37.5 -126l-17 -113h-184l12 113q18 172 88 256l185 231l33 41l39.5 48t26.5 46q14 29 13 62q0 59 -51 59h-152q-113 0 -202 117z" /> +<glyph unicode="@" horiz-adv-x="1622" d="M92 727q0 297 221.5 525.5t515.5 228.5q326 0 510.5 -175.5t184.5 -476.5q0 -55 -13 -110q-33 -168 -165 -294t-295 -126h-6q-64 0 -114 41q-52 43 -54 104l-53 -35q-32 -22 -105 -56q-62 -29 -106 -28q-8 0 -15 1q-113 14 -149 171q-16 67 -16 132q0 87 28 170 q49 166 131 253t244 87q35 0 77.5 -21.5t69.5 -44.5l25 -20l14 57h172l-141 -575q-9 -22 -9 -44q0 -12 3 -24q8 -33 38 -33q100 0 170 105.5t82 199.5q6 43 6 90q0 227 -139 353.5t-377 126.5q-225 0 -382.5 -178.5t-157.5 -407.5q0 -242 159.5 -407.5t403.5 -178.5 q18 -1 35 -1q283 0 497 218l109 -98q-252 -287 -636 -287h-5q-319 4 -538.5 222.5t-219.5 535.5zM641 758q-26 -104 -26 -168q0 -97 62 -97q11 0 23 3q27 6 76 28.5t84 40.5l35 19l82 340q-98 59 -158 59q-123 0 -178 -225z" /> +<glyph unicode="A" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM442 567h209l-47 398z" /> +<glyph unicode="B" horiz-adv-x="1017" d="M84 29l192 1261h322q160 0 258 -66.5t98 -215.5q0 -109 -63.5 -193t-145.5 -121q188 -47 189 -252q0 -29 -6 -59q-31 -193 -174.5 -303.5t-341.5 -110.5q-90 1 -328 60zM330 184q68 -18 98 -18q123 0 202 76.5t79 199.5q0 45 -18.5 74t-55.5 41t-66.5 15t-76.5 3h-99z M424 774h90h6q88 0 150 59q63 60 63 150q0 72 -32.5 97.5t-120.5 25.5h-107z" /> +<glyph unicode="C" horiz-adv-x="1007" d="M94 481q0 70 15 170q18 115 68 230.5t125 215t181.5 162t223.5 62.5q209 0 319 -90l6 -4l-108 -156q-86 55 -236 55q-68 0 -134.5 -56t-109.5 -124q-57 -88 -91 -219t-34 -244q0 -127 49.5 -223t161.5 -96q117 0 254 82l86 -156q-70 -55 -172 -88t-194 -33 q-215 0 -312.5 140.5t-97.5 371.5z" /> +<glyph unicode="D" horiz-adv-x="1126" d="M82 0l201 1290h374q231 0 328 -174q65 -117 65 -293q0 -86 -16 -186q-49 -309 -210.5 -473t-372.5 -164h-369zM338 201h131q100 0 174 65.5t111 169t53 201.5t16 190q0 262 -192 263h-154z" /> +<glyph unicode="E" horiz-adv-x="911" d="M82 0l199 1290h675l-28 -198h-451l-49 -318h332l-31 -205h-334l-57 -366h469l-31 -203h-694z" /> +<glyph unicode="F" horiz-adv-x="845" d="M82 0l197 1290h620l-27 -196h-397l-51 -322h317l-28 -203h-318l-90 -569h-223z" /> +<glyph unicode="G" horiz-adv-x="1060" d="M94 481q0 139 43 285.5t119 270.5t194.5 204t256.5 80q98 0 180 -23.5t114 -48.5l33 -22l-110 -156q-88 55 -236 55q-63 0 -133 -57t-111 -123q-57 -88 -91 -219t-34 -244q0 -78 16.5 -144.5t68 -119.5t128.5 -53l136 16l65 408h215l-88 -563q-186 -57 -352 -58 q-215 0 -314.5 140.5t-99.5 371.5z" /> +<glyph unicode="H" horiz-adv-x="1120" d="M84 0l201 1290h225l-80 -518h350l84 518h228l-201 -1290h-229l92 571h-353l-90 -571h-227z" /> +<glyph unicode="I" horiz-adv-x="485" d="M61 0l189 1290h225l-190 -1290h-224z" /> +<glyph unicode="J" horiz-adv-x="487" d="M-119 -170l51 20q115 43 129 136l189 1304h225l-194 -1327q-16 -117 -93 -182q-100 -88 -278 -117z" /> +<glyph unicode="K" horiz-adv-x="931" d="M78 0l198 1290h228l-70 -475l170 170q103 103 103 227q0 26 -5 54l213 41l7 -24q4 -15 7 -59q1 -15 1 -29q0 -29 -4 -57q-6 -42 -32 -96.5t-69 -97.5l-315 -313l401 -537v-94h-215l-321 449l-68 -449h-229z" /> +<glyph unicode="L" horiz-adv-x="761" d="M86 0l205 1290h221l-174 -1093h389l-27 -197h-614z" /> +<glyph unicode="M" horiz-adv-x="1517" d="M82 0l205 1290h270l178 -831q12 -53 13 -148q18 88 51 154l418 825h274l-205 -1290h-233l100 635l41 225q-74 -213 -98 -264l-295 -596h-191l-139 641l-22 219l-33 -215l-101 -645h-233z" /> +<glyph unicode="N" horiz-adv-x="1132" d="M82 0l201 1290h262l196 -702l29 -156q0 164 8 219l99 639h229l-201 -1290h-217l-250 899q-2 -86 -14 -166l-115 -733h-227z" /> +<glyph unicode="O" horiz-adv-x="1120" d="M119 483q0 98 20.5 208t66.5 222.5t109.5 202.5t158.5 147.5t206 57.5q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -98 -20 -207.5t-66.5 -223.5t-111 -204t-159.5 -147.5t-206 -57.5q-100 0 -174 47t-112.5 125t-57 163t-18.5 179zM338 430q0 -256 164 -256 q88 0 155.5 78t101.5 194.5t49 220t15 185.5q0 264 -164 264q-88 0 -154.5 -80t-100 -197.5t-50 -223t-16.5 -185.5z" /> +<glyph unicode="P" horiz-adv-x="991" d="M82 0l199 1290h288q238 0 341 -121q82 -96 83 -227q0 -34 -6 -70q-29 -193 -162 -315.5t-321 -122.5q-29 0 -58.5 7.5t-46.5 13.5l-16 8l-76 -463h-225zM410 655q51 -23 98 -22q98 0 166.5 70.5t89.5 183.5q5 29 5 53q0 61 -32 101q-45 56 -186 57h-72z" /> +<glyph unicode="Q" horiz-adv-x="1071" d="M94 483q0 125 33 263.5t96.5 270.5t176 218t253.5 86q102 0 178 -49t114 -130t55.5 -165t17.5 -172q0 -330 -143.5 -569.5t-419.5 -368.5l63 -35q54 -28 137 -28q122 0 306 61l-48 -248l-30 -6q-20 -4 -81 -9q-38 -3 -75 -4q-22 0 -44 2q-58 3 -135 24q-76 20 -142 57 l-205 116l-25 115l215 98q-147 51 -222 179t-75 294zM315 475q0 -272 238 -315q242 207 242 665q0 289 -160 289q-88 0 -154.5 -69.5t-100.5 -176t-49.5 -207t-15.5 -186.5z" /> +<glyph unicode="R" horiz-adv-x="1017" d="M82 0l199 1290h288q182 0 303 -80t121 -264q0 -166 -95 -303t-253 -166l279 -383l-15 -94h-198l-324 449l-8 4l-72 -453h-225zM410 659q55 -25 90 -24q113 0 189.5 86t76.5 205q0 164 -217 164h-72z" /> +<glyph unicode="S" horiz-adv-x="878" d="M37 92l121 164q96 -84 202 -84q78 0 137.5 54.5t59.5 129.5q0 84 -80 144l-219 166q-124 91 -124 240q0 25 3 52q18 160 134 261.5t288 101.5q152 0 283 -137l12 -13l-137 -114q-63 63 -172 63q-74 0 -126 -46t-52 -120q0 -76 79 -135l168 -121q164 -119 164 -292 q0 -186 -126 -311.5t-312 -125.5q-80 0 -155.5 31t-110.5 61z" /> +<glyph unicode="T" horiz-adv-x="800" d="M92 1075l33 211h784l-32 -211h-279l-164 -1075h-223l164 1075h-283z" /> +<glyph unicode="U" horiz-adv-x="1114" d="M126 317q-4 35 -4 70q0 64 13 129l119 774h227l-123 -788q-10 -104 -10 -163q0 -67 33 -115q35 -50 111 -50q193 0 245 342l121 774h227l-122 -794q-23 -147 -79.5 -261t-163 -190t-249.5 -76q-113 0 -190.5 48.5t-110.5 125t-44 174.5z" /> +<glyph unicode="V" horiz-adv-x="991" d="M115 1290h239l135 -954l224 440q57 113 57 275v239h231v-237q0 -201 -81 -357l-371 -696h-225z" /> +<glyph unicode="W" horiz-adv-x="1517" d="M158 1290h241l35 -721l-2 -190q33 147 53 201l281 710h217l45 -743l4 -168q37 96 68 162l114 231q86 176 86 301q-2 119 -2 217h232v-237q0 -135 -105 -353l-348 -700h-215l-47 768q-1 13 -1 31q0 55 9 159q-16 -88 -41 -157l-50 -134l-98 -258l-110 -292 q-43 -117 -41 -117h-227z" /> +<glyph unicode="X" horiz-adv-x="1013" d="M10 0v94l416 572l-268 624h248l182 -420l293 420h184v-92l-385 -534l289 -664h-258l-191 453l-319 -453h-191z" /> +<glyph unicode="Y" horiz-adv-x="880" d="M55 1165l154 154q129 -82 209 -246q49 -104 61 -262q35 154 138.5 304.5t232.5 217.5l143 -151q-61 -39 -113.5 -87t-94.5 -114t-73.5 -120t-60.5 -141l-46 -138q-17 -51 -38 -154l-28 -143q-8 -41 -26 -150l-21 -135h-224l74 471q-14 127 -20 164q-20 164 -86 314 t-181 216z" /> +<glyph unicode="Z" horiz-adv-x="909" d="M49 180l574 901h-390l19 209h670l-21 -184l-577 -895h546l-30 -211h-789z" /> +<glyph unicode="[" horiz-adv-x="589" d="M12 -319l264 1818h355l-29 -192h-168l-209 -1434h168l-28 -192h-353z" /> +<glyph unicode="\" horiz-adv-x="686" d="M12 1550h189l493 -1853h-188z" /> +<glyph unicode="]" horiz-adv-x="595" d="M-14 -319l28 192h168l209 1434h-168l27 192h354l-266 -1818h-352z" /> +<glyph unicode="^" horiz-adv-x="1277" d="M119 655l442 795h152q190 -365 444 -795h-221l-299 531l-299 -531h-219z" /> +<glyph unicode="_" d="M0 -154h922v-122h-922v122z" /> +<glyph unicode="`" horiz-adv-x="518" d="M88 1403l180 156q90 -154 264 -295l-108 -125q-195 112 -336 264z" /> +<glyph unicode="a" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46z" /> +<glyph unicode="b" horiz-adv-x="1038" d="M102 109l201 1314h217l-76 -493q10 12 29 29.5t73 46t105 28.5q152 0 224.5 -101.5t72.5 -273.5q0 -119 -33.5 -238.5t-97 -221t-166 -166t-227.5 -64.5q-74 0 -154 35t-123 70zM317 197q45 -41 129 -41q74 0 134.5 77.5t88 160.5t40.5 157q10 72 10 125q0 166 -109 166 q-98 0 -207 -125z" /> +<glyph unicode="c" horiz-adv-x="849" d="M92 381q0 133 45 265t119 218q72 82 162 126t160 44q33 0 61.5 -4t50 -9t43 -14.5t33.5 -16.5t26.5 -18t19.5 -17l15 -15l11 -10l-129 -137q-41 57 -148 57q-72 0 -145.5 -94t-98.5 -250q-8 -70 -8 -98q0 -111 40 -180.5t110 -69.5q43 0 99 31.5t93 64.5l35 33l100 -123 q-6 -8 -17 -21.5t-48 -46.5t-76 -58.5t-95 -47t-110 -21.5q-180 0 -276 140q-72 102 -72 272z" /> +<glyph unicode="d" horiz-adv-x="1024" d="M92 395q0 246 141.5 442.5t335.5 196.5q96 0 179 -73q25 143 24 219q0 86 -45 186l170 80q90 -133 90 -293q0 -35 -6 -70l-109 -684q-29 -184 -133 -307t-280 -123q-180 0 -273.5 121t-93.5 305zM313 383q0 -229 152 -229q37 0 67.5 15t52 49t35 59.5t24.5 79l14.5 70.5 t11.5 69l45 276q-84 70 -144 70q-115 0 -186.5 -147.5t-71.5 -311.5z" /> +<glyph unicode="e" horiz-adv-x="894" d="M92 373q0 156 54.5 303t174 252.5t279.5 105.5q262 0 262 -246q0 -86 -56 -156.5t-148.5 -115.5t-175.5 -71.5t-169 -43.5v-28q0 -74 34 -148.5t97 -74.5q59 0 120 25.5t91 49.5l31 25l92 -123q-16 -18 -47 -44t-126 -70t-193 -44q-160 0 -240 119t-80 285zM338 586 q307 72 307 215q0 55 -65 55q-86 0 -148.5 -85t-93.5 -185z" /> +<glyph unicode="f" horiz-adv-x="550" d="M16 -299q111 205 138 524l45 602l-121 21l24 156h115q0 72 10.5 137t34 132.5t73.5 108.5t120 41q33 0 64.5 -5t45.5 -11l17 -6l-25 -168h-63q-14 0 -25.5 -9.5t-18 -27.5t-11.5 -35.5t-7 -44t-3 -43t-1 -40.5v-29h137v-181h-151l-62 -714q-10 -129 -63 -239t-148 -249z " /> +<glyph unicode="g" horiz-adv-x="907" d="M-33 -188q0 90 79 186t159 147l78 52l88 -123l-52 -46q-31 -28 -82 -89.5t-51 -94.5q0 -61 109 -61q102 0 198.5 61.5t96.5 141.5q0 59 -34 96t-103 37l-11 76q49 37 65.5 60.5t37.5 84.5q-113 -63 -178 -64q-133 0 -199 86.5t-66 221.5q0 201 106.5 325.5t305.5 124.5 l315 -35q-12 -205 -52 -432t-109 -342q63 -20 100 -85.5t37 -137.5q0 -98 -52.5 -177t-132 -125t-165.5 -70.5t-164 -24.5q-324 0 -324 207zM317 594q0 -117 93 -117q70 0 117.5 63.5t64.5 143.5q14 66 22 162q-61 12 -127 12q-84 0 -127 -76.5t-43 -187.5z" /> +<glyph unicode="h" horiz-adv-x="1042" d="M84 0l217 1423h219l-92 -581q4 8 13.5 20l38 46t60 59.5t80 46t97.5 20.5q119 0 175 -42t57 -109v-13q0 -63 -9 -139l-66 -422q-18 -121 -52 -184.5t-124 -155.5l-131 109q49 63 64.5 109t32.5 147l65 409q3 20 3 36q0 29 -10 40q-15 18 -60 19q-57 0 -143.5 -82 t-127.5 -160l-90 -596h-217z" /> +<glyph unicode="i" horiz-adv-x="477" d="M66 0l151 1004h217l-153 -1004h-215zM213 1251q0 78 74 121q33 20 73 21q55 0 95.5 -38t40.5 -93q0 -25 -11 -50q-23 -57 -77 -79q-27 -12 -58 -13q-78 0 -119 66q-18 32 -18 65z" /> +<glyph unicode="j" horiz-adv-x="477" d="M-119 -240l56 25q41 18 74.5 58t39.5 85l166 1076h215l-160 -1057q-20 -143 -90.5 -213t-181.5 -107l-96 -33zM213 1251q0 78 74 121q33 20 73 21q55 0 95.5 -38t40.5 -93q0 -25 -11 -50q-23 -57 -77 -79q-27 -12 -58 -13q-78 0 -119 66q-18 32 -18 65z" /> +<glyph unicode="k" horiz-adv-x="980" d="M84 0l217 1423h215l-121 -788q6 2 24.5 3t38 4t36.5 9q92 27 161.5 71t69.5 99q0 33 -19.5 44.5t-76.5 11.5l-17 141q76 16 148 16q96 0 143 -55t47 -137q0 -141 -111.5 -231.5t-248.5 -90.5l362 -520h-278l-305 465l-72 -465h-213z" /> +<glyph unicode="l" horiz-adv-x="493" d="M123 426l143 997h217l-145 -1009q-11 -86 -11 -155q0 -24 2 -46q5 -84 17 -131l12 -47l-206 -58q-41 124 -41 276q0 82 12 173z" /> +<glyph unicode="m" horiz-adv-x="1576" d="M86 0l158 1004h223l-31 -162q117 193 303 192q211 0 211 -178q123 178 291 178q143 0 187 -76q29 -50 30 -130q0 -41 -8 -91l-113 -737h-219l119 750q2 15 2 27q0 65 -63 65q-94 0 -240 -191l-12 -18l-101 -633h-217l121 750q6 22 6 39q0 16 -5 27q-11 24 -62.5 24 t-136.5 -82t-128 -150l-96 -608h-219z" /> +<glyph unicode="n" horiz-adv-x="1060" d="M84 0l158 1004h217l-29 -162q49 80 126 136t161 56q113 0 170 -43t60 -109q1 -18 1 -37q0 -51 -6 -108l-115 -737h-219l119 750q3 21 3 36q0 27 -9 38q-14 17 -57 18q-111 0 -271 -244l-92 -598h-217z" /> +<glyph unicode="o" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM305 365q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209q-68 0 -120 -53.5 t-79.5 -133t-41 -155.5t-13.5 -137z" /> +<glyph unicode="p" horiz-adv-x="1095" d="M70 -358l147 942l-137 -78l31 192l137 86l33 220h219l-11 -74q143 104 220 104q96 0 164.5 -46t96 -118.5t39.5 -159.5q5 -35 4 -70q0 -50 -9 -99q-14 -102 -45 -195.5t-83.5 -182.5t-137.5 -141.5t-191 -52.5q-133 0 -189 109l-69 -436h-219zM413 350q1 -43 10 -75.5 t25.5 -60.5t44 -42t66.5 -14q158 0 221 374q11 75 11 132q0 178 -107 178q-61 0 -225 -119q-2 -14 -10.5 -54t-13.5 -72l-12 -79q-7 -47 -9 -86l-2 -54q1 -14 1 -28z" /> +<glyph unicode="q" horiz-adv-x="1058" d="M94 367q0 143 57.5 293.5t175 262t261.5 111.5q170 0 383 -65l-203 -1327h-219l69 436q-33 -45 -94 -77t-116 -32q-168 0 -241 111t-73 287zM317 362q0 -199 119 -198q78 0 136.5 72.5t86 165t41.5 206.5l31 217q-70 16 -106 17q-88 0 -151.5 -46t-95.5 -122t-46.5 -153 t-14.5 -159z" /> +<glyph unicode="r" horiz-adv-x="710" d="M88 0l154 1004h215l-23 -152l21 35l29 44l29 36q22 27 37 37t38.5 20t48.5 10q86 0 135 -116l-143 -179q-2 4 -6.5 11.5t-18.5 17.5t-31 8q-66 -4 -153 -145l-29 -45l-90 -586h-213z" /> +<glyph unicode="s" horiz-adv-x="843" d="M45 92l113 154q113 -88 200 -88q145 0 162 110q2 8 2 16q0 54 -76 93l-204 115q-61 35 -95 103q-24 50 -23 112q0 23 3 49q23 135 131.5 206.5t251.5 71.5q53 0 103.5 -15t85 -35.5t61 -42t39.5 -36.5l12 -16l-123 -115q-74 76 -201 76q-66 0 -106.5 -35t-40.5 -76 q0 -20 14.5 -38.5t28.5 -27.5t45 -26l180 -96q127 -68 128 -218q0 -43 -11 -93q-27 -115 -128 -193t-265 -78q-66 0 -137.5 31t-110.5 61z" /> +<glyph unicode="t" horiz-adv-x="688" d="M127 840l25 164h124l23 178h197l-25 -178h174l-31 -181h-165l-91 -602q0 -2 -1 -7t-1 -9q0 -49 35 -49q68 0 154 71l63 -147q-125 -111 -258 -111q-201 0 -200 199q0 18 4 59l88 596z" /> +<glyph unicode="u" horiz-adv-x="1038" d="M108 156q-1 11 -1 21q0 43 10 89l114 738h218l-117 -750q-3 -21 -3 -36q0 -27 9 -39q14 -17 57 -17q104 0 271 244l92 598h217l-131 -836q-4 -31 8 -50.5t29 -23.5l14 -4l-78 -121q-10 -1 -22 -1h-14q-22 1 -67.5 15.5t-64.5 47.5q-15 25 -15 67q0 29 7 66 q-53 -78 -135 -136.5t-164 -58.5q-86 0 -140.5 25.5t-72.5 67t-21 94.5z" /> +<glyph unicode="v" horiz-adv-x="866" d="M68 1004h227l115 -719l206 358q28 45 28 119q0 77 -13 135q-12 53 -27 84l207 43l11 -29q7 -18 18.5 -74.5t13.5 -111.5v-13q0 -51 -14 -115q-16 -73 -54 -136l-325 -545h-193z" /> +<glyph unicode="w" horiz-adv-x="1355" d="M76 1004h229l72 -711l262 711h213l68 -711l145 282q37 72 54 124q16 49 17 117q0 78 -32 163l207 45q4 -10 9 -28.5t12 -75t7 -111.5t-17 -130t-54 -138l-307 -541h-203l-58 682q-25 -121 -51 -184l-211 -498h-213z" /> +<glyph unicode="x" horiz-adv-x="864" d="M-14 0v86l338 432l-222 486h238l133 -336l94 96q20 23 31.5 38t24 42.5t10.5 61.5t-19 77l203 43q2 -8 7 -22.5t12 -56.5q4 -28 4 -54q0 -13 -1 -27q-3 -39 -21.5 -87t-55.5 -85l-205 -202l238 -492h-244l-141 334l-248 -334h-176z" /> +<glyph unicode="y" horiz-adv-x="880" d="M-18 -225q106 45 173.5 100t120.5 150l-200 979h229l123 -728l61 109q168 287 168 358q0 113 -43 236l211 45q41 -113 41 -246q0 -121 -67 -237l-336 -584q-78 -137 -177.5 -215t-252.5 -125z" /> +<glyph unicode="z" horiz-adv-x="843" d="M18 0l13 184q248 348 499 627h-430l25 193h709l-21 -173q-281 -301 -522 -632h483l-22 -199h-734z" /> +<glyph unicode="{" horiz-adv-x="720" d="M68 504l24 170q59 0 103.5 44t67 120.5t33.5 141t18.5 146.5t9.5 95q23 168 90 228t159 60h144l6 -184h-143q-39 0 -52.5 -26.5t-25.5 -116.5l-51 -346q-23 -154 -148 -254q77 -80 77 -194q0 -29 -5 -60l-49 -346q-10 -53 -10 -82q0 -12 1 -21q6 -27 45 -26h148l-61 -185 h-130q-188 0 -187 208q0 42 7 91l49 344q3 24 4 46q0 60 -26 97q-35 50 -98 50z" /> +<glyph unicode="|" horiz-adv-x="454" d="M135 -29v1569h184v-1569h-184z" /> +<glyph unicode="}" horiz-adv-x="630" d="M-47 -147h133q29 0 41 5t24.5 35.5t22.5 100.5l51 346q20 145 146 250q-76 84 -76 200q0 28 4 58l51 346q10 66 10 96q0 19 -4 25q-8 10 -30 10h-160l61 184h133q184 0 184 -207q0 -42 -7 -94l-50 -344q-4 -26 -4 -49q0 -57 26 -92q36 -49 99 -49l-24 -170 q-61 0 -114.5 -56.5t-66.5 -148.5l-51 -344q-25 -170 -93.5 -228.5t-160.5 -58.5h-139z" /> +<glyph unicode="~" horiz-adv-x="1140" d="M254 387l47 256q10 10 34.5 37t35 35t32 21.5t48 17.5t65.5 4q78 0 193.5 -53.5t169.5 -53.5q47 0 93 40t144 175l-57 -284q-12 -10 -32.5 -30t-29 -27t-25 -18t-31.5 -14.5t-38.5 -6.5t-56.5 -3q-76 0 -192.5 53.5t-170.5 53.5q-47 0 -90 -37t-139 -166z" /> +<glyph unicode="¡" horiz-adv-x="514" d="M8 -428q100 252 135 600q18 219 45 453h185l-15 -310q-16 -326 -45 -462q-14 -76 -39 -154l-30 -102zM162 886.5q0 61.5 50 105.5t114 44q61 0 101 -36.5t40 -96.5q0 -61 -50 -106t-114 -45q-61 0 -101 36.5t-40 98z" /> +<glyph unicode="¢" horiz-adv-x="849" d="M92 381q0 133 45 265t119 218q117 135 274 166l21 139h123l-21 -141q25 -4 47.5 -10t40 -14.5t30.5 -15.5t24.5 -17t17.5 -17l14 -14l11 -10l-127 -135q-27 33 -86 47l-101 -678q106 25 164 102l100 -123q-14 -16 -39.5 -39.5t-102.5 -70.5t-150 -60l-19 -123h-123 l19 125q-133 20 -209 134q-72 102 -72 272zM309 408q0 -180 92 -236l99 659q-61 -35 -112.5 -118.5t-70.5 -206.5q-8 -69 -8 -98z" /> +<glyph unicode="£" horiz-adv-x="905" d="M25 745l59 148h78v252q0 141 105.5 207.5t240.5 66.5q150 0 242 -78l-56 -149q-86 51 -174 51q-143 0 -143 -127v-223h260v-184h-260v-195q0 -154 -37 -328h100l90 -30q38 -12 73 -13q96 0 167 97l18 28l43 -172q-2 -4 -7 -10l-20 -25q-15 -18 -32.5 -31.5t-46.5 -31.5 t-58.5 -25.5t-68.5 -11.5q-9 -1 -17 -1l-61 11l-106 29h-332q80 352 80 524v195z" /> +<glyph unicode="¤" horiz-adv-x="1110" d="M-31 463l107 172h110q0 14 9 55q0 6 3 28.5t5 29.5h-180l110 176h121q68 217 238 353t401 136q195 0 321 -141l-102 -168q-55 70 -111.5 98.5t-148.5 28.5q-268 0 -385 -307h532l-106 -174h-477q-18 -55 -23 -115h428l-108 -174h-320q2 -156 74 -229.5t197 -73.5 q156 0 348 192l-37 -241q-164 -133 -352 -134q-203 0 -325 130q-116 124 -116 336v22h-213z" /> +<glyph unicode="¥" horiz-adv-x="880" d="M35 293l31 190h274l-16 131h-261l31 191h193q-72 268 -232 360l154 154q129 -82 209 -246q47 -100 61 -280q27 154 133.5 313.5t237.5 226.5l143 -151q-195 -123 -307 -377h211l-31 -191h-252q-25 -86 -34 -131h288l-30 -190h-297q-10 -53 -25.5 -151.5t-23.5 -141.5 h-224l47 293h-280z" /> +<glyph unicode="§" horiz-adv-x="860" d="M25 -158l77 160q160 -100 306 -100q72 0 111.5 33.5t39.5 91.5q0 43 -40 77.5t-150 88.5q-10 4 -56.5 26.5t-61.5 30.5t-54 30.5t-55 41.5l-38 45q-23 27 -30.5 57.5t-7.5 67.5q0 98 62 172.5t163 105.5q-217 96 -217 242q0 141 100 225t256 84q158 0 326 -94l-84 -160 q-150 74 -246 74q-66 0 -102.5 -35t-36.5 -90q0 -10 4 -20.5t12 -19.5t15.5 -16.5t21.5 -15.5t20.5 -12t22.5 -11.5t18 -9.5l63 -30l73 -37l67 -38q45 -26 68.5 -48.5t50.5 -52t39 -62.5t12 -70q0 -96 -62.5 -179t-154.5 -113q59 -33 97 -57.5t75 -72t37 -98.5 q0 -154 -100.5 -245t-266.5 -91q-167 0 -374 125zM276 514q0 -41 32 -74.5t85 -33.5q84 0 134.5 36.5t50.5 92.5q0 43 -38 73.5t-94 30.5q-76 0 -123 -35t-47 -90z" /> +<glyph unicode="¨" horiz-adv-x="638" d="M76 1276q0 57 43 103t100 46q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75zM422 1276q0 57 43 103t100 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -75.5 30t-30.5 75z" /> +<glyph unicode="©" horiz-adv-x="1800" d="M246 502q0 174 88 327.5t241 241.5q150 86 328 86q176 0 330 -86q154 -90 240 -242q88 -147 88 -327q0 -186 -91 -334q-88 -152 -243 -240q-154 -86 -324 -86q-174 0 -323 86q-154 88 -242 238q-92 152 -92 336zM410 502q0 -137 67 -254q66 -113 179.5 -177.5 t246.5 -66.5q205 0 346 141q150 145 150 357q0 131 -66 246q-88 154 -260 219q-92 31 -170 30q-131 0 -248 -67q-115 -68 -180 -182q-65 -109 -65 -246zM600 514q0 154 86 255t229 101q113 -2 232 -100l-82 -108q-86 63 -147 63q-51 0 -100.5 -53.5t-49.5 -157.5 q0 -94 40 -163.5t120 -69.5q63 0 143 59l62 -117q-100 -88 -211 -88q-139 0 -230.5 96.5t-91.5 282.5z" /> +<glyph unicode="ª" horiz-adv-x="743" d="M158 969q0 82 24.5 179t70.5 189.5t126 153.5t176 61q70 0 227 -28l-77 -561q-7 -36 -8 -59q0 -28 16 -27l37 8l34 -107q-70 -35 -129 -35q-49 0 -78 37q-25 31 -25 66q0 7 1 14l6 45l-11 -17q-7 -11 -31.5 -39t-51.5 -49.5t-69 -39t-85 -17.5q-153 1 -153 226zM328 958 q0 -23 1 -33t10 -18t30 -8q49 0 118.5 90t81.5 158l43 252q-37 4 -55 4q-53 0 -99 -49t-73 -122t-42 -143.5t-15 -121.5v-9z" /> +<glyph unicode="«" horiz-adv-x="970" d="M37 500l457 393l131 -121l-330 -276l244 -285l-162 -113zM385 500l457 393l133 -121l-332 -276l246 -285l-162 -113z" /> +<glyph unicode="¬" horiz-adv-x="1095" d="M82 717v184h850v-555l-182 -35v406h-668z" /> +<glyph unicode="­" horiz-adv-x="618" d="M106 436v172h406v-172h-406z" /> +<glyph unicode="®" horiz-adv-x="1800" d="M242 500q0 174 88 327.5t241 241.5q150 86 328 86t328 -86q154 -88 241.5 -241.5t87.5 -327.5q0 -184 -90 -334q-92 -156 -243 -240q-150 -86 -324 -86t-324 86q-156 88 -241 240q-92 156 -92 334zM406 500q0 -135 65 -254q70 -117 182 -180q111 -61 246 -64h6 q127 0 242 66.5t180.5 177t65.5 254.5q0 131 -66 245q-41 76 -110 132q-59 55 -148 88q-92 31 -170 30q-131 0 -248 -67q-115 -68 -180 -182.5t-65 -245.5zM692 147v725h178q141 0 211 -65.5t70 -171.5q0 -76 -40 -142.5t-105 -86.5l176 -183v-76h-138l-182 193l-10 12v-205 h-160zM852 530q20 -8 41 -8q45 0 70.5 32t25.5 81q0 94 -119 94h-18v-199z" /> +<glyph unicode="¯" horiz-adv-x="630" d="M45 1174l29 120h565l-29 -120h-565z" /> +<glyph unicode="°" horiz-adv-x="638" d="M68 1044q18 115 113 197t210 82q119 0 192 -86q58 -69 58 -158q0 -23 -4 -47q-18 -115 -113.5 -196.5t-210.5 -81.5q-119 0 -191 86q-58 69 -58 158q0 22 4 46zM219 1032q-2 -11 -2 -22q0 -39 25 -68q31 -37 84 -37q57 0 103 41t56 98q2 11 2 22q0 39 -24 69 q-31 37 -84 36q-57 0 -103.5 -41t-56.5 -98z" /> +<glyph unicode="±" horiz-adv-x="915" d="M78 487v172h313v271h180v-271h316v-172h-316v-225h-180v225h-313zM98 0v170h768v-170h-768z" /> +<glyph unicode="²" d="M102 178q180 92 357 275q182 197 182 303q0 35 -24.5 58.5t-71.5 23.5q-94 0 -260 -97l-82 148q84 59 120.5 81.5t104.5 43t147 20.5q233 0 277 -182q8 -35 8 -71q0 -56 -19 -114q-32 -97 -99.5 -185.5t-135 -155t-143.5 -125.5h344l-31 -201h-661z" /> +<glyph unicode="³" d="M53 -182q135 12 250 51q274 102 275 338q0 47 -33 72.5t-66 29.5t-86 4q-98 0 -184 -10l-14 178q33 4 78.5 8.5t58.5 6.5l223 161q88 66 88 129q0 25 -17.5 40.5t-45.5 15.5q-41 0 -166 -54l-119 -51l-64 152l115 53q201 92 281 92q111 0 172 -57t61 -170 q0 -68 -49 -134.5t-98 -103.5t-127 -86q211 -31 211 -237q0 -172 -96.5 -307.5t-254.5 -204.5q-168 -72 -358 -72z" /> +<glyph unicode="´" horiz-adv-x="573" d="M92 1270q98 61 187.5 134t130.5 114l39 41l139 -164q-156 -131 -420 -256z" /> +<glyph unicode="µ" horiz-adv-x="1058" d="M57 -371q92 145 93 277q0 45 -9.5 127t-9.5 141v49v781h215v-791q0 -53 84 -53q51 0 97 16.5t68.5 30.5t78.5 57v740h215v-818q0 -39 22.5 -47t55.5 15l67 -134q-78 -51 -155 -51q-59 0 -116.5 27t-78.5 76q-141 -102 -242 -103q-51 0 -88 19q12 -90 13 -152 q0 -80 -50 -164z" /> +<glyph unicode="¶" horiz-adv-x="1132" d="M109 901q23 193 161 316q121 107 280 106q24 0 48 -2l264 -25q0 6 4 32l8 50h181q-4 -39 -13 -75l103 20l-39 -180l-107 -25q-90 -235 -90 -419q0 -92 23 -173q19 -88 19 -179q0 -76 -13 -154q-29 -174 -84 -267l-205 82q109 274 110 433q0 40 -7 73q-20 94 -21 192 q0 197 82 414l-205 19h-8q-73 0 -126 -103q-42 -81 -42 -164q0 -29 5 -58q19 -114 126 -118q10 -23 -92 -204q-33 -5 -63 -5q-130 0 -218 85q-87 85 -87 246q1 39 6 83z" /> +<glyph unicode="·" horiz-adv-x="559" d="M139 514q0 61 50.5 105.5t113.5 44.5q59 0 99 -37t40 -97q0 -61 -49 -106t-112 -45q-61 0 -101.5 37t-40.5 98z" /> +<glyph unicode="¸" horiz-adv-x="823" d="M346 -262q176 61 177 118q0 21 -16 25q-13 4 -31.5 -1t-36.5 -13l-32 -15q-15 -7 -18 -8l23 154h209q49 -39 63 -96q3 -13 3 -26q0 -60 -63 -122q-77 -76 -173 -116z" /> +<glyph unicode="¹" d="M231 791l25 167q133 0 260 43h164l-143 -1001h-199l115 791h-222z" /> +<glyph unicode="º" horiz-adv-x="788" d="M170 1065q0 172 103.5 328.5t265.5 156.5q127 0 189.5 -97t62.5 -230q0 -106 -41 -214t-129.5 -188t-198.5 -80q-125 0 -188.5 95.5t-63.5 228.5zM332 1040q0 -158 104 -157q51 0 91 40t60.5 101t31 118.5t10.5 104.5q0 158 -103 158q-68 0 -114.5 -70.5t-63 -148.5 t-16.5 -146z" /> +<glyph unicode="»" horiz-adv-x="1046" d="M63 219l332 277l-245 284l161 113l342 -401l-456 -394zM414 219l329 277l-243 284l162 113l339 -401l-456 -394z" /> +<glyph unicode="¼" horiz-adv-x="2844" d="M231 791l25 167q133 0 260 43h164l-143 -1001h-199l115 791h-222zM598 -268l1145 1794h213l-1145 -1794h-213zM1960 0l16 170l58 86q229 356 473 662l69 86h215l-127 -824h121l-32 -180h-125q-55 -242 -127 -352l-162 69q31 66 80 283h-459zM2216 180h238l73 475 q-61 -86 -311 -475z" /> +<glyph unicode="½" horiz-adv-x="2844" d="M231 791l25 167q133 0 260 43h164l-143 -1001h-199l115 791h-222zM598 -268l1145 1794h213l-1145 -1794h-213zM2025 178q180 92 357 275q182 197 182 303q0 35 -24.5 58.5t-71.5 23.5q-94 0 -260 -97l-82 148q84 59 121 81.5t104.5 43t147.5 20.5q233 0 276 -182 q8 -35 8 -71q0 -56 -19 -114q-32 -97 -99.5 -185.5t-135 -155t-143.5 -125.5h344l-31 -201h-661z" /> +<glyph unicode="¾" horiz-adv-x="2844" d="M53 -182q135 12 250 51q274 102 275 338q0 47 -33 72.5t-66 29.5t-86 4q-98 0 -184 -10l-14 178q33 4 78.5 8.5t58.5 6.5l223 161q88 66 88 129q0 25 -17.5 40.5t-45.5 15.5q-41 0 -166 -54l-119 -51l-64 152l115 53q201 92 281 92q111 0 172 -57t61 -170 q0 -68 -49 -134.5t-98 -103.5t-127 -86q211 -31 211 -237q0 -172 -96.5 -307.5t-254.5 -204.5q-168 -72 -358 -72zM598 -268l1145 1794h213l-1145 -1794h-213zM1960 0l16 170l58 86q229 356 473 662l69 86h215l-127 -824h121l-32 -180h-125q-55 -242 -127 -352l-162 69 q31 66 80 283h-459zM2216 180h238l73 475q-61 -86 -311 -475z" /> +<glyph unicode="¿" horiz-adv-x="829" d="M38 -195q3 37 5 66q8 43 40 99.5t55.5 86t83 97t65.5 73.5q94 111 119.5 158t37.5 127l17 113h184l-12 -113q-18 -168 -88 -256l-185 -231q-4 -4 -32.5 -39t-40 -50.5t-25.5 -45t-16 -54.5q0 -68 53 -67h152q113 0 202 -117l6 -8l-122 -131q-51 70 -107 69h-158 q-66 0 -114.5 21.5t-71.5 54.5t-37 72q-12 32 -12 62q0 6 1 13zM455 885q0 61 50 106t113 45q61 0 101.5 -36.5t40.5 -98.5q0 -59 -50.5 -104t-113.5 -45q-61 0 -101 37t-40 96z" /> +<glyph unicode="À" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM442 567h209l-47 398zM455 1669l180 156q90 -154 264 -295l-108 -125q-195 112 -336 264z" /> +<glyph unicode="Á" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM442 567h209l-47 398zM479 1536q98 61 187.5 134t128.5 114l41 41l139 -164q-184 -145 -420 -256z" /> +<glyph unicode="Â" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM352 1546q268 141 414 258q115 -145 264 -274l-135 -121q-117 109 -164 162q-156 -92 -282 -156zM442 567h209l-47 398z" /> +<glyph unicode="Ã" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM295 1587q123 100 229 109q11 1 22 1q69 0 148 -34q86 -31 120 -31q9 0 13 2q25 9 25 44q0 20 -8 48l178 -34q1 -11 1 -22q0 -64 -32 -114q-47 -76 -153 -81q-12 -1 -24 -1l-120 25q-8 4 -26.5 12.5 t-25.5 12.5t-21.5 9t-25.5 8t-26.5 5t-33.5 2q-61 0 -177 -86zM442 567h209l-47 398z" /> +<glyph unicode="Ä" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM397 1542q0 57 44 103.5t100 46.5q47 0 80.5 -33t33.5 -78q0 -57 -46 -100t-103 -43q-45 0 -77 29.5t-32 74.5zM442 567h209l-47 398zM743 1542q0 57 43 103.5t101 46.5q47 0 80.5 -33t33.5 -78 q0 -57 -46 -100t-103 -43q-45 0 -77 29.5t-32 74.5z" /> +<glyph unicode="Å" horiz-adv-x="1052" d="M-41 0l602 1290h195l200 -1290h-231l-53 371h-305l-166 -371h-242zM442 567h209l-47 398zM487 1616q14 88 86 149.5t160 61.5t144 -67q44 -53 43 -119q0 -17 -2 -35q-14 -88 -85 -150.5t-161 -62.5t-145 66q-43 53 -43 120q0 18 3 37zM629 1595q0 -23 17.5 -40t37.5 -17 q41 0 66.5 28.5t25.5 63.5q0 23 -17.5 39.5t-37.5 16.5q-41 0 -66.5 -27t-25.5 -64z" /> +<glyph unicode="Æ" horiz-adv-x="1476" d="M-41 0l619 1290h202l23 -260l41 260h672l-33 -207h-436l-52 -307h328l-33 -211h-327l-58 -356h459l-35 -209h-692l63 391h-301l-192 -391h-248zM492 596h200l-51 346z" /> +<glyph unicode="Ç" horiz-adv-x="1007" d="M94 481q0 70 15 170q18 115 68 230.5t125 215t181.5 162t223.5 62.5q209 0 319 -90l6 -4l-108 -156q-86 55 -236 55q-68 0 -134.5 -56t-109.5 -124q-57 -88 -91 -219t-34 -244q0 -127 49.5 -223t161.5 -96q117 0 254 82l86 -156q-111 -88 -274 -113q31 -33 41 -75 q3 -13 3 -26q0 -60 -63 -122q-77 -76 -174 -116l-102 100q174 61 174 118q0 21 -15 25q-13 4 -31.5 -1t-36.5 -13l-33 -15q-15 -7 -17 -8l23 146q-271 83 -271 491z" /> +<glyph unicode="È" horiz-adv-x="911" d="M82 0l199 1290h675l-28 -198h-451l-49 -318h332l-31 -205h-334l-57 -366h469l-31 -203h-694zM449 1669l180 156q88 -154 264 -295l-109 -125q-216 125 -335 264z" /> +<glyph unicode="É" horiz-adv-x="911" d="M82 0l199 1290h675l-28 -198h-451l-49 -318h332l-31 -205h-334l-57 -366h469l-31 -203h-694zM408 1536q98 61 187 134t130 114l39 41l139 -164q-184 -145 -420 -256z" /> +<glyph unicode="Ê" horiz-adv-x="911" d="M82 0l199 1290h675l-28 -198h-451l-49 -318h332l-31 -205h-334l-57 -366h469l-31 -203h-694zM311 1546q268 141 414 258q115 -145 262 -274l-133 -121q-117 109 -164 162q-156 -92 -282 -156z" /> +<glyph unicode="Ë" horiz-adv-x="911" d="M82 0l199 1290h675l-28 -198h-451l-49 -318h332l-31 -205h-334l-57 -366h469l-31 -203h-694zM375 1542q0 57 44 103.5t99 46.5q47 0 81 -33t34 -78q0 -57 -46 -100t-104 -43q-45 0 -76.5 29.5t-31.5 74.5zM721 1542q0 57 43 103.5t100 46.5q47 0 81 -33t34 -78 q0 -57 -46 -100t-104 -43q-47 0 -77.5 29.5t-30.5 74.5z" /> +<glyph unicode="Ì" horiz-adv-x="485" d="M63 0l189 1290h225l-190 -1290h-224zM129 1669l180 156q88 -154 264 -295l-108 -125q-217 125 -336 264z" /> +<glyph unicode="Í" horiz-adv-x="485" d="M61 0l177 1290h198l-178 -1290h-197zM176 1483q80 57 152.5 125.5t105.5 107.5l33 39l113 -153q-127 -127 -342 -242z" /> +<glyph unicode="Î" horiz-adv-x="485" d="M61 1546q266 141 414 258q113 -145 262 -274l-135 -121q-117 109 -164 162q-152 -90 -280 -156zM70 0l190 1290h223l-188 -1290h-225z" /> +<glyph unicode="Ï" horiz-adv-x="485" d="M63 0l189 1290h225l-190 -1290h-224zM96 1542q0 57 43 103.5t101 46.5q47 0 80.5 -33t33.5 -78q0 -57 -46 -100t-103 -43q-45 0 -77 29.5t-32 74.5zM442 1542q0 57 43 103.5t101 46.5q47 0 79.5 -33t32.5 -78q0 -57 -46 -100t-103 -43q-45 0 -76 29.5t-31 74.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1132" d="M82 0l201 1290h262l196 -702l29 -156q0 164 8 219l99 639h229l-201 -1290h-217l-250 899q-2 -86 -14 -166l-115 -733h-227zM369 1587q123 100 229 109q11 1 22 1q69 0 148 -34q86 -31 119 -31q9 0 14 2q25 9 25 44q0 20 -8 48l178 -34q1 -12 1 -23q0 -67 -32 -113 q-47 -76 -154 -81q-12 -1 -23 -1q-58 0 -118 25q-10 4 -32 14l-30 15q-9 4 -26.5 9t-35 8t-38.5 3q-61 0 -176 -86z" /> +<glyph unicode="Ò" horiz-adv-x="1120" d="M119 483q0 125 34.5 265.5t100 271.5t177.5 216t249 85q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -125 -34.5 -265.5t-100 -271.5t-177 -217t-249.5 -86q-100 0 -173.5 47t-113.5 125t-58.5 163t-18.5 179zM338 430q0 -256 164 -256q88 0 155.5 78t101.5 194.5t49 220 t15 185.5q0 264 -164 264q-86 0 -153.5 -80t-101 -197.5t-50 -223t-16.5 -185.5zM483 1669l181 156q90 -154 264 -295l-109 -125q-195 112 -336 264z" /> +<glyph unicode="Ó" horiz-adv-x="1120" d="M119 483q0 125 34.5 265.5t100 271.5t177.5 216t249 85q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -125 -34.5 -265.5t-100 -271.5t-177 -217t-249.5 -86q-100 0 -173.5 47t-113.5 125t-58.5 163t-18.5 179zM338 430q0 -256 164 -256q88 0 155.5 78t101.5 194.5t49 220 t15 185.5q0 264 -164 264q-86 0 -153.5 -80t-101 -197.5t-50 -223t-16.5 -185.5zM504 1536q98 61 187 134t128 114l41 41l139 -164q-156 -131 -419 -256z" /> +<glyph unicode="Ô" horiz-adv-x="1120" d="M119 483q0 125 34.5 265.5t100 271.5t177.5 216t249 85q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -125 -34.5 -265.5t-100 -271.5t-177 -217t-249.5 -86q-100 0 -173.5 47t-113.5 125t-58.5 163t-18.5 179zM338 430q0 -256 164 -256q88 0 155.5 78t101.5 194.5t49 220 t15 185.5q0 264 -164 264q-86 0 -153.5 -80t-101 -197.5t-50 -223t-16.5 -185.5zM373 1546q266 141 413 258q115 -145 263 -274l-134 -121q-96 86 -165 162q-119 -74 -281 -156z" /> +<glyph unicode="Õ" horiz-adv-x="1120" d="M119 483q0 125 34.5 265.5t100 271.5t177.5 216t249 85q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -125 -34.5 -265.5t-100 -271.5t-177 -217t-249.5 -86q-100 0 -173.5 47t-113.5 125t-58.5 163t-18.5 179zM338 430q0 -256 164 -256q88 0 155.5 78t101.5 194.5t49 220 t15 185.5q0 264 -164 264q-86 0 -153.5 -80t-101 -197.5t-50 -223t-16.5 -185.5zM350 1587q123 100 230 109q10 1 21 1q68 0 151 -34q83 -31 116 -31q9 0 15 2q25 9 24 44q0 20 -8 48l178 -34q1 -12 1 -23q0 -67 -31 -113q-47 -76 -154 -81q-12 -1 -23 -1q-58 0 -118 25 q-10 4 -32 14l-31 15q-9 4 -26.5 9t-35 8t-37.5 3q-61 0 -176 -86z" /> +<glyph unicode="Ö" horiz-adv-x="1120" d="M119 483q0 125 34.5 265.5t100 271.5t177.5 216t249 85q131 0 217 -83t116.5 -191.5t30.5 -237.5q0 -125 -34.5 -265.5t-100 -271.5t-177 -217t-249.5 -86q-100 0 -173.5 47t-113.5 125t-58.5 163t-18.5 179zM338 430q0 -256 164 -256q88 0 155.5 78t101.5 194.5t49 220 t15 185.5q0 264 -164 264q-86 0 -153.5 -80t-101 -197.5t-50 -223t-16.5 -185.5zM438 1542q0 57 43 103.5t101 46.5q47 0 79.5 -33t32.5 -78q0 -57 -46 -100t-103 -43q-45 0 -76 29.5t-31 74.5zM784 1542q0 57 43 103.5t101 46.5q47 0 79.5 -33t32.5 -78q0 -57 -46 -100 t-103 -43q-45 0 -76 29.5t-31 74.5z" /> +<glyph unicode="Ø" horiz-adv-x="1120" d="M117 -299l153 344q-152 135 -151 438q0 125 34.5 265.5t100 271.5t177.5 216t249 85q82 0 141 -31l115 258h102l-137 -311q143 -137 143 -428q0 -125 -34.5 -265.5t-100 -271.5t-178.5 -217t-250 -86q-72 0 -131 27l-131 -295h-102zM338 430q0 -106 27 -168l370 836 q-35 18 -76 18q-86 0 -153.5 -79t-101 -196.5t-50 -224t-16.5 -186.5zM434 188q31 -14 68 -14q88 0 155.5 78t101.5 193.5t49 220t15 186.5q0 96 -22 160z" /> +<glyph unicode="Ù" horiz-adv-x="1114" d="M126 317q-4 35 -4 70q0 64 13 129l119 774h227l-123 -788q-10 -104 -10 -163q0 -67 33 -115q35 -50 111 -50q193 0 245 342l121 774h227l-122 -794q-23 -147 -79.5 -261t-163 -190t-249.5 -76q-113 0 -190.5 48.5t-110.5 125t-44 174.5zM492 1669l180 156 q88 -154 262 -295l-109 -125q-212 123 -333 264z" /> +<glyph unicode="Ú" horiz-adv-x="1114" d="M126 317q-4 35 -4 70q0 64 13 129l119 774h227l-123 -788q-10 -104 -10 -163q0 -67 33 -115q35 -50 111 -50q193 0 245 342l121 774h227l-122 -794q-23 -147 -79.5 -261t-163 -190t-249.5 -76q-113 0 -190.5 48.5t-110.5 125t-44 174.5zM469 1536q98 61 187 134t130 114 l39 41l140 -164q-184 -145 -420 -256z" /> +<glyph unicode="Û" horiz-adv-x="1114" d="M126 317q-4 35 -4 70q0 64 13 129l119 774h227l-123 -788q-10 -104 -10 -163q0 -67 33 -115q35 -50 111 -50q193 0 245 342l121 774h227l-122 -794q-23 -147 -79.5 -261t-163 -190t-249.5 -76q-113 0 -190.5 48.5t-110.5 125t-44 174.5zM371 1546q266 141 413 258 q113 -145 263 -274l-136 -121q-102 94 -163 162q-152 -90 -281 -156z" /> +<glyph unicode="Ü" horiz-adv-x="1114" d="M126 317q-4 35 -4 70q0 64 13 129l119 774h227l-123 -788q-10 -104 -10 -163q0 -67 33 -115q35 -50 111 -50q193 0 245 342l121 774h227l-122 -794q-23 -147 -79.5 -261t-163 -190t-249.5 -76q-113 0 -190.5 48.5t-110.5 125t-44 174.5zM412 1542q0 57 44 103.5t101 46.5 q47 0 80 -33t33 -78q0 -57 -46 -100t-104 -43q-45 0 -76.5 29.5t-31.5 74.5zM758 1542q0 57 44 103.5t101 46.5q45 0 79 -33t34 -78q0 -57 -46 -100t-104 -43q-45 0 -76.5 29.5t-31.5 74.5z" /> +<glyph unicode="Ý" horiz-adv-x="880" d="M55 1165l154 154q129 -82 209 -246q49 -104 61 -262q35 154 138.5 304.5t232.5 217.5l143 -151q-61 -39 -113.5 -87t-94.5 -114t-73.5 -120t-60.5 -141l-46 -138q-17 -51 -38 -154l-28 -143q-8 -41 -26 -150l-21 -135h-224l74 471q-14 127 -20 164q-20 164 -86 314 t-181 216zM799 1587q98 61 187 134t130 114l39 41l139 -164q-156 -131 -420 -256z" /> +<glyph unicode="ß" horiz-adv-x="1122" d="M2 -307q12 18 32.5 55t59.5 161t51 257q45 477 58 649l-135 33l26 156h125l19 135q20 162 172 244q119 65 244 66q34 0 69 -5q117 -18 191.5 -95t86.5 -206q2 -16 2 -33q0 -118 -75 -270q-86 18 -123 18q-57 0 -88 -33q-33 -35 -33 -78q0 -54 96 -110l183 -111 q111 -68 110 -217q-2 -160 -122 -250t-283 -90q-66 0 -129.5 25.5t-94.5 50.5l-30 25l106 161q70 -66 150 -65q68 0 114.5 27.5t55.5 68.5q1 7 1 14q0 56 -77 103l-182 108q-63 37 -98 117q-24 56 -23 112q0 24 4 48q23 133 121 201.5t207 68.5q13 45 12 81q0 47 -21 80 q-37 58 -137 58q-72 0 -130 -44t-64 -107l-25 -240l-78 -809q-14 -160 -203 -436l-8 -12z" /> +<glyph unicode="à" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46zM444 1403l181 156q90 -154 264 -295l-109 -125q-195 112 -336 264z" /> +<glyph unicode="á" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46zM473 1270q98 61 187.5 134t130.5 114l38 41l140 -164q-156 -131 -420 -256z" /> +<glyph unicode="â" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM317 1280q266 141 414 258q113 -145 262 -274l-135 -121q-117 109 -164 162q-152 -90 -280 -156zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46z" /> +<glyph unicode="ã" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM276 1321q123 100 230 109q10 1 21 0q68 0 151 -33q83 -31 116 -31q9 0 15 2q25 9 25 44q0 20 -9 48l179 -35q1 -14 1 -27q0 -62 -32 -108q-47 -76 -154 -82q-12 -1 -23 -1q-58 0 -118 26l-30 14q-26 12 -32 14.5t-25.5 9.5t-36.5 9t-38 2q-61 0 -176 -86z M322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46z" /> +<glyph unicode="ä" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46zM393 1276q0 57 43 103t101 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-47 0 -78 30t-31 75z M739 1276q0 57 43 103t101 46q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -76 30t-31 75z" /> +<glyph unicode="å" horiz-adv-x="1003" d="M98 266q0 111 32 238t92.5 248.5t165 201.5t233.5 80q104 0 299 -37l-103 -739q-9 -48 -9 -77q0 -35 19 -36l50 11l45 -140q-92 -47 -168 -47q-66 0 -106 49q-32 39 -32 84q0 11 2 23l9 57q-4 -8 -14.5 -22.5t-43 -51t-67.5 -65.5t-90.5 -51.5t-112.5 -22.5 q-201 0 -201 297zM322 218q0 -19 12 -31.5t41 -12.5q66 0 156 119t108 209l55 332q-47 4 -69 4q-72 0 -132.5 -64.5t-96.5 -160t-55 -187.5t-19 -162v-46zM494 1356q14 88 86.5 149.5t158.5 61.5q88 0 144 -67q44 -53 44 -120q0 -18 -3 -37q-14 -86 -85 -148t-161 -62 t-144 66q-43 53 -43 120q0 18 3 37zM635 1335q0 -23 17.5 -41t37.5 -18q41 0 66.5 29.5t25.5 64.5q0 23 -17 39t-38 16q-41 0 -66.5 -26.5t-25.5 -63.5z" /> +<glyph unicode="æ" horiz-adv-x="1361" d="M98 266q0 115 33 244t94.5 249t166 197.5t229.5 77.5q76 0 266 -41q88 41 184 41q262 0 262 -246q0 -86 -56 -157.5t-148.5 -115.5t-174.5 -70.5t-170 -43.5v-28q0 -74 34 -148.5t97 -74.5q61 0 129 28.5t113 71.5l92 -123q-66 -70 -168 -114t-198 -44q-193 0 -277 185 q-135 -184 -307 -185q-201 0 -201 297zM319 238q0 -33 11.5 -48.5t44.5 -15.5q45 0 98 54.5t90 111.5v33q0 268 146 467q-14 0 -43 -1t-41 -1q-76 0 -138.5 -70t-96.5 -170t-52.5 -195t-18.5 -165zM809 586q307 70 307 215q0 55 -65 55q-84 0 -146.5 -84t-95.5 -186z" /> +<glyph unicode="ç" horiz-adv-x="849" d="M92 381q0 133 45 265t119 218q72 82 162 126t160 44q33 0 61.5 -4t50 -9t43 -14.5t33.5 -16.5t26.5 -18t19.5 -17l15 -15l11 -10l-129 -137q-41 57 -148 57q-72 0 -145.5 -94t-98.5 -250q-8 -70 -8 -98q0 -111 40 -180.5t110 -69.5q43 0 99 31.5t93 64.5l35 33l100 -123 q-12 -16 -36.5 -42t-95 -77t-140.5 -68q35 -37 43 -75q3 -13 3 -26q0 -60 -63 -122q-77 -76 -173 -116l-103 100q174 61 175 118q0 21 -16 25q-13 4 -31.5 -1t-36.5 -13l-32 -15q-15 -7 -18 -8l23 154h10q-82 37 -131 111q-72 102 -72 272z" /> +<glyph unicode="è" horiz-adv-x="894" d="M92 373q0 156 54.5 303t174 252.5t279.5 105.5q262 0 262 -246q0 -86 -56 -156.5t-148.5 -115.5t-175.5 -71.5t-169 -43.5v-28q0 -74 34 -148.5t97 -74.5q59 0 120 25.5t91 49.5l31 25l92 -123q-16 -18 -47 -44t-126 -70t-193 -44q-160 0 -240 119t-80 285zM338 586 q307 72 307 215q0 55 -65 55q-86 0 -148.5 -85t-93.5 -185zM393 1403l180 156q90 -154 265 -295l-109 -125q-195 112 -336 264z" /> +<glyph unicode="é" horiz-adv-x="894" d="M92 373q0 156 54.5 303t174 252.5t279.5 105.5q262 0 262 -246q0 -86 -56 -156.5t-148.5 -115.5t-175.5 -71.5t-169 -43.5v-28q0 -74 34 -148.5t97 -74.5q59 0 120 25.5t91 49.5l31 25l92 -123q-16 -18 -47 -44t-126 -70t-193 -44q-160 0 -240 119t-80 285zM338 586 q307 72 307 215q0 55 -65 55q-86 0 -148.5 -85t-93.5 -185zM389 1270q98 61 187.5 134t128.5 114l40 41l140 -164q-156 -131 -420 -256z" /> +<glyph unicode="ê" horiz-adv-x="894" d="M92 373q0 156 54.5 303t174 252.5t279.5 105.5q262 0 262 -246q0 -86 -56 -156.5t-148.5 -115.5t-175.5 -71.5t-169 -43.5v-28q0 -74 34 -148.5t97 -74.5q59 0 120 25.5t91 49.5l31 25l92 -123q-16 -18 -47 -44t-126 -70t-193 -44q-160 0 -240 119t-80 285zM219 1280 q268 141 414 258q115 -145 262 -274l-133 -121q-117 109 -164 162q-156 -92 -283 -156zM338 586q307 72 307 215q0 55 -65 55q-86 0 -148.5 -85t-93.5 -185z" /> +<glyph unicode="ë" horiz-adv-x="894" d="M92 373q0 156 54.5 303t174 252.5t279.5 105.5q262 0 262 -246q0 -86 -56 -156.5t-148.5 -115.5t-175.5 -71.5t-169 -43.5v-28q0 -74 34 -148.5t97 -74.5q59 0 120 25.5t91 49.5l31 25l92 -123q-16 -18 -47 -44t-126 -70t-193 -44q-160 0 -240 119t-80 285zM313 1276 q0 57 44 103t102 46q47 0 79.5 -32.5t32.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM338 586q307 72 307 215q0 55 -65 55q-86 0 -148.5 -85t-93.5 -185zM659 1276q0 57 44.5 103t101.5 46q47 0 80 -32.5t33 -77.5q0 -57 -46.5 -100.5t-103.5 -43.5 q-45 0 -77 30t-32 75z" /> +<glyph unicode="ì" horiz-adv-x="477" d="M66 0l135 1004h186l-135 -1004h-186zM76 1403l180 156q90 -154 264 -295l-108 -125q-195 112 -336 264z" /> +<glyph unicode="í" horiz-adv-x="477" d="M66 0l135 1004h186l-135 -1004h-186zM98 1270q215 137 355 289l139 -164q-158 -133 -420 -256z" /> +<glyph unicode="î" horiz-adv-x="477" d="M66 1280q268 141 413 258q115 -145 262 -274l-133 -121q-117 109 -166 162q-133 -82 -280 -156zM145 0l138 1004h184l-135 -1004h-187z" /> +<glyph unicode="ï" horiz-adv-x="477" d="M66 1276q0 57 44 103t99 46q47 0 81 -32.5t34 -77.5q0 -57 -46.5 -100.5t-103.5 -43.5q-45 0 -76.5 30t-31.5 75zM106 0l138 1004h186l-137 -1004h-187zM412 1276q0 57 44 103t99 46q47 0 81 -32.5t34 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -76.5 30t-31.5 75z" /> +<glyph unicode="ñ" horiz-adv-x="1060" d="M84 0l158 1004h217l-29 -162q49 80 126 136t161 56q113 0 170 -43t60 -109q1 -18 1 -37q0 -51 -6 -108l-115 -737h-219l119 750q3 21 3 36q0 27 -9 38q-14 17 -57 18q-111 0 -271 -244l-92 -598h-217zM285 1321q123 100 229 109q10 1 21 0q68 0 151 -33q83 -31 117 -31 q9 0 14 2q25 9 25 44q0 20 -8 48l178 -35q1 -14 1 -27q0 -62 -32 -108q-47 -76 -154 -82q-12 -1 -23 -1q-58 0 -118 26l-30 14q-26 12 -32 14.5t-25 9.5t-36.5 9t-38.5 2q-61 0 -176 -86z" /> +<glyph unicode="ò" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM305 365q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209q-68 0 -120 -53.5 t-79.5 -133t-41 -155.5t-13.5 -137zM395 1403l180 156q90 -154 265 -295l-109 -125q-195 112 -336 264z" /> +<glyph unicode="ó" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM305 365q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209q-68 0 -120 -53.5 t-79.5 -133t-41 -155.5t-13.5 -137zM406 1270q98 61 187 134t128 114l41 41l139 -164q-184 -145 -420 -256z" /> +<glyph unicode="ô" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM272 1280q268 141 414 258q115 -145 262 -274l-133 -121q-117 109 -164 162q-156 -92 -282 -156zM305 365 q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209q-68 0 -120 -53.5t-79.5 -133t-41 -155.5t-13.5 -137z" /> +<glyph unicode="õ" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM260 1321q123 100 229 109q11 1 22 0q70 0 151 -33q6 -2 25.5 -9.5t28.5 -10.5t28.5 -8t25.5 -4t23 3 q25 9 24 44q0 20 -8 48l180 -35q1 -11 1 -21q0 -64 -32 -114q-51 -76 -155 -82q-12 -1 -23 -1q-58 0 -118 26q-8 4 -27 12t-26 12.5t-21.5 9.5t-25.5 8t-26.5 5t-33.5 2q-61 0 -176 -86zM305 365q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209 q-68 0 -120 -53.5t-79.5 -133t-41 -155.5t-13.5 -137z" /> +<glyph unicode="ö" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q166 0 248.5 -127t82.5 -303q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-166 0 -249 126t-83 300zM305 365q0 -207 137 -207q68 0 120 53t80 132t41 154.5t13 137.5q0 209 -137 209q-68 0 -120 -53.5 t-79.5 -133t-41 -155.5t-13.5 -137zM340 1276q0 57 43 103t100 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-104 -43.5q-45 0 -75.5 30t-30.5 75zM684 1276q0 57 44 103t101 46q47 0 80 -32.5t33 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75z" /> +<glyph unicode="÷" horiz-adv-x="1001" d="M96 420v184h807v-184h-807zM342 213q0 63 47 108.5t111 45.5q59 0 99 -38t40 -98q0 -61 -47 -106t-111 -45q-59 0 -99 37t-40 96zM342 799q0 63 47 108t111 45q59 0 99 -37.5t40 -97.5q0 -63 -47 -108t-111 -45q-59 0 -99 38t-40 97z" /> +<glyph unicode="ø" horiz-adv-x="999" d="M92 395q0 141 55.5 284.5t170 249t260.5 105.5q59 0 102 -16l80 178h102l-100 -221q147 -113 147 -371q0 -102 -32.5 -211.5t-92 -205t-154.5 -157t-206 -61.5q-61 0 -105 17l-94 -209h-102l113 254q-144 112 -144 364zM305 365q0 -80 23 -134l272 609q-29 4 -41 4 q-68 0 -120 -53.5t-79.5 -132t-41 -154.5t-13.5 -139zM399 164q18 -6 43 -6q68 0 120 52t80 132t41 154.5t13 138.5q0 88 -24 137z" /> +<glyph unicode="ù" horiz-adv-x="1038" d="M105 156q-1 11 0 21q0 43 10 89l114 738h217l-116 -750q-3 -21 -3 -36q0 -27 9 -39q14 -17 57 -17q104 0 271 244l92 598h217l-131 -836q-4 -31 8 -50.5t27 -23.5l16 -4l-78 -121q-10 -1 -22 -1h-14q-22 1 -67.5 15.5t-64.5 47.5q-15 25 -15 67q0 29 7 66 q-53 -78 -135 -136.5t-164 -58.5q-86 0 -140.5 25.5t-73 67t-21.5 94.5zM436 1403l180 156q90 -154 265 -295l-109 -125q-195 112 -336 264z" /> +<glyph unicode="ú" horiz-adv-x="1038" d="M105 156q-1 11 0 21q0 43 10 89l114 738h217l-116 -750q-3 -21 -3 -36q0 -27 9 -39q14 -17 57 -17q104 0 271 244l92 598h217l-131 -836q-4 -31 8 -50.5t27 -23.5l16 -4l-78 -121q-10 -1 -22 -1h-14q-22 1 -67.5 15.5t-64.5 47.5q-15 25 -15 67q0 29 7 66 q-53 -78 -135 -136.5t-164 -58.5q-86 0 -140.5 25.5t-73 67t-21.5 94.5zM446 1270q215 137 355 289l139 -164q-158 -133 -420 -256z" /> +<glyph unicode="û" horiz-adv-x="1038" d="M105 156q-1 11 0 21q0 43 10 89l114 738h217l-116 -750q-3 -21 -3 -36q0 -27 9 -39q14 -17 57 -17q104 0 271 244l92 598h217l-131 -836q-4 -31 8 -50.5t27 -23.5l16 -4l-78 -121q-10 -1 -22 -1h-14q-22 1 -67.5 15.5t-64.5 47.5q-15 25 -15 67q0 29 7 66 q-53 -78 -135 -136.5t-164 -58.5q-86 0 -140.5 25.5t-73 67t-21.5 94.5zM307 1280q268 141 414 258q115 -145 264 -274l-135 -121q-117 109 -164 162q-156 -92 -283 -156z" /> +<glyph unicode="ü" horiz-adv-x="1038" d="M105 156q-1 11 0 21q0 43 10 89l114 738h217l-116 -750q-3 -21 -3 -36q0 -27 9 -39q14 -17 57 -17q104 0 271 244l92 598h217l-131 -836q-4 -31 8 -50.5t27 -23.5l16 -4l-78 -121q-10 -1 -22 -1h-14q-22 1 -67.5 15.5t-64.5 47.5q-15 25 -15 67q0 29 7 66 q-53 -78 -135 -136.5t-164 -58.5q-86 0 -140.5 25.5t-73 67t-21.5 94.5zM348 1276q0 57 44 103t100 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5t-103 -43.5q-45 0 -77 30t-32 75zM694 1276q0 57 43 103t101 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5 t-103 -43.5q-47 0 -78 30t-31 75z" /> +<glyph unicode="ý" horiz-adv-x="880" d="M-18 -225q106 45 173.5 100t120.5 150l-200 979h229l123 -728l61 109q168 287 168 358q0 113 -43 236l211 45q41 -113 41 -246q0 -121 -67 -237l-336 -584q-78 -137 -177.5 -215t-252.5 -125zM776 1288q98 61 187.5 134t130.5 114l39 41l139 -164q-156 -131 -420 -256z " /> +<glyph unicode="ÿ" horiz-adv-x="880" d="M-18 -225q106 45 173.5 100t120.5 150l-200 979h229l123 -728l61 109q170 291 170 358q0 109 -45 236l211 45q41 -113 41 -246q0 -121 -67 -237l-336 -584q-78 -137 -177.5 -215t-252.5 -125zM188 1276q0 57 44 103t100 46q47 0 80.5 -32.5t33.5 -77.5q0 -57 -46 -100.5 t-103 -43.5q-45 0 -77 30t-32 75zM535 1276q0 57 43 103t100 46q47 0 80 -32.5t33 -77.5q0 -57 -45.5 -100.5t-102.5 -43.5q-47 0 -77.5 30t-30.5 75z" /> +<glyph unicode="Œ" horiz-adv-x="1286" d="M150 750q76 297 256 444q119 96 258 96h667l-33 -207h-467l-49 -307h359l-33 -211h-358l-56 -356h486l-33 -209h-674q-225 0 -313 233q-44 118 -44 257q1 122 34 260zM352 627q-16 -104 -16 -184q0 -219 125 -242l139 882q-96 -27 -157.5 -155.5t-90.5 -300.5z" /> +<glyph unicode="œ" horiz-adv-x="1486" d="M100 506q35 207 169 367.5t327 160.5q166 0 262 -133q139 133 322 133q121 0 197.5 -62.5t76.5 -183.5q0 -86 -57.5 -156.5t-152.5 -117.5t-182 -75.5t-181 -49.5v-8q-2 -82 35.5 -152.5t101.5 -70.5q119 0 270 161l101 -143q-199 -209 -404 -209q-164 0 -254 125 q-135 -125 -295 -125q-135 0 -220 85t-111 205q-14 67 -14 136q0 56 9 113zM324 494q-11 -74 -12 -132q0 -206 143 -206q125 0 198 163q-2 18 -2 54q0 166 62 313q-18 158 -135 158q-98 0 -163.5 -101.5t-90.5 -248.5zM907 586q311 70 312 215q0 47 -70 47q-78 0 -143.5 -79 t-98.5 -183z" /> +<glyph unicode="Ÿ" horiz-adv-x="880" d="M55 1165l154 154q129 -82 209 -246q49 -104 61 -262q35 154 138.5 304.5t232.5 217.5l143 -151q-61 -39 -113.5 -87t-94.5 -114t-73.5 -120t-60.5 -141l-46 -138q-17 -51 -38 -154l-28 -143q-8 -41 -26 -150l-21 -135h-224l74 471q-14 127 -20 164q-20 164 -86 314 t-181 216zM240 1542q0 57 44 103.5t101 46.5q47 0 80 -33t33 -78q0 -57 -46 -100t-104 -43q-45 0 -76.5 29.5t-31.5 74.5zM586 1542q0 57 44 103.5t101 46.5q47 0 80 -33t33 -78q0 -57 -46 -100t-104 -43q-45 0 -76.5 29.5t-31.5 74.5z" /> +<glyph unicode="ˆ" horiz-adv-x="737" d="M70 1280q266 141 413 258q113 -145 262 -274l-135 -121q-117 109 -164 162q-152 -90 -280 -156z" /> +<glyph unicode="˜" horiz-adv-x="763" d="M20 1321q123 100 230 109q10 1 21 0q68 0 151 -33q83 -31 116 -31q9 0 15 2q25 9 25 44q0 20 -9 48l179 -35q1 -14 1 -27q0 -62 -32 -108q-47 -76 -154 -82q-12 -1 -23 -1q-58 0 -118 26l-30 14q-26 12 -32 14.5t-25.5 9.5t-36.5 9t-38 2q-61 0 -176 -86z" /> +<glyph unicode="–" horiz-adv-x="733" d="M0 461v123h733v-123h-733z" /> +<glyph unicode="—" horiz-adv-x="1245" d="M0 463v123h1245v-123h-1245z" /> +<glyph unicode="‘" horiz-adv-x="559" d="M174 999l70 111q45 72 262 246l92 -94q-100 -119 -141 -211q-18 -41 -25 -133l-25 -11q-15 -6 -49 -15t-51 -9q-39 2 -71.5 31.5t-47.5 56.5z" /> +<glyph unicode="’" horiz-adv-x="610" d="M172 944q106 129 141 211q18 41 25 133l26 10q15 6 48.5 15.5t50.5 9.5q37 -2 70.5 -31.5t48.5 -58.5l14 -27l-70 -110q-45 -72 -262 -246z" /> +<glyph unicode="‚" horiz-adv-x="528" d="M16 -209q57 68 85 104.5t59 106.5q27 61 27 117q0 7 -1 14q82 45 121 45q29 0 64 -28.5t55 -57.5l18 -29q-98 -164 -307 -366z" /> +<glyph unicode="“" horiz-adv-x="944" d="M178 999l70 111q45 72 262 246l92 -94q-100 -119 -141 -211q-18 -41 -25 -134l-25 -10q-15 -6 -49 -15t-51 -9q-39 2 -71.5 31.5t-46.5 56.5zM541 999l69 111q45 72 262 246l93 -94q-100 -119 -142 -211q-18 -41 -24 -133l-26 -11q-15 -6 -49 -15t-50 -9q-39 2 -72 31.5 t-47 56.5z" /> +<glyph unicode="”" horiz-adv-x="942" d="M168 944q106 129 141 211q18 41 25 133l25 10q15 6 49 15.5t51 9.5q37 -2 70.5 -31.5t48.5 -58.5l14 -27l-70 -110q-45 -72 -262 -246zM530 944q106 129 142 211q18 41 24 133l26 10q15 6 49 15.5t50 9.5q37 -2 71 -31.5t48 -58.5l14 -27l-69 -110q-45 -72 -262 -246z " /> +<glyph unicode="„" horiz-adv-x="933" d="M-55 -195q106 123 141 211q18 41 25 134l25 10q15 6 49 15t51 9q39 -2 71.5 -31.5t46.5 -58.5l15 -26l-70 -111q-45 -72 -262 -246zM307 -195q106 123 142 211q18 41 24 134l26 10q15 6 49 15t50 9q39 -2 71.5 -31.5t47.5 -58.5l14 -26l-69 -111q-45 -72 -263 -246z" /> +<glyph unicode="•" horiz-adv-x="868" d="M80 645.5q0 145.5 103.5 248.5t249 103t249.5 -103t104 -248.5t-104 -249t-249.5 -103.5t-249 103.5t-103.5 249z" /> +<glyph unicode="…" horiz-adv-x="1204" d="M70 104.5q0 61.5 50 105.5t113 44q61 0 101.5 -37t40.5 -96q0 -61 -50.5 -106.5t-113.5 -45.5q-61 0 -101 37t-40 98.5zM422 104.5q0 61.5 50 105.5t114 44q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5zM770 104.5q0 61.5 50 105.5t114 44 q61 0 101 -37t40 -96q0 -61 -50 -106.5t-114 -45.5q-61 0 -101 37t-40 98.5z" /> +<glyph unicode="‹" horiz-adv-x="589" d="M37 500l430 393l127 -121l-313 -276l229 -285l-152 -113z" /> +<glyph unicode="›" horiz-adv-x="665" d="M63 219l314 277l-230 284l152 113l322 -401l-431 -394z" /> +<glyph unicode="™" horiz-adv-x="1583" d="M219 1282l21 135h495l-20 -135h-176l-103 -676h-143l104 676h-178zM717 608l129 813h170l112 -524l9 -92q10 55 32 96l263 520h174l-131 -813h-146l64 400l24 143q-45 -135 -61 -168l-187 -375h-118l-88 404l-15 139l-20 -137l-64 -406h-147z" /> +<glyph unicode="" horiz-adv-x="1025" d="M0 1025h1025v-1025h-1025v1025z" /> +<glyph unicode="fi" horiz-adv-x="1056" d="M16 -299q111 205 138 524l45 602l-121 21l24 156h115l4 92q8 176 129 267t307 91q51 0 117 -13.5t132.5 -39t100.5 -75.5q19 -28 18 -60q0 -25 -11 -54q-23 -57 -80 -79q-25 -12 -55 -13q-78 0 -119 66q-18 29 -18 67q0 10 1 21q-57 8 -110 8q-16 0 -32 -1 q-69 -3 -119 -51t-52 -136l-2 -90h137v-181h-151l-62 -714q-10 -129 -63 -239t-148 -249zM604 0l141 1004h216l-140 -1004h-217z" /> +<glyph unicode="fl" horiz-adv-x="1056" d="M18 -299q111 205 138 524l45 602l-121 21l24 156h115l6 102q10 199 118 268.5t310 69.5q82 0 173.5 -19.5t140.5 -38.5l51 -18l-144 -954q-11 -82 -11 -155q0 -126 34 -224l-209 -58q-40 122 -40 269q0 85 14 180l118 823q-61 31 -135 31q-86 0 -147.5 -57.5 t-63.5 -126.5l-4 -92h137v-181h-151l-62 -714q-10 -129 -63 -239t-148 -249z" /> +<glyph unicode="ffi" horiz-adv-x="1579" d="M16 -299q111 205 138 524l45 602l-121 21l24 156h115q0 72 10.5 137t34 132.5t73.5 108.5t120 41q33 0 64.5 -5t45.5 -11l17 -6l-25 -168h-63q-14 0 -25.5 -9.5t-18 -27.5t-11.5 -35.5t-7 -44t-3 -43t-1 -40.5v-29h137v-181h-151l-62 -714q-10 -129 -63 -239t-148 -249z M567 -299q111 205 138 524l45 602l-121 21l24 156h115q0 72 10 137t34 132.5t74 108.5t120 41q33 0 64.5 -5t45.5 -11l17 -6l-25 -168h-64q-14 0 -25 -9.5t-17.5 -27.5t-11.5 -35.5t-7 -44t-3 -43t-1 -40.5v-29h137v-181h-151l-62 -714q-10 -129 -63.5 -239t-147.5 -249z M1167 0l152 1004h217l-154 -1004h-215zM1315 1251q0 78 74 121q33 20 73 21q55 0 95 -38t40 -93q0 -25 -10 -50q-23 -57 -78 -79q-27 -12 -57 -13q-78 0 -119 66q-18 32 -18 65z" /> +<glyph unicode="ffl" horiz-adv-x="1595" d="M16 -299q111 205 138 524l45 602l-121 21l24 156h115q0 72 10.5 137t34 132.5t73.5 108.5t120 41q33 0 64.5 -5t45.5 -11l17 -6l-25 -168h-63q-14 0 -25.5 -9.5t-18 -27.5t-11.5 -35.5t-7 -44t-3 -43t-1 -40.5v-29h137v-181h-151l-62 -714q-10 -129 -63 -239t-148 -249z M567 -299q111 205 138 524l45 602l-121 21l24 156h115q0 72 10 137t34 132.5t74 108.5t120 41q33 0 64.5 -5t45.5 -11l17 -6l-25 -168h-64q-14 0 -25 -9.5t-17.5 -27.5t-11.5 -35.5t-7 -44t-3 -43t-1 -40.5v-29h137v-181h-151l-62 -714q-10 -129 -63.5 -239t-147.5 -249z M1225 426l143 997h217l-145 -1009q-11 -86 -11 -155q0 -24 2 -46q5 -84 17 -131l12 -47l-207 -58q-41 124 -41 276q1 82 13 173z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-bolditalic-webfont.ttf b/public/stylesheets/fonts/delicious-bolditalic-webfont.ttf Binary files differnew file mode 100755 index 000000000..ef25c0adc --- /dev/null +++ b/public/stylesheets/fonts/delicious-bolditalic-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-bolditalic-webfont.woff b/public/stylesheets/fonts/delicious-bolditalic-webfont.woff Binary files differnew file mode 100755 index 000000000..068f460de --- /dev/null +++ b/public/stylesheets/fonts/delicious-bolditalic-webfont.woff diff --git a/public/stylesheets/fonts/delicious-heavy-webfont.eot b/public/stylesheets/fonts/delicious-heavy-webfont.eot Binary files differnew file mode 100755 index 000000000..782a01422 --- /dev/null +++ b/public/stylesheets/fonts/delicious-heavy-webfont.eot diff --git a/public/stylesheets/fonts/delicious-heavy-webfont.svg b/public/stylesheets/fonts/delicious-heavy-webfont.svg new file mode 100755 index 000000000..64e0eb347 --- /dev/null +++ b/public/stylesheets/fonts/delicious-heavy-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : copyright 19941996 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousHeavyRegular" horiz-adv-x="921" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="	" horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="!" horiz-adv-x="540" d="M115 123q0 68 56 114t130 46q72 0 125 -43t53 -108.5t-57 -113t-131 -47.5q-70 0 -123 43t-53 109zM139 1022q0 262 39 381l305 37q-55 -254 -55 -430v-600h-258l-13 192q-9 131 -13.5 226.5t-4.5 193.5z" /> +<glyph unicode=""" horiz-adv-x="708" d="M68 1305l38 168h160l47 -99v-401h-196zM385 971v403l51 99h154l45 -168l-55 -332z" /> +<glyph unicode="#" horiz-adv-x="1138" d="M68 356l36 262h115l29 216h-96l36 262h95l43 321h264l-43 -321h143l37 278h264l-37 -278h107l-25 -262h-118l-29 -216h88l-27 -262h-98l-47 -350h-258l45 350h-146l-43 -307h-258l39 307h-116zM481 618h146l28 216h-145z" /> +<glyph unicode="$" horiz-adv-x="888" d="M47 954q0 170 117 270q114 97 284 97h7l8 113l92 -9l-8 -114q82 -18 164 -68.5t129 -116.5l-170 -151q-53 61 -142 86l-18 -270l117 -74q113 -74 173 -157t60 -206q0 -168 -118.5 -271t-288.5 -114l-9 -121l-92 9l8 118q-158 27 -288 140l135 213q92 -70 172 -92l20 280 l-106 70q-117 78 -181.5 161.5t-64.5 206.5zM346 963q0 -68 76 -119l14 223q-37 -6 -63.5 -35.5t-26.5 -68.5zM471 233q88 25 88 123q0 47 -72 105z" /> +<glyph unicode="%" horiz-adv-x="1431" d="M49 1003.5q0 131.5 93.5 224.5t224.5 93q80 0 153 -39q4 -4 16 -11l17 -11q43 -20 145 -21q180 0 377 80l197 -49l-885 -1272h-272l757 1081q-68 -45 -190 -45q2 -10 2 -30q0 -131 -93 -224.5t-224 -93.5t-224.5 93t-93.5 224.5zM289 999.5q0 -32.5 22.5 -55t55 -22.5 t55 22.5t22.5 55t-22.5 55t-55 22.5t-55 -22.5t-22.5 -55zM735 287q0 131 93.5 224t224.5 93t224 -93t93 -224t-93 -224.5t-224 -93.5t-224.5 93.5t-93.5 224.5zM975 282.5q0 -32.5 22.5 -55t55 -22.5t55 22.5t22.5 55t-22.5 55t-55 22.5t-55 -22.5t-22.5 -55z" /> +<glyph unicode="&" horiz-adv-x="1290" d="M43 500q0 158 82 281.5t231 148.5q-53 18 -85.5 70.5t-32.5 111.5q0 143 122.5 224t272.5 81q166 0 290 -86t124 -246v-81h192v-244h-188v-463q0 -31 1 -42t12 -24.5t38 -13.5q41 0 74 19l69 -201q-137 -66 -246 -66q-121 0 -183 77t-62 200v514h-195q-59 0 -100 -21.5 t-61.5 -47t-31 -80t-11.5 -86t-1 -97.5q0 -217 60 -217q10 0 71.5 45t122.5 45q35 0 70 -12v-191q-47 0 -80 -20.5t-49.5 -44t-51 -44t-83.5 -20.5q-94 0 -169 51.5t-117 132t-63.5 170t-21.5 177.5zM530 1098q0 -94 131 -94h109v36q0 78 -23.5 115t-95.5 37 q-121 0 -121 -94z" /> +<glyph unicode="'" horiz-adv-x="425" d="M59 1305l41 168h215l43 -168l-71 -330h-158z" /> +<glyph unicode="(" horiz-adv-x="688" d="M35 676q0 293 159.5 526.5t432.5 396.5l37 -239q-172 -119 -268.5 -300t-96.5 -388q0 -444 354 -733l-45 -238q-145 106 -242.5 199.5t-177 209t-116.5 255t-37 311.5z" /> +<glyph unicode=")" horiz-adv-x="694" d="M29 1360q172 -119 268 -300t96 -388q0 -444 -354 -733l45 -238q197 143 313.5 268t188 302.5t71.5 404.5q0 293 -159.5 526.5t-431.5 396.5z" /> +<glyph unicode="*" horiz-adv-x="868" d="M18 1053l41 268l240 -141l-82 229h412l-82 -229l244 141l38 -268l-211 -82l220 -293h-316l-98 180l-92 -180h-299l194 293z" /> +<glyph unicode="+" horiz-adv-x="964" d="M45 391v242h305v299h262v-299h308v-242h-308v-301h-262v301h-305z" /> +<glyph unicode="," horiz-adv-x="528" d="M27 -229q115 152 114 247q0 18 -16 156q90 68 162 68q45 0 101 -46t93 -96q-154 -289 -309 -428z" /> +<glyph unicode="-" horiz-adv-x="618" d="M45 408v227h520v-227h-520z" /> +<glyph unicode="." horiz-adv-x="528" d="M80 131q0 72 56.5 122t129.5 50q70 0 123 -46t53 -116q0 -72 -56 -122t-130 -50q-70 0 -123 46t-53 116z" /> +<glyph unicode="/" horiz-adv-x="729" d="M8 -289l443 1825h276l-442 -1825h-277z" /> +<glyph unicode="0" d="M45 501.5q0 227.5 104.5 380t311.5 152.5t311.5 -152.5t104.5 -380t-104.5 -380t-311.5 -152.5t-311.5 152.5t-104.5 380zM317 502q0 -283 144 -283q68 0 105.5 73t37.5 210q0 281 -143.5 281t-143.5 -281z" /> +<glyph unicode="1" d="M158 737v219q111 0 276 48h219v-1004h-293v737h-202z" /> +<glyph unicode="2" d="M74 193q143 92 306 249.5t163 268.5q0 37 -29 54t-68 17q-72 0 -153.5 -32.5t-140.5 -79.5l-68 219q68 68 176.5 106.5t208.5 38.5q164 0 268.5 -78.5t104.5 -238.5q0 -127 -99.5 -248t-234.5 -215h360v-254h-751z" /> +<glyph unicode="3" d="M90 -133q72 2 148.5 19.5t151.5 50t123 94t48 139.5q0 39 -17.5 64.5t-51 36t-61.5 13.5t-66 3q-119 0 -238 -13v228l129 10q188 102 254 166q33 33 33 70q0 45 -49 45q-72 0 -308 -107l-71 203q92 55 208.5 99t198.5 44q131 0 222.5 -69.5t91.5 -194.5q0 -88 -59.5 -165 t-143.5 -116q96 -23 160.5 -102.5t64.5 -175.5q0 -147 -61.5 -258t-166 -172.5t-227 -91t-260.5 -29.5h-53v209z" /> +<glyph unicode="4" d="M43 201q188 414 489 803h271v-750h78v-254h-82v-283h-283v283h-461zM319 254h193v348q-20 -25 -98.5 -164t-94.5 -184z" /> +<glyph unicode="5" d="M82 -133q106 0 208.5 27.5t185.5 102.5t83 185q0 51 -41 79t-96 28q-145 0 -307 -45l90 760h596v-252h-355l-20 -240q47 10 88 10q145 0 243.5 -84t98.5 -227q0 -176 -106.5 -305t-260.5 -188q-148 -56 -314 -56h-11h-82v205z" /> +<glyph unicode="6" d="M59 537q0 147 52.5 274t148.5 223t205.5 167t249.5 134l108 -182q-295 -176 -405 -350q90 37 135 37q150 0 241 -111t91 -262q0 -215 -98.5 -356.5t-303.5 -141.5q-147 0 -246.5 89t-138.5 212.5t-39 266.5zM350 500q0 -90 31 -185.5t102 -95.5q121 0 121 242 q0 152 -133 151q-39 0 -113 -28q-8 -53 -8 -84z" /> +<glyph unicode="7" d="M78 745v259h762v-148q0 -276 -136.5 -631.5t-324.5 -593.5l-234 140q160 217 282 482t140 492h-489z" /> +<glyph unicode="8" d="M31 352q0 178 219 320q-184 129 -184 266q0 166 119.5 259t289.5 93q164 0 269.5 -89t105.5 -251q0 -133 -188 -260q113 -59 176 -132t63 -181q0 -188 -130 -298t-322 -110q-168 0 -293 108.5t-125 274.5zM326 373q0 -63 40 -112.5t101 -49.5q63 0 100 46t37 112 q0 82 -158 180q-120 -90 -120 -176zM354 932q0 -72 101 -135q111 72 110 153q0 109 -110 109q-101 0 -101 -127z" /> +<glyph unicode="9" d="M45 537q0 215 98.5 356t302.5 141q147 0 247 -89t138.5 -212t38.5 -266q0 -500 -673 -807l-95 193q299 158 410 348q-84 -37 -135 -37q-150 0 -241 110.5t-91 262.5zM330 543q0 -74 28.5 -113t100.5 -39q39 0 112 29q8 53 9 84q0 90 -31 184t-103 94q-41 0 -66.5 -23.5 t-35.5 -67.5t-12 -72.5t-2 -75.5z" /> +<glyph unicode=":" horiz-adv-x="528" d="M80 131q0 72 56.5 122t129.5 50q70 0 123 -46t53 -116q0 -72 -56 -122t-130 -50q-70 0 -123 46t-53 116zM80 721q0 74 56.5 124t129.5 50q70 0 123 -46t53 -116q0 -74 -56 -124t-130 -50q-70 0 -123 46t-53 116z" /> +<glyph unicode=";" horiz-adv-x="528" d="M20 -229q115 145 115 247q0 18 -16 156q90 68 162 68q47 0 102 -45t92 -97q-154 -289 -309 -428zM94 719q0 74 56.5 124t130.5 50q70 0 123 -46t53 -116q0 -74 -56.5 -124t-130.5 -50q-70 0 -123 46t-53 116z" /> +<glyph unicode="<" horiz-adv-x="614" d="M33 512l352 432l207 -168l-199 -262l201 -270l-207 -164z" /> +<glyph unicode="=" horiz-adv-x="983" d="M35 248v219h893v-219h-893zM35 545v219h893v-219h-893z" /> +<glyph unicode=">" horiz-adv-x="614" d="M31 244l207 -164l354 432l-352 432l-207 -168l198 -262z" /> +<glyph unicode="?" horiz-adv-x="733" d="M80 122.5q0 65.5 56.5 113t129.5 47.5q70 0 123 -43t53 -108.5t-57 -113t-129 -47.5q-70 0 -123 43t-53 108.5zM137 410v110q0 121 17.5 193.5t83.5 140.5l106 111q86 90 86 151q0 29 -15.5 43.5t-31.5 16.5t-49 2q-90 0 -187 -27v227q188 43 277 43q137 0 216 -82 t79 -219q0 -119 -113 -241l-127 -138q-92 -98 -92 -221v-110h-250z" /> +<glyph unicode="@" horiz-adv-x="1622" d="M51 721q0 311 236.5 535.5t550.5 224.5q195 0 357.5 -71t266 -215t103.5 -339q0 -180 -152.5 -348t-322.5 -168q-82 0 -127 35t-74 104q-147 -121 -242 -121q-109 0 -159 79t-50 196q0 182 85 316t251 134q94 0 174 -79l8 51h222l-66 -424q-2 -10 -5 -27.5t-5 -32 t-2 -26.5q0 -45 43 -45q68 0 114 118.5t46 206.5q0 207 -132.5 310.5t-343.5 103.5q-205 0 -352 -154.5t-147 -361.5q0 -240 169 -379t414 -139q154 0 259.5 44t236.5 150l113 -141q-160 -147 -314.5 -218t-355.5 -71q-324 0 -561.5 216.5t-237.5 535.5zM672 657 q0 -78 39 -77q29 0 54.5 6t34.5 10t43 21.5t40 21.5l28 186q-86 43 -114 43q-125 0 -125 -211z" /> +<glyph unicode="A" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM428 506h193l-97 393z" /> +<glyph unicode="B" horiz-adv-x="1028" d="M109 31v1259h413q182 0 296 -84t114 -260q0 -74 -49 -151.5t-119 -96.5q102 -16 169.5 -104t67.5 -193q0 -207 -149.5 -319.5t-362.5 -112.5q-110 1 -380 62zM414 227q66 -14 71 -14q96 0 153.5 47t57.5 141q0 39 -13 68t-32.5 43t-51.5 21.5t-56.5 9.5t-61.5 2h-67v-318 zM414 776h67q150 0 150 142q0 117 -109 116h-108v-258z" /> +<glyph unicode="C" horiz-adv-x="1017" d="M66 645q0 168 59 318.5t187 254t300 103.5q90 0 190.5 -24.5t162.5 -73.5l-113 -205q-94 47 -240 47q-82 0 -140 -81t-79.5 -174t-21.5 -173q0 -70 9 -133.5t33.5 -130t77 -106.5t125.5 -40q129 0 242 74l133 -203q-72 -59 -178 -94t-205 -35q-139 0 -246.5 57.5 t-170 155t-94 214t-31.5 249.5z" /> +<glyph unicode="D" horiz-adv-x="1120" d="M109 0v1290h428q272 0 397 -177t125 -462q0 -170 -57.5 -314t-183.5 -240.5t-300 -96.5h-409zM412 258h106q70 0 118 37t71.5 98.5t34 120.5t10.5 125q0 76 -6.5 131t-26 121.5t-68.5 103.5t-123 37h-116v-774z" /> +<glyph unicode="E" horiz-adv-x="929" d="M106 0v1290h748v-262h-442v-225h340v-266h-340v-271h465v-266h-771z" /> +<glyph unicode="F" horiz-adv-x="843" d="M104 0v1290h695v-262h-389v-225h307v-266h-307v-537h-306z" /> +<glyph unicode="G" horiz-adv-x="1073" d="M59 645q0 170 59.5 320.5t188.5 252t303 101.5q102 0 216 -33t188 -92l-117 -201q-137 72 -287 72q-82 0 -141 -81t-81.5 -174t-22.5 -173q0 -70 10 -134.5t35.5 -130t78 -105.5t125.5 -40q72 0 97 9v395h293v-588q-162 -74 -394 -74q-139 0 -247.5 56.5t-173 152.5 t-97.5 215t-33 252z" /> +<glyph unicode="H" horiz-adv-x="1122" d="M111 0v1290h305v-487h291v487h305v-1290h-305v539h-291v-539h-305z" /> +<glyph unicode="I" horiz-adv-x="487" d="M92 0v1290h303v-1290h-303z" /> +<glyph unicode="J" horiz-adv-x="501" d="M-29 -125q49 16 90 52t41 79v1284h301v-1294q0 -74 -29.5 -131.5t-87 -95t-111.5 -60t-130 -45.5z" /> +<glyph unicode="K" horiz-adv-x="993" d="M111 0v1290h305v-438l235 438h342l-389 -649l379 -504v-137h-264l-303 440v-440h-305z" /> +<glyph unicode="L" horiz-adv-x="782" d="M104 0v1290h297v-1028h365v-262h-662z" /> +<glyph unicode="M" horiz-adv-x="1519" d="M111 0v1290h331l287 -784q20 -55 31 -135q10 80 31 135l284 784h334v-1290h-305v565l16 156l-243 -721h-236l-244 721l19 -156v-565h-305z" /> +<glyph unicode="N" horiz-adv-x="1134" d="M111 0v1290h329l224 -508q37 -80 55 -176v684h305v-1290h-281l-344 764q16 -82 17 -166v-598h-305z" /> +<glyph unicode="O" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM367 645.5q0 -65.5 2 -113t13 -109t31.5 -99t57.5 -65.5t90 -28t90 28 t57.5 67t32 100t13.5 108.5t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5t-2 -112.5z" /> +<glyph unicode="P" horiz-adv-x="1001" d="M106 0v1290h340q238 0 384.5 -98t146.5 -326q0 -186 -133 -319t-320 -133q-66 0 -112 28v-442h-306zM412 688q61 -25 82 -24q178 0 178 204q0 96 -56.5 131t-158.5 35h-45v-346z" /> +<glyph unicode="Q" horiz-adv-x="1122" d="M61 645q0 121 29 235.5t85 216t156.5 163t229.5 61.5t229.5 -61.5t157 -163t85 -216t28.5 -235.5q0 -199 -76 -379t-231 -256q63 -72 139 -71q72 0 168 30l-45 -288q-20 -4 -60 -5q-156 0 -261 75t-206 222q-113 16 -198.5 85t-133.5 166.5t-72 203.5t-24 217zM367 645 q0 -49 1 -79.5t6 -87t17 -93.5t32.5 -76t55.5 -58.5t82 -19.5q55 0 94 32t58.5 73t30 107.5t11.5 104.5t1 97q0 49 -1 80t-6.5 87t-17.5 93t-32.5 76t-55.5 58.5t-82 19.5t-82 -19.5t-55.5 -58.5t-32.5 -76t-17 -93t-6 -87t-1 -80z" /> +<glyph unicode="R" horiz-adv-x="1034" d="M111 0v1290h338q152 0 265 -36.5t190 -135t77 -252.5q0 -125 -67.5 -230.5t-182.5 -148.5l270 -350v-137h-256l-329 451v-451h-305zM416 682q47 -14 76 -14q84 0 132 57t48 143q0 88 -43 127t-133 39h-80v-352z" /> +<glyph unicode="S" horiz-adv-x="888" d="M47 954q0 168 116 267.5t288 99.5q106 0 214.5 -54.5t174.5 -140.5l-170 -151q-37 41 -95.5 68.5t-113.5 27.5q-45 0 -80 -31.5t-35 -76.5q0 -53 53.5 -98.5t128 -85.5t150.5 -90t129 -136t53 -199q0 -176 -128 -280.5t-308 -104.5q-84 0 -182.5 42t-169.5 104l135 213 q137 -100 219 -101q59 0 96 35t37 94q0 37 -38 74t-95 68.5t-122.5 77t-123 93.5t-95.5 122.5t-38 162.5z" /> +<glyph unicode="T" horiz-adv-x="829" d="M23 1022v268h786v-268h-244v-1022h-303l2 1022h-241z" /> +<glyph unicode="U" horiz-adv-x="1142" d="M109 514v776h305v-776q0 -147 37.5 -215t119.5 -68t120 68t38 215v776h305v-776q0 -104 -23.5 -195.5t-73.5 -172t-144.5 -129t-221.5 -48.5t-221 48.5t-144 129t-73.5 172t-23.5 195.5z" /> +<glyph unicode="V" horiz-adv-x="1044" d="M10 1290h328l158 -696q14 -59 30 -182q18 129 31 182l158 696h325l-364 -1290h-301z" /> +<glyph unicode="W" horiz-adv-x="1449" d="M12 1290h312l82 -585l22 -209q10 139 27 209l133 585h274l133 -585l31 -205q8 133 18 205l82 585h312l-250 -1290h-305l-138 690l-20 137q-10 -90 -20 -137l-138 -690h-305z" /> +<glyph unicode="X" horiz-adv-x="1007" d="M10 0l299 664l-289 626h342l130 -364l131 364h331l-274 -626l317 -664h-354l-149 399l-142 -399h-342z" /> +<glyph unicode="Y" horiz-adv-x="964" d="M4 1290h326l151 -502l154 502h326l-326 -807v-483h-305l2 483z" /> +<glyph unicode="Z" horiz-adv-x="937" d="M31 0v211q193 375 450 813h-409v266h794v-215q-262 -428 -467 -807h506v-268h-874z" /> +<glyph unicode="[" horiz-adv-x="507" d="M57 -319v1816h394v-250h-123v-1317h123v-249h-394z" /> +<glyph unicode="\" horiz-adv-x="686" d="M10 1536h277l391 -1825h-277z" /> +<glyph unicode="]" horiz-adv-x="509" d="M57 -70v-249h394v1816h-394v-250h123v-1317h-123z" /> +<glyph unicode="^" horiz-adv-x="1277" d="M84 643l453 819h198l453 -819h-309l-242 469l-246 -469h-307z" /> +<glyph unicode="_" d="M0 -92h922v-246h-922v246z" /> +<glyph unicode="`" horiz-adv-x="692" d="M39 1393l205 202q164 -193 331 -319l-114 -174q-221 121 -422 291z" /> +<glyph unicode="a" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102z" /> +<glyph unicode="b" horiz-adv-x="1030" d="M117 115v1308h297v-493q100 104 190 104q182 0 283.5 -142t101.5 -331q0 -117 -26.5 -220t-81 -188t-148.5 -134.5t-217 -49.5q-192 1 -399 146zM414 250q53 -37 110 -37q164 0 164 328q0 248 -131 247q-74 0 -143 -104v-434z" /> +<glyph unicode="c" horiz-adv-x="843" d="M45 494q0 217 122 378.5t333 161.5q80 0 166 -34.5t145 -90.5l-133 -174q-70 55 -176 56q-55 0 -93 -53.5t-52.5 -114t-14.5 -113.5q0 -55 14.5 -119.5t54.5 -122t97 -57.5q109 0 217 88l106 -190q-68 -59 -160.5 -99.5t-176.5 -40.5q-205 0 -327 157t-122 368z" /> +<glyph unicode="d" horiz-adv-x="1048" d="M49 471q0 117 22.5 213t72 177t137.5 127t211 46q63 0 147 -30v419h297v-1185q0 -27 2 -44.5t15.5 -33t37.5 -15.5l-61 -176q-12 0 -32.5 -1t-33.5 -1q-61 0 -109 36t-67 106q-25 -59 -92.5 -100.5t-134.5 -41.5q-193 0 -302.5 152.5t-109.5 351.5zM352 489 q0 -274 133 -274q57 0 94 50t48.5 105.5t11.5 112.5v279q-63 29 -139 29q-37 0 -63.5 -13.5t-42 -42t-25 -52.5t-12.5 -69t-4 -63.5t-1 -61.5z" /> +<glyph unicode="e" horiz-adv-x="964" d="M47 524q0 211 135 360.5t344 149.5q162 0 279 -116.5t121 -278.5q4 -111 4 -164h-584q-2 -10 -2 -33q0 -86 38 -157.5t118 -71.5q162 0 282 88l86 -184q-76 -63 -182 -106.5t-197 -43.5q-150 0 -253 84t-146 206t-43 267zM367 664h284q-2 68 -39 121t-100 53 q-57 0 -98 -56.5t-47 -117.5z" /> +<glyph unicode="f" horiz-adv-x="585" d="M16 791v213h101v94q0 96 43 167.5t104.5 104.5t123 52.5t104.5 21.5l43 2l45 -211q-6 -2 -17.5 -4t-40 -13.5t-50 -26.5t-40 -43t-18.5 -63v-81h153v-240h-153v-764h-297v774z" /> +<glyph unicode="g" horiz-adv-x="931" d="M37 -121q0 61 56.5 118.5t119.5 80.5q-45 12 -80 51t-35 86q0 82 138 160q-74 35 -123.5 119t-49.5 159q0 172 112 276.5t292 104.5q98 0 176 -30h252v-216l-96 25q41 -72 41 -164q0 -127 -82 -214t-207 -111q-4 0 -31.5 -4.5t-44 -8.5t-39 -12t-34 -21.5t-11.5 -29.5 q0 -8 7.5 -15.5t19.5 -10.5l25 -6q13 -3 33 -3h32h30h21h66q125 0 204.5 -54.5t79.5 -172.5q0 -182 -148.5 -287t-334.5 -105q-68 0 -132.5 14.5t-124.5 45.5t-96 89t-36 136zM322 -92q0 -88 112 -88q82 0 140.5 43t58.5 108q0 8 -4 14.5t-12.5 10.5t-15.5 6t-20.5 3 t-20.5 1h-21h-19h-108q-90 -55 -90 -98zM356 674q0 -147 103 -148q94 0 94 138q0 145 -98.5 145t-98.5 -135z" /> +<glyph unicode="h" horiz-adv-x="1062" d="M113 0v1423h297v-493q147 104 233 104q94 0 158.5 -26.5t96.5 -73.5t44 -96.5t12 -112.5v-725h-297v725q0 63 -51 63q-33 0 -64.5 -9t-47 -17t-47.5 -30l-37 -25v-707h-297z" /> +<glyph unicode="i" horiz-adv-x="487" d="M61 1268q0 72 57.5 123t129 51t125 -47t53.5 -117q0 -74 -56.5 -123t-129.5 -49q-72 0 -125.5 46t-53.5 116zM96 0v1004h293v-1004h-293z" /> +<glyph unicode="j" horiz-adv-x="487" d="M-35 -193q82 37 107.5 67t25.5 79v1051h293v-1065q0 -80 -31.5 -139.5t-93 -98.5t-112 -59.5t-125.5 -42.5zM61 1268q0 72 57.5 123t129 51t125 -47t53.5 -117q0 -74 -56.5 -123t-129.5 -49q-72 0 -125.5 46t-53.5 116z" /> +<glyph unicode="k" horiz-adv-x="964" d="M115 0v1423h297v-673l198 254h334l-352 -429l362 -446v-129h-262l-280 379v-379h-297z" /> +<glyph unicode="l" horiz-adv-x="483" d="M84 436v987h293v-987q0 -117 16.5 -225.5t32.5 -159.5l14 -51h-286q-70 157 -70 436z" /> +<glyph unicode="m" horiz-adv-x="1579" d="M115 0v1006h297v-76q135 104 235 104q160 0 230 -96l6 -8q156 104 256 104q332 0 331 -303v-731h-296v711q0 80 -52 80q-45 0 -90 -16.5t-67 -33.5l-23 -18v-723h-297v705q0 49 -11 66t-38 17q-35 0 -67.5 -10t-46 -18t-41 -29.5t-29.5 -23.5v-707h-297z" /> +<glyph unicode="n" horiz-adv-x="1062" d="M113 0v1004h297v-74q147 104 233 104q94 0 158.5 -26.5t96.5 -73.5t44 -96.5t12 -112.5v-725h-297v725q0 63 -51 63q-33 0 -64.5 -9t-47 -17t-47.5 -30l-37 -25v-707h-297z" /> +<glyph unicode="o" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM346 502q0 -133 41 -210t112.5 -77t112.5 77t41 210t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5z" /> +<glyph unicode="p" horiz-adv-x="1056" d="M113 -358v1362h299l-2 -74q12 12 31.5 29.5t75.5 46t106 28.5q125 0 216 -82t129 -191.5t38 -223.5q0 -98 -18.5 -187.5t-61.5 -180.5t-132 -145.5t-214 -54.5q-94 0 -168 72v-399h-299zM412 485q0 -276 159 -276q33 0 56.5 15.5t38 47t22.5 58t11 73t3 62.5v55 q0 268 -131 268q-29 0 -56.5 -10t-36.5 -15t-36.5 -30.5t-29.5 -27.5v-220z" /> +<glyph unicode="q" horiz-adv-x="1054" d="M47 459q0 94 25.5 190t77 184.5t143.5 144.5t209 56q78 0 187.5 -21.5t178.5 -41.5l72 -23v-1306h-299v405q-84 -78 -168 -78q-150 0 -250 77t-138 182.5t-38 230.5zM348 481q0 -272 133 -272q61 0 99 52t49.5 108.5t11.5 111.5v293q-74 18 -116 18q-12 0 -21 -1 q-47 -8 -80 -42t-48.5 -83.5t-21.5 -93.5t-6 -91z" /> +<glyph unicode="r" horiz-adv-x="653" d="M109 0v1004h299v-74q88 104 139 104q27 0 53.5 -7t38.5 -15l14 -8l-39 -291q-72 31 -129 30q-23 0 -43 -7t-28 -15l-8 -8v-713h-297z" /> +<glyph unicode="s" horiz-adv-x="858" d="M49 733q4 123 107.5 212t289.5 89q106 0 197.5 -43t130.5 -86l37 -43l-156 -143q-111 84 -213 84q-98 0 -98 -58q0 -12 5 -22t18.5 -19.5t20.5 -13.5t30 -14l96 -43q74 -33 103.5 -47.5t84 -50t77 -68.5t39.5 -84q14 -41 14 -90q0 -11 -1 -23q-14 -178 -186 -256 q-94 -45 -223 -45q-74 0 -160 36t-135 71l-51 35l108 198q162 -104 244 -104q113 0 113 74q0 43 -80 79q-29 14 -110 49t-118.5 56.5t-90 61.5t-73.5 91q-20 47 -20 106v11z" /> +<glyph unicode="t" horiz-adv-x="626" d="M35 791v213h96v180h285v-180h168v-236h-164v-475q0 -61 33 -72q16 -6 32 -6q32 0 68 21l63 -203q-88 -37 -120 -47q-49 -16 -127 -17q-127 0 -186.5 80t-59.5 195v524z" /> +<glyph unicode="u" horiz-adv-x="1062" d="M111 274v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119q-317 0 -317 305z" /> +<glyph unicode="v" horiz-adv-x="925" d="M16 1004h322l135 -586q96 285 127 586h315q-141 -582 -348 -1004h-213z" /> +<glyph unicode="w" horiz-adv-x="1372" d="M16 1004h314q92 -457 92 -586l135 586h270l138 -586q84 344 84 586h307q-66 -555 -277 -1004h-262q-100 324 -127 504q-20 -143 -125 -504h-276z" /> +<glyph unicode="x" horiz-adv-x="868" d="M4 0l275 518l-269 486h330l92 -216l96 216h326l-270 -476l280 -528h-334l-98 262l-104 -262h-324z" /> +<glyph unicode="y" horiz-adv-x="929" d="M18 1004h316q137 -459 149 -658q78 283 125 658h305q-29 -154 -70.5 -323t-106 -380t-152.5 -376t-181 -226q-37 -25 -96 -46.5t-102 -29.5l-41 -10l-68 217q72 25 113 50.5t57.5 46t46.5 73.5l13 20z" /> +<glyph unicode="z" horiz-adv-x="872" d="M51 0v197q154 283 357 553h-324v254h709v-209q-217 -270 -371 -541h405v-254h-776z" /> +<glyph unicode="{" horiz-adv-x="681" d="M31 481v215q74 0 116.5 40t42.5 120v340q0 313 265 313h141l51 -227h-119q-43 0 -56 -20.5t-13 -75.5v-357q0 -131 -127 -243q127 -113 127 -240v-356q0 -55 13 -74.5t56 -19.5h121l-51 -228h-70h-69q-268 0 -269 312v339q0 80 -42.5 121t-116.5 41z" /> +<glyph unicode="|" horiz-adv-x="454" d="M94 -29v1569h266v-1569h-266z" /> +<glyph unicode="}" horiz-adv-x="681" d="M31 -104l51 -228h70h69q270 0 271 312v339q0 80 41.5 121t115.5 41v215q-74 0 -115.5 40t-41.5 120v340q0 313 -267 313h-141l-51 -227h119q43 0 57 -20.5t14 -75.5v-357q0 -133 125 -243q-125 -111 -125 -240v-356q0 -53 -14 -73.5t-57 -20.5h-121z" /> +<glyph unicode="~" horiz-adv-x="1363" d="M274 463v209q10 16 27.5 39.5t71 62.5t104.5 39q92 0 229.5 -66.5t190.5 -66.5q41 0 90 28.5t78 57.5l27 27v-224q-8 -16 -24.5 -38.5t-67 -61.5t-103.5 -39q-102 0 -239.5 66.5t-182.5 66.5q-74 0 -107 -16t-94 -84z" /> +<glyph unicode="¡" horiz-adv-x="540" d="M70 -465q53 262 53 430v600h260l11 -194l12.5 -222.5t5.5 -195.5q0 -262 -39 -381zM74 844q0 68 56 114t130 46q72 0 125 -43t53 -107q0 -68 -57 -115t-131 -47q-70 0 -123 43t-53 109z" /> +<glyph unicode="¢" horiz-adv-x="843" d="M45 494q0 221 109 364q66 82 153.5 127t175.5 49v135h92v-141q74 -10 132.5 -42t80.5 -58l23 -27l-145 -158q-31 25 -91 39v-561q82 23 150 78l106 -190q-113 -98 -256 -132v-129h-92v121q-176 2 -303 142q-135 150 -135 383zM342 510q0 -115 41 -197t100 -98v573 q-53 -14 -97 -82.5t-44 -195.5z" /> +<glyph unicode="£" horiz-adv-x="905" d="M25 727l96 195v198q0 109 67.5 180.5t149.5 95t170 23.5q166 0 291 -100l-82 -211q-119 66 -197 66q-53 0 -77.5 -17.5t-24.5 -62.5v-172h260v-252h-260v-148q0 -96 -29 -268h55q70 -16 99 -31q38 -12 72 -11q114 0 202 122l60 -211q-2 -4 -9 -10l-25 -27 q-19 -20 -40 -35.5t-54.5 -36t-67.5 -29t-80 -15.5q-15 -2 -31 -2q-30 0 -60 9l-102 23h-375q88 422 88 532v154z" /> +<glyph unicode="¤" horiz-adv-x="1110" d="M-12 436l98 217h68v37l2 41h-156l104 219h80q43 205 200 334t394 129q125 0 213 -40t180 -124l-112 -235q-90 90 -148.5 118.5t-142.5 28.5q-217 0 -285 -211h547l-102 -219h-479q-4 -16 -5 -78h447l-105 -219h-305q55 -207 267 -207q53 0 83.5 8.5t91 55.5t144.5 145 v-321q-90 -80 -152.5 -110t-177.5 -30q-211 0 -362.5 123t-192.5 338h-194z" /> +<glyph unicode="¥" horiz-adv-x="974" d="M4 1290h330l153 -502l152 502h322l-179 -440h158v-232h-252l-47 -116h299v-232h-305v-270h-303v270h-291v232h283l-48 116h-235v232h141z" /> +<glyph unicode="§" horiz-adv-x="860" d="M20 -160l111 207q137 -76 274 -76q51 0 82 22.5t35 57.5q2 16 -17.5 35.5t-56 40t-68.5 35.5l-76 33q-44 18 -56 24q-104 51 -163.5 113.5t-59.5 159.5q0 92 55 172.5t143 105.5q-68 16 -129 79.5t-61 137.5q0 154 113.5 244t283.5 90t350 -109l-110 -196q-8 8 -26.5 18 t-81.5 26q-49 12 -105 12q-15 0 -31 -1q-98 -6 -98 -78q0 -8 10 -19t29 -22l39 -21q20 -11 42.5 -21.5t39.5 -17.5l32 -13l17 -7q55 -27 97 -52t87 -63t69.5 -85t24.5 -103q0 -90 -50 -173t-128 -111q74 -25 122 -83.5t48 -125.5q0 -164 -112.5 -261.5t-295.5 -97.5 q-100 0 -182 26.5t-197 96.5zM279 506q2 -31 35.5 -55.5t80.5 -24.5q100 0 135 35q33 33 33 87q0 35 -32.5 60t-88.5 25q-92 0 -130 -36q-34 -32 -34 -81q1 -5 1 -10z" /> +<glyph unicode="¨" horiz-adv-x="786" d="M43 1276q0 72 50 122t118 50q66 0 113 -47t47 -115q0 -33 -13 -63q-18 -49 -61 -79t-94 -30q-66 0 -113 47t-47 115zM410 1276q0 72 50 122t118 50q63 0 111 -47t48 -115q0 -33 -12 -63q-20 -49 -63.5 -79t-92.5 -30q-66 0 -112.5 47t-46.5 115z" /> +<glyph unicode="©" horiz-adv-x="1800" d="M242 500q0 178 86 329q86 150 243 240q164 88 328 88q170 0 328 -88q162 -94 243 -240q86 -152 86 -329q0 -184 -90 -334q-96 -160 -243 -240q-150 -86 -324 -86t-324 86q-147 80 -241 240q-92 160 -92 334zM406 500q0 -135 65 -254q70 -117 182 -180q111 -61 246 -64h6 q127 0 242 66.5t180.5 177t65.5 254.5q0 131 -66 245q-41 76 -110 132q-59 55 -148 88q-92 31 -170 30q-131 0 -248 -67q-115 -68 -180 -182.5t-65 -245.5zM559 514q0 158 96.5 266.5t259.5 108.5q66 0 131.5 -29t98.5 -57l33 -31l-121 -137l-17 12q-8 6 -17 10.5l-15.5 7.5 t-15.5 4t-14 3t-16 2h-15h-15h-14q-33 0 -71 -39t-38 -123q0 -80 31.5 -130t87.5 -50q82 0 162 65l96 -155q-14 -14 -40 -35t-95.5 -54.5t-128.5 -33.5q-158 0 -260.5 102.5t-102.5 292.5z" /> +<glyph unicode="ª" horiz-adv-x="774" d="M39 948q0 63 55 166l342 137v33q0 29 -26.5 45.5t-57.5 16.5q-94 0 -186 -72l-80 127q55 55 134 90t155 35q119 0 195.5 -57.5t76.5 -174.5v-405q0 -39 19 -39q14 0 22 6l35 -106q-70 -33 -121 -33q-57 0 -93 33.5t-42 89.5q-20 -55 -74.5 -89t-116.5 -34 q-237 0 -237 231zM250 952q0 -25 18.5 -40t42.5 -15q63 0 97 49t34 115v41l-178 -72q-14 -43 -14 -78z" /> +<glyph unicode="«" horiz-adv-x="1024" d="M72 512l280 432l207 -168l-147 -266l149 -266l-207 -164zM518 510l240 434l207 -168l-127 -262l129 -270l-207 -164z" /> +<glyph unicode="¬" horiz-adv-x="1095" d="M51 668v233h922v-545l-264 -53v365h-658z" /> +<glyph unicode="­" horiz-adv-x="618" d="M45 408v227h520v-227h-520z" /> +<glyph unicode="®" horiz-adv-x="1800" d="M242 500q0 178 86 329q86 150 243 240q164 88 328 88q170 0 328 -88q162 -94 243 -240q86 -152 86 -329q0 -184 -90 -334q-96 -160 -243 -240q-150 -86 -324 -86t-324 86q-147 80 -241 240q-92 160 -92 334zM406 500q0 -135 65 -254q70 -117 182 -180q111 -61 246 -64h6 q127 0 242 66.5t180.5 177t65.5 254.5q0 131 -66 245q-41 76 -110 132q-59 55 -148 88q-92 31 -170 30q-131 0 -248 -67q-115 -68 -180 -182.5t-65 -245.5zM651 129v760h219q139 0 230.5 -64.5t91.5 -197.5q0 -70 -40 -142.5t-101 -89.5l151 -123v-143h-176q-14 14 -143 172 l10 -172h-242zM893 535q6 -2 18 -3q61 0 62 80q0 66 -64 66l-16 -2v-141z" /> +<glyph unicode="¯" horiz-adv-x="686" d="M2 1143v182h680v-182h-680z" /> +<glyph unicode="°" horiz-adv-x="720" d="M49 1030q0 129 91 220t220 91t220.5 -91t91.5 -218q0 -129 -91.5 -220t-220.5 -91t-220 91t-91 218zM254 1034q0 -43 30.5 -73.5t73.5 -30.5t74 30.5t31 73.5t-31 74t-74 31t-73.5 -31t-30.5 -74z" /> +<glyph unicode="±" horiz-adv-x="915" d="M78 487v234h246v209h262v-209h243v-234h-243v-200h-262v200h-246zM86 0v231h737v-231h-737z" /> +<glyph unicode="²" d="M74 193q143 92 306 249.5t163 268.5q0 37 -29 54t-68 17q-72 0 -153.5 -32.5t-140.5 -79.5l-68 219q68 68 176.5 106.5t208.5 38.5q164 0 268.5 -78.5t104.5 -238.5q0 -127 -99.5 -248t-234.5 -215h360v-254h-751z" /> +<glyph unicode="³" d="M90 -133q72 2 148.5 19.5t151.5 50t123 94t48 139.5q0 39 -17.5 64.5t-51 36t-61.5 13.5t-66 3q-119 0 -238 -13v228l129 10q188 102 254 166q33 33 33 70q0 45 -49 45q-72 0 -308 -107l-71 203q92 55 208.5 99t198.5 44q131 0 222.5 -69.5t91.5 -194.5q0 -88 -59.5 -165 t-143.5 -116q96 -23 160.5 -102.5t64.5 -175.5q0 -147 -61.5 -258t-166 -172.5t-227 -91t-260.5 -29.5h-53v209z" /> +<glyph unicode="´" horiz-adv-x="692" d="M88 1284l115 -174q221 121 422 291l-205 203q-164 -193 -332 -320z" /> +<glyph unicode="µ" horiz-adv-x="1062" d="M27 -358q66 113 102 219q33 90 33 213q-51 76 -51 200v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119l-61 11q35 -45 34 -115q0 -39 -10 -94.5t-18 -92.5l-11 -36h-335z" /> +<glyph unicode="¶" horiz-adv-x="1112" d="M39 885q0 180 98.5 307t304.5 127q49 0 144.5 -16.5t126.5 -18.5l-8 86h249l4 -86l84 19v-222l-81 -22q-6 -330 -80 -682t-215 -625l-269 103q147 258 229.5 573t88.5 625l-16 5q-9 3 -36.5 11t-53 11t-57.5 2t-54 -9q-55 -23 -74 -109q-6 -30 -6 -59q0 -56 23 -107 q36 -79 116 -79h68q-10 -20 -28.5 -52t-81 -90.5t-132.5 -70.5q-26 -5 -51 -5q-41 0 -78 13q-59 20 -98 62.5t-67 98.5t-39 109.5t-11 100.5z" /> +<glyph unicode="·" horiz-adv-x="528" d="M80 520q0 72 56.5 122t129.5 50q70 0 123 -46t53 -116q0 -72 -57 -123t-129 -51q-70 0 -123 47t-53 117z" /> +<glyph unicode="¸" horiz-adv-x="823" d="M305 -274q193 66 201 110q6 39 -34 42q-6 0 -13 1q-34 0 -70 -14l-41 -17v152h301q111 -70 111 -162q0 -143 -287 -244z" /> +<glyph unicode="¹" d="M158 737v219q111 0 276 48h219v-1004h-293v737h-202z" /> +<glyph unicode="º" horiz-adv-x="802" d="M63 1120q0 154 89.5 279t253 125t254 -125t90.5 -279q0 -156 -90.5 -280.5t-254 -124.5t-253 124.5t-89.5 280.5zM289 1120q0 -102 31.5 -160.5t85.5 -58.5q55 0 85.5 58.5t30.5 161t-30.5 158.5t-85.5 56q-53 0 -85 -57.5t-32 -157.5z" /> +<glyph unicode="»" horiz-adv-x="1024" d="M63 244l207 -164l242 430l-240 434l-206 -168l127 -262zM469 244l207 -164l282 432l-280 432l-207 -168l147 -266z" /> +<glyph unicode="¼" horiz-adv-x="2537" d="M158 737v219q111 0 276 48h219v-1004h-293v737h-202zM698 -256l869 1769h288l-868 -1769h-289zM1659 201q188 414 489 803h271v-750h78v-254h-82v-283h-283v283h-461zM1935 254h193v348q-20 -25 -98.5 -164t-94.5 -184z" /> +<glyph unicode="½" horiz-adv-x="2537" d="M158 737v219q111 0 276 48h219v-1004h-293v737h-202zM698 -256l869 1769h288l-868 -1769h-289zM1690 193q143 92 306 249.5t163 268.5q0 37 -29 54t-68 17q-72 0 -153.5 -32.5t-141.5 -79.5l-67 219q68 68 176.5 106.5t208.5 38.5q164 0 268.5 -78.5t104.5 -238.5 q0 -127 -99.5 -248t-234.5 -215h360v-254h-751z" /> +<glyph unicode="¾" horiz-adv-x="2537" d="M90 -133q72 2 148.5 19.5t151.5 50t123 94t48 139.5q0 39 -17.5 64.5t-51 36t-61.5 13.5t-66 3q-119 0 -238 -13v228l129 10q188 102 254 166q33 33 33 70q0 45 -49 45q-72 0 -308 -107l-71 203q92 55 208.5 99t198.5 44q131 0 222.5 -69.5t91.5 -194.5q0 -88 -59.5 -165 t-143.5 -116q96 -23 160.5 -102.5t64.5 -175.5q0 -147 -61.5 -258t-166 -172.5t-227 -91t-260.5 -29.5h-53v209zM698 -256l869 1769h288l-868 -1769h-289zM1659 201q188 414 489 803h271v-750h78v-254h-82v-283h-283v283h-461zM1935 254h193v348q-20 -25 -98.5 -164 t-94.5 -184z" /> +<glyph unicode="¿" horiz-adv-x="733" d="M39 -117q0 125 111 242l129 137q90 96 90 221v111h249v-111q0 -121 -17 -193.5t-83 -139.5l-106 -111q-86 -90 -86 -152q0 -29 16 -43t32.5 -16t47.5 -2q90 0 186 27v-228q-184 -43 -276 -43q-137 0 -215 82t-78 219zM313 872.5q0 65.5 57.5 112.5t129 47t125 -43 t53.5 -108.5t-57.5 -112.5t-129 -47t-125 43t-53.5 108.5z" /> +<glyph unicode="À" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM246 1645l205 202q164 -193 331 -319l-114 -174q-221 121 -422 291zM428 506h193l-97 393z" /> +<glyph unicode="Á" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM264 1536l115 -174q221 121 422 291l-205 202q-164 -192 -332 -319zM428 506h193l-97 393z" /> +<glyph unicode="Â" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM115 1542l94 57q98 61 285 242q164 -164 284 -239l94 -58l-137 -186q-121 68 -241 188q-117 -117 -242 -188zM428 506h193l-97 393z" /> +<glyph unicode="Ã" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM129 1591q78 72 126 97.5t128 25.5q68 0 154 -33.5t112 -33.5q57 0 127 67l117 -137l-26 -26q-22 -22 -26 -25l-26 -22q-20 -17 -30 -22l-29 -17q-20 -11 -35.5 -14t-38.5 -7t-47 -4q-55 0 -138 33.5 t-120 33.5q-70 0 -144 -65zM428 506h193l-97 393z" /> +<glyph unicode="Ä" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM174 1559q0 72 50 122t118 50q63 0 110.5 -46.5t47.5 -115.5q0 -31 -11 -62q-20 -49 -63 -79.5t-94 -30.5q-66 0 -112 47t-46 115zM428 506h193l-97 393zM539 1559q0 72 50 122t118 50q66 0 112.5 -46.5 t46.5 -115.5q0 -33 -12 -62q-18 -49 -61 -79.5t-95 -30.5q-66 0 -112.5 47t-46.5 115z" /> +<glyph unicode="Å" horiz-adv-x="1044" d="M12 0l361 1290h301l362 -1290h-317l-66 266h-258l-65 -266h-318zM272 1595q0 104 74 179t180 75q104 0 179 -74.5t75 -179.5q0 -106 -74.5 -180t-179.5 -74q-106 0 -180 74t-74 180zM428 506h193l-97 393zM471 1595.5q0 -22.5 16.5 -39t39 -16.5t39 16.5t16.5 39 t-16.5 39t-39 16.5t-39 -16.5t-16.5 -39z" /> +<glyph unicode="Æ" horiz-adv-x="1497" d="M12 0l357 1290h307l98 -352v352h656v-262h-406v-225h295v-266h-295v-271h424v-266h-688l-80 289h-270l-80 -289h-318zM451 530h188l-94 369z" /> +<glyph unicode="Ç" horiz-adv-x="1017" d="M66 645q0 115 32.5 229.5t96 217t172 166t245.5 63.5q211 0 346 -94l7 -4l-113 -205q-96 47 -240 47q-43 0 -97 -39t-87 -106q-57 -106 -57 -283q0 -68 9 -130.5t32.5 -130t76 -108.5t127.5 -41q131 0 242 74l133 -203q-94 -80 -248 -114q86 -63 86 -146 q0 -143 -286 -244l-166 132q193 66 198 110q6 39 -33 42q-6 0 -13 1q-34 0 -70 -14l-41 -17v152h2q-96 35 -167 105.5t-111 161.5t-58 185.5t-18 192.5z" /> +<glyph unicode="È" horiz-adv-x="929" d="M106 0v1290h748v-262h-442v-225h340v-266h-340v-271h465v-266h-771zM215 1645l205 202q160 -193 332 -319l-115 -174q-215 117 -422 291z" /> +<glyph unicode="É" horiz-adv-x="929" d="M106 0v1290h748v-262h-442v-225h340v-266h-340v-271h465v-266h-771zM248 1536l114 -174q221 121 422 291l-204 202q-164 -192 -332 -319z" /> +<glyph unicode="Ê" horiz-adv-x="929" d="M92 1542l94 57q100 61 285 242q164 -164 285 -239l94 -58l-137 -186q-121 68 -242 188q-117 -117 -242 -188zM106 0v1290h748v-262h-442v-225h340v-266h-340v-271h465v-266h-771z" /> +<glyph unicode="Ë" horiz-adv-x="929" d="M106 0v1290h748v-262h-442v-225h340v-266h-340v-271h465v-266h-771zM139 1561q0 72 50.5 122t117.5 50q63 0 111.5 -47.5t48.5 -114.5q0 -35 -12 -62q-20 -49 -63.5 -79.5t-92.5 -30.5q-66 0 -113 47t-47 115zM506 1561q0 72 50 122t118 50q63 0 110 -47.5t47 -114.5 q0 -31 -10 -62q-20 -51 -63 -80.5t-94 -29.5q-66 0 -112 47t-46 115z" /> +<glyph unicode="Ì" horiz-adv-x="487" d="M-31 1645l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291zM92 0v1290h303v-1290h-303z" /> +<glyph unicode="Í" horiz-adv-x="487" d="M-20 1536l114 -174q221 121 422 291l-205 202q-163 -192 -331 -319zM92 0v1290h303v-1290h-303z" /> +<glyph unicode="Î" horiz-adv-x="487" d="M-137 1542l94 57q100 61 285 242q164 -164 284 -239l95 -58l-138 -186q-121 68 -241 188q-117 -117 -242 -188zM92 0v1290h303v-1290h-303z" /> +<glyph unicode="Ï" horiz-adv-x="487" d="M-98 1559q0 72 50 122t118 50q66 0 112.5 -47.5t46.5 -114.5q0 -33 -12 -62q-18 -51 -61 -80.5t-95 -29.5q-66 0 -112.5 47t-46.5 115zM92 0v1290h303v-1290h-303zM268 1559q0 72 50.5 122t117.5 50q66 0 113 -47.5t47 -114.5q0 -33 -12 -62q-18 -49 -62.5 -79.5 t-93.5 -30.5q-66 0 -113 47t-47 115z" /> +<glyph unicode="Ñ" horiz-adv-x="1134" d="M111 0v1290h329l224 -508q37 -80 55 -176v684h305v-1290h-281l-344 764q16 -82 17 -166v-598h-305zM178 1591q78 72 126 97.5t130 25.5q68 0 153 -33.5t111 -33.5q57 0 127 67l117 -137l-26 -26q-22 -22 -26 -25l-26 -22q-20 -17 -29 -22l-29 -17q-19 -11 -36 -14l-38 -7 q-22 -4 -46 -4q-55 0 -138 33.5t-120 33.5q-72 0 -145 -65z" /> +<glyph unicode="Ò" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM274 1645l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291z M367 645.5q0 -65.5 2 -113t13 -109t31.5 -99t57.5 -65.5t90 -28t90 28t57.5 67t32 100t13.5 108.5t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5t-2 -112.5z" /> +<glyph unicode="Ó" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM336 1536l115 -174q221 121 421 291l-204 202q-164 -192 -332 -319z M367 645.5q0 -65.5 2 -113t13 -109t31.5 -99t57.5 -65.5t90 -28t90 28t57.5 67t32 100t13.5 108.5t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5t-2 -112.5z" /> +<glyph unicode="Ô" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM160 1542l94 57q98 61 285 242q164 -164 284 -239l95 -58l-138 -186 q-121 68 -241 188q-117 -117 -242 -188zM367 645.5q0 -65.5 2 -113t13 -109t31.5 -99t57.5 -65.5t90 -28t90 28t57.5 67t32 100t13.5 108.5t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5t-2 -112.5z" /> +<glyph unicode="Õ" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM170 1591q78 72 126 97.5t130 25.5q68 0 154 -33.5t112 -33.5q25 0 55.5 16 t51.5 33l18 18l117 -137l-26 -26q-22 -22 -26 -25l-26 -22q-20 -17 -30 -22l-28 -17q-19 -11 -36 -14l-38 -7q-22 -4 -46 -4q-55 0 -138 33.5t-120 33.5q-72 0 -146 -65zM367 645.5q0 -65.5 2 -113t13 -108.5t31.5 -99t57.5 -66t90 -28t90 28t57.5 67t32 100t13.5 108.5 t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5t-2 -112.5z" /> +<glyph unicode="Ö" horiz-adv-x="1122" d="M61 645q0 115 27 227.5t82 216t156.5 168t234.5 64.5t234.5 -64.5t157 -168t82 -216t26.5 -227.5t-26.5 -227.5t-82 -216t-157 -168t-234.5 -64.5t-234.5 64.5t-156.5 168t-82 216t-27 227.5zM219 1561q0 72 50 122t118 50q66 0 113 -47.5t47 -114.5q0 -35 -12 -62 q-18 -49 -61.5 -79.5t-94.5 -30.5q-66 0 -113 47t-47 115zM367 645.5q0 -65.5 2 -113t13 -109t31.5 -99t57.5 -65.5t90 -28t90 28t57.5 67t32 100t13.5 108.5t2 110.5q0 66 -2 113t-13.5 107.5t-32 99.5t-57.5 66.5t-90 27.5t-90 -27.5t-57.5 -66.5t-31.5 -99.5t-13 -107.5 t-2 -112.5zM586 1561q0 72 50 122t118 50q63 0 111 -47.5t48 -114.5q0 -35 -12 -62q-20 -49 -63 -79.5t-95 -30.5q-66 0 -111.5 47t-45.5 115z" /> +<glyph unicode="Ø" horiz-adv-x="1122" d="M61 653q0 113 28 223.5t83 214t156.5 167t232.5 63.5q74 0 133 -18l68 231h102l-78 -272q139 -84 207 -258.5t68 -356.5q0 -113 -26.5 -225.5t-82 -217t-157 -170t-234.5 -65.5q-72 0 -139 21l-80 -277h-102l92 320q-137 86 -204 262t-67 358zM367 635q0 -217 49 -311 l207 725q-31 10 -62 10q-66 0 -107.5 -39t-59 -110.5t-22.5 -131t-5 -143.5zM494 244q31 -12 67 -13q45 0 79 18.5t54.5 53.5t33.5 72t18.5 90t7.5 91t2 91q0 227 -54 324z" /> +<glyph unicode="Ù" horiz-adv-x="1142" d="M109 514v776h305v-776q0 -147 37.5 -215t119.5 -68t120 68t38 215v776h305v-776q0 -104 -23.5 -195.5t-73.5 -172t-144.5 -129t-221.5 -48.5t-221 48.5t-144 129t-73.5 172t-23.5 195.5zM297 1645l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291z" /> +<glyph unicode="Ú" horiz-adv-x="1142" d="M109 514v776h305v-776q0 -147 37.5 -215t119.5 -68t120 68t38 215v776h305v-776q0 -104 -23.5 -195.5t-73.5 -172t-144.5 -129t-221.5 -48.5t-221 48.5t-144 129t-73.5 172t-23.5 195.5zM319 1536l115 -174q221 121 422 291l-205 202q-164 -192 -332 -319z" /> +<glyph unicode="Û" horiz-adv-x="1142" d="M109 514v776h305v-776q0 -147 37.5 -215t119.5 -68t120 68t38 215v776h305v-776q0 -104 -23.5 -195.5t-73.5 -172t-144.5 -129t-221.5 -48.5t-221 48.5t-144 129t-73.5 172t-23.5 195.5zM170 1542l94 57q100 61 285 242q164 -164 285 -239l94 -58l-137 -186 q-121 68 -242 188q-117 -117 -242 -188z" /> +<glyph unicode="Ü" horiz-adv-x="1142" d="M109 514v776h305v-776q0 -147 37.5 -215t119.5 -68t120 68t38 215v776h305v-776q0 -104 -23.5 -195.5t-73.5 -172t-144.5 -129t-221.5 -48.5t-221 48.5t-144 129t-73.5 172t-23.5 195.5zM231 1560.5q0 69.5 50.5 121t117.5 51.5q63 0 110.5 -47.5t47.5 -114.5 q0 -29 -10 -64q-20 -49 -63.5 -79.5t-94.5 -30.5q-66 0 -112 47t-46 116.5zM596 1561q0 70 50 121t118 51q66 0 113 -47.5t47 -114.5q0 -33 -13 -64q-18 -49 -61 -79.5t-94 -30.5q-66 0 -113 48t-47 116z" /> +<glyph unicode="Ý" horiz-adv-x="964" d="M4 1290h326l151 -502l154 502h326l-326 -807v-483h-305l2 483zM367 1618l114 -174q221 121 422 291l-205 202q-163 -192 -331 -319z" /> +<glyph unicode="ß" horiz-adv-x="1171" d="M27 786v218h88v108q0 106 66.5 184t157.5 113t191 35q207 0 333 -105.5t126 -279.5q0 -51 -20.5 -99.5t-44 -81t-39.5 -68.5q-10 -22 -10 -47q0 -15 4 -32q10 -43 55 -94l96 -115q55 -66 79 -120t24 -130q0 -127 -100.5 -215t-262.5 -88q-176 2 -283 80l101 232 q35 -23 85 -42.5t107 -20.5h4q55 0 80 32q16 19 16 45q0 51 -63 129l-88 104q-101 118 -101 211q0 9 1 17q4 33 31.5 72.5t52 92t24.5 121.5q0 82 -45 119t-149 37q-55 0 -93 -36t-38 -91v-1073h-297v768z" /> +<glyph unicode="à" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM213 1393l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102z" /> +<glyph unicode="á" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM217 1284l115 -174q223 121 422 291l-205 203q-160 -193 -332 -320zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102z" /> +<glyph unicode="â" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM70 1290l94 58q100 61 285 241q164 -166 284 -239l94 -58l-137 -186q-121 68 -241 188q-117 -117 -242 -188zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102z" /> +<glyph unicode="ã" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM86 1339q78 72 126 97.5t130 25.5q68 0 153 -33.5t111 -33.5q57 0 127 67l117 -137l-26 -26q-22 -22 -26 -25l-26 -22q-20 -17 -30 -22l-28 -17q-19 -11 -36 -14l-38 -7q-22 -4 -46 -4q-55 0 -138 33.5t-120 33.5q-72 0 -146 -65zM315 279 q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102z" /> +<glyph unicode="ä" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM137 1276q0 72 50.5 122t117.5 50q63 0 111.5 -47t48.5 -115q0 -23 -12 -63q-20 -49 -63.5 -79t-94.5 -30q-66 0 -112 47t-46 115zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102zM502 1276q0 72 50 122 t118 50q66 0 112.5 -47t46.5 -115q0 -29 -10 -63q-20 -49 -63 -79t-95 -30q-66 0 -112.5 47t-46.5 115z" /> +<glyph unicode="å" horiz-adv-x="954" d="M37 274q0 82 74 218l450 180v43q0 39 -34.5 60.5t-75.5 21.5q-127 0 -248 -95l-105 168q76 72 179.5 118t201.5 46q158 0 258.5 -75.5t100.5 -227.5v-534q0 -53 24 -54q12 0 29 9l45 -140q-86 -43 -158 -43q-78 0 -123 45t-55 117q-27 -74 -98.5 -118t-151.5 -44 q-313 0 -313 305zM223 1364q0 104 74 179t180 75q104 0 179 -75t75 -179t-74.5 -179t-179.5 -75q-106 0 -180 75t-74 179zM315 279q0 -31 23.5 -51.5t56.5 -20.5q84 0 128 63.5t44 151.5v55l-233 -96q-19 -55 -19 -102zM422 1363.5q0 -22.5 16.5 -38.5t39 -16t38.5 16 t16 38.5t-16 39t-38.5 16.5t-39 -16.5t-16.5 -39z" /> +<glyph unicode="æ" horiz-adv-x="1511" d="M37 274q0 82 74 218l450 180q0 59 -22.5 92t-87.5 33q-127 0 -248 -95l-105 168q84 70 144 103q106 61 237 61q88 0 163 -30.5t110 -81.5q45 51 123.5 81.5t168.5 30.5q184 0 291 -128t111 -267l4 -164h-586q-1 -17 -1 -33q0 -82 34 -149q41 -80 123 -80q156 2 280 88 l86 -184q-20 -16 -55 -41t-135 -67t-188 -42q-113 0 -209.5 62.5t-134.5 142.5q-59 -84 -142.5 -143.5t-171.5 -59.5q-84 0 -112 8q-104 31 -151.5 113t-49.5 184zM317 279q0 -72 68 -72q182 0 182 262l-231 -100q-19 -47 -19 -90zM887 672h278q-2 59 -32.5 112.5 t-102.5 53.5q-59 0 -96 -54.5t-47 -111.5z" /> +<glyph unicode="ç" horiz-adv-x="843" d="M45 494q0 221 109 364q68 86 162 131t184 45q98 0 176 -33.5t106 -66.5l29 -33l-145 -158q-57 47 -164 48q-53 0 -106.5 -72t-53.5 -209q0 -127 50 -213t116 -86q49 0 103.5 21.5t84.5 43.5l29 23l106 -190q-84 -74 -200 -115q102 -66 102 -156q0 -143 -287 -244 l-167 132q193 66 200 110q6 39 -34 42q-6 0 -12 1q-34 0 -68 -14l-43 -17v152h16q-94 41 -158 111q-135 150 -135 383z" /> +<glyph unicode="è" horiz-adv-x="960" d="M47 524q0 211 135 360.5t344 149.5q162 0 279 -116.5t121 -278.5q4 -111 4 -164h-584q-2 -10 -2 -33q0 -86 38 -157.5t118 -71.5q162 0 282 88l86 -184q-76 -63 -182 -106.5t-197 -43.5q-150 0 -253 84t-146 206t-43 267zM231 1393l205 202q160 -193 332 -319l-115 -174 q-221 121 -422 291zM367 664h284q-2 68 -39 121t-100 53q-57 0 -98 -56.5t-47 -117.5z" /> +<glyph unicode="é" horiz-adv-x="960" d="M47 524q0 211 135 360.5t344 149.5q162 0 279 -116.5t121 -278.5q4 -111 4 -164h-584q-2 -10 -2 -33q0 -86 38 -157.5t118 -71.5q162 0 282 88l86 -184q-76 -63 -182 -106.5t-197 -43.5q-150 0 -253 84t-146 206t-43 267zM272 1284l115 -174q221 121 422 291l-205 203 q-160 -193 -332 -320zM367 664h284q-2 68 -39 121t-100 53q-57 0 -98 -56.5t-47 -117.5z" /> +<glyph unicode="ê" horiz-adv-x="960" d="M47 524q0 211 135 360.5t344 149.5q162 0 279 -116.5t121 -278.5q4 -111 4 -164h-584q-2 -10 -2 -33q0 -86 38 -157.5t118 -71.5q162 0 282 88l86 -184q-76 -63 -182 -106.5t-197 -43.5q-150 0 -253 84t-146 206t-43 267zM104 1290l95 58q98 61 284 241 q164 -166 285 -239l94 -58l-137 -186q-121 68 -242 188q-117 -117 -241 -188zM367 664h284q-2 68 -39 121t-100 53q-57 0 -98 -56.5t-47 -117.5z" /> +<glyph unicode="ë" horiz-adv-x="960" d="M47 524q0 211 135 360.5t344 149.5q162 0 279 -116.5t121 -278.5q4 -111 4 -164h-584q-2 -10 -2 -33q0 -86 38 -157.5t118 -71.5q162 0 282 88l86 -184q-76 -63 -182 -106.5t-197 -43.5q-150 0 -253 84t-146 206t-43 267zM170 1276q0 72 50 122t118 50q66 0 113 -47 t47 -115q0 -33 -13 -63q-18 -49 -61 -79t-94 -30q-66 0 -113 47t-47 115zM367 664h284q-2 68 -39 121t-100 53q-57 0 -98 -56.5t-47 -117.5zM537 1276q0 72 50 122t118 50q66 0 112.5 -47t46.5 -115q0 -33 -12 -63q-18 -49 -62.5 -79t-93.5 -30q-66 0 -112.5 47t-46.5 115z " /> +<glyph unicode="ì" horiz-adv-x="487" d="M-29 1393l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291zM96 0v1004h293v-1004h-293z" /> +<glyph unicode="í" horiz-adv-x="487" d="M-20 1284l114 -174q221 121 422 291l-205 203q-159 -193 -331 -320zM96 0v1004h293v-1004h-293z" /> +<glyph unicode="î" horiz-adv-x="487" d="M-158 1290l95 58q100 61 284 241q164 -166 285 -239l94 -58l-137 -186q-121 68 -242 188q-117 -117 -241 -188zM96 0v1004h293v-1004h-293z" /> +<glyph unicode="ï" horiz-adv-x="487" d="M-98 1276q0 72 50 122t118 50q63 0 110 -47t47 -115q0 -29 -10 -63q-20 -49 -63 -79t-95 -30q-66 0 -111.5 47t-45.5 115zM96 0v1004h293v-1004h-293zM266 1276q0 72 50.5 122t117.5 50q66 0 113 -47t47 -115q0 -33 -12 -63q-18 -49 -61.5 -79t-94.5 -30q-66 0 -113 47 t-47 115z" /> +<glyph unicode="ñ" horiz-adv-x="1062" d="M113 0v1004h297v-74q147 104 233 104q94 0 158.5 -26.5t96.5 -73.5t44 -96.5t12 -112.5v-725h-297v725q0 63 -51 63q-33 0 -64.5 -9t-47 -17t-47.5 -30l-37 -25v-707h-297zM158 1339q78 72 126 97.5t128 25.5q70 0 154.5 -33.5t111.5 -33.5q57 0 127 67l117 -137l-26 -26 q-22 -22 -27 -25l-25 -22q-20 -17 -30 -22l-30 -17q-20 -11 -35.5 -14t-38 -7t-46.5 -4q-55 0 -137.5 33.5t-121.5 33.5q-70 0 -143 -65z" /> +<glyph unicode="ò" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM227 1393l205 202q164 -193 332 -319l-115 -174q-221 121 -422 291zM346 502q0 -133 41 -210t112.5 -77t112.5 77t41 210 t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5z" /> +<glyph unicode="ó" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM229 1284l115 -174q221 121 422 291l-205 203q-160 -193 -332 -320zM346 502q0 -133 41 -210t112.5 -77t112.5 77t41 210 t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5z" /> +<glyph unicode="ô" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM94 1290l94 58q100 61 285 241q164 -166 285 -239l94 -58l-137 -186q-121 68 -242 188q-117 -117 -242 -188zM346 502 q0 -133 41 -210t112.5 -77t112.5 77t41 210t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5z" /> +<glyph unicode="õ" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM117 1339q78 72 126 97.5t128 25.5q68 0 153.5 -33.5t112.5 -33.5q57 0 127 67l117 -137l-26 -26q-22 -22 -27 -25l-25 -22 q-20 -17 -30 -22l-30 -17q-20 -11 -35.5 -14t-38 -7t-46.5 -4q-55 0 -138.5 33.5t-119.5 33.5q-70 0 -144 -65zM346 502q0 -133 41 -210t112.5 -77t112.5 77t41 210t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5z" /> +<glyph unicode="ö" horiz-adv-x="999" d="M49 502q0 127 45 243.5t151.5 202.5t254 86t254 -86t151.5 -202.5t45 -243.5t-45 -244t-151.5 -203t-254 -86t-254 86t-151.5 203t-45 244zM156 1276q0 72 50 122t118 50q63 0 110 -47t47 -115q0 -29 -10 -63q-20 -49 -63 -79t-95 -30q-66 0 -111.5 47t-45.5 115z M346 502q0 -133 41 -210t112.5 -77t112.5 77t41 210t-41 208.5t-112.5 75.5t-112.5 -75.5t-41 -208.5zM520 1276q0 72 50.5 122t117.5 50q66 0 113 -47t47 -115q0 -33 -12 -63q-18 -49 -61.5 -79t-94.5 -30q-66 0 -113 47t-47 115z" /> +<glyph unicode="÷" horiz-adv-x="1001" d="M55 393v244h889v-244h-889zM301 160q0 74 59.5 126t139.5 52q76 0 128 -45t52 -115q0 -74 -59.5 -126t-139.5 -52q-76 0 -128 45t-52 115zM301 856q0 74 59.5 126t139.5 52q76 0 128 -45t52 -115q0 -74 -59.5 -126t-139.5 -52q-76 0 -128 45t-52 115z" /> +<glyph unicode="ø" horiz-adv-x="999" d="M49 500q0 94 27.5 185t80 171t141.5 129t202 49q49 0 96 -10l47 162h102l-55 -195q127 -63 193.5 -202.5t66.5 -288.5q0 -94 -27.5 -185.5t-79.5 -170t-141.5 -127t-201.5 -48.5q-47 0 -99 11l-61 -213h-102l69 245q-125 63 -191.5 200.5t-66.5 287.5zM346 500 q0 -133 41 -209l141 493q-10 2 -28 2q-72 0 -113 -76.5t-41 -209.5zM469 219q20 -4 31 -4q72 0 112.5 76t40.5 209q0 139 -43 213z" /> +<glyph unicode="ù" horiz-adv-x="1058" d="M111 274v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119q-317 0 -317 305zM252 1393l205 202q164 -193 331 -319l-114 -174q-221 121 -422 291z" /> +<glyph unicode="ú" horiz-adv-x="1058" d="M111 274v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119q-317 0 -317 305zM262 1284l115 -174q215 117 422 291l-205 203q-160 -193 -332 -320z" /> +<glyph unicode="û" horiz-adv-x="1058" d="M111 274v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119q-317 0 -317 305zM121 1290l94 58q98 61 285 241q162 -166 284 -239l95 -58l-138 -186q-121 68 -241 188q-117 -117 -242 -188z" /> +<glyph unicode="ü" horiz-adv-x="1058" d="M111 274v730h297v-730q0 -35 15 -48t50 -13q66 0 182 80v711h297v-795q0 -51 52 -84l-95 -156q-121 14 -194 119q-162 -119 -287 -119q-317 0 -317 305zM190 1276q0 72 50.5 122t117.5 50q66 0 113 -47t47 -115q0 -33 -12 -63q-18 -49 -61.5 -79t-94.5 -30q-66 0 -113 47 t-47 115zM557 1276q0 72 50 122t118 50q63 0 111.5 -47t48.5 -115q0 -33 -13 -63q-20 -49 -63 -79t-92 -30q-66 0 -113 47t-47 115z" /> +<glyph unicode="ý" horiz-adv-x="929" d="M18 1004h316q137 -459 149 -658q78 283 125 658h305q-29 -154 -70.5 -323t-106 -380t-152.5 -376t-181 -226q-37 -25 -96 -46.5t-102 -29.5l-41 -10l-68 217q72 25 113 50.5t57.5 46t46.5 73.5l13 20zM350 1331l115 -174q221 121 422 291l-205 203q-164 -193 -332 -320z " /> +<glyph unicode="ÿ" horiz-adv-x="929" d="M18 1004h316q137 -459 149 -658q78 283 125 658h305q-29 -154 -70.5 -323t-106 -380t-152.5 -376t-181 -226q-37 -25 -96 -46.5t-102 -29.5l-41 -10l-68 217q72 25 113 50.5t57.5 46t46.5 73.5l13 20zM139 1276q0 72 50.5 122t117.5 50q66 0 113 -47t47 -115 q0 -33 -12 -63q-18 -49 -61.5 -79t-94.5 -30q-66 0 -113 47t-47 115zM506 1276q0 72 50 122t118 50q66 0 113 -47t47 -115q0 -33 -13 -63q-18 -49 -62 -79t-93 -30q-66 0 -113 47t-47 115z" /> +<glyph unicode="Œ" horiz-adv-x="1290" d="M61 653q0 102 33 210t93.5 205t164 159.5t230.5 62.5h663v-262h-432v-225h322v-266h-322v-271h453v-266h-684q-129 0 -232.5 63.5t-164 164t-92.5 211t-32 214.5zM348 635q0 -113 43 -234.5t117 -152.5v794q-66 -18 -113 -155t-47 -252z" /> +<glyph unicode="œ" horiz-adv-x="1558" d="M63 500q0 94 28 185t80 171t141 129t202 49q170 0 289 -112q123 113 307 112.5t290.5 -128.5t110.5 -267l5 -164h-586l-2 -33q0 -82 35 -149q41 -80 122 -80q156 2 281 88l86 -184q-20 -16 -55 -41t-135.5 -67t-188.5 -42q-162 0 -278 107q-119 -104 -281 -105 q-113 0 -202 48.5t-141 127t-80 170t-28 185.5zM360 500q0 -133 41 -209t113 -76t113 76t41 209t-41 209.5t-113 76.5t-113 -76.5t-41 -209.5zM952 672h279q-2 59 -33 112.5t-102 53.5q-59 0 -96.5 -54.5t-47.5 -111.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="964" d="M4 1290h326l151 -502l154 502h326l-328 -807l2 -483h-305v483zM139 1559q0 72 50.5 122t117.5 50q66 0 113 -47.5t47 -114.5q0 -33 -12 -62q-18 -49 -62.5 -79.5t-93.5 -30.5q-66 0 -113 47t-47 115zM506 1559q0 72 50 122t118 50q63 0 111.5 -47.5t48.5 -114.5 q0 -25 -13 -62q-20 -51 -63 -80.5t-94 -29.5q-66 0 -112 47t-46 115z" /> +<glyph unicode="ˆ" horiz-adv-x="823" d="M33 1290l94 58q98 61 285 241q164 -166 284 -239l95 -58l-138 -186q-121 68 -241 188q-117 -117 -242 -188z" /> +<glyph unicode="˜" horiz-adv-x="778" d="M0 1339q78 72 126 97.5t128 25.5q70 0 155 -33.5t111 -33.5q57 0 127 67l117 -137l-26 -26q-22 -22 -26 -25l-26 -22q-20 -17 -30 -22l-28 -17q-19 -11 -36 -14l-38 -7q-22 -4 -46 -4q-57 0 -139 33.5t-119 33.5q-72 0 -146 -65z" /> +<glyph unicode="–" horiz-adv-x="733" d="M-41 430v184h815v-184h-815z" /> +<glyph unicode="—" horiz-adv-x="1245" d="M-41 432v184h1327v-184h-1327z" /> +<glyph unicode="‘" horiz-adv-x="546" d="M35 985q154 289 309 428l145 -98q-117 -147 -116 -248q0 -2 18 -156q-90 -68 -162 -67q-47 0 -101 45t-93 96z" /> +<glyph unicode="’" horiz-adv-x="552" d="M55 891q115 152 115 248q0 25 -16 155q84 68 161 68q45 0 101.5 -46t93.5 -95q-158 -293 -309 -428z" /> +<glyph unicode="‚" horiz-adv-x="528" d="M27 -229q115 152 114 247q0 18 -16 156q90 68 162 68q45 0 101 -46t93 -96q-154 -289 -309 -428z" /> +<glyph unicode="“" horiz-adv-x="913" d="M29 985q160 291 309 428l145 -98q-115 -152 -114 -248q0 -29 7 -84l9 -72q-90 -68 -162 -67q-81 0 -194 141zM406 985q154 289 309 428l145 -98q-115 -152 -115 -248q0 -18 17 -156q-90 -68 -162 -67q-45 0 -100 45t-94 96z" /> +<glyph unicode="”" horiz-adv-x="913" d="M57 891q117 147 117 248q0 8 -18 155q88 68 161 68q47 0 102.5 -45t92.5 -96q-158 -293 -309 -428zM434 891q43 53 79 124.5t36 123.5q0 25 -17 155q84 68 162 68q47 0 102.5 -45t92.5 -96q-158 -293 -309 -428z" /> +<glyph unicode="„" horiz-adv-x="913" d="M41 -223q115 152 115 248q0 18 -17 155q90 68 162 68q45 0 100.5 -45t94.5 -97q-154 -289 -310 -428zM420 -223q115 152 115 248q0 18 -17 155q90 68 162 68q82 0 194 -142q-78 -143 -147.5 -244.5t-161.5 -183.5z" /> +<glyph unicode="•" horiz-adv-x="868" d="M29 649q0 168 117.5 286t285.5 118t286 -118t118 -286t-118 -285.5t-286 -117.5t-285.5 117.5t-117.5 285.5z" /> +<glyph unicode="…" horiz-adv-x="1236" d="M41 131q0 72 56.5 122t129.5 50q70 0 123 -46t53 -116q0 -72 -56 -122t-130 -50q-70 0 -123 46t-53 116zM434 131q0 72 57.5 122t131.5 50q70 0 123 -46t53 -116q0 -72 -56.5 -122t-130.5 -50q-72 0 -125 46t-53 116zM831 131q0 72 57.5 122t131.5 50q70 0 123 -46 t53 -116q0 -72 -56.5 -122t-129.5 -50q-72 0 -125.5 46t-53.5 116z" /> +<glyph unicode="‹" horiz-adv-x="614" d="M33 512l352 432l207 -168l-199 -262l201 -270l-207 -164z" /> +<glyph unicode="›" horiz-adv-x="614" d="M31 244l207 -164l354 432l-352 432l-207 -168l198 -262z" /> +<glyph unicode="™" horiz-adv-x="1642" d="M147 1237v170h496v-170h-154v-643h-190v643h-152zM680 596v813h211l178 -494l21 -86q6 51 18 86l180 494h211v-813h-192v356l10 99l-154 -455h-147l-154 455l10 -99v-356h-192z" /> +<glyph unicode="" horiz-adv-x="1004" d="M0 1005h1005v-1005h-1005v1005z" /> +<glyph unicode="fi" horiz-adv-x="1069" d="M27 797v207h90v94q0 156 131 250q125 90 319 105q40 3 77 3q143 0 239 -47q117 -53 116 -152q0 -33 -12 -63q-20 -49 -69.5 -79t-104.5 -30q-72 0 -123 44.5t-53 107.5q-15 4 -31 4q-51 0 -112 -40q-80 -52 -80 -116v-81h145v-238h-145v-766h-297v776zM672 0v1004h293 v-1004h-293z" /> +<glyph unicode="fl" horiz-adv-x="1069" d="M27 797v207h90v126q0 98 41 168t104.5 102t139.5 50q60 14 118 14q16 0 32 -1q73 -5 132 -7l281 -33v-987q0 -117 14 -225.5t29 -159.5l14 -51h-272q-78 127 -78 436v793h-88q-170 0 -170 -111v-114h145v-238h-145v-766h-297v776z" /> +<glyph unicode="ffi" horiz-adv-x="1658" d="M16 791v213h101v94q0 96 43 167.5t104.5 104.5t123 52.5t104.5 21.5l43 2l45 -211q-6 -2 -17.5 -4t-40 -13.5t-50 -26.5t-40 -43t-18.5 -63v-81h153v-240h-153v-764h-297v774zM602 791v213h100v94q0 96 43 167.5t104.5 104.5t123 52.5t104.5 21.5l43 2l45 -211 q-6 -2 -17 -4t-40 -13.5t-50.5 -26.5t-40 -43t-18.5 -63v-81h154v-240h-154v-764h-297v774zM1233 1268q0 72 57.5 123t129 51t124.5 -47t53 -117q0 -74 -56 -123t-130 -49q-72 0 -125 46t-53 116zM1268 0v1004h293v-1004h-293z" /> +<glyph unicode="ffl" horiz-adv-x="1654" d="M16 791v213h101v94q0 96 43 167.5t104.5 104.5t123 52.5t104.5 21.5l43 2l45 -211q-6 -2 -17.5 -4t-40 -13.5t-50 -26.5t-40 -43t-18.5 -63v-81h153v-240h-153v-764h-297v774zM602 791v213h100v94q0 96 43 167.5t104.5 104.5t123 52.5t104.5 21.5l43 2l45 -211 q-6 -2 -17 -4t-40 -13.5t-50.5 -26.5t-40 -43t-18.5 -63v-81h154v-240h-154v-764h-297v774zM1255 436v987h293v-987q0 -117 16.5 -225.5t32.5 -159.5l15 -51h-287q-70 157 -70 436z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-heavy-webfont.ttf b/public/stylesheets/fonts/delicious-heavy-webfont.ttf Binary files differnew file mode 100755 index 000000000..deba1f94f --- /dev/null +++ b/public/stylesheets/fonts/delicious-heavy-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-heavy-webfont.woff b/public/stylesheets/fonts/delicious-heavy-webfont.woff Binary files differnew file mode 100755 index 000000000..b3c48915d --- /dev/null +++ b/public/stylesheets/fonts/delicious-heavy-webfont.woff diff --git a/public/stylesheets/fonts/delicious-italic-webfont.eot b/public/stylesheets/fonts/delicious-italic-webfont.eot Binary files differnew file mode 100755 index 000000000..8bc7f8ce0 --- /dev/null +++ b/public/stylesheets/fonts/delicious-italic-webfont.eot diff --git a/public/stylesheets/fonts/delicious-italic-webfont.svg b/public/stylesheets/fonts/delicious-italic-webfont.svg new file mode 100755 index 000000000..3cad32124 --- /dev/null +++ b/public/stylesheets/fonts/delicious-italic-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : 40 I1995 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousItalic" horiz-adv-x="921" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="	" horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="!" horiz-adv-x="516" d="M90 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM182 332l82 704q20 174 92 375l160 21q-70 -209 -98 -396l-113 -704h-123z" /> +<glyph unicode=""" horiz-adv-x="585" d="M188 999l9 322l47 129h100l8 -129l-96 -324zM471 999l8 322l47 129h101l8 -129l-96 -324z" /> +<glyph unicode="#" horiz-adv-x="1138" d="M125 436l20 135h164l39 312h-145l20 135h142l51 403h123l-52 -403h236l45 364h123l-45 -364h174l-12 -135h-181l-39 -312h154l-12 -135h-158l-53 -418h-123l53 418h-235l-47 -379h-123l47 379h-166zM432 571h234l39 312h-234z" /> +<glyph unicode="$" horiz-adv-x="880" d="M45 57l66 121q133 -74 249 -80l76 484l-47 32q-41 29 -49 36t-41 33t-42 39t-30.5 39.5t-29 49.5t-14.5 53.5t-7 63.5q0 162 107.5 271.5t269.5 119.5l18 113h93l-19 -115q141 -14 236 -98l-74 -111q-72 59 -182 78l-74 -467q133 -94 168 -135q74 -82 74 -197 q0 -158 -101.5 -271.5t-257.5 -140.5l-20 -124h-92l18 118q-160 4 -295 88zM340 958q0 -41 21.5 -76.5t42 -55t63.5 -50.5l65 412q-86 -14 -139 -78t-53 -152zM455 113q76 25 126 90t50 143q0 98 -111 178z" /> +<glyph unicode="%" horiz-adv-x="1431" d="M94 1048.5q0 112.5 80 192.5t193 80q80 0 145 -41q82 -23 143 -23q57 0 114.5 15.5t86.5 30.5l27 16l104 -29l-455 -1290h-135l432 1196q-35 -18 -88 -27.5t-90 -9.5l-35 -2q23 -43 23 -108q0 -113 -80 -193t-192.5 -80t-192.5 80t-80 192.5zM215 1048.5 q0 -63.5 44 -107.5t107.5 -44t107.5 44t44 107.5t-44 107.5t-107.5 44t-107.5 -44t-44 -107.5zM788 241.5q0 112.5 80 192.5t193 80t192.5 -80t79.5 -192.5t-79.5 -192.5t-192.5 -80t-193 80t-80 192.5zM909 241.5q0 -63.5 44 -107.5t107.5 -44t107.5 44t44 107.5t-44 107.5 t-107.5 44t-107.5 -44t-44 -107.5z" /> +<glyph unicode="&" horiz-adv-x="1800" d="M117 584q0 260 189.5 462.5t449.5 245.5l18 -114q-197 -37 -343 -207t-146 -369q0 -74 22 -151l311 254q10 10 71 58l96 79q36 31 93.5 85t91.5 95t60.5 89t26.5 85q0 53 -56.5 100t-117.5 70l39 84q109 -23 195.5 -92.5t86.5 -167.5q0 -20 -2 -29q-4 -27 -19.5 -58.5 t-42.5 -66.5l-55 -66q-27 -32 -68 -72l-72 -68q-30 -28 -77 -67l-69 -58l-67 -54q-44 -35 -50 -41l-330 -268q150 -260 475 -260q172 0 328 83t253 231.5t97 322.5q0 92 -35 172h-180l-14 72q70 41 176 41q119 0 165 -79t46 -220q0 -211 -129 -383t-322.5 -262.5 t-398.5 -90.5q-285 0 -490.5 168t-205.5 447z" /> +<glyph unicode="'" horiz-adv-x="303" d="M188 999l9 322l47 129h100l8 -129l-96 -324z" /> +<glyph unicode="(" horiz-adv-x="716" d="M139 485q0 338 185.5 637t484.5 467l-2 -121q-248 -145 -401.5 -418.5t-153.5 -564.5q0 -203 84 -379q43 -92 83 -141t130 -129l-64 -82q-346 270 -346 731z" /> +<glyph unicode=")" horiz-adv-x="696" d="M-25 -166q106 80 168 134.5t129 137.5q256 322 256 715q0 197 -73.5 371t-221.5 278l33 119q186 -129 283.5 -326.5t97.5 -428.5q0 -383 -244 -728q-139 -199 -385 -364z" /> +<glyph unicode="*" horiz-adv-x="808" d="M86 1128l49 121l260 -100l-41 233h246l-106 -247l272 112l31 -117l-281 -106l150 -315h-136l-112 239l-201 -239l-115 34l246 291z" /> +<glyph unicode="+" horiz-adv-x="964" d="M92 451v122h330v355h119v-355h331v-122h-331v-355h-119v355h-330z" /> +<glyph unicode="," horiz-adv-x="528" d="M-45 -207q181 195 181 329q0 11 -1 21q49 23 90 23q68 0 127 -113q-111 -170 -313 -336z" /> +<glyph unicode="-" horiz-adv-x="618" d="M113 461v123h393v-123h-393z" /> +<glyph unicode="." horiz-adv-x="528" d="M82 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="/" horiz-adv-x="755" d="M-98 -303l823 1853h127l-823 -1853h-127z" /> +<glyph unicode="0" d="M49 375q0 109 33 222.5t93.5 212.5t158.5 161.5t215 62.5q164 0 243.5 -110.5t79.5 -280.5q0 -152 -51 -301t-166.5 -261t-273.5 -112q-164 0 -248 118t-84 288zM199 391q0 -119 47 -208t153 -89q109 0 187 98.5t107.5 215t29.5 221.5q0 279 -195 278q-104 0 -183 -93 t-112.5 -208t-33.5 -215z" /> +<glyph unicode="1" d="M238 856l16 98q88 0 199 29l75 18h142l-158 -1001h-152l136 856h-258z" /> +<glyph unicode="2" d="M96 127q195 98 383 293q78 80 142.5 179t64.5 177q0 66 -44 96.5t-112 30.5q-100 0 -260 -98l-51 100q100 72 175 100.5t184 28.5q274 0 274 -256q0 -117 -92 -251t-205 -231t-225 -161h456l-22 -135h-660z" /> +<glyph unicode="3" d="M57 -225q92 2 188.5 29.5t182.5 78.5t141.5 134t55.5 182q0 154 -244 153q-74 0 -166 -10l-8 117q10 2 28.5 4t33.5 4l30 4q23 4 134.5 73.5t150.5 98.5q115 80 114 170q0 45 -31.5 68.5t-78.5 23.5q-100 0 -297 -104l-43 100q84 55 192.5 94t198.5 39q98 0 157.5 -52 t59.5 -148q0 -64 -30.5 -120.5t-89 -102.5t-103.5 -72.5t-115 -63.5q111 0 188.5 -63.5t77.5 -171.5q0 -182 -106.5 -317.5t-263 -199t-334.5 -63.5z" /> +<glyph unicode="4" d="M35 0l12 133q266 434 641 871h166l-137 -871h131l-21 -133h-135q-53 -240 -123 -342l-114 51q47 98 90 291h-510zM201 133h364l111 666q-274 -338 -475 -666z" /> +<glyph unicode="5" d="M72 -221q170 4 323 80q96 47 170 144t74 198q0 82 -59.5 118.5t-147.5 36.5q-96 0 -242 -41l168 689h508l-20 -123h-367l-98 -412q43 12 88 12q332 0 332 -256q0 -164 -114 -298t-273 -202q-155 -67 -309 -67h-9h-10z" /> +<glyph unicode="6" d="M96 365q0 328 196.5 566t522.5 384l39 -101q-219 -127 -303 -200q-23 -18 -41 -37q-111 -115 -174 -238q-41 -80 -67.5 -188.5t-26.5 -194.5q0 -102 43 -184t137 -82q215 0 270 361q4 37 4 55q0 180 -229 180q-66 0 -150 -37l31 31l30 30q9 9 27.5 24.5t31.5 21.5l32 14 q18 8 39.5 11t46.5 3q127 0 210 -73.5t83 -198.5q0 -33 -6 -68q-31 -197 -149 -337t-304 -140q-106 0 -175 62.5t-93.5 147t-24.5 188.5z" /> +<glyph unicode="7" d="M100 -281q207 223 384.5 551t222.5 602h-525l21 132h671l-20 -132q-47 -291 -238.5 -652t-408.5 -591z" /> +<glyph unicode="8" d="M66 264q0 145 122 287q61 70 183 123q-82 51 -123 107.5t-41 140.5q0 162 118.5 265t282.5 103q127 0 204 -56t77 -175q0 -129 -79 -223.5t-208 -147.5q135 -78 174 -121q61 -68 62 -166q0 -59 -21 -127q-45 -143 -166 -225t-274 -82q-135 0 -223 82t-88 215zM223 297 q0 -90 51.5 -151.5t139.5 -61.5q106 0 187 92t81 200.5t-102 170.5l-117 71q-104 -51 -172 -134t-68 -187zM352 928q0 -111 140 -187q121 47 186 114t65 183q0 141 -168 142q-94 0 -158.5 -78t-64.5 -174z" /> +<glyph unicode="9" d="M80 -217q223 127 307 199q25 20 45 43q268 274 268 608q0 281 -163 280q-86 0 -149.5 -61t-93.5 -137t-42 -164q-6 -27 -6 -55q0 -178 231 -179q59 0 148 35q-16 -14 -52 -51t-51.5 -47t-52.5 -23.5t-82 -13.5q-127 0 -210 74t-83 198l6 68q33 209 144.5 343t308.5 134 q154 0 226.5 -111.5t72.5 -273.5q0 -86 -18 -172q-111 -522 -705 -790z" /> +<glyph unicode=":" horiz-adv-x="528" d="M82 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM184 708.5q0 49.5 40 87.5t89 38t85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 32.5t-35 82z" /> +<glyph unicode=";" horiz-adv-x="528" d="M-51 -207q181 195 181 329q0 11 -1 21q49 23 90 23q68 0 127 -113q-111 -170 -313 -336zM207 711q0 51 40 89t91 38q49 0 84 -33t35 -82q0 -51 -40 -89t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="<" horiz-adv-x="614" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="=" horiz-adv-x="983" d="M90 293v123h782v-123h-782zM90 598v123h782v-123h-782z" /> +<glyph unicode=">" horiz-adv-x="614" d="M68 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="?" horiz-adv-x="815" d="M121 84q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM197 1382l100 105q47 -66 113 -66h180q227 0 227 -176q0 -133 -119 -272l-182 -207q-35 -39 -58.5 -68.5t-40.5 -61.5l-27 -48q-9 -16 -18.5 -54t-11.5 -50.5t-10 -68t-12 -77.5h-125 q4 20 14.5 97t16.5 101.5t23.5 81t46 100.5t69.5 91l182 205q35 39 64.5 98t29.5 105q0 82 -100 81h-172q-135 0 -190 84z" /> +<glyph unicode="@" horiz-adv-x="1622" d="M88 727q0 299 223.5 529.5t519.5 230.5q295 0 490 -179.5t195 -471.5q0 -113 -56.5 -236t-160 -212t-218.5 -89q-72 0 -119 35t-47 104q0 12 5 33q-119 -102 -175 -127q-45 -20 -90 -20q-98 0 -152 80.5t-54 183.5q0 94 18 185t58 178t116 141.5t176 54.5q145 0 225 -117 l21 84h133l-141 -592q-12 -45 -13 -67q0 -55 56 -56q125 0 218 151.5t93 285.5q0 252 -163 394t-419 142q-254 0 -429 -195.5t-175 -453.5q0 -270 179.5 -457.5t449.5 -187.5q152 0 292 65.5t230 182.5l96 -52q-94 -139 -270 -225t-348 -86q-319 0 -541.5 222.5 t-222.5 541.5zM588 610q0 -59 21.5 -106t74.5 -47q18 0 43 6t41 12t47 22.5t41 22.5l43 26q33 19 35 21l84 369q-76 98 -205 98q-78 0 -132 -83t-73.5 -174t-19.5 -167z" /> +<glyph unicode="A" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM389 551h313l-69 569z" /> +<glyph unicode="B" horiz-adv-x="1017" d="M88 20l201 1268h317q346 0 346 -262q0 -109 -68.5 -208t-172.5 -128q104 -6 162.5 -73.5t58.5 -172.5q0 -217 -155.5 -346t-375.5 -129q-120 0 -313 51zM270 135q88 -27 150 -26q147 0 247.5 87t100.5 236q0 59 -23.5 98t-68.5 55.5t-86 21.5t-101 5h-143zM367 745 q27 0 76 -1t75 -1q115 0 194 75t79 190q0 154 -207 153h-152z" /> +<glyph unicode="C" horiz-adv-x="1007" d="M119 465q0 176 55 347t160 298q176 211 409 211q197 0 318 -88l-76 -100q-102 57 -262 57q-84 0 -165 -60.5t-134 -142.5q-141 -217 -141 -518q0 -152 64.5 -261.5t205.5 -109.5q164 0 291 90l55 -104q-74 -53 -177.5 -85t-197.5 -32q-209 0 -307 140.5t-98 357.5z" /> +<glyph unicode="D" horiz-adv-x="1128" d="M88 0l205 1290h373q199 0 292 -124t93 -330q0 -145 -36 -287.5t-105.5 -267.5t-191.5 -203t-278 -78h-352zM270 131h191q119 0 206 70.5t132 183.5t65.5 225.5t20.5 220.5q0 328 -248 328h-203z" /> +<glyph unicode="E" horiz-adv-x="913" d="M88 0l205 1290h663l-22 -137h-500l-65 -410h383l-21 -141h-383l-74 -461h521l-23 -141h-684z" /> +<glyph unicode="F" horiz-adv-x="847" d="M88 0l205 1290h606l-22 -135h-443l-65 -412h350l-21 -141h-350l-96 -602h-164z" /> +<glyph unicode="G" horiz-adv-x="1062" d="M119 465q0 176 55 347t160 298q176 211 409 211q162 0 320 -88l-82 -105q-98 63 -258 64q-84 0 -165 -61.5t-134 -143.5q-141 -217 -141 -518q0 -152 64.5 -261.5t205.5 -109.5q106 0 184 29l68 424h151l-84 -531q-139 -53 -344 -53q-211 0 -310 139.5t-99 358.5z" /> +<glyph unicode="H" horiz-adv-x="1122" d="M88 0l205 1290h164l-88 -547h467l88 547h163l-204 -1290h-164l96 604h-467l-96 -604h-164z" /> +<glyph unicode="I" horiz-adv-x="487" d="M88 0l205 1290h160l-205 -1290h-160z" /> +<glyph unicode="J" horiz-adv-x="487" d="M-113 -223q174 53 195 178l211 1335h160l-213 -1347q-33 -207 -336 -277z" /> +<glyph unicode="K" horiz-adv-x="931" d="M88 0l205 1290h164l-92 -585l327 342q72 74 72 190q0 27 -2 39l164 29q6 -31 6 -64q0 -141 -105 -250l-350 -356l432 -586v-49h-172l-399 539l-86 -539h-164z" /> +<glyph unicode="L" horiz-adv-x="763" d="M88 0l205 1290h156l-187 -1163h457l-19 -127h-612z" /> +<glyph unicode="M" horiz-adv-x="1519" d="M88 0l205 1290h217l188 -880q29 -141 35 -209q70 170 90 209l445 880h217l-205 -1290h-164l139 877q8 59 41 178l-520 -1055h-143l-223 1057q-8 -119 -19 -176l-139 -881h-164z" /> +<glyph unicode="N" horiz-adv-x="1134" d="M88 0l205 1290h215l280 -985l19 178l129 807h164l-205 -1290h-168l-319 1057q-2 -86 -17 -180l-139 -877h-164z" /> +<glyph unicode="O" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214z" /> +<glyph unicode="P" horiz-adv-x="993" d="M88 0l205 1290h278q182 0 302 -76.5t120 -248.5q0 -223 -137 -363.5t-344 -140.5q-96 0 -180 45l-80 -506h-164zM352 637q100 -43 160 -43q133 0 224 102.5t91 247.5q0 113 -78.5 164t-197.5 51h-115z" /> +<glyph unicode="Q" horiz-adv-x="1071" d="M94 485q0 129 35 269.5t100.5 269.5t179 213t255.5 84q98 0 169.5 -45t110.5 -121t56.5 -160t17.5 -174q0 -356 -170 -606t-502 -373q10 -4 40 -20l39 -22q9 -5 34.5 -17l38 -17.5t36 -13.5t41 -10t40 -5t46.5 -3q135 0 281 47l-33 -166q-68 -18 -168 -18q-47 0 -88 4 t-85 17l-69 21q-26 7 -76 33l-66 35q-15 8 -76 44l-76 44l-17 70q199 109 254 143q-170 41 -259 168t-89 309zM254 477q0 -334 311 -375q154 119 223.5 318t69.5 422q0 344 -217 344q-104 0 -184 -77t-121 -194.5t-61.5 -229.5t-20.5 -208z" /> +<glyph unicode="R" horiz-adv-x="1019" d="M88 0l205 1290h278q182 0 302 -76.5t120 -248.5q0 -176 -110.5 -319.5t-282.5 -174.5l315 -422l-8 -49h-159l-351 471q-37 12 -65 31l-80 -502h-164zM352 637q86 -43 146 -43q131 0 230 107.5t99 242.5q0 113 -78.5 164t-197.5 51h-115z" /> +<glyph unicode="S" horiz-adv-x="880" d="M53 88l84 113q119 -98 228 -99q94 0 176 76t82 170q0 63 -47.5 117.5t-114.5 97.5l-134 89q-67 46 -114 116t-47 158q0 176 120 285.5t296 109.5q76 0 152.5 -42t125.5 -103l-96 -80q-37 43 -93.5 70.5t-109.5 27.5q-92 0 -158.5 -65.5t-66.5 -157.5q0 -59 32.5 -108.5 t83.5 -82.5l108 -72q58 -40 108.5 -79t83 -102.5t32.5 -139.5q0 -182 -124.5 -300t-309.5 -118q-174 0 -297 119z" /> +<glyph unicode="T" horiz-adv-x="800" d="M102 1143l23 143h788l-22 -143h-316l-180 -1143h-159l180 1143h-314z" /> +<glyph unicode="U" horiz-adv-x="1114" d="M135 358q0 72 12 144l125 788h164l-125 -790q-12 -70 -12 -144q0 -254 195 -254q244 0 309 400l125 788h164l-127 -796q-16 -106 -52 -196.5t-94.5 -167.5t-147.5 -120t-200 -43q-172 0 -254 107.5t-82 283.5z" /> +<glyph unicode="V" horiz-adv-x="993" d="M143 1290h179l161 -1093l303 567q66 121 66 311v215h172v-211q0 -205 -86 -360l-391 -719h-189z" /> +<glyph unicode="W" horiz-adv-x="1519" d="M164 1290h174l53 -913q1 -15 2 -35q0 -40 -6 -100q20 78 43 135l363 913h163l66 -913q4 -36 4 -77q0 -28 -2 -58q20 63 61 147l189 404q6 12 21 46l23 49q7 15 18.5 45t17.5 50.5t10 48t4 53.5v205h172v-211q0 -57 -20.5 -128.5t-36.5 -107.5l-58 -120l-356 -723h-166 q-6 111 -23.5 328t-27.5 388t-14 326q-6 -18 -20.5 -53t-16.5 -43l-365 -946h-174z" /> +<glyph unicode="X" horiz-adv-x="1013" d="M8 0v45l455 617l-273 628h179l209 -473l350 473h137v-45l-422 -575l295 -670h-188l-222 512l-374 -512h-146z" /> +<glyph unicode="Y" horiz-adv-x="882" d="M92 1196l107 113q72 -45 136 -139.5t91 -180.5q52 -157 52 -272q0 -16 -1 -31l31 115q37 137 150.5 301t228.5 223l98 -104q-172 -104 -286.5 -343t-159.5 -483l-70 -395h-162l74 457q-8 133 -32.5 263t-91.5 272.5t-165 203.5z" /> +<glyph unicode="Z" horiz-adv-x="909" d="M25 0v139l661 1008h-457l13 143h649l-14 -143l-672 -1004h629l-23 -143h-786z" /> +<glyph unicode="[" horiz-adv-x="589" d="M18 -319l289 1818h318l-21 -119h-190l-250 -1581h190l-18 -118h-318z" /> +<glyph unicode="\" horiz-adv-x="686" d="M25 1550h127l530 -1853h-127z" /> +<glyph unicode="]" horiz-adv-x="595" d="M-8 -319l18 118h191l250 1581h-191l21 119h317l-289 -1818h-317z" /> +<glyph unicode="^" horiz-adv-x="1277" d="M145 655l435 795h114q195 -381 434 -795h-143l-348 629l-348 -629h-144z" /> +<glyph unicode="_" d="M0 -154h922v-122h-922v122z" /> +<glyph unicode="`" horiz-adv-x="518" d="M102 1411l148 129q86 -150 268 -299l-80 -92q-211 123 -336 262z" /> +<glyph unicode="a" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5z" /> +<glyph unicode="b" horiz-adv-x="1038" d="M102 92l211 1329h156l-78 -493q113 106 266 106q143 0 216 -107.5t73 -256.5q0 -170 -54 -325t-180 -265.5t-302 -110.5q-76 0 -161.5 35t-146.5 88zM272 178q72 -84 191 -84q80 0 145.5 62.5t102.5 156t56 186.5t19 167q0 240 -172 239q-129 0 -245 -112z" /> +<glyph unicode="c" horiz-adv-x="849" d="M92 365q0 113 32 227.5t90 213.5t156.5 162.5t219.5 63.5q117 0 246 -100l-80 -94q-94 70 -183 69q-102 0 -179 -92t-109.5 -202.5t-32.5 -209.5q0 -53 10 -104t31.5 -99t64.5 -78t101 -30q49 0 132 48t134 96l59 -82q-74 -78 -174 -131.5t-196 -53.5q-154 0 -238 118 t-84 278z" /> +<glyph unicode="d" horiz-adv-x="1024" d="M92 379q0 162 56.5 308.5t179.5 246.5t288 100q123 0 187 -86q33 176 33 269q0 113 -43 176l120 53q74 -104 74 -258q0 -41 -6 -78l-119 -721q-31 -184 -134 -302t-279 -118q-174 0 -265.5 115t-91.5 295zM250 367q0 -119 48 -197t161 -78q43 0 77.5 14.5t58 33 t45.5 57.5t32 63.5t22.5 75.5t16.5 70.5t12 70.5l59 340q-66 92 -180 92q-94 0 -165.5 -53t-110.5 -139t-57.5 -175t-18.5 -175z" /> +<glyph unicode="e" horiz-adv-x="894" d="M92 362q0 158 56.5 307.5t179.5 257t284 107.5q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q-2 -16 -2 -47q0 -100 47 -187.5t139 -87.5q70 0 148 44t133 104l61 -84q-176 -186 -376 -187q-156 0 -235 115.5t-79 277.5zM268 539q426 92 426 284q0 88 -114 88 q-117 0 -202 -120.5t-110 -251.5z" /> +<glyph unicode="f" horiz-adv-x="550" d="M20 -330q125 209 150 475q49 494 66 740l-144 18l17 101h133l6 96q16 322 241 321q47 0 93 -16l-15 -111q-18 6 -43 6q-113 0 -121 -208q-4 -66 -4 -88h166l-2 -117l-172 -6q-8 -123 -24.5 -318.5t-30.5 -329.5l-12 -133q-20 -225 -213 -483z" /> +<glyph unicode="g" horiz-adv-x="907" d="M-41 -217q0 104 104.5 214t221.5 177l65 -96q-76 -51 -154.5 -130t-78.5 -136q0 -53 49 -75t110 -22q119 0 242 71t123 179q0 80 -55 124q-53 42 -128 42h-7l-7 43q2 4 19 24l21 25l21 26q15 19 20 27.5t18.5 27t19.5 29.5t16.5 27.5t15.5 29.5l11 29q6 15 8 30 q-43 -55 -116.5 -94.5t-141.5 -39.5q-125 0 -187.5 78t-62.5 205q0 193 109 314.5t301 121.5q127 0 303 -28q-8 -137 -39 -318q-43 -254 -84 -352q-31 -72 -71 -121q76 -12 123 -76.5t47 -154.5q0 -119 -88 -209t-204 -130t-231 -40q-51 0 -98 6t-99 23.5t-84 55.5t-32 93z M260 608q0 -68 36 -111.5t105 -43.5q84 0 153 76.5t89 164.5q18 92 29 211q-61 14 -183 15q-109 0 -169 -98.5t-60 -213.5z" /> +<glyph unicode="h" horiz-adv-x="1042" d="M90 0l225 1421h156l-96 -606q59 88 160.5 153.5t199.5 65.5q104 0 159.5 -41t55.5 -141q0 -29 -8 -90l-74 -469q-16 -104 -55 -174t-121 -152l-88 76q94 121 117 266l65 453q4 37 5 55q0 49 -26 69.5t-77 20.5q-76 0 -170 -70.5t-145 -146.5q-25 -37 -25 -45l-102 -645 h-156z" /> +<glyph unicode="i" horiz-adv-x="479" d="M90 0l160 1004h151l-159 -1004h-152zM244 1286q0 49 40 87t91 38q49 0 84 -32.5t35 -82.5q0 -51 -40 -88t-92 -37q-49 0 -83.5 33t-34.5 82z" /> +<glyph unicode="j" horiz-adv-x="479" d="M-123 -285q176 61 195 181l176 1108h151l-178 -1123q-16 -90 -57 -133q-92 -94 -270 -143zM244 1286q0 49 40 87t91 38q49 0 84 -32.5t35 -82.5q0 -51 -40 -88t-92 -37q-49 0 -83.5 33t-34.5 82z" /> +<glyph unicode="k" horiz-adv-x="983" d="M90 0l225 1421h152l-133 -837q158 10 284 69q59 29 110.5 79t51.5 104q0 43 -30 61q-25 15 -59 15q-7 0 -15 -1l-10 123q27 8 67 8q96 0 157.5 -50t61.5 -144q0 -100 -67.5 -175t-158.5 -109t-189 -38l370 -526h-196l-381 559l-88 -559h-152z" /> +<glyph unicode="l" horiz-adv-x="495" d="M137 225q0 94 15 178l161 1018h152l-162 -1018q-16 -94 -16 -182q0 -133 28 -196l-145 -43q-33 91 -33 243z" /> +<glyph unicode="m" horiz-adv-x="1576" d="M90 0l160 1004h156l-33 -193q39 72 145.5 147.5t181.5 75.5q104 0 168 -53q56 -47 57 -133q0 -11 -1 -23q49 82 136 145.5t171 63.5q233 0 233 -198q0 -37 -6 -74l-121 -762h-155l121 762q4 33 4 49q0 96 -99 96q-74 0 -167 -83t-146 -165l-102 -659h-156l121 762 q4 33 4 47q0 96 -111 96q-72 0 -157.5 -82t-147.5 -172l-100 -651h-156z" /> +<glyph unicode="n" horiz-adv-x="1062" d="M90 0l160 1004h156l-31 -189q51 82 157.5 150.5t202.5 68.5q104 0 159.5 -41t55.5 -141q0 -29 -8 -90l-121 -762h-155l120 762q6 55 7 57q0 88 -91 88q-98 0 -200.5 -82t-155.5 -180l-100 -645h-156z" /> +<glyph unicode="o" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222z" /> +<glyph unicode="p" horiz-adv-x="1097" d="M68 -358l168 1069l-146 -78l16 106l150 90l27 175h155l-10 -76q178 106 287 106q143 0 217 -107.5t74 -256.5q0 -104 -30 -222t-85 -227.5t-149.5 -181.5t-209.5 -72q-84 0 -146 41t-85 119l-78 -485h-155zM346 362q0 -111 46 -191.5t151 -80.5q78 0 139 64.5t95 161 t50.5 187.5t16.5 163q0 244 -160 243q-86 0 -276 -110l-50 -301q-12 -91 -12 -136z" /> +<glyph unicode="q" horiz-adv-x="1060" d="M92 342q0 111 33 228.5t92 223t158.5 173t216.5 67.5q80 0 174 -15t147 -32l54 -16l-211 -1331h-156l76 487q-96 -160 -283 -160q-152 0 -226.5 107.5t-74.5 267.5zM256 360q0 -106 37 -187t129 -81q68 0 126 42t95 106.5t59.5 130t32.5 127.5l60 381q-104 29 -164 28 q-100 0 -177 -52t-118 -137t-60.5 -175.5t-19.5 -182.5z" /> +<glyph unicode="r" horiz-adv-x="712" d="M90 0l160 1004h158l-31 -185l45 64q106 152 213 151q39 0 74.5 -27.5t54.5 -66.5l-119 -139q-31 63 -92 63q-43 0 -152 -131l-49 -61l-106 -672h-156z" /> +<glyph unicode="s" horiz-adv-x="843" d="M47 92l76 103q49 -39 115.5 -71t119.5 -32q80 0 146.5 49t66.5 127t-104 133l-197 107q-139 74 -139 211q0 154 112.5 234.5t272.5 80.5q86 0 163 -35.5t124 -103.5l-86 -76q-92 92 -223 92q-74 0 -138.5 -41t-64.5 -110q0 -33 19.5 -59.5t41 -41t56.5 -32.5l174 -92 q143 -76 143 -222q0 -156 -105.5 -250t-261.5 -94q-147 0 -311 123z" /> +<glyph unicode="t" horiz-adv-x="690" d="M143 903l17 101h143l29 178h143l-29 -178h203l-18 -119h-199l-108 -680q-3 -21 -4 -39q0 -26 8 -44q12 -30 63 -30q84 0 170 74l45 -100q-117 -96 -256 -97q-111 0 -155 61q-33 44 -33 113q0 25 4 54l110 688z" /> +<glyph unicode="u" horiz-adv-x="1038" d="M111 156q0 29 8 86l121 762h155l-121 -762q-6 -31 -6 -62q0 -84 94 -84q168 0 347 250l106 658h156l-135 -850q-4 -29 -5 -41q0 -39 35 -41l-67 -103h-6h-6q-49 0 -80 33q-33 35 -33 88t18 103q-63 -90 -162.5 -157t-199.5 -67q-109 0 -164 42.5t-55 144.5z" /> +<glyph unicode="v" horiz-adv-x="866" d="M70 1004h168l145 -828l279 457q39 63 38 153q0 111 -41 199l152 33q35 -78 35 -193q0 -141 -70 -256l-344 -569h-158z" /> +<glyph unicode="w" horiz-adv-x="1357" d="M82 1004h164l100 -816l324 816h161l89 -816l229 435q41 80 41 176t-33 184l150 35q31 -96 30 -203q0 -131 -53 -227l-321 -586l-168 -2l-62 512q-15 121 -14 226q0 42 2 81q-45 -176 -103 -307l-219 -512h-172z" /> +<glyph unicode="x" horiz-adv-x="864" d="M-20 2v37l370 481l-221 484h170l168 -386l192 191q27 27 27 82q0 53 -16 98l151 31q14 -43 15 -105q0 -109 -68 -176l-242 -237l244 -502h-174l-182 387l-299 -387z" /> +<glyph unicode="y" horiz-adv-x="882" d="M-16 -276q102 41 174.5 108.5t136.5 169.5l-211 1002h166l149 -832l297 504q20 37 21 94q0 106 -43 217l151 31q37 -92 37 -205q0 -119 -53 -207l-389 -649q-80 -135 -171 -215t-229 -123z" /> +<glyph unicode="z" horiz-adv-x="843" d="M20 0l11 145q258 358 604 734h-520l14 125h700l-16 -127q-324 -350 -623 -744h574l-16 -133h-728z" /> +<glyph unicode="{" horiz-adv-x="722" d="M74 541l16 96q76 0 134.5 81t72.5 165l57 360q18 127 72.5 196.5t169.5 69.5h121l6 -110h-121q-16 0 -29.5 -3t-23.5 -7.5t-19.5 -14.5l-14.5 -15t-11 -21.5t-9 -21.5t-8 -25l-5 -24q-1 -5 -5 -27.5t-4 -25.5l-55 -360q-14 -82 -68.5 -156.5t-126.5 -113.5 q51 -29 82 -89.5t31 -123.5q0 -33 -4 -49l-58 -361q-8 -66 -8 -96q0 -49 19.5 -67.5t70.5 -18.5h109l-39 -111h-117q-90 0 -131 42t-41 134q0 31 8 88l58 361q4 37 4 53q0 70 -35 132.5t-98 62.5z" /> +<glyph unicode="|" horiz-adv-x="454" d="M166 -37v1585h123v-1585h-123z" /> +<glyph unicode="}" horiz-adv-x="630" d="M-47 -221h108q35 0 58.5 11t37 23.5t22.5 44t12.5 46t9.5 57.5l57 361q14 82 67.5 154.5t127.5 107.5q-51 33 -82 94t-31 125q0 35 4 51l55 360q10 55 10.5 100.5t-16 65t-61.5 19.5h-121l39 110h121q88 0 128 -42t40 -132q0 -31 -9 -92l-57 -360q-4 -18 -4 -54 q0 -68 35 -130t98 -62l-16 -96q-76 0 -135.5 -82t-71.5 -166l-57 -361q-18 -127 -73.5 -195.5t-172.5 -68.5h-117z" /> +<glyph unicode="~" horiz-adv-x="1142" d="M281 504l20 127q8 8 28.5 35.5t26.5 33.5l24 23q17 16 31.5 20.5t37 9.5t51.5 5q76 0 201.5 -70t197.5 -70q111 0 184 119l-24 -147q-8 -8 -23.5 -26.5t-21.5 -23.5t-18.5 -17.5t-18.5 -15.5l-20 -10q-13 -7 -25 -8.5t-29.5 -3.5t-40.5 -2q-74 0 -200.5 70t-198.5 70 q-66 0 -100.5 -26.5t-81.5 -92.5z" /> +<glyph unicode="¡" horiz-adv-x="516" d="M25 -426q63 190 98 395l110 705h123l-80 -705q-25 -184 -92 -375zM201 911.5q0 49.5 40 87t91 37.5q49 0 84 -32.5t35 -82t-40 -87t-92 -37.5q-49 0 -83.5 32.5t-34.5 82z" /> +<glyph unicode="¢" horiz-adv-x="868" d="M100 365q0 133 44 271t124 228q133 143 285 164l22 139h93l-23 -137q76 -8 123 -40t100 -99l-102 -80q-66 82 -139 94l-129 -811q74 6 182 78l63 -74q-121 -117 -266 -129l-18 -119h-92l18 121q-143 23 -214 131.5t-71 262.5zM260 399q0 -246 148 -295l124 799 q-88 -25 -153.5 -116t-92 -192.5t-26.5 -195.5z" /> +<glyph unicode="£" horiz-adv-x="905" d="M61 791l41 102h80v270q0 129 97.5 191.5t232.5 62.5q145 0 213 -57l-35 -94q-63 37 -166 37q-186 0 -186 -170v-240h274v-123h-274v-260q0 -180 -47 -385h145q119 -39 180 -39q47 0 96.5 26.5t80.5 65.5l22 -102q-41 -45 -102.5 -76t-118.5 -31q-27 0 -72 7.5t-76 15.5 l-30 8h-307q74 330 73 514v264z" /> +<glyph unicode="¤" horiz-adv-x="1110" d="M16 498l82 129h119q4 41 8 63q2 23 13 66h-181l82 129h137q59 227 226.5 377.5t390.5 150.5q197 0 326 -143l-78 -123q-92 137 -279 137q-152 0 -271.5 -106.5t-170.5 -292.5h561l-82 -129h-516q-14 -57 -14 -68q-1 -4 -7 -61h457l-82 -129h-379q-1 -18 0 -35 q0 -167 72 -258q80 -100 223 -101q86 0 178.5 43t165.5 119l-26 -164q-145 -127 -348 -127q-195 0 -309 142q-101 125 -101 328q0 26 2 53h-199z" /> +<glyph unicode="¥" horiz-adv-x="882" d="M55 334l21 123h305q-4 63 -25 190h-247l20 123h203q-76 332 -240 432l107 107q72 -45 136 -139.5t91 -180.5q52 -157 52 -272q0 -16 -1 -31l31 115q37 137 150.5 301t228.5 223l98 -104q-104 -61 -192 -187.5t-146 -263.5h268l-20 -123h-293q-37 -111 -51 -190h311 l-20 -123h-314l-59 -334h-162l55 334h-307z" /> +<glyph unicode="§" horiz-adv-x="860" d="M43 -190l57 112q147 -90 308 -90q86 0 141 42t55 126q0 20 -7 38.5t-15.5 33t-26.5 31t-29.5 25.5t-37 24.5t-35 19.5t-37.5 18l-33 17q-6 2 -62.5 28.5t-71.5 35.5l-59 37q-43 28 -58 49.5t-31.5 57.5t-16.5 74q0 127 74.5 197t199.5 86q-6 2 -35 16l-38 19 q-8 4 -35 18.5t-36 20.5l-32 21q-23 15 -31 26.5t-22 29t-20.5 34t-11.5 38t-5 43.5q0 139 98.5 213t241.5 74q158 0 295 -78l-55 -106q-139 66 -244 65q-80 0 -131 -42t-51 -120q0 -49 53 -91t129 -75.5t150.5 -71.5t128 -97.5t53.5 -133.5q0 -113 -58.5 -194.5 t-166.5 -106.5q49 -27 77.5 -45t65.5 -48.5t55.5 -69.5t18.5 -84q0 -154 -98.5 -236t-254.5 -82q-188 1 -356 101zM238 496q0 -57 52 -93t111 -36q92 0 153.5 41t61.5 129q0 66 -52 105.5t-120 39.5q-94 0 -150 -47t-56 -139z" /> +<glyph unicode="¨" horiz-adv-x="638" d="M121 1276q0 45 34.5 83t82.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM436 1276q0 45 35 83t82 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="©" horiz-adv-x="1800" d="M246 501.5q0 272.5 192.5 465t464.5 192.5q274 0 467 -192.5t193 -465t-193.5 -466t-466 -193.5t-465 193.5t-192.5 466zM346 502q0 -236 164 -397.5t399 -161.5q229 0 391 163.5t162 395t-163.5 395.5t-395 164t-394.5 -164t-163 -395zM594 500q0 154 82 262t231 108 q123 0 209 -79l-55 -70q-61 51 -154 51q-104 0 -150 -77t-46 -189q0 -117 50 -196t161 -79q76 0 172 70l43 -68q-41 -39 -104.5 -68.5t-115.5 -29.5q-152 0 -237.5 104.5t-85.5 260.5z" /> +<glyph unicode="ª" horiz-adv-x="745" d="M154 954q0 123 42 255t139 237.5t224 105.5q74 0 217 -24l-94 -656q0 -2 -1 -6t-1 -6q0 -37 35 -37q18 0 39 11l20 -60q-51 -31 -104 -31q-49 0 -80 32t-31 81q0 16 6 43t8 35q-37 -74 -120.5 -132.5t-161.5 -58.5q-137 0 -137 211zM281 965q0 -119 57 -119 q80 0 166 103.5t102 191.5q14 100 47 301q-35 12 -92 12q-86 0 -153.5 -93t-97 -202.5t-29.5 -193.5z" /> +<glyph unicode="«" horiz-adv-x="970" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78zM434 512l379 385l96 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="¬" horiz-adv-x="1095" d="M94 760v123h826v-523l-121 -22v422h-705z" /> +<glyph unicode="­" horiz-adv-x="618" d="M113 461v123h393v-123h-393z" /> +<glyph unicode="®" horiz-adv-x="1800" d="M242 500q0 274 191.5 465.5t466 191.5t465.5 -191.5t191 -466t-192.5 -467t-464.5 -192.5t-464.5 194t-192.5 466zM342 500q0 -238 163 -398.5t400 -160.5q231 0 391 163.5t160 395t-164 395.5t-393 164q-231 0 -394 -164t-163 -395zM688 145v727h176q125 0 212 -59 t87 -178q0 -84 -57 -159t-139 -83l225 -217v-31h-109l-245 248q-23 6 -45 19v-267h-105zM793 498q57 -27 94 -27q76 0 122 45t46 123t-54.5 113.5t-136.5 35.5h-71v-290z" /> +<glyph unicode="¯" horiz-adv-x="632" d="M51 1174l21 120h561l-21 -120h-561z" /> +<glyph unicode="°" horiz-adv-x="641" d="M63 995q0 129 102.5 228.5t231.5 99.5q104 0 174 -68.5t70 -173.5q0 -133 -99.5 -230t-232.5 -97q-104 0 -175 68.5t-71 172.5zM164 1008q0 -72 44 -117t114 -45q88 0 154.5 69.5t66.5 153.5q0 72 -44 118t-116 46q-82 0 -150.5 -68.5t-68.5 -156.5z" /> +<glyph unicode="±" horiz-adv-x="915" d="M92 451v122h330v355h119v-355h331v-122h-331v-256h-119v256h-330zM113 -2v123h739v-123h-739z" /> +<glyph unicode="²" d="M96 127q195 98 383 293q78 80 142.5 179t64.5 177q0 66 -44 96.5t-112 30.5q-100 0 -260 -98l-51 100q100 72 175 100.5t184 28.5q274 0 274 -256q0 -117 -92 -251t-205 -231t-225 -161h456l-22 -135h-660z" /> +<glyph unicode="³" d="M57 -225q92 2 188.5 29.5t182.5 78.5t141.5 134t55.5 182q0 154 -244 153q-74 0 -166 -10l-8 117q10 2 28.5 4t33.5 4l30 4q23 4 134.5 73.5t150.5 98.5q115 80 114 170q0 45 -31.5 68.5t-78.5 23.5q-100 0 -297 -104l-43 100q84 55 192.5 94t198.5 39q98 0 157.5 -52 t59.5 -148q0 -63 -30.5 -120t-89 -103t-103.5 -72.5t-115 -63.5q111 0 188.5 -63.5t77.5 -171.5q0 -182 -106.5 -317.5t-263 -199t-334.5 -63.5z" /> +<glyph unicode="´" horiz-adv-x="573" d="M104 1241q225 147 363 299l106 -129q-160 -137 -417 -262z" /> +<glyph unicode="µ" horiz-adv-x="1062" d="M127 -360q59 137 59 229q0 61 -11 186t-11 187v762h155v-762q0 -76 21.5 -111t93.5 -35q70 0 162 36t143 81v791h156v-850q0 -80 43 -82l-51 -103q-55 0 -95 32t-49 85q-63 -51 -152 -84t-171 -33q-31 0 -88 31q39 -117 39 -180q0 -76 -39 -144z" /> +<glyph unicode="¶" horiz-adv-x="1132" d="M102 831q0 203 125 346.5t326 143.5q27 0 39 -2l326 -31l12 90h112q-2 -14 -5 -28l-7 -33q-4 -18 -6 -29l109 21l-23 -105l-111 -24q-109 -266 -108 -496q0 -94 27 -176q35 -111 34 -238q0 -211 -65 -354l-185 74q78 150 78 370q0 45 -9 131.5t-9 131.5q0 270 125 559 l-289 24q-6 1 -12 1q-60 0 -109 -55q-53 -60 -75.5 -137t-22.5 -145q0 -82 39 -145t114 -66l-98 -139q-33 -4 -49 -4q-137 0 -210 88t-73 227z" /> +<glyph unicode="·" horiz-adv-x="559" d="M145 494q0 51 40 87.5t91 36.5q49 0 84 -32.5t35 -81.5q0 -51 -39 -88t-90 -37q-49 0 -85 33t-36 82z" /> +<glyph unicode="¸" horiz-adv-x="686" d="M371 -293q193 96 192 162q0 51 -57 51q-27 0 -105 -18l17 96h213q55 -47 55 -109q0 -74 -82 -143.5t-166 -101.5z" /> +<glyph unicode="¹" d="M238 856l16 98q88 0 199 29l75 18h142l-158 -1001h-152l136 856h-258z" /> +<glyph unicode="º" horiz-adv-x="790" d="M170 1057q0 176 104.5 334.5t270.5 158.5q123 0 184.5 -94t61.5 -225q0 -109 -43 -218.5t-131.5 -190.5t-200.5 -81q-123 0 -184.5 92.5t-61.5 223.5zM287 1044q0 -213 143 -213q84 0 142.5 77t80 166t21.5 169q0 213 -144 213q-63 0 -112 -44t-77 -110.5t-41 -133.5 t-13 -124z" /> +<glyph unicode="»" horiz-adv-x="1048" d="M137 205l96 -78l383 385l-378 385l-97 -78l305 -307zM504 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="¼" horiz-adv-x="2844" d="M238 856l16 98q88 0 199 29l75 18h142l-158 -1001h-152l136 856h-258zM631 -268l1163 1794h129l-1163 -1794h-129zM1958 0l12 133q266 434 641 871h166l-137 -871h131l-21 -133h-135q-53 -240 -123 -342l-114 51q47 98 90 291h-510zM2124 133h364l111 666 q-274 -338 -475 -666z" /> +<glyph unicode="½" horiz-adv-x="2844" d="M238 856l16 98q88 0 199 29l75 18h142l-158 -1001h-152l136 856h-258zM631 -268l1163 1794h129l-1163 -1794h-129zM2019 127q195 98 383 293q78 80 142.5 179t64.5 177q0 66 -44 96.5t-111 30.5q-100 0 -261 -98l-51 100q100 72 175 100.5t184 28.5q274 0 274 -256 q0 -117 -92 -251t-205 -231t-225 -161h457l-23 -135h-659z" /> +<glyph unicode="¾" horiz-adv-x="2844" d="M57 -225q92 2 188.5 29.5t182.5 78.5t141.5 134t55.5 182q0 154 -244 153q-74 0 -166 -10l-8 117q10 2 28.5 4t33.5 4l30 4q23 4 134.5 73.5t150.5 98.5q115 80 114 170q0 45 -31.5 68.5t-78.5 23.5q-100 0 -297 -104l-43 100q84 55 192.5 94t198.5 39q98 0 157.5 -52 t59.5 -148q0 -63 -30.5 -120t-89 -103t-103.5 -72.5t-115 -63.5q111 0 188.5 -63.5t77.5 -171.5q0 -182 -106.5 -317.5t-263 -199t-334.5 -63.5zM631 -268l1163 1794h129l-1163 -1794h-129zM1958 0l12 133q266 434 641 871h166l-137 -871h131l-21 -133h-135 q-53 -240 -123 -342l-114 51q47 98 90 291h-510zM2124 133h364l111 666q-274 -338 -475 -666z" /> +<glyph unicode="¿" horiz-adv-x="829" d="M33 -242q0 135 121 273l180 207q41 45 67 83l42 59q15 22 27.5 64.5t15.5 55t13.5 78t14.5 88.5h125l-15.5 -97.5t-17.5 -100.5t-23.5 -83t-46 -99t-69.5 -91l-182 -205q-35 -39 -65 -98.5t-30 -104.5q0 -82 103 -82h170q135 0 190 -84l-100 -104q-47 66 -113 65h-180 q-227 0 -227 176zM479 909q0 49 40 87t91 38q49 0 84 -32.5t35 -81.5q0 -51 -39 -88t-90 -37q-49 0 -85 32.5t-36 81.5z" /> +<glyph unicode="À" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM389 551h313l-69 569zM463 1677l147 129q84 -150 269 -299l-82 -92q-211 123 -334 262z" /> +<glyph unicode="Á" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM389 551h313l-69 569zM492 1507q225 147 362 299l107 -129q-162 -137 -418 -262z" /> +<glyph unicode="Â" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM338 1520q94 51 222 137t179 131q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -314 -193zM389 551h313l-69 569z" /> +<glyph unicode="Ã" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM299 1587q53 66 110 91q43 19 101 20q19 0 39 -2q37 -4 127 -46t147 -42q70 0 97 100l102 -20q-20 -109 -85 -159q-54 -42 -129 -42q-15 0 -32 2q-59 6 -136 46t-138 40q-37 0 -74 -15.5t-55 -31.5 l-21 -17zM389 551h313l-69 569z" /> +<glyph unicode="Ä" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM389 551h313l-69 569zM432 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM748 1542q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5 q0 -45 -39 -80t-84 -35q-33 0 -55 21.5t-22 54.5z" /> +<glyph unicode="Å" horiz-adv-x="1052" d="M-45 0l612 1290h178l205 -1290h-168l-61 416h-393l-203 -416h-170zM389 551h313l-69 569zM494 1571q0 98 77.5 175t176.5 77q78 0 129 -52.5t51 -130.5q0 -98 -78 -174.5t-176 -76.5q-78 0 -129 52t-51 130zM586 1587q0 -43 29.5 -73.5t72.5 -30.5q55 0 100.5 44t45.5 97 q0 43 -28 74t-71 31q-57 0 -103 -43.5t-46 -98.5z" /> +<glyph unicode="Æ" horiz-adv-x="1476" d="M-45 0l612 1290h191l28 -432l70 432h664l-23 -137h-500l-65 -410h383l-21 -141h-383l-73 -461h520l-23 -141h-684l66 416h-389l-203 -416h-170zM389 551h305l-63 569z" /> +<glyph unicode="Ç" horiz-adv-x="1007" d="M119 465q0 176 55 347t160 298q176 211 409 211q197 0 318 -88l-78 -107q-109 66 -260 66q-84 0 -166 -62.5t-133 -142.5q-141 -217 -141 -518q0 -152 64.5 -261.5t205.5 -109.5q164 0 291 90l55 -104q-106 -76 -252 -104q39 -47 39 -91q0 -74 -82 -143.5t-166 -101.5 l-67 63q193 88 192 162q0 51 -57 51q-27 0 -105 -18l13 78q-158 39 -226.5 173t-68.5 312z" /> +<glyph unicode="È" horiz-adv-x="913" d="M88 0l205 1290h663l-22 -137h-500l-65 -410h383l-21 -141h-383l-74 -461h521l-23 -141h-684zM461 1677l147 129q86 -150 269 -299l-80 -92q-211 123 -336 262z" /> +<glyph unicode="É" horiz-adv-x="913" d="M88 0l205 1290h663l-22 -137h-500l-65 -410h383l-21 -141h-383l-74 -461h521l-23 -141h-684zM440 1507q225 147 363 299l106 -129q-162 -137 -420 -262z" /> +<glyph unicode="Ê" horiz-adv-x="913" d="M88 0l205 1290h663l-22 -137h-500l-65 -410h383l-21 -141h-383l-74 -461h521l-23 -141h-684zM307 1520q92 53 220 138t180 130q104 -143 243 -275l-92 -90q-125 125 -176 195q-197 -127 -313 -193z" /> +<glyph unicode="Ë" horiz-adv-x="913" d="M88 0l205 1290h663l-22 -137h-500l-65 -410h383l-21 -141h-383l-74 -461h521l-23 -141h-684zM420 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM735 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5 q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ì" horiz-adv-x="487" d="M88 0l205 1290h160l-205 -1290h-160zM166 1677l147 129q84 -150 267 -299l-80 -92q-211 123 -334 262z" /> +<glyph unicode="Í" horiz-adv-x="487" d="M88 0l205 1290h160l-205 -1290h-160zM195 1507q102 66 193 140.5t132 117.5l39 41l107 -129q-162 -137 -420 -262z" /> +<glyph unicode="Î" horiz-adv-x="487" d="M88 1520q94 51 222 137t179 131q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -313 -193zM111 0l204 1290h160l-205 -1290h-159z" /> +<glyph unicode="Ï" horiz-adv-x="487" d="M88 0l205 1290h160l-205 -1290h-160zM147 1542q0 45 35 83t82 38q33 0 57.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -55.5 21.5t-22.5 54.5zM463 1542q0 45 34.5 83t82.5 38q33 0 57.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1134" d="M88 0l205 1290h215l280 -985l19 178l129 807h164l-205 -1290h-168l-319 1057q-2 -86 -17 -180l-139 -877h-164zM395 1587q53 66 110 91q43 19 101 20q19 0 39 -2q37 -4 127 -46t148 -42q70 0 96 100l102 -20q-20 -109 -85 -159q-54 -42 -129 -42q-15 0 -32 2 q-59 6 -136 46t-138 40q-37 0 -74 -15.5t-57 -31.5l-18 -17z" /> +<glyph unicode="Ò" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM498 1677l147 129q84 -150 268 -299l-79 -92q-213 123 -336 262z" /> +<glyph unicode="Ó" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM545 1507q225 147 362 299l107 -129q-162 -137 -418 -262z" /> +<glyph unicode="Ô" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM387 1520q94 51 222 137t179 131q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -313 -193z" /> +<glyph unicode="Õ" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM365 1587q53 66 109 91q43 19 101 20q19 0 39 -2q37 -4 127 -46t148 -42q70 0 96 100l102 -20q-20 -109 -85 -159q-54 -42 -129 -42q-15 0 -31 2 q-59 6 -136 46t-139 40q-37 0 -73.5 -15.5t-55.5 -31.5l-20 -17z" /> +<glyph unicode="Ö" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q98 0 170 -45t111 -121t56 -159t17 -175q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-98 0 -171 46t-110.5 123t-55 160t-17.5 177zM276 436q0 -334 218 -334q86 0 155.5 55.5 t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 344 -217 344q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM481 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38 -80t-85 -35q-33 0 -55.5 21.5t-22.5 54.5zM797 1542q0 45 35.5 83t80.5 38 q35 0 59.5 -23.5t24.5 -58.5q0 -45 -37.5 -80t-85.5 -35q-33 0 -55 21.5t-22 54.5z" /> +<glyph unicode="Ø" horiz-adv-x="1120" d="M119 473q0 100 21.5 211t67.5 225.5t110.5 205.5t160.5 148.5t209 57.5q78 0 146 -31l114 260h103l-140 -315q131 -133 131 -414q0 -127 -34.5 -270t-101 -276.5t-180.5 -220.5t-253 -87q-66 0 -115 19l-129 -289h-102l149 336q-157 125 -157 440zM276 436 q0 -174 64 -260l434 979q-47 31 -108 31q-104 0 -185.5 -84t-122.5 -209t-61.5 -243t-20.5 -214zM416 117q39 -14 78 -15q86 0 155.5 55.5t111.5 139.5t70.5 187.5t40 193.5t11.5 164q0 141 -43 233z" /> +<glyph unicode="Ù" horiz-adv-x="1114" d="M135 358q0 72 12 144l125 788h164l-125 -790q-12 -70 -12 -144q0 -254 195 -254q244 0 309 400l125 788h164l-127 -796q-16 -106 -52 -196.5t-94.5 -167.5t-147.5 -120t-200 -43q-172 0 -254 107.5t-82 283.5zM520 1677l148 129q86 -150 268 -299l-80 -92 q-211 123 -336 262z" /> +<glyph unicode="Ú" horiz-adv-x="1114" d="M135 358q0 72 12 144l125 788h164l-125 -790q-12 -70 -12 -144q0 -254 195 -254q244 0 309 400l125 788h164l-127 -796q-16 -106 -52 -196.5t-94.5 -167.5t-147.5 -120t-200 -43q-172 0 -254 107.5t-82 283.5zM502 1507q225 147 362 299l107 -129q-162 -137 -418 -262z " /> +<glyph unicode="Û" horiz-adv-x="1114" d="M135 358q0 72 12 144l125 788h164l-125 -790q-12 -70 -12 -144q0 -254 195 -254q244 0 309 400l125 788h164l-127 -796q-16 -106 -52 -196.5t-94.5 -167.5t-147.5 -120t-200 -43q-172 0 -254 107.5t-82 283.5zM401 1520q94 51 222.5 137t179.5 131q104 -143 244 -275 l-93 -90q-125 125 -176 195q-197 -127 -313 -193z" /> +<glyph unicode="Ü" horiz-adv-x="1114" d="M135 358q0 72 12 144l125 788h164l-125 -790q-12 -70 -12 -144q0 -254 195 -254q244 0 309 400l125 788h164l-127 -796q-16 -106 -52 -196.5t-94.5 -167.5t-147.5 -120t-200 -43q-172 0 -254 107.5t-82 283.5zM475 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5 q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM791 1542q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55 21.5t-22 54.5z" /> +<glyph unicode="Ý" horiz-adv-x="882" d="M92 1196l107 113q72 -45 136 -139.5t91 -180.5q52 -157 52 -272q0 -16 -1 -31l31 115q37 137 150.5 301t228.5 223l98 -104q-172 -104 -286.5 -343t-159.5 -483l-70 -395h-162l74 457q-8 133 -32.5 263t-91.5 272.5t-165 203.5zM860 1540q225 147 363 299l106 -129 q-160 -137 -418 -262z" /> +<glyph unicode="ß" horiz-adv-x="1122" d="M20 -330q127 213 152 475l64 740l-144 18l17 101h139l16 155q12 133 139 212t271 79q147 0 245.5 -82t98.5 -225q0 -115 -68 -244q-86 14 -110 14q-76 0 -140.5 -41t-64.5 -112q0 -33 20.5 -60.5t41 -41t57.5 -31.5l174 -92q154 -82 153 -248q0 -154 -114.5 -237 t-274.5 -83q-80 0 -163 35t-136 92l76 105q45 -43 108.5 -77t116.5 -34q76 0 150 48t74 122q0 57 -45.5 100t-111 74l-130 64.5t-109.5 90t-45 132.5q0 143 108.5 227t258.5 88q29 72 28 129q0 86 -57 125t-145 39q-90 0 -166 -54t-84 -140l-111 -1096q-18 -170 -198 -420z " /> +<glyph unicode="à" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM473 1411l148 129q86 -150 268 -299l-80 -92q-211 123 -336 262z" /> +<glyph unicode="á" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM485 1241q225 147 363 299l106 -129q-160 -137 -417 -262z" /> +<glyph unicode="â" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM334 1253q94 51 222 137.5t179 131.5q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -314 -193z" /> +<glyph unicode="ã" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -155 q106 0 220 136t132 251l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM315 1321q53 66 110 91q43 19 101 19q19 0 39 -1q37 -4 127 -46.5t148 -42.5q72 0 96 101l102 -21q-20 -109 -85 -158q-54 -42 -129 -42q-15 0 -31 2q-59 6 -136 46 t-139 40q-37 0 -73.5 -15.5t-55.5 -31.5l-20 -17z" /> +<glyph unicode="ä" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM442 1276q0 45 35 83t82 38q33 0 57.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -55.5 21.5t-22.5 54.5zM758 1276q0 45 34.5 83t81.5 38q33 0 57.5 -23.5 t24.5 -58.5q0 -45 -37.5 -80t-82.5 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="å" horiz-adv-x="1003" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q117 0 284 -33l-125 -860q0 -4 -1 -9t-1 -7q0 -49 47 -49q20 0 50 12l26 -78q-66 -39 -135 -39q-63 0 -104 41t-41 107q0 20 7 55t9 47q-45 -96 -156.5 -174t-214.5 -78q-180 0 -180 279zM258 262q0 -156 76 -156 q106 0 220 136.5t132 251.5l64 397q-55 14 -121 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM494 1350q14 88 88.5 152.5t163 64.5t140.5 -64q41 -50 41 -116q0 -18 -3 -37q-14 -88 -88 -152.5t-164 -64.5q-88 0 -141 63q-41 50 -41 116q1 19 4 38zM586 1350 q-2 -10 -2 -21q0 -37 24 -65q31 -37 78 -37q49 0 92 36.5t51 86.5q2 11 2 20q0 36 -23 66q-30 37 -77 37q-51 0 -94 -37t-51 -86z" /> +<glyph unicode="æ" horiz-adv-x="1361" d="M92 248q0 117 34 249t97.5 254.5t169 202.5t234.5 80q86 0 262 -43q90 43 190 43q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q0 -8 -1 -24.5t-1 -22.5q0 -100 47 -187.5t139 -87.5q72 0 149 44t134 104l59 -84q-172 -186 -377 -187q-197 0 -272 183 q-61 -74 -151.5 -128.5t-176.5 -54.5q-180 0 -180 279zM258 262q0 -156 76 -156q113 0 233 154q-8 46 -8 102q0 145 50 288t145 241q-57 14 -125 14q-86 0 -161 -72.5t-118 -177t-67.5 -210t-24.5 -183.5zM735 539q426 92 426 284q0 88 -114 88q-117 0 -202 -120.5 t-110 -251.5z" /> +<glyph unicode="ç" horiz-adv-x="849" d="M92 365q0 113 32 227.5t90 213.5t156.5 162.5t219.5 63.5q117 0 246 -100l-80 -94q-94 70 -183 69q-102 0 -179 -92t-109.5 -202.5t-32.5 -209.5q0 -53 10 -104t31.5 -99t64.5 -78t101 -30q49 0 132 48t134 96l59 -82q-109 -115 -252 -164q49 -45 50 -101 q0 -74 -82 -143.5t-166 -101.5l-68 63l21 10l24 13.5l25.5 14.5t30.5 18l26 19q16 11 26 20l19 21q10 11 14.5 23.5t4.5 22.5q0 51 -58 51q-29 0 -102 -18l12 86q-104 37 -160.5 142.5t-56.5 234.5z" /> +<glyph unicode="è" horiz-adv-x="894" d="M92 362q0 158 56.5 307.5t179.5 257t284 107.5q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q-2 -16 -2 -47q0 -100 47 -187.5t139 -87.5q70 0 148 44t133 104l61 -84q-176 -186 -376 -187q-156 0 -235 115.5t-79 277.5zM268 539q426 92 426 284q0 88 -114 88 q-117 0 -202 -120.5t-110 -251.5zM408 1411l147 129q86 -150 268 -299l-80 -92q-210 123 -335 262z" /> +<glyph unicode="é" horiz-adv-x="894" d="M92 362q0 158 56.5 307.5t179.5 257t284 107.5q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q-2 -16 -2 -47q0 -100 47 -187.5t139 -87.5q70 0 148 44t133 104l61 -84q-176 -186 -376 -187q-156 0 -235 115.5t-79 277.5zM268 539q426 92 426 284q0 88 -114 88 q-117 0 -202 -120.5t-110 -251.5zM410 1241q225 147 362 299l107 -129q-160 -137 -418 -262z" /> +<glyph unicode="ê" horiz-adv-x="894" d="M92 362q0 158 56.5 307.5t179.5 257t284 107.5q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q-2 -16 -2 -47q0 -100 47 -187.5t139 -87.5q70 0 148 44t133 104l61 -84q-176 -186 -376 -187q-156 0 -235 115.5t-79 277.5zM260 1253q94 51 222 137.5t180 131.5 q104 -143 243 -275l-92 -90q-125 125 -176 195q-197 -127 -313 -193zM268 539q426 92 426 284q0 88 -114 88q-117 0 -202 -120.5t-110 -251.5z" /> +<glyph unicode="ë" horiz-adv-x="894" d="M92 362q0 158 56.5 307.5t179.5 257t284 107.5q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q-2 -16 -2 -47q0 -100 47 -187.5t139 -87.5q70 0 148 44t133 104l61 -84q-176 -186 -376 -187q-156 0 -235 115.5t-79 277.5zM268 539q426 92 426 284q0 88 -114 88 q-117 0 -202 -120.5t-110 -251.5zM358 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38 -80t-85 -35q-33 0 -55.5 21.5t-22.5 54.5zM674 1276q0 45 35.5 83t81.5 38q35 0 59 -23.5t24 -58.5q0 -45 -37.5 -80t-84.5 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ì" horiz-adv-x="479" d="M90 0l160 1004h151l-159 -1004h-152zM125 1411l147 129q86 -150 269 -299l-80 -92q-211 123 -336 262z" /> +<glyph unicode="í" horiz-adv-x="479" d="M90 0l160 1004h151l-159 -1004h-152zM127 1241q102 66 193.5 140.5t130.5 117.5l41 41l106 -129q-162 -137 -420 -262z" /> +<glyph unicode="î" horiz-adv-x="479" d="M90 1253q94 51 222 137.5t180 131.5q104 -143 243 -275l-92 -90q-125 125 -176 195q-197 -127 -313 -193zM176 0l160 1004h151l-159 -1004h-152z" /> +<glyph unicode="ï" horiz-adv-x="479" d="M90 0l160 1004h151l-159 -1004h-152zM109 1276q0 45 34.5 83t81.5 38q33 0 58.5 -24.5t25.5 -57.5q0 -45 -39 -80t-84 -35q-33 0 -55 21.5t-22 54.5zM424 1276q0 45 35 83t82 38q33 0 58.5 -24.5t25.5 -57.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ñ" horiz-adv-x="1062" d="M90 0l160 1004h156l-31 -189q51 82 157.5 150.5t202.5 68.5q104 0 159.5 -41t55.5 -141q0 -29 -8 -90l-121 -762h-155l120 762q6 55 7 57q0 88 -91 88q-98 0 -200.5 -82t-155.5 -180l-100 -645h-156zM311 1321q53 66 110 91q43 19 101 19q19 0 39 -1q37 -4 127 -46.5 t148 -42.5q72 0 96 101l102 -21q-20 -109 -85 -158q-54 -42 -129 -42q-15 0 -32 2q-59 6 -136 46t-138 40q-37 0 -74 -15.5t-55 -31.5l-20 -17z" /> +<glyph unicode="ò" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM414 1411l147 129q86 -150 268 -299l-79 -92q-211 123 -336 262z" /> +<glyph unicode="ó" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM418 1241q225 147 362 299l107 -129q-162 -137 -418 -262z" /> +<glyph unicode="ô" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM289 1253q94 51 222 137.5t179 131.5q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -314 -193z" /> +<glyph unicode="õ" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM266 1321q53 66 110 91q43 19 101 19q19 0 39 -1q37 -4 127 -46.5t148 -42.5q72 0 96 101l102 -21q-18 -109 -84 -158q-54 -42 -130 -42q-15 0 -32 2q-57 6 -135 46t-139 40q-37 0 -74 -15.5t-55 -31.5l-21 -17z" /> +<glyph unicode="ö" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q162 0 242.5 -124t80.5 -296q0 -141 -56 -286.5t-173 -252t-264 -106.5q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 117 -43 198.5t-148 81.5 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM383 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -56.5 21.5t-23.5 54.5zM698 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -56.5 21.5t-23.5 54.5z" /> +<glyph unicode="÷" horiz-adv-x="1001" d="M111 451v122h778v-122h-778zM377 209q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-89 -38t-85 33t-36 82zM377 817q0 51 40 88t91 37q49 0 84 -32.5t35 -82t-40 -87.5t-89 -38t-85 33t-36 82z" /> +<glyph unicode="ø" horiz-adv-x="1001" d="M92 385q0 143 55.5 288.5t172 253t266.5 107.5q55 0 96 -14l74 166h102l-94 -209q145 -111 145 -363q0 -141 -56 -286.5t-173 -252t-264 -106.5q-55 0 -97 15l-98 -217h-102l117 260q-144 110 -144 358zM246 369q0 -133 49 -209l334 741q-31 10 -64 10 q-109 0 -185.5 -101t-105 -219t-28.5 -222zM371 100q31 -10 65 -10q84 0 148.5 57.5t100.5 145.5t53.5 175t17.5 163q0 137 -51 211z" /> +<glyph unicode="ù" horiz-adv-x="1038" d="M111 156q0 29 8 86l121 762h155l-121 -762q-6 -31 -6 -62q0 -84 94 -84q168 0 347 250l106 658h156l-135 -850q-4 -29 -5 -41q0 -39 35 -41l-67 -103h-6h-6q-49 0 -80 33q-33 35 -33 88t18 103q-63 -90 -162.5 -157t-199.5 -67q-109 0 -164 42.5t-55 144.5zM453 1411 l147 129q86 -150 268 -299l-80 -92q-210 123 -335 262z" /> +<glyph unicode="ú" horiz-adv-x="1038" d="M111 156q0 29 8 86l121 762h155l-121 -762q-6 -31 -6 -62q0 -84 94 -84q168 0 347 250l106 658h156l-135 -850q-4 -29 -5 -41q0 -39 35 -41l-67 -103h-6h-6q-49 0 -80 33q-33 35 -33 88t18 103q-63 -90 -162.5 -157t-199.5 -67q-109 0 -164 42.5t-55 144.5zM430 1241 q225 147 363 299l106 -129q-160 -137 -418 -262z" /> +<glyph unicode="û" horiz-adv-x="1038" d="M111 156q0 29 8 86l121 762h155l-121 -762q-6 -31 -6 -62q0 -84 94 -84q168 0 347 250l106 658h156l-135 -850q-4 -29 -5 -41q0 -39 35 -41l-67 -103h-6h-6q-49 0 -80 33q-33 35 -33 88t18 103q-63 -90 -162.5 -157t-199.5 -67q-109 0 -164 42.5t-55 144.5zM326 1253 q94 51 222 137.5t179 131.5q104 -143 244 -275l-92 -90q-125 125 -177 195q-197 -127 -313 -193z" /> +<glyph unicode="ü" horiz-adv-x="1038" d="M111 156q0 29 8 86l121 762h155l-121 -762q-6 -31 -6 -62q0 -84 94 -84q168 0 347 250l106 658h156l-135 -850q-4 -29 -5 -41q0 -39 35 -41l-67 -103h-6h-6q-49 0 -80 33q-33 35 -33 88t18 103q-63 -90 -162.5 -157t-199.5 -67q-109 0 -164 42.5t-55 144.5zM406 1276 q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55 21.5t-22 54.5zM721 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ý" horiz-adv-x="882" d="M-16 -276q102 41 174.5 108.5t136.5 169.5l-211 1002h166l149 -832l297 504q20 37 21 94q0 106 -43 217l151 31q37 -92 37 -205q0 -119 -53 -207l-389 -649q-80 -135 -171 -215t-229 -123zM801 1249q225 147 362 299l107 -129q-160 -137 -418 -262z" /> +<glyph unicode="ÿ" horiz-adv-x="882" d="M-16 -276q102 41 174.5 108.5t136.5 169.5l-211 1002h166l149 -832l297 504q20 37 21 94q0 106 -43 217l151 31q37 -92 37 -205q0 -119 -53 -207l-389 -649q-80 -135 -171 -215t-229 -123zM274 1276q0 45 35 83t82 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35 q-33 0 -55.5 21.5t-22.5 54.5zM590 1276q0 45 34.5 83t82.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Œ" horiz-adv-x="1282" d="M119 481q0 92 14 172q16 104 57 211t103.5 205t159 159.5t206.5 61.5h666l-22 -137h-500l-64 -410h383l-22 -141h-383l-74 -461h520l-22 -141h-686q-94 0 -163 43t-104.5 116.5t-52 153.5t-16.5 168zM270 446q0 -317 207 -317l164 1030q-98 0 -175 -80t-117 -198.5 t-59.5 -231.5t-19.5 -203z" /> +<glyph unicode="œ" horiz-adv-x="1486" d="M92 385q0 141 56.5 287.5t173 254t264.5 107.5q184 0 270 -170q147 170 348 170q113 0 181.5 -57t68.5 -166q0 -270 -606 -397q0 -8 -1 -24.5t-1 -22.5q0 -100 48 -187.5t138 -87.5q72 0 148.5 44t134.5 104l59 -84q-176 -186 -377 -187q-180 0 -262 160 q-139 -160 -319 -160q-162 0 -243 123t-81 293zM246 369q0 -115 43 -197t147 -82q160 0 252 209q-4 41 -4 63q0 178 68 332q-20 217 -187 217q-84 0 -148.5 -57t-100 -145t-53 -176t-17.5 -164zM860 539q426 92 426 284q0 88 -115 88q-117 0 -201.5 -120.5t-109.5 -251.5z " /> +<glyph unicode="Ÿ" horiz-adv-x="882" d="M92 1196l107 113q72 -45 136 -139.5t91 -180.5q52 -157 52 -272q0 -16 -1 -31l31 115q37 137 150.5 301t228.5 223l98 -104q-172 -104 -286.5 -343t-159.5 -483l-70 -395h-162l74 457q-8 133 -32.5 263t-91.5 272.5t-165 203.5zM350 1542q0 45 36 83t81 38 q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -56.5 21.5t-23.5 54.5zM666 1542q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -37.5 -80t-83.5 -35q-33 0 -56 21.5t-23 54.5z" /> +<glyph unicode="ˆ" horiz-adv-x="737" d="M84 1253q94 51 222 137.5t179 131.5q104 -143 244 -275l-92 -90q-125 125 -176 195q-197 -127 -314 -193z" /> +<glyph unicode="˜" horiz-adv-x="763" d="M23 1321q53 66 109 91q43 19 101 19q19 0 39 -1q37 -4 127 -46.5t148 -42.5q72 0 96 101l102 -21q-20 -109 -85 -158q-54 -42 -129 -42q-15 0 -31 2q-59 6 -136 46t-139 40q-37 0 -73.5 -15.5t-57.5 -31.5l-18 -17z" /> +<glyph unicode="–" horiz-adv-x="733" d="M0 461v123h733v-123h-733z" /> +<glyph unicode="—" horiz-adv-x="1245" d="M0 463v123h1245v-123h-1245z" /> +<glyph unicode="‘" horiz-adv-x="559" d="M199 1008q109 166 315 335l82 -75q-197 -211 -180 -350q-45 -23 -88 -23q-66 0 -129 113z" /> +<glyph unicode="’" horiz-adv-x="610" d="M160 938q181 195 181 328q0 11 -1 22q49 23 90 23q68 0 127 -113q-111 -170 -313 -336z" /> +<glyph unicode="‚" horiz-adv-x="528" d="M-51 -229q117 139 162 239q14 35 21 69t7 48l-2 16q63 35 103 35q59 -2 114 -94q-113 -178 -323 -377z" /> +<glyph unicode="“" horiz-adv-x="944" d="M203 1008q109 166 315 335l82 -75q-181 -195 -181 -329q0 -11 1 -21q-45 -23 -88 -23q-66 0 -129 113zM565 1008q109 166 316 335l82 -75q-181 -195 -182 -329q0 -11 1 -21q-45 -23 -88 -23q-66 0 -129 113z" /> +<glyph unicode="”" horiz-adv-x="942" d="M166 938q181 195 181 328q0 11 -1 22q49 23 90 23q68 0 127 -113q-111 -170 -313 -336zM528 938q181 195 182 328q0 11 -1 22q49 23 90 23q68 0 127 -113q-111 -170 -314 -336z" /> +<glyph unicode="„" horiz-adv-x="935" d="M-43 -201q181 195 181 329q0 11 -1 22q45 23 88 22q68 0 127 -113q-111 -170 -313 -335zM319 -201q181 195 182 329q0 11 -1 22q45 23 88 22q68 0 127 -113q-111 -170 -314 -335z" /> +<glyph unicode="•" horiz-adv-x="868" d="M80 645.5q0 145.5 103.5 248.5t249 103t249.5 -103t104 -248.5t-104 -249t-249.5 -103.5t-249 103.5t-103.5 249z" /> +<glyph unicode="…" horiz-adv-x="1204" d="M78 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM430 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM778 84q0 51 39 88t90 37q49 0 85 -33t36 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="‹" horiz-adv-x="589" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="›" horiz-adv-x="667" d="M133 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="™" horiz-adv-x="1583" d="M225 1325l15 92h497l-14 -92h-199l-114 -719h-101l115 719h-199zM721 608l129 813h137l119 -555q18 -106 20 -131q45 106 58 131l280 555h138l-129 -813h-105l88 553l25 111l-326 -664h-90l-141 666q-2 -55 -13 -111l-86 -555h-104z" /> +<glyph unicode="" horiz-adv-x="1020" d="M0 1020h1020v-1020h-1020v1020z" /> +<glyph unicode="fi" horiz-adv-x="1056" d="M20 -330q121 203 150 475q2 12 37 404q20 213 29 336l-144 18l17 101h133l12 167q12 150 127 215.5t278 65.5q86 0 221.5 -28.5t159.5 -80.5q6 -18 7 -36q0 -49 -42 -89t-92 -40q-27 0 -53 18t-26 43q0 10 4 26.5t4 26.5q0 33 -52.5 46.5t-101.5 13.5 q-117 0 -198.5 -56.5t-86.5 -167.5q-4 -82 -4 -124h166l-2 -117l-170 -6q-10 -158 -43 -453q-25 -262 -41 -391q-25 -180 -198 -420zM659 0l158 1004h152l-158 -1004h-152z" /> +<glyph unicode="fl" horiz-adv-x="1056" d="M20 -330l36 67t63 167t51 241q57 610 66 740l-144 18l17 101h133l12 167q10 129 100 199t215 77q35 2 70 2q89 0 176 -13q121 -18 215 -58l-156 -975q-16 -111 -16 -195q0 -116 31 -183l-148 -43q-6 18 -13 52t-17 146q-3 35 -4 70q0 77 16 153l143 900q-59 37 -137 46 q-26 3 -51 3q-51 0 -98 -13q-72 -18 -123 -73.5t-54 -137.5l-4 -124h166l-2 -117l-170 -6l-84 -844q-8 -76 -57 -181.5t-96 -170.5l-45 -68z" /> +<glyph unicode="ffi" horiz-adv-x="1581" d="M20 -330q125 209 150 475q49 494 66 740l-144 18l17 101h133l6 96q16 322 241 321q47 0 93 -16l-15 -111q-18 6 -43 6q-113 0 -121 -208q-4 -66 -4 -88h166l-2 -117l-172 -6q-8 -123 -24.5 -318.5t-30.5 -329.5l-12 -133q-20 -225 -213 -483zM571 -330q125 209 150 475 q49 494 65 740l-143 18l16 101h134l6 96q16 322 241 321q47 0 93 -16l-15 -111q-18 6 -43 6q-113 0 -121 -208q-4 -66 -4 -88h166l-2 -117l-172 -6q-8 -123 -24.5 -318.5t-30.5 -329.5l-13 -133q-20 -225 -212 -483zM1192 0l160 1004h151l-160 -1004h-151zM1346 1286 q0 49 39.5 87t91.5 38q49 0 83.5 -32.5t34.5 -82.5q0 -51 -39.5 -88t-91.5 -37q-49 0 -83.5 33t-34.5 82z" /> +<glyph unicode="ffl" horiz-adv-x="1597" d="M20 -330q125 209 150 475q49 494 66 740l-144 18l17 101h133l6 96q16 322 241 321q47 0 93 -16l-15 -111q-18 6 -43 6q-113 0 -121 -208q-4 -66 -4 -88h166l-2 -117l-172 -6q-8 -123 -24.5 -318.5t-30.5 -329.5l-12 -133q-20 -225 -213 -483zM571 -330q125 209 150 475 q49 494 65 740l-143 18l16 101h134l6 96q16 322 241 321q47 0 93 -16l-15 -111q-18 6 -43 6q-113 0 -121 -208q-4 -66 -4 -88h166l-2 -117l-172 -6q-8 -123 -24.5 -318.5t-30.5 -329.5l-13 -133q-20 -225 -212 -483zM1239 225q0 94 14 178l162 1018h152l-162 -1018 q-16 -94 -16 -182q0 -133 28 -196l-145 -43q-33 91 -33 243z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-italic-webfont.ttf b/public/stylesheets/fonts/delicious-italic-webfont.ttf Binary files differnew file mode 100755 index 000000000..01d11991b --- /dev/null +++ b/public/stylesheets/fonts/delicious-italic-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-italic-webfont.woff b/public/stylesheets/fonts/delicious-italic-webfont.woff Binary files differnew file mode 100755 index 000000000..32aa7611e --- /dev/null +++ b/public/stylesheets/fonts/delicious-italic-webfont.woff diff --git a/public/stylesheets/fonts/delicious-roman-webfont.eot b/public/stylesheets/fonts/delicious-roman-webfont.eot Binary files differnew file mode 100755 index 000000000..2e1b7b24e --- /dev/null +++ b/public/stylesheets/fonts/delicious-roman-webfont.eot diff --git a/public/stylesheets/fonts/delicious-roman-webfont.svg b/public/stylesheets/fonts/delicious-roman-webfont.svg new file mode 100755 index 000000000..c7c20b31c --- /dev/null +++ b/public/stylesheets/fonts/delicious-roman-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : copyright 19941996 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousRoman" horiz-adv-x="921" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="	" horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode="!" horiz-adv-x="540" d="M174 84q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM213 1085q0 180 31 326l155 21q-35 -203 -34 -396v-704h-123q-29 528 -29 753z" /> +<glyph unicode=""" horiz-adv-x="708" d="M131 1321l27 129h100l29 -129l-45 -322h-68zM414 1321l26 129h101l28 -129l-45 -322h-67z" /> +<glyph unicode="#" horiz-adv-x="1138" d="M125 436l20 135h164l39 312h-145l20 135h142l51 403h123l-52 -403h236l45 364h123l-45 -364h174l-12 -135h-181l-39 -312h154l-12 -135h-158l-53 -418h-123l53 418h-235l-47 -379h-123l47 379h-166zM432 571h234l39 312h-234z" /> +<glyph unicode="$" horiz-adv-x="911" d="M127 983q0 147 86 236.5t233 99.5v113h93v-115q147 -18 249 -98l-55 -111q-82 59 -194 78v-467q158 -100 206 -152q92 -98 93 -248q0 -135 -83 -228t-216 -116v-124h-93v118q-164 4 -309 88l47 123q154 -76 262 -82v484l-46 29l-49 32l-43 30q-34 24 -44 33l-37 33 q-27 25 -35 40.5t-25 41t-23.5 49t-11.5 53t-5 60.5zM287 997q0 -55 25.5 -98t51 -63.5t82.5 -59.5v412q-76 -12 -117.5 -63.5t-41.5 -127.5zM539 113q68 23 104.5 79t36.5 130q0 111 -141 202v-411z" /> +<glyph unicode="%" horiz-adv-x="1431" d="M94 1048.5q0 112.5 80 192.5t193 80q80 0 145 -41q82 -23 143 -23q57 0 114.5 15.5t86.5 30.5l27 16l104 -29l-455 -1290h-135l432 1196q-35 -18 -88 -27.5t-90 -9.5l-35 -2q23 -43 23 -108q0 -113 -80 -193t-192.5 -80t-192.5 80t-80 192.5zM215 1048.5 q0 -63.5 44 -107.5t107.5 -44t107.5 44t44 107.5t-44 107.5t-107.5 44t-107.5 -44t-44 -107.5zM788 241.5q0 112.5 80 192.5t193 80t192.5 -80t79.5 -192.5t-79.5 -192.5t-192.5 -80t-193 80t-80 192.5zM909 241.5q0 -63.5 44 -107.5t107.5 -44t107.5 44t44 107.5t-44 107.5 t-107.5 44t-107.5 -44t-44 -107.5z" /> +<glyph unicode="&" horiz-adv-x="1290" d="M86 479q0 174 90 324.5t252 157.5q-141 59 -141 184q0 123 107.5 199.5t236.5 76.5q141 0 249.5 -77.5t108.5 -213.5v-126h203v-119h-199v-678q0 -113 80 -113q53 0 119 29l35 -96q-115 -57 -209 -58q-96 0 -138 64.5t-42 165.5v686h-199q-203 0 -290 -97.5t-87 -302.5 q0 -193 64 -313q41 -76 77 -76q23 0 56 34t79 67.5t103 33.5q51 0 100 -22l-30 -111q-41 12 -64 13q-47 0 -112.5 -71t-133.5 -71q-84 0 -148.5 52.5t-98 134.5t-51 164.5t-17.5 158.5zM442 1145q0 -76 65.5 -108.5t149.5 -32.5h189v96q0 94 -51.5 155.5t-143.5 61.5 q-82 0 -145.5 -46t-63.5 -126z" /> +<glyph unicode="'" horiz-adv-x="425" d="M131 1321l27 129h100l29 -129l-45 -322h-68z" /> +<glyph unicode="(" horiz-adv-x="688" d="M96 680q0 272 140.5 518t373.5 391l17 -116q-190 -125 -300 -343.5t-110 -453.5q0 -518 412 -848l-15 -127q-262 199 -390 431.5t-128 547.5z" /> +<glyph unicode=")" horiz-adv-x="694" d="M63 -172q414 330 414 848q0 236 -110.5 454t-300.5 343l16 116q233 -145 373.5 -391t140.5 -518q0 -315 -128 -547.5t-390 -431.5z" /> +<glyph unicode="*" horiz-adv-x="868" d="M72 1128v132l307 -111l-74 231h238l-70 -231l305 106v-127l-268 -86l217 -333h-143l-158 252l-156 -252h-133l201 333z" /> +<glyph unicode="+" horiz-adv-x="964" d="M92 451v122h330v355h119v-355h331v-122h-331v-355h-119v355h-330z" /> +<glyph unicode="," horiz-adv-x="528" d="M59 -229q98 141 123 239q10 41 11 84l-5 49q57 35 97 35q27 0 59.5 -23.5t52.5 -48.5l19 -22q-84 -178 -264 -377z" /> +<glyph unicode="-" horiz-adv-x="618" d="M111 461v123h391v-123h-391z" /> +<glyph unicode="." horiz-adv-x="528" d="M147 84q0 51 40 88t92 37q49 0 83.5 -33t34.5 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="/" horiz-adv-x="729" d="M35 -303l530 1853h129l-530 -1853h-129z" /> +<glyph unicode="0" d="M57 502q0 133 39 249.5t133.5 199.5t231.5 83t231 -83t133 -199.5t39 -249.5t-39 -250t-133 -200t-231 -83t-231.5 83t-133.5 200t-39 250zM205 502q0 -92 20.5 -177t81 -156t154.5 -71t154.5 71t81 156t20.5 177t-20.5 177t-81 155.5t-154.5 70.5t-154.5 -70.5 t-81 -155.5t-20.5 -177z" /> +<glyph unicode="1" d="M203 858v98q88 0 194 29l74 19h141v-1004h-151v858h-258z" /> +<glyph unicode="2" d="M127 127q156 84 325 279.5t169 343.5q0 74 -52.5 113.5t-128.5 39.5q-133 0 -284 -117l-29 119q92 72 161.5 100.5t176.5 28.5q143 0 228 -70.5t85 -211.5q0 -188 -190 -404q-131 -147 -228 -213h455v-135h-659z" /> +<glyph unicode="3" d="M147 -225q68 0 146 20q358 82 358 365q0 193 -289 192q-59 0 -174 -12v119l91 12q133 72 258 172q90 70 90 152q0 51 -39 81.5t-92 30.5q-51 0 -142.5 -38t-156.5 -76l-37 108q207 133 370 133q109 0 179.5 -63.5t70.5 -171.5q0 -57 -24.5 -106.5t-73.5 -91.5t-86 -66.5 t-98 -59.5q129 0 218 -78t89 -204q0 -178 -95.5 -304.5t-238.5 -180.5q-138 -52 -303 -52h-12h-9v119z" /> +<glyph unicode="4" d="M63 133q139 387 502 871h168v-871h131v-133h-135v-283h-145v283h-512zM215 133h369v680q-242 -354 -369 -680z" /> +<glyph unicode="5" d="M137 -221q164 4 312 80q193 100 192 305q0 98 -65.5 145t-167.5 47q-98 0 -236 -41l57 689h508v-123h-366l-33 -412q57 12 86 12q10 0 26.5 -1t26.5 -1q133 -6 226.5 -80.5t93.5 -201.5q0 -322 -285 -457q-168 -80 -349 -80h-18h-8v119z" /> +<glyph unicode="6" d="M96 524q0 264 160 465t420 326l55 -101q-184 -115 -284.5 -213t-157.5 -264q127 47 215 47q150 0 244 -95t94 -245q0 -125 -37 -229t-125 -175t-215 -71q-102 0 -178 53.5t-115 139.5t-57.5 176t-18.5 186zM246 481q0 -82 18.5 -163.5t73.5 -153.5t139 -72q213 0 213 359 q0 113 -64.5 173t-179.5 60q-66 0 -184 -51q-16 -78 -16 -152z" /> +<glyph unicode="7" d="M121 872v132h672v-132q0 -272 -137.5 -640.5t-313.5 -591.5l-135 57q180 238 309 570.5t129 604.5h-524z" /> +<glyph unicode="8" d="M84 317q0 117 66.5 211.5t177.5 145.5q-102 61 -154.5 128.5t-52.5 172.5q0 143 100.5 229t247.5 86q152 0 237 -77.5t85 -229.5q0 -96 -69 -174t-167 -121q66 -33 91.5 -48t73.5 -49t68.5 -63.5t38 -77t17.5 -104.5q0 -174 -110.5 -275.5t-287.5 -101.5 q-147 0 -254.5 100.5t-107.5 247.5zM238 340q0 -100 64.5 -177t162.5 -77t161.5 76t63.5 176q0 49 -13 86t-45 65.5t-54.5 45t-74.5 44t-73 39.5q-192 -100 -192 -278zM266 967q0 -82 44 -132.5t128 -93.5l69 36q13 7 52 33t50.5 46.5t24.5 55t13 79.5q0 188 -194 189 q-84 0 -135.5 -63.5t-51.5 -149.5z" /> +<glyph unicode="9" d="M88 557q0 199 92 338t281 139q102 0 179 -56t118 -146.5t59.5 -184.5t18.5 -188q0 -266 -190.5 -480.5t-461.5 -324.5l-43 117q203 102 321 208.5t179 284.5q-131 -47 -219 -47q-68 0 -131 29q-203 86 -203 311zM240 551q0 -98 61 -165t160 -67q119 0 207 54 q16 78 16 151q0 82 -18.5 163t-73.5 152.5t-139 71.5q-213 0 -213 -360z" /> +<glyph unicode=":" horiz-adv-x="528" d="M147 84q0 51 40 88t92 37q49 0 83.5 -33t34.5 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM147 713q0 51 40 88t92 37q49 0 83.5 -33t34.5 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode=";" horiz-adv-x="528" d="M53 -229q98 141 123 239q10 41 10 84l-4 49q57 35 97 35q27 0 59.5 -23.5t50.5 -48.5l21 -22q-84 -178 -265 -377zM147 709q0 51 40 89t92 38q49 0 83.5 -33t34.5 -82q0 -51 -40 -89t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="<" horiz-adv-x="614" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="=" horiz-adv-x="983" d="M90 293v123h782v-123h-782zM90 598v123h782v-123h-782z" /> +<glyph unicode=">" horiz-adv-x="614" d="M68 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="?" horiz-adv-x="733" d="M147 84q0 51 40 88t92 37q49 0 83.5 -33t34.5 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM211 332v104q0 86 2 127t20.5 103.5t55.5 111.5l168 226q70 96 69 161q0 57 -30.5 92t-87.5 35q-88 0 -172 -18v117q96 27 184 26q121 0 190.5 -63.5t69.5 -184.5q0 -98 -100 -229 l-164 -217q-45 -59 -62.5 -120.5t-17.5 -166.5v-104h-125z" /> +<glyph unicode="@" horiz-adv-x="1622" d="M88 727q0 299 223.5 529.5t519.5 230.5q295 0 490 -179.5t195 -471.5q0 -113 -56.5 -236t-160 -212t-218.5 -89q-72 0 -119 35t-47 104q0 12 5 33q-119 -102 -175 -127q-45 -20 -90 -20q-98 0 -152 80.5t-54 183.5q0 94 18 185t58 178t116 141.5t176 54.5q145 0 225 -117 l21 84h133l-141 -592q-12 -45 -13 -67q0 -55 56 -56q125 0 218 151.5t93 285.5q0 252 -163 394t-419 142q-254 0 -429 -195.5t-175 -453.5q0 -270 179.5 -457.5t449.5 -187.5q152 0 292 65.5t230 182.5l96 -52q-94 -139 -270 -225t-348 -86q-319 0 -541.5 222.5 t-222.5 541.5zM588 610q0 -59 21.5 -106t74.5 -47q18 0 43 6t41 12t47 22.5t41 22.5l43 26q33 19 35 21l84 369q-76 98 -205 98q-78 0 -132 -83t-73.5 -174t-19.5 -167z" /> +<glyph unicode="A" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM369 551h307l-154 569z" /> +<glyph unicode="B" horiz-adv-x="1028" d="M164 20v1270h317q123 0 203 -30q190 -76 190 -295q0 -86 -57 -169t-137 -106q125 -8 195.5 -97t70.5 -218q0 -195 -131 -300.5t-330 -105.5q-124 0 -321 51zM328 745h151q104 0 169 59.5t65 162.5q0 197 -234 196h-151v-418zM328 135q92 -27 153 -26q135 0 218 67.5 t83 200.5q0 74 -23.5 123t-69.5 72.5t-96 31.5t-122 8h-143v-477z" /> +<glyph unicode="C" horiz-adv-x="1017" d="M113 645q0 119 29.5 233.5t87 216t157.5 164t227 62.5q195 0 332 -88l-59 -107q-119 66 -273 66q-86 0 -154.5 -58.5t-106.5 -147.5t-57.5 -180t-19.5 -169q0 -90 16.5 -176t52.5 -171t106.5 -136.5t166.5 -51.5q166 0 279 84l70 -102q-68 -53 -166.5 -84t-190.5 -31 q-135 0 -235.5 60.5t-155.5 161t-80.5 214t-25.5 240.5z" /> +<glyph unicode="D" horiz-adv-x="1120" d="M164 0v1290h373q133 0 228 -56t146.5 -152.5t74 -205t22.5 -233.5t-27 -234.5t-82 -203.5t-153.5 -149.5t-229.5 -55.5h-352zM326 131h190q98 0 166 47t100.5 128t46 161t13.5 172q0 520 -314 520h-202v-1028z" /> +<glyph unicode="E" horiz-adv-x="929" d="M164 0v1290h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684z" /> +<glyph unicode="F" horiz-adv-x="843" d="M164 0v1290h606v-135h-442v-412h350v-141h-350v-602h-164z" /> +<glyph unicode="G" horiz-adv-x="1073" d="M113 645q0 119 29.5 233.5t87 216t157.5 164t227 62.5q96 0 168 -20.5t166 -67.5l-63 -109q-113 70 -271 70q-111 0 -190.5 -96.5t-113.5 -219t-34 -241.5q0 -90 15.5 -176t51.5 -171t106.5 -137.5t168.5 -52.5q109 0 181 29v422h151v-528q-129 -53 -336 -54 q-135 0 -236.5 59.5t-156.5 160t-81.5 215t-26.5 241.5z" /> +<glyph unicode="H" horiz-adv-x="1122" d="M164 0v1290h164v-547h467v547h163v-1290h-163v604h-467v-604h-164z" /> +<glyph unicode="I" horiz-adv-x="487" d="M164 0v1290h160v-1290h-160z" /> +<glyph unicode="J" horiz-adv-x="501" d="M12 -223q166 55 166 178v1335h160v-1347q0 -205 -291 -277z" /> +<glyph unicode="K" horiz-adv-x="993" d="M164 0v1290h164v-590l450 590h174l-495 -663l520 -578v-49h-164l-485 539v-539h-164z" /> +<glyph unicode="L" horiz-adv-x="782" d="M164 0v1290h155v-1155h445v-135h-600z" /> +<glyph unicode="M" horiz-adv-x="1519" d="M164 0v1290h217l379 -1089l379 1089h217v-1290h-164v877l10 178l-371 -1055h-143l-371 1057q10 -106 11 -176v-881h-164z" /> +<glyph unicode="N" horiz-adv-x="1134" d="M164 0v1290h217l436 -987q-10 98 -10 180v807h164v-1290h-168l-486 1053q10 -96 11 -176v-877h-164z" /> +<glyph unicode="O" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5 t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156z" /> +<glyph unicode="P" horiz-adv-x="1001" d="M164 0v1290h278q211 0 345.5 -98t134.5 -299q0 -190 -114 -311t-304 -121q-100 0 -176 41v-502h-164zM328 637q98 -43 166 -43q121 0 192.5 89t71.5 212q0 133 -89 198.5t-227 65.5h-114v-522z" /> +<glyph unicode="Q" horiz-adv-x="1122" d="M113 645q0 111 23.5 222.5t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222.5q0 -209 -80 -402.5t-244 -252.5q129 -137 262 -137q41 0 74 8l-43 -156q-33 -4 -49 -4q-51 0 -96.5 13.5t-88.5 45t-67.5 52t-69.5 66.5l-57 59l-37 34q-106 12 -188 83 t-126 172.5t-65.5 208t-21.5 210.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156z" /> +<glyph unicode="R" horiz-adv-x="1034" d="M164 0v1290h278q211 0 345.5 -98t134.5 -299q0 -158 -84 -274.5t-236 -147.5l381 -422v-49h-160l-424 471q-39 12 -71 31v-502h-164zM328 637q94 -43 151 -43q129 0 204 85t75 216q0 133 -89 198.5t-227 65.5h-114v-522z" /> +<glyph unicode="S" horiz-adv-x="888" d="M92 983q0 162 97.5 250t261.5 88q88 0 173 -41t130 -111l-92 -77q-78 98 -211 98q-86 0 -142.5 -49t-56.5 -133q0 -82 57.5 -146.5t138 -109.5t161.5 -96.5t138.5 -136.5t57.5 -200q0 -158 -110.5 -254t-270.5 -96q-76 0 -161 34t-146 87l69 117q129 -106 240 -107 q96 0 158.5 62.5t62.5 159.5q0 72 -57.5 132t-137.5 107l-163 99q-82 52 -139.5 134.5t-57.5 188.5z" /> +<glyph unicode="T" horiz-adv-x="829" d="M20 1147v143h789v-143h-315v-1147h-160v1147h-314z" /> +<glyph unicode="U" horiz-adv-x="1142" d="M162 502v788h164v-790q0 -395 245.5 -395.5t245.5 397.5v788h164v-796q0 -225 -98.5 -375t-311.5 -150t-311 152t-98 381z" /> +<glyph unicode="V" horiz-adv-x="1044" d="M12 1290h178l336 -1093l338 1093h170l-422 -1290h-180z" /> +<glyph unicode="W" horiz-adv-x="1449" d="M20 1290h175l198 -913q16 -72 17 -135l235 1048h164l235 -1048q0 63 17 135l207 913h166l-304 -1290h-174l-229 1042l-229 -1042h-174z" /> +<glyph unicode="X" horiz-adv-x="1007" d="M20 0l383 662l-372 628h178l285 -473l274 473h168l-354 -620l401 -670h-188l-303 512l-293 -512h-179z" /> +<glyph unicode="Y" horiz-adv-x="964" d="M27 1290h174l286 -643l289 643h164l-377 -817v-473h-162v473z" /> +<glyph unicode="Z" horiz-adv-x="937" d="M74 0v139q283 559 557 1010h-512v141h702v-141q-301 -496 -567 -1006h623v-143h-803z" /> +<glyph unicode="[" horiz-adv-x="507" d="M57 -319v1818h318v-119h-191v-1581h191v-118h-318z" /> +<glyph unicode="\" horiz-adv-x="686" d="M25 1550h127l530 -1853h-127z" /> +<glyph unicode="]" horiz-adv-x="509" d="M135 -201h191v1581h-191v119h318v-1818h-318v118z" /> +<glyph unicode="^" horiz-adv-x="1277" d="M145 655l435 795h114l434 -795h-143l-348 629l-348 -629h-144z" /> +<glyph unicode="_" d="M0 -154h922v-122h-922v122z" /> +<glyph unicode="`" horiz-adv-x="692" d="M92 1411l127 129q106 -147 316 -299l-66 -92q-240 127 -377 262z" /> +<glyph unicode="a" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106z" /> +<glyph unicode="b" horiz-adv-x="1030" d="M168 92v1329h156v-493q43 49 113.5 77.5t135.5 28.5q172 0 264.5 -146.5t92.5 -328.5q0 -92 -12.5 -172t-43 -159t-78.5 -135t-125 -90t-175 -34q-78 0 -169 36t-159 87zM324 178q35 -39 92 -61.5t110 -22.5q72 0 123 46t76 120t35 141.5t10 135.5q0 63 -8 119.5 t-30.5 117t-69 96t-111.5 35.5q-59 0 -122.5 -32.5t-104.5 -79.5v-615z" /> +<glyph unicode="c" horiz-adv-x="843" d="M100 492q0 129 39 247.5t134.5 206.5t228.5 88q156 0 262 -102l-70 -92q-86 72 -190 71q-86 0 -145.5 -71.5t-81 -157.5t-21.5 -170q0 -90 21.5 -180t84 -165t154.5 -75q86 0 225 90l52 -96q-57 -49 -137.5 -83t-151.5 -34q-197 0 -300.5 158t-103.5 365z" /> +<glyph unicode="d" horiz-adv-x="1048" d="M102 444q0 119 20.5 218.5t68 186.5t134.5 136t207 49q88 0 197 -30v417h156v-1233q0 -113 55 -118l-43 -101q-78 4 -113 39q-47 51 -47 142q-23 -86 -102.5 -133.5t-173.5 -47.5q-172 0 -265.5 146.5t-93.5 328.5zM262 467q0 -55 11.5 -114.5t34 -121t68.5 -100.5 t105 -39q115 0 181.5 121t66.5 246v413q-88 37 -184 37q-283 0 -283 -442z" /> +<glyph unicode="e" horiz-adv-x="964" d="M100 528q0 197 118 351.5t308 154.5q145 0 241.5 -114.5t106.5 -264.5q2 -16 2.5 -51t2.5 -53h-619v-39q0 -84 20.5 -174t79 -168t144.5 -78q100 0 284 127l50 -98q-72 -61 -170.5 -106.5t-180.5 -45.5q-104 0 -183 52.5t-121 138.5t-62.5 179t-20.5 189zM279 668h436 q0 94 -55.5 168.5t-147.5 74.5q-90 0 -151.5 -73.5t-81.5 -169.5z" /> +<glyph unicode="f" horiz-adv-x="585" d="M51 903v101h135v159q0 242 351 285l28 -121q-8 0 -26.5 -2t-54 -14.5t-66.5 -30.5t-53.5 -56t-22.5 -87v-133h199v-119h-199v-885h-156v885z" /> +<glyph unicode="g" horiz-adv-x="931" d="M82 -170q0 47 15.5 85t49 67.5t60 47t76.5 44.5q-55 6 -95.5 42t-40.5 87q0 37 15.5 66.5t48.5 52t56.5 34t64.5 27.5q-98 35 -157.5 121t-59.5 190q0 152 96 246t248 94q90 0 149 -30h277v-123h-146q47 -82 47 -192.5t-70.5 -197t-178.5 -118.5q-4 -2 -23.5 -7.5 t-30 -9.5t-32 -11t-36 -13t-32.5 -15.5t-30 -18.5l-23 -19q-12 -10 -17.5 -23.5t-5.5 -26.5q0 -72 254 -71h70q100 0 168.5 -56.5t68.5 -152.5q0 -166 -137 -262.5t-309 -96.5q-137 0 -238.5 56.5t-101.5 183.5zM233 -139q0 -80 56.5 -119t140.5 -39q102 0 194.5 64.5 t92.5 162.5q0 119 -197 119h-121q-37 -20 -58.5 -34.5t-50 -39t-43 -53t-14.5 -61.5zM264 700q0 -86 51.5 -156.5t135.5 -70.5t135 70.5t51 156.5t-51 157t-135 71t-135.5 -71t-51.5 -157z" /> +<glyph unicode="h" horiz-adv-x="1062" d="M168 0v1421h156v-491q55 39 151 71.5t174 32.5q147 0 198.5 -69.5t51.5 -202.5v-762h-156v762q0 76 -24.5 110.5t-95.5 34.5q-78 0 -167 -33.5t-132 -70.5v-803h-156z" /> +<glyph unicode="i" horiz-adv-x="487" d="M123 1284q0 47 35 78t82 31q45 0 78.5 -30t33.5 -75q0 -47 -34.5 -77.5t-81.5 -30.5q-45 0 -79 29.5t-34 74.5zM168 0v1004h151v-1004h-151z" /> +<glyph unicode="j" horiz-adv-x="487" d="M2 -285q166 63 166 181v1108h151v-1123q0 -195 -282 -274zM123 1284q0 47 35 78t82 31q45 0 78.5 -30t33.5 -75q0 -47 -34.5 -77.5t-81.5 -30.5q-45 0 -79 29.5t-34 74.5z" /> +<glyph unicode="k" horiz-adv-x="964" d="M168 0v1421h156v-837l362 420h184l-368 -433l454 -534v-37h-163l-469 559v-559h-156z" /> +<glyph unicode="l" horiz-adv-x="483" d="M156 403v1018h151v-1018q0 -203 62 -403h-162q-51 139 -51 403z" /> +<glyph unicode="m" horiz-adv-x="1579" d="M168 0v1004h156v-74q145 104 276 104q182 0 238 -106q53 43 146 74.5t161 31.5q270 0 270 -272v-762h-155v762q0 74 -29 109.5t-101 35.5q-150 0 -262 -92q2 -18 2 -53v-762h-155v762q0 74 -29 109.5t-100 35.5q-131 0 -262 -104v-803h-156z" /> +<glyph unicode="n" horiz-adv-x="1062" d="M168 0v1004h156v-74q55 39 151 71.5t174 32.5q147 0 198.5 -69.5t51.5 -202.5v-762h-156v762q0 76 -24.5 110.5t-95.5 34.5q-78 0 -168 -34.5t-131 -69.5v-803h-156z" /> +<glyph unicode="o" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM256 500q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5 t-82 -163.5t-23.5 -175z" /> +<glyph unicode="p" horiz-adv-x="1056" d="M172 -360v1364h156v-76q51 47 126.5 76.5t143.5 29.5q172 0 264 -146.5t92 -328.5q0 -78 -9 -152.5t-33.5 -156.5t-64.5 -142.5t-107.5 -99.5t-153.5 -39q-188 0 -258 158v-487h-156zM328 498q0 -68 10 -131.5t35.5 -129t78 -105.5t123.5 -40q68 0 115 47t68.5 124 t29 141.5t7.5 132.5q0 63 -8.5 120.5t-31 119t-68.5 98t-112 36.5q-61 0 -128.5 -34.5t-118.5 -83.5v-295z" /> +<glyph unicode="q" horiz-adv-x="1056" d="M102 481q0 96 24 190.5t70 177.5t126.5 134t183.5 51q150 0 381 -63v-1331h-156v487q-74 -158 -258 -158q-98 0 -173 47t-116 124t-61.5 163t-20.5 178zM264 537q0 -442 217 -443q51 0 99 29q152 92 151 375v376q-84 33 -190 33q-137 0 -207 -112.5t-70 -257.5z" /> +<glyph unicode="r" horiz-adv-x="653" d="M168 0v1004h158v-80q4 4 18 19t22 22l23 19q16 13 29.5 20.5t33 15.5t42 11t49.5 3q25 0 50 -7t38 -15l12 -8l-55 -140q-33 27 -92 27q-33 0 -70 -22.5t-51.5 -36t-50.5 -50.5v-782h-156z" /> +<glyph unicode="s" horiz-adv-x="860" d="M96 768q0 131 101.5 198.5t238.5 67.5q90 0 175 -35.5t134 -103.5l-81 -82q-100 100 -232 100q-72 0 -127 -34.5t-55 -102.5q0 -37 25.5 -68.5t49.5 -44.5l66 -36l189 -92q184 -90 184 -275q0 -143 -103.5 -217t-250.5 -74q-160 0 -293 119l57 111q141 -109 244 -109 q82 0 139 38t57 116q0 94 -127 157l-213 107q-178 90 -178 260z" /> +<glyph unicode="t" horiz-adv-x="626" d="M51 903v101h144v178h143v-178h203v-119h-199v-678q0 -113 80 -113q23 0 52.5 7.5t47.5 13.5l19 8l34 -96q-90 -57 -208 -58q-80 0 -130.5 54.5t-50.5 175.5v686z" /> +<glyph unicode="u" horiz-adv-x="1062" d="M164 242v762h155v-762q0 -76 21.5 -111t93.5 -35q68 0 161 36t144 81v791h156v-850q0 -78 43 -82l-51 -103q-55 0 -95 32t-49 85q-61 -53 -151 -85t-172 -32q-139 0 -197.5 67t-58.5 206z" /> +<glyph unicode="v" horiz-adv-x="925" d="M20 1004h168l277 -828q199 453 278 828h156q-129 -543 -360 -1004h-154z" /> +<glyph unicode="w" horiz-adv-x="1372" d="M25 1004h163l230 -816l194 816h162l213 -816q125 379 203 816h149q-86 -520 -276 -1004h-166l-139 512q-14 53 -29.5 130t-23.5 128l-9 49q-25 -182 -57 -307l-137 -512h-172z" /> +<glyph unicode="x" horiz-adv-x="868" d="M25 0l317 520l-301 484h170l217 -349l211 349h164l-293 -478l334 -526h-174l-244 391l-238 -391h-163z" /> +<glyph unicode="y" horiz-adv-x="929" d="M23 1004h163l234 -658q39 -115 55 -205q154 383 275 863h155q-250 -973 -493 -1256q-78 -90 -240 -129l-33 119q70 16 152 86q43 37 106 160z" /> +<glyph unicode="z" horiz-adv-x="872" d="M70 0v133q279 463 518 739h-477v132h657v-136q-291 -354 -518 -735h557v-133h-737z" /> +<glyph unicode="{" horiz-adv-x="681" d="M82 541v96q63 0 115.5 71.5t52.5 174.5v360q0 160 55 213t146 53h120l23 -110h-121q-57 0 -77.5 -36t-20.5 -149v-360q0 -82 -38 -149.5t-75 -94.5l-39 -26l16.5 -10.5t37 -30t46 -51t36 -73.5t16.5 -97v-361q0 -113 21.5 -147.5t88.5 -34.5h109l-23 -111h-116 q-41 0 -72 8.5t-64.5 33t-51 80.5t-17.5 142v361q0 102 -52.5 175t-115.5 73z" /> +<glyph unicode="|" horiz-adv-x="454" d="M166 -37v1585h123v-1585h-123z" /> +<glyph unicode="}" horiz-adv-x="681" d="M82 1399l22 110h121q41 0 72 -8t62.5 -33.5t49 -82t17.5 -142.5v-360q0 -102 52 -174t116 -72v-96q-63 0 -115.5 -73t-52.5 -175v-361q0 -86 -17.5 -142t-51 -80.5t-64.5 -33t-72 -8.5h-117l-22 111h108q68 0 89.5 34.5t21.5 147.5v361q0 51 15.5 97t38 74.5t45 50 t38.5 29.5l15 11q-6 4 -16.5 10t-37 31.5t-46 54.5t-36 76t-16.5 98v360q0 113 -20.5 149t-77.5 36h-121z" /> +<glyph unicode="~" horiz-adv-x="1363" d="M299 504v127q25 53 74 90t104 37q78 0 213 -70t209 -70q113 0 166 119l-2 -147q-25 -47 -75 -77t-103 -30q-76 0 -213 70t-209 70q-107 0 -164 -119z" /> +<glyph unicode="¡" horiz-adv-x="540" d="M119 905q0 51 40 89t91 38q49 0 84 -33.5t35 -83t-40 -87t-91 -37.5q-49 0 -84 32.5t-35 81.5zM143 -430q35 199 35 395v705h123q31 -565 31 -754q0 -170 -33 -326z" /> +<glyph unicode="¢" horiz-adv-x="843" d="M100 492q0 238 101 372q96 133 248 164v141h92v-139q137 -14 223 -98l-70 -92q-63 51 -153 65v-811q82 10 200 88l52 -96q-98 -92 -252 -115v-123h-92v123q-133 23 -226 131q-123 142 -123 390zM256 512q0 -125 47 -249t146 -161v795q-100 -33 -146.5 -147.5 t-46.5 -237.5z" /> +<glyph unicode="£" horiz-adv-x="905" d="M61 791l41 102h80v270q0 129 97.5 191.5t232.5 62.5q145 0 213 -57l-35 -94q-63 37 -166 37q-186 0 -186 -170v-240h274v-123h-274v-260q0 -180 -47 -385h145q119 -39 180 -39q47 0 96.5 26.5t80.5 65.5l22 -102q-41 -45 -102.5 -76t-118.5 -31q-27 0 -72 7.5t-76 15.5 l-30 8h-307q74 330 73 514v264z" /> +<glyph unicode="¤" horiz-adv-x="1110" d="M20 498l62 129h149q-2 27 -2 63q0 39 2 66h-211l62 129h164q25 229 167 378.5t365 149.5q205 0 348 -143l-57 -123q-113 137 -301 137q-330 0 -379 -399h561l-61 -129h-516q-4 -53 -4 -68q0 -16 4 -61h456l-61 -129h-379q23 -190 119 -292t240 -102q86 0 171 43t146 119 v-164q-127 -127 -328 -127q-195 0 -332 141.5t-159 381.5h-226z" /> +<glyph unicode="¥" horiz-adv-x="974" d="M25 1290h174l288 -643l289 643h172q-238 -518 -239 -518h247v-123h-303l-84 -182v-10h383v-123h-383v-334h-163v334h-375v123h375v12l-84 180h-287v123h229z" /> +<glyph unicode="§" horiz-adv-x="860" d="M43 -190l57 112q147 -90 308 -90q86 0 141 42t55 126q0 61 -53 108.5t-130 80.5l-154 71q-77 37 -130 95.5t-53 133.5q0 125 73.5 195t200.5 88q-147 70 -192 111q-74 66 -74 155q0 139 98.5 213t241.5 74q158 0 295 -78l-55 -106q-139 66 -244 65q-80 0 -131 -42 t-51 -120q0 -51 53 -92t129 -74.5t150.5 -72.5t128 -105.5t53.5 -152.5q0 -109 -59.5 -179.5t-165.5 -93.5q63 -33 103 -59.5t77 -77.5t37 -110q0 -154 -98.5 -236t-254.5 -82q-186 1 -356 101zM238 496q0 -57 52 -93t111 -36q92 0 153.5 41t61.5 129q0 66 -52 105.5 t-120 39.5q-94 0 -150 -47t-56 -139z" /> +<glyph unicode="¨" horiz-adv-x="786" d="M121 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM436 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="©" horiz-adv-x="1800" d="M246 501.5q0 272.5 192.5 465t464.5 192.5q274 0 467 -192.5t193 -465t-193.5 -466t-466 -193.5t-465 193.5t-192.5 466zM346 502q0 -236 164 -397.5t399 -161.5q229 0 391 163.5t162 395t-163.5 395.5t-395 164t-394.5 -164t-163 -395zM594 500q0 154 82 262t231 108 q123 0 209 -79l-55 -70q-61 51 -154 51q-104 0 -150 -77t-46 -189q0 -117 50 -196t161 -79q76 0 172 70l43 -68q-41 -39 -104.5 -68.5t-115.5 -29.5q-152 0 -237.5 104.5t-85.5 260.5z" /> +<glyph unicode="ª" horiz-adv-x="860" d="M96 768q0 131 101.5 198.5t238.5 67.5q90 0 175 -35.5t134 -103.5l-81 -82q-100 100 -232 100q-72 0 -127 -34.5t-55 -102.5q0 -37 25.5 -68.5t49.5 -44.5l66 -36l189 -92q184 -90 184 -275q0 -143 -103.5 -217t-250.5 -74q-160 0 -293 119l57 111q141 -109 244 -109 q82 0 139 38t57 116q0 94 -127 157l-213 107q-178 90 -178 260zM117 1409l65 92q119 -63 248 -205q166 158 252 203l66 -92q-203 -145 -316 -299q-137 178 -315 301z" /> +<glyph unicode="«" horiz-adv-x="1024" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78zM432 512l379 385l96 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="¬" horiz-adv-x="1095" d="M94 760v123h826v-523l-121 -22v422h-705z" /> +<glyph unicode="­" horiz-adv-x="618" d="M111 461v123h391v-123h-391z" /> +<glyph unicode="®" horiz-adv-x="1800" d="M242 500q0 274 191.5 465.5t466 191.5t465.5 -191.5t191 -466t-192.5 -467t-464.5 -192.5t-464.5 194t-192.5 466zM342 500q0 -238 163 -398.5t400 -160.5q231 0 391 163.5t160 395t-164 395.5t-393 164q-231 0 -394 -164t-163 -395zM688 145v727h176q125 0 212 -59 t87 -178q0 -84 -57 -159t-139 -83l225 -217v-31h-109l-245 248q-23 6 -45 19v-267h-105zM793 498q57 -27 94 -27q76 0 122 45t46 123t-54.5 113.5t-136.5 35.5h-71v-290z" /> +<glyph unicode="¯" horiz-adv-x="686" d="M61 1174v120h562v-120h-562z" /> +<glyph unicode="°" horiz-adv-x="720" d="M68 1038.5q0 116.5 84 200.5t200.5 84t200.5 -84t84 -200.5t-84 -200.5t-200.5 -84t-200.5 84t-84 200.5zM160 1038q0 -80 56 -136t136 -56t136.5 56t56.5 136t-56.5 136.5t-136.5 56.5t-136 -56.5t-56 -136.5z" /> +<glyph unicode="±" horiz-adv-x="915" d="M92 451v122h330v355h119v-355h331v-122h-331v-256h-119v256h-330zM113 -2v123h739v-123h-739z" /> +<glyph unicode="²" d="M127 127q156 84 325 279.5t169 343.5q0 74 -52.5 113.5t-128.5 39.5q-133 0 -284 -117l-29 119q92 72 161.5 100.5t176.5 28.5q143 0 228 -70.5t85 -211.5q0 -188 -190 -404q-131 -147 -228 -213h455v-135h-659z" /> +<glyph unicode="³" d="M147 -225q68 0 146 20q358 82 358 365q0 193 -289 192q-59 0 -174 -12v119l91 12q133 72 258 172q90 70 90 152q0 51 -39 81.5t-92 30.5q-51 0 -142.5 -38t-156.5 -76l-37 108q207 133 370 133q109 0 179.5 -63.5t70.5 -171.5q0 -57 -24.5 -106.5t-73.5 -91.5t-86 -66.5 t-98 -59.5q129 0 218 -78t89 -204q0 -178 -95.5 -304.5t-238.5 -180.5q-138 -52 -303 -52h-12h-9v119z" /> +<glyph unicode="´" horiz-adv-x="692" d="M121 1241q201 145 315 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="µ" horiz-adv-x="1062" d="M127 -360q59 137 59 229q0 61 -11 186t-11 187v762h155v-762q0 -76 21.5 -111t93.5 -35q70 0 162 36t143 81v791h156v-850q0 -80 43 -82l-51 -103q-55 0 -95 32t-49 85q-63 -51 -152 -84t-171 -33q-31 0 -88 31q39 -117 39 -180q0 -76 -39 -144z" /> +<glyph unicode="¶" horiz-adv-x="1112" d="M55 928q0 172 105.5 282.5t275.5 110.5q53 0 113.5 -5t133.5 -13l112 -13l-2 88h114q0 -59 -2 -88l113 19l-6 -105l-107 -24q0 -348 -69.5 -741.5t-200.5 -659.5l-131 41q141 256 212.5 635t71.5 725q-256 27 -292 26q-86 0 -122 -72.5t-36 -166.5q0 -51 7 -99.5 t25.5 -98.5t56.5 -81t93 -31q88 0 166 62q-102 -203 -293 -203q-164 0 -251 121t-87 291z" /> +<glyph unicode="·" horiz-adv-x="528" d="M147 494q0 51 40 87.5t92 36.5q49 0 83.5 -32.5t34.5 -81.5t-40 -87t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="¸" horiz-adv-x="823" d="M389 -2h213q76 -55 76 -127q0 -68 -67.5 -131.5t-143.5 -95.5l-78 63q166 90 166 154q0 27 -18.5 43t-47.5 16q-27 0 -100 -18v96z" /> +<glyph unicode="¹" d="M203 858v98q88 0 194 29l74 19h141v-1004h-151v858h-258z" /> +<glyph unicode="º" horiz-adv-x="843" d="M100 492q0 129 39 247.5t134.5 206.5t228.5 88q156 0 262 -102l-70 -92q-86 72 -190 71q-86 0 -145.5 -71.5t-81 -157.5t-21.5 -170q0 -90 21.5 -180t84 -165t154.5 -75q86 0 225 90l52 -96q-57 -49 -137.5 -83t-151.5 -34q-197 0 -300.5 158t-103.5 365zM256 1241 q201 145 315 299l127 -129q-139 -137 -376 -262z" /> +<glyph unicode="»" horiz-adv-x="1024" d="M131 205l96 -78l383 385l-379 385l-96 -78l305 -307zM496 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="¼" horiz-adv-x="2537" d="M203 858v98q88 0 194 29l74 19h141v-1004h-151v858h-258zM772 -268l881 1794h129l-881 -1794h-129zM1679 133q139 387 502 871h168v-871h131v-133h-135v-283h-145v283h-512zM1831 133h369v680q-242 -354 -369 -680z" /> +<glyph unicode="½" horiz-adv-x="2537" d="M203 858v98q88 0 194 29l74 19h141v-1004h-151v858h-258zM772 -268l881 1794h129l-881 -1794h-129zM1743 127q156 84 324.5 279.5t168.5 343.5q0 74 -52 113.5t-128 39.5q-133 0 -284 -117l-29 119q92 72 161.5 100.5t176.5 28.5q143 0 228 -70.5t85 -211.5 q0 -188 -190 -404q-131 -147 -228 -213h455v-135h-659z" /> +<glyph unicode="¾" horiz-adv-x="2537" d="M147 -225q68 0 146 20q358 82 358 365q0 193 -289 192q-59 0 -174 -12v119l91 12q133 72 258 172q90 70 90 152q0 51 -39 81.5t-92 30.5q-51 0 -142.5 -38t-156.5 -76l-37 108q207 133 370 133q109 0 179.5 -63.5t70.5 -171.5q0 -57 -24.5 -106.5t-73.5 -91.5t-86 -66.5 t-98 -59.5q129 0 218 -78t89 -204q0 -178 -95.5 -304.5t-238.5 -180.5q-138 -52 -303 -52h-12h-9v119zM772 -268l881 1794h129l-881 -1794h-129zM1679 133q139 387 502 871h168v-871h131v-133h-135v-283h-145v283h-512zM1831 133h369v680q-242 -354 -369 -680z" /> +<glyph unicode="¿" horiz-adv-x="733" d="M86 -164q0 94 100 230l164 215q47 61 63.5 121.5t16.5 164.5v99h125v-99q0 -86 -2 -127t-20.5 -103.5t-55.5 -111.5l-168 -225q-70 -92 -69 -160q0 -59 30.5 -94t87.5 -35q88 0 172 19v-117q-111 -27 -184 -27q-121 0 -190.5 63.5t-69.5 186.5zM369 909q0 51 40 88t91 37 q49 0 83.5 -32.5t34.5 -82t-39.5 -87t-91.5 -37.5q-49 0 -83.5 32.5t-34.5 81.5z" /> +<glyph unicode="À" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM307 1677l127 129q106 -147 316 -299l-66 -92q-240 127 -377 262zM369 551h307l-154 569z" /> +<glyph unicode="Á" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM307 1507q201 145 316 299l127 -129q-139 -137 -377 -262zM369 551h307l-154 569z" /> +<glyph unicode="Â" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM203 1505q164 113 313 301q127 -164 313 -299l-65 -94q-117 61 -248 205q-133 -145 -248 -205zM369 551h307l-154 569z" /> +<glyph unicode="Ã" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM139 1581q152 119 246 119q59 0 146 -45t135 -45q53 0 83.5 13t88.5 52l63 -78q-74 -68 -125 -91t-125 -23q-41 0 -128 45t-144 45q-18 0 -35.5 -4t-40.5 -16l-33 -16q-10 -5 -38.5 -23.5t-32.5 -20.5z M369 551h307l-154 569z" /> +<glyph unicode="Ä" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM258 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM369 551h307l-154 569zM573 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5 q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Å" horiz-adv-x="1044" d="M25 0l409 1290h176l410 -1290h-168l-137 416h-385l-137 -416h-168zM309 1606q0 88 64.5 152.5t152.5 64.5t150.5 -63.5t62.5 -153.5t-64.5 -153.5t-152.5 -63.5t-150.5 63.5t-62.5 153.5zM369 551h307l-154 569zM401 1605.5q0 -49.5 37 -86t84 -36.5q49 0 86 36.5t37 86 t-35 86.5t-82 37q-51 0 -89 -37t-38 -86.5z" /> +<glyph unicode="Æ" horiz-adv-x="1486" d="M25 0l407 1290h191l98 -432v432h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684v416h-389l-137 -416h-170zM371 551h305l-154 569z" /> +<glyph unicode="Ç" horiz-adv-x="1017" d="M113 645q0 119 29.5 233.5t87 216t157.5 164t227 62.5q199 0 332 -88l-59 -107q-127 68 -273 68q-82 0 -154.5 -62.5t-111.5 -144.5q-72 -145 -72 -350q0 -90 16.5 -176t52.5 -172t106.5 -138.5t166.5 -52.5q164 0 277 90l72 -104q-98 -80 -250 -107q53 -53 53 -106 q0 -68 -67.5 -131.5t-143.5 -95.5l-78 63q166 90 166 154q0 27 -18.5 43t-46.5 16q-27 0 -101 -18v82q-102 29 -177 98.5t-114.5 164.5t-58 194.5t-18.5 203.5z" /> +<glyph unicode="È" horiz-adv-x="929" d="M164 0v1290h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684zM285 1677l127 129q113 -152 315 -299l-65 -92q-234 123 -377 262z" /> +<glyph unicode="É" horiz-adv-x="929" d="M164 0v1290h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684zM289 1507q201 145 315 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="Ê" horiz-adv-x="929" d="M164 0v1290h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684zM184 1505q164 113 314 301q131 -170 313 -299l-66 -94q-117 61 -247 205q-141 -150 -248 -205z" /> +<glyph unicode="Ë" horiz-adv-x="929" d="M164 0v1290h663v-137h-499v-410h383v-141h-383v-461h520v-141h-684zM240 1542q0 45 34.5 83t81.5 38q35 0 58.5 -23.5t23.5 -58.5q0 -45 -38 -80t-83 -35q-33 0 -55 21.5t-22 54.5zM555 1542q0 45 35 83t82 38q35 0 58.5 -23.5t23.5 -58.5q0 -45 -38 -80t-83 -35 q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ì" horiz-adv-x="487" d="M25 1677l127 129q111 -154 315 -299l-66 -92q-235 123 -376 262zM164 0v1290h160v-1290h-160z" /> +<glyph unicode="Í" horiz-adv-x="487" d="M23 1507q201 145 315 299l127 -129q-139 -137 -377 -262zM164 0v1290h160v-1290h-160z" /> +<glyph unicode="Î" horiz-adv-x="487" d="M-70 1505q164 113 314 301q127 -164 313 -299l-65 -94q-117 61 -248 205q-133 -145 -248 -205zM164 0v1290h160v-1290h-160z" /> +<glyph unicode="Ï" horiz-adv-x="487" d="M-14 1542q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-84.5 -35q-33 0 -55 21.5t-22 54.5zM164 0v1290h160v-1290h-160zM301 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1134" d="M164 0v1290h217l436 -987q-10 98 -10 180v807h164v-1290h-168l-486 1053q10 -96 11 -176v-877h-164zM195 1581q152 119 245 119q59 0 146.5 -45t134.5 -45q53 0 84 13t88 52l63 -78q-74 -68 -125 -91t-124 -23q-41 0 -128 45t-145 45q-18 0 -35.5 -4t-40.5 -16l-32 -16 q-10 -5 -39 -23.5t-33 -20.5z" /> +<glyph unicode="Ò" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5 t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156zM336 1677l127 129q106 -147 315 -299l-65 -92q-240 127 -377 262z" /> +<glyph unicode="Ó" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5 t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156zM342 1507q201 145 315 299l127 -129q-139 -137 -376 -262z" /> +<glyph unicode="Ô" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM246 1511q160 109 313 301q127 -164 313 -299l-65 -94q-113 57 -248 205 q-129 -145 -248 -205zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156z" /> +<glyph unicode="Õ" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM176 1581q152 119 246 119q59 0 146 -45t134 -45q53 0 84 13t88 52 l64 -78q-74 -68 -125 -91t-125 -23q-41 0 -128 45t-144 45q-18 0 -36 -4t-40 -16l-33 -16q-10 -5 -38.5 -23.5t-32.5 -20.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5 t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156z" /> +<glyph unicode="Ö" horiz-adv-x="1122" d="M113 645.5q0 110.5 23.5 222t73.5 217t141 171t210 65.5t210 -65.5t141.5 -171t74 -217t23.5 -222t-23.5 -222.5t-74 -217.5t-141.5 -171t-210 -65.5t-210 65.5t-141 171t-73.5 217.5t-23.5 222.5zM276 645q0 -72 14.5 -155.5t44.5 -175t89 -151t137 -59.5t137.5 59.5 t89 151t44 175t14.5 155.5t-14.5 156t-44 175t-89 150.5t-137.5 59.5t-137 -59.5t-89 -150.5t-44.5 -175t-14.5 -156zM299 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM614 1542q0 45 36 83t81 38 q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ø" horiz-adv-x="1122" d="M113 653q0 111 24.5 221.5t73.5 214t140 168t210 64.5q78 0 139 -27l70 240h102l-84 -293q115 -92 168.5 -257t53.5 -339q0 -111 -23.5 -222.5t-73 -217t-140.5 -171t-212 -65.5q-63 0 -131 23l-80 -279h-102l94 330q-119 92 -174 262t-55 348zM276 633q0 -307 109 -443 l279 971q-45 25 -103 25q-88 0 -149.5 -57.5t-88 -152.5t-37 -176t-10.5 -167zM467 123q45 -18 94 -19q90 0 150.5 55.5t87 147.5t37 172t10.5 166q0 297 -103 442z" /> +<glyph unicode="Ù" horiz-adv-x="1142" d="M162 502v788h164v-790q0 -395 245.5 -395.5t245.5 397.5v788h164v-796q0 -225 -98.5 -375t-311.5 -150t-311 152t-98 381zM354 1677l127 129q106 -147 316 -299l-66 -92q-240 127 -377 262z" /> +<glyph unicode="Ú" horiz-adv-x="1142" d="M162 502v788h164v-790q0 -395 245.5 -395.5t245.5 397.5v788h164v-796q0 -225 -98.5 -375t-311.5 -150t-311 152t-98 381zM358 1507q201 145 316 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="Û" horiz-adv-x="1142" d="M162 502v788h164v-790q0 -395 245.5 -395.5t245.5 397.5v788h164v-796q0 -225 -98.5 -375t-311.5 -150t-311 152t-98 381zM254 1505q164 113 313 301q127 -164 314 -299l-66 -94q-117 61 -248 205q-133 -145 -248 -205z" /> +<glyph unicode="Ü" horiz-adv-x="1126" d="M162 502v788h164v-790q0 -395 245.5 -395.5t245.5 397.5v788h164v-796q0 -225 -98.5 -375t-311.5 -150t-311 152t-98 381zM311 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM627 1542q0 45 35.5 83t80.5 38 q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-83.5 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Ý" horiz-adv-x="964" d="M27 1290h174l286 -643l289 643h164l-377 -817v-473h-162v473zM418 1536q201 145 315 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="ß" horiz-adv-x="1171" d="M47 903v101h135v155q0 133 110.5 211t250.5 78q156 0 260 -92t104 -246q0 -53 -41 -209q-35 18 -90 19q-80 0 -131 -42t-51 -120q0 -49 53 -90t129 -75t152 -74t129 -107.5t53 -157.5q0 -141 -103.5 -213t-250.5 -72q-188 0 -357 103l58 112q147 -92 307 -92 q84 0 140.5 45t56.5 125q0 59 -53.5 106.5t-130.5 81.5l-153 70q-77 37 -130.5 95.5t-53.5 136.5q0 137 90.5 210.5t231.5 73.5q14 53 14 94q0 94 -62.5 145.5t-156.5 51.5q-88 0 -153.5 -54t-65.5 -140v-1133h-156v885z" /> +<glyph unicode="à" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106zM244 1411l127 129q106 -147 315 -299l-65 -92q-240 127 -377 262z" /> +<glyph unicode="á" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106zM258 1241q201 145 315 299l127 -129q-139 -137 -376 -262z" /> +<glyph unicode="â" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM147 1239q164 113 314 301q127 -164 313 -299l-65 -94q-117 61 -248 205q-133 -145 -248 -205zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106z" /> +<glyph unicode="ã" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM86 1315q152 119 246 119q59 0 146 -45.5t134 -45.5q53 0 84 13.5t88 52.5l64 -78q-74 -68 -125 -91t-125 -23q-41 0 -128 45t-144 45q-18 0 -36 -4.5t-40 -15.5l-33 -16q-10 -5 -38.5 -23.5t-33.5 -20.5zM240 252q0 -68 36.5 -114 t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106z" /> +<glyph unicode="ä" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM203 1276q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-83.5 -35q-33 0 -55.5 21.5t-22.5 54.5zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106zM518 1276 q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="å" horiz-adv-x="954" d="M86 246q0 72 59 182l482 205v129q0 72 -43 108.5t-115 36.5q-70 0 -146.5 -44t-129.5 -103l-58 96q61 78 157.5 128t190.5 50q137 0 218 -68.5t81 -203.5v-625q0 -61 66 -61q25 0 41 12l39 -78q-59 -37 -119 -37q-82 0 -131 49.5t-49 131.5q-25 -86 -106 -135.5 t-175 -49.5q-123 0 -192.5 76t-69.5 201zM240 252q0 -68 36.5 -114t102.5 -46q109 0 178.5 109.5t69.5 224.5v84l-361 -152q-26 -57 -26 -106zM244 1350q0 88 64.5 152.5t152.5 64.5t150.5 -64.5t62.5 -152.5t-64.5 -152.5t-152.5 -64.5t-150.5 64.5t-62.5 152.5zM336 1350 q0 -49 36 -86t85 -37t86 36.5t37 86t-34 86.5t-83 37q-51 0 -89 -36t-38 -87z" /> +<glyph unicode="æ" horiz-adv-x="1484" d="M86 252q0 111 59 180q33 37 482 201v129q0 72 -43 108.5t-115 36.5t-147.5 -43t-128.5 -104l-58 96q61 78 157.5 128t190.5 50q197 0 269 -137q121 137 295 137q145 0 243.5 -114.5t104.5 -264.5l4 -104h-619v-39q0 -63 12.5 -131t40 -135.5t80 -110.5t121.5 -43 q156 0 254 60l47 -101q-133 -82 -327 -82q-102 0 -190.5 61.5t-133.5 155.5l-170 -145q-84 -72 -174 -72q-125 0 -189.5 77t-64.5 206zM240 247.5q0 -59.5 33.5 -104.5t91.5 -45q72 0 145 62l141 119q-27 88 -30 229q-319 -115 -345 -150q-36 -51 -36 -110.5zM799 668h436 q0 94 -56.5 170.5t-146.5 76.5t-151.5 -74.5t-81.5 -172.5z" /> +<glyph unicode="ç" horiz-adv-x="843" d="M100 492q0 238 101 372q55 74 135 122t166 48q68 0 141.5 -27.5t120.5 -74.5l-70 -92q-84 70 -190 69q-84 0 -142.5 -68.5t-82.5 -158.5q-23 -76 -23 -170q0 -86 21.5 -176t81 -167t147.5 -77q96 0 235 90l52 -96q-72 -66 -179 -98q63 -59 64 -117q0 -68 -67.5 -131.5 t-143.5 -95.5l-78 63q166 90 166 154q0 27 -18.5 43t-47.5 16q-27 0 -100 -18v84q-147 51 -218 192.5t-71 313.5z" /> +<glyph unicode="è" horiz-adv-x="964" d="M100 528q0 197 118 351.5t308 154.5q145 0 241.5 -114.5t106.5 -264.5q2 -16 2.5 -51t2.5 -53h-619v-39q0 -84 20.5 -174t79 -168t144.5 -78q100 0 284 127l50 -98q-72 -61 -170.5 -106.5t-180.5 -45.5q-104 0 -183 52.5t-121 138.5t-62.5 179t-20.5 189zM279 668h436 q0 94 -55.5 168.5t-147.5 74.5q-90 0 -151.5 -73.5t-81.5 -169.5zM293 1411l127 129q106 -147 315 -299l-65 -92q-240 127 -377 262z" /> +<glyph unicode="é" horiz-adv-x="964" d="M100 528q0 197 118 351.5t308 154.5q145 0 241.5 -114.5t106.5 -264.5q2 -16 2.5 -51t2.5 -53h-619v-39q0 -84 20.5 -174t79 -168t144.5 -78q100 0 284 127l50 -98q-72 -61 -170.5 -106.5t-180.5 -45.5q-104 0 -183 52.5t-121 138.5t-62.5 179t-20.5 189zM279 668h436 q0 94 -55.5 168.5t-147.5 74.5q-90 0 -151.5 -73.5t-81.5 -169.5zM313 1241q201 145 316 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="ê" horiz-adv-x="964" d="M100 528q0 197 118 351.5t308 154.5q145 0 241.5 -114.5t106.5 -264.5q2 -16 2.5 -51t2.5 -53h-619v-39q0 -84 20.5 -174t79 -168t144.5 -78q100 0 284 127l50 -98q-72 -61 -170.5 -106.5t-180.5 -45.5q-104 0 -183 52.5t-121 138.5t-62.5 179t-20.5 189zM199 1239 q164 113 313 301q127 -164 313 -299l-65 -94q-117 61 -248 205q-133 -145 -248 -205zM279 668h436q0 94 -55.5 168.5t-147.5 74.5q-90 0 -151.5 -73.5t-81.5 -169.5z" /> +<glyph unicode="ë" horiz-adv-x="964" d="M100 528q0 197 118 351.5t308 154.5q145 0 241.5 -114.5t106.5 -264.5q2 -16 2.5 -51t2.5 -53h-619v-39q0 -84 20.5 -174t79 -168t144.5 -78q100 0 284 127l50 -98q-72 -61 -170.5 -106.5t-180.5 -45.5q-104 0 -183 52.5t-121 138.5t-62.5 179t-20.5 189zM270 1276 q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM279 668h436q0 94 -55.5 168.5t-147.5 74.5q-90 0 -151.5 -73.5t-81.5 -169.5zM586 1276q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-83.5 -35 q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ì" horiz-adv-x="487" d="M23 1411l127 129q106 -147 315 -299l-66 -92q-239 127 -376 262zM168 0v1004h151v-1004h-151z" /> +<glyph unicode="í" horiz-adv-x="487" d="M41 1241q201 145 315 299l127 -129q-139 -137 -377 -262zM168 0v1004h151v-1004h-151z" /> +<glyph unicode="î" horiz-adv-x="487" d="M-76 1239q164 113 314 301q127 -164 313 -299l-66 -94q-117 61 -247 205q-133 -145 -248 -205zM168 0v1004h151v-1004h-151z" /> +<glyph unicode="ï" horiz-adv-x="487" d="M-16 1276q0 45 34.5 83t81.5 38q33 0 58.5 -24.5t25.5 -57.5q0 -45 -38.5 -80t-84.5 -35q-33 0 -55 21.5t-22 54.5zM168 0v1004h151v-1004h-151zM299 1276q0 45 35 83t82 38q33 0 58.5 -24.5t25.5 -57.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ñ" horiz-adv-x="1062" d="M166 1315q152 119 246 119q59 0 146 -45.5t134 -45.5q53 0 84 13.5t88 52.5l64 -78q-74 -68 -125 -91t-125 -23q-41 0 -128 45t-145 45q-18 0 -35.5 -4.5t-39.5 -15.5l-33 -16q-10 -5 -39 -23.5t-33 -20.5zM168 0v1004h156v-74q55 39 151 71.5t174 32.5 q147 0 198.5 -69.5t51.5 -202.5v-762h-156v762q0 76 -24.5 110.5t-95.5 34.5q-78 0 -168 -34.5t-131 -69.5v-803h-156z" /> +<glyph unicode="ò" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM256 500q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5 t-82 -163.5t-23.5 -175zM281 1411l127 129q106 -147 315 -299l-66 -92q-239 127 -376 262z" /> +<glyph unicode="ó" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM256 500q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5 t-82 -163.5t-23.5 -175zM293 1241q201 145 315 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="ô" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM193 1239q164 113 313 301q127 -164 313 -299l-65 -94q-117 61 -248 205q-133 -145 -248 -205zM256 500 q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5t-82 -163.5t-23.5 -175z" /> +<glyph unicode="õ" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM117 1315q152 119 245 119q59 0 146.5 -45.5t134.5 -45.5q53 0 84 13.5t88 52.5l64 -78q-74 -68 -125.5 -91t-124.5 -23 q-41 0 -128 45t-145 45q-18 0 -35.5 -4.5t-39.5 -15.5l-33 -16q-10 -5 -39 -23.5t-33 -20.5zM256 500q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5t-82 -163.5t-23.5 -175z" /> +<glyph unicode="ö" horiz-adv-x="999" d="M100 500q0 127 40 243.5t134.5 203.5t225.5 87t225 -87t134 -203.5t40 -243.5q0 -125 -41 -243t-135 -203t-223 -85t-223.5 85t-135.5 203t-41 243zM250 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM256 500 q0 -139 64.5 -273.5t179 -134.5t179 134t64.5 274q0 84 -23.5 175t-81.5 163.5t-138 72.5t-138.5 -72.5t-82 -163.5t-23.5 -175zM565 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="÷" horiz-adv-x="1001" d="M111 451v122h778v-122h-778zM381 209q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM381 817q0 51 40 88t91 37q49 0 84 -32.5t35 -82t-40 -87.5t-91 -38q-49 0 -84 33t-35 82z" /> +<glyph unicode="ø" horiz-adv-x="999" d="M100 500q0 92 25 183t72 171t125.5 130t177.5 50q49 0 94 -12l49 170h102l-61 -213q106 -72 160.5 -204t54.5 -275q0 -125 -41 -243t-135 -203t-223 -85q-55 0 -101 15l-59 -211h-102l71 254q-104 72 -156.5 202t-52.5 271zM256 500q0 -229 92 -338l213 741q-27 8 -61 8 q-72 0 -123 -41t-76 -108.5t-35 -131.5t-10 -130zM434 100q35 -10 66 -10q72 0 123 41t75.5 107.5t34.5 130t10 131.5q0 233 -96 346z" /> +<glyph unicode="ù" horiz-adv-x="1058" d="M164 242v762h155v-762q0 -76 21.5 -111t93.5 -35q68 0 161 36t144 81v791h156v-850q0 -78 43 -82l-51 -103q-55 0 -95 32t-49 85q-61 -53 -151 -85t-172 -32q-139 0 -197.5 67t-58.5 206zM313 1411l127 129q106 -147 316 -299l-66 -92q-240 127 -377 262z" /> +<glyph unicode="ú" horiz-adv-x="1058" d="M164 242v762h155v-762q0 -76 21.5 -111t93.5 -35q68 0 161 36t144 81v791h156v-850q0 -78 43 -82l-51 -103q-55 0 -95 32t-49 85q-61 -53 -151 -85t-172 -32q-139 0 -197.5 67t-58.5 206zM313 1241q201 145 316 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="û" horiz-adv-x="1058" d="M164 242v762h155v-762q0 -76 21.5 -111t93.5 -35q68 0 161 36t144 81v791h156v-850q0 -78 43 -82l-51 -103q-55 0 -95 32t-49 85q-61 -53 -151 -85t-172 -32q-139 0 -197.5 67t-58.5 206zM207 1239q164 113 313 301q127 -164 314 -299l-66 -94q-117 61 -248 205 q-133 -145 -248 -205z" /> +<glyph unicode="ü" horiz-adv-x="1058" d="M164 242v762h155v-762q0 -76 21.5 -111t93.5 -35q68 0 161 36t144 81v791h156v-850q0 -78 43 -82l-51 -103q-55 0 -95 32t-49 85q-61 -53 -151 -85t-172 -32q-139 0 -197.5 67t-58.5 206zM270 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35 q-33 0 -55.5 21.5t-22.5 54.5zM586 1276q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-83.5 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ý" horiz-adv-x="929" d="M23 1004h163l234 -658q39 -115 55 -205q154 383 275 863h155q-250 -973 -493 -1256q-78 -90 -240 -129l-33 119q70 16 152 86q43 37 106 160zM399 1249q201 145 316 299l127 -129q-139 -137 -377 -262z" /> +<glyph unicode="ÿ" horiz-adv-x="929" d="M23 1004h163l234 -658q39 -115 55 -205q154 383 275 863h155q-250 -973 -493 -1256q-78 -90 -240 -129l-33 119q70 16 152 86q43 37 106 160zM217 1276q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5zM532 1276 q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="Œ" horiz-adv-x="1306" d="M113 653q0 102 23.5 208t70.5 205t133 161.5t199 62.5h665v-137h-499v-410h382v-141h-382v-461h520v-141h-686q-115 0 -202 64.5t-133 167t-68.5 209t-22.5 212.5zM270 633q0 -80 10.5 -155t36 -160t84 -137t140.5 -52v1030q-84 0 -142.5 -55t-84 -145.5t-35 -167 t-9.5 -158.5z" /> +<glyph unicode="œ" horiz-adv-x="1558" d="M100 500q0 92 25 183t72 171t125.5 130t177.5 50q197 0 297 -172q123 172 323 172q145 0 242.5 -114.5t105.5 -264.5q2 -16 2 -51t3 -53h-619v-39q0 -63 12.5 -131t40 -135.5t79.5 -110.5t122 -43q154 0 254 60l47 -101q-133 -82 -328 -82q-86 0 -161.5 44t-126.5 116 q-113 -160 -293 -160q-129 0 -223.5 85t-135.5 203t-41 243zM256 500q0 -68 10 -131.5t35 -130t76 -107.5t123 -41q160 0 219 209q-25 100 -25 229q0 78 27 168q-61 215 -221 215q-72 0 -123 -41t-76 -108.5t-35 -131.5t-10 -130zM872 668h437q0 94 -55.5 170.5t-147.5 76.5 q-88 0 -151 -75.5t-83 -171.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="964" d="M27 1290h174l286 -643l289 643h164l-377 -817v-473h-162v473zM244 1542q0 45 35.5 83t80.5 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -38.5 -80t-83.5 -35q-33 0 -55.5 21.5t-22.5 54.5zM559 1542q0 45 36 83t81 38q35 0 59.5 -23.5t24.5 -58.5q0 -45 -39 -80t-84 -35 q-33 0 -55.5 21.5t-22.5 54.5z" /> +<glyph unicode="ˆ" horiz-adv-x="823" d="M123 1239q164 113 313 301q127 -164 314 -299l-66 -94q-117 61 -248 205q-133 -145 -248 -205z" /> +<glyph unicode="˜" horiz-adv-x="778" d="M2 1315q152 119 246 119q59 0 146 -45.5t134 -45.5q53 0 84 13.5t88 52.5l64 -78q-74 -68 -125 -91t-125 -23q-41 0 -128 45t-144 45q-18 0 -36 -4.5t-40 -15.5l-33 -16q-10 -5 -38.5 -23.5t-33.5 -20.5z" /> +<glyph unicode="–" horiz-adv-x="733" d="M0 461v123h733v-123h-733z" /> +<glyph unicode="—" horiz-adv-x="1245" d="M0 463v123h1245v-123h-1245z" /> +<glyph unicode="‘" horiz-adv-x="546" d="M94 977q84 178 264 377l93 -64q-98 -141 -123 -239q-10 -41 -11 -84l5 -49q-57 -35 -97 -35q-27 0 -59.5 23.5t-50.5 47.5z" /> +<glyph unicode="’" horiz-adv-x="552" d="M98 915q98 141 123 240q10 41 10 84l-4 49q57 35 97 35q27 0 59.5 -23.5t50.5 -46.5l21 -24q-84 -178 -265 -377z" /> +<glyph unicode="‚" horiz-adv-x="528" d="M59 -223q98 141 123 239q10 41 11 84l-5 50q57 35 97 34q27 0 59.5 -23.5t52.5 -45.5l19 -25q-84 -178 -264 -377z" /> +<glyph unicode="“" horiz-adv-x="913" d="M96 977q84 178 264 377l93 -64q-98 -141 -123 -239q-10 -41 -11 -84l5 -49q-57 -35 -97 -35q-27 0 -59.5 23.5t-52.5 47.5zM459 977q84 178 264 377l92 -64q-98 -141 -123 -239q-10 -41 -10 -84l4 -49q-57 -35 -96 -35q-27 0 -59.5 23.5t-51.5 47.5z" /> +<glyph unicode="”" horiz-adv-x="913" d="M96 915q98 141 123 240q10 41 10 84l-4 49q57 35 97 35q27 0 59.5 -23.5t52.5 -46.5l19 -24q-84 -178 -265 -377zM459 915q98 141 123 240q10 41 10 84l-4 49q57 35 96 35q27 0 59.5 -23.5t51.5 -46.5l20 -24q-84 -178 -264 -377z" /> +<glyph unicode="„" horiz-adv-x="888" d="M59 -223q98 141 123 239q10 41 11 84l-5 50q57 35 97 34q27 0 59.5 -23.5t52.5 -45.5l19 -25q-84 -178 -264 -377zM422 -223q98 141 123 239q10 41 10 84l-4 50q57 35 96 34q27 0 59.5 -23.5t51.5 -45.5l20 -25q-84 -178 -264 -377z" /> +<glyph unicode="•" horiz-adv-x="868" d="M80 645.5q0 145.5 103.5 248.5t249 103t249.5 -103t104 -248.5t-104 -249t-249.5 -103.5t-249 103.5t-103.5 249z" /> +<glyph unicode="…" horiz-adv-x="1236" d="M143 84q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-91 -38q-49 0 -84 33t-35 82zM496 84q0 51 39.5 88t91.5 37q49 0 83.5 -33t34.5 -82t-39.5 -87t-91.5 -38q-49 0 -83.5 33t-34.5 82zM844 84q0 51 40 88t91 37q49 0 84 -33t35 -82t-40 -87t-91 -38q-49 0 -84 33 t-35 82z" /> +<glyph unicode="‹" horiz-adv-x="614" d="M68 512l378 385l97 -78l-305 -307l309 -307l-96 -78z" /> +<glyph unicode="›" horiz-adv-x="614" d="M68 205l96 -78l383 385l-379 385l-96 -78l305 -307z" /> +<glyph unicode="™" horiz-adv-x="1642" d="M137 1331v90h498v-90h-199v-723h-100v723h-199zM731 608v813h137l240 -686l238 686h137v-813h-103v553l6 111l-233 -664h-90l-234 666q6 -68 7 -111v-555h-105z" /> +<glyph unicode="" horiz-adv-x="1004" d="M0 1005h1005v-1005h-1005v1005z" /> +<glyph unicode="fi" horiz-adv-x="1069" d="M47 903v101h135v112q0 168 115 249t291 81q43 0 96 -6t115.5 -21.5t104.5 -48.5t42 -78q0 -49 -35.5 -80.5t-87.5 -31.5q-43 0 -64.5 18.5t-28.5 43t-19.5 50t-51 44t-110.5 18.5q-106 0 -158.5 -78t-52.5 -191v-81h199v-119h-199v-885h-156v885zM760 0v1004h151v-1004 h-151z" /> +<glyph unicode="fl" horiz-adv-x="1069" d="M47 903v101h135v112q0 152 100.5 238t254 86t225.5 -78v57h151v-1016q0 -197 62 -403h-162q-51 137 -51 403v828q-72 111 -201 110q-63 0 -107 -20.5t-66.5 -47t-34 -78.5t-13.5 -88t-2 -103h199v-119h-199v-885h-156v885z" /> +<glyph unicode="ffi" horiz-adv-x="1658" d="M51 903v101h135v159q0 242 351 285l28 -121q-8 0 -26.5 -2t-54 -14.5t-66.5 -30.5t-53.5 -56t-22.5 -87v-133h199v-119h-199v-885h-156v885zM637 903v101h135v159q0 242 350 285l29 -121q-8 0 -26.5 -2t-54.5 -14.5t-66.5 -30.5t-53 -56t-22.5 -87v-133h198v-119h-198 v-885h-156v885zM1294 1284q0 47 35 78t82 31q45 0 79 -30t34 -75q0 -47 -35 -77.5t-82 -30.5q-45 0 -79 29.5t-34 74.5zM1339 0v1004h152v-1004h-152z" /> +<glyph unicode="ffl" horiz-adv-x="1654" d="M51 903v101h135v159q0 242 351 285l28 -121q-8 0 -26.5 -2t-54 -14.5t-66.5 -30.5t-53.5 -56t-22.5 -87v-133h199v-119h-199v-885h-156v885zM637 903v101h135v159q0 242 350 285l29 -121q-8 0 -26.5 -2t-54.5 -14.5t-66.5 -30.5t-53 -56t-22.5 -87v-133h198v-119h-198 v-885h-156v885zM1327 403v1018h152v-1018q0 -203 61 -403h-162q-51 139 -51 403z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-roman-webfont.ttf b/public/stylesheets/fonts/delicious-roman-webfont.ttf Binary files differnew file mode 100755 index 000000000..cc27c5c1d --- /dev/null +++ b/public/stylesheets/fonts/delicious-roman-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-roman-webfont.woff b/public/stylesheets/fonts/delicious-roman-webfont.woff Binary files differnew file mode 100755 index 000000000..9acbdd4a0 --- /dev/null +++ b/public/stylesheets/fonts/delicious-roman-webfont.woff diff --git a/public/stylesheets/fonts/delicious-smallcaps-webfont.eot b/public/stylesheets/fonts/delicious-smallcaps-webfont.eot Binary files differnew file mode 100755 index 000000000..358efc11f --- /dev/null +++ b/public/stylesheets/fonts/delicious-smallcaps-webfont.eot diff --git a/public/stylesheets/fonts/delicious-smallcaps-webfont.svg b/public/stylesheets/fonts/delicious-smallcaps-webfont.svg new file mode 100755 index 000000000..d1235b7f6 --- /dev/null +++ b/public/stylesheets/fonts/delicious-smallcaps-webfont.svg @@ -0,0 +1,222 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : 35 I1995 Jos Buivenga +</metadata> +<defs> +<font id="DeliciousSmallCapsRegular" horiz-adv-x="450" > +<font-face units-per-em="1000" ascent="800" descent="-200" /> +<missing-glyph horiz-adv-x="300" /> +<glyph unicode=" " horiz-adv-x="300" /> +<glyph unicode="	" horiz-adv-x="300" /> +<glyph unicode=" " horiz-adv-x="300" /> +<glyph unicode="!" horiz-adv-x="264" d="M207 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM195 699q-17 -99 -17 -193v-344h-60q-14 258 -14 368q0 88 15 159z" /> +<glyph unicode=""" horiz-adv-x="346" d="M126 708l14 -63l-22 -157h-33l-21 157l13 63h49zM264 708l14 -63l-22 -157h-33l-21 157l13 63h49z" /> +<glyph unicode="#" horiz-adv-x="556" d="M325 279l19 152h-114l-19 -152h114zM375 675h60l-22 -178h85l-6 -66h-88l-19 -152h75l-6 -66h-77l-26 -204h-60l26 204h-115l-23 -185h-60l23 185h-81l10 66h80l19 152h-71l10 66h69l25 197h60l-25 -197h115z" /> +<glyph unicode="$" horiz-adv-x="445" d="M263 256v-201q33 11 51 38.5t18 63.5q0 54 -69 99zM218 379v201q-37 -6 -57.5 -31t-20.5 -62q0 -27 12.5 -48t25 -31t40.5 -29zM409 156q0 -66 -40.5 -111.5t-105.5 -56.5v-61h-45v58q-80 2 -151 43l23 60q75 -37 128 -40v236l-22.5 14.5l-24 15.5l-21 14.5t-21.5 16 l-18 16.5t-17 19.5t-12.5 20t-11.5 24t-5.5 26t-2.5 29.5q0 72 42 115.5t114 48.5v55h45v-56q72 -9 122 -48l-27 -54q-40 29 -95 38v-228q77 -49 101 -74q45 -48 45 -121z" /> +<glyph unicode="%" horiz-adv-x="699" d="M253 512q0 31 -21.5 52.5t-52.5 21.5t-52.5 -21.5t-21.5 -52.5t21.5 -52.5t52.5 -21.5t52.5 21.5t21.5 52.5zM482 630l-222 -630h-66l211 584q-17 -9 -43 -13.5t-44 -4.5l-17 -1q11 -21 11 -53q0 -55 -39 -94t-94 -39t-94 39t-39 94t39 94t94 39q39 0 71 -20 q40 -11 70 -11q28 0 56 7.5t42 14.5l13 8zM651 118q0 -55 -39 -94t-94 -39t-94 39t-39 94t39 94t94 39t94 -39t39 -94zM592 118q0 31 -21.5 52.5t-52.5 21.5t-52.5 -21.5t-21.5 -52.5t21.5 -52.5t52.5 -21.5t52.5 21.5t21.5 52.5z" /> +<glyph unicode="&" horiz-adv-x="630" d="M413 490v47q0 46 -25 76t-70 30q-40 0 -71 -22.5t-31 -61.5q0 -37 32 -53t73 -16h92zM599 13q-56 -28 -102 -28q-47 0 -67.5 31.5t-20.5 80.5v335h-97q-99 0 -141.5 -47.5t-42.5 -147.5q0 -94 31 -153q20 -37 38 -37q11 0 27 16.5t38.5 33t50.5 16.5q25 0 49 -11l-15 -54 q-20 6 -31 6q-23 0 -55 -34.5t-65 -34.5q-41 0 -72.5 25.5t-48 65.5t-25 80.5t-8.5 77.5q0 85 44 158.5t123 76.5q-69 29 -69 90q0 60 52.5 97.5t115.5 37.5q69 0 122 -38t53 -104v-62h99v-58h-97v-331q0 -55 39 -55q26 0 58 14z" /> +<glyph unicode="'" horiz-adv-x="208" d="M126 708l14 -63l-22 -157h-33l-21 157l13 63h49z" /> +<glyph unicode="(" horiz-adv-x="336" d="M307 -84l-7 -62q-128 97 -190.5 210.5t-62.5 267.5q0 133 68.5 253t182.5 191l8 -57q-93 -61 -146.5 -167.5t-53.5 -221.5q0 -253 201 -414z" /> +<glyph unicode=")" horiz-adv-x="339" d="M40 776q114 -71 182.5 -191t68.5 -253q0 -154 -62.5 -267.5t-190.5 -210.5l-7 62q202 161 202 414q0 115 -54 221.5t-147 167.5z" /> +<glyph unicode="*" horiz-adv-x="424" d="M265 674l-34 -113l149 52v-62l-131 -42l106 -163h-70l-77 123l-76 -123h-65l98 163l-130 42v64l150 -54l-36 113h116z" /> +<glyph unicode="+" horiz-adv-x="471" d="M426 220h-162v-173h-58v173h-161v60h161v173h58v-173h162v-60z" /> +<glyph unicode="," horiz-adv-x="258" d="M139 87q13 0 29 -11.5t26 -23.5l9 -11q-41 -87 -129 -184l-45 31q48 69 60 117q5 20 5 41l-2 24q28 17 47 17z" /> +<glyph unicode="-" horiz-adv-x="302" d="M245 285v-60h-191v60h191z" /> +<glyph unicode="." horiz-adv-x="258" d="M194 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40z" /> +<glyph unicode="/" horiz-adv-x="356" d="M339 757l-259 -905h-63l259 905h63z" /> +<glyph unicode="0" d="M225 -10q-82 0 -139 94.5t-57 230.5t57 230.5t139 94.5t139 -94.5t57 -230.5t-57 -230.5t-139 -94.5zM225 571q-50 0 -88.5 -73.5t-38.5 -182.5t38.5 -182.5t88.5 -73.5t88.5 73.5t38.5 182.5t-38.5 182.5t-88.5 73.5z" /> +<glyph unicode="1" d="M224 0v553h-145v54q25 0 63 5.5t64 11.5l25 6h70v-630h-77z" /> +<glyph unicode="2" d="M227 645q82 0 129 -42q36 -33 44 -86t-7 -103.5t-45 -87.5l-145 -176q-14 -17 -26.5 -37.5t-17.5 -32.5l-5 -11h244v-69h-330l-6 62q17 48 69 111l100 120q149 178 61 261q-29 27 -70 27q-72 0 -146 -57l-14 58q7 7 20.5 17.5t56.5 28t88 17.5z" /> +<glyph unicode="3" d="M242 12q-48 -19 -104 -24q-30 -3 -61 -3h-5v57h14.5t33.5 3t49 9t51 19t48.5 31t33.5 47.5t14 66.5q0 92 -139 92q-35 0 -85 -6v60l44 6q52 28 125 84q43 32 43 73q0 13 -4 21q-18 35 -58 35q-29 0 -73.5 -19.5t-72.5 -39.5l-18 55q33 25 83 45.5t97 20.5q92 0 117 -79 q6 -18 6 -37q0 -69 -80 -123l-54 -34q41 0 81 -23q65 -37 65 -115q0 -165 -151 -222z" /> +<glyph unicode="4" d="M356 140v-140h-72v140h-249l-4 65q65 183 244 425h83v-424h64v-66h-66zM284 533q-114 -166 -177 -327h177v327z" /> +<glyph unicode="5" d="M250 13q-50 -22 -111 -26q-22 -2 -67 -2h-5v60q82 -6 152 28q92 44 92 147q0 49 -32 71t-80 22q-41 0 -115 -20l28 337h248v-62h-178l-16 -198q21 5 41 5h26q48 -2 87 -24q29 -15 49 -46t20 -69q0 -86 -39 -141t-100 -82z" /> +<glyph unicode="6" d="M337 221q0 95 -90 111q-15 3 -29 3q-34 0 -90 -25q-8 -38 -8 -74q0 -78 30.5 -134.5t82.5 -56.5q72 0 95 86q9 36 9 90zM330 643l27 -49l-62.5 -40t-44 -33.5t-42.5 -42.5q-47 -58 -67 -117q66 23 105 23h15q22 -1 46 -10t48.5 -27t40 -51.5t15.5 -77.5 q0 -102 -48 -167.5t-136 -65.5q-89 0 -134.5 78.5t-45.5 193.5q0 152 113 267q69 70 170 119z" /> +<glyph unicode="7" d="M387 630v-64q0 -135 -69 -318q-61 -165 -148 -275l-66 28q90 118 149 272q62 164 62 293h-256v64h328z" /> +<glyph unicode="8" d="M409 138q-10 -71 -62.5 -112t-128.5 -41q-74 0 -125.5 51t-51.5 124q0 59 40 116q25 36 78 61q-44 27 -68 55t-30 69q-2 18 -2 26q0 64 43.5 110.5t120.5 47.5h6q83 1 120.5 -41.5t36.5 -109.5v-7q0 -38 -28.5 -78t-82.5 -65q5 -3 25 -13q56 -29 84 -66t28 -91 q0 -16 -3 -36zM314 509q-6 79 -93 79q-38 0 -63.5 -29.5t-25.5 -75.5q0 -39 20.5 -64.5t61.5 -46.5l37 19q63 32 63 104v14zM272 273q-10 5 -24.5 13.5l-25 14.5t-12.5 7q-93 -49 -93 -137q0 -49 30.5 -87.5t79.5 -38.5q48 0 78 38.5t30 86.5q0 69 -63 103z" /> +<glyph unicode="9" d="M334 396q0 77 -30.5 133t-82.5 56q-104 0 -104 -176q0 -50 27 -79t63 -33q6 -1 18 -1q25 0 61 9q23 8 40 17q8 38 8 74zM294 106q-86 -88 -204 -135l-21 58q130 68 176 124q44 53 66 114l-6 -2q-3 -1 -16.5 -6t-22.5 -7q-24 -7 -60 -7q-24 0 -50.5 9t-52.5 27t-43 52.5 t-17 78.5q0 102 47 167.5t135 65.5q64 0 106 -42t61 -113q16 -57 16 -126q0 -142 -114 -258z" /> +<glyph unicode=":" horiz-adv-x="258" d="M194 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM194 353q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40z" /> +<glyph unicode=";" horiz-adv-x="258" d="M136 87q13 0 29 -11.5t25 -23.5l10 -11q-41 -87 -129 -184l-45 31q48 69 60 117q5 20 5 41l-2 24q28 17 47 17zM194 352q0 -25 -19.5 -43.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43.5t44.5 18.5q24 0 41 -16t17 -40z" /> +<glyph unicode="<" horiz-adv-x="300" d="M267 100l-47 -38l-187 188l185 188l47 -38l-149 -150z" /> +<glyph unicode="=" horiz-adv-x="480" d="M426 203v-60h-382v60h382zM426 352v-60h-382v60h382z" /> +<glyph unicode=">" horiz-adv-x="300" d="M33 100l47 -38l187 188l-185 188l-47 -38l149 -150z" /> +<glyph unicode="?" horiz-adv-x="358" d="M194 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM164 162h-61v51q0 42 1 62t10 50.5t27 54.5l82 110q34 47 34 79q0 28 -15 45t-43 17q-43 0 -84 -9v57q47 13 90 13q59 0 93 -31t34 -90q0 -48 -49 -112l-80 -106 q-22 -29 -30.5 -59t-8.5 -81v-51z" /> +<glyph unicode="@" horiz-adv-x="792" d="M497 457q-37 48 -100 48q-38 0 -64.5 -40.5t-36 -85t-9.5 -81.5q0 -29 10.5 -52t36.5 -23q9 0 21 3t20 6t23 11t20 11l21 12.5t17 10.5zM528 146q-35 0 -58 17t-23 51q0 6 2 16q-58 -50 -85 -62q-22 -10 -44 -10q-48 0 -74.5 39.5t-26.5 89.5q0 46 9 90.5t28.5 87 t56.5 69t86 26.5q71 0 110 -57l10 41h65l-69 -289q-6 -22 -6 -33q0 -27 27 -27q61 0 106.5 74t45.5 139q0 123 -79.5 192.5t-204.5 69.5q-124 0 -209.5 -95.5t-85.5 -221.5q0 -132 87.5 -223.5t219.5 -91.5q74 0 142.5 32t112.5 89l47 -25q-46 -68 -132 -110t-170 -42 q-156 0 -264.5 108.5t-108.5 264.5q0 146 109 258.5t254 112.5q144 0 239 -87.5t95 -230.5q0 -55 -27.5 -115t-78 -103.5t-106.5 -43.5z" /> +<glyph unicode="A" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86z" /> +<glyph unicode="B" horiz-adv-x="502" d="M382 184q0 36 -11.5 60t-34 35.5t-47 15.5t-59.5 4h-70v-233q45 -13 75 -13q66 0 106.5 33t40.5 98zM348 472q0 96 -114 96h-74v-204h74q51 0 82.5 29t31.5 79zM235 630q60 0 99 -15q93 -37 93 -144q0 -42 -28 -82.5t-67 -51.5q61 -4 95.5 -47.5t34.5 -106.5 q0 -95 -64 -146.5t-161 -51.5q-61 0 -157 25v620h155z" /> +<glyph unicode="C" horiz-adv-x="497" d="M472 41q-33 -26 -81 -41t-93 -15q-66 0 -115 29.5t-76 78.5t-39.5 104.5t-12.5 117.5q0 58 14.5 114t42.5 105.5t77 80t111 30.5q95 0 162 -43l-29 -52q-58 32 -133 32q-42 0 -75.5 -28.5t-52 -72t-28 -88t-9.5 -82.5q0 -44 8 -86t25.5 -83.5t52 -66.5t81.5 -25 q81 0 136 41z" /> +<glyph unicode="D" horiz-adv-x="547" d="M258 566h-99v-502h93q48 0 81 23t49 62.5t22.5 78.5t6.5 84q0 254 -153 254zM262 630q65 0 111.5 -27.5t71.5 -74.5t36 -100t11 -114t-13 -114.5t-40 -99.5t-75 -73t-112 -27h-172v630h182z" /> +<glyph unicode="E" horiz-adv-x="454" d="M404 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v630h324z" /> +<glyph unicode="F" horiz-adv-x="412" d="M376 630v-66h-216v-201h171v-69h-171v-294h-80v630h296z" /> +<glyph unicode="G" horiz-adv-x="524" d="M464 11q-63 -26 -164 -26q-66 0 -115.5 29t-76.5 78t-40 105t-13 118q0 58 14.5 114t42.5 105.5t77 80t111 30.5q47 0 82 -10t81 -33l-31 -53q-55 34 -132 34q-54 0 -93 -47t-55.5 -107t-16.5 -118q0 -44 7.5 -86t25 -83.5t52 -67t82.5 -25.5q53 0 88 14v206h74v-258z " /> +<glyph unicode="H" horiz-adv-x="548" d="M468 0h-80v295h-228v-295h-80v630h80v-267h228v267h80v-630z" /> +<glyph unicode="I" horiz-adv-x="238" d="M158 630v-630h-78v630h78z" /> +<glyph unicode="J" horiz-adv-x="245" d="M165 -28q0 -100 -142 -135l-17 54q81 27 81 87v652h78v-658z" /> +<glyph unicode="K" horiz-adv-x="485" d="M477 0h-80l-237 263v-263h-80v630h80v-288l220 288h85l-242 -324l254 -282v-24z" /> +<glyph unicode="L" horiz-adv-x="382" d="M156 630v-564h217v-66h-293v630h76z" /> +<glyph unicode="M" horiz-adv-x="742" d="M662 630v-630h-80v428l5 87l-181 -515h-70l-181 516q5 -52 5 -86v-430h-80v630h106l185 -532l185 532h106z" /> +<glyph unicode="N" horiz-adv-x="554" d="M474 0h-82l-237 514q5 -47 5 -86v-428h-80v630h106l213 -482q-5 48 -5 88v394h80v-630z" /> +<glyph unicode="O" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32z" /> +<glyph unicode="P" horiz-adv-x="489" d="M216 566h-56v-255q48 -21 81 -21q59 0 94 43.5t35 103.5q0 65 -43.5 97t-110.5 32zM216 630q103 0 168.5 -48t65.5 -146q0 -93 -55.5 -152t-148.5 -59q-49 0 -86 20v-245h-80v630h136z" /> +<glyph unicode="Q" horiz-adv-x="548" d="M335 -5q63 -67 128 -67q20 0 36 4l-21 -76q-16 -2 -24 -2q-25 0 -47 6.5t-43 22t-33 25.5t-34 32.5l-28 28.5l-18 17q-52 6 -92 40.5t-61.5 84t-32 101.5t-10.5 103q0 54 11.5 108.5t36 106t69 83.5t102.5 32t102.5 -32t69 -83.5t36 -106t11.5 -108.5q0 -102 -39 -196.5 t-119 -123.5zM274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29z" /> +<glyph unicode="R" horiz-adv-x="505" d="M370 437q0 65 -43.5 97t-110.5 32h-56v-255q46 -21 74 -21q63 0 99.5 41.5t36.5 105.5zM480 0h-78l-207 230q-19 6 -35 15v-245h-80v630h136q103 0 168.5 -48t65.5 -146q0 -77 -41 -134t-115 -72l186 -206v-24z" /> +<glyph unicode="S" horiz-adv-x="434" d="M220 645q43 0 84.5 -20t63.5 -54l-45 -38q-38 48 -103 48q-42 0 -69.5 -24t-27.5 -65q0 -40 28 -71.5t67.5 -53.5t79 -47t67.5 -66.5t28 -97.5q0 -77 -54 -124t-132 -47q-37 0 -78.5 16.5t-71.5 42.5l34 57q63 -52 117 -52q47 0 77.5 30.5t30.5 77.5q0 35 -28 64.5 t-67.5 52.5l-79.5 48.5t-68 65.5t-28 92q0 79 47.5 122t127.5 43z" /> +<glyph unicode="T" horiz-adv-x="405" d="M395 560h-154v-560h-78v560h-153v70h385v-70z" /> +<glyph unicode="U" horiz-adv-x="558" d="M479 241q0 -110 -48 -183t-152 -73t-152 74t-48 186v385h80v-386q0 -193 120 -193t120 194v385h80v-389z" /> +<glyph unicode="V" horiz-adv-x="510" d="M505 630l-206 -630h-88l-205 630h87l164 -534l165 534h83z" /> +<glyph unicode="W" horiz-adv-x="708" d="M700 630l-148 -630h-85l-112 509l-112 -509h-85l-148 630h85l97 -446q8 -35 8 -66l115 512h80l115 -512q0 31 8 66l101 446h81z" /> +<glyph unicode="X" horiz-adv-x="492" d="M480 0h-92l-148 250l-143 -250h-87l187 323l-182 307h87l139 -231l134 231h82l-173 -303z" /> +<glyph unicode="Y" horiz-adv-x="471" d="M459 630l-184 -399v-231h-79v231l-183 399h85l140 -314l141 314h80z" /> +<glyph unicode="Z" horiz-adv-x="458" d="M401 630v-69q-147 -242 -277 -491h304v-70h-392v68q138 273 272 493h-250v69h343z" /> +<glyph unicode="[" horiz-adv-x="248" d="M183 732v-58h-93v-772h93v-58h-155v888h155z" /> +<glyph unicode="\" horiz-adv-x="335" d="M333 -148h-62l-259 905h62z" /> +<glyph unicode="]" horiz-adv-x="249" d="M221 732v-888h-155v58h93v772h-93v58h155z" /> +<glyph unicode="^" horiz-adv-x="624" d="M551 320h-70l-170 307l-170 -307h-70l212 388h56q198 -364 212 -388z" /> +<glyph unicode="_" d="M450 -75v-60h-450v60h450z" /> +<glyph unicode="`" horiz-adv-x="338" d="M261 606l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="a" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117z" /> +<glyph unicode="b" horiz-adv-x="479" d="M227 -16q-49 0 -137 22v508h135q53 0 85 -12q81 -31 81 -120q0 -16 -7.5 -38t-18.5 -35q-15 -17 -39 -32q94 -26 94 -127q0 -76 -54 -121t-139 -45zM282 442q-22 12 -58 12h-55v-152l54 -1q39 -1 64.5 20.5t25.5 61.5q0 44 -31 59zM308 223q-23 16 -87 16h-52v-180 q34 -9 56 -9q53 0 84.5 25.5t31.5 74.5q0 51 -33 73z" /> +<glyph unicode="c" horiz-adv-x="465" d="M273 -16q-56 0 -97.5 24.5t-65 65.5t-34.5 87t-11 96q0 113 53 188q58 85 157 85q82 0 142 -38l-29 -52q-57 29 -113 29q-28 0 -57 -21.5t-46 -55.5q-28 -56 -28 -138q0 -84 24 -131q38 -76 108 -76q59 0 114 38l35 -51q-68 -50 -152 -50z" /> +<glyph unicode="d" horiz-adv-x="509" d="M239 0h-149v514h157q95 0 146 -67t51 -191q0 -126 -57 -191t-148 -65zM244 452h-76v-390h71q126 0 126 193q0 197 -121 197z" /> +<glyph unicode="e" horiz-adv-x="437" d="M90 0v514h282v-64h-203v-149h156v-66h-156v-169h212v-66h-291z" /> +<glyph unicode="f" horiz-adv-x="394" d="M169 450v-149h143v-66h-143v-235h-79v514h260v-64h-181z" /> +<glyph unicode="g" horiz-adv-x="498" d="M386 440q-46 29 -111 29q-28 0 -56.5 -21t-46.5 -56q-28 -56 -28 -138q0 -84 24 -131q38 -76 108 -76q34 0 67 10v169h74v-218q-60 -23 -142 -23q-45 0 -81.5 16t-60 43t-39.5 62.5t-22.5 73t-6.5 77.5q0 113 53 188q59 85 157 85q42 0 71 -8.5t72 -29.5z" /> +<glyph unicode="h" horiz-adv-x="514" d="M346 0v236h-177v-236h-79v514h79v-213h177v213h79v-514h-79z" /> +<glyph unicode="i" horiz-adv-x="261" d="M90 0v514h82v-514h-82z" /> +<glyph unicode="j" horiz-adv-x="255" d="M136 -87q-31 -28 -102 -47l-18 54q41 13 61 36q8 9 8 30v528h80v-533q0 -44 -29 -68z" /> +<glyph unicode="k" horiz-adv-x="457" d="M357 0l-188 201v-201h-79v514h79v-218l173 218h86l-205 -264l209 -219v-31h-75z" /> +<glyph unicode="l" horiz-adv-x="367" d="M90 0v514h76v-450h181v-64h-257z" /> +<glyph unicode="m" horiz-adv-x="673" d="M505 0v369l-127 -369h-66l-144 375v-26v-349h-78v514h98l134 -346q0 -1 1.5 -3.5t3 -7.5t4 -12l6 -17t6.5 -21l18 60l124 347h98v-514h-78z" /> +<glyph unicode="n" horiz-adv-x="527" d="M356 0l-185 384q0 -11 0.5 -19.5t1 -12t0.5 -5.5v-347h-79v515h98l164 -357q-1 26 -1 36v321h79v-515h-78z" /> +<glyph unicode="o" horiz-adv-x="505" d="M253 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM253 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5z" /> +<glyph unicode="p" horiz-adv-x="455" d="M354 221q-47 -41 -120 -41q-31 0 -65 17v-197h-79v514h119q103 0 152 -45.5t49 -114.5q0 -85 -56 -133zM209 452h-40v-194q31 -15 55 -15q50 0 78.5 31.5t28.5 80.5q0 44 -31 70.5t-91 26.5z" /> +<glyph unicode="q" horiz-adv-x="505" d="M427 -118q-12 -2 -25 -2q-21 0 -40 6t-38 19t-30.5 22.5t-32 30t-28.5 27.5q-57 7 -96.5 52t-55.5 102t-16 120q0 65 18.5 124.5t63 103t106.5 43.5q63 0 107.5 -44t62.5 -103.5t18 -126.5q0 -83 -31.5 -156.5t-95.5 -103.5q54 -45 96 -45q12 0 38 5zM253 466 q-31 0 -54 -20t-34.5 -53t-16.5 -68t-5 -74q0 -37 5 -70t16.5 -64.5t34.5 -50t54 -18.5q42 0 67.5 34.5t33.5 77.5t8 96q0 38 -5 72.5t-17 66.5t-34 51.5t-53 19.5z" /> +<glyph unicode="r" horiz-adv-x="481" d="M361 0l-173 184l-19 9v-193h-79v514h119q103 0 152 -46t49 -114q0 -60 -32 -105.5t-93 -62.5l150 -159v-27h-74zM209 452h-40v-194q1 -1 8.5 -4.5t21 -7t25.5 -3.5q50 0 78.5 31.5t28.5 80.5q0 44 -31 70.5t-91 26.5z" /> +<glyph unicode="s" horiz-adv-x="408" d="M196 -16q-60 0 -133 52l35 55q18 -13 37 -24q38 -20 62 -20q36 0 60 22t24 59q0 43 -52 76l-95 57q-79 49 -79 132q0 65 41.5 101t110.5 36q35 0 66 -14.5t44 -27t21 -24.5l-47 -38q-38 42 -84 42q-33 0 -54 -17.5t-21 -48.5q0 -51 56 -84l86 -53q83 -49 83 -138 q0 -64 -46.5 -103.5t-114.5 -39.5z" /> +<glyph unicode="t" horiz-adv-x="388" d="M232 447v-447h-77v447h-127v67h332v-67h-128z" /> +<glyph unicode="u" horiz-adv-x="522" d="M261 -16q-88 0 -130 61.5t-42 152.5v316h78v-316q0 -150 94 -150t94 150v316h78v-319q0 -92 -42 -151.5t-130 -59.5z" /> +<glyph unicode="v" horiz-adv-x="466" d="M274 0h-82l-173 514h84l132 -412l132 412h81z" /> +<glyph unicode="w" horiz-adv-x="627" d="M482 0h-77q-73 307 -89 383l-6 -28l-83 -355h-80l-125 514h83l82 -369l91 369h76l90 -369l83 369h80z" /> +<glyph unicode="x" horiz-adv-x="452" d="M341 0l-119 194l-115 -194h-86l158 264l-154 250h86l112 -178l107 178h82l-147 -247l166 -267h-90z" /> +<glyph unicode="y" horiz-adv-x="416" d="M247 189v-189h-78v189l-155 325h84l112 -242l113 242h80z" /> +<glyph unicode="z" horiz-adv-x="429" d="M49 0v61q117 224 211 370l11 17h-204v66h298v-62q-116 -182 -211 -355l-16 -30h249v-67h-338z" /> +<glyph unicode="{" horiz-adv-x="333" d="M290 -108l-11 -54h-57q-20 0 -35 4t-31.5 16t-25 39.5t-8.5 69.5v176q0 50 -25.5 85.5t-56.5 35.5v47q31 0 56.5 35t25.5 85v176q0 78 27 104t71 26h59l11 -54h-59q-28 0 -38 -17.5t-10 -72.5v-176q0 -40 -18.5 -73t-36.5 -46l-19 -13q3 -2 8 -5t18 -14.5t22.5 -25 t17.5 -36t8 -47.5v-176q0 -55 10.5 -72t43.5 -17h53z" /> +<glyph unicode="|" horiz-adv-x="222" d="M141 756v-774h-60v774h60z" /> +<glyph unicode="}" horiz-adv-x="333" d="M290 264q-31 0 -56.5 -35.5t-25.5 -85.5v-176q0 -42 -8.5 -69.5t-25 -39.5t-31.5 -16t-35 -4h-57l-11 54h53q33 0 43.5 17t10.5 72v176q0 25 7.5 47.5t18.5 36.5t22 24.5t19 14.5l7 5q-3 2 -8 5t-18 15.5t-22.5 26.5t-17.5 37t-8 48v176q0 55 -10 72.5t-38 17.5h-59 l11 54h59q20 0 35 -4t30.5 -16.5t24 -40t8.5 -69.5v-176q0 -50 25.5 -85t56.5 -35v-47z" /> +<glyph unicode="~" horiz-adv-x="666" d="M146 308q12 26 36 44t51 18q38 0 104 -34t102 -34q55 0 81 58l-1 -72q-12 -23 -36.5 -37.5t-50.5 -14.5q-37 0 -104 34t-102 34q-52 0 -80 -58v62z" /> +<glyph unicode="¡" horiz-adv-x="264" d="M58 442q0 25 19.5 43.5t44.5 18.5q24 0 41 -16.5t17 -40.5t-19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40zM70 -210q17 97 17 193v344h60q15 -276 15 -368q0 -83 -16 -159z" /> +<glyph unicode="¢" horiz-adv-x="412" d="M219 50v388q-49 -16 -71.5 -72t-22.5 -116q0 -61 23 -121.5t71 -78.5zM264 571v-68q67 -7 109 -48l-34 -45q-31 25 -75 32v-396q40 5 98 43l25 -47q-48 -45 -123 -56v-60h-45v60q-65 11 -110 64q-60 69 -60 190q0 116 49 182q47 65 121 80v69h45z" /> +<glyph unicode="£" horiz-adv-x="442" d="M398 37q-20 -22 -50 -37t-58 -15q-13 0 -35 3.5t-37 7.5l-15 4h-150q36 161 36 251v129l-59 6l20 50h39v132q0 63 47.5 93.5t113.5 30.5q71 0 104 -28l-17 -46q-31 18 -81 18q-91 0 -91 -83v-117h134v-60h-134v-127q0 -88 -23 -188h71q58 -19 88 -19q23 0 47 13t39 32z " /> +<glyph unicode="¤" horiz-adv-x="542" d="M550 620l-28 -60q-55 67 -147 67q-161 0 -185 -195h274l-30 -63h-252q-2 -26 -2 -33q0 -8 2 -30h223l-30 -63h-185q11 -93 58 -142.5t117 -49.5q42 0 83.5 21t71.5 58v-80q-62 -62 -160 -62q-95 0 -162 69t-78 186h-110l30 63h71q-1 13 -1 31q0 19 1 32h-101l30 63h80 q12 112 81.5 185t178.5 73q100 0 170 -70z" /> +<glyph unicode="¥" horiz-adv-x="476" d="M467 317h-148l-41 -89v-5h187v-60h-187v-163h-80v163h-183v60h183v6l-41 88h-140v60h112l-117 253h85l141 -314l141 314h84q-116 -253 -117 -253h121v-60z" /> +<glyph unicode="§" horiz-adv-x="420" d="M301 262q0 32 -25.5 51.5t-58.5 19.5q-46 0 -73.5 -23t-27.5 -68q0 -28 25.5 -45.5t54.5 -17.5q45 0 75 20t30 63zM211 647q77 0 144 -38l-27 -52q-68 32 -119 32q-39 0 -64 -20.5t-25 -58.5q0 -25 26 -45t63 -36.5t73.5 -35.5t62.5 -51.5t26 -74.5q0 -53 -29 -87.5 t-81 -45.5q31 -16 50.5 -29t37.5 -38t18 -54q0 -75 -48 -115t-124 -40q-91 0 -174 49l28 55q72 -44 150 -44q42 0 69 20.5t27 61.5q0 30 -26 53t-63.5 39.5l-75 34.5t-63.5 46.5t-26 65.5q0 61 36 95t98 43q-72 34 -94 54q-36 32 -36 76q0 68 48 104t118 36z" /> +<glyph unicode="¨" horiz-adv-x="384" d="M157 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM311 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="©" horiz-adv-x="879" d="M763 245q0 -133 -94.5 -227.5t-227.5 -94.5t-227 94.5t-94 227.5t94 227t227 94q134 0 228 -94t94 -227zM714 245q0 113 -80 193t-193 80t-192.5 -80t-79.5 -193q0 -115 80 -194t195 -79q112 0 191 80t79 193zM555 114q-20 -19 -51 -33.5t-56 -14.5q-74 0 -116 51 t-42 127q0 75 40 128t113 53q60 0 102 -39l-27 -34q-30 25 -75 25q-51 0 -73.5 -37.5t-22.5 -92.5q0 -57 24.5 -95.5t78.5 -38.5q37 0 84 34z" /> +<glyph unicode="ª" horiz-adv-x="378" d="M276 374l-41 123h-112l-40 -123h-63l128 391h62l129 -391h-63zM179 693l-44 -147h89z" /> +<glyph unicode="«" horiz-adv-x="500" d="M267 100l-47 -38l-187 188l185 188l47 -38l-149 -150zM445 100l-47 -38l-187 188l185 188l47 -38l-149 -150z" /> +<glyph unicode="¬" horiz-adv-x="535" d="M449 176l-59 -11v206h-344v60h403v-255z" /> +<glyph unicode="®" horiz-adv-x="879" d="M760 244q0 -134 -94 -228t-227 -94t-227 94.5t-94 227.5q0 134 93.5 227.5t227.5 93.5t227.5 -93.5t93.5 -227.5zM711 244q0 113 -80 193t-192 80q-113 0 -192.5 -80t-79.5 -193q0 -116 79.5 -194.5t195.5 -78.5q113 0 191 80t78 193zM582 71h-53l-120 121q-11 3 -22 9 v-130h-51v355h86q61 0 103.5 -29t42.5 -87q0 -41 -28 -77.5t-68 -40.5l110 -106v-15zM515 312q0 38 -26.5 55.5t-66.5 17.5h-35v-142q28 -13 46 -13q37 0 59.5 22t22.5 60z" /> +<glyph unicode="¯" horiz-adv-x="335" d="M304 632v-59h-274v59h274z" /> +<glyph unicode="°" horiz-adv-x="352" d="M172 601q-39 0 -66.5 -27.5t-27.5 -66.5t27.5 -66.5t66.5 -27.5t66.5 27.5t27.5 66.5t-27.5 66.5t-66.5 27.5zM172 646q57 0 98 -41t41 -98t-41 -98t-98 -41t-98 41t-41 98t41 98t98 41z" /> +<glyph unicode="±" horiz-adv-x="447" d="M416 59v-60h-361v60h361zM426 220h-162v-125h-58v125h-161v60h161v173h58v-173h162v-60z" /> +<glyph unicode="²" d="M227 645q82 0 129 -42q36 -33 44 -86t-7 -103.5t-45 -87.5l-145 -176q-14 -17 -26.5 -37.5t-17.5 -32.5l-5 -11h244v-69h-330l-6 62q17 48 69 111l100 120q149 178 61 261q-29 27 -70 27q-72 0 -146 -57l-14 58q7 7 20.5 17.5t56.5 28t88 17.5z" /> +<glyph unicode="³" d="M242 12q-48 -19 -104 -24q-30 -3 -61 -3h-5v57h14.5t33.5 3t49 9t51 19t48.5 31t33.5 47.5t14 66.5q0 92 -139 92q-35 0 -85 -6v60l44 6q52 28 125 84q43 32 43 73q0 13 -4 21q-18 35 -58 35q-29 0 -73.5 -19.5t-72.5 -39.5l-18 55q33 25 83 45.5t97 20.5q92 0 117 -79 q6 -18 6 -37q0 -69 -80 -123l-54 -34q41 0 81 -23q65 -37 65 -115q0 -165 -151 -222z" /> +<glyph unicode="´" horiz-adv-x="338" d="M213 752l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="µ" horiz-adv-x="519" d="M181 -88q0 -37 -19 -70l-100 -18q29 67 29 112q0 30 -5.5 91t-5.5 91v372h76v-372q0 -37 10.5 -54t45.5 -17q34 0 79 17.5t70 39.5v386h76v-415q0 -39 21 -40l-25 -50q-27 0 -46.5 15.5t-23.5 41.5q-31 -25 -74.5 -41t-83.5 -16q-15 0 -43 15q19 -57 19 -88z" /> +<glyph unicode="¶" horiz-adv-x="543" d="M497 639l-3 -51l-52 -12q0 -170 -34 -362t-98 -322l-64 20q69 125 104 310t35 354q-125 13 -143 13q-42 0 -59.5 -35.5t-17.5 -81.5q0 -25 3.5 -48.5t12.5 -48t27.5 -39.5t45.5 -15q43 0 81 30q-50 -99 -143 -99q-80 0 -122.5 59t-42.5 142q0 84 51.5 138t134.5 54 q26 0 55.5 -2.5t65 -6.5l54.5 -6l-1 43h56q0 -29 -1 -43z" /> +<glyph unicode="·" horiz-adv-x="258" d="M194 246q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40z" /> +<glyph unicode="¸" horiz-adv-x="402" d="M331 -63q0 -33 -33 -64t-70 -47l-38 31q81 44 81 75q0 13 -9 21t-23 8q-13 0 -49 -9v47h104q37 -27 37 -62z" /> +<glyph unicode="¹" d="M224 0v553h-145v54q25 0 63 5.5t64 11.5l25 6h70v-630h-77z" /> +<glyph unicode="º" horiz-adv-x="392" d="M203 361q-70 0 -106.5 64.5t-36.5 145.5q0 79 37 142t106 63q70 0 106.5 -63.5t36.5 -144.5q0 -80 -36.5 -143.5t-106.5 -63.5zM203 727q-31 0 -50.5 -27t-26 -61t-6.5 -74q0 -64 19 -109.5t64 -45.5q32 0 51.5 26.5t25.5 59t6 72.5t-6.5 73t-26 59.5t-50.5 26.5z" /> +<glyph unicode="»" horiz-adv-x="500" d="M242 100l47 -38l187 188l-185 188l-47 -38l149 -150zM64 100l47 -38l187 188l-185 188l-47 -38l149 -150z" /> +<glyph unicode="¼" horiz-adv-x="1239" d="M1145 140v-140h-72v140h-249l-4 65q65 183 244 425h83v-424h64v-66h-66zM1073 533q-114 -166 -177 -327h177v327zM870 745l-430 -876h-63l430 876h63zM224 0v553h-145v54q25 0 63 5.5t64 11.5l25 6h70v-630h-77z" /> +<glyph unicode="½" horiz-adv-x="1239" d="M1016 645q82 0 129 -42q36 -33 44 -86t-7 -103.5t-45 -87.5l-145 -176q-14 -17 -26.5 -37.5t-17.5 -32.5l-5 -11h244v-69h-330l-6 62q17 48 69 111l100 120q149 178 61 261q-29 27 -70 27q-72 0 -146 -57l-14 58q7 7 20.5 17.5t56.5 28t88 17.5zM870 745l-430 -876h-63 l430 876h63zM224 0v553h-145v54q25 0 63 5.5t64 11.5l25 6h70v-630h-77z" /> +<glyph unicode="¾" horiz-adv-x="1239" d="M1145 140v-140h-72v140h-249l-4 65q65 183 244 425h83v-424h64v-66h-66zM1073 533q-114 -166 -177 -327h177v327zM870 745l-430 -876h-63l430 876h63zM242 12q-48 -19 -104 -24q-30 -3 -61 -3h-5v57h14.5t33.5 3t49 9t51 19t48.5 31t33.5 47.5t14 66.5q0 92 -139 92 q-35 0 -85 -6v60l44 6q52 28 125 84q43 32 43 73q0 13 -4 21q-18 35 -58 35q-29 0 -73.5 -19.5t-72.5 -39.5l-18 55q33 25 83 45.5t97 20.5q92 0 117 -79q6 -18 6 -37q0 -69 -80 -123l-54 -34q41 0 81 -23q65 -37 65 -115q0 -165 -151 -222z" /> +<glyph unicode="¿" horiz-adv-x="358" d="M180 444q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40t-19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40zM210 325h61v-48q0 -42 -1 -62t-10 -50.5t-27 -54.5l-82 -110q-34 -45 -34 -78q0 -29 15 -46t43 -17q43 0 84 9v-57q-54 -13 -90 -13q-59 0 -93 31t-34 91q0 46 49 112 l80 105q23 30 31 59.5t8 80.5v48z" /> +<glyph unicode="À" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86zM366 736l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="Á" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86zM304 882l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="Â" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86zM405 736l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="Ã" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86zM188 830q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43q74 58 120 58z " /> +<glyph unicode="Ä" horiz-adv-x="510" d="M255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86zM224 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM378 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5 t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="Å" horiz-adv-x="510" d="M315 784q0 24 -17 42t-40 18q-25 0 -43.5 -18t-18.5 -42t18 -42t41 -18q24 0 42 18t18 42zM361 784q0 -44 -31.5 -75t-74.5 -31t-73.5 31t-30.5 75q0 43 31.5 74.5t74.5 31.5t73.5 -31t30.5 -75zM255 547l-75 -278h150zM498 0h-82l-67 203h-188l-67 -203h-82l200 630h86z " /> +<glyph unicode="Æ" horiz-adv-x="726" d="M255 547l-74 -278h149zM676 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v203h-190l-67 -203h-83l199 630h93l48 -211v211h324z" /> +<glyph unicode="Ç" horiz-adv-x="497" d="M376 -63q0 -33 -33 -64t-70 -47l-38 31q81 44 81 75q0 13 -9 21t-23 8q-13 0 -49 -9v40q-50 14 -86.5 48t-56 80.5t-28.5 95t-9 99.5q0 58 14.5 114t42.5 105.5t77 80t111 30.5q97 0 162 -43l-29 -52q-62 33 -133 33q-40 0 -75.5 -30.5t-54.5 -70.5q-35 -71 -35 -171 q0 -44 8 -86t25.5 -84t52 -67.5t81.5 -25.5q80 0 135 44l35 -51q-48 -39 -122 -52q26 -26 26 -52z" /> +<glyph unicode="È" horiz-adv-x="454" d="M404 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v630h324zM355 736l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="É" horiz-adv-x="454" d="M404 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v630h324zM295 882l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="Ê" horiz-adv-x="454" d="M404 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v630h324zM396 736l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="Ë" horiz-adv-x="454" d="M404 630v-67h-244v-200h187v-69h-187v-225h254v-69h-334v630h324zM215 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM369 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5 q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="Ì" horiz-adv-x="238" d="M158 630v-630h-78v630h78zM296 736l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="Í" horiz-adv-x="238" d="M158 630v-630h-78v630h78zM234 882l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="Î" horiz-adv-x="238" d="M158 630v-630h-78v630h78zM386 736l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="Ï" horiz-adv-x="238" d="M158 630v-630h-78v630h78zM178 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM332 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="Ñ" horiz-adv-x="554" d="M474 0h-82l-237 514q5 -47 5 -86v-428h-80v630h106l213 -482q-5 48 -5 88v394h80v-630zM215 830q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43 q74 58 120 58z" /> +<glyph unicode="Ò" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32zM380 736l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="Ó" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32zM321 882l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="Ô" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32zM426 739l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="Õ" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32zM206 830q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43 q74 58 120 58z" /> +<glyph unicode="Ö" horiz-adv-x="548" d="M274 579q-38 0 -67 -29t-43.5 -73.5t-21.5 -85.5t-7 -76t7 -76t21.5 -85.5t43.5 -73.5t67 -29t67 29t43.5 73.5t21.5 85.5t7 76t-7 76t-21.5 85.5t-43.5 73.5t-67 29zM274 645q58 0 102.5 -32t69 -83.5t36 -106t11.5 -108.5t-11.5 -108.5t-36 -106t-69 -83.5t-102.5 -32 t-102.5 32t-69 83.5t-36 106t-11.5 108.5t11.5 108.5t36 106t69 83.5t102.5 32zM244 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM398 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5 t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="Ø" horiz-adv-x="548" d="M363 531l-135 -471q22 -9 46 -9q44 0 73.5 27t42.5 72t18 84t5 81q0 145 -50 216zM188 93l136 474q-22 12 -50 12q-43 0 -73 -28t-43 -74.5t-18 -86t-5 -81.5q0 -150 53 -216zM171 -140h-50l46 161q-58 45 -85 128t-27 170q0 54 12 108t36 104.5t68.5 82t102.5 31.5 q38 0 68 -13l34 117h50l-41 -143q56 -45 82 -125.5t26 -165.5q0 -54 -11.5 -108.5t-35.5 -106t-68.5 -83.5t-103.5 -32q-31 0 -64 11z" /> +<glyph unicode="Ù" horiz-adv-x="558" d="M479 241q0 -110 -48 -183t-152 -73t-152 74t-48 186v385h80v-386q0 -193 120 -193t120 194v385h80v-389zM389 736l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="Ú" horiz-adv-x="558" d="M479 241q0 -110 -48 -183t-152 -73t-152 74t-48 186v385h80v-386q0 -193 120 -193t120 194v385h80v-389zM329 882l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="Û" horiz-adv-x="558" d="M479 241q0 -110 -48 -183t-152 -73t-152 74t-48 186v385h80v-386q0 -193 120 -193t120 194v385h80v-389zM430 736l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="Ü" horiz-adv-x="550" d="M479 241q0 -110 -48 -183t-152 -73t-152 74t-48 186v385h80v-386q0 -193 120 -193t120 194v385h80v-389zM250 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM404 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5 t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="Ý" horiz-adv-x="471" d="M358 896l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146zM459 630l-184 -399v-231h-79v231l-183 399h85l140 -314l141 314h80z" /> +<glyph unicode="ß" horiz-adv-x="572" d="M542 124q0 -69 -50.5 -104t-122.5 -35q-92 0 -174 50l28 55q72 -45 150 -45q41 0 68.5 22t27.5 61q0 29 -26 52t-63.5 39.5l-75 34.5t-63.5 46.5t-26 66.5q0 67 44 103t113 36q7 26 7 46q0 46 -30.5 71t-76.5 25q-43 0 -75 -26.5t-32 -68.5v-553h-76v432l-66 9v49h66v76 q0 65 54 103t122 38q76 0 127 -45t51 -120q0 -26 -20 -102q-17 9 -44 9q-39 0 -64 -20.5t-25 -58.5q0 -24 26 -44t63 -36.5t74 -36t63 -52.5t26 -77z" /> +<glyph unicode="à" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM335 631l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="á" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM272 777l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="â" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM382 631l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="ã" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM165 725q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43 q74 58 120 58z" /> +<glyph unicode="ä" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM204 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM358 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5 t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="å" horiz-adv-x="465" d="M359 0l-54 162h-147l-53 -162h-83l169 514h81l170 -514h-83zM232 419l-59 -193h117zM233 744q-25 0 -43.5 -17.5t-18.5 -42.5q0 -24 17.5 -42t41.5 -18t42 18t18 42t-16.5 42t-40.5 18zM232 790q43 0 73.5 -31.5t30.5 -74.5q0 -44 -31 -75t-75 -31q-43 0 -73.5 31.5 t-30.5 74.5t31.5 74.5t74.5 31.5z" /> +<glyph unicode="æ" horiz-adv-x="645" d="M302 0v160h-145l-53 -160h-82l167 515h86l27 -151v151h279v-66h-200v-150h153v-67h-153v-164h208v-68h-287zM232 411l-58 -186h108z" /> +<glyph unicode="ç" horiz-adv-x="465" d="M337 -43q4 -9 4 -20q0 -32 -33 -63.5t-70 -47.5l-38 31q81 44 81 75q0 5 -1 8q-7 21 -31 21q-11 0 -49 -9v45q-69 26 -102 99t-33 161q0 113 53 188q58 85 157 85q82 0 142 -38l-29 -52q-57 29 -113 29q-28 0 -57 -21.5t-46 -55.5q-28 -56 -28 -138q0 -84 24 -131 q38 -76 108 -76q59 0 114 38l35 -51q-47 -35 -109 -46q14 -14 21 -31z" /> +<glyph unicode="è" horiz-adv-x="437" d="M90 0v514h282v-64h-203v-149h156v-66h-156v-169h212v-66h-291zM340 631l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="é" horiz-adv-x="437" d="M90 0v514h282v-64h-203v-149h156v-66h-156v-169h212v-66h-291zM280 777l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="ê" horiz-adv-x="437" d="M386 631l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146zM102 0v514h282v-64h-203v-149h156v-66h-156v-169h212v-66h-291z" /> +<glyph unicode="ë" horiz-adv-x="437" d="M90 0v514h282v-64h-203v-149h156v-66h-156v-169h212v-66h-291zM204 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM358 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5 q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="ì" horiz-adv-x="261" d="M90 0v514h82v-514h-82zM306 631l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="í" horiz-adv-x="261" d="M90 0v514h82v-514h-82zM244 777l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="î" horiz-adv-x="261" d="M90 0v514h82v-514h-82zM396 631l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="ï" horiz-adv-x="261" d="M90 0v514h82v-514h-82zM188 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM342 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="ñ" horiz-adv-x="539" d="M366 0l-185 384q0 -11 0.5 -19.5t1 -12t0.5 -5.5v-347h-79v515h98l164 -357q-1 26 -1 36v321h79v-515h-78zM201 725q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8 t-19 -11.5t-16 -10l-29 43q74 58 120 58z" /> +<glyph unicode="ò" horiz-adv-x="505" d="M263 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM263 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5zM363 631l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="ó" horiz-adv-x="505" d="M263 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM263 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5zM310 777l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="ô" horiz-adv-x="505" d="M263 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM263 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5zM406 631l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="õ" horiz-adv-x="505" d="M263 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM263 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5zM188 725q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43q74 58 120 58z" /> +<glyph unicode="ö" horiz-adv-x="505" d="M263 -16q-48 0 -86 25.5t-59 67t-32 88t-11 95.5q0 65 18.5 124.5t63 102.5t106.5 43q63 0 107.5 -44t62.5 -103.5t18 -125.5t-18 -125.5t-62.5 -103.5t-107.5 -44zM263 466q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -37 5 -70.5t16.5 -65t34.5 -50t54 -18.5 q42 0 67.5 35t33.5 78t8 96q0 52 -8.5 96t-34.5 78.5t-66 34.5zM228 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM382 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5 q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="÷" horiz-adv-x="489" d="M308 404q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM308 107q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM434 280v-60h-380v60h380z" /> +<glyph unicode="ø" horiz-adv-x="505" d="M182 85l108 373q-18 8 -37 8q-31 0 -54 -19.5t-34.5 -52.5t-16.5 -68t-5 -74q0 -114 39 -167zM329 419l-106 -366q15 -5 30 -5q42 0 67.5 35t33.5 78t8 96q0 105 -33 162zM382 605l-31 -109q45 -36 67.5 -102t22.5 -137q0 -66 -18 -125.5t-62.5 -103.5t-107.5 -44 q-22 0 -48 7l-29 -102h-50l36 124q-48 36 -72.5 104.5t-24.5 142.5q0 65 18.5 124.5t63 102.5t106.5 43q29 0 55 -9l24 84h50z" /> +<glyph unicode="ù" horiz-adv-x="522" d="M271 -16q-88 0 -130 61.5t-42 152.5v316h78v-316q0 -150 94 -150t94 150v316h78v-319q0 -92 -42 -151.5t-130 -59.5zM373 631l-32 -45q-117 62 -184 128l62 63q52 -72 154 -146z" /> +<glyph unicode="ú" horiz-adv-x="522" d="M271 -16q-88 0 -130 61.5t-42 152.5v316h78v-316q0 -150 94 -150t94 150v316h78v-319q0 -92 -42 -151.5t-130 -59.5zM312 777l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146z" /> +<glyph unicode="û" horiz-adv-x="522" d="M413 631l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146zM271 -16q-88 0 -130 61.5t-42 152.5v316h78v-316q0 -150 94 -150t94 150v316h78v-319q0 -92 -42 -151.5t-130 -59.5z" /> +<glyph unicode="ü" horiz-adv-x="522" d="M271 -16q-88 0 -130 61.5t-42 152.5v316h78v-316q0 -150 94 -150t94 150v316h78v-319q0 -92 -42 -151.5t-130 -59.5zM233 667q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM387 667q0 -22 -19 -39t-41 -17 q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="ý" horiz-adv-x="416" d="M331 781l62 -63q-68 -67 -184 -128l-32 45q98 71 154 146zM247 189v-189h-78v189l-155 325h84l112 -242l113 242h80z" /> +<glyph unicode="ÿ" horiz-adv-x="416" d="M187 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM341 642q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM257 189v-189h-78v189l-155 325h84l112 -242 l113 242h80z" /> +<glyph unicode="Œ" horiz-adv-x="638" d="M264 566q-41 0 -69.5 -27t-41 -71t-17 -81.5t-4.5 -77.5q0 -39 5 -75.5t17.5 -78t41 -67t68.5 -25.5v503zM588 630v-67h-244v-200h187v-69h-187v-225h254v-69h-335q-56 0 -98.5 31.5t-65 81.5t-33.5 102t-11 104q0 50 11.5 101.5t34.5 100t65 79t97 30.5h325z" /> +<glyph unicode="œ" horiz-adv-x="583" d="M244 0q-61 0 -103 42t-59 98.5t-17 119.5q0 62 17.5 117.5t60 96t101.5 40.5h275v-66h-202v-146h155v-68h-155v-166h210v-68h-283zM238 450q-36 -5 -58 -37.5t-29.5 -72t-7.5 -88.5q0 -46 7.5 -84t29.5 -69t58 -35v386z" /> +<glyph unicode="Ÿ" horiz-adv-x="471" d="M459 630l-184 -399v-231h-79v231l-183 399h85l140 -314l141 314h80zM217 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5q17 0 29 -11.5t12 -28.5zM371 772q0 -22 -19 -39t-41 -17q-16 0 -27 10.5t-11 26.5q0 22 17.5 40.5t39.5 18.5 q17 0 29 -11.5t12 -28.5z" /> +<glyph unicode="ˆ" horiz-adv-x="402" d="M366 606l-32 -46q-57 30 -121 100q-65 -71 -121 -100l-32 45q80 55 153 147q62 -80 153 -146z" /> +<glyph unicode="˜" horiz-adv-x="380" d="M121 700q29 0 71.5 -22t65.5 -22q26 0 41 6.5t43 25.5l31 -38q-36 -33 -61 -44.5t-61 -11.5q-20 0 -62.5 22t-70.5 22q-9 0 -17.5 -2t-19.5 -7.5l-16 -8t-19 -11.5t-16 -10l-29 43q74 58 120 58z" /> +<glyph unicode="–" horiz-adv-x="358" d="M358 285v-60h-358v60h358z" /> +<glyph unicode="—" horiz-adv-x="608" d="M608 286v-60h-608v60h608z" /> +<glyph unicode="‘" horiz-adv-x="267" d="M110 431q-13 0 -29 11.5t-25 23.5l-10 11q41 87 129 184l45 -31q-48 -69 -60 -117q-5 -20 -5 -41l2 -24q-28 -17 -47 -17z" /> +<glyph unicode="’" horiz-adv-x="270" d="M158 646q13 0 29 -11.5t25 -22.5l10 -12q-41 -87 -129 -184l-45 31q48 69 60 117q5 20 5 41l-2 24q28 17 47 17z" /> +<glyph unicode="‚" horiz-adv-x="258" d="M139 90q13 0 29 -11.5t26 -22.5l9 -12q-41 -87 -129 -184l-45 31q48 69 60 117q5 20 5 41l-2 24q28 17 47 17z" /> +<glyph unicode="“" horiz-adv-x="446" d="M288 431l47 17q-2 9 -2 24q0 21 5 41q12 48 60 117l-45 31q-86 -95 -129 -184q34 -46 64 -46zM111 431l47 17q-2 9 -2 24q0 21 5 41q12 48 60 117l-45 31q-86 -95 -129 -184q34 -46 64 -46z" /> +<glyph unicode="”" horiz-adv-x="446" d="M157 646l-47 -17q2 -9 2 -24q0 -21 -5 -41q-12 -48 -60 -117l45 -31q86 95 129 184q-34 46 -64 46zM334 646l-47 -17q2 -9 2 -24q0 -21 -5 -41q-12 -48 -60 -117l45 -31q86 95 129 184q-34 46 -64 46z" /> +<glyph unicode="„" horiz-adv-x="434" d="M139 90l-47 -17q2 -9 2 -24q0 -21 -5 -41q-12 -48 -60 -117l45 -31q86 95 129 184q-34 46 -64 46zM316 90l-47 -17q2 -9 2 -24q0 -21 -5 -41q-12 -48 -60 -117l45 -31q86 95 129 184q-34 46 -64 46z" /> +<glyph unicode="•" horiz-adv-x="424" d="M211 487q71 0 122 -50.5t51 -121.5t-51 -121.5t-122 -50.5t-121.5 50.5t-50.5 121.5t50.5 121.5t121.5 50.5z" /> +<glyph unicode="…" horiz-adv-x="604" d="M192 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM364 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40zM534 46q0 -24 -19.5 -42.5t-44.5 -18.5q-24 0 -41 16 t-17 40q0 25 19.5 43t44.5 18q24 0 41 -16t17 -40z" /> +<glyph unicode="‹" horiz-adv-x="300" d="M267 100l-47 -38l-187 188l185 188l47 -38l-149 -150z" /> +<glyph unicode="›" horiz-adv-x="300" d="M33 100l47 -38l187 188l-185 188l-47 -38l149 -150z" /> +<glyph unicode="⁄" horiz-adv-x="339" d="M420 745l-430 -876h-63l430 876h63z" /> +<glyph unicode="™" horiz-adv-x="802" d="M310 650h-97v-353h-49v353h-97v44h243v-44zM724 694v-397h-50v270l3 54l-114 -324h-44l-114 325q3 -33 3 -54v-271h-51v397h67l117 -335l116 335h67z" /> +<glyph unicode="" horiz-adv-x="515" d="M0 515h515v-515h-515v515z" /> +<glyph unicode="fi" horiz-adv-x="661" d="M490 0v514h76v-514h-76zM173 450v-149h142v-66h-142v-235h-78v514h257v-64h-179z" /> +<glyph unicode="fl" horiz-adv-x="762" d="M488 0v514h75v-450h179v-64h-254zM173 450v-149h141v-66h-141v-235h-78v514h256v-64h-178z" /> +<glyph unicode="ffi" horiz-adv-x="1049" d="M878 0v514h82v-514h-82zM563 450v-149h143v-66h-143v-235h-79v514h260v-64h-181zM169 450v-149h143v-66h-143v-235h-79v514h260v-64h-181z" /> +<glyph unicode="ffl" horiz-adv-x="1155" d="M878 0v514h76v-450h181v-64h-257zM563 450v-149h143v-66h-143v-235h-79v514h260v-64h-181zM169 450v-149h143v-66h-143v-235h-79v514h260v-64h-181z" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/public/stylesheets/fonts/delicious-smallcaps-webfont.ttf b/public/stylesheets/fonts/delicious-smallcaps-webfont.ttf Binary files differnew file mode 100755 index 000000000..152f15f13 --- /dev/null +++ b/public/stylesheets/fonts/delicious-smallcaps-webfont.ttf diff --git a/public/stylesheets/fonts/delicious-smallcaps-webfont.woff b/public/stylesheets/fonts/delicious-smallcaps-webfont.woff Binary files differnew file mode 100755 index 000000000..0d4d1f7d0 --- /dev/null +++ b/public/stylesheets/fonts/delicious-smallcaps-webfont.woff diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 76f89bb49..e9b687f04 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -273,24 +273,24 @@ body text-align: left; overflow: visible; } -#view_html_content table { +#view-html-content table { border-collapse: collapse; margin-bottom: 1em; } -#view_html_content td, th { +#view-html-content td, th { border: solid 1px #000000; } -#view_html_content td { +#view-html-content td { vertical-align: top } -#view_html_content td { +#view-html-content td { max-width: 30em; overflow: auto; } -#view_html_content tr:nth-child(odd) { +#view-html-content tr:nth-child(odd) { background-color: #bbbbbb; } -#view_html_content tr:nth-child(even) { +#view-html-content tr:nth-child(even) { background-color: #dddddd; } @@ -891,11 +891,11 @@ a img.attachment_image { /*------------------------------------------------ view attachment as HTML */ -.view_html_content { +.view-html-content { margin-left: 1em; margin-right: 1em; } -.view_html_content, img { +.view-html-content, img { max-width: 50em; } @@ -933,6 +933,7 @@ a img.attachment_image { #authority_selection { float: left; + width: 40%; } #authority_search_ahead_results @@ -942,18 +943,20 @@ a img.attachment_image { #authority_preview { - width: 26em; + width: 45%; float: right; background-color: #FFFFE0; padding-left: 1em; padding-right: 1em; + overflow: hidden; } + #authority_preview #header_left, + #authority_preview.request_left, #authority_preview #stepwise_make_request { - margin: 0; - } - + width: 95%; + } /*------------------------------------------------ making a request / sign up / sign in */ @@ -1285,4 +1288,4 @@ div.lang { div#user_locale_switcher { margin: 5px; -}
\ No newline at end of file +} diff --git a/public/stylesheets/theme.css b/public/stylesheets/theme.css new file mode 100644 index 000000000..5d0a754f7 --- /dev/null +++ b/public/stylesheets/theme.css @@ -0,0 +1,508 @@ +h1 { + color: #93278F; + font-size: 42px; + font-family: DeliciousBold, Arial, sans-serif; + margin-bottom:0px; +} + +h2, dt { + color: #6B3C6A; + font-size: 18px; + font-family: DeliciousRoman; + font-weight:normal; +} + +h3 { + color: #6B3C6A; + font-size: 22px; + font-family: DeliciousRoman; + font-weight: bold; +} + +dd { + margin:18px 0px 36px 0px; + width:auto; +} + +dl { + margin-top:24px; + line-height:160%; +} + +div.controller_help dt:hover > a, div.controller_help h1:hover > a, div#help_unhappy h1:hover > a.hover_a { + color: #777; + font-family:Arial, sans-serif; +} + +a { + color: #93278F; + text-decoration: underline; +} + +body { + font-family: Arial, sans-serif; + color: #444444; + font-size: 12px; +} + +#wrapper { + padding-top:160px; +} + +#banner { + background: url(/images/stripes.png); + border: none; + height:160px; +} + +#banner_inner { + width: 890px; + margin: auto; + position:relative; +} + +#banner_inner a#logo { + position:absolute; + left:0px; + top:70px; + z-index: 100; +} + +a img { + border: none +} + +#navigation_search { + width:auto; + right:0px; + top:10px; +} + +#navigation_search input[type=image] { + border: 0px; + margin-bottom: -9px; + margin-left: -4px; +} + +#navigation_search input[type=text] { + font-size: 12px; + padding:5px 5px 4px 5px; + border-color:#BE7DBC; + border-radius:5px 0px 0px 5px; + -moz-border-radius:5px 0px 0px 5px; +} + +#logged_in_bar { + top: 18px; + right:210px; + float:none; + position:absolute; +} + +#logged_in_bar a { + color: #93278F; +} + +div.lang { + top:126px; + position:absolute; + padding:0px; +} + +#topnav { + background: transparent; + top: 120px; + left: 20px; + font-family:DeliciousRoman; + font-size: 18px; +} + +#topnav ul li a { + color: #6B3C6A !important; +} + +#topnav ul li { + padding:10px 15px; + margin: 0px 3px; +} + +#topnav ul li.selected { + background:#FFF; +} + +#topnav li a, #topnav li a:visited { + padding:0px; +} + +#wrapper { + width: 900px; +} + +#content { + width: 875px; +} + +#stepwise_make_request { + background: url(/images/stripes.png); + border: 1px solid #DEBEDD; + border-radius:5px; + -moz-border-radius:5px; + font-family:DeliciousRoman; + color: #6B3C6A; + font-size:18px; + padding:15px 12px; + text-align:left; + width: 408px; + margin-bottom:40px; +} + +#stepwise_make_request a img { + margin-bottom:-10px; + margin-top: -10px; + margin-left:6px; +} + +#stepwise_make_request strong { + color: #93278F; +} + +p.subtitle { + margin-top:10px; + margin-bottom:20px; +} + +.results_section { + margin-bottom:40px; +} + +.results_section div:last-child { + border-bottom-width:0px; + padding-bottom:0px; +} + +.request_listing, +.user_listing, +.body_listing { + border-bottom:1px solid #DDD; + padding:12px 0px 6px; + margin:0px; + margin-bottom:-1px; +} + +.body_listing { + padding-bottom:16px; +} + +.request_listing span.head, +.user_listing span.head, +.body_listing span.head { + background:none; + padding:0px; + font-size:22px; + margin-bottom:8px; +} + +.request_listing span.head a, +.user_listing span.head a, +.body_listing span.head a { + color: #93278F; + font-family: DeliciousBold; + font-weight: normal; + text-decoration: none; + font-size: 20px; + margin-top: 3px; + display: block; + margin-bottom: -6px; +} + +.request_listing .requester { + font-size: 12px; + padding-bottom:8px; +} + +.request_listing .requester a { + text-decoration: underline; +} + +.body_listing span.desc, +.body_listing span.bottomline, +.user_listing span.bottomline { + padding:0px; + font-style:normal; + font-size:12px; +} + +.request_listing .bottomline { + text-indent: -999px; +} + +.user_listing { + padding-top:10px; + padding-bottom:0px; +} + +.user_listing span.head { + margin-bottom:0px; +} + +.icon_waiting_response_very_overdue { + background: url(/images/button-overdue.png); +} + +.icon_complete { + background: url(/images/button-complete.png); +} + +.icon_waiting_classification { + background: url(/images/button-awaiting-classification.png); +} + +#request_sidebar { + width: 212px; + font-size: 12px; +} + +#request_sidebar h2 { + margin-bottom:10px; +} + +#request_sidebar .feed_link { + padding: 4px 0px; +} + +.request_left { + width: 625px; + float:left; +} + +.request_right { + padding-top:5px; + width: 245px; + float:left; +} + +.request_listing span.desc { + background: url(/images/quote-marks.png) no-repeat; + padding: 0px 0px 0px 40px; + min-height:60px; + font-size:12px; + width:auto; + color:#444; + line-height:18px; +} + +#footer { + border-color: #FFF; + margin-top:60px; +} + +#search_form input[type=text] { + font-size: 17px; + padding: 5px; + color: #555; + border-radius: 3px 0px 0px 3px; + -moz-border-radius: 3px 0px 0px 3px; + border-style: solid; + border-color: #BBB; + border-width: 1px; + width: 250px; + height: 19px; +} + +#search_form input[type=image] { + margin-left: -5px; + margin-bottom: -10px; +} + +#header_left { + width:645px; + float:left; +} + +#header_right { + float:right; + width:230px; + padding-top:27px; +} + +#header_right .feed_link { + display:block; + margin-bottom:10px; +} + +#general_search h2 { + clear:both; + margin-top:20px; +} + +.highlight { + background:#FFFF00; + border-width:0px; +} + +h2.person_results { + background:url(/images/icon-person.png) no-repeat; + padding-left:20px; + min-height:26px; + padding-top:5px; + padding-bottom:7px; + margin-bottom:3px; + border-bottom:1px solid #DDD; +} + +h2.foi_results { + background:url(/images/icon-foi.png) no-repeat 0px 3px; + padding-left:25px; + padding-top:0px; + border-bottom:1px solid #DDD; + padding-bottom:15px; + margin-bottom:0px; +} + +h2.publicbody_results { + background:url(/images/icon-publicbody.png) no-repeat 0px 3px; + padding-left:30px; + min-height:26px; + padding-top:5px; + padding-bottom:7px; + margin-bottom:4px; + border-bottom:1px solid #DDD; +} + +.list_toggle_controls { + padding-bottom:20px; +} + +#request_advice ol { + margin-left:18px; + margin-top:20px; + display:block; + padding:0px; +} + +#request_advice ol li { + padding-bottom:5px; +} + +#request_form label, +label.form_label { + width: 100px; + font-family: DeliciousRoman; +} + +#request_form label, +label.form_label, +span#to_public_body { + color: #6B3C6A; + font-size: 18px; +} + +span#to_public_body { + font-family: DeliciousBold; +} + +.form_item_note, .form_note { + margin-left:12em; +} + +#left_column { + width:600px; + float:left; +} + +#right_column { + width:200px; + float:right; + margin-top:30px; +} + +ul.no_bullets { + list-style-type:none; + margin:0px 0px 30px 0px; + padding:0px; +} + +ul.no_bullets li { + margin-bottom:6px; +} + +#contact_preamble { + margin: 0px 0px 30px 0px; + width:auto; +} + +#frontpage_search { + background:transparent; +} + + +div.frontpage-box { + background: url(/images/stripes.png); + border: 1px solid #DEBEDD; + border-radius:5px; + -moz-border-radius:5px; + font-family:DeliciousRoman; + color: #6B3C6A; + font-size:18px; + padding:15px 12px 0; + text-align:center; + width: 255px; + height: 210px; + float: left; +} + +#frontpage-box-1 { + margin-right: 10px; + vertical-align: middle; +} + +#frontpage-box-2 { + margin-right: 10px; +} + + +#bighand { + padding: 0; + margin: 0; + height: 210px; + background: url(/images/bighand.png) no-repeat scroll 0 bottom transparent; +} + +#littlehand { + padding: 0; + margin: 0; + height: 210px; + background: url(/images/littlehand.png) repeat-x scroll 10px bottom transparent; +} + +#frontpage-box-3 { +} + +#frontpage-box-3 #search_form input[type=text] { + width: 10em; +} + +#frontpage_examples p, +#frontpage_examples ul { + text-align: left; +} +#examples_1 ul li { + border-bottom: 1px solid #ddd; + padding: 5px 0 5px 0; +} + +#frontpage_examples .excerpt { + cursor: hand; + cursor: pointer; + background: url(/images/quote-marks.png) no-repeat; + padding: 0px 0px 0px 40px; + font-size:12px; + color:#444; + line-height:18px; + min-height: 30px; + font-style: italic; +} + +#set_photo { + background: url(/images/defaultprofilepic.png) +} diff --git a/script/generate_pot.sh b/script/generate_pot.sh index ca81b0ded..287d33e7f 100755 --- a/script/generate_pot.sh +++ b/script/generate_pot.sh @@ -4,3 +4,5 @@ cd `dirname $0` rake gettext:store_model_attributes rake gettext:find +git checkout ../locale/*/app.po + diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index caca03d58..51936d0de 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -125,6 +125,14 @@ describe RequestController, "when showing one request" do response.should have_text(/First hello/) end + it "should generate valid HTML verson of plain text attachments " do + ir = info_requests(:fancy_dog_request) + receive_incoming_mail('incoming-request-two-same-name.email', ir.incoming_email) + get :get_attachment_as_html, :incoming_message_id => ir.incoming_messages[1].id, :id => ir.id, :part => 2, :file_name => ['hello.txt.html'], :skip_cache => 1 + response.content_type.should == "text/html" + response.should have_text(/Second hello/) + end + it "should treat attachments with unknown extensions as binary" do ir = info_requests(:fancy_dog_request) receive_incoming_mail('incoming-request-attachment-unknown-extension.email', ir.incoming_email) diff --git a/spec/views/public_body/show.rhtml_spec.rb b/spec/views/public_body/show.rhtml_spec.rb index 7793b9b38..d52e1ac5e 100644 --- a/spec/views/public_body/show.rhtml_spec.rb +++ b/spec/views/public_body/show.rhtml_spec.rb @@ -67,10 +67,10 @@ describe "when viewing a body" do @pb.stub!(:get_tag_values).and_return(['98765', '12345']) render "public_body/show" - response.should have_tag("div#request_sidebar") do + response.should have_tag("div#header_right") do with_tag("a[href*=?]", /charity-commission.gov.uk.*RegisteredCharityNumber=98765$/) end - response.should have_tag("div#request_sidebar") do + response.should have_tag("div#header_right") do with_tag("a[href*=?]", /charity-commission.gov.uk.*RegisteredCharityNumber=12345$/) end end @@ -80,7 +80,7 @@ describe "when viewing a body" do @pb.stub!(:get_tag_values).and_return(['SC1234']) render "public_body/show" - response.should have_tag("div#request_sidebar") do + response.should have_tag("div#header_right") do with_tag("a[href*=?]", /www.oscr.org.uk.*id=SC1234$/) end end @@ -88,7 +88,7 @@ describe "when viewing a body" do it "should not link to Charity Commission site if we don't have number" do render "public_body/show" - response.should have_tag("div#request_sidebar") do + response.should have_tag("div#header_right") do without_tag("a[href*=?]", /charity-commission.gov.uk/) end end diff --git a/vendor/rails b/vendor/rails -Subproject 6c42c142e2a41e6b9b05cfc2d7e1d316c38869c +Subproject e0774e47302a907319ed974ccf59b8b54d32bbd |