aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/controllers/request_controller.rb16
-rw-r--r--app/models/incoming_message.rb4
-rw-r--r--app/models/info_request.rb12
-rw-r--r--app/views/public_body/_body_listing_single.html.erb10
-rw-r--r--app/views/public_body/show.html.erb43
-rw-r--r--app/views/request/_sidebar.html.erb2
-rw-r--r--app/views/request/similar.html.erb15
m---------commonlib0
-rw-r--r--lib/mail_handler/backends/mail_extensions.rb9
-rw-r--r--locale/fi/app.po3413
-rw-r--r--locale/fr/app.po19
-rw-r--r--locale/fr_CA/app.po3411
-rw-r--r--locale/he_IL/app.po106
-rw-r--r--locale/hr/app.po10
-rw-r--r--locale/nb_NO/app.po162
-rw-r--r--locale/pt_BR/app.po4
-rw-r--r--locale/ro_RO/app.po350
-rw-r--r--locale/sl/app.po2316
-rw-r--r--locale/vi/app.po3401
-rw-r--r--spec/controllers/request_controller_spec.rb11
-rw-r--r--spec/lib/mail_handler/mail_handler_spec.rb7
-rw-r--r--spec/models/incoming_message_spec.rb13
-rw-r--r--spec/models/info_request_spec.rb203
23 files changed, 12008 insertions, 1529 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb
index 42693f867..0c1d9880c 100644
--- a/app/controllers/request_controller.rb
+++ b/app/controllers/request_controller.rb
@@ -150,12 +150,6 @@ class RequestController < ApplicationController
:offset => (@page - 1) * @per_page, :limit => @per_page, :collapse_by_prefix => 'request_collapse')
@matches_estimated = @xapian_object.matches_estimated
@show_no_more_than = (@matches_estimated > MAX_RESULTS) ? MAX_RESULTS : @matches_estimated
-
- if (@page > 1)
- @page_desc = " (page " + @page.to_s + ")"
- else
- @page_desc = ""
- end
end
def list
@@ -417,12 +411,22 @@ class RequestController < ApplicationController
end
# Make the state change
+ event = info_request.log_event("status_update",
+ { :user_id => authenticated_user.id,
+ :old_described_state => info_request.described_state,
+ :described_state => described_state,
+ })
+
info_request.set_described_state(described_state, authenticated_user, message)
# If you're not the *actual* requester. e.g. you are playing the
# classification game, or you're doing this just because you are an
# admin user (not because you also own the request).
if !info_request.is_actual_owning_user?(authenticated_user)
+ # Create a classification event for league tables
+ RequestClassification.create!(:user_id => authenticated_user.id,
+ :info_request_event_id => event.id)
+
# Don't give advice on what to do next, as it isn't their request
if session[:request_game]
flash[:notice] = _('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.',:info_request_title=>CGI.escapeHTML(info_request.title), :url=>CGI.escapeHTML(request_path(info_request)))
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb
index 4910d43f4..ae3c3b407 100644
--- a/app/models/incoming_message.rb
+++ b/app/models/incoming_message.rb
@@ -258,7 +258,7 @@ class IncomingMessage < ActiveRecord::Base
# Used by binary_mask_stuff - replace text in place
def _binary_mask_stuff_internal!(text)
# Keep original size, so can check haven't resized it
- orig_size = text.size
+ orig_size = text.mb_chars.size
# Replace ASCII email addresses...
text.gsub!(MySociety::Validate.email_find_regexp) do |email|
@@ -293,7 +293,7 @@ class IncomingMessage < ActiveRecord::Base
# Replace censor items
self.info_request.apply_censor_rules_to_binary!(text)
- raise "internal error in binary_mask_stuff" if text.size != orig_size
+ raise "internal error in binary_mask_stuff" if text.mb_chars.size != orig_size
return text
end
diff --git a/app/models/info_request.rb b/app/models/info_request.rb
index 46c247fa9..8f15a4ea4 100644
--- a/app/models/info_request.rb
+++ b/app/models/info_request.rb
@@ -584,16 +584,6 @@ public
end
unless set_by.nil? || is_actual_owning_user?(set_by) || described_state == 'attention_requested'
- # Log the status change by someone other than the requester
- event = log_event("status_update",
- { :user_id => set_by.id,
- :old_described_state => old_described_state,
- :described_state => described_state,
- })
- # Create a classification event for league tables
- RequestClassification.create!(:user_id => set_by.id,
- :info_request_event_id => event.id)
-
RequestMailer.old_unclassified_updated(self).deliver if !is_external?
end
end
@@ -646,7 +636,7 @@ public
event.save!
end
curr_state = nil
- elsif !curr_state.nil? && (event.event_type == 'followup_sent' || event.event_type == 'sent') && !event.described_state.nil? && (event.described_state == 'waiting_response' || event.described_state == 'internal_review')
+ elsif !curr_state.nil? && (event.event_type == 'followup_sent' || event.event_type == 'sent' || event.event_type == "status_update")
# Followups can set the status to waiting response / internal
# review. Initial requests ('sent') set the status to waiting response.
diff --git a/app/views/public_body/_body_listing_single.html.erb b/app/views/public_body/_body_listing_single.html.erb
index 8e0a64df7..91a07d09c 100644
--- a/app/views/public_body/_body_listing_single.html.erb
+++ b/app/views/public_body/_body_listing_single.html.erb
@@ -20,8 +20,14 @@
<span class="bottomline">
<%= n_('{{count}} request made.', '{{count}} requests made.', public_body.info_requests.size,
:count => public_body.info_requests.size) %>
- <% if !@include_request_link_in_authority_listing.nil? %>
- <%= link_to _("Make your own request"), public_body_path(public_body) %>.
+ <% if !public_body.is_requestable? && public_body.not_requestable_reason != 'bad_contact' %>
+ <% if public_body.not_requestable_reason == 'defunct' %>
+ <%= _('Defunct.') %>
+ <% end %>
+ <% else %>
+ <% if !@include_request_link_in_authority_listing.nil? %>
+ <%= link_to _("Make your own request"), public_body_path(public_body) %>.
+ <% end %>
<% end %>
<br>
<span class="date_added">
diff --git a/app/views/public_body/show.html.erb b/app/views/public_body/show.html.erb
index 47075a1f5..b35e29eea 100644
--- a/app/views/public_body/show.html.erb
+++ b/app/views/public_body/show.html.erb
@@ -46,12 +46,22 @@
<% end %>
</p>
- <% if @public_body.has_notes? && (@public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact') %>
- <p><%= @public_body.notes_as_html.html_safe %></p>
- <% end %>
-
- <% if @public_body.eir_only? %>
- <p><%= _('You can only request information about the environment from this authority.')%></p>
+ <% if @public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact' %>
+ <% if @public_body.has_notes? %>
+ <p><%= @public_body.notes_as_html.html_safe %></p>
+ <% end %>
+ <% if @public_body.eir_only? %>
+ <p><%= _('You can only request information about the environment from this authority.')%></p>
+ <% end %>
+ <% else %>
+ <% if @public_body.not_requestable_reason == 'not_apply' %>
+ <p><%= _('Freedom of Information law does not apply to this authority, so you cannot make
+ a request to it.')%></p>
+ <% elsif @public_body.not_requestable_reason == 'defunct' %>
+ <p><%= _('This authority no longer exists, so you cannot make a request to it.')%></p>
+ <% else %>
+ <p><%= _('For an unknown reason, it is not possible to make a request to this authority.')%></p>
+ <% end %>
<% end %>
<div id="stepwise_make_request">
@@ -59,13 +69,6 @@
<%= link_to _("Make a request to this authority"), new_request_to_body_path(:url_name => @public_body.url_name), :class => "link_button_green" %>
<% elsif @public_body.has_notes? %>
<%= @public_body.notes_as_html.html_safe %>
- <% 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 %>
<% if @public_body.override_request_email %>
@@ -78,12 +81,14 @@
<div id="foi_results_section">
<% if @public_body.info_requests.size == 0 %>
- <% if @public_body.eir_only? %>
- <h2><%= _('Environmental Information Regulations requests made using this site') %></h2>
- <p>Nobody has made any Environmental Information Regulations requests to <%=h(@public_body.name)%> using this site yet.</p>
- <% else %>
- <h2><%= _('Freedom of Information requests made using this site')%></h2>
- <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>
+ <% if @public_body.is_requestable? or @public_body.not_requestable_reason != 'defunct' %>
+ <% if @public_body.eir_only? %>
+ <h2><%= _('Environmental Information Regulations requests made using this site') %></h2>
+ <p>Nobody has made any Environmental Information Regulations requests to <%=h(@public_body.name)%> using this site yet.</p>
+ <% else %>
+ <h2><%= _('Freedom of Information requests made using this site')%></h2>
+ <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 %>
<% end %>
<% else %>
<h2 class="foi_results">
diff --git a/app/views/request/_sidebar.html.erb b/app/views/request/_sidebar.html.erb
index aba5c2fb3..e08f43eaa 100644
--- a/app/views/request/_sidebar.html.erb
+++ b/app/views/request/_sidebar.html.erb
@@ -58,7 +58,7 @@
<%= render :partial => 'request/request_listing_short_via_event', :locals => { :event => result[:model], :info_request => result[:model].info_request } %>
<% end %>
<% if @xapian_similar_more %>
- <p><%= link_to _("More similar requests"), similar_request_path(@info_request) %></p>
+ <p><%= link_to _("More similar requests"), similar_request_path(@info_request.url_title) %></p>
<% end %>
<!-- Important terms: <%= @xapian_similar.important_terms.join(" ") %> -->
<% end %>
diff --git a/app/views/request/similar.html.erb b/app/views/request/similar.html.erb
index 0d53f6919..eb7ff636d 100644
--- a/app/views/request/similar.html.erb
+++ b/app/views/request/similar.html.erb
@@ -1,5 +1,16 @@
-<% @title = "Requests similar to '" + h(@info_request.title) + "'" + @page_desc %>
-<h1><%="Requests similar to '" + request_link(@info_request) + "'" + @page_desc %></h1>
+<%- if @page > 1 %>
+ <%- @title = _("Requests similar to '{{request_title}}' (page {{page}})", {:page => @page, :request_title => @info_request.title}) %>
+<%- else %>
+<%- @title = _("Requests similar to '{{request_title}}'", {:request_title => @info_request.title}) %>
+<%- end %>
+
+<h1>
+ <%- if @page > 1 %>
+ <%= _("Requests similar to '{{request_title}}' (page {{page}})", {:page => @page, :request_title => request_link(@info_request)}) %>
+ <%- else %>
+ <%= _("Requests similar to '{{request_title}}'", {:request_title => request_link(@info_request)}) %>
+ <%- end %>
+</h1>
<!-- Important terms: <%= @xapian_object.important_terms.join(" ") %> -->
diff --git a/commonlib b/commonlib
-Subproject 4030473685e388acc75c428ed36267acc62b571
+Subproject b5e4bada6633bc39b708714d1948706c83d2367
diff --git a/lib/mail_handler/backends/mail_extensions.rb b/lib/mail_handler/backends/mail_extensions.rb
index a5b6bc97e..029331802 100644
--- a/lib/mail_handler/backends/mail_extensions.rb
+++ b/lib/mail_handler/backends/mail_extensions.rb
@@ -46,6 +46,15 @@ module Mail
self
end
+
+ def set_envelope_header
+ raw_string = raw_source.to_s
+ if match_data = raw_source.to_s.match(/\AFrom\s(#{TEXT}+)#{CRLF}/m)
+ set_envelope(match_data[1])
+ self.raw_source = raw_string.sub(match_data[0], "")
+ end
+ end
+
end
# A patched version of the parameter hash that handles nil values without throwing
diff --git a/locale/fi/app.po b/locale/fi/app.po
new file mode 100644
index 000000000..e994c6e0a
--- /dev/null
+++ b/locale/fi/app.po
@@ -0,0 +1,3413 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# apoikola <antti.poikola@gmail.com>, 2013
+# Hamatti <juhamattisantala@gmail.com>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: alaveteli\n"
+"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
+"POT-Creation-Date: 2013-06-24 09:40-0700\n"
+"PO-Revision-Date: 2013-06-28 16:03+0000\n"
+"Last-Translator: Hamatti <juhamattisantala@gmail.com>\n"
+"Language-Team: Finnish (http://www.transifex.com/projects/p/alaveteli/language/fi/)\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+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 ""
+
+msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">moderation policy</a>)"
+msgstr ""
+
+msgid " (<strong>patience</strong>, especially for large files, it may take a while!)"
+msgstr " (<strong>kärsivällisyyttä</strong>, erityisesti suurien tiedostojen kohdalla tämä saattaa kestää jonkin aikaa!)"
+
+msgid " (you)"
+msgstr " (sinä)"
+
+msgid " - view and make Freedom of Information requests"
+msgstr " - katsele ja tee julkisuuslain mukaisia tietopyyntöjä"
+
+msgid " - wall"
+msgstr ""
+
+msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password."
+msgstr ""
+
+msgid " <strong>Privacy note:</strong> Your email address will be given to"
+msgstr " <strong>Huomio:</strong> Sinun sähköpostiosoitteesi annetaan"
+
+msgid " <strong>Summarise</strong> the content of any information returned. "
+msgstr " <strong>Tiivistä</strong> saamasi vastauksen sisältö. "
+
+msgid " Advise on how to <strong>best clarify</strong> the request."
+msgstr " Neuvoja siihen, miten tietopyynnöstä voi tehdä <strong>mahdollisimman selkeän</strong>."
+
+msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. "
+msgstr " Ideoita siihen, mitä <strong>muita viranomaisen hallussa olevia dokumentteja</strong> voisi pyytää. "
+
+msgid " If you know the address to use, then please <a href=\"{{url}}\">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 ""
+
+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 ""
+
+msgid " Link to the information requested, if it is <strong>already available</strong> on the Internet. "
+msgstr " Linkki pyydettyyn tietoon, mikäli se <strong>on jo saatavilla</strong> verkossa. "
+
+msgid " Offer better ways of <strong>wording the request</strong> to get the information. "
+msgstr " Tarjoaa parempia tapoja <strong>tietopyyntöjen muotoilemiseen</strong>. "
+
+msgid " Say how you've <strong>used the information</strong>, with links if possible."
+msgstr "Kerro linkkien kera jos mahdollista, miten olet <strong>käyttänyt saamaasi tietoa</strong>."
+
+msgid " Suggest <strong>where else</strong> the requester might find the information. "
+msgstr "Suosittele <strong>mistä muualta</strong> hakija saattaa löytää informaation."
+
+msgid " What are you investigating using Freedom of Information? "
+msgstr ""
+
+msgid " You are already being emailed updates about the request."
+msgstr ""
+
+msgid " You will also be emailed updates about the request."
+msgstr ""
+
+msgid " made by "
+msgstr ""
+
+msgid " or "
+msgstr "tai"
+
+msgid " when you send this message."
+msgstr "kun lähetät tämän viestin."
+
+msgid "\"Hello! We have an <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">important message</a> for visitors outside {{country_name}}\""
+msgstr ""
+
+msgid "'Crime statistics by ward level for Wales'"
+msgstr ""
+
+msgid "'Pollution levels over time for the River Tyne'"
+msgstr ""
+
+msgid "'{{link_to_authority}}', a public authority"
+msgstr ""
+
+msgid "'{{link_to_request}}', a request"
+msgstr ""
+
+msgid "'{{link_to_user}}', a person"
+msgstr ""
+
+msgid "*unknown*"
+msgstr ""
+
+msgid ",\\n\\n\\n\\nYours,\\n\\n{{user_name}}"
+msgstr ""
+
+msgid "- or -"
+msgstr "- tai -"
+
+msgid "1. Select an authority"
+msgstr ""
+
+msgid "2. Ask for Information"
+msgstr "2. Pyydä tietoja"
+
+msgid "3. Now check your request"
+msgstr ""
+
+msgid "<a href=\"{{browse_url}}\">Browse all</a> or <a href=\"{{add_url}}\">ask us to add one</a>."
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Add an annotation</a> (to help the requester or others)"
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Sign in</a> to change password, subscriptions and more ({{user_name}} only)"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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>"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "<p>We're glad you got some of the information that you wanted.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>"
+msgstr ""
+
+msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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 ""
+
+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 {{late_number_of_days}} 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 ""
+
+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 ""
+
+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 ""
+
+msgid "<strong> Can I request information about myself?</strong>\\n\t\t\t<a href=\"{{url}}\">No! (Click here for details)</a>"
+msgstr ""
+
+msgid "<strong><code>commented_by:tony_bowden</code></strong> to search annotations made by Tony Bowden, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>filetype:pdf</code></strong> to find all responses with PDF attachments. Or try these: <code>{{list_of_file_extensions}}</code>"
+msgstr ""
+
+msgid "<strong><code>request:</code></strong> to restrict to a specific request, typing the title as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_by:julian_todd</code></strong> to search requests made by Julian Todd, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_from:home_office</code></strong> to search requests from the Home Office, typing the name as in the URL."
+msgstr ""
+
+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 ""
+
+msgid "<strong><code>tag:charity</code></strong> to find all public authorities 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 ""
+
+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 ""
+
+msgid "<strong>Advice</strong> on how to get a response that will satisfy the requester. </li>"
+msgstr ""
+
+msgid "<strong>All the information</strong> has been sent"
+msgstr "<strong>Kaikki tiedot</strong> on lähetetty"
+
+msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking"
+msgstr ""
+
+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 ""
+
+msgid "<strong>Clarification</strong> has been requested"
+msgstr ""
+
+msgid "<strong>No response</strong> has been received\\n <small>(maybe there's just an acknowledgement)</small>"
+msgstr ""
+
+msgid "<strong>Note:</strong> Because we're testing, requests are being sent to {{email}} rather than to the actual authority."
+msgstr ""
+
+msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\\n to try out how it works."
+msgstr ""
+
+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 ""
+
+msgid "<strong>Privacy note:</strong> If you want to request private information about\\n yourself then <a href=\"{{url}}\">click here</a>."
+msgstr ""
+
+msgid "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "<strong>Privacy warning:</strong> Your message, and any response\\n to it, will be displayed publicly on this website."
+msgstr ""
+
+msgid "<strong>Some of the information</strong> has been sent "
+msgstr ""
+
+msgid "<strong>Thank</strong> the public authority or "
+msgstr ""
+
+msgid "<strong>did not have</strong> the information requested."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">follow up</a> to <em>{{request_title}}</em> was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">response</a> to <em>{{request_title}}</em> was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}"
+msgstr ""
+
+msgid "A <strong>summary</strong> of the response if you have received it by post. "
+msgstr ""
+
+msgid "A Freedom of Information request"
+msgstr ""
+
+msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
+msgstr ""
+
+msgid "A new request, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A public authority"
+msgstr ""
+
+msgid "A response will be sent <strong>by post</strong>"
+msgstr ""
+
+msgid "A strange reponse, required attention by the {{site_name}} team"
+msgstr ""
+
+msgid "A vexatious request"
+msgstr ""
+
+msgid "A {{site_name}} user"
+msgstr ""
+
+msgid "About you:"
+msgstr ""
+
+msgid "Act on what you've learnt"
+msgstr ""
+
+msgid "Acts as xapian/acts as xapian job"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Action"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Model"
+msgstr ""
+
+msgid "Add an annotation"
+msgstr ""
+
+msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>."
+msgstr ""
+
+msgid "Added on {{date}}"
+msgstr ""
+
+msgid "Admin level is not included in list"
+msgstr ""
+
+msgid "Administration URL:"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Advanced search tips"
+msgstr ""
+
+msgid "Advise on whether the <strong>refusal is legal</strong>, and how to complain about it if not."
+msgstr ""
+
+msgid "Air, water, soil, land, flora and fauna (including how these effect\\n human beings)"
+msgstr ""
+
+msgid "All of the information requested has been received"
+msgstr ""
+
+msgid "All the options below can use <strong>status</strong> or <strong>latest_status</strong> before the colon. For example, <strong>status:not_held</strong> will match requests which have <em>ever</em> been marked as not held; <strong>latest_status:not_held</strong> will match only requests that are <em>currently</em> marked as not held."
+msgstr ""
+
+msgid "All the options below can use <strong>variety</strong> or <strong>latest_variety</strong> before the colon. For example, <strong>variety:sent</strong> will match requests which have <em>ever</em> been sent; <strong>latest_variety:sent</strong> will match only requests that are <em>currently</em> marked as sent."
+msgstr ""
+
+msgid "Also called {{other_name}}."
+msgstr ""
+
+msgid "Also send me alerts by email"
+msgstr ""
+
+msgid "Alter your subscription"
+msgstr ""
+
+msgid "Although all responses are automatically published, we depend on\\nyou, the original requester, to evaluate them."
+msgstr ""
+
+msgid "An <a href=\"{{request_url}}\">annotation</a> to <em>{{request_title}}</em> was made by {{event_comment_user}} on {{date}}"
+msgstr ""
+
+msgid "An <strong>error message</strong> has been received"
+msgstr ""
+
+msgid "An Environmental Information Regulations request"
+msgstr ""
+
+msgid "An anonymous user"
+msgstr ""
+
+msgid "Annotation added to request"
+msgstr ""
+
+msgid "Annotations"
+msgstr ""
+
+msgid "Annotations are so anyone, including you, can help the requester with their request. For example:"
+msgstr ""
+
+msgid "Annotations will be posted publicly here, and are\\n <strong>not</strong> sent to {{public_body_name}}."
+msgstr ""
+
+msgid "Anonymous user"
+msgstr ""
+
+msgid "Anyone:"
+msgstr ""
+
+msgid "Applies to"
+msgstr ""
+
+msgid "Are we missing a public authority?"
+msgstr ""
+
+msgid "Are you the owner of any commercial copyright on this page?"
+msgstr ""
+
+msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
+msgstr ""
+
+msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
+msgstr ""
+
+msgid "Attachment (optional):"
+msgstr ""
+
+msgid "Attachment:"
+msgstr ""
+
+msgid "Awaiting classification."
+msgstr ""
+
+msgid "Awaiting internal review."
+msgstr ""
+
+msgid "Awaiting response."
+msgstr ""
+
+msgid "Beginning with"
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> for examples of how to word your request."
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request."
+msgstr ""
+
+msgid "Browse all authorities..."
+msgstr ""
+
+msgid "By law, under all circumstances, {{public_body_link}} should have responded by now"
+msgstr ""
+
+msgid "By law, {{public_body_link}} should normally have responded <strong>promptly</strong> and"
+msgstr ""
+
+msgid "Calculated home page"
+msgstr ""
+
+msgid "Can't find the one you want?"
+msgstr ""
+
+msgid "Cancel a {{site_name}} alert"
+msgstr ""
+
+msgid "Cancel some {{site_name}} alerts"
+msgstr ""
+
+msgid "Cancel, return to your profile page"
+msgstr ""
+
+msgid "Censor rule"
+msgstr ""
+
+msgid "CensorRule|Last edit comment"
+msgstr ""
+
+msgid "CensorRule|Last edit editor"
+msgstr ""
+
+msgid "CensorRule|Regexp"
+msgstr ""
+
+msgid "CensorRule|Replacement"
+msgstr ""
+
+msgid "CensorRule|Text"
+msgstr ""
+
+msgid "Change email on {{site_name}}"
+msgstr ""
+
+msgid "Change password on {{site_name}}"
+msgstr ""
+
+msgid "Change profile photo"
+msgstr ""
+
+msgid "Change the text about you on your profile at {{site_name}}"
+msgstr ""
+
+msgid "Change your email"
+msgstr ""
+
+msgid "Change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Change your password"
+msgstr ""
+
+msgid "Change your password on {{site_name}}"
+msgstr ""
+
+msgid "Change your password {{site_name}}"
+msgstr ""
+
+msgid "Charity registration"
+msgstr ""
+
+msgid "Check for mistakes if you typed or copied the address."
+msgstr ""
+
+msgid "Check you haven't included any <strong>personal information</strong>."
+msgstr ""
+
+msgid "Choose your profile photo"
+msgstr ""
+
+msgid "Clarification"
+msgstr ""
+
+msgid "Clarify your FOI request - "
+msgstr ""
+
+msgid "Classify an FOI response from "
+msgstr ""
+
+msgid "Clear photo"
+msgstr ""
+
+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 ""
+
+msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request."
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Comment|Body"
+msgstr ""
+
+msgid "Comment|Comment type"
+msgstr ""
+
+msgid "Comment|Locale"
+msgstr ""
+
+msgid "Comment|Visible"
+msgstr ""
+
+msgid "Confirm you want to follow all successful FOI requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests or responses matching your search"
+msgstr ""
+
+msgid "Confirm you want to follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow requests to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow the request '{{request_title}}'"
+msgstr ""
+
+msgid "Confirm your FOI request to "
+msgstr ""
+
+msgid "Confirm your account on {{site_name}}"
+msgstr ""
+
+msgid "Confirm your annotation to {{info_request_title}}"
+msgstr ""
+
+msgid "Confirm your email address"
+msgstr ""
+
+msgid "Confirm your new email address on {{site_name}}"
+msgstr ""
+
+msgid "Considered by administrators as not an FOI request and hidden from site."
+msgstr ""
+
+msgid "Considered by administrators as vexatious and hidden from site."
+msgstr ""
+
+msgid "Contact {{recipient}}"
+msgstr ""
+
+msgid "Contact {{site_name}}"
+msgstr ""
+
+msgid "Could not identify the request from the email address"
+msgstr ""
+
+msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported."
+msgstr ""
+
+msgid "Crop your profile photo"
+msgstr ""
+
+msgid "Cultural sites and built structures (as they may be affected by the\\n environmental factors listed above)"
+msgstr ""
+
+msgid "Currently <strong>waiting for a response</strong> from {{public_body_link}}, they must respond promptly and"
+msgstr ""
+
+msgid "Date:"
+msgstr ""
+
+msgid "Dear {{name}},"
+msgstr ""
+
+msgid "Dear {{public_body_name}},"
+msgstr ""
+
+msgid "Default locale"
+msgstr ""
+
+msgid "Delayed response to your FOI request - "
+msgstr ""
+
+msgid "Delayed."
+msgstr ""
+
+msgid "Delivery error"
+msgstr ""
+
+msgid "Destroy {{name}}"
+msgstr ""
+
+msgid "Details of request '"
+msgstr ""
+
+msgid "Did you mean: {{correction}}"
+msgstr ""
+
+msgid "Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:"
+msgstr ""
+
+msgid "Disclosure log"
+msgstr ""
+
+msgid "Disclosure log URL"
+msgstr ""
+
+msgid "Don't want to address your message to {{person_or_body}}? You can also write to:"
+msgstr ""
+
+msgid "Done"
+msgstr ""
+
+msgid "Done &gt;&gt;"
+msgstr ""
+
+msgid "Download a zip file of all correspondence"
+msgstr ""
+
+msgid "Download original attachment"
+msgstr ""
+
+msgid "EIR"
+msgstr ""
+
+msgid "Edit"
+msgstr ""
+
+msgid "Edit and add <strong>more details</strong> to the message above,\\n explaining why you are dissatisfied with their response."
+msgstr ""
+
+msgid "Edit text about you"
+msgstr ""
+
+msgid "Edit this request"
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again."
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again. Or create a new account using the form on the right."
+msgstr ""
+
+msgid "Email doesn't look like a valid address"
+msgstr ""
+
+msgid "Email me future updates to this request"
+msgstr ""
+
+msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>"
+msgstr ""
+
+msgid "Enter your response below. You may attach one file (use email, or\\n <a href=\"{{url}}\">contact us</a> if you need more)."
+msgstr ""
+
+msgid "Environmental Information Regulations"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made using this site"
+msgstr ""
+
+msgid "Event history"
+msgstr ""
+
+msgid "Event history details"
+msgstr ""
+
+msgid "Event {{id}}"
+msgstr ""
+
+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=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Everything that you enter on this page\\n will be <strong>displayed publicly</strong> on\\n this website forever (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "FOI"
+msgstr ""
+
+msgid "FOI email address for {{public_body}}"
+msgstr ""
+
+msgid "FOI request – {{title}}"
+msgstr ""
+
+msgid "FOI requests"
+msgstr ""
+
+msgid "FOI requests by '{{user_name}}'"
+msgstr ""
+
+msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "FOI response requires admin ({{reason}}) - {{title}}"
+msgstr ""
+
+msgid "Failed to convert image to a PNG"
+msgstr ""
+
+msgid "Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}"
+msgstr ""
+
+msgid "Filter"
+msgstr ""
+
+msgid "First, did your other requests succeed?"
+msgstr ""
+
+msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Foi attachment"
+msgstr ""
+
+msgid "FoiAttachment|Charset"
+msgstr ""
+
+msgid "FoiAttachment|Content type"
+msgstr ""
+
+msgid "FoiAttachment|Display size"
+msgstr ""
+
+msgid "FoiAttachment|Filename"
+msgstr ""
+
+msgid "FoiAttachment|Hexdigest"
+msgstr ""
+
+msgid "FoiAttachment|Url part number"
+msgstr ""
+
+msgid "FoiAttachment|Within rfc822 subject"
+msgstr ""
+
+msgid "Follow"
+msgstr ""
+
+msgid "Follow all new requests"
+msgstr ""
+
+msgid "Follow new successful responses"
+msgstr ""
+
+msgid "Follow requests to {{public_body_name}}"
+msgstr ""
+
+msgid "Follow these requests"
+msgstr ""
+
+msgid "Follow things matching this search"
+msgstr ""
+
+msgid "Follow this authority"
+msgstr ""
+
+msgid "Follow this link to see the request:"
+msgstr ""
+
+msgid "Follow this person"
+msgstr ""
+
+msgid "Follow this request"
+msgstr ""
+
+msgid "Follow up"
+msgstr ""
+
+msgid "Follow up message sent by requester"
+msgstr ""
+
+msgid "Follow up messages to existing requests are sent to "
+msgstr ""
+
+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 ""
+
+msgid "Follow us on twitter"
+msgstr ""
+
+msgid "Followups cannot be sent for this request, as it was made externally, and published here by {{public_body_name}} on the requester's behalf."
+msgstr ""
+
+msgid "For an unknown reason, it is not possible to make a request to this authority."
+msgstr ""
+
+msgid "Forgotten your password?"
+msgstr ""
+
+msgid "Found {{count}} public authority {{description}}"
+msgid_plural "Found {{count}} public authorities {{description}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Freedom of Information"
+msgstr ""
+
+msgid "Freedom of Information Act"
+msgstr ""
+
+msgid "Freedom of Information law does not apply to this authority, so you cannot make\\n a request to it."
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to"
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to this authority.Follow up messages to existing requests are sent to "
+msgstr ""
+
+msgid "Freedom of Information requests made"
+msgstr ""
+
+msgid "Freedom of Information requests made by this person"
+msgstr ""
+
+msgid "Freedom of Information requests made by you"
+msgstr ""
+
+msgid "Freedom of Information requests made using this site"
+msgstr ""
+
+msgid "Freedom of information requests to"
+msgstr ""
+
+msgid "From"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "From:"
+msgstr ""
+
+msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE"
+msgstr ""
+
+msgid "Handled by post."
+msgstr ""
+
+msgid "Has tag string/has tag string tag"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Model"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Name"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Value"
+msgstr ""
+
+msgid "Hello! You can make Freedom of Information requests within {{country_name}} at {{link_to_website}}"
+msgstr ""
+
+msgid "Hello, {{username}}!"
+msgstr ""
+
+msgid "Help"
+msgstr ""
+
+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 ""
+
+msgid "Here is the message you wrote, in case you would like to copy the text and save it for later."
+msgstr ""
+
+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 ""
+
+msgid "Hide request"
+msgstr ""
+
+msgid "Holiday"
+msgstr ""
+
+msgid "Holiday|Day"
+msgstr ""
+
+msgid "Holiday|Description"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "Home page"
+msgstr ""
+
+msgid "Home page of authority"
+msgstr ""
+
+msgid "However, you have the right to request environmental\\n information under a different law"
+msgstr ""
+
+msgid "Human health and safety"
+msgstr ""
+
+msgid "I am asking for <strong>new information</strong>"
+msgstr ""
+
+msgid "I am requesting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'."
+msgstr ""
+
+msgid "I don't like these ones &mdash; give me some more!"
+msgstr ""
+
+msgid "I don't want to do any more tidying now!"
+msgstr ""
+
+msgid "I like this request"
+msgstr ""
+
+msgid "I would like to <strong>withdraw this request</strong>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for my information\\n <small>(maybe you got an acknowledgement)</small>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for the internal review"
+msgstr ""
+
+msgid "I'm waiting for an <strong>internal review</strong> response"
+msgstr ""
+
+msgid "I've been asked to <strong>clarify</strong> my request"
+msgstr ""
+
+msgid "I've received <strong>all the information"
+msgstr ""
+
+msgid "I've received <strong>some of the information</strong>"
+msgstr ""
+
+msgid "I've received an <strong>error message</strong>"
+msgstr ""
+
+msgid "I've received an error message"
+msgstr ""
+
+msgid "Id"
+msgstr ""
+
+msgid "If the address is wrong, or you know a better address, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "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."
+msgstr ""
+
+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 ""
+
+msgid "If you are dissatisfied by the response you got from\\n the public authority, you have the right to\\n complain (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "If you are still having trouble, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the request."
+msgstr ""
+
+msgid "If you are thinking of using a pseudonym,\\n please <a href=\"{{url}}\">read this first</a>."
+msgstr ""
+
+msgid "If you are {{user_link}}, please"
+msgstr ""
+
+msgid "If you believe this request is not suitable, you can report it for attention by the site administrators"
+msgstr ""
+
+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 ""
+
+msgid "If you can, scan in or photograph the response, and <strong>send us\\n a copy to upload</strong>."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "If you reply to this message it will go directly to {{user_name}}, who will\\nlearn your email address. Only reply if that is okay."
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "If you're new to {{site_name}}"
+msgstr ""
+
+msgid "If you've used {{site_name}} before"
+msgstr ""
+
+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 ""
+
+msgid "Incoming email address"
+msgstr ""
+
+msgid "Incoming message"
+msgstr ""
+
+msgid "IncomingMessage|Cached attachment text clipped"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text folded"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text unfolded"
+msgstr ""
+
+msgid "IncomingMessage|Last parsed"
+msgstr ""
+
+msgid "IncomingMessage|Mail from"
+msgstr ""
+
+msgid "IncomingMessage|Mail from domain"
+msgstr ""
+
+msgid "IncomingMessage|Sent at"
+msgstr ""
+
+msgid "IncomingMessage|Subject"
+msgstr ""
+
+msgid "IncomingMessage|Valid to reply to"
+msgstr ""
+
+msgid "Individual requests"
+msgstr ""
+
+msgid "Info request"
+msgstr ""
+
+msgid "Info request event"
+msgstr ""
+
+msgid "InfoRequestEvent|Calculated state"
+msgstr ""
+
+msgid "InfoRequestEvent|Described state"
+msgstr ""
+
+msgid "InfoRequestEvent|Event type"
+msgstr ""
+
+msgid "InfoRequestEvent|Last described at"
+msgstr ""
+
+msgid "InfoRequestEvent|Params yaml"
+msgstr ""
+
+msgid "InfoRequestEvent|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Allow new responses from"
+msgstr ""
+
+msgid "InfoRequest|Attention requested"
+msgstr ""
+
+msgid "InfoRequest|Awaiting description"
+msgstr ""
+
+msgid "InfoRequest|Comments allowed"
+msgstr ""
+
+msgid "InfoRequest|Described state"
+msgstr ""
+
+msgid "InfoRequest|External url"
+msgstr ""
+
+msgid "InfoRequest|External user name"
+msgstr ""
+
+msgid "InfoRequest|Handle rejected responses"
+msgstr ""
+
+msgid "InfoRequest|Idhash"
+msgstr ""
+
+msgid "InfoRequest|Law used"
+msgstr ""
+
+msgid "InfoRequest|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Title"
+msgstr ""
+
+msgid "InfoRequest|Url title"
+msgstr ""
+
+msgid "Information not held."
+msgstr ""
+
+msgid "Information on emissions and discharges (e.g. noise, energy,\\n radiation, waste materials)"
+msgstr ""
+
+msgid "Internal review request"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Items matching the following conditions are currently displayed on your wall."
+msgstr ""
+
+msgid "Items sent in last month"
+msgstr ""
+
+msgid "Joined in"
+msgstr ""
+
+msgid "Joined {{site_name}} in"
+msgstr ""
+
+msgid "Just one more thing"
+msgstr ""
+
+msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Keywords"
+msgstr ""
+
+msgid "Last authority viewed: "
+msgstr ""
+
+msgid "Last request viewed: "
+msgstr ""
+
+msgid "Let us know what you were doing when this message\\nappeared and your browser and operating system type and version."
+msgstr ""
+
+msgid "Link to this"
+msgstr ""
+
+msgid "List all"
+msgstr ""
+
+msgid "List of all authorities (CSV)"
+msgstr ""
+
+msgid "Listing FOI requests"
+msgstr ""
+
+msgid "Listing public authorities"
+msgstr ""
+
+msgid "Listing public authorities matching '{{query}}'"
+msgstr ""
+
+msgid "Listing tracks"
+msgstr ""
+
+msgid "Listing users"
+msgstr ""
+
+msgid "Log in to download a zip file of {{info_request_title}}"
+msgstr ""
+
+msgid "Log into the admin interface"
+msgstr ""
+
+msgid "Long overdue."
+msgstr ""
+
+msgid "Made between"
+msgstr ""
+
+msgid "Mail server log"
+msgstr ""
+
+msgid "Mail server log done"
+msgstr ""
+
+msgid "MailServerLogDone|Filename"
+msgstr ""
+
+msgid "MailServerLogDone|Last stat"
+msgstr ""
+
+msgid "MailServerLog|Line"
+msgstr ""
+
+msgid "MailServerLog|Order"
+msgstr ""
+
+msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>"
+msgstr ""
+
+msgid "Make a request"
+msgstr ""
+
+msgid "Make a request to this authority"
+msgstr ""
+
+msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Make and browse Freedom of Information (FOI) requests"
+msgstr ""
+
+msgid "Make your own request"
+msgstr ""
+
+msgid "Many requests"
+msgstr ""
+
+msgid "Message"
+msgstr ""
+
+msgid "Message sent using {{site_name}} contact form, "
+msgstr ""
+
+msgid "Missing contact details for '"
+msgstr ""
+
+msgid "More about this authority"
+msgstr ""
+
+msgid "More requests..."
+msgstr ""
+
+msgid "More similar requests"
+msgstr ""
+
+msgid "More successful requests..."
+msgstr ""
+
+msgid "My profile"
+msgstr ""
+
+msgid "My request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "My requests"
+msgstr ""
+
+msgid "My wall"
+msgstr ""
+
+msgid "Name can't be blank"
+msgstr ""
+
+msgid "Name is already taken"
+msgstr ""
+
+msgid "New Freedom of Information requests"
+msgstr ""
+
+msgid "New censor rule"
+msgstr ""
+
+msgid "New e-mail:"
+msgstr ""
+
+msgid "New email doesn't look like a valid address"
+msgstr ""
+
+msgid "New password:"
+msgstr ""
+
+msgid "New password: (again)"
+msgstr ""
+
+msgid "New response to '{{title}}'"
+msgstr ""
+
+msgid "New response to your FOI request - "
+msgstr ""
+
+msgid "New response to your request"
+msgstr ""
+
+msgid "New response to {{law_used_short}} request"
+msgstr ""
+
+msgid "New updates for the request '{{request_title}}'"
+msgstr ""
+
+msgid "Newest results first"
+msgstr ""
+
+msgid "Next"
+msgstr ""
+
+msgid "Next, crop your photo &gt;&gt;"
+msgstr ""
+
+msgid "No requests of this sort yet."
+msgstr ""
+
+msgid "No results found."
+msgstr ""
+
+msgid "No similar requests found."
+msgstr ""
+
+msgid "No tracked things found."
+msgstr ""
+
+msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
+msgstr ""
+
+msgid "None found."
+msgstr ""
+
+msgid "None made."
+msgstr ""
+
+msgid "Not a valid FOI request"
+msgstr ""
+
+msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf."
+msgstr ""
+
+msgid "Now check your email!"
+msgstr ""
+
+msgid "Now preview your annotation"
+msgstr ""
+
+msgid "Now preview your follow up"
+msgstr ""
+
+msgid "Now preview your message asking for an internal review"
+msgstr ""
+
+msgid "OR remove the existing photo"
+msgstr ""
+
+msgid "Offensive? Unsuitable?"
+msgstr ""
+
+msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now."
+msgstr ""
+
+msgid "Old e-mail:"
+msgstr ""
+
+msgid "Old email address isn't the same as the address of the account you are logged in with"
+msgstr ""
+
+msgid "Old email doesn't look like a valid address"
+msgstr ""
+
+msgid "On this page"
+msgstr ""
+
+msgid "One FOI request found"
+msgstr ""
+
+msgid "One person found"
+msgstr ""
+
+msgid "One public authority found"
+msgstr ""
+
+msgid "Only put in abbreviations which are really used, otherwise leave blank. Short or long name is used in the URL – don't worry about breaking URLs through renaming, as the history is used to redirect"
+msgstr ""
+
+msgid "Only requests made using {{site_name}} are shown."
+msgstr ""
+
+msgid "Only the authority can reply to this request, and I don't recognise the address this reply was sent from"
+msgstr ""
+
+msgid "Only the authority can reply to this request, but there is no \"From\" address to check against"
+msgstr ""
+
+msgid "Or search in their website for this information."
+msgstr ""
+
+msgid "Original request sent"
+msgstr ""
+
+msgid "Other:"
+msgstr ""
+
+msgid "Outgoing message"
+msgstr ""
+
+msgid "OutgoingMessage|Body"
+msgstr ""
+
+msgid "OutgoingMessage|Last sent at"
+msgstr ""
+
+msgid "OutgoingMessage|Message type"
+msgstr ""
+
+msgid "OutgoingMessage|Status"
+msgstr ""
+
+msgid "OutgoingMessage|What doing"
+msgstr ""
+
+msgid "Partially successful."
+msgstr ""
+
+msgid "Password is not correct"
+msgstr ""
+
+msgid "Password:"
+msgstr ""
+
+msgid "Password: (again)"
+msgstr ""
+
+msgid "Paste this link into emails, tweets, and anywhere else:"
+msgstr ""
+
+msgid "People"
+msgstr ""
+
+msgid "People {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Photo of you:"
+msgstr ""
+
+msgid "Plans and administrative measures that affect these matters"
+msgstr ""
+
+msgid "Play the request categorisation game"
+msgstr ""
+
+msgid "Play the request categorisation game!"
+msgstr ""
+
+msgid "Please"
+msgstr ""
+
+msgid "Please <a href=\"{{url}}\">get in touch</a> with us so we can fix it."
+msgstr ""
+
+msgid "Please <strong>answer the question above</strong> so we know whether the "
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Please ask for environmental information only"
+msgstr ""
+
+msgid "Please check the URL (i.e. the long code of letters and numbers) is copied\\ncorrectly from your email."
+msgstr ""
+
+msgid "Please choose a file containing your photo."
+msgstr ""
+
+msgid "Please choose a reason"
+msgstr ""
+
+msgid "Please choose what sort of reply you are making."
+msgstr ""
+
+msgid "Please choose whether or not you got some of the information that you wanted."
+msgstr ""
+
+msgid "Please click on the link below to cancel or alter these emails."
+msgstr ""
+
+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 ""
+
+msgid "Please click on the link below to confirm your email address."
+msgstr ""
+
+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 ""
+
+msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
+msgstr ""
+
+msgid "Please enable \"cookies\" to carry on"
+msgstr ""
+
+msgid "Please enter a password"
+msgstr ""
+
+msgid "Please enter a subject"
+msgstr ""
+
+msgid "Please enter a summary of your request"
+msgstr ""
+
+msgid "Please enter a valid email address"
+msgstr ""
+
+msgid "Please enter the message you want to send"
+msgstr ""
+
+msgid "Please enter the same password twice"
+msgstr ""
+
+msgid "Please enter your annotation"
+msgstr ""
+
+msgid "Please enter your email address"
+msgstr ""
+
+msgid "Please enter your follow up message"
+msgstr ""
+
+msgid "Please enter your letter requesting information"
+msgstr ""
+
+msgid "Please enter your name"
+msgstr ""
+
+msgid "Please enter your name, not your email address, in the name field."
+msgstr ""
+
+msgid "Please enter your new email address"
+msgstr ""
+
+msgid "Please enter your old email address"
+msgstr ""
+
+msgid "Please enter your password"
+msgstr ""
+
+msgid "Please give details explaining why you want a review"
+msgstr ""
+
+msgid "Please keep it shorter than 500 characters"
+msgstr ""
+
+msgid "Please keep the summary short, like in the subject of an email. You can use a phrase, rather than a full sentence."
+msgstr ""
+
+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 ""
+
+msgid "Please pass this on to the person who conducts Freedom of Information reviews."
+msgstr ""
+
+msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not."
+msgstr ""
+
+msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature"
+msgstr ""
+
+msgid "Please sign in as "
+msgstr ""
+
+msgid "Please sign in or make a new account."
+msgstr ""
+
+msgid "Please type a message and/or choose a file containing your response."
+msgstr ""
+
+msgid "Please use this email address for all replies to this request:"
+msgstr ""
+
+msgid "Please write a summary with some text in it"
+msgstr ""
+
+msgid "Please write the summary using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your annotation using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your follow up message containing the necessary clarifications below."
+msgstr ""
+
+msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful."
+msgstr ""
+
+msgid "Possibly related requests:"
+msgstr ""
+
+msgid "Post annotation"
+msgstr ""
+
+msgid "Post redirect"
+msgstr ""
+
+msgid "PostRedirect|Circumstance"
+msgstr ""
+
+msgid "PostRedirect|Email token"
+msgstr ""
+
+msgid "PostRedirect|Post params yaml"
+msgstr ""
+
+msgid "PostRedirect|Reason params yaml"
+msgstr ""
+
+msgid "PostRedirect|Token"
+msgstr ""
+
+msgid "PostRedirect|Uri"
+msgstr ""
+
+msgid "Posted on {{date}} by {{author}}"
+msgstr ""
+
+msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>"
+msgstr ""
+
+msgid "Prev"
+msgstr ""
+
+msgid "Preview follow up to '"
+msgstr ""
+
+msgid "Preview new annotation on '{{info_request_title}}'"
+msgstr ""
+
+msgid "Preview your annotation"
+msgstr ""
+
+msgid "Preview your message"
+msgstr ""
+
+msgid "Preview your public request"
+msgstr ""
+
+msgid "Profile photo"
+msgstr ""
+
+msgid "ProfilePhoto|Data"
+msgstr ""
+
+msgid "ProfilePhoto|Draft"
+msgstr ""
+
+msgid "Public authorities"
+msgstr ""
+
+msgid "Public authorities - {{description}}"
+msgstr ""
+
+msgid "Public authorities {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Public authority – {{name}}"
+msgstr ""
+
+msgid "Public body"
+msgstr ""
+
+msgid "Public notes"
+msgstr ""
+
+msgid "Public page"
+msgstr ""
+
+msgid "Public page not available"
+msgstr ""
+
+msgid "PublicBody|Api key"
+msgstr ""
+
+msgid "PublicBody|Disclosure log"
+msgstr ""
+
+msgid "PublicBody|First letter"
+msgstr ""
+
+msgid "PublicBody|Home page"
+msgstr ""
+
+msgid "PublicBody|Info requests count"
+msgstr ""
+
+msgid "PublicBody|Last edit comment"
+msgstr ""
+
+msgid "PublicBody|Last edit editor"
+msgstr ""
+
+msgid "PublicBody|Name"
+msgstr ""
+
+msgid "PublicBody|Notes"
+msgstr ""
+
+msgid "PublicBody|Publication scheme"
+msgstr ""
+
+msgid "PublicBody|Request email"
+msgstr ""
+
+msgid "PublicBody|Short name"
+msgstr ""
+
+msgid "PublicBody|Url name"
+msgstr ""
+
+msgid "PublicBody|Version"
+msgstr ""
+
+msgid "Publication scheme"
+msgstr ""
+
+msgid "Publication scheme URL"
+msgstr ""
+
+msgid "Purge request"
+msgstr ""
+
+msgid "PurgeRequest|Model"
+msgstr ""
+
+msgid "PurgeRequest|Url"
+msgstr ""
+
+msgid "RSS feed"
+msgstr ""
+
+msgid "RSS feed of updates"
+msgstr ""
+
+msgid "Re-edit this annotation"
+msgstr ""
+
+msgid "Re-edit this message"
+msgstr ""
+
+msgid "Read about <a href=\"{{advanced_search_url}}\">advanced search operators</a>, such as proximity and wildcards."
+msgstr ""
+
+msgid "Read blog"
+msgstr ""
+
+msgid "Received an error message, such as delivery failure."
+msgstr ""
+
+msgid "Recently described results first"
+msgstr ""
+
+msgid "Refused."
+msgstr ""
+
+msgid "Remember me</label> (keeps you signed in longer;\\n do not use on a public computer) "
+msgstr ""
+
+msgid "Report abuse"
+msgstr ""
+
+msgid "Report an offensive or unsuitable request"
+msgstr ""
+
+msgid "Report request"
+msgstr ""
+
+msgid "Report this request"
+msgstr ""
+
+msgid "Reported for administrator attention."
+msgstr ""
+
+msgid "Request an internal review"
+msgstr ""
+
+msgid "Request an internal review from {{person_or_body}}"
+msgstr ""
+
+msgid "Request email"
+msgstr ""
+
+msgid "Request has been removed"
+msgstr ""
+
+msgid "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "Request to {{public_body_name}} by {{info_request_user}}. Annotated by {{event_comment_user}} on {{date}}."
+msgstr ""
+
+msgid "Requested from {{public_body_name}} by {{info_request_user}} on {{date}}"
+msgstr ""
+
+msgid "Requested on {{date}}"
+msgstr ""
+
+msgid "Requests for personal information and vexatious requests are not considered valid for FOI purposes (<a href=\"/help/about\">read more</a>)."
+msgstr ""
+
+msgid "Requests or responses matching your saved search"
+msgstr ""
+
+msgid "Respond by email"
+msgstr ""
+
+msgid "Respond to request"
+msgstr ""
+
+msgid "Respond to the FOI request"
+msgstr ""
+
+msgid "Respond using the web"
+msgstr ""
+
+msgid "Response"
+msgstr ""
+
+msgid "Response from a public authority"
+msgstr ""
+
+msgid "Response to '{{title}}'"
+msgstr ""
+
+msgid "Response to this request is <strong>delayed</strong>."
+msgstr ""
+
+msgid "Response to this request is <strong>long overdue</strong>."
+msgstr ""
+
+msgid "Response to your request"
+msgstr ""
+
+msgid "Response:"
+msgstr ""
+
+msgid "Restrict to"
+msgstr ""
+
+msgid "Results page {{page_number}}"
+msgstr ""
+
+msgid "Save"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search Freedom of Information requests, public authorities and users"
+msgstr ""
+
+msgid "Search contributions by this person"
+msgstr ""
+
+msgid "Search for words in:"
+msgstr ""
+
+msgid "Search in"
+msgstr ""
+
+msgid "Search over<br/>\\n <strong>{{number_of_requests}} requests</strong> <span>and</span><br/>\\n <strong>{{number_of_authorities}} authorities</strong>"
+msgstr ""
+
+msgid "Search queries"
+msgstr ""
+
+msgid "Search results"
+msgstr ""
+
+msgid "Search the site to find what you were looking for."
+msgstr ""
+
+msgid "Search within the {{count}} Freedom of Information requests to {{public_body_name}}"
+msgid_plural "Search within the {{count}} Freedom of Information requests made to {{public_body_name}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Search your contributions"
+msgstr ""
+
+msgid "See bounce message"
+msgstr ""
+
+msgid "Select one to see more information about the authority."
+msgstr ""
+
+msgid "Select the authority to write to"
+msgstr ""
+
+msgid "Send a followup"
+msgstr ""
+
+msgid "Send a message to "
+msgstr ""
+
+msgid "Send a public follow up message to {{person_or_body}}"
+msgstr ""
+
+msgid "Send a public reply to {{person_or_body}}"
+msgstr ""
+
+msgid "Send follow up to '{{title}}'"
+msgstr ""
+
+msgid "Send message"
+msgstr ""
+
+msgid "Send message to "
+msgstr ""
+
+msgid "Send request"
+msgstr ""
+
+msgid "Set your profile photo"
+msgstr ""
+
+msgid "Short name"
+msgstr ""
+
+msgid "Short name is already taken"
+msgstr ""
+
+msgid "Show most relevant results first"
+msgstr ""
+
+msgid "Show only..."
+msgstr ""
+
+msgid "Showing"
+msgstr ""
+
+msgid "Sign in"
+msgstr ""
+
+msgid "Sign in or make a new account"
+msgstr ""
+
+msgid "Sign in or sign up"
+msgstr ""
+
+msgid "Sign out"
+msgstr ""
+
+msgid "Sign up"
+msgstr ""
+
+msgid "Similar requests"
+msgstr ""
+
+msgid "Simple search"
+msgstr ""
+
+msgid "Some notes have been added to your FOI request - "
+msgstr ""
+
+msgid "Some of the information requested has been received"
+msgstr ""
+
+msgid "Some people who've made requests haven't let us know whether they were\\nsuccessful or not. We need <strong>your</strong> help &ndash;\\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 ""
+
+msgid "Somebody added a note to your FOI request - "
+msgstr ""
+
+msgid "Someone has updated the status of your request"
+msgstr ""
+
+msgid "Someone, perhaps you, just tried to change their email address on\\n{{site_name}} from {{old_email}} to {{new_email}}."
+msgstr ""
+
+msgid "Sorry - you cannot respond to this request via {{site_name}}, because this is a copy of the request originally at {{link_to_original_request}}."
+msgstr ""
+
+msgid "Sorry, but only {{user_name}} is allowed to do that."
+msgstr ""
+
+msgid "Sorry, there was a problem processing this page"
+msgstr ""
+
+msgid "Sorry, we couldn't find that page"
+msgstr ""
+
+msgid "Special note for this authority!"
+msgstr ""
+
+msgid "Start now &raquo;"
+msgstr ""
+
+msgid "Start your own blog"
+msgstr ""
+
+msgid "Stay up to date"
+msgstr ""
+
+msgid "Still awaiting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "Subject"
+msgstr ""
+
+msgid "Subject:"
+msgstr ""
+
+msgid "Submit"
+msgstr ""
+
+msgid "Submit status"
+msgstr ""
+
+msgid "Submit status and send message"
+msgstr ""
+
+msgid "Subscribe to blog"
+msgstr ""
+
+msgid "Successful Freedom of Information requests"
+msgstr ""
+
+msgid "Successful."
+msgstr ""
+
+msgid "Suggest how the requester can find the <strong>rest of the information</strong>."
+msgstr ""
+
+msgid "Summary:"
+msgstr ""
+
+msgid "Table of statuses"
+msgstr ""
+
+msgid "Table of varieties"
+msgstr ""
+
+msgid "Tags"
+msgstr ""
+
+msgid "Tags (separated by a space):"
+msgstr ""
+
+msgid "Tags:"
+msgstr ""
+
+msgid "Technical details"
+msgstr ""
+
+msgid "Thank you for helping us keep the site tidy!"
+msgstr ""
+
+msgid "Thank you for making an annotation!"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Thank you for updating this request!"
+msgstr ""
+
+msgid "Thank you for updating your profile photo"
+msgstr ""
+
+msgid "Thank you! We'll look into what happened and try and fix it up."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "That doesn't look like a valid email address. Please check you have typed it correctly."
+msgstr ""
+
+msgid "The <strong>review has finished</strong> and overall:"
+msgstr ""
+
+msgid "The Freedom of Information Act <strong>does not apply</strong> to"
+msgstr ""
+
+msgid "The accounts have been left as they previously were."
+msgstr ""
+
+msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)"
+msgstr ""
+
+msgid "The authority only has a <strong>paper copy</strong> of the information."
+msgstr ""
+
+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 ""
+
+msgid "The authority would like to / has <strong>responded by post</strong> to this request."
+msgstr ""
+
+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 ""
+
+msgid "The page doesn't exist. Things you can try now:"
+msgstr ""
+
+msgid "The public authority does not have the information requested"
+msgstr ""
+
+msgid "The public authority would like part of the request explained"
+msgstr ""
+
+msgid "The public authority would like to / has responded by post"
+msgstr ""
+
+msgid "The request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "The request has been updated since you originally loaded this page. Please check for any new incoming messages below, and try again."
+msgstr ""
+
+msgid "The request is <strong>waiting for clarification</strong>."
+msgstr ""
+
+msgid "The request was <strong>partially successful</strong>."
+msgstr ""
+
+msgid "The request was <strong>refused</strong> by"
+msgstr ""
+
+msgid "The request was <strong>successful</strong>."
+msgstr ""
+
+msgid "The request was refused by the public authority"
+msgstr ""
+
+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=\"{{url}}\">contact us</a> if you have any questions."
+msgstr ""
+
+msgid "The requester has abandoned this request for some reason"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made."
+msgstr ""
+
+msgid "The {{site_name}} team."
+msgstr ""
+
+msgid "Then you can cancel the alert."
+msgstr ""
+
+msgid "Then you can cancel the alerts."
+msgstr ""
+
+msgid "Then you can change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Then you can change your password on {{site_name}}"
+msgstr ""
+
+msgid "Then you can classify the FOI response you have got from "
+msgstr ""
+
+msgid "Then you can download a zip file of {{info_request_title}}."
+msgstr ""
+
+msgid "Then you can log into the administrative interface"
+msgstr ""
+
+msgid "Then you can play the request categorisation game."
+msgstr ""
+
+msgid "Then you can report the request '{{title}}'"
+msgstr ""
+
+msgid "Then you can send a message to "
+msgstr ""
+
+msgid "Then you can sign in to {{site_name}}"
+msgstr ""
+
+msgid "Then you can update the status of your request to "
+msgstr ""
+
+msgid "Then you can upload an FOI response. "
+msgstr ""
+
+msgid "Then you can write follow up message to "
+msgstr ""
+
+msgid "Then you can write your reply to "
+msgstr ""
+
+msgid "Then you will be following all new FOI requests."
+msgstr ""
+
+msgid "Then you will be notified whenever '{{user_name}}' requests something or gets a response."
+msgstr ""
+
+msgid "Then you will be notified whenever a new request or response matches your search."
+msgstr ""
+
+msgid "Then you will be notified whenever an FOI request succeeds."
+msgstr ""
+
+msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
+msgstr ""
+
+msgid "Then you will be updated whenever the request '{{request_title}}' is updated."
+msgstr ""
+
+msgid "Then you'll be allowed to send FOI requests."
+msgstr ""
+
+msgid "Then your FOI request to {{public_body_name}} will be sent."
+msgstr ""
+
+msgid "Then your annotation to {{info_request_title}} will be posted."
+msgstr ""
+
+msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote."
+msgstr ""
+
+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 ""
+
+msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>."
+msgstr ""
+
+msgid "There is {{count}} person following this request"
+msgid_plural "There are {{count}} people following this request"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "There was a <strong>delivery error</strong> or similar, which needs fixing by the {{site_name}} team."
+msgstr ""
+
+msgid "There was an error with the words you entered, please try again."
+msgstr ""
+
+msgid "There were no requests matching your query."
+msgstr ""
+
+msgid "There were no results matching your query."
+msgstr ""
+
+msgid "They are going to reply <strong>by post</strong>"
+msgstr ""
+
+msgid "They do <strong>not have</strong> the information <small>(maybe they say who does)</small>"
+msgstr ""
+
+msgid "They have been given the following explanation:"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}}, \\nas required by law"
+msgstr ""
+
+msgid "Things to do with this request"
+msgstr ""
+
+msgid "Things you're following"
+msgstr ""
+
+msgid "This authority no longer exists, so you cannot make a request to it."
+msgstr ""
+
+msgid "This comment has been hidden. See annotations to\\n find out why. If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This covers a very wide spectrum of information about the state of\\n the <strong>natural and built environment</strong>, such as:"
+msgstr ""
+
+msgid "This external request has been hidden"
+msgstr ""
+
+msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}"
+msgstr ""
+
+msgid "This is an HTML version of an attachment to the Freedom of Information request"
+msgstr ""
+
+msgid "This is because {{title}} is an old request that has been\\nmarked to no longer receive responses."
+msgstr ""
+
+msgid "This is the first version."
+msgstr ""
+
+msgid "This is your own request, so you will be automatically emailed when new responses arrive."
+msgstr ""
+
+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=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This particular request is finished:"
+msgstr ""
+
+msgid "This person has made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "This person's annotations"
+msgstr ""
+
+msgid "This person's {{count}} Freedom of Information request"
+msgid_plural "This person's {{count}} Freedom of Information requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "This person's {{count}} annotation"
+msgid_plural "This person's {{count}} annotations"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "This request <strong>requires administrator attention</strong>"
+msgstr ""
+
+msgid "This request has already been reported for administrator attention"
+msgstr ""
+
+msgid "This request has an <strong>unknown status</strong>."
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
+msgstr ""
+
+msgid "This request has been <strong>reported</strong> as needing administrator attention (perhaps because it is vexatious, or a request for personal information)"
+msgstr ""
+
+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 ""
+
+msgid "This request has been marked for review by the site administrators, who have not hidden it at this time. If you believe it should be hidden, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "This request has been reported for administrator attention"
+msgstr ""
+
+msgid "This request has been set by an administrator to \"allow new responses from nobody\""
+msgstr ""
+
+msgid "This request has had an unusual response, and <strong>requires attention</strong> from the {{site_name}} team."
+msgstr ""
+
+msgid "This request has prominence 'hidden'. You can only see it because you are logged\\n in as a super user."
+msgstr ""
+
+msgid "This request is hidden, so that only you the requester can see it. Please\\n <a href=\"{{url}}\">contact us</a> if you are not sure why."
+msgstr ""
+
+msgid "This request is still in progress:"
+msgstr ""
+
+msgid "This request requires administrator attention"
+msgstr ""
+
+msgid "This request was not made via {{site_name}}"
+msgstr ""
+
+msgid "This response has been hidden. See annotations to find out why.\\n If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+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 ""
+
+msgid "This user has been banned from {{site_name}} "
+msgstr ""
+
+msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
+msgstr ""
+
+msgid "To cancel these alerts"
+msgstr ""
+
+msgid "To cancel this alert"
+msgstr ""
+
+msgid "To carry on, you need to sign in or make an account. Unfortunately, there\\nwas a technical problem trying to do this."
+msgstr ""
+
+msgid "To change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "To classify the response to this FOI request"
+msgstr ""
+
+msgid "To do that please send a private email to "
+msgstr ""
+
+msgid "To do this, first click on the link below."
+msgstr ""
+
+msgid "To download the zip file"
+msgstr ""
+
+msgid "To follow all successful requests"
+msgstr ""
+
+msgid "To follow new requests"
+msgstr ""
+
+msgid "To follow requests and responses matching your search"
+msgstr ""
+
+msgid "To follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "To follow requests made using {{site_name}} to the public authority '{{public_body_name}}'"
+msgstr ""
+
+msgid "To follow the request '{{request_title}}'"
+msgstr ""
+
+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 ""
+
+msgid "To let everyone know, follow this link and then select the appropriate box."
+msgstr ""
+
+msgid "To log into the administrative interface"
+msgstr ""
+
+msgid "To play the request categorisation game"
+msgstr ""
+
+msgid "To post your annotation"
+msgstr ""
+
+msgid "To reply to "
+msgstr ""
+
+msgid "To report this request"
+msgstr ""
+
+msgid "To send a follow up message to "
+msgstr ""
+
+msgid "To send a message to "
+msgstr ""
+
+msgid "To send your FOI request"
+msgstr ""
+
+msgid "To update the status of this FOI request"
+msgstr ""
+
+msgid "To upload a response, you must be logged in using an email address from "
+msgstr ""
+
+msgid "To use the advanced search, combine phrases and labels as described in the search tips below."
+msgstr ""
+
+msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words."
+msgstr ""
+
+msgid "To view the response, click on the link below."
+msgstr ""
+
+msgid "To {{public_body_link_absolute}}"
+msgstr ""
+
+msgid "To:"
+msgstr ""
+
+msgid "Today"
+msgstr ""
+
+msgid "Too many requests"
+msgstr ""
+
+msgid "Top search results:"
+msgstr ""
+
+msgid "Track thing"
+msgstr ""
+
+msgid "Track this person"
+msgstr ""
+
+msgid "Track this search"
+msgstr ""
+
+msgid "TrackThing|Track medium"
+msgstr ""
+
+msgid "TrackThing|Track query"
+msgstr ""
+
+msgid "TrackThing|Track type"
+msgstr ""
+
+msgid "Turn off email alerts"
+msgstr ""
+
+msgid "Tweet this request"
+msgstr ""
+
+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 ""
+
+msgid "URL name can't be blank"
+msgstr ""
+
+msgid "Unable to change email address on {{site_name}}"
+msgstr ""
+
+msgid "Unable to send a reply to {{username}}"
+msgstr ""
+
+msgid "Unable to send follow up message to {{username}}"
+msgstr ""
+
+msgid "Unexpected search result type"
+msgstr ""
+
+msgid "Unexpected search result type "
+msgstr ""
+
+msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out."
+msgstr ""
+
+msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for"
+msgstr ""
+
+msgid "Unknown"
+msgstr ""
+
+msgid "Unsubscribe"
+msgstr ""
+
+msgid "Unusual response."
+msgstr ""
+
+msgid "Update the status of this request"
+msgstr ""
+
+msgid "Update the status of your request to "
+msgstr ""
+
+msgid "Upload FOI response"
+msgstr ""
+
+msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
+msgstr ""
+
+msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Liverpool City Council\"</code></strong>"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User info request sent alert"
+msgstr ""
+
+msgid "User – {{name}}"
+msgstr ""
+
+msgid "UserInfoRequestSentAlert|Alert type"
+msgstr ""
+
+msgid "User|About me"
+msgstr ""
+
+msgid "User|Address"
+msgstr ""
+
+msgid "User|Admin level"
+msgstr ""
+
+msgid "User|Ban text"
+msgstr ""
+
+msgid "User|Dob"
+msgstr ""
+
+msgid "User|Email"
+msgstr ""
+
+msgid "User|Email bounce message"
+msgstr ""
+
+msgid "User|Email bounced at"
+msgstr ""
+
+msgid "User|Email confirmed"
+msgstr ""
+
+msgid "User|Hashed password"
+msgstr ""
+
+msgid "User|Last daily track email"
+msgstr ""
+
+msgid "User|Locale"
+msgstr ""
+
+msgid "User|Name"
+msgstr ""
+
+msgid "User|No limit"
+msgstr ""
+
+msgid "User|Receive email alerts"
+msgstr ""
+
+msgid "User|Salt"
+msgstr ""
+
+msgid "User|Url name"
+msgstr ""
+
+msgid "Version {{version}}"
+msgstr ""
+
+msgid "View FOI email address"
+msgstr ""
+
+msgid "View FOI email address for '{{public_body_name}}'"
+msgstr ""
+
+msgid "View FOI email address for {{public_body_name}}"
+msgstr ""
+
+msgid "View Freedom of Information requests made by {{user_name}}:"
+msgstr ""
+
+msgid "View and search requests"
+msgstr ""
+
+msgid "View authorities"
+msgstr ""
+
+msgid "View email"
+msgstr ""
+
+msgid "View requests"
+msgstr ""
+
+msgid "Waiting clarification."
+msgstr ""
+
+msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request."
+msgstr ""
+
+msgid "Waiting for the public authority to complete an internal review of their handling of the request"
+msgstr ""
+
+msgid "Waiting for the public authority to reply"
+msgstr ""
+
+msgid "Was the response you got to your FOI request any good?"
+msgstr ""
+
+msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We consider it to be vexatious, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We do not have a working request email address for this authority."
+msgstr ""
+
+msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}."
+msgstr ""
+
+msgid "We don't know whether the most recent response to this request contains\\n information or not\\n &ndash;\\n\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know."
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you or\\n the law tell us to (<a href=\"{{url}}\">details</a>). "
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We will not reveal your email addresses to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We're waiting for"
+msgstr ""
+
+msgid "We're waiting for someone to read"
+msgstr ""
+
+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 ""
+
+msgid "We've sent you an email, and you'll need to click the link in it before you can\\ncontinue."
+msgstr ""
+
+msgid "We've sent you an email, click the link in it, then you can change your password."
+msgstr ""
+
+msgid "What are you doing?"
+msgstr ""
+
+msgid "What best describes the status of this request now?"
+msgstr ""
+
+msgid "What information has been released?"
+msgstr ""
+
+msgid "What information has been requested?"
+msgstr ""
+
+msgid "When you get there, please update the status to say if the response \\ncontains any useful information."
+msgstr ""
+
+msgid "When you receive the paper response, please help\\n others find out what it says:"
+msgstr ""
+
+msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">reload this page</a> and file your new request."
+msgstr ""
+
+msgid "Which of these is happening?"
+msgstr ""
+
+msgid "Who can I request information from?"
+msgstr ""
+
+msgid "Withdrawn by the requester."
+msgstr ""
+
+msgid "Wk"
+msgstr ""
+
+msgid "Would you like to see a website like this in your country?"
+msgstr ""
+
+msgid "Write a reply"
+msgstr ""
+
+msgid "Write a reply to "
+msgstr ""
+
+msgid "Write your FOI follow up message to "
+msgstr ""
+
+msgid "Write your request in <strong>simple, precise language</strong>."
+msgstr ""
+
+msgid "You"
+msgstr ""
+
+msgid "You are already following new requests"
+msgstr ""
+
+msgid "You are already following requests to {{public_body_name}}"
+msgstr ""
+
+msgid "You are already following things matching this search"
+msgstr ""
+
+msgid "You are already following this person"
+msgstr ""
+
+msgid "You are already following this request"
+msgstr ""
+
+msgid "You are already following updates about {{track_description}}"
+msgstr ""
+
+msgid "You are currently receiving notification of new activity on your wall by email."
+msgstr ""
+
+msgid "You are following all new successful responses"
+msgstr ""
+
+msgid "You are no longer following {{track_description}}."
+msgstr ""
+
+msgid "You are now <a href=\"{{wall_url_user}}\">following</a> updates about {{track_description}}"
+msgstr ""
+
+msgid "You can <strong>complain</strong> by"
+msgstr ""
+
+msgid "You can change the requests and users you are following on <a href=\"{{profile_url}}\">your profile page</a>."
+msgstr ""
+
+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 ""
+
+msgid "You can only request information about the environment from this authority."
+msgstr ""
+
+msgid "You have a new response to the {{law_used_full}} request "
+msgstr ""
+
+msgid "You have found a bug. Please <a href=\"{{contact_url}}\">contact us</a> to tell us about the problem"
+msgstr ""
+
+msgid "You have hit the rate limit on new requests. Users are ordinarily limited to {{max_requests_per_user_per_day}} requests in any rolling 24-hour period. You will be able to make another request in {{can_make_another_request}}."
+msgstr ""
+
+msgid "You have made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "You have now changed the text about you on your profile."
+msgstr ""
+
+msgid "You have now changed your email address used on {{site_name}}"
+msgstr ""
+
+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 ""
+
+msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address."
+msgstr ""
+
+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 ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+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 ""
+
+msgid "You need to be logged in to change the text about you on your profile."
+msgstr ""
+
+msgid "You need to be logged in to change your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to clear your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to edit your profile."
+msgstr ""
+
+msgid "You need to be logged in to report a request for administrator attention"
+msgstr ""
+
+msgid "You previously submitted that exact follow up message for this request."
+msgstr ""
+
+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 ""
+
+msgid "You want to <strong>give your postal address</strong> to the authority in private."
+msgstr ""
+
+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 ""
+
+msgid "You will no longer be emailed updates for those alerts"
+msgstr ""
+
+msgid "You will now be emailed updates about {{track_description}}. <a href=\"{{change_email_alerts_url}}\">Prefer not to receive emails?</a>"
+msgstr ""
+
+msgid "You will only get an answer to your request if you follow up\\nwith the clarification."
+msgstr ""
+
+msgid "You will still be able to view it while logged in to the site. Please reply to this email if you would like to discuss this decision further."
+msgstr ""
+
+msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>"
+msgstr ""
+
+msgid "You're long overdue a response to your FOI request - "
+msgstr ""
+
+msgid "You're not following anything."
+msgstr ""
+
+msgid "You've now cleared your profile photo"
+msgstr ""
+
+msgid "Your <strong>name will appear publicly</strong>\\n (<a href=\"{{why_url}}\">why?</a>)\\n on this website and in search engines. If you\\n are thinking of using a pseudonym, please\\n <a href=\"{{help_url}}\">read this first</a>."
+msgstr ""
+
+msgid "Your annotations"
+msgstr ""
+
+msgid "Your details, including your email address, have not been given to anyone."
+msgstr ""
+
+msgid "Your e-mail:"
+msgstr ""
+
+msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message."
+msgstr ""
+
+msgid "Your follow up message has been sent on its way."
+msgstr ""
+
+msgid "Your internal review request has been sent on its way."
+msgstr ""
+
+msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon."
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent"
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent!"
+msgstr ""
+
+msgid "Your message will appear in <strong>search engines</strong>"
+msgstr ""
+
+msgid "Your name and annotation will appear in <strong>search engines</strong>."
+msgstr ""
+
+msgid "Your name, request and any responses will appear in <strong>search engines</strong>\\n (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "Your name:"
+msgstr ""
+
+msgid "Your original message is attached."
+msgstr ""
+
+msgid "Your password has been changed."
+msgstr ""
+
+msgid "Your password:"
+msgstr ""
+
+msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "Your request '{{request}}' at {{url}} has been reviewed by moderators."
+msgstr ""
+
+msgid "Your request on {{site_name}} hidden"
+msgstr ""
+
+msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
+msgstr ""
+
+msgid "Your request:"
+msgstr ""
+
+msgid "Your response to an FOI request was not delivered"
+msgstr ""
+
+msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
+msgstr ""
+
+msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request."
+msgstr ""
+
+msgid "Your {{count}} Freedom of Information request"
+msgid_plural "Your {{count}} Freedom of Information requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Your {{count}} annotation"
+msgid_plural "Your {{count}} annotations"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Your {{site_name}} email alert"
+msgstr ""
+
+msgid "Yours faithfully,"
+msgstr ""
+
+msgid "Yours sincerely,"
+msgstr ""
+
+msgid "Yours,"
+msgstr ""
+
+msgid "[FOI #{{request}} email]"
+msgstr ""
+
+msgid "[{{public_body}} request email]"
+msgstr ""
+
+msgid "[{{site_name}} contact email]"
+msgstr ""
+
+msgid "\\n\\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]"
+msgstr ""
+
+msgid "a one line summary of the information you are requesting, \\n\t\t\te.g."
+msgstr ""
+
+msgid "admin"
+msgstr ""
+
+msgid "alaveteli_foi:The software that runs {{site_name}}"
+msgstr ""
+
+msgid "all requests"
+msgstr ""
+
+msgid "also called {{public_body_short_name}}"
+msgstr ""
+
+msgid "an anonymous user"
+msgstr ""
+
+msgid "and"
+msgstr ""
+
+msgid "and update the status accordingly. Perhaps <strong>you</strong> might like to help out by doing that?"
+msgstr ""
+
+msgid "and update the status."
+msgstr ""
+
+msgid "and we'll suggest <strong>what to do next</strong>"
+msgstr ""
+
+msgid "any <a href=\"/list\">new requests</a>"
+msgstr ""
+
+msgid "any <a href=\"/list/successful\">successful requests</a>"
+msgstr ""
+
+msgid "anything"
+msgstr ""
+
+msgid "are long overdue."
+msgstr ""
+
+msgid "at"
+msgstr ""
+
+msgid "authorities"
+msgstr ""
+
+msgid "awaiting a response"
+msgstr ""
+
+msgid "beginning with ‘{{first_letter}}’"
+msgstr ""
+
+msgid "between two dates"
+msgstr ""
+
+msgid "but followupable"
+msgstr ""
+
+msgid "by"
+msgstr ""
+
+msgid "by <strong>{{date}}</strong>"
+msgstr ""
+
+msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "by {{user_link_absolute}}"
+msgstr ""
+
+msgid "comments"
+msgstr ""
+
+msgid "containing your postal address, and asking them to reply to this request.\\n Or you could phone them."
+msgstr ""
+
+msgid "details"
+msgstr ""
+
+msgid "display_status only works for incoming and outgoing messages right now"
+msgstr ""
+
+msgid "during term time"
+msgstr ""
+
+msgid "edit text about you"
+msgstr ""
+
+msgid "even during holidays"
+msgstr ""
+
+msgid "everything"
+msgstr ""
+
+msgid "external"
+msgstr ""
+
+msgid "has reported an"
+msgstr ""
+
+msgid "have delayed."
+msgstr ""
+
+msgid "hide quoted sections"
+msgstr ""
+
+msgid "in term time"
+msgstr ""
+
+msgid "in the category ‘{{category_name}}’"
+msgstr ""
+
+msgid "internal error"
+msgstr ""
+
+msgid "internal reviews"
+msgstr ""
+
+msgid "is <strong>waiting for your clarification</strong>."
+msgstr ""
+
+msgid "just to see how it works"
+msgstr ""
+
+msgid "left an annotation"
+msgstr ""
+
+msgid "made."
+msgstr ""
+
+msgid "matching the tag ‘{{tag_name}}’"
+msgstr ""
+
+msgid "messages from authorities"
+msgstr ""
+
+msgid "messages from users"
+msgstr ""
+
+msgid "move..."
+msgstr ""
+
+msgid "no later than"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "normally"
+msgstr ""
+
+msgid "not requestable due to: {{reason}}"
+msgstr ""
+
+msgid "please sign in as "
+msgstr ""
+
+msgid "requesting an internal review"
+msgstr ""
+
+msgid "requests"
+msgstr ""
+
+msgid "requests which are {{list_of_statuses}}"
+msgstr ""
+
+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 ""
+
+msgid "send a follow up message"
+msgstr ""
+
+msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "set to <strong>blank</strong> (empty string) if can't find an address; these emails are <strong>public</strong> as anyone can view with a CAPTCHA"
+msgstr ""
+
+msgid "show quoted sections"
+msgstr ""
+
+msgid "sign in"
+msgstr ""
+
+msgid "simple_date_format"
+msgstr ""
+
+msgid "successful"
+msgstr ""
+
+msgid "successful requests"
+msgstr ""
+
+msgid "that you made to"
+msgstr ""
+
+msgid "the main FOI contact address for {{public_body}}"
+msgstr ""
+
+#. This phrase completes the following sentences:
+#. Request an internal review from...
+#. Send a public follow up message to...
+#. Send a public reply to...
+#. Don't want to address your message to... ?
+msgid "the main FOI contact at {{public_body}}"
+msgstr ""
+
+msgid "the requester"
+msgstr ""
+
+msgid "the {{site_name}} team"
+msgstr ""
+
+msgid "to read"
+msgstr ""
+
+msgid "to send a follow up message."
+msgstr ""
+
+msgid "to {{public_body}}"
+msgstr ""
+
+msgid "unexpected prominence on request event"
+msgstr ""
+
+msgid "unknown reason "
+msgstr ""
+
+msgid "unknown status "
+msgstr ""
+
+msgid "unresolved requests"
+msgstr ""
+
+msgid "unsubscribe"
+msgstr ""
+
+msgid "unsubscribe all"
+msgstr ""
+
+msgid "unsuccessful"
+msgstr ""
+
+msgid "unsuccessful requests"
+msgstr ""
+
+msgid "useful information."
+msgstr ""
+
+msgid "users"
+msgstr ""
+
+msgid "what's that?"
+msgstr ""
+
+msgid "{{count}} FOI requests found"
+msgstr ""
+
+msgid "{{count}} Freedom of Information request to {{public_body_name}}"
+msgid_plural "{{count}} Freedom of Information requests to {{public_body_name}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} person is following this authority"
+msgid_plural "{{count}} people are following this authority"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} request"
+msgid_plural "{{count}} requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} request made."
+msgid_plural "{{count}} requests made."
+msgstr[0] ""
+msgstr[1] ""
+
+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 ""
+
+msgid "{{info_request_user_name}} only:"
+msgstr ""
+
+msgid "{{law_used_full}} request - {{title}}"
+msgstr ""
+
+msgid "{{law_used_full}} request GQ - {{title}}"
+msgstr ""
+
+msgid "{{law_used}} requests at {{public_body}}"
+msgstr ""
+
+msgid "{{length_of_time}} ago"
+msgstr ""
+
+msgid "{{list_of_things}} matching text '{{search_query}}'"
+msgstr ""
+
+msgid "{{number_of_comments}} comments"
+msgstr ""
+
+msgid "{{public_body_link}} answered a request about"
+msgstr ""
+
+msgid "{{public_body_link}} was sent a request about"
+msgstr ""
+
+msgid "{{public_body_name}} only:"
+msgstr ""
+
+msgid "{{public_body}} has asked you to explain part of your {{law_used}} request."
+msgstr ""
+
+msgid "{{public_body}} sent a response to {{user_name}}"
+msgstr ""
+
+msgid "{{reason}}, please sign in or make a new account."
+msgstr ""
+
+msgid "{{search_results}} matching '{{query}}'"
+msgstr ""
+
+msgid "{{site_name}} blog and tweets"
+msgstr ""
+
+msgid "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:"
+msgstr ""
+
+msgid "{{site_name}} sends new requests to <strong>{{request_email}}</strong> for this authority."
+msgstr ""
+
+msgid "{{site_name}} users have made {{number_of_requests}} requests, including:"
+msgstr ""
+
+msgid "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code>{{to_value}}</code>"
+msgstr ""
+
+msgid "{{title}} - a Freedom of Information request to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} (Account suspended)"
+msgstr ""
+
+msgid "{{user_name}} - Freedom of Information requests"
+msgstr ""
+
+msgid "{{user_name}} - user profile"
+msgstr ""
+
+msgid "{{user_name}} added an annotation"
+msgstr ""
+
+msgid "{{user_name}} has annotated your {{law_used_short}} \\nrequest. Follow this link to see what they wrote."
+msgstr ""
+
+msgid "{{user_name}} has used {{site_name}} to send you the message below."
+msgstr ""
+
+msgid "{{user_name}} sent a follow up message to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} sent a request to {{public_body}}"
+msgstr ""
+
+msgid "{{username}} left an annotation:"
+msgstr ""
+
+msgid "{{user}} ({{user_admin_link}}) 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 ""
+
+msgid "{{user}} made this {{law_used_full}} request"
+msgstr ""
diff --git a/locale/fr/app.po b/locale/fr/app.po
index a249fb7d1..b5ab64451 100644
--- a/locale/fr/app.po
+++ b/locale/fr/app.po
@@ -9,6 +9,7 @@
# Bbear <borisjf@post.harvard.edu>, 2011
# sim51 <contact@bsimard.com>, 2013
# Bbear <borisjf@post.harvard.edu>, 2011
+# David Cabo <david.cabo@gmail.com>, 2013
# pchrzanowski <pierre.chrzanowski@gmail.com>, 2013
# radproject <radhouanef@gmail.com>, 2013
# radproject <radhouanef@gmail.com>, 2013
@@ -27,8 +28,8 @@ msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-26 16:07+0000\n"
-"Last-Translator: pchrzanowski <pierre.chrzanowski@gmail.com>\n"
+"PO-Revision-Date: 2013-07-22 22:28+0000\n"
+"Last-Translator: David Cabo <david.cabo@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/projects/p/alaveteli/language/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -49,7 +50,7 @@ msgid " (you)"
msgstr "(vous)"
msgid " - view and make Freedom of Information requests"
-msgstr "- Voir et faire des demandes d'accès a l'information "
+msgstr "- voir et demander des informations "
msgid " - wall"
msgstr "-mur"
@@ -119,13 +120,13 @@ msgid "'Pollution levels over time for the River Tyne'"
msgstr "« Évolution dans le temps des niveaux de pollution de la rivière Tyne »"
msgid "'{{link_to_authority}}', a public authority"
-msgstr "'{{lien_vers_administration}}', une administration publique"
+msgstr "'{{link_to_authority}}', une administration publique"
msgid "'{{link_to_request}}', a request"
msgstr "'{{link_to_request}}', une demande"
msgid "'{{link_to_user}}', a person"
-msgstr "{{lien_vers_utilisateur}}', une personne"
+msgstr "{{link_to_user}}', une personne"
msgid "*unknown*"
msgstr "*unknown*"
@@ -1267,10 +1268,10 @@ msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<
msgstr "Faire une<br/>\\n <strong>Nouvelle <span>demande</span><br/>\\n d'accès<br/>\\n à l'information</strong>"
msgid "Make a request"
-msgstr "Faire une demande"
+msgstr "Demander une information"
msgid "Make a request to this authority"
-msgstr ""
+msgstr "Faire une demande d'information à cette institution"
msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
msgstr "Faire une {{law_used_short}} demande à '{{public_body_name}}'"
@@ -2709,7 +2710,7 @@ msgid "View and search requests"
msgstr "Visualiser et parcourir les demandes d'information"
msgid "View authorities"
-msgstr "Voir institutions publiques"
+msgstr "Les institutions publiques"
msgid "View email"
msgstr "Voir mail :"
@@ -2892,7 +2893,7 @@ msgid "You may <strong>include attachments</strong>. If you would like to attach
msgstr "Vous pouvez <strong> inclure des pièces jointes </ strong>. Si vous souhaitez joindre un fichier \\n trop volumineux pour le courrier électronique, utiliser le formulaire ci-dessous."
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=\"{{url}}\">send it to us</a>."
-msgstr "Vous pourrez peut-être trouver \\n un sur leur site Web ou en leur téléphonant et demander. Si vous parvenez \\n en trouver un, alors s'il vous plaît <a href=\"{{help_url}}\">contactez nous </a>."
+msgstr "Vous pourrez peut-être trouver \\n un sur leur site Web ou en leur téléphonant et demander. Si vous parvenez \\n en trouver un, alors s'il vous plaît <a href=\"{{url}}\">contactez nous </a>."
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 "Vous pourrez peut-être trouver \\n un sur leur site Web ou en leur téléphonant et demander. Si vous parvenez \\n en trouver un, alors s'il vous plaît <a href=\"{{help_url}}\">contactez nous </a>."
diff --git a/locale/fr_CA/app.po b/locale/fr_CA/app.po
new file mode 100644
index 000000000..82682e1e7
--- /dev/null
+++ b/locale/fr_CA/app.po
@@ -0,0 +1,3411 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: alaveteli\n"
+"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
+"POT-Creation-Date: 2013-06-24 09:40-0700\n"
+"PO-Revision-Date: 2013-07-16 08:33+0000\n"
+"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"Language-Team: French (Canada) (http://www.transifex.com/projects/p/alaveteli/language/fr_CA/)\n"
+"Language: fr_CA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+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 ""
+
+msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">moderation policy</a>)"
+msgstr ""
+
+msgid " (<strong>patience</strong>, especially for large files, it may take a while!)"
+msgstr ""
+
+msgid " (you)"
+msgstr ""
+
+msgid " - view and make Freedom of Information requests"
+msgstr ""
+
+msgid " - wall"
+msgstr ""
+
+msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password."
+msgstr ""
+
+msgid " <strong>Privacy note:</strong> Your email address will be given to"
+msgstr ""
+
+msgid " <strong>Summarise</strong> the content of any information returned. "
+msgstr ""
+
+msgid " Advise on how to <strong>best clarify</strong> the request."
+msgstr ""
+
+msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. "
+msgstr ""
+
+msgid " If you know the address to use, then please <a href=\"{{url}}\">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 ""
+
+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 ""
+
+msgid " Link to the information requested, if it is <strong>already available</strong> on the Internet. "
+msgstr ""
+
+msgid " Offer better ways of <strong>wording the request</strong> to get the information. "
+msgstr ""
+
+msgid " Say how you've <strong>used the information</strong>, with links if possible."
+msgstr ""
+
+msgid " Suggest <strong>where else</strong> the requester might find the information. "
+msgstr ""
+
+msgid " What are you investigating using Freedom of Information? "
+msgstr ""
+
+msgid " You are already being emailed updates about the request."
+msgstr ""
+
+msgid " You will also be emailed updates about the request."
+msgstr ""
+
+msgid " made by "
+msgstr ""
+
+msgid " or "
+msgstr ""
+
+msgid " when you send this message."
+msgstr ""
+
+msgid "\"Hello! We have an <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">important message</a> for visitors outside {{country_name}}\""
+msgstr ""
+
+msgid "'Crime statistics by ward level for Wales'"
+msgstr ""
+
+msgid "'Pollution levels over time for the River Tyne'"
+msgstr ""
+
+msgid "'{{link_to_authority}}', a public authority"
+msgstr ""
+
+msgid "'{{link_to_request}}', a request"
+msgstr ""
+
+msgid "'{{link_to_user}}', a person"
+msgstr ""
+
+msgid "*unknown*"
+msgstr ""
+
+msgid ",\\n\\n\\n\\nYours,\\n\\n{{user_name}}"
+msgstr ""
+
+msgid "- or -"
+msgstr ""
+
+msgid "1. Select an authority"
+msgstr ""
+
+msgid "2. Ask for Information"
+msgstr ""
+
+msgid "3. Now check your request"
+msgstr ""
+
+msgid "<a href=\"{{browse_url}}\">Browse all</a> or <a href=\"{{add_url}}\">ask us to add one</a>."
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Add an annotation</a> (to help the requester or others)"
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Sign in</a> to change password, subscriptions and more ({{user_name}} only)"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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>"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "<p>We're glad you got some of the information that you wanted.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>"
+msgstr ""
+
+msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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 ""
+
+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 {{late_number_of_days}} 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 ""
+
+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 ""
+
+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 ""
+
+msgid "<strong> Can I request information about myself?</strong>\\n\t\t\t<a href=\"{{url}}\">No! (Click here for details)</a>"
+msgstr ""
+
+msgid "<strong><code>commented_by:tony_bowden</code></strong> to search annotations made by Tony Bowden, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>filetype:pdf</code></strong> to find all responses with PDF attachments. Or try these: <code>{{list_of_file_extensions}}</code>"
+msgstr ""
+
+msgid "<strong><code>request:</code></strong> to restrict to a specific request, typing the title as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_by:julian_todd</code></strong> to search requests made by Julian Todd, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_from:home_office</code></strong> to search requests from the Home Office, typing the name as in the URL."
+msgstr ""
+
+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 ""
+
+msgid "<strong><code>tag:charity</code></strong> to find all public authorities 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 ""
+
+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 ""
+
+msgid "<strong>Advice</strong> on how to get a response that will satisfy the requester. </li>"
+msgstr ""
+
+msgid "<strong>All the information</strong> has been sent"
+msgstr ""
+
+msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking"
+msgstr ""
+
+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 ""
+
+msgid "<strong>Clarification</strong> has been requested"
+msgstr ""
+
+msgid "<strong>No response</strong> has been received\\n <small>(maybe there's just an acknowledgement)</small>"
+msgstr ""
+
+msgid "<strong>Note:</strong> Because we're testing, requests are being sent to {{email}} rather than to the actual authority."
+msgstr ""
+
+msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\\n to try out how it works."
+msgstr ""
+
+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 ""
+
+msgid "<strong>Privacy note:</strong> If you want to request private information about\\n yourself then <a href=\"{{url}}\">click here</a>."
+msgstr ""
+
+msgid "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "<strong>Privacy warning:</strong> Your message, and any response\\n to it, will be displayed publicly on this website."
+msgstr ""
+
+msgid "<strong>Some of the information</strong> has been sent "
+msgstr ""
+
+msgid "<strong>Thank</strong> the public authority or "
+msgstr ""
+
+msgid "<strong>did not have</strong> the information requested."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">follow up</a> to <em>{{request_title}}</em> was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">response</a> to <em>{{request_title}}</em> was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}"
+msgstr ""
+
+msgid "A <strong>summary</strong> of the response if you have received it by post. "
+msgstr ""
+
+msgid "A Freedom of Information request"
+msgstr ""
+
+msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
+msgstr ""
+
+msgid "A new request, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A public authority"
+msgstr ""
+
+msgid "A response will be sent <strong>by post</strong>"
+msgstr ""
+
+msgid "A strange reponse, required attention by the {{site_name}} team"
+msgstr ""
+
+msgid "A vexatious request"
+msgstr ""
+
+msgid "A {{site_name}} user"
+msgstr ""
+
+msgid "About you:"
+msgstr ""
+
+msgid "Act on what you've learnt"
+msgstr ""
+
+msgid "Acts as xapian/acts as xapian job"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Action"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Model"
+msgstr ""
+
+msgid "Add an annotation"
+msgstr ""
+
+msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>."
+msgstr ""
+
+msgid "Added on {{date}}"
+msgstr ""
+
+msgid "Admin level is not included in list"
+msgstr ""
+
+msgid "Administration URL:"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Advanced search tips"
+msgstr ""
+
+msgid "Advise on whether the <strong>refusal is legal</strong>, and how to complain about it if not."
+msgstr ""
+
+msgid "Air, water, soil, land, flora and fauna (including how these effect\\n human beings)"
+msgstr ""
+
+msgid "All of the information requested has been received"
+msgstr ""
+
+msgid "All the options below can use <strong>status</strong> or <strong>latest_status</strong> before the colon. For example, <strong>status:not_held</strong> will match requests which have <em>ever</em> been marked as not held; <strong>latest_status:not_held</strong> will match only requests that are <em>currently</em> marked as not held."
+msgstr ""
+
+msgid "All the options below can use <strong>variety</strong> or <strong>latest_variety</strong> before the colon. For example, <strong>variety:sent</strong> will match requests which have <em>ever</em> been sent; <strong>latest_variety:sent</strong> will match only requests that are <em>currently</em> marked as sent."
+msgstr ""
+
+msgid "Also called {{other_name}}."
+msgstr ""
+
+msgid "Also send me alerts by email"
+msgstr ""
+
+msgid "Alter your subscription"
+msgstr ""
+
+msgid "Although all responses are automatically published, we depend on\\nyou, the original requester, to evaluate them."
+msgstr ""
+
+msgid "An <a href=\"{{request_url}}\">annotation</a> to <em>{{request_title}}</em> was made by {{event_comment_user}} on {{date}}"
+msgstr ""
+
+msgid "An <strong>error message</strong> has been received"
+msgstr ""
+
+msgid "An Environmental Information Regulations request"
+msgstr ""
+
+msgid "An anonymous user"
+msgstr ""
+
+msgid "Annotation added to request"
+msgstr ""
+
+msgid "Annotations"
+msgstr ""
+
+msgid "Annotations are so anyone, including you, can help the requester with their request. For example:"
+msgstr ""
+
+msgid "Annotations will be posted publicly here, and are\\n <strong>not</strong> sent to {{public_body_name}}."
+msgstr ""
+
+msgid "Anonymous user"
+msgstr ""
+
+msgid "Anyone:"
+msgstr ""
+
+msgid "Applies to"
+msgstr ""
+
+msgid "Are we missing a public authority?"
+msgstr ""
+
+msgid "Are you the owner of any commercial copyright on this page?"
+msgstr ""
+
+msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
+msgstr ""
+
+msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
+msgstr ""
+
+msgid "Attachment (optional):"
+msgstr ""
+
+msgid "Attachment:"
+msgstr ""
+
+msgid "Awaiting classification."
+msgstr ""
+
+msgid "Awaiting internal review."
+msgstr ""
+
+msgid "Awaiting response."
+msgstr ""
+
+msgid "Beginning with"
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> for examples of how to word your request."
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request."
+msgstr ""
+
+msgid "Browse all authorities..."
+msgstr ""
+
+msgid "By law, under all circumstances, {{public_body_link}} should have responded by now"
+msgstr ""
+
+msgid "By law, {{public_body_link}} should normally have responded <strong>promptly</strong> and"
+msgstr ""
+
+msgid "Calculated home page"
+msgstr ""
+
+msgid "Can't find the one you want?"
+msgstr ""
+
+msgid "Cancel a {{site_name}} alert"
+msgstr ""
+
+msgid "Cancel some {{site_name}} alerts"
+msgstr ""
+
+msgid "Cancel, return to your profile page"
+msgstr ""
+
+msgid "Censor rule"
+msgstr ""
+
+msgid "CensorRule|Last edit comment"
+msgstr ""
+
+msgid "CensorRule|Last edit editor"
+msgstr ""
+
+msgid "CensorRule|Regexp"
+msgstr ""
+
+msgid "CensorRule|Replacement"
+msgstr ""
+
+msgid "CensorRule|Text"
+msgstr ""
+
+msgid "Change email on {{site_name}}"
+msgstr ""
+
+msgid "Change password on {{site_name}}"
+msgstr ""
+
+msgid "Change profile photo"
+msgstr ""
+
+msgid "Change the text about you on your profile at {{site_name}}"
+msgstr ""
+
+msgid "Change your email"
+msgstr ""
+
+msgid "Change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Change your password"
+msgstr ""
+
+msgid "Change your password on {{site_name}}"
+msgstr ""
+
+msgid "Change your password {{site_name}}"
+msgstr ""
+
+msgid "Charity registration"
+msgstr ""
+
+msgid "Check for mistakes if you typed or copied the address."
+msgstr ""
+
+msgid "Check you haven't included any <strong>personal information</strong>."
+msgstr ""
+
+msgid "Choose your profile photo"
+msgstr ""
+
+msgid "Clarification"
+msgstr ""
+
+msgid "Clarify your FOI request - "
+msgstr ""
+
+msgid "Classify an FOI response from "
+msgstr ""
+
+msgid "Clear photo"
+msgstr ""
+
+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 ""
+
+msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request."
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Comment|Body"
+msgstr ""
+
+msgid "Comment|Comment type"
+msgstr ""
+
+msgid "Comment|Locale"
+msgstr ""
+
+msgid "Comment|Visible"
+msgstr ""
+
+msgid "Confirm you want to follow all successful FOI requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests or responses matching your search"
+msgstr ""
+
+msgid "Confirm you want to follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow requests to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow the request '{{request_title}}'"
+msgstr ""
+
+msgid "Confirm your FOI request to "
+msgstr ""
+
+msgid "Confirm your account on {{site_name}}"
+msgstr ""
+
+msgid "Confirm your annotation to {{info_request_title}}"
+msgstr ""
+
+msgid "Confirm your email address"
+msgstr ""
+
+msgid "Confirm your new email address on {{site_name}}"
+msgstr ""
+
+msgid "Considered by administrators as not an FOI request and hidden from site."
+msgstr ""
+
+msgid "Considered by administrators as vexatious and hidden from site."
+msgstr ""
+
+msgid "Contact {{recipient}}"
+msgstr ""
+
+msgid "Contact {{site_name}}"
+msgstr ""
+
+msgid "Could not identify the request from the email address"
+msgstr ""
+
+msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported."
+msgstr ""
+
+msgid "Crop your profile photo"
+msgstr ""
+
+msgid "Cultural sites and built structures (as they may be affected by the\\n environmental factors listed above)"
+msgstr ""
+
+msgid "Currently <strong>waiting for a response</strong> from {{public_body_link}}, they must respond promptly and"
+msgstr ""
+
+msgid "Date:"
+msgstr ""
+
+msgid "Dear {{name}},"
+msgstr ""
+
+msgid "Dear {{public_body_name}},"
+msgstr ""
+
+msgid "Default locale"
+msgstr ""
+
+msgid "Delayed response to your FOI request - "
+msgstr ""
+
+msgid "Delayed."
+msgstr ""
+
+msgid "Delivery error"
+msgstr ""
+
+msgid "Destroy {{name}}"
+msgstr ""
+
+msgid "Details of request '"
+msgstr ""
+
+msgid "Did you mean: {{correction}}"
+msgstr ""
+
+msgid "Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:"
+msgstr ""
+
+msgid "Disclosure log"
+msgstr ""
+
+msgid "Disclosure log URL"
+msgstr ""
+
+msgid "Don't want to address your message to {{person_or_body}}? You can also write to:"
+msgstr ""
+
+msgid "Done"
+msgstr ""
+
+msgid "Done &gt;&gt;"
+msgstr ""
+
+msgid "Download a zip file of all correspondence"
+msgstr ""
+
+msgid "Download original attachment"
+msgstr ""
+
+msgid "EIR"
+msgstr ""
+
+msgid "Edit"
+msgstr ""
+
+msgid "Edit and add <strong>more details</strong> to the message above,\\n explaining why you are dissatisfied with their response."
+msgstr ""
+
+msgid "Edit text about you"
+msgstr ""
+
+msgid "Edit this request"
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again."
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again. Or create a new account using the form on the right."
+msgstr ""
+
+msgid "Email doesn't look like a valid address"
+msgstr ""
+
+msgid "Email me future updates to this request"
+msgstr ""
+
+msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>"
+msgstr ""
+
+msgid "Enter your response below. You may attach one file (use email, or\\n <a href=\"{{url}}\">contact us</a> if you need more)."
+msgstr ""
+
+msgid "Environmental Information Regulations"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made using this site"
+msgstr ""
+
+msgid "Event history"
+msgstr ""
+
+msgid "Event history details"
+msgstr ""
+
+msgid "Event {{id}}"
+msgstr ""
+
+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=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Everything that you enter on this page\\n will be <strong>displayed publicly</strong> on\\n this website forever (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "FOI"
+msgstr ""
+
+msgid "FOI email address for {{public_body}}"
+msgstr ""
+
+msgid "FOI request – {{title}}"
+msgstr ""
+
+msgid "FOI requests"
+msgstr ""
+
+msgid "FOI requests by '{{user_name}}'"
+msgstr ""
+
+msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "FOI response requires admin ({{reason}}) - {{title}}"
+msgstr ""
+
+msgid "Failed to convert image to a PNG"
+msgstr ""
+
+msgid "Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}"
+msgstr ""
+
+msgid "Filter"
+msgstr ""
+
+msgid "First, did your other requests succeed?"
+msgstr ""
+
+msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Foi attachment"
+msgstr ""
+
+msgid "FoiAttachment|Charset"
+msgstr ""
+
+msgid "FoiAttachment|Content type"
+msgstr ""
+
+msgid "FoiAttachment|Display size"
+msgstr ""
+
+msgid "FoiAttachment|Filename"
+msgstr ""
+
+msgid "FoiAttachment|Hexdigest"
+msgstr ""
+
+msgid "FoiAttachment|Url part number"
+msgstr ""
+
+msgid "FoiAttachment|Within rfc822 subject"
+msgstr ""
+
+msgid "Follow"
+msgstr ""
+
+msgid "Follow all new requests"
+msgstr ""
+
+msgid "Follow new successful responses"
+msgstr ""
+
+msgid "Follow requests to {{public_body_name}}"
+msgstr ""
+
+msgid "Follow these requests"
+msgstr ""
+
+msgid "Follow things matching this search"
+msgstr ""
+
+msgid "Follow this authority"
+msgstr ""
+
+msgid "Follow this link to see the request:"
+msgstr ""
+
+msgid "Follow this person"
+msgstr ""
+
+msgid "Follow this request"
+msgstr ""
+
+msgid "Follow up"
+msgstr ""
+
+msgid "Follow up message sent by requester"
+msgstr ""
+
+msgid "Follow up messages to existing requests are sent to "
+msgstr ""
+
+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 ""
+
+msgid "Follow us on twitter"
+msgstr ""
+
+msgid "Followups cannot be sent for this request, as it was made externally, and published here by {{public_body_name}} on the requester's behalf."
+msgstr ""
+
+msgid "For an unknown reason, it is not possible to make a request to this authority."
+msgstr ""
+
+msgid "Forgotten your password?"
+msgstr ""
+
+msgid "Found {{count}} public authority {{description}}"
+msgid_plural "Found {{count}} public authorities {{description}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Freedom of Information"
+msgstr ""
+
+msgid "Freedom of Information Act"
+msgstr ""
+
+msgid "Freedom of Information law does not apply to this authority, so you cannot make\\n a request to it."
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to"
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to this authority.Follow up messages to existing requests are sent to "
+msgstr ""
+
+msgid "Freedom of Information requests made"
+msgstr ""
+
+msgid "Freedom of Information requests made by this person"
+msgstr ""
+
+msgid "Freedom of Information requests made by you"
+msgstr ""
+
+msgid "Freedom of Information requests made using this site"
+msgstr ""
+
+msgid "Freedom of information requests to"
+msgstr ""
+
+msgid "From"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "From:"
+msgstr ""
+
+msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE"
+msgstr ""
+
+msgid "Handled by post."
+msgstr ""
+
+msgid "Has tag string/has tag string tag"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Model"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Name"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Value"
+msgstr ""
+
+msgid "Hello! You can make Freedom of Information requests within {{country_name}} at {{link_to_website}}"
+msgstr ""
+
+msgid "Hello, {{username}}!"
+msgstr ""
+
+msgid "Help"
+msgstr ""
+
+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 ""
+
+msgid "Here is the message you wrote, in case you would like to copy the text and save it for later."
+msgstr ""
+
+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 ""
+
+msgid "Hide request"
+msgstr ""
+
+msgid "Holiday"
+msgstr ""
+
+msgid "Holiday|Day"
+msgstr ""
+
+msgid "Holiday|Description"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "Home page"
+msgstr ""
+
+msgid "Home page of authority"
+msgstr ""
+
+msgid "However, you have the right to request environmental\\n information under a different law"
+msgstr ""
+
+msgid "Human health and safety"
+msgstr ""
+
+msgid "I am asking for <strong>new information</strong>"
+msgstr ""
+
+msgid "I am requesting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'."
+msgstr ""
+
+msgid "I don't like these ones &mdash; give me some more!"
+msgstr ""
+
+msgid "I don't want to do any more tidying now!"
+msgstr ""
+
+msgid "I like this request"
+msgstr ""
+
+msgid "I would like to <strong>withdraw this request</strong>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for my information\\n <small>(maybe you got an acknowledgement)</small>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for the internal review"
+msgstr ""
+
+msgid "I'm waiting for an <strong>internal review</strong> response"
+msgstr ""
+
+msgid "I've been asked to <strong>clarify</strong> my request"
+msgstr ""
+
+msgid "I've received <strong>all the information"
+msgstr ""
+
+msgid "I've received <strong>some of the information</strong>"
+msgstr ""
+
+msgid "I've received an <strong>error message</strong>"
+msgstr ""
+
+msgid "I've received an error message"
+msgstr ""
+
+msgid "Id"
+msgstr ""
+
+msgid "If the address is wrong, or you know a better address, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "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."
+msgstr ""
+
+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 ""
+
+msgid "If you are dissatisfied by the response you got from\\n the public authority, you have the right to\\n complain (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "If you are still having trouble, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the request."
+msgstr ""
+
+msgid "If you are thinking of using a pseudonym,\\n please <a href=\"{{url}}\">read this first</a>."
+msgstr ""
+
+msgid "If you are {{user_link}}, please"
+msgstr ""
+
+msgid "If you believe this request is not suitable, you can report it for attention by the site administrators"
+msgstr ""
+
+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 ""
+
+msgid "If you can, scan in or photograph the response, and <strong>send us\\n a copy to upload</strong>."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "If you reply to this message it will go directly to {{user_name}}, who will\\nlearn your email address. Only reply if that is okay."
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "If you're new to {{site_name}}"
+msgstr ""
+
+msgid "If you've used {{site_name}} before"
+msgstr ""
+
+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 ""
+
+msgid "Incoming email address"
+msgstr ""
+
+msgid "Incoming message"
+msgstr ""
+
+msgid "IncomingMessage|Cached attachment text clipped"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text folded"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text unfolded"
+msgstr ""
+
+msgid "IncomingMessage|Last parsed"
+msgstr ""
+
+msgid "IncomingMessage|Mail from"
+msgstr ""
+
+msgid "IncomingMessage|Mail from domain"
+msgstr ""
+
+msgid "IncomingMessage|Sent at"
+msgstr ""
+
+msgid "IncomingMessage|Subject"
+msgstr ""
+
+msgid "IncomingMessage|Valid to reply to"
+msgstr ""
+
+msgid "Individual requests"
+msgstr ""
+
+msgid "Info request"
+msgstr ""
+
+msgid "Info request event"
+msgstr ""
+
+msgid "InfoRequestEvent|Calculated state"
+msgstr ""
+
+msgid "InfoRequestEvent|Described state"
+msgstr ""
+
+msgid "InfoRequestEvent|Event type"
+msgstr ""
+
+msgid "InfoRequestEvent|Last described at"
+msgstr ""
+
+msgid "InfoRequestEvent|Params yaml"
+msgstr ""
+
+msgid "InfoRequestEvent|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Allow new responses from"
+msgstr ""
+
+msgid "InfoRequest|Attention requested"
+msgstr ""
+
+msgid "InfoRequest|Awaiting description"
+msgstr ""
+
+msgid "InfoRequest|Comments allowed"
+msgstr ""
+
+msgid "InfoRequest|Described state"
+msgstr ""
+
+msgid "InfoRequest|External url"
+msgstr ""
+
+msgid "InfoRequest|External user name"
+msgstr ""
+
+msgid "InfoRequest|Handle rejected responses"
+msgstr ""
+
+msgid "InfoRequest|Idhash"
+msgstr ""
+
+msgid "InfoRequest|Law used"
+msgstr ""
+
+msgid "InfoRequest|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Title"
+msgstr ""
+
+msgid "InfoRequest|Url title"
+msgstr ""
+
+msgid "Information not held."
+msgstr ""
+
+msgid "Information on emissions and discharges (e.g. noise, energy,\\n radiation, waste materials)"
+msgstr ""
+
+msgid "Internal review request"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Items matching the following conditions are currently displayed on your wall."
+msgstr ""
+
+msgid "Items sent in last month"
+msgstr ""
+
+msgid "Joined in"
+msgstr ""
+
+msgid "Joined {{site_name}} in"
+msgstr ""
+
+msgid "Just one more thing"
+msgstr ""
+
+msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Keywords"
+msgstr ""
+
+msgid "Last authority viewed: "
+msgstr ""
+
+msgid "Last request viewed: "
+msgstr ""
+
+msgid "Let us know what you were doing when this message\\nappeared and your browser and operating system type and version."
+msgstr ""
+
+msgid "Link to this"
+msgstr ""
+
+msgid "List all"
+msgstr ""
+
+msgid "List of all authorities (CSV)"
+msgstr ""
+
+msgid "Listing FOI requests"
+msgstr ""
+
+msgid "Listing public authorities"
+msgstr ""
+
+msgid "Listing public authorities matching '{{query}}'"
+msgstr ""
+
+msgid "Listing tracks"
+msgstr ""
+
+msgid "Listing users"
+msgstr ""
+
+msgid "Log in to download a zip file of {{info_request_title}}"
+msgstr ""
+
+msgid "Log into the admin interface"
+msgstr ""
+
+msgid "Long overdue."
+msgstr ""
+
+msgid "Made between"
+msgstr ""
+
+msgid "Mail server log"
+msgstr ""
+
+msgid "Mail server log done"
+msgstr ""
+
+msgid "MailServerLogDone|Filename"
+msgstr ""
+
+msgid "MailServerLogDone|Last stat"
+msgstr ""
+
+msgid "MailServerLog|Line"
+msgstr ""
+
+msgid "MailServerLog|Order"
+msgstr ""
+
+msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>"
+msgstr ""
+
+msgid "Make a request"
+msgstr ""
+
+msgid "Make a request to this authority"
+msgstr ""
+
+msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Make and browse Freedom of Information (FOI) requests"
+msgstr ""
+
+msgid "Make your own request"
+msgstr ""
+
+msgid "Many requests"
+msgstr ""
+
+msgid "Message"
+msgstr ""
+
+msgid "Message sent using {{site_name}} contact form, "
+msgstr ""
+
+msgid "Missing contact details for '"
+msgstr ""
+
+msgid "More about this authority"
+msgstr ""
+
+msgid "More requests..."
+msgstr ""
+
+msgid "More similar requests"
+msgstr ""
+
+msgid "More successful requests..."
+msgstr ""
+
+msgid "My profile"
+msgstr ""
+
+msgid "My request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "My requests"
+msgstr ""
+
+msgid "My wall"
+msgstr ""
+
+msgid "Name can't be blank"
+msgstr ""
+
+msgid "Name is already taken"
+msgstr ""
+
+msgid "New Freedom of Information requests"
+msgstr ""
+
+msgid "New censor rule"
+msgstr ""
+
+msgid "New e-mail:"
+msgstr ""
+
+msgid "New email doesn't look like a valid address"
+msgstr ""
+
+msgid "New password:"
+msgstr ""
+
+msgid "New password: (again)"
+msgstr ""
+
+msgid "New response to '{{title}}'"
+msgstr ""
+
+msgid "New response to your FOI request - "
+msgstr ""
+
+msgid "New response to your request"
+msgstr ""
+
+msgid "New response to {{law_used_short}} request"
+msgstr ""
+
+msgid "New updates for the request '{{request_title}}'"
+msgstr ""
+
+msgid "Newest results first"
+msgstr ""
+
+msgid "Next"
+msgstr ""
+
+msgid "Next, crop your photo &gt;&gt;"
+msgstr ""
+
+msgid "No requests of this sort yet."
+msgstr ""
+
+msgid "No results found."
+msgstr ""
+
+msgid "No similar requests found."
+msgstr ""
+
+msgid "No tracked things found."
+msgstr ""
+
+msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
+msgstr ""
+
+msgid "None found."
+msgstr ""
+
+msgid "None made."
+msgstr ""
+
+msgid "Not a valid FOI request"
+msgstr ""
+
+msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf."
+msgstr ""
+
+msgid "Now check your email!"
+msgstr ""
+
+msgid "Now preview your annotation"
+msgstr ""
+
+msgid "Now preview your follow up"
+msgstr ""
+
+msgid "Now preview your message asking for an internal review"
+msgstr ""
+
+msgid "OR remove the existing photo"
+msgstr ""
+
+msgid "Offensive? Unsuitable?"
+msgstr ""
+
+msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now."
+msgstr ""
+
+msgid "Old e-mail:"
+msgstr ""
+
+msgid "Old email address isn't the same as the address of the account you are logged in with"
+msgstr ""
+
+msgid "Old email doesn't look like a valid address"
+msgstr ""
+
+msgid "On this page"
+msgstr ""
+
+msgid "One FOI request found"
+msgstr ""
+
+msgid "One person found"
+msgstr ""
+
+msgid "One public authority found"
+msgstr ""
+
+msgid "Only put in abbreviations which are really used, otherwise leave blank. Short or long name is used in the URL – don't worry about breaking URLs through renaming, as the history is used to redirect"
+msgstr ""
+
+msgid "Only requests made using {{site_name}} are shown."
+msgstr ""
+
+msgid "Only the authority can reply to this request, and I don't recognise the address this reply was sent from"
+msgstr ""
+
+msgid "Only the authority can reply to this request, but there is no \"From\" address to check against"
+msgstr ""
+
+msgid "Or search in their website for this information."
+msgstr ""
+
+msgid "Original request sent"
+msgstr ""
+
+msgid "Other:"
+msgstr ""
+
+msgid "Outgoing message"
+msgstr ""
+
+msgid "OutgoingMessage|Body"
+msgstr ""
+
+msgid "OutgoingMessage|Last sent at"
+msgstr ""
+
+msgid "OutgoingMessage|Message type"
+msgstr ""
+
+msgid "OutgoingMessage|Status"
+msgstr ""
+
+msgid "OutgoingMessage|What doing"
+msgstr ""
+
+msgid "Partially successful."
+msgstr ""
+
+msgid "Password is not correct"
+msgstr ""
+
+msgid "Password:"
+msgstr ""
+
+msgid "Password: (again)"
+msgstr ""
+
+msgid "Paste this link into emails, tweets, and anywhere else:"
+msgstr ""
+
+msgid "People"
+msgstr ""
+
+msgid "People {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Photo of you:"
+msgstr ""
+
+msgid "Plans and administrative measures that affect these matters"
+msgstr ""
+
+msgid "Play the request categorisation game"
+msgstr ""
+
+msgid "Play the request categorisation game!"
+msgstr ""
+
+msgid "Please"
+msgstr ""
+
+msgid "Please <a href=\"{{url}}\">get in touch</a> with us so we can fix it."
+msgstr ""
+
+msgid "Please <strong>answer the question above</strong> so we know whether the "
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Please ask for environmental information only"
+msgstr ""
+
+msgid "Please check the URL (i.e. the long code of letters and numbers) is copied\\ncorrectly from your email."
+msgstr ""
+
+msgid "Please choose a file containing your photo."
+msgstr ""
+
+msgid "Please choose a reason"
+msgstr ""
+
+msgid "Please choose what sort of reply you are making."
+msgstr ""
+
+msgid "Please choose whether or not you got some of the information that you wanted."
+msgstr ""
+
+msgid "Please click on the link below to cancel or alter these emails."
+msgstr ""
+
+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 ""
+
+msgid "Please click on the link below to confirm your email address."
+msgstr ""
+
+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 ""
+
+msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
+msgstr ""
+
+msgid "Please enable \"cookies\" to carry on"
+msgstr ""
+
+msgid "Please enter a password"
+msgstr ""
+
+msgid "Please enter a subject"
+msgstr ""
+
+msgid "Please enter a summary of your request"
+msgstr ""
+
+msgid "Please enter a valid email address"
+msgstr ""
+
+msgid "Please enter the message you want to send"
+msgstr ""
+
+msgid "Please enter the same password twice"
+msgstr ""
+
+msgid "Please enter your annotation"
+msgstr ""
+
+msgid "Please enter your email address"
+msgstr ""
+
+msgid "Please enter your follow up message"
+msgstr ""
+
+msgid "Please enter your letter requesting information"
+msgstr ""
+
+msgid "Please enter your name"
+msgstr ""
+
+msgid "Please enter your name, not your email address, in the name field."
+msgstr ""
+
+msgid "Please enter your new email address"
+msgstr ""
+
+msgid "Please enter your old email address"
+msgstr ""
+
+msgid "Please enter your password"
+msgstr ""
+
+msgid "Please give details explaining why you want a review"
+msgstr ""
+
+msgid "Please keep it shorter than 500 characters"
+msgstr ""
+
+msgid "Please keep the summary short, like in the subject of an email. You can use a phrase, rather than a full sentence."
+msgstr ""
+
+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 ""
+
+msgid "Please pass this on to the person who conducts Freedom of Information reviews."
+msgstr ""
+
+msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not."
+msgstr ""
+
+msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature"
+msgstr ""
+
+msgid "Please sign in as "
+msgstr ""
+
+msgid "Please sign in or make a new account."
+msgstr ""
+
+msgid "Please type a message and/or choose a file containing your response."
+msgstr ""
+
+msgid "Please use this email address for all replies to this request:"
+msgstr ""
+
+msgid "Please write a summary with some text in it"
+msgstr ""
+
+msgid "Please write the summary using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your annotation using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your follow up message containing the necessary clarifications below."
+msgstr ""
+
+msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful."
+msgstr ""
+
+msgid "Possibly related requests:"
+msgstr ""
+
+msgid "Post annotation"
+msgstr ""
+
+msgid "Post redirect"
+msgstr ""
+
+msgid "PostRedirect|Circumstance"
+msgstr ""
+
+msgid "PostRedirect|Email token"
+msgstr ""
+
+msgid "PostRedirect|Post params yaml"
+msgstr ""
+
+msgid "PostRedirect|Reason params yaml"
+msgstr ""
+
+msgid "PostRedirect|Token"
+msgstr ""
+
+msgid "PostRedirect|Uri"
+msgstr ""
+
+msgid "Posted on {{date}} by {{author}}"
+msgstr ""
+
+msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>"
+msgstr ""
+
+msgid "Prev"
+msgstr ""
+
+msgid "Preview follow up to '"
+msgstr ""
+
+msgid "Preview new annotation on '{{info_request_title}}'"
+msgstr ""
+
+msgid "Preview your annotation"
+msgstr ""
+
+msgid "Preview your message"
+msgstr ""
+
+msgid "Preview your public request"
+msgstr ""
+
+msgid "Profile photo"
+msgstr ""
+
+msgid "ProfilePhoto|Data"
+msgstr ""
+
+msgid "ProfilePhoto|Draft"
+msgstr ""
+
+msgid "Public authorities"
+msgstr ""
+
+msgid "Public authorities - {{description}}"
+msgstr ""
+
+msgid "Public authorities {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Public authority – {{name}}"
+msgstr ""
+
+msgid "Public body"
+msgstr ""
+
+msgid "Public notes"
+msgstr ""
+
+msgid "Public page"
+msgstr ""
+
+msgid "Public page not available"
+msgstr ""
+
+msgid "PublicBody|Api key"
+msgstr ""
+
+msgid "PublicBody|Disclosure log"
+msgstr ""
+
+msgid "PublicBody|First letter"
+msgstr ""
+
+msgid "PublicBody|Home page"
+msgstr ""
+
+msgid "PublicBody|Info requests count"
+msgstr ""
+
+msgid "PublicBody|Last edit comment"
+msgstr ""
+
+msgid "PublicBody|Last edit editor"
+msgstr ""
+
+msgid "PublicBody|Name"
+msgstr ""
+
+msgid "PublicBody|Notes"
+msgstr ""
+
+msgid "PublicBody|Publication scheme"
+msgstr ""
+
+msgid "PublicBody|Request email"
+msgstr ""
+
+msgid "PublicBody|Short name"
+msgstr ""
+
+msgid "PublicBody|Url name"
+msgstr ""
+
+msgid "PublicBody|Version"
+msgstr ""
+
+msgid "Publication scheme"
+msgstr ""
+
+msgid "Publication scheme URL"
+msgstr ""
+
+msgid "Purge request"
+msgstr ""
+
+msgid "PurgeRequest|Model"
+msgstr ""
+
+msgid "PurgeRequest|Url"
+msgstr ""
+
+msgid "RSS feed"
+msgstr ""
+
+msgid "RSS feed of updates"
+msgstr ""
+
+msgid "Re-edit this annotation"
+msgstr ""
+
+msgid "Re-edit this message"
+msgstr ""
+
+msgid "Read about <a href=\"{{advanced_search_url}}\">advanced search operators</a>, such as proximity and wildcards."
+msgstr ""
+
+msgid "Read blog"
+msgstr ""
+
+msgid "Received an error message, such as delivery failure."
+msgstr ""
+
+msgid "Recently described results first"
+msgstr ""
+
+msgid "Refused."
+msgstr ""
+
+msgid "Remember me</label> (keeps you signed in longer;\\n do not use on a public computer) "
+msgstr ""
+
+msgid "Report abuse"
+msgstr ""
+
+msgid "Report an offensive or unsuitable request"
+msgstr ""
+
+msgid "Report request"
+msgstr ""
+
+msgid "Report this request"
+msgstr ""
+
+msgid "Reported for administrator attention."
+msgstr ""
+
+msgid "Request an internal review"
+msgstr ""
+
+msgid "Request an internal review from {{person_or_body}}"
+msgstr ""
+
+msgid "Request email"
+msgstr ""
+
+msgid "Request has been removed"
+msgstr ""
+
+msgid "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "Request to {{public_body_name}} by {{info_request_user}}. Annotated by {{event_comment_user}} on {{date}}."
+msgstr ""
+
+msgid "Requested from {{public_body_name}} by {{info_request_user}} on {{date}}"
+msgstr ""
+
+msgid "Requested on {{date}}"
+msgstr ""
+
+msgid "Requests for personal information and vexatious requests are not considered valid for FOI purposes (<a href=\"/help/about\">read more</a>)."
+msgstr ""
+
+msgid "Requests or responses matching your saved search"
+msgstr ""
+
+msgid "Respond by email"
+msgstr ""
+
+msgid "Respond to request"
+msgstr ""
+
+msgid "Respond to the FOI request"
+msgstr ""
+
+msgid "Respond using the web"
+msgstr ""
+
+msgid "Response"
+msgstr ""
+
+msgid "Response from a public authority"
+msgstr ""
+
+msgid "Response to '{{title}}'"
+msgstr ""
+
+msgid "Response to this request is <strong>delayed</strong>."
+msgstr ""
+
+msgid "Response to this request is <strong>long overdue</strong>."
+msgstr ""
+
+msgid "Response to your request"
+msgstr ""
+
+msgid "Response:"
+msgstr ""
+
+msgid "Restrict to"
+msgstr ""
+
+msgid "Results page {{page_number}}"
+msgstr ""
+
+msgid "Save"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search Freedom of Information requests, public authorities and users"
+msgstr ""
+
+msgid "Search contributions by this person"
+msgstr ""
+
+msgid "Search for words in:"
+msgstr ""
+
+msgid "Search in"
+msgstr ""
+
+msgid "Search over<br/>\\n <strong>{{number_of_requests}} requests</strong> <span>and</span><br/>\\n <strong>{{number_of_authorities}} authorities</strong>"
+msgstr ""
+
+msgid "Search queries"
+msgstr ""
+
+msgid "Search results"
+msgstr ""
+
+msgid "Search the site to find what you were looking for."
+msgstr ""
+
+msgid "Search within the {{count}} Freedom of Information requests to {{public_body_name}}"
+msgid_plural "Search within the {{count}} Freedom of Information requests made to {{public_body_name}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Search your contributions"
+msgstr ""
+
+msgid "See bounce message"
+msgstr ""
+
+msgid "Select one to see more information about the authority."
+msgstr ""
+
+msgid "Select the authority to write to"
+msgstr ""
+
+msgid "Send a followup"
+msgstr ""
+
+msgid "Send a message to "
+msgstr ""
+
+msgid "Send a public follow up message to {{person_or_body}}"
+msgstr ""
+
+msgid "Send a public reply to {{person_or_body}}"
+msgstr ""
+
+msgid "Send follow up to '{{title}}'"
+msgstr ""
+
+msgid "Send message"
+msgstr ""
+
+msgid "Send message to "
+msgstr ""
+
+msgid "Send request"
+msgstr ""
+
+msgid "Set your profile photo"
+msgstr ""
+
+msgid "Short name"
+msgstr ""
+
+msgid "Short name is already taken"
+msgstr ""
+
+msgid "Show most relevant results first"
+msgstr ""
+
+msgid "Show only..."
+msgstr ""
+
+msgid "Showing"
+msgstr ""
+
+msgid "Sign in"
+msgstr ""
+
+msgid "Sign in or make a new account"
+msgstr ""
+
+msgid "Sign in or sign up"
+msgstr ""
+
+msgid "Sign out"
+msgstr ""
+
+msgid "Sign up"
+msgstr ""
+
+msgid "Similar requests"
+msgstr ""
+
+msgid "Simple search"
+msgstr ""
+
+msgid "Some notes have been added to your FOI request - "
+msgstr ""
+
+msgid "Some of the information requested has been received"
+msgstr ""
+
+msgid "Some people who've made requests haven't let us know whether they were\\nsuccessful or not. We need <strong>your</strong> help &ndash;\\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 ""
+
+msgid "Somebody added a note to your FOI request - "
+msgstr ""
+
+msgid "Someone has updated the status of your request"
+msgstr ""
+
+msgid "Someone, perhaps you, just tried to change their email address on\\n{{site_name}} from {{old_email}} to {{new_email}}."
+msgstr ""
+
+msgid "Sorry - you cannot respond to this request via {{site_name}}, because this is a copy of the request originally at {{link_to_original_request}}."
+msgstr ""
+
+msgid "Sorry, but only {{user_name}} is allowed to do that."
+msgstr ""
+
+msgid "Sorry, there was a problem processing this page"
+msgstr ""
+
+msgid "Sorry, we couldn't find that page"
+msgstr ""
+
+msgid "Special note for this authority!"
+msgstr ""
+
+msgid "Start now &raquo;"
+msgstr ""
+
+msgid "Start your own blog"
+msgstr ""
+
+msgid "Stay up to date"
+msgstr ""
+
+msgid "Still awaiting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "Subject"
+msgstr ""
+
+msgid "Subject:"
+msgstr ""
+
+msgid "Submit"
+msgstr ""
+
+msgid "Submit status"
+msgstr ""
+
+msgid "Submit status and send message"
+msgstr ""
+
+msgid "Subscribe to blog"
+msgstr ""
+
+msgid "Successful Freedom of Information requests"
+msgstr ""
+
+msgid "Successful."
+msgstr ""
+
+msgid "Suggest how the requester can find the <strong>rest of the information</strong>."
+msgstr ""
+
+msgid "Summary:"
+msgstr ""
+
+msgid "Table of statuses"
+msgstr ""
+
+msgid "Table of varieties"
+msgstr ""
+
+msgid "Tags"
+msgstr ""
+
+msgid "Tags (separated by a space):"
+msgstr ""
+
+msgid "Tags:"
+msgstr ""
+
+msgid "Technical details"
+msgstr ""
+
+msgid "Thank you for helping us keep the site tidy!"
+msgstr ""
+
+msgid "Thank you for making an annotation!"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Thank you for updating this request!"
+msgstr ""
+
+msgid "Thank you for updating your profile photo"
+msgstr ""
+
+msgid "Thank you! We'll look into what happened and try and fix it up."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "That doesn't look like a valid email address. Please check you have typed it correctly."
+msgstr ""
+
+msgid "The <strong>review has finished</strong> and overall:"
+msgstr ""
+
+msgid "The Freedom of Information Act <strong>does not apply</strong> to"
+msgstr ""
+
+msgid "The accounts have been left as they previously were."
+msgstr ""
+
+msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)"
+msgstr ""
+
+msgid "The authority only has a <strong>paper copy</strong> of the information."
+msgstr ""
+
+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 ""
+
+msgid "The authority would like to / has <strong>responded by post</strong> to this request."
+msgstr ""
+
+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 ""
+
+msgid "The page doesn't exist. Things you can try now:"
+msgstr ""
+
+msgid "The public authority does not have the information requested"
+msgstr ""
+
+msgid "The public authority would like part of the request explained"
+msgstr ""
+
+msgid "The public authority would like to / has responded by post"
+msgstr ""
+
+msgid "The request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "The request has been updated since you originally loaded this page. Please check for any new incoming messages below, and try again."
+msgstr ""
+
+msgid "The request is <strong>waiting for clarification</strong>."
+msgstr ""
+
+msgid "The request was <strong>partially successful</strong>."
+msgstr ""
+
+msgid "The request was <strong>refused</strong> by"
+msgstr ""
+
+msgid "The request was <strong>successful</strong>."
+msgstr ""
+
+msgid "The request was refused by the public authority"
+msgstr ""
+
+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=\"{{url}}\">contact us</a> if you have any questions."
+msgstr ""
+
+msgid "The requester has abandoned this request for some reason"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made."
+msgstr ""
+
+msgid "The {{site_name}} team."
+msgstr ""
+
+msgid "Then you can cancel the alert."
+msgstr ""
+
+msgid "Then you can cancel the alerts."
+msgstr ""
+
+msgid "Then you can change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Then you can change your password on {{site_name}}"
+msgstr ""
+
+msgid "Then you can classify the FOI response you have got from "
+msgstr ""
+
+msgid "Then you can download a zip file of {{info_request_title}}."
+msgstr ""
+
+msgid "Then you can log into the administrative interface"
+msgstr ""
+
+msgid "Then you can play the request categorisation game."
+msgstr ""
+
+msgid "Then you can report the request '{{title}}'"
+msgstr ""
+
+msgid "Then you can send a message to "
+msgstr ""
+
+msgid "Then you can sign in to {{site_name}}"
+msgstr ""
+
+msgid "Then you can update the status of your request to "
+msgstr ""
+
+msgid "Then you can upload an FOI response. "
+msgstr ""
+
+msgid "Then you can write follow up message to "
+msgstr ""
+
+msgid "Then you can write your reply to "
+msgstr ""
+
+msgid "Then you will be following all new FOI requests."
+msgstr ""
+
+msgid "Then you will be notified whenever '{{user_name}}' requests something or gets a response."
+msgstr ""
+
+msgid "Then you will be notified whenever a new request or response matches your search."
+msgstr ""
+
+msgid "Then you will be notified whenever an FOI request succeeds."
+msgstr ""
+
+msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
+msgstr ""
+
+msgid "Then you will be updated whenever the request '{{request_title}}' is updated."
+msgstr ""
+
+msgid "Then you'll be allowed to send FOI requests."
+msgstr ""
+
+msgid "Then your FOI request to {{public_body_name}} will be sent."
+msgstr ""
+
+msgid "Then your annotation to {{info_request_title}} will be posted."
+msgstr ""
+
+msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote."
+msgstr ""
+
+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 ""
+
+msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>."
+msgstr ""
+
+msgid "There is {{count}} person following this request"
+msgid_plural "There are {{count}} people following this request"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "There was a <strong>delivery error</strong> or similar, which needs fixing by the {{site_name}} team."
+msgstr ""
+
+msgid "There was an error with the words you entered, please try again."
+msgstr ""
+
+msgid "There were no requests matching your query."
+msgstr ""
+
+msgid "There were no results matching your query."
+msgstr ""
+
+msgid "They are going to reply <strong>by post</strong>"
+msgstr ""
+
+msgid "They do <strong>not have</strong> the information <small>(maybe they say who does)</small>"
+msgstr ""
+
+msgid "They have been given the following explanation:"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}}, \\nas required by law"
+msgstr ""
+
+msgid "Things to do with this request"
+msgstr ""
+
+msgid "Things you're following"
+msgstr ""
+
+msgid "This authority no longer exists, so you cannot make a request to it."
+msgstr ""
+
+msgid "This comment has been hidden. See annotations to\\n find out why. If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This covers a very wide spectrum of information about the state of\\n the <strong>natural and built environment</strong>, such as:"
+msgstr ""
+
+msgid "This external request has been hidden"
+msgstr ""
+
+msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}"
+msgstr ""
+
+msgid "This is an HTML version of an attachment to the Freedom of Information request"
+msgstr ""
+
+msgid "This is because {{title}} is an old request that has been\\nmarked to no longer receive responses."
+msgstr ""
+
+msgid "This is the first version."
+msgstr ""
+
+msgid "This is your own request, so you will be automatically emailed when new responses arrive."
+msgstr ""
+
+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=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This particular request is finished:"
+msgstr ""
+
+msgid "This person has made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "This person's annotations"
+msgstr ""
+
+msgid "This person's {{count}} Freedom of Information request"
+msgid_plural "This person's {{count}} Freedom of Information requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "This person's {{count}} annotation"
+msgid_plural "This person's {{count}} annotations"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "This request <strong>requires administrator attention</strong>"
+msgstr ""
+
+msgid "This request has already been reported for administrator attention"
+msgstr ""
+
+msgid "This request has an <strong>unknown status</strong>."
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
+msgstr ""
+
+msgid "This request has been <strong>reported</strong> as needing administrator attention (perhaps because it is vexatious, or a request for personal information)"
+msgstr ""
+
+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 ""
+
+msgid "This request has been marked for review by the site administrators, who have not hidden it at this time. If you believe it should be hidden, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "This request has been reported for administrator attention"
+msgstr ""
+
+msgid "This request has been set by an administrator to \"allow new responses from nobody\""
+msgstr ""
+
+msgid "This request has had an unusual response, and <strong>requires attention</strong> from the {{site_name}} team."
+msgstr ""
+
+msgid "This request has prominence 'hidden'. You can only see it because you are logged\\n in as a super user."
+msgstr ""
+
+msgid "This request is hidden, so that only you the requester can see it. Please\\n <a href=\"{{url}}\">contact us</a> if you are not sure why."
+msgstr ""
+
+msgid "This request is still in progress:"
+msgstr ""
+
+msgid "This request requires administrator attention"
+msgstr ""
+
+msgid "This request was not made via {{site_name}}"
+msgstr ""
+
+msgid "This response has been hidden. See annotations to find out why.\\n If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+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 ""
+
+msgid "This user has been banned from {{site_name}} "
+msgstr ""
+
+msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
+msgstr ""
+
+msgid "To cancel these alerts"
+msgstr ""
+
+msgid "To cancel this alert"
+msgstr ""
+
+msgid "To carry on, you need to sign in or make an account. Unfortunately, there\\nwas a technical problem trying to do this."
+msgstr ""
+
+msgid "To change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "To classify the response to this FOI request"
+msgstr ""
+
+msgid "To do that please send a private email to "
+msgstr ""
+
+msgid "To do this, first click on the link below."
+msgstr ""
+
+msgid "To download the zip file"
+msgstr ""
+
+msgid "To follow all successful requests"
+msgstr ""
+
+msgid "To follow new requests"
+msgstr ""
+
+msgid "To follow requests and responses matching your search"
+msgstr ""
+
+msgid "To follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "To follow requests made using {{site_name}} to the public authority '{{public_body_name}}'"
+msgstr ""
+
+msgid "To follow the request '{{request_title}}'"
+msgstr ""
+
+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 ""
+
+msgid "To let everyone know, follow this link and then select the appropriate box."
+msgstr ""
+
+msgid "To log into the administrative interface"
+msgstr ""
+
+msgid "To play the request categorisation game"
+msgstr ""
+
+msgid "To post your annotation"
+msgstr ""
+
+msgid "To reply to "
+msgstr ""
+
+msgid "To report this request"
+msgstr ""
+
+msgid "To send a follow up message to "
+msgstr ""
+
+msgid "To send a message to "
+msgstr ""
+
+msgid "To send your FOI request"
+msgstr ""
+
+msgid "To update the status of this FOI request"
+msgstr ""
+
+msgid "To upload a response, you must be logged in using an email address from "
+msgstr ""
+
+msgid "To use the advanced search, combine phrases and labels as described in the search tips below."
+msgstr ""
+
+msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words."
+msgstr ""
+
+msgid "To view the response, click on the link below."
+msgstr ""
+
+msgid "To {{public_body_link_absolute}}"
+msgstr ""
+
+msgid "To:"
+msgstr ""
+
+msgid "Today"
+msgstr ""
+
+msgid "Too many requests"
+msgstr ""
+
+msgid "Top search results:"
+msgstr ""
+
+msgid "Track thing"
+msgstr ""
+
+msgid "Track this person"
+msgstr ""
+
+msgid "Track this search"
+msgstr ""
+
+msgid "TrackThing|Track medium"
+msgstr ""
+
+msgid "TrackThing|Track query"
+msgstr ""
+
+msgid "TrackThing|Track type"
+msgstr ""
+
+msgid "Turn off email alerts"
+msgstr ""
+
+msgid "Tweet this request"
+msgstr ""
+
+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 ""
+
+msgid "URL name can't be blank"
+msgstr ""
+
+msgid "Unable to change email address on {{site_name}}"
+msgstr ""
+
+msgid "Unable to send a reply to {{username}}"
+msgstr ""
+
+msgid "Unable to send follow up message to {{username}}"
+msgstr ""
+
+msgid "Unexpected search result type"
+msgstr ""
+
+msgid "Unexpected search result type "
+msgstr ""
+
+msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out."
+msgstr ""
+
+msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for"
+msgstr ""
+
+msgid "Unknown"
+msgstr ""
+
+msgid "Unsubscribe"
+msgstr ""
+
+msgid "Unusual response."
+msgstr ""
+
+msgid "Update the status of this request"
+msgstr ""
+
+msgid "Update the status of your request to "
+msgstr ""
+
+msgid "Upload FOI response"
+msgstr ""
+
+msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
+msgstr ""
+
+msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Liverpool City Council\"</code></strong>"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User info request sent alert"
+msgstr ""
+
+msgid "User – {{name}}"
+msgstr ""
+
+msgid "UserInfoRequestSentAlert|Alert type"
+msgstr ""
+
+msgid "User|About me"
+msgstr ""
+
+msgid "User|Address"
+msgstr ""
+
+msgid "User|Admin level"
+msgstr ""
+
+msgid "User|Ban text"
+msgstr ""
+
+msgid "User|Dob"
+msgstr ""
+
+msgid "User|Email"
+msgstr ""
+
+msgid "User|Email bounce message"
+msgstr ""
+
+msgid "User|Email bounced at"
+msgstr ""
+
+msgid "User|Email confirmed"
+msgstr ""
+
+msgid "User|Hashed password"
+msgstr ""
+
+msgid "User|Last daily track email"
+msgstr ""
+
+msgid "User|Locale"
+msgstr ""
+
+msgid "User|Name"
+msgstr ""
+
+msgid "User|No limit"
+msgstr ""
+
+msgid "User|Receive email alerts"
+msgstr ""
+
+msgid "User|Salt"
+msgstr ""
+
+msgid "User|Url name"
+msgstr ""
+
+msgid "Version {{version}}"
+msgstr ""
+
+msgid "View FOI email address"
+msgstr ""
+
+msgid "View FOI email address for '{{public_body_name}}'"
+msgstr ""
+
+msgid "View FOI email address for {{public_body_name}}"
+msgstr ""
+
+msgid "View Freedom of Information requests made by {{user_name}}:"
+msgstr ""
+
+msgid "View and search requests"
+msgstr ""
+
+msgid "View authorities"
+msgstr ""
+
+msgid "View email"
+msgstr ""
+
+msgid "View requests"
+msgstr ""
+
+msgid "Waiting clarification."
+msgstr ""
+
+msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request."
+msgstr ""
+
+msgid "Waiting for the public authority to complete an internal review of their handling of the request"
+msgstr ""
+
+msgid "Waiting for the public authority to reply"
+msgstr ""
+
+msgid "Was the response you got to your FOI request any good?"
+msgstr ""
+
+msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We consider it to be vexatious, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We do not have a working request email address for this authority."
+msgstr ""
+
+msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}."
+msgstr ""
+
+msgid "We don't know whether the most recent response to this request contains\\n information or not\\n &ndash;\\n\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know."
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you or\\n the law tell us to (<a href=\"{{url}}\">details</a>). "
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We will not reveal your email addresses to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We're waiting for"
+msgstr ""
+
+msgid "We're waiting for someone to read"
+msgstr ""
+
+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 ""
+
+msgid "We've sent you an email, and you'll need to click the link in it before you can\\ncontinue."
+msgstr ""
+
+msgid "We've sent you an email, click the link in it, then you can change your password."
+msgstr ""
+
+msgid "What are you doing?"
+msgstr ""
+
+msgid "What best describes the status of this request now?"
+msgstr ""
+
+msgid "What information has been released?"
+msgstr ""
+
+msgid "What information has been requested?"
+msgstr ""
+
+msgid "When you get there, please update the status to say if the response \\ncontains any useful information."
+msgstr ""
+
+msgid "When you receive the paper response, please help\\n others find out what it says:"
+msgstr ""
+
+msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">reload this page</a> and file your new request."
+msgstr ""
+
+msgid "Which of these is happening?"
+msgstr ""
+
+msgid "Who can I request information from?"
+msgstr ""
+
+msgid "Withdrawn by the requester."
+msgstr ""
+
+msgid "Wk"
+msgstr ""
+
+msgid "Would you like to see a website like this in your country?"
+msgstr ""
+
+msgid "Write a reply"
+msgstr ""
+
+msgid "Write a reply to "
+msgstr ""
+
+msgid "Write your FOI follow up message to "
+msgstr ""
+
+msgid "Write your request in <strong>simple, precise language</strong>."
+msgstr ""
+
+msgid "You"
+msgstr ""
+
+msgid "You are already following new requests"
+msgstr ""
+
+msgid "You are already following requests to {{public_body_name}}"
+msgstr ""
+
+msgid "You are already following things matching this search"
+msgstr ""
+
+msgid "You are already following this person"
+msgstr ""
+
+msgid "You are already following this request"
+msgstr ""
+
+msgid "You are already following updates about {{track_description}}"
+msgstr ""
+
+msgid "You are currently receiving notification of new activity on your wall by email."
+msgstr ""
+
+msgid "You are following all new successful responses"
+msgstr ""
+
+msgid "You are no longer following {{track_description}}."
+msgstr ""
+
+msgid "You are now <a href=\"{{wall_url_user}}\">following</a> updates about {{track_description}}"
+msgstr ""
+
+msgid "You can <strong>complain</strong> by"
+msgstr ""
+
+msgid "You can change the requests and users you are following on <a href=\"{{profile_url}}\">your profile page</a>."
+msgstr ""
+
+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 ""
+
+msgid "You can only request information about the environment from this authority."
+msgstr ""
+
+msgid "You have a new response to the {{law_used_full}} request "
+msgstr ""
+
+msgid "You have found a bug. Please <a href=\"{{contact_url}}\">contact us</a> to tell us about the problem"
+msgstr ""
+
+msgid "You have hit the rate limit on new requests. Users are ordinarily limited to {{max_requests_per_user_per_day}} requests in any rolling 24-hour period. You will be able to make another request in {{can_make_another_request}}."
+msgstr ""
+
+msgid "You have made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "You have now changed the text about you on your profile."
+msgstr ""
+
+msgid "You have now changed your email address used on {{site_name}}"
+msgstr ""
+
+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 ""
+
+msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address."
+msgstr ""
+
+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 ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+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 ""
+
+msgid "You need to be logged in to change the text about you on your profile."
+msgstr ""
+
+msgid "You need to be logged in to change your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to clear your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to edit your profile."
+msgstr ""
+
+msgid "You need to be logged in to report a request for administrator attention"
+msgstr ""
+
+msgid "You previously submitted that exact follow up message for this request."
+msgstr ""
+
+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 ""
+
+msgid "You want to <strong>give your postal address</strong> to the authority in private."
+msgstr ""
+
+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 ""
+
+msgid "You will no longer be emailed updates for those alerts"
+msgstr ""
+
+msgid "You will now be emailed updates about {{track_description}}. <a href=\"{{change_email_alerts_url}}\">Prefer not to receive emails?</a>"
+msgstr ""
+
+msgid "You will only get an answer to your request if you follow up\\nwith the clarification."
+msgstr ""
+
+msgid "You will still be able to view it while logged in to the site. Please reply to this email if you would like to discuss this decision further."
+msgstr ""
+
+msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>"
+msgstr ""
+
+msgid "You're long overdue a response to your FOI request - "
+msgstr ""
+
+msgid "You're not following anything."
+msgstr ""
+
+msgid "You've now cleared your profile photo"
+msgstr ""
+
+msgid "Your <strong>name will appear publicly</strong>\\n (<a href=\"{{why_url}}\">why?</a>)\\n on this website and in search engines. If you\\n are thinking of using a pseudonym, please\\n <a href=\"{{help_url}}\">read this first</a>."
+msgstr ""
+
+msgid "Your annotations"
+msgstr ""
+
+msgid "Your details, including your email address, have not been given to anyone."
+msgstr ""
+
+msgid "Your e-mail:"
+msgstr ""
+
+msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message."
+msgstr ""
+
+msgid "Your follow up message has been sent on its way."
+msgstr ""
+
+msgid "Your internal review request has been sent on its way."
+msgstr ""
+
+msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon."
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent"
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent!"
+msgstr ""
+
+msgid "Your message will appear in <strong>search engines</strong>"
+msgstr ""
+
+msgid "Your name and annotation will appear in <strong>search engines</strong>."
+msgstr ""
+
+msgid "Your name, request and any responses will appear in <strong>search engines</strong>\\n (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "Your name:"
+msgstr ""
+
+msgid "Your original message is attached."
+msgstr ""
+
+msgid "Your password has been changed."
+msgstr ""
+
+msgid "Your password:"
+msgstr ""
+
+msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "Your request '{{request}}' at {{url}} has been reviewed by moderators."
+msgstr ""
+
+msgid "Your request on {{site_name}} hidden"
+msgstr ""
+
+msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
+msgstr ""
+
+msgid "Your request:"
+msgstr ""
+
+msgid "Your response to an FOI request was not delivered"
+msgstr ""
+
+msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
+msgstr ""
+
+msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request."
+msgstr ""
+
+msgid "Your {{count}} Freedom of Information request"
+msgid_plural "Your {{count}} Freedom of Information requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Your {{count}} annotation"
+msgid_plural "Your {{count}} annotations"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Your {{site_name}} email alert"
+msgstr ""
+
+msgid "Yours faithfully,"
+msgstr ""
+
+msgid "Yours sincerely,"
+msgstr ""
+
+msgid "Yours,"
+msgstr ""
+
+msgid "[FOI #{{request}} email]"
+msgstr ""
+
+msgid "[{{public_body}} request email]"
+msgstr ""
+
+msgid "[{{site_name}} contact email]"
+msgstr ""
+
+msgid "\\n\\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]"
+msgstr ""
+
+msgid "a one line summary of the information you are requesting, \\n\t\t\te.g."
+msgstr ""
+
+msgid "admin"
+msgstr ""
+
+msgid "alaveteli_foi:The software that runs {{site_name}}"
+msgstr ""
+
+msgid "all requests"
+msgstr ""
+
+msgid "also called {{public_body_short_name}}"
+msgstr ""
+
+msgid "an anonymous user"
+msgstr ""
+
+msgid "and"
+msgstr ""
+
+msgid "and update the status accordingly. Perhaps <strong>you</strong> might like to help out by doing that?"
+msgstr ""
+
+msgid "and update the status."
+msgstr ""
+
+msgid "and we'll suggest <strong>what to do next</strong>"
+msgstr ""
+
+msgid "any <a href=\"/list\">new requests</a>"
+msgstr ""
+
+msgid "any <a href=\"/list/successful\">successful requests</a>"
+msgstr ""
+
+msgid "anything"
+msgstr ""
+
+msgid "are long overdue."
+msgstr ""
+
+msgid "at"
+msgstr ""
+
+msgid "authorities"
+msgstr ""
+
+msgid "awaiting a response"
+msgstr ""
+
+msgid "beginning with ‘{{first_letter}}’"
+msgstr ""
+
+msgid "between two dates"
+msgstr ""
+
+msgid "but followupable"
+msgstr ""
+
+msgid "by"
+msgstr ""
+
+msgid "by <strong>{{date}}</strong>"
+msgstr ""
+
+msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "by {{user_link_absolute}}"
+msgstr ""
+
+msgid "comments"
+msgstr ""
+
+msgid "containing your postal address, and asking them to reply to this request.\\n Or you could phone them."
+msgstr ""
+
+msgid "details"
+msgstr ""
+
+msgid "display_status only works for incoming and outgoing messages right now"
+msgstr ""
+
+msgid "during term time"
+msgstr ""
+
+msgid "edit text about you"
+msgstr ""
+
+msgid "even during holidays"
+msgstr ""
+
+msgid "everything"
+msgstr ""
+
+msgid "external"
+msgstr ""
+
+msgid "has reported an"
+msgstr ""
+
+msgid "have delayed."
+msgstr ""
+
+msgid "hide quoted sections"
+msgstr ""
+
+msgid "in term time"
+msgstr ""
+
+msgid "in the category ‘{{category_name}}’"
+msgstr ""
+
+msgid "internal error"
+msgstr ""
+
+msgid "internal reviews"
+msgstr ""
+
+msgid "is <strong>waiting for your clarification</strong>."
+msgstr ""
+
+msgid "just to see how it works"
+msgstr ""
+
+msgid "left an annotation"
+msgstr ""
+
+msgid "made."
+msgstr ""
+
+msgid "matching the tag ‘{{tag_name}}’"
+msgstr ""
+
+msgid "messages from authorities"
+msgstr ""
+
+msgid "messages from users"
+msgstr ""
+
+msgid "move..."
+msgstr ""
+
+msgid "no later than"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "normally"
+msgstr ""
+
+msgid "not requestable due to: {{reason}}"
+msgstr ""
+
+msgid "please sign in as "
+msgstr ""
+
+msgid "requesting an internal review"
+msgstr ""
+
+msgid "requests"
+msgstr ""
+
+msgid "requests which are {{list_of_statuses}}"
+msgstr ""
+
+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 ""
+
+msgid "send a follow up message"
+msgstr ""
+
+msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "set to <strong>blank</strong> (empty string) if can't find an address; these emails are <strong>public</strong> as anyone can view with a CAPTCHA"
+msgstr ""
+
+msgid "show quoted sections"
+msgstr ""
+
+msgid "sign in"
+msgstr ""
+
+msgid "simple_date_format"
+msgstr ""
+
+msgid "successful"
+msgstr ""
+
+msgid "successful requests"
+msgstr ""
+
+msgid "that you made to"
+msgstr ""
+
+msgid "the main FOI contact address for {{public_body}}"
+msgstr ""
+
+#. This phrase completes the following sentences:
+#. Request an internal review from...
+#. Send a public follow up message to...
+#. Send a public reply to...
+#. Don't want to address your message to... ?
+msgid "the main FOI contact at {{public_body}}"
+msgstr ""
+
+msgid "the requester"
+msgstr ""
+
+msgid "the {{site_name}} team"
+msgstr ""
+
+msgid "to read"
+msgstr ""
+
+msgid "to send a follow up message."
+msgstr ""
+
+msgid "to {{public_body}}"
+msgstr ""
+
+msgid "unexpected prominence on request event"
+msgstr ""
+
+msgid "unknown reason "
+msgstr ""
+
+msgid "unknown status "
+msgstr ""
+
+msgid "unresolved requests"
+msgstr ""
+
+msgid "unsubscribe"
+msgstr ""
+
+msgid "unsubscribe all"
+msgstr ""
+
+msgid "unsuccessful"
+msgstr ""
+
+msgid "unsuccessful requests"
+msgstr ""
+
+msgid "useful information."
+msgstr ""
+
+msgid "users"
+msgstr ""
+
+msgid "what's that?"
+msgstr ""
+
+msgid "{{count}} FOI requests found"
+msgstr ""
+
+msgid "{{count}} Freedom of Information request to {{public_body_name}}"
+msgid_plural "{{count}} Freedom of Information requests to {{public_body_name}}"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} person is following this authority"
+msgid_plural "{{count}} people are following this authority"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} request"
+msgid_plural "{{count}} requests"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "{{count}} request made."
+msgid_plural "{{count}} requests made."
+msgstr[0] ""
+msgstr[1] ""
+
+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 ""
+
+msgid "{{info_request_user_name}} only:"
+msgstr ""
+
+msgid "{{law_used_full}} request - {{title}}"
+msgstr ""
+
+msgid "{{law_used_full}} request GQ - {{title}}"
+msgstr ""
+
+msgid "{{law_used}} requests at {{public_body}}"
+msgstr ""
+
+msgid "{{length_of_time}} ago"
+msgstr ""
+
+msgid "{{list_of_things}} matching text '{{search_query}}'"
+msgstr ""
+
+msgid "{{number_of_comments}} comments"
+msgstr ""
+
+msgid "{{public_body_link}} answered a request about"
+msgstr ""
+
+msgid "{{public_body_link}} was sent a request about"
+msgstr ""
+
+msgid "{{public_body_name}} only:"
+msgstr ""
+
+msgid "{{public_body}} has asked you to explain part of your {{law_used}} request."
+msgstr ""
+
+msgid "{{public_body}} sent a response to {{user_name}}"
+msgstr ""
+
+msgid "{{reason}}, please sign in or make a new account."
+msgstr ""
+
+msgid "{{search_results}} matching '{{query}}'"
+msgstr ""
+
+msgid "{{site_name}} blog and tweets"
+msgstr ""
+
+msgid "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:"
+msgstr ""
+
+msgid "{{site_name}} sends new requests to <strong>{{request_email}}</strong> for this authority."
+msgstr ""
+
+msgid "{{site_name}} users have made {{number_of_requests}} requests, including:"
+msgstr ""
+
+msgid "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code>{{to_value}}</code>"
+msgstr ""
+
+msgid "{{title}} - a Freedom of Information request to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} (Account suspended)"
+msgstr ""
+
+msgid "{{user_name}} - Freedom of Information requests"
+msgstr ""
+
+msgid "{{user_name}} - user profile"
+msgstr ""
+
+msgid "{{user_name}} added an annotation"
+msgstr ""
+
+msgid "{{user_name}} has annotated your {{law_used_short}} \\nrequest. Follow this link to see what they wrote."
+msgstr ""
+
+msgid "{{user_name}} has used {{site_name}} to send you the message below."
+msgstr ""
+
+msgid "{{user_name}} sent a follow up message to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} sent a request to {{public_body}}"
+msgstr ""
+
+msgid "{{username}} left an annotation:"
+msgstr ""
+
+msgid "{{user}} ({{user_admin_link}}) 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 ""
+
+msgid "{{user}} made this {{law_used_full}} request"
+msgstr ""
diff --git a/locale/he_IL/app.po b/locale/he_IL/app.po
index 592edfbf4..df7f94e1f 100644
--- a/locale/he_IL/app.po
+++ b/locale/he_IL/app.po
@@ -21,8 +21,8 @@ msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-24 16:52+0000\n"
-"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"PO-Revision-Date: 2013-07-20 11:58+0000\n"
+"Last-Translator: yauzi <yair.uziel@gmail.com>\n"
"Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/alaveteli/language/he_IL/)\n"
"Language: he_IL\n"
"MIME-Version: 1.0\n"
@@ -172,7 +172,7 @@ msgid "<p>We recommend that you edit your request and remove the email address.\
msgstr "<p>אנו ממליצים שתסירו את כתובת הדוא\"ל מהבקשה שלכם.\\n אם לא תסירו אותה, הכתובת תשלח לרשות, אבל לא תוצג באתר.</p>"
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>"
-msgstr ""
+msgstr "אנו שמחים שקיבלת את מלוא המידע המבוקש. אם אתם עושים שימוש כלשהו במידע, אנא חיזרו לכאן והוסיפו הערה על אופן השימוש."
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 "<p>אנו שמחים שקיבלתם את המידע שביקשתם. אם אתם כותבים על המידע או משתמשים בו, נא חזרו לדף זה והוסיפו למטה הערה על מה שעשיתם. </p><p>אם מצאתם את {{site_name}}שימושי, <a href=\"{{donation_url}}\">הרימו תרומה</a> לגוף שמפעיל אותו.</p>"
@@ -181,7 +181,7 @@ msgid "<p>We're glad you got some of the information that you wanted. If you fou
msgstr "<p>אנו שמחים שקיבלתם חלק מהמידע שביקשתם. אם מצאתם את {{site_name}} שימושי, <a href=\"{{donation_url}}\">הרימו תרומה</a> לגוף שמפעיל אותו.</p><p>אם אתם רוצים לנסות לקבל את שאר המידע, הנה מה שעליכם לעשות כעת.</p>"
msgid "<p>We're glad you got some of the information that you wanted.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>"
-msgstr ""
+msgstr "<p>אנו שמחים שקיבלתם חלק מהמידע המבוקש.</p><p>אם אתם מעוניינים לקבל את שאר המידע, הנה מה שעליכם לעשות כעת.</p>"
msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>"
msgstr "<p>אין צורך לכלול את כתובת הדוא\"ל שלכם בבקשה, כדי לקבל מענה. (<a href=\"{{url}}\">details</a>).</p>"
@@ -240,7 +240,7 @@ msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking"
msgstr "<strong>כל דבר נוסף</strong>, כמו להבהיר, לעודד, להודות"
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 "<strong>אזהרה!</strong> כדי להשתמש במידע זה בהגינות, תצטרכו \\na ידע פנימי טוב על התנהגות המשתמש ב- {{site_name}}. איך, \\nמדוע ועל-ידי מי מחולקות הבקשות לקטגוריות, אינו דבר מובן מאליו, וייתכנו\\nbe שגיאות משתמש ואי-בהירות. תצטרכו גם להבין את חוק חופש המידע והדרך \\nway בה משתמשות בו הרשויות. בנוסף, תצטרכו להיות בעלי ידע בסטטיסטיקה. נא\\n<a href=\"{{contact_path}}\">צרו איתנו קשר</a>אם יש לכם שאלה."
+msgstr "<strong>אזהרה!</strong> כדי להשתמש במידע זה בהגינות, תצטרכו \\na ידע פנימי טוב על התנהגות המשתמש ב- {{site_name}}. איך, \\nמדוע ועל-ידי מי מחולקות הבקשות לקטגוריות, אינו דבר מובן מאליו, וייתכנו\\nbe שגיאות משתמש ואי-בהירות. תצטרכו גם להבין את הנהלים והדרך \\nway בה משתמשות בהם הרשויות. בנוסף, תצטרכו להיות בעלי ידע בסטטיסטיקה. נא\\n<a href=\"{{contact_path}}\">צרו איתנו קשר</a>אם יש לכם שאלה."
msgid "<strong>Clarification</strong> has been requested"
msgstr "הוגשה בקשה <strong>להבהרה</strong>"
@@ -288,7 +288,7 @@ msgid "A Freedom of Information request"
msgstr "בקשת מידע"
msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
-msgstr ""
+msgstr "היסטוריה מלאה של כל הבקשות שהגשתי והתגובות אודותן זמינה בכתובת הבאה: {{url}}"
msgid "A new request, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
msgstr "בקשה חדשה, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, נשלחה אל {{public_body_name}} על-ידי {{info_request_user}} בתאריך {{date}}."
@@ -315,13 +315,13 @@ msgid "Act on what you've learnt"
msgstr "שתפו את הידע שקיבלתם"
msgid "Acts as xapian/acts as xapian job"
-msgstr ""
+msgstr "מתנהג כמו Xapien/מתנהג כמו מטלת Xapien"
msgid "ActsAsXapian::ActsAsXapianJob|Action"
-msgstr ""
+msgstr "מתנהג כמו Xapien::מתנהג כמו מטלת Xapien | פעולה"
msgid "ActsAsXapian::ActsAsXapianJob|Model"
-msgstr ""
+msgstr "מתנהג כמו Xapien::מתנהג כמו מטלת Xapien | מודל"
msgid "Add an annotation"
msgstr "הוסיפו הערה"
@@ -528,7 +528,7 @@ msgid "Clarify your FOI request - "
msgstr "הבהירו את בקשת המידע - "
msgid "Classify an FOI response from "
-msgstr "קטלג בקשה לחוק חופש המידע מאת"
+msgstr "קטלג בקשה nאת"
msgid "Clear photo"
msgstr "הסר צילום"
@@ -576,7 +576,7 @@ msgid "Confirm you want to follow the request '{{request_title}}'"
msgstr "אשרו שאתם רוצים לעקוב אחר הבקשות '{{request_title}}'"
msgid "Confirm your FOI request to "
-msgstr "אשרו את הבקשה שלך לפי חוק חופש המידע"
+msgstr "אשרו את הבקשה שלכם עבור"
msgid "Confirm your account on {{site_name}}"
msgstr "אשרו את החשבון שלכם באתר {{site_name}}"
@@ -591,7 +591,7 @@ msgid "Confirm your new email address on {{site_name}}"
msgstr "אשרו את כתובת הדואר האלקטרוני החדשה שלכם באתר {{site_name}}"
msgid "Considered by administrators as not an FOI request and hidden from site."
-msgstr "אינה נחשבת ע\"י המנהלים כבקשה לפי חוק חופש המידע ומוסתרת מהאתר."
+msgstr "אינה נחשבת ע\"י המנהלים כבקשה מתאימה ומוסתרת מהאתר."
msgid "Considered by administrators as vexatious and hidden from site."
msgstr "נחשב על ידי מנהלים כמרגיז ומוסתר מהאתר."
@@ -621,7 +621,7 @@ msgid "Date:"
msgstr "תאריך:"
msgid "Dear {{name}},"
-msgstr ""
+msgstr "{{name}} יקר,"
msgid "Dear {{public_body_name}},"
msgstr "{{public_body_name}} נכבד, "
@@ -630,7 +630,7 @@ msgid "Default locale"
msgstr "ברירת מחדל של הגדרות מקומיות"
msgid "Delayed response to your FOI request - "
-msgstr "עיכוב בתגובה לבקשה על-פי חוק חופש המידע - "
+msgstr "עיכוב בתגובה לבקשה"
msgid "Delayed."
msgstr "מעוכב."
@@ -732,22 +732,22 @@ msgid "FOI"
msgstr "חוק חופש המידע"
msgid "FOI email address for {{public_body}}"
-msgstr "כתובת לפניות לפי חוק חופש המידע עבור {{public_body}}"
+msgstr "כתובת לפניות עבור {{public_body}}"
msgid "FOI request – {{title}}"
-msgstr "בקשת מידע חופשי - {{title}}"
+msgstr "בקשת מידע - {{title}}"
msgid "FOI requests"
-msgstr "בקשות לפי חוק חופש המידע"
+msgstr "בקשות"
msgid "FOI requests by '{{user_name}}'"
msgstr "בקשה לקבלת מידע, שהוגשה על-ידי '{{user_name}}'"
msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
-msgstr "בקשות לקבלת מידע על-פי חוק חופש המידע {{start_count}} עד {{end_count}} מתוך {{total_count}}"
+msgstr "בקשות לקבלת מידע {{start_count}} עד {{end_count}} מתוך {{total_count}}"
msgid "FOI response requires admin ({{reason}}) - {{title}}"
-msgstr "תגובה לפי חוק חופש המידע דורשת ({{reason}}) - {{title}} מנהל"
+msgstr "התגובה דורשת התערבות מנהל ({{reason}}) - {{title}}"
msgid "Failed to convert image to a PNG"
msgstr "המרת הקובץ לפורמט PNG נכשלה"
@@ -759,13 +759,13 @@ msgid "Filter"
msgstr "סינון"
msgid "First, did your other requests succeed?"
-msgstr ""
+msgstr "קודם כך, האם שאר הבקשות שהגשתם הצליחו?"
msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)."
msgstr "ראשית, הקלידו את <strong>שם הגוף הממשלתי </strong>, ממנו ברצונכם לקבל מידע.\\n <strong>לפי החלטת הממשלה, עליהם למסור תגובה</strong> (<a href=\"{{url}}\">מדוע?</a>)."
msgid "Foi attachment"
-msgstr "מסמף מצורף עבור חוק חופש המידע"
+msgstr "מסמף מצורף"
msgid "FoiAttachment|Charset"
msgstr "בקשהמצורפת|סוג קידוד"
@@ -893,16 +893,16 @@ msgid "Handled by post."
msgstr "טופל בפוסט."
msgid "Has tag string/has tag string tag"
-msgstr ""
+msgstr "יש מחרוזת תיוג/יש תיוג מחרוזת תיוג"
msgid "HasTagString::HasTagStringTag|Model"
-msgstr ""
+msgstr "יש מחרוזת תיוג::יש תיוג מחרוזת תיוג | מודל"
msgid "HasTagString::HasTagStringTag|Name"
-msgstr ""
+msgstr "יש מחרוזת תיוג::יש תיוג מחרוזת תיוג | שם"
msgid "HasTagString::HasTagStringTag|Value"
-msgstr ""
+msgstr "יש מחרוזת תיוג::יש תיוג מחרוזת תיוג | ערך"
msgid "Hello! You can make Freedom of Information requests within {{country_name}} at {{link_to_website}}"
msgstr "שלום! אתם יכולים להגיש בקשות ב{{country_name}} באתר {{link_to_website}}"
@@ -956,7 +956,7 @@ msgid "I am requesting an <strong>internal review</strong>"
msgstr "אנו מבקשים <strong>בדיקה פנימית</strong>"
msgid "I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'."
-msgstr ""
+msgstr "אנו מבקשים ביקורת פנימית אודות הטיפול של {{public_body_name}} בבקשתנו '{{info_request_title}}'."
msgid "I don't like these ones &mdash; give me some more!"
msgstr "אלה לא מתאימים לנו &mdash; תנו לנו אחרים!"
@@ -1031,7 +1031,7 @@ msgid "If you can, scan in or photograph the response, and <strong>send us\\n
msgstr "אם אתם יכולים, סירקו או צלמו את הבקשה, <strong>ושילחו לנו עותק שנוכל להעלות</strong>."
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 "אם אתם מוצאים שירות זה כמתאים להגשת בקשות על-פי חוק חופש המידע, בקשו ממנהל הרשת שלכם לשים קישור בדף הגשת הבקשות באתר שלכם."
+msgstr "אם אתם מוצאים שירות זה כמתאים להגשת בקשות , בקשו ממנהל הרשת שלכם לשים קישור בדף הגשת הבקשות באתר שלכם."
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 "אם קיבלתם את הדוא\"ל <strong>לפני יותר משישה חודשים</strong>, הקישור לא יעבוד יותר. /n נסו להתחיל את התהליך מההתחלה."
@@ -1211,7 +1211,7 @@ msgid "List of all authorities (CSV)"
msgstr "רשימת כל הרשויות (CSV)"
msgid "Listing FOI requests"
-msgstr "רשימת בקשות על-פי חוק חופש המידע"
+msgstr "רשימת בקשות מידע"
msgid "Listing public authorities"
msgstr "רשימת רשויות ציבוריות"
@@ -1262,7 +1262,7 @@ msgid "Make a request"
msgstr "בקשה חדשה"
msgid "Make a request to this authority"
-msgstr ""
+msgstr "הגישו בקשה לרשות זו"
msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
msgstr "יצירת בקשת {{law_used_short}} ל '{{public_body_name}}'"
@@ -1337,7 +1337,7 @@ msgid "New response to '{{title}}'"
msgstr "תשובה חדשה ל'{{title}}'"
msgid "New response to your FOI request - "
-msgstr "תגובה חדשה לבקשת חופש המידע שלך -"
+msgstr "תגובה חדשה לבקשה שלך -"
msgid "New response to your request"
msgstr "תגובה חדשה לבקשה שלך"
@@ -1418,7 +1418,7 @@ msgid "On this page"
msgstr "בעמוד הזה"
msgid "One FOI request found"
-msgstr "בקשה אחת לחופש המידע נמצאה"
+msgstr "בקשה אחת נמצאה"
msgid "One person found"
msgstr "אדם אחד נמצא"
@@ -1523,7 +1523,7 @@ msgid "Please choose a file containing your photo."
msgstr "בחרו בקובץ התמונה שלכם"
msgid "Please choose a reason"
-msgstr ""
+msgstr "אנא ביחרו סיבה"
msgid "Please choose what sort of reply you are making."
msgstr "בחרו בסוג התגובה שאתם מכינים"
@@ -1541,7 +1541,7 @@ msgid "Please click on the link below to confirm your email address."
msgstr "הקליקו על הקישור למטה לאישור כתובת הדוא\"ל שלכם"
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 "הוסיפו תיאור רחב יותר של הבקשה. אין צורך שתציינו שזו בקשה על-פי חוק חופש המידע. הדבר נעשה באופן אוטומטי."
+msgstr "הוסיפו בבקשה תיאור רחב יותר של הבקשה."
msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
msgstr "נא לא להעלות תמונות פוגעניות. תמונות פוגעניות יוסרו."
@@ -1607,7 +1607,7 @@ msgid "Please only request information that comes under those categories, <stron
msgstr "הגישו בקשות רק למידע בקטגוריות הללו. <strong>אל תבזבזו את\\n זמנכם</strong> או את זמן הרשות, בבקשות של מידע שאיננו קשור."
msgid "Please pass this on to the person who conducts Freedom of Information reviews."
-msgstr ""
+msgstr "אנא העבירו זאת לאדם האחראי על ביקורת בקשות מידע."
msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not."
msgstr "אנא בחר כל אחת מהבקשות הבאות, <strong>וספר לכולם</strong>\\n האם הן הצליחו כבר או עדיין לא."
@@ -1823,7 +1823,7 @@ msgid "Report an offensive or unsuitable request"
msgstr "דווחו על בקשה לא מתאימה או פוגענית"
msgid "Report request"
-msgstr ""
+msgstr "דווח על הבקשה"
msgid "Report this request"
msgstr "דווחו על בקשה זו"
@@ -1868,7 +1868,7 @@ msgid "Respond to request"
msgstr "להגיב לבקשה"
msgid "Respond to the FOI request"
-msgstr "הגיבו לבקשת חופש המידע"
+msgstr "הגיבו לבקשה"
msgid "Respond using the web"
msgstr "הגיבו דרך הרשת"
@@ -2011,7 +2011,7 @@ msgid "Simple search"
msgstr "חיפוש פשוט"
msgid "Some notes have been added to your FOI request - "
-msgstr "התווספו הערות לבקשת חופש המידע שלך"
+msgstr "התווספו הערות לבקשה שלך"
msgid "Some of the information requested has been received"
msgstr "חלק מהמידע המבוקש התקבל"
@@ -2020,7 +2020,7 @@ msgid "Some people who've made requests haven't let us know whether they were\\n
msgstr "חלק מהאנשים אשר הגישו בקשות לא עדכנו האם הן הצליחו או לא. \\n אנו <strong>זקוקים לעזרתך</strong> -\\n בחר באחת מהבקשות, קרא אותה, ואפשר לכולם לדעת האם המידע סופק. \\n כולנו נהיה אסירי תודה."
msgid "Somebody added a note to your FOI request - "
-msgstr "התווספה הערה לבקשת חוק חופש המידע שלך"
+msgstr "התווספה הערה לבקשה שלך"
msgid "Someone has updated the status of your request"
msgstr "מישהו עדכן את הססטוס של הדרישה שלך"
@@ -2110,7 +2110,7 @@ msgid "Thank you for making an annotation!"
msgstr "תודה על ההערה שהוספתם!"
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 "תודה על תגובתכם לבקשת חוק חופש המידע זו. תגובתכם פורסמה למטה וקישור אליה נשלח לתיבת הדוא\"ל שלכם."
+msgstr "תודה על תגובתכם לבקשה זו. תגובתכם פורסמה למטה וקישור אליה נשלח לתיבת הדוא\"ל שלכם."
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 "תודה שעדכנתם את מצב הבקשה '<a href=\"{{url}}\">{{info_request_title}}</a>'. למטה תוכלו למצוא בקשות נוספות שממתינות לסיווג."
@@ -2212,7 +2212,7 @@ msgid "The search index is currently offline, so we can't show the Freedom of In
msgstr "מנוע החיפוש לא זמין כרגע, לכן לא תוכלו לצפות בבקשות מידע של אדם זה."
msgid "The {{site_name}} team."
-msgstr ""
+msgstr "צוות {{site_name}}"
msgid "Then you can cancel the alert."
msgstr "אתם יכולים לבטל את האתרעה."
@@ -2260,7 +2260,7 @@ msgid "Then you can write your reply to "
msgstr "אז תוכלו לכתוב את התגובה שלכם ל- "
msgid "Then you will be following all new FOI requests."
-msgstr "לאחר מכן תעקוב אחר כל בקשות חוק חופש המידע החדשות."
+msgstr "לאחר מכן תעקוב אחר כל הבקשות החדשות."
msgid "Then you will be notified whenever '{{user_name}}' requests something or gets a response."
msgstr "לאחר מכן תקבלו התרעה כאשר '{{user_name}}' מגיש בקשה או מקבל תגובה."
@@ -2269,7 +2269,7 @@ msgid "Then you will be notified whenever a new request or response matches your
msgstr "לאחר מכן תקבלו התרעה כאשר בקשה חדשה או תגובה תואמת את החיפוש."
msgid "Then you will be notified whenever an FOI request succeeds."
-msgstr "לאחר מכן תקבל הודעה כאשר בקשה לפי חוק חופש המידע מאושרת."
+msgstr "לאחר מכן תקבל הודעה כאשר הבקשה למידע תאושר."
msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
msgstr "לאחר תקבלו התרעה כאשר מישהו מקבל תגובה או מגיש בקשה עבור '{{public_body_name}}'."
@@ -2392,7 +2392,7 @@ msgid "This request has an <strong>unknown status</strong>."
msgstr "לבקשה זו <strong>סטטוס לא ידוע</strong>."
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
-msgstr "בקשה זו <strong>מוסתרת</strong> מהאתר, מכיוון שמנהל סבור שהיא אינה על פי חוק חופש המידע"
+msgstr "בקשה זו <strong>מוסתרת</strong> מהאתר, מכיוון שמנהל סבור שהיא אינה מתאימה."
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
msgstr "בקשה זו <strong>מוסתרת</strong> מהאתר, מכיוון שמנהל סבור שהיא מרגיזה"
@@ -2503,7 +2503,7 @@ msgid "To reply to "
msgstr "בתשובה אל"
msgid "To report this request"
-msgstr ""
+msgstr "לדיווח על הבקשה"
msgid "To send a follow up message to "
msgstr "לשלוח הודעת מעקב אל"
@@ -2611,7 +2611,7 @@ msgid "Update the status of your request to "
msgstr "עדכן את סטטוס הבקשה שלכם ל- "
msgid "Upload FOI response"
-msgstr "בקשת לחוק חופש המידע הועלתה"
+msgstr "העלו בקשה למידע"
msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
msgstr "*****הקלידו OR (באותיות גדולות) כדי לחפש יותר ממילה אחת, לדוגמה, <strong><code>רגיל OR בכיר</code></strong>"
@@ -2725,10 +2725,10 @@ msgid "Was the response you got to your FOI request any good?"
msgstr "האם קיבלתם תגובה מספקת על בקשת המידע שלכם?"
msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
-msgstr ""
+msgstr "בקשה זו אינה עומדת בקריטריונים, ולכן מוסתרת ממשתמשים אחרים."
msgid "We consider it to be vexatious, and have therefore hidden it from other users."
-msgstr ""
+msgstr "תויג כבעייתי, ולכן מוסתר ממשתמשים אחרים."
msgid "We do not have a working request email address for this authority."
msgstr "אין ברשותנו כתובת דוא\"ל פעילה להגשת בקשות מידע לרשות זו."
@@ -2902,7 +2902,7 @@ msgid "You need to be logged in to edit your profile."
msgstr "דרוש חיבור למערכת על מנת לערוך את הפרופיל."
msgid "You need to be logged in to report a request for administrator attention"
-msgstr ""
+msgstr "עליכם להיות מחוברים לאתר על מנת לדווח על בקשה."
msgid "You previously submitted that exact follow up message for this request."
msgstr "כבר שלחתם בעבר את הודעת המעקב הזו."
@@ -2926,7 +2926,7 @@ msgid "You will only get an answer to your request if you follow up\\nwith the c
msgstr "תוכלו לקבל תשובה לבקשה זו רק עם תגיבו \\nעם הבהרה."
msgid "You will still be able to view it while logged in to the site. Please reply to this email if you would like to discuss this decision further."
-msgstr ""
+msgstr "עדיין תוכלו לצפות כאשר תהיו מחוברים לאתר. אנא השיבו למייל זה אם ברצונכם לדון בהחלטה זו."
msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>"
msgstr "אתם בפנים. <a href=\"#\" id=\"send-request\">המשיכו בשליחת הבקשה</a>"
@@ -2997,10 +2997,10 @@ msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n
msgstr "התמונה שלכם תוצג באופן פומבי באינטרנט,\\n בכל פעם שתעשו משהו באתר {{site_name}}."
msgid "Your request '{{request}}' at {{url}} has been reviewed by moderators."
-msgstr ""
+msgstr "מנהל בחן את הבקשה שלך '{{request}}' בכתובת {{url}}."
msgid "Your request on {{site_name}} hidden"
-msgstr ""
+msgstr "הבקשה שלך ב{{site_name}} הינה מוסתרת"
msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
msgstr "הבקשה שלכם נקראת {{info_request}}. אם תודיעו זאת לאחרים נוכל לעדכן את התווית"
@@ -3009,7 +3009,7 @@ msgid "Your request:"
msgstr "בקשתכם:"
msgid "Your response to an FOI request was not delivered"
-msgstr "התגובה שלך לבקשה לפי חוק חופש המידע לא נשלחה"
+msgstr "התגובה שלך לבקשה לא נשלחה"
msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
msgstr "תגובתכם <strong>תופיע באינטרנט</strong>, <a href=\"{{url}}\">קראו מדוע</a> and וצפו בתשובות לשאלות נוספות."
@@ -3037,7 +3037,7 @@ msgid "Yours sincerely,"
msgstr "שלכם בכנות,"
msgid "Yours,"
-msgstr ""
+msgstr "בהוקרה,"
msgid "[FOI #{{request}} email]"
msgstr "[FOI #{{request}} email]"
diff --git a/locale/hr/app.po b/locale/hr/app.po
index 8429f0933..32a0bde69 100644
--- a/locale/hr/app.po
+++ b/locale/hr/app.po
@@ -3,13 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# BojanOpacak <bojan@rationalinternational.net>, 2013
+# vanjas <vanja@gong.hr>, 2013
msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-26 15:20+0000\n"
-"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"PO-Revision-Date: 2013-07-04 08:55+0000\n"
+"Last-Translator: BojanOpacak <bojan@rationalinternational.net>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/alaveteli/language/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -26,7 +28,7 @@ msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">modera
msgstr ""
msgid " (<strong>patience</strong>, especially for large files, it may take a while!)"
-msgstr " (<strong>budite strpljivi</strong>, posebno za velike datoteke, moglo bi potrajati!)"
+msgstr " (<strong>budite strpljivi</strong>, moglo bi potrajati, posebno za velike datoteke!)"
msgid " (you)"
msgstr " (Vi)"
@@ -53,7 +55,7 @@ msgid " Advise on how to <strong>best clarify</strong> the request."
msgstr " Savjetuj kako<strong>najbolje objasniti</strong> zahjev."
msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. "
-msgstr " Ideje za <strong>zahtjeve drugih dokumenata</strong> koje ustanova može posjedovati. "
+msgstr " Ideje za <strong>zahtjeve ostalih dokumenata</strong> koje ustanova može posjedovati."
msgid " If you know the address to use, then please <a href=\"{{url}}\">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 ""
diff --git a/locale/nb_NO/app.po b/locale/nb_NO/app.po
index 4a2433e83..d8584563e 100644
--- a/locale/nb_NO/app.po
+++ b/locale/nb_NO/app.po
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-24 16:52+0000\n"
-"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"PO-Revision-Date: 2013-07-14 20:51+0000\n"
+"Last-Translator: gorm <gormer@gmail.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/alaveteli/language/nb_NO/)\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
@@ -398,7 +398,7 @@ msgid "Are you the owner of any commercial copyright on this page?"
msgstr "Er du eier av komersielle åndsverksrettigheter på denne siden?"
msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
-msgstr "Spør om <strong>spesifikke</strong> dokumenter eller informasjon, denne tjenesten egner seg ikke for generelle spørsmål."
+msgstr "Spør om <strong>spesifikke</strong> dokumenter, informasjon eller veiledning om noe som angår deg."
msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
msgstr ""
@@ -425,7 +425,7 @@ msgid "Browse <a href='{{url}}'>other requests</a> for examples of how to word y
msgstr "Vis <a href='{{url}}'>andre henvendelser</a> for eksempler på hvordan du bør ordlegge henvendelsen."
msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request."
-msgstr "Vis <a href='{{url}}'>andre henvendelser</a> til '{{public_body_name}}' for eksempler på hvordan du bør ordlegge henvendelsen."
+msgstr "Se på <a href='{{url}}'>andre henvendelser</a> til '{{public_body_name}}' for eksempler på hvordan du kan ordlegge deg."
msgid "Browse all authorities..."
msgstr "Vis alle myndighetene..."
@@ -1249,7 +1249,7 @@ msgid "Make a request"
msgstr "Lag henvendelse"
msgid "Make a request to this authority"
-msgstr ""
+msgstr "Lag en henvendelse til denne myndigheten"
msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
msgstr ""
@@ -1357,7 +1357,7 @@ msgid "No tracked things found."
msgstr ""
msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
-msgstr "Foreløpig har ingen utført noen innsynshenvendelser til {{public_body_name}} enda. Du kan bli den første ;)"
+msgstr "Ingen har enda skrevet noen innsynshenvendelser til {{public_body_name}}."
msgid "None found."
msgstr "Ingen funnet."
@@ -1801,7 +1801,7 @@ msgid "Refused."
msgstr "Avslått"
msgid "Remember me</label> (keeps you signed in longer;\\n do not use on a public computer) "
-msgstr "Husk meg</label> (hoder deg innlogget lenger;\\n ikke bruk på offentlige datamaskiner) "
+msgstr "Husk meg</label> (hodler deg innlogget lenger;\\n ikke bruk på offentlige datamaskiner) "
msgid "Report abuse"
msgstr "Meld misbruk"
@@ -2049,7 +2049,7 @@ msgid "Subject:"
msgstr "Tittel:"
msgid "Submit"
-msgstr "Oppdater"
+msgstr "Send inn"
msgid "Submit status"
msgstr "Oppdater status"
@@ -2475,37 +2475,37 @@ msgid "To help us keep the site tidy, someone else has updated the status of the
msgstr ""
msgid "To let everyone know, follow this link and then select the appropriate box."
-msgstr ""
+msgstr "For å lage alle vite, følg denne linken og velg den aktuelle boksen."
msgid "To log into the administrative interface"
-msgstr ""
+msgstr "For å logge deg på admin grensesnittet"
msgid "To play the request categorisation game"
msgstr ""
msgid "To post your annotation"
-msgstr ""
+msgstr "For å poste din kommentar"
msgid "To reply to "
-msgstr ""
+msgstr "For å svare til "
msgid "To report this request"
-msgstr ""
+msgstr "For å rapportere denne henvendelsen"
msgid "To send a follow up message to "
-msgstr ""
+msgstr "For å sende en oppfølgningsmelding til "
msgid "To send a message to "
-msgstr ""
+msgstr "For å sende en melding til "
msgid "To send your FOI request"
-msgstr ""
+msgstr "For å sende en innsynshenvendelse"
msgid "To update the status of this FOI request"
-msgstr ""
+msgstr "For å oppdatere status på denne innsynshenvendelsen"
msgid "To upload a response, you must be logged in using an email address from "
-msgstr ""
+msgstr "For å laste opp et svar, må du være pålogget med en e-post adresse fra "
msgid "To use the advanced search, combine phrases and labels as described in the search tips below."
msgstr ""
@@ -2523,22 +2523,22 @@ msgid "To:"
msgstr "Til:"
msgid "Today"
-msgstr ""
+msgstr "Idag"
msgid "Too many requests"
-msgstr ""
+msgstr "For mange henvendelser"
msgid "Top search results:"
msgstr "Beste søketreff:"
msgid "Track thing"
-msgstr ""
+msgstr "Følg ting"
msgid "Track this person"
-msgstr ""
+msgstr "Følg denne personen"
msgid "Track this search"
-msgstr ""
+msgstr "Følg dette søket"
msgid "TrackThing|Track medium"
msgstr ""
@@ -2559,22 +2559,22 @@ msgid "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show th
msgstr ""
msgid "URL name can't be blank"
-msgstr ""
+msgstr "URL navn kan ikke være blank"
msgid "Unable to change email address on {{site_name}}"
-msgstr ""
+msgstr "Klarte ikke endre e-post adresse på {{site_name}}"
msgid "Unable to send a reply to {{username}}"
-msgstr ""
+msgstr "Klarte ikke sende svar til {{username}}"
msgid "Unable to send follow up message to {{username}}"
-msgstr ""
+msgstr "Klarte ikke sende oppfølgningsmelding til {{username}}"
msgid "Unexpected search result type"
-msgstr ""
+msgstr "Uventet type søke resultat"
msgid "Unexpected search result type "
-msgstr ""
+msgstr "Uventet type søke resultat "
msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out."
msgstr ""
@@ -2583,22 +2583,22 @@ msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\n
msgstr ""
msgid "Unknown"
-msgstr ""
+msgstr "Ukjent"
msgid "Unsubscribe"
-msgstr ""
+msgstr "Meld av"
msgid "Unusual response."
-msgstr ""
+msgstr "Uvanlig svar."
msgid "Update the status of this request"
msgstr "Oppdater status på denne henvendelsen"
msgid "Update the status of your request to "
-msgstr ""
+msgstr "Oppdater status på henvendelsen din til "
msgid "Upload FOI response"
-msgstr ""
+msgstr "Last opp innsynssvar"
msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
msgstr ""
@@ -2607,70 +2607,70 @@ msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Li
msgstr ""
msgid "User"
-msgstr ""
+msgstr "Bruker"
msgid "User info request sent alert"
msgstr ""
msgid "User – {{name}}"
-msgstr ""
+msgstr "Bruker – {{name}}"
msgid "UserInfoRequestSentAlert|Alert type"
msgstr ""
msgid "User|About me"
-msgstr ""
+msgstr "Bruker|Om meg"
msgid "User|Address"
-msgstr ""
+msgstr "Bruker|Adresse"
msgid "User|Admin level"
-msgstr ""
+msgstr "Bruker|Admin nivå"
msgid "User|Ban text"
-msgstr ""
+msgstr "Bruker|Ban tekst"
msgid "User|Dob"
-msgstr ""
+msgstr "Bruker|Dob"
msgid "User|Email"
-msgstr ""
+msgstr "Bruker|E-post"
msgid "User|Email bounce message"
-msgstr ""
+msgstr "Bruker|E-post bounce melding"
msgid "User|Email bounced at"
-msgstr ""
+msgstr "Bruker|Epost bounched"
msgid "User|Email confirmed"
-msgstr ""
+msgstr "Bruker|E-post bekreftet"
msgid "User|Hashed password"
-msgstr ""
+msgstr "Bruker|Hashet passord"
msgid "User|Last daily track email"
-msgstr ""
+msgstr "Bruker|Siste daglige track e-post"
msgid "User|Locale"
-msgstr ""
+msgstr "Bruker|Localisering"
msgid "User|Name"
-msgstr ""
+msgstr "Bruker|Navn"
msgid "User|No limit"
-msgstr ""
+msgstr "Bruker|Ingen grense"
msgid "User|Receive email alerts"
-msgstr ""
+msgstr "Bruker|Motta e-post notifikasjoner"
msgid "User|Salt"
-msgstr ""
+msgstr "Bruker|Salt"
msgid "User|Url name"
-msgstr ""
+msgstr "Bruker|Url navn"
msgid "Version {{version}}"
-msgstr ""
+msgstr "Versjon {{version}}"
msgid "View FOI email address"
msgstr "Vis e-post adresse for innsyn"
@@ -2697,7 +2697,7 @@ msgid "View requests"
msgstr "Vis henvendelser"
msgid "Waiting clarification."
-msgstr ""
+msgstr "Venter avklaring"
msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request."
msgstr "Venter på <strong>klagebehandling</string> hos {{public_body_link}}."
@@ -2712,13 +2712,13 @@ msgid "Was the response you got to your FOI request any good?"
msgstr "Var svaret på innsynshenvendelsen din tilfredstillende?"
msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
-msgstr ""
+msgstr "Vi ser på dette som en ikke gyldig innsynsbegjering, og har derfor gjemt den fra de andre brukerne."
msgid "We consider it to be vexatious, and have therefore hidden it from other users."
-msgstr ""
+msgstr "Vi ser på den som sjikanøs, og har derfor gjemt den fra de andre brukerne."
msgid "We do not have a working request email address for this authority."
-msgstr ""
+msgstr "Vi har ikke en gyldig e-post adresse for henvendelser for denne myndigheten"
msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}."
msgstr ""
@@ -2772,13 +2772,13 @@ msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">re
msgstr ""
msgid "Which of these is happening?"
-msgstr ""
+msgstr "Hva av dette er det som skjer?"
msgid "Who can I request information from?"
-msgstr ""
+msgstr "Hvem kan jeg be om informasjon fra?"
msgid "Withdrawn by the requester."
-msgstr ""
+msgstr "Trukket tilbake av henvenderen"
msgid "Wk"
msgstr ""
@@ -2802,37 +2802,37 @@ msgid "You"
msgstr "Du"
msgid "You are already following new requests"
-msgstr ""
+msgstr "Du følger allerede nye henvendelser"
msgid "You are already following requests to {{public_body_name}}"
-msgstr ""
+msgstr "Du følger allerede henvendelser til {{public_body_name}}"
msgid "You are already following things matching this search"
-msgstr ""
+msgstr "Du følger allerede ting som treffer på dette søket"
msgid "You are already following this person"
-msgstr ""
+msgstr "Du følger allerede denne personen"
msgid "You are already following this request"
-msgstr ""
+msgstr "Du følger allerede denne henvendelsen"
msgid "You are already following updates about {{track_description}}"
-msgstr ""
+msgstr "Du følger allerede oppdateringer om {{track_description}}"
msgid "You are currently receiving notification of new activity on your wall by email."
-msgstr "For tiden mottar du varsel om ny aktiviteten på veggen din på e-post."
+msgstr "Du mottar e-post varsel om ny aktivitet på veggen din."
msgid "You are following all new successful responses"
-msgstr ""
+msgstr "Du følger all nye vellykede svar"
msgid "You are no longer following {{track_description}}."
-msgstr ""
+msgstr "Du følger ikke lenger {{track_description}}."
msgid "You are now <a href=\"{{wall_url_user}}\">following</a> updates about {{track_description}}"
-msgstr ""
+msgstr "Du <a href=\"{{wall_url_user}}\">føger</a> oppdateringer om {{track_description}}"
msgid "You can <strong>complain</strong> by"
-msgstr ""
+msgstr "Du kan <strong>klage</strong> ved"
msgid "You can change the requests and users you are following on <a href=\"{{profile_url}}\">your profile page</a>."
msgstr "Du kan endre hvilke henvendelser og brukere du følger på <a href=\"{{profile_url}}\">din profil side</a>."
@@ -2844,28 +2844,28 @@ msgid "You can only request information about the environment from this authorit
msgstr ""
msgid "You have a new response to the {{law_used_full}} request "
-msgstr ""
+msgstr "Du har et nytt svar til {{law_used_full}} request "
msgid "You have found a bug. Please <a href=\"{{contact_url}}\">contact us</a> to tell us about the problem"
-msgstr ""
+msgstr "Du har funnet en feil. Vennligst <a href=\"{{contact_url}}\">kontat oss</a> for å fortelle oss om problemet"
msgid "You have hit the rate limit on new requests. Users are ordinarily limited to {{max_requests_per_user_per_day}} requests in any rolling 24-hour period. You will be able to make another request in {{can_make_another_request}}."
-msgstr ""
+msgstr "Du har truffet grensen for antall nye henvendelser. Brukere er ordinært begrenset til {{max_requests_per_user_per_day}} henvendelser i en 24-timers periode. Du kan gjøre en ny henvendelse {{can_make_another_request}}."
msgid "You have made no Freedom of Information requests using this site."
-msgstr ""
+msgstr "Du har ikke laget noen innsynsforespørsler med denne tjenesten."
msgid "You have now changed the text about you on your profile."
-msgstr ""
+msgstr "Du har nå endret teksten om deg på din profil."
msgid "You have now changed your email address used on {{site_name}}"
-msgstr ""
+msgstr "Du har nå endret e-øost adressen brukt på {{site_name}}"
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 ""
+msgstr "Du forsøkte å registrere deg på {{site_name}}, når du\\nallerede har en konto. Ditt navn og passord har ikke blitt endret.\\m\\mVennligst klikk på lenken nedenfor."
msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address."
-msgstr ""
+msgstr "Du vet hva som forårsaket feilen, og kan <strong>foreslå en løsning</strong>, som en fungerende e-post adresse."
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 ""
@@ -2991,7 +2991,7 @@ msgid "Your request was called {{info_request}}. Letting everyone know whether y
msgstr ""
msgid "Your request:"
-msgstr ""
+msgstr "henvendelsen din:"
msgid "Your response to an FOI request was not delivered"
msgstr ""
diff --git a/locale/pt_BR/app.po b/locale/pt_BR/app.po
index d1a9a013a..a8448e85c 100644
--- a/locale/pt_BR/app.po
+++ b/locale/pt_BR/app.po
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
-# elaste <3laste2000@gmail.com>, 2012
+# Daniela Mattern <3laste2000@gmail.com>, 2012
# serramassuda <a.serramassuda@gmail.com>, 2012
# Bruno <bgx@bol.com.br>, 2012
# Bruno <bgx@bol.com.br>, 2012
@@ -11,7 +11,7 @@
# Carlos Vieira <edu.carlos.vieira@gmail.com>, 2011
# danielabsilva <danielabsilva@gmail.com>, 2011
# danielabsilva <danielabsilva@gmail.com>, 2011
-# elaste <3laste2000@gmail.com>, 2012
+# Daniela Mattern <3laste2000@gmail.com>, 2012
# <everton137@gmail.com>, 2011
# gabinardy <gabileitao@gmail.com>, 2012
# gabinardy <gabileitao@gmail.com>, 2012
diff --git a/locale/ro_RO/app.po b/locale/ro_RO/app.po
index 9ae9f4a57..0ba75b6a6 100644
--- a/locale/ro_RO/app.po
+++ b/locale/ro_RO/app.po
@@ -22,8 +22,8 @@ msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-24 16:52+0000\n"
-"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"PO-Revision-Date: 2013-07-07 22:47+0000\n"
+"Last-Translator: elena.calistru <calistru.elena@gmail.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/alaveteli/language/ro_RO/)\n"
"Language: ro_RO\n"
"MIME-Version: 1.0\n"
@@ -41,7 +41,7 @@ msgid " (<strong>patience</strong>, especially for large files, it may take a wh
msgstr " (<strong>răbdare</strong>, s-ar putea să dureze puţin, mai ales dacă fişierul e mare!)"
msgid " (you)"
-msgstr "(dvs.)"
+msgstr "(tu)"
msgid " - view and make Freedom of Information requests"
msgstr "- vezi cum arată şi trimite o solicitare de acces la informaţii"
@@ -50,7 +50,7 @@ msgid " - wall"
msgstr " - perete"
msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password."
-msgstr " <strong>Notă:</strong>\\n Vă vom trimite un email. Urmaţi instrucţiunile din acesta pentru a modifica \\n parola dvs.."
+msgstr " <strong>Notă:</strong>\\n Îți vom trimite un email. Urmează instrucţiunile din acesta pentru a modifica \\n parola ta."
msgid " <strong>Privacy note:</strong> Your email address will be given to"
msgstr " <strong>Notă de confidenţialitate:</strong> Adresa ta de email va fi văzută şi de către"
@@ -104,7 +104,7 @@ msgid "\"Hello! We have an <a href=\\\"/help/alaveteli?country_name=#{CGI.escap
msgstr "\"Salut! Avem un <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">mesaj important</a> pentru vizitatorii din afara {{country_name}}\""
msgid "'Crime statistics by ward level for Wales'"
-msgstr "'Crime statistics by ward level for Wales'"
+msgstr "'Bugetul pentru anul 2012 alocat transporturilor la Consiliul Județean Mureș'"
msgid "'Pollution levels over time for the River Tyne'"
msgstr "'Pollution levels over time for the River Tyne'"
@@ -164,10 +164,10 @@ msgid "<p>Thank you! Your request is long overdue, by more than {{very_late_numb
msgstr "<p>Îţi multumim! Solicitarea ta se întinde peste termen cu mai mult de {{very_late_number_of_days}} zile lucrătoare. Majoritatea solicitărilor ar trebui să primească răspuns în decurs de a{{late_number_of_days}}zile lucrătoare. Ai putea să formulezi o plângere în acest sens, vezi mai jos cum.</p>"
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>Vă mulţumim pentru modificarea textului referitor la dvs. din profil.</p>\\n <p><strong>În continuare...</strong> puteţi încărca o poză de profil deasemenea.</p>"
+msgstr "<p>Mulţumim pentru modificarea textului referitor la tine din profil.</p>\\n <p><strong>În continuare...</strong> poţi încărca, de asemenea, o poză de profil.</p>"
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>Vă mulţumim pentru actualizarea pozei dvs. de profil.</p>\\n <p><strong>În continuare...</strong> puteţi adăuga un text despre dvs. şi despre căutările dvs. în profilul dvs..</p>"
+msgstr "<p>Îți mulţumim pentru actualizarea pozei tale de profil.</p>\\n <p><strong>În continuare...</strong> poţi adăuga un text despre tine sau despre interesele tale în profilul tău.</p>"
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>Îți recomandăm să îți editezi solicitarea și să ștergi adresa de email.\\n Dacă o lași, adresa de email va fi trimisă către autoritate, dar nu va fi afișată pe site.</p>"
@@ -200,7 +200,7 @@ msgid "<p>{{site_name}} is currently in maintenance. You can only view existing
msgstr "<p>{{site_name}} este momentan în mentenanţă. Poţi vedea numai solicitările deja existente. Nu poţi adăuga solicitări noi, nici comentarii, adnotări sau alte modificări asupra bazei de date.</p> <p>{{read_only}}</p>"
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 "<small>Dacă utilizaţi un serviciu email de tip web sau dacă aveţi filtre pentru poşta nedorită, verificaţi deasemenea şi folderele \\nbulk/spam de email . Uneori mesajele noastre sunt marcate astfel.</small>\\n</p>"
+msgstr "<small>Dacă utilizaţi un serviciu email de tip web sau dacă aveţi filtre pentru poşta nedorită, verificaţi de asemenea folderele \\nbulk/spam de email. Uneori mesajele noastre sunt marcate astfel.</small>\\n</p>"
msgid "<strong> Can I request information about myself?</strong>\\n\t\t\t<a href=\"{{url}}\">No! (Click here for details)</a>"
msgstr "<strong> Pot să solicit informaţii despre mine însumi?</strong>\\n\t\t\t<a href=\"{{url}}\">Nu! (Click aici pentur detalii)</a>"
@@ -254,7 +254,7 @@ msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\\
msgstr "<strong>Notă:</strong> Ți-ai trimis un mesaj, probabil\\n pentru a afla cum funcționează."
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>Notă:</strong>\\n Vă vom trimite un email către noua dvs. adresă de email. Urmaţi instrucţiunile \\n din acesta pentru a confirma schimbarea emailului dvs."
+msgstr "<strong>Notă:</strong>\\n Vom trimite un email către noua ta adresă de email. Urmărește instrucţiunile \\n din acesta pentru a confirma schimbarea emailului tău."
msgid "<strong>Privacy note:</strong> If you want to request private information about\\n yourself then <a href=\"{{url}}\">click here</a>."
msgstr "<strong>Notă de confidențialitate:</strong> Dacă dorești să soliciți informații personale despre\\n tine atunci <a href=\"{{url}}\">apasă aici</a>."
@@ -284,7 +284,7 @@ msgid "A <strong>summary</strong> of the response if you have received it by pos
msgstr "<strong>Un rezumat</strong> al răspunsului, daca l-aţi primit prin poştă."
msgid "A Freedom of Information request"
-msgstr "O cerere Libertatea de Informare"
+msgstr "O cerere de acces la informații"
msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
msgstr ""
@@ -308,7 +308,7 @@ msgid "A {{site_name}} user"
msgstr "Un utilizator al {{site_name}} "
msgid "About you:"
-msgstr "Despre dvs:"
+msgstr "Despre tine:"
msgid "Act on what you've learnt"
msgstr "Actţonează conform a ceea ce ai învăţat."
@@ -359,13 +359,13 @@ msgid "All the options below can use <strong>variety</strong> or <strong>latest_
msgstr "Toate opţiunile de mai jos pot utiliza <strong>varietatea </strong> sau de doua puncte :. De exemplu, <strong>varietate:trimis</strong> va întruni toate cererile care <em>ever</em> au fost trimise; <strong>ultima_varietate:trimis</strong> va întruni numai cererile care sunt <em>în acest moment</em> marcate ca trimise."
msgid "Also called {{other_name}}."
-msgstr "Deasemenea numit şi {{other_name}}."
+msgstr "De asemenea numit şi {{other_name}}."
msgid "Also send me alerts by email"
-msgstr "Deasemenea trimiteţi-mi alerte prin email"
+msgstr "De asemenea trimiteţi-mi alerte prin email"
msgid "Alter your subscription"
-msgstr "Modificaţi subscripţia dvs. "
+msgstr "Modifică-ți subscripţia "
msgid "Although all responses are automatically published, we depend on\\nyou, the original requester, to evaluate them."
msgstr "Deși toate răspunsurile sunt publicate automat, depindem de \\ntine, ca solicitant, pentru a le putea evalua."
@@ -389,7 +389,7 @@ msgid "Annotations"
msgstr "Adnotări"
msgid "Annotations are so anyone, including you, can help the requester with their request. For example:"
-msgstr "Adnotările sunt astfel făcute încât oricine, incusiv dvs. , să poată ajuta solicitantul cu privire la cererea sa. De exemplu:"
+msgstr "Adnotările sunt astfel făcute încât oricine, incusiv tu. , să poată ajuta solicitantul cu privire la cererea sa. De exemplu:"
msgid "Annotations will be posted publicly here, and are\\n <strong>not</strong> sent to {{public_body_name}}."
msgstr "Adnotările vor fi făcute publice aici și\\n <strong>nu</strong> sunt trimise către {{public_body_name}}."
@@ -410,7 +410,7 @@ msgid "Are you the owner of any commercial copyright on this page?"
msgstr "Ai un drept de Proprietate Intelectuală asupra vreunei mărci de pe pagina aceasta?"
msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
-msgstr "Cereţi documente sau informaţii <strong> precise </strong>, acest site nu este potrivit pentru cereri generale."
+msgstr "Cere documente sau informaţii <strong>precise</strong>, acest site nu este potrivit pentru solicitări generale."
msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
msgstr "În josul acestei pagini, scrie un răspuns către aceștia, prin care să îi convingi să scaneze (<a href=\"{{url}}\">mai multe detalii</a>)."
@@ -461,7 +461,7 @@ msgid "Cancel some {{site_name}} alerts"
msgstr "Anulaţi niste alerte {{site_name}} "
msgid "Cancel, return to your profile page"
-msgstr "Anulaţi şi reveniti la pagina dvs. de profil"
+msgstr "Anulează şi revino la pagina ta de profil"
msgid "Censor rule"
msgstr "Regula cenzorului"
@@ -491,22 +491,22 @@ msgid "Change profile photo"
msgstr "Modificaţi poza de profil"
msgid "Change the text about you on your profile at {{site_name}}"
-msgstr "Modificati textul referitor la profilul dvs. pe {{site_name}}"
+msgstr "Modifică textul referitor la profilul tău de pe {{site_name}}"
msgid "Change your email"
msgstr "Modificati emailul"
msgid "Change your email address used on {{site_name}}"
-msgstr "Modificaţi emailul dvs utilizat pe {{site_name}}"
+msgstr "Modifică emailul utilizat pe {{site_name}}"
msgid "Change your password"
msgstr "Modificaţi parola"
msgid "Change your password on {{site_name}}"
-msgstr "Modificaţi parola dvs. pe {{site_name}}"
+msgstr "Modifică-ţi parola pe {{site_name}}"
msgid "Change your password {{site_name}}"
-msgstr "Modificaţi parola dvs. pe {{site_name}}"
+msgstr "Modifică parola ta pe {{site_name}}"
msgid "Charity registration"
msgstr "Înregistrare ONG"
@@ -524,10 +524,10 @@ msgid "Clarification"
msgstr "Clarificare"
msgid "Clarify your FOI request - "
-msgstr "Clarificaţi cererea dvs. FOI - "
+msgstr "Clarifică solicitarea de acces la informații - "
msgid "Classify an FOI response from "
-msgstr "Clasificaţi un formular de răspuns FOI"
+msgstr "Clasificaţi un formular de răspuns pentru o solicitare de acces la informații"
msgid "Clear photo"
msgstr "Şterge poza"
@@ -536,7 +536,7 @@ msgid "Click on the link below to send a message to {{public_body_name}} telling
msgstr "Apasă pe link-ul de mai jos pentru a trimite un mesaj către {{public_body_name}} prin care să ceri un răspuns la solicitarea ta. Poți cere și o evaluare\\ninternă, pentru a afla de ce răspunsul la solicitare a ajuns atât de greu."
msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request."
-msgstr "Faceţi click pe link-ul de mai jos pentru a trimite un mesaj către {{public_body}} pentru a-i reaminti să răspunda la cererea dvs."
+msgstr "Faceţi click pe link-ul de mai jos pentru a trimite un mesaj către {{public_body}} și a-i reaminti să răspundă la solicitarea ta"
msgid "Close"
msgstr "Închide"
@@ -557,16 +557,16 @@ msgid "Comment|Visible"
msgstr "Comentariu |Vizibil"
msgid "Confirm you want to follow all successful FOI requests"
-msgstr "Confirmaţi că doriţi să urmăriţi toate cererile FOI reuşite"
+msgstr "Confirmă că dorești să urmărești toate solicitările de acces la informații reuşite"
msgid "Confirm you want to follow new requests"
msgstr "Confirmaţi că doriţi să urmăriţi noi cereri"
msgid "Confirm you want to follow new requests or responses matching your search"
-msgstr "Confirmați că doriți să urmăriți noi cereri sau răspunsuri care corespund căutării dvs."
+msgstr "Confirmă că dorești să urmărești noi solicitări sau răspunsuri care corespund căutării tale"
msgid "Confirm you want to follow requests by '{{user_name}}'"
-msgstr "Confirmați că doriți să urmăriți cererile făcute de '{{user_name}}'"
+msgstr "Confirmă că dorești să urmărești solicitările făcute de '{{user_name}}'"
msgid "Confirm you want to follow requests to '{{public_body_name}}'"
msgstr "Confirmă că dorești să urmărești solicitările către '{{public_body_name}}'"
@@ -575,19 +575,19 @@ msgid "Confirm you want to follow the request '{{request_title}}'"
msgstr "Confirmă că dorești să urmărești solicitarea '{{request_title}}'"
msgid "Confirm your FOI request to "
-msgstr "Confirmaţi cererea dvs. FOI"
+msgstr "Confirmă solicitarea ta de acces la informații"
msgid "Confirm your account on {{site_name}}"
-msgstr "Confirmati contul dvs pe {{site_name}}"
+msgstr "Confirmă-ți contul pe {{site_name}}"
msgid "Confirm your annotation to {{info_request_title}}"
-msgstr "Confirmaţi adnotarea dvs. la {{info_request_title}}"
+msgstr "Confirmă-ţi adnotarea la {{info_request_title}}"
msgid "Confirm your email address"
-msgstr "Confirmaţi adresa dvs. de email"
+msgstr "Confirmă adresa ta de email"
msgid "Confirm your new email address on {{site_name}}"
-msgstr "Confirmaţi noua dvs. adresă de email pe {{site_name}}"
+msgstr "Confirmă noua ta adresă de email pe {{site_name}}"
msgid "Considered by administrators as not an FOI request and hidden from site."
msgstr "Considerat de către administratori ca nefiind o solicitare de acces la informații și ascuns de pe site."
@@ -608,7 +608,7 @@ msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and
msgstr "Nu se poate prelua imaginea pe care aţi încarcat-o. PNG, JPEG, GIF și multe alte formate de imagini sunt acceptate."
msgid "Crop your profile photo"
-msgstr "Decupaţi poza dvs. de profil"
+msgstr "Decupează poza ta de profil"
msgid "Cultural sites and built structures (as they may be affected by the\\n environmental factors listed above)"
msgstr "Situri culturale şi structuri construite (pentru că ar putea fi afectate de\\nfactorii de mediu listaţi mai sus)"
@@ -623,13 +623,13 @@ msgid "Dear {{name}},"
msgstr ""
msgid "Dear {{public_body_name}},"
-msgstr "Stimate {{public_body_name}},"
+msgstr "Stimată {{public_body_name}},"
msgid "Default locale"
msgstr "Default locale"
msgid "Delayed response to your FOI request - "
-msgstr "Amânare răspuns la cererea dvs. FOI"
+msgstr "Amânare răspuns la cererea ta de acces la informații - "
msgid "Delayed."
msgstr "Amânat."
@@ -656,7 +656,7 @@ msgid "Disclosure log URL"
msgstr "Disclosure log URL"
msgid "Don't want to address your message to {{person_or_body}}? You can also write to:"
-msgstr "Nu doriţi să adresati mesajul dvs. lui {{person_or_body}}? Puteţi de asemenea să-i scrieţi lui:"
+msgstr "Nu dorești să adresezi mesajul către {{person_or_body}}? Poți de asemenea să scrii la:"
msgid "Done"
msgstr "Efectuat"
@@ -728,7 +728,7 @@ msgid "Everything that you enter on this page\\n will be <strong>
msgstr "Tot ceea ce postezi pe această pagină \\n va fi <strong>făcut public</strong> pe\\n acest website permanent (<a href=\"{{url}}\">de ce?</a>)."
msgid "FOI"
-msgstr "FOI"
+msgstr "solicitare de acces la informații"
msgid "FOI email address for {{public_body}}"
msgstr "Adresa de email pentru solicitare {{public_body}}"
@@ -746,7 +746,7 @@ msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
msgstr "Solicitări de informații de la {{start_count}} la {{end_count}} din {{total_count}}"
msgid "FOI response requires admin ({{reason}}) - {{title}}"
-msgstr "Răspunsul FOI necesită ({{reason}}) - {{title}} administratorului"
+msgstr "Răspunsul la solicitare necesită ({{reason}}) - {{title}} administratorului"
msgid "Failed to convert image to a PNG"
msgstr "Eroare la convertirea imaginii în PNG"
@@ -764,16 +764,16 @@ msgid "First, type in the <strong>name of the UK public authority</strong> you'd
msgstr "Mai întâi, introdu <strong>numele autorității publice</strong> de la care ai \\n avea nevoie de informații. <strong>Potrivit legii, trebuie să îți răspundă</strong>\\n (<a href=\"{{url}}\">de ce?</a>)."
msgid "Foi attachment"
-msgstr "Ataşament FOI"
+msgstr "Ataşament solicitare"
msgid "FoiAttachment|Charset"
msgstr "Ataşament solicitare de informații|Setul de caractere"
msgid "FoiAttachment|Content type"
-msgstr "Ataşament FOI|Conţinut"
+msgstr "Ataşament solicitare|Tip conţinut"
msgid "FoiAttachment|Display size"
-msgstr "Ataşament FOI|Mărime afişare"
+msgstr "Ataşament solicitare|Mărime afişare"
msgid "FoiAttachment|Filename"
msgstr "Ataşament FOI|Nume fişier"
@@ -869,7 +869,7 @@ msgid "Freedom of Information requests made by this person"
msgstr "Cereri \"Libertatea de informare\" făcute de această persoană"
msgid "Freedom of Information requests made by you"
-msgstr "Cereri \"Libertatea de informare\" făcute de dvs."
+msgstr "Solicitări de acces la informații făcute de tine"
msgid "Freedom of Information requests made using this site"
msgstr "Cereri \"Libertatea de informare\" făcute utilizănd acest site"
@@ -887,7 +887,7 @@ msgid "From:"
msgstr "De la:"
msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE"
-msgstr "DAŢI DETALII DESPRE PLÂNGEREA DVS. AICI"
+msgstr "DĂ DETALII DESPRE PLÂNGEREA TA AICI"
msgid "Handled by post."
msgstr "Înmânat prin poştă"
@@ -1024,7 +1024,7 @@ msgid "If you are {{user_link}}, please"
msgstr "Dacă sunteţi{{user_link}}, vă rugăm"
msgid "If you believe this request is not suitable, you can report it for attention by the site administrators"
-msgstr "Dacă dvs. consideraţi ca această cerere nu este potrivită, puteţi să o raportaţi spre atenţia administratorilor"
+msgstr "Dacă tu consideri ca această solicitare nu este potrivită, poţi să o raportezi spre atenţia administratorilor"
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 "Dacă nu îl poți accesa direct din email, va trebui să <strong>îl selectezi și să îl copiezi\\n</strong> direct în browser."
@@ -1189,7 +1189,7 @@ msgid "Just one more thing"
msgstr "Încă un singur lucru"
msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"{{url}}\">why?</a>)."
-msgstr "Rămâneţi <strong> atent</strong>, este foarte probabil să obţineţi ceea ce doriţi (<a href=\"{{url}}\">why?</a>)."
+msgstr "Fă o solicitare <strong> la obiect</strong>, va fi mai probabil să obții ceea ce vrei (<a href=\"{{url}}\">why?</a>)."
msgid "Keywords"
msgstr "Cuvinte cheie"
@@ -1213,7 +1213,7 @@ msgid "List of all authorities (CSV)"
msgstr "Lista tuturor autorităţilor (CSV)"
msgid "Listing FOI requests"
-msgstr "Afişare cereri FOI"
+msgstr "Afişare solicitări de acces la informații"
msgid "Listing public authorities"
msgstr "Afişare autorităţi publice"
@@ -1270,10 +1270,10 @@ msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
msgstr "Faceţi o nouă cerere {{law_used_short}} către '{{public_body_name}}'"
msgid "Make and browse Freedom of Information (FOI) requests"
-msgstr "Faceţi şi vizualizaţi cereri de Informaţii (FOI) requests"
+msgstr "Faceţi şi vizualizaţi solicitări de acces la informații"
msgid "Make your own request"
-msgstr "Faceţi cererea dvs. proprie"
+msgstr "Fă propria ta solicitare"
msgid "Many requests"
msgstr "Multe cereri"
@@ -1318,7 +1318,7 @@ msgid "Name is already taken"
msgstr "Numele este deja folosit"
msgid "New Freedom of Information requests"
-msgstr "O nouă cerere FOI"
+msgstr "O nouă solicitare de acces la informații"
msgid "New censor rule"
msgstr "Nouă regulă de cenzurare"
@@ -1339,10 +1339,10 @@ msgid "New response to '{{title}}'"
msgstr "Răspuns nou la '{{title}}'"
msgid "New response to your FOI request - "
-msgstr "Răspuns nou la cererea dvs FOI -"
+msgstr "Răspuns nou la cererea ta de acces la informații - "
msgid "New response to your request"
-msgstr "Răspuns nou la cererea dvs."
+msgstr "Răspuns nou la cererea ta"
msgid "New response to {{law_used_short}} request"
msgstr "Răspuns nou la cererea {{law_used_short}} "
@@ -1357,7 +1357,7 @@ msgid "Next"
msgstr "Următorul"
msgid "Next, crop your photo &gt;&gt;"
-msgstr "În continuare, decupaţi poza dvs. &gt;&gt;"
+msgstr "În continuare, decupează-ți poza &gt;&gt;"
msgid "No requests of this sort yet."
msgstr "Nici o cerere de acest tip încă."
@@ -1372,7 +1372,7 @@ msgid "No tracked things found."
msgstr "Nu au fost găsite înregistrări."
msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
-msgstr "Nimeni nu a făcut încă o cerere FOI către {{public_body_name}} utilizând acest site"
+msgstr "Nimeni nu a făcut încă o solicitare de acces la informații către {{public_body_name}} utilizând acest site."
msgid "None found."
msgstr "Nimic găsit."
@@ -1384,19 +1384,19 @@ msgid "Not a valid FOI request"
msgstr "Nu este o solicitare de informații validă"
msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf."
-msgstr "Reţineți că solicitantul nu va fi notificat cu privire la adnotarea dvs deoarece cerere a fost publictă de către {{public_body_name}} în numele lor."
+msgstr "Reţine că solicitantul nu va fi notificat cu privire la adnotarea ta deoarece solicitare a fost publicată de către {{public_body_name}} în numele lor."
msgid "Now check your email!"
msgstr "Verificati-vă email-ul !"
msgid "Now preview your annotation"
-msgstr "Acum previzualizaţi adnotările dvs."
+msgstr "Acum previzualizează adnotările tale"
msgid "Now preview your follow up"
-msgstr "Acum previzualizaţi urmăririle dvs."
+msgstr "Acum previzualizează follow up-ul tău"
msgid "Now preview your message asking for an internal review"
-msgstr "Acum previzualizaţi mesajul dvs. cerând o revizuire internă."
+msgstr "Acum previzualizează mesajul tău cerând o revizuire internă."
msgid "OR remove the existing photo"
msgstr "SAU înlocuiţi poza existentă"
@@ -1405,7 +1405,7 @@ msgid "Offensive? Unsuitable?"
msgstr "Ofensator ? Nepotrivit ?"
msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now."
-msgstr "Oh nu! Ne pare rău că cererea dvs. a fost refuzată. Iată ce e de făcut acum."
+msgstr "Oh nu! Ne pare rău că solicitarea ta a fost refuzată. Iată ce e de făcut acum."
msgid "Old e-mail:"
msgstr "Emailul vechi:"
@@ -1420,7 +1420,7 @@ msgid "On this page"
msgstr "Pe această pagină"
msgid "One FOI request found"
-msgstr "O cerere FOI găsită"
+msgstr "O solicitare găsită"
msgid "One person found"
msgstr "O persoană găsită"
@@ -1489,7 +1489,7 @@ msgid "People {{start_count}} to {{end_count}} of {{total_count}}"
msgstr "Oameni de la {{start_count}} la {{end_count}} din {{total_count}}"
msgid "Photo of you:"
-msgstr "Poza dvs. :"
+msgstr "Poza ta:"
msgid "Plans and administrative measures that affect these matters"
msgstr "Planuri şi măsuri administrative care afectează aceste probleme"
@@ -1513,7 +1513,7 @@ msgid "Please <strong>go to the following requests</strong>, and let us\\n
msgstr "Te rugăm <strong>accesează aceste solicitări</strong>, și anunță-ne\\n dacă au fost transmise informații prin ultimele răspunsuri la acestea."
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 "Vă rugăm scrieţi <strong>numai</strong> mesaje direct legate de cererea dvs. {{request_link}}. Dacă doriţi să cereţi informaţii care nu au fost în cererea dvs originală, atunci <a href=\"{{new_request_link}}\"> emiteţi o nouă cerere</a>."
+msgstr "Te rugăm să scrii <strong>numai</strong> mesaje direct legate de solicitarea ta {{request_link}}. Dacă dorești să ceri informaţii care nu au fost în solicitarea ta originală, atunci <a href=\"{{new_request_link}}\"> emite o nouă solicitare</a>."
msgid "Please ask for environmental information only"
msgstr "Vă rugăm cereţi doar informaţii de mediu"
@@ -1522,7 +1522,7 @@ msgid "Please check the URL (i.e. the long code of letters and numbers) is copie
msgstr "Te rugăm să verifici dacă URL-ul a fost copiat\\n corect din email-ul tău."
msgid "Please choose a file containing your photo."
-msgstr "Vă rugăm alegeţi un fisier care conţine poza dvs."
+msgstr "Te rugăm să alegi un fișier care conţine poza ta."
msgid "Please choose a reason"
msgstr ""
@@ -1540,10 +1540,10 @@ msgid "Please click on the link below to confirm that you want to \\nchange the
msgstr "Te rugăm să accesezi link-ul de mai jos pentru a confirma \\nschimbarea adresei de email folosită pentru {{site_name}}\\ndin {{old_email}} în {{new_email}}"
msgid "Please click on the link below to confirm your email address."
-msgstr "Vă rugăm daţi click pe link-ul de mai jos pentru a confirma adresa dvs. de email."
+msgstr "Te rugăm să dai click pe link-ul de mai jos pentru a confirma adresa ta de email."
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 "Vă rugăm descrieţi mai pe larg despre ce este vorba în cerere. Nu este necesar să spuneţi ca este o cerere FOI, vom adăuga aceasta oricum."
+msgstr "Te rugăm să descrii mai pe larg despre ce este vorba în subiect. Nu este necesar să precizezi că este o solicitare de acces la informații, vom adăuga aceasta oricum."
msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
msgstr "Te rugăm să nu încarci pe site poze ofensatoare. Vom șterge imaginile\\n pe care le considerăm neadecvate."
@@ -1558,7 +1558,7 @@ msgid "Please enter a subject"
msgstr "Vă rugăm introduceţi un subiect"
msgid "Please enter a summary of your request"
-msgstr "Vă rugăm introduceţi un rezumat al cererii dvs."
+msgstr "Te rugăm să introduci un rezumat al solicitării tale"
msgid "Please enter a valid email address"
msgstr "Vă rugăm introduceţi o adresă de email validă"
@@ -1570,31 +1570,31 @@ msgid "Please enter the same password twice"
msgstr "Vă rugăm introduceţi aceeaşi parolă de două ori"
msgid "Please enter your annotation"
-msgstr "Vă rugăm introduceţi adnotările dvs."
+msgstr "Te rugăm să introduci adnotările tale"
msgid "Please enter your email address"
-msgstr "Vă rugăm introduceţi adresa dvs. de email"
+msgstr "Te rugăm să introduci adresa ta de email"
msgid "Please enter your follow up message"
msgstr "Vă rugăm introduceţi mesajele de tip follow up"
msgid "Please enter your letter requesting information"
-msgstr "Vă rugăm introduceţi scrisoarea dvs. de cerere de informaţii"
+msgstr "Te rugăm să introduci scrisoarea ta prin care soliciți informaţii"
msgid "Please enter your name"
-msgstr "Vă rugăm introduceţi numele dvs."
+msgstr "Te rugăm să îți introduci numele"
msgid "Please enter your name, not your email address, in the name field."
-msgstr "Vă rugăm introduceţi numele dvs., nu adresa dvs. de email în câmpul nume"
+msgstr "Te rugăm să îți introduci numele., nu adresa de email în câmpul nume"
msgid "Please enter your new email address"
-msgstr "Vă rugăm introduceţi noua dvs. adresă de email"
+msgstr "Te rugăm să introduci noua ta adresă de email"
msgid "Please enter your old email address"
-msgstr "Vă rugăm introduceţi vechea dvs. adresă de email"
+msgstr "Te rugăm să introduci vechea ta adresă de email"
msgid "Please enter your password"
-msgstr "Vă rugăm introduceţi parola dvs."
+msgstr "Te rugăm să îți introduci parola"
msgid "Please give details explaining why you want a review"
msgstr "Vă rugăm să ne oferiţi detalii, explicând de ce doriţi o revizuire."
@@ -1615,7 +1615,7 @@ msgid "Please select each of these requests in turn, and <strong>let everyone kn
msgstr "Te rugăm să selectezi fiecare solicitare pe rând și <strong>să spui</strong>\\ndacă au primit răspuns sau nu."
msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature"
-msgstr "Vă rugăm să vă semnaţi la finalul paginii cu numele dvs. sau modificaţi semnătura \"{{signoff}}\" "
+msgstr "Te rugăm să semnezi la finalul paginii cu numele tău sau modifică semnătura \"{{signoff}}\" "
msgid "Please sign in as "
msgstr "Vă rugăm înscrieţi-vă ca"
@@ -1624,7 +1624,7 @@ msgid "Please sign in or make a new account."
msgstr "Te rugăm să te autentifici sau să te înregistrezi."
msgid "Please type a message and/or choose a file containing your response."
-msgstr "Vă rugăm scrieţi un mesaj şi/sau alegeţi un fişier care conţine răspunsul dvs."
+msgstr "Te rugăm să scrii un mesaj şi/sau să alegi un fişier care conţine răspunsul tău."
msgid "Please use this email address for all replies to this request:"
msgstr "Vă rugăm utilizaţi aceasta adresă de email pentru toate răspunsurile la aceasta cerere."
@@ -1639,10 +1639,10 @@ msgid "Please write your annotation using a mixture of capital and lower case le
msgstr "Vă rugăm scrieţi adnotarile utilizând atât litere mici cât şi litere mari. Astfel va fi mai uşor de citit."
msgid "Please write your follow up message containing the necessary clarifications below."
-msgstr "Vă rugăm scrieţi mesajul dvs de urmărire conţinând clarificările necesare de mai jos"
+msgstr "Te rugăm să scrii mesajul tău de follow up conţinând clarificările necesare mai jos."
msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read."
-msgstr "Vă rugăm scrieţi mesajul dvs. utilizând atât litere mici cât şi litere mari. Astfel va fi mai uşor de citit."
+msgstr "Te rugăm să scrii mesajul tău utilizând atât litere mici cât şi litere mari, după caz. Astfel va fi mai uşor de citit."
msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful."
msgstr "Îndrumaţi către <strong>informaţii în legătură cu</strong>, campanii sau forumuri care ar putea fi utile."
@@ -1690,13 +1690,13 @@ msgid "Preview new annotation on '{{info_request_title}}'"
msgstr "Previzualizaţi noi adnotări la '{{info_request_title}}'"
msgid "Preview your annotation"
-msgstr "Previzualizaţi adnotarea dvs."
+msgstr "Previzualizează adnotarea ta"
msgid "Preview your message"
-msgstr "Previzualizaţi mesajul dvs."
+msgstr "Previzualizează mesajul tău"
msgid "Preview your public request"
-msgstr "Previzualizaţi cererea dvs."
+msgstr "Previzualizează solicitarea ta publică"
msgid "Profile photo"
msgstr "Poza profil"
@@ -1861,7 +1861,7 @@ msgid "Requests for personal information and vexatious requests are not consider
msgstr "Solicitările de informații personale și solicitările ofensatoare nu sunt considerate valide pentru scopurile solicitărilor de acces la informații (<a href=\"/help/about\">citește mai multe</a>)."
msgid "Requests or responses matching your saved search"
-msgstr "Cereri sau răspunsuri care întrunesc căutarea dvs."
+msgstr "Solicitări sau răspunsuri care se potrivesc cu căutarea ta"
msgid "Respond by email"
msgstr "Răspuns prin email"
@@ -1870,7 +1870,7 @@ msgid "Respond to request"
msgstr "Răspuns la cerere"
msgid "Respond to the FOI request"
-msgstr "Răspuns la cererea FOI"
+msgstr "Răspunde la solicitarea de acces la informații"
msgid "Respond using the web"
msgstr "Răspuns utilizând Internetul"
@@ -1891,7 +1891,7 @@ msgid "Response to this request is <strong>long overdue</strong>."
msgstr "Răspunsul la această cerere este <strong> mult peste termen</strong>."
msgid "Response to your request"
-msgstr "Răspuns la cererea dvs."
+msgstr "Răspuns la solicitarea ta"
msgid "Response:"
msgstr "Răspuns:"
@@ -1909,7 +1909,7 @@ msgid "Search"
msgstr "Caută"
msgid "Search Freedom of Information requests, public authorities and users"
-msgstr "Caută cerei FOI, autorităţi publice și utilizatori"
+msgstr "Caută solicitări de acces la informații, autorităţi publice și utilizatori"
msgid "Search contributions by this person"
msgstr "Caută contribuţii de la această persoană"
@@ -1936,7 +1936,7 @@ msgid "Search within the {{count}} Freedom of Information requests to {{public_b
msgid_plural "Search within the {{count}} Freedom of Information requests made to {{public_body_name}}"
msgstr[0] "Caută printre cele {{count}} până la {{public_body_name}} cereri FOI"
msgstr[1] "Caută printre cele {{count}} până la {{public_body_name}} cereri FOI făcute"
-msgstr[2] "Caută printre cele {{count}} cereri FOI {{public_body_name}} "
+msgstr[2] "Caută printre cele {{count}} solicitări de acces la informații făcute către {{public_body_name}} "
msgid "Search your contributions"
msgstr "Caută contribuţia ta"
@@ -2014,7 +2014,7 @@ msgid "Simple search"
msgstr "Căutare simplă"
msgid "Some notes have been added to your FOI request - "
-msgstr "Au fost adăugate câteva note la cererea dvs. FOI"
+msgstr "Au fost adăugate câteva note la solicitarea ta de acces la informații - "
msgid "Some of the information requested has been received"
msgstr "Câteva informaţii solicitate au fost primite"
@@ -2023,10 +2023,10 @@ msgid "Some people who've made requests haven't let us know whether they were\\n
msgstr "O parte din cei ce au trimis solicitări nu ne-au anunțat dacă acestea au avut sau nu succes. Avem nevoie de <strong>ajutorul și de contribuția</strong> ta;\\nalege un dintre aceste solicitări, citește-o, și spune-ne dacă \\ninformațiile au fost furnizate sau nu. Toată lumea va fi recunoascătoare."
msgid "Somebody added a note to your FOI request - "
-msgstr "Cineva a adăugat o notă la cererea dvs. FOI"
+msgstr "Cineva a adăugat o notă la solicitarea ta de acces la informații - "
msgid "Someone has updated the status of your request"
-msgstr "Cineva a actualizat starea cererii dvs."
+msgstr "Cineva a actualizat starea solicitării tale"
msgid "Someone, perhaps you, just tried to change their email address on\\n{{site_name}} from {{old_email}} to {{new_email}}."
msgstr "Cineva, probabil tu, tocmai a încercat să schimbe adresa de email de pe \\n{{site_name}} din {{old_email}} în {{new_email}}."
@@ -2077,7 +2077,7 @@ msgid "Subscribe to blog"
msgstr "Înscriere pentru blog"
msgid "Successful Freedom of Information requests"
-msgstr "Cereri FOI cu succes"
+msgstr "Solicitări de acces la informații care au fost făcute cu succes"
msgid "Successful."
msgstr "Succes"
@@ -2113,7 +2113,7 @@ msgid "Thank you for making an annotation!"
msgstr "Vă mulţumim pentru adnotarea făcută!"
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 "Vă mulţumim pentru răspunsul la această cerere FOI! Răspunsul dvs. a fost publicat mai jos şi un link către răspunsul dvs. a fost trimis prin email către"
+msgstr "Vă mulţumim pentru răspunsul la această solicitare de acces la informații! Răspunsul dvs. a fost publicat mai jos şi un link către răspunsul dvs. a fost trimis prin email către"
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 "Vă mulţumim pentru actualizarea stării pentru cererea '<a href=\"{{url}}\">{{info_request_title}}</a>'. Mai există câteva cereri mai jos pe care ar trebui să le clasificaţi."
@@ -2209,10 +2209,10 @@ msgid "The response to your request is <strong>long overdue</strong>. You can
msgstr "Răspunsul la solicitarea ta este <strong>mult întârziat</strong>. Poţi spune că, potrivit \\n legii, în oricare circumstanţe, autoritatea ar fi trebuit să răspundă \\n până acum"
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 "Acest index de căutare este în acest moment off-line, aşa ca nu putem afişa cererile FOI făcute către această autoritate."
+msgstr "Acest index de căutare este în acest moment offline, aşa că nu putem afişa solicitările de acces la informații făcute către această autoritate."
msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made."
-msgstr "Acest index de căutare este în acest moment off-line, aşa ca nu putem afişa cererile FOI pe care această persoană le-a făcut."
+msgstr "Acest index de căutare este în acest moment offline, aşa că nu putem afişa solicitările de acces la informații pe care această persoană le-a făcut."
msgid "The {{site_name}} team."
msgstr ""
@@ -2224,13 +2224,13 @@ msgid "Then you can cancel the alerts."
msgstr "Apoi puteţi anula alertele."
msgid "Then you can change your email address used on {{site_name}}"
-msgstr "Apoi puteţi modifica adresa dvs. de email utilizată pe {{site_name}}"
+msgstr "Apoi poți modifica adresa de email utilizată pe {{site_name}}"
msgid "Then you can change your password on {{site_name}}"
-msgstr "Apoi puteţi modifica parola dvs. pe {{site_name}}"
+msgstr "Apoi poţi modifica parola ta pe {{site_name}}"
msgid "Then you can classify the FOI response you have got from "
-msgstr "Apoi puteţi clasifica răspunsul FOI pe care l-aţi primit de la "
+msgstr "Apoi poți clasifica răspunsul la solicitare pe care l-ai primit de la "
msgid "Then you can download a zip file of {{info_request_title}}."
msgstr "Apoi puteţi descărca un fişier zip cu {{info_request_title}}."
@@ -2248,13 +2248,13 @@ msgid "Then you can send a message to "
msgstr "Apoi puteţi trimite un mesaj către "
msgid "Then you can sign in to {{site_name}}"
-msgstr "Apoi puteţi să intraţi in contul dvs de pe {{site_name}}"
+msgstr "Apoi poţi să intri în contul tău de pe {{site_name}}"
msgid "Then you can update the status of your request to "
-msgstr "Apoi puteţi să actualizaşi starea cererii dvs."
+msgstr "Apoi poţi să actualizezi starea solicitării tale în"
msgid "Then you can upload an FOI response. "
-msgstr "Apoi puteţi să încărcaţi un răspuns FOI"
+msgstr "Apoi poți uploada un răspuns la o solicitare."
msgid "Then you can write follow up message to "
msgstr "Apoi puteţi să scrieţi un mesaj de urmărire către"
@@ -2269,10 +2269,10 @@ msgid "Then you will be notified whenever '{{user_name}}' requests something or
msgstr "După aceea vei fi notificat de fiecare dată când '{{user_name}}' solicită ceva sau primește răspuns."
msgid "Then you will be notified whenever a new request or response matches your search."
-msgstr "Apoi veţi fi notificat de câte ori un răspuns sau o cerere corespunde căutării dvs."
+msgstr "Apoi vei fi notificat de câte ori un răspuns sau o cerere corespunde căutării tale."
msgid "Then you will be notified whenever an FOI request succeeds."
-msgstr "Apoi veţi fi notificat de câte ori o cerere FOI este reuşită."
+msgstr "Apoi vei fi notificat de câte ori o solicitare de acces la informații este reuşită."
msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
msgstr "Apoi veţi fi notificat de câte ori cineva solicită sau primeşte un răspuns de la '{{public_body_name}}'."
@@ -2281,16 +2281,16 @@ msgid "Then you will be updated whenever the request '{{request_title}}' is upda
msgstr "Apoi veţi fi informfat de câte cererea '{{request_title}}' este actualizată."
msgid "Then you'll be allowed to send FOI requests."
-msgstr "Apoi veţi putea să trimiteţi cereri FOI"
+msgstr "Apoi vei putea să trimiți solicitări de acces la informații."
msgid "Then your FOI request to {{public_body_name}} will be sent."
-msgstr "Apoi cerere dvs. FOI către {{public_body_name}} va fi trimisă."
+msgstr "Apoi solicitarea de acces la informații către {{public_body_name}} va fi trimisă."
msgid "Then your annotation to {{info_request_title}} will be posted."
-msgstr "Apoi adnotarea dvs. către {{info_request_title}} va fi postată."
+msgstr "Apoi adnotarea ta la {{info_request_title}} va fi postată."
msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote."
-msgstr "Sunt {{count}} adnotări noi la cererea dvs. {{info_request}}. Urmaţi acest link pentru a vedea ce au scris."
+msgstr "Sunt {{count}} adnotări noi la cererea ta {{info_request}}. Urmează acest link pentru a vedea ce au scris."
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 "Există <strong>mai mult de o persoană</strong> care utilizează acest site şi are acest nume.\\n Una dintre ele este afişată mai jos, în cazul în care cauţi pe altcineva:"
@@ -2311,10 +2311,10 @@ msgid "There was an error with the words you entered, please try again."
msgstr "Există o eroare printre cuvintele pe care le-aţi introdus, vă rugăm încercaţi din nou."
msgid "There were no requests matching your query."
-msgstr "Nu sunt cereri care satisfac interogarea dvs."
+msgstr "Nu sunt cereri care se potrivesc cu interogarea ta."
msgid "There were no results matching your query."
-msgstr "Nu sunt rezultate care satisfac interogarea dvs."
+msgstr "Nu sunt rezultate care satisfac interogarea ta."
msgid "They are going to reply <strong>by post</strong>"
msgstr "Ei vor răspunde <strong>prin postarea </strong>"
@@ -2326,7 +2326,7 @@ msgid "They have been given the following explanation:"
msgstr "Ei au oferit următoarea explicaţie"
msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law"
-msgstr "Ei nu au răspuns prompt lacererea dvs {{title}} {{law_used_short}} aşa cum este prevăzut in mod normal prin lege"
+msgstr "Ei nu au răspuns prompt la solicitarea ta {{title}} {{law_used_short}} aşa cum este prevăzut in mod normal prin lege"
msgid "They have not replied to your {{law_used_short}} request {{title}}, \\nas required by law"
msgstr "Nu ţi-au răspuns la {{law_used_short}} solicitarea {{title}}, \\naşa cum specifică legea"
@@ -2350,10 +2350,10 @@ msgid "This external request has been hidden"
msgstr "Această cerere externăa fost ascunsă"
msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}"
-msgstr "Aceasta este o versiune text-simplu a cererii FOI \"{{request_title}}\". Ultima versiune, completă, este disponibila online la {{full_url}}"
+msgstr "Aceasta este o versiune text-simplu a solicitării \"{{request_title}}\". Ultima versiune, completă, este disponibila online la {{full_url}}"
msgid "This is an HTML version of an attachment to the Freedom of Information request"
-msgstr "Aceasta este o versiune HTML a ataşamentului la cererea FOI."
+msgstr "Aceasta este o versiune HTML a unui ataşament la solicitarea de acces la informații"
msgid "This is because {{title}} is an old request that has been\\nmarked to no longer receive responses."
msgstr "Aceasta este din cauză că {{title}} este o solicitare veche ce a fost \\nmarcată pentru a nu mai primi răspunsuri."
@@ -2362,7 +2362,7 @@ msgid "This is the first version."
msgstr "Aceasta este prima versiune."
msgid "This is your own request, so you will be automatically emailed when new responses arrive."
-msgstr "Acesata este cererea dvs proprie, aşa ca vi se va comunica automat prin când va sosi un răspuns."
+msgstr "Aceasta este solicitarea proprie, aşa că ți se va comunica automat prin email când va sosi un răspuns."
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=\"{{url}}\">sign in</a> to view the response."
msgstr "Acest mesaj în curs de expediere a fost ascuns. Vezi adnotaţiile pentru\\n»»»»»»a afla de ce. Dacă eşti solicitantul, atunci te poţi <a href=\"{{url}}\">autentifica</a> pentru a vedea răspunsul."
@@ -2371,7 +2371,7 @@ msgid "This particular request is finished:"
msgstr "Acesată cerere anume este finalizată:"
msgid "This person has made no Freedom of Information requests using this site."
-msgstr "Acestă persoană nu a făcut nici o cerere FOI utilizând acest site"
+msgstr "Acestă persoană nu a făcut nici o solicitare de acces la informații utilizând acest site"
msgid "This person's annotations"
msgstr "Adnotările acestei persoane"
@@ -2380,7 +2380,7 @@ msgid "This person's {{count}} Freedom of Information request"
msgid_plural "This person's {{count}} Freedom of Information requests"
msgstr[0] "A {{count}} -a cerere FOI a acestei persoane"
msgstr[1] "A {{count}} -a cerere FOI a acestei persoane"
-msgstr[2] "A {{count}} -a cerere FOI a acestei persoane"
+msgstr[2] "{{count}} solicitări de acces la informații ale acestei persoane"
msgid "This person's {{count}} annotation"
msgid_plural "This person's {{count}} annotations"
@@ -2398,7 +2398,7 @@ msgid "This request has an <strong>unknown status</strong>."
msgstr "Aceasta cerere are un status <strong>necunoscut</strong>."
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
-msgstr "Această cerere a fost <strong>ascunsă </strong> de pe site deoarece un administrator consideră că nu poate fi o cerere FOI"
+msgstr "Această solicitarea fost <strong>ascunsă </strong> de pe site deoarece un administrator consideră că nu poate fi o solicitare de acces la informații"
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
msgstr "Această cerere a fost <strong>ascunsă </strong> de pe site deoarece un administrator o consideră ofensatoare"
@@ -2458,10 +2458,10 @@ msgid "To carry on, you need to sign in or make an account. Unfortunately, there
msgstr "Pentru a continua, trebuie să te autentifici sau să te înregistrezi. Din păcate, a fost\\no problemă tehnică în încercarea de a face acest lucru."
msgid "To change your email address used on {{site_name}}"
-msgstr "Pentru a modifica adresa dvs. de email utilizată pe {{site_name}}"
+msgstr "Pentru a modifica adresa de email utilizată pe {{site_name}}"
msgid "To classify the response to this FOI request"
-msgstr "Pentru a clasifica răspunsul la această cerere FOI"
+msgstr "Pentru a clasifica răspunsul la această solicitare de acces la informații"
msgid "To do that please send a private email to "
msgstr "Pentru a face aceasta, vă rugăm trimiteţi un email privat la"
@@ -2479,7 +2479,7 @@ msgid "To follow new requests"
msgstr "Pentru a urmări solicitările noi"
msgid "To follow requests and responses matching your search"
-msgstr "Pentru a urmări cererile şi răspunsurile care corespund căutării dvs."
+msgstr "Pentru a urmări solicitările şi răspunsurile care corespund căutării tale"
msgid "To follow requests by '{{user_name}}'"
msgstr "Pentru a urmări solicitările făcute de '{{user_name}}'"
@@ -2503,7 +2503,7 @@ msgid "To play the request categorisation game"
msgstr "Pentru a juca jocu categorisirea cererii"
msgid "To post your annotation"
-msgstr "Pentru a posta adnotarea dvs"
+msgstr "Pentru a posta adnotarea ta"
msgid "To reply to "
msgstr "Pentru a răspunde la"
@@ -2518,10 +2518,10 @@ msgid "To send a message to "
msgstr "Pentru a trimite un mesaj la"
msgid "To send your FOI request"
-msgstr "Pentru a trimite cererea dvs. FOI"
+msgstr "Pentru a trimite solicitarea ta"
msgid "To update the status of this FOI request"
-msgstr "Pentru a actualiza starea acestei cereri FOI"
+msgstr "Pentru a actualiza starea acestei solicitări de acces la informații"
msgid "To upload a response, you must be logged in using an email address from "
msgstr "Pentru a încărca un răspuns trebuie să fiţi intrat în cont, folosind o adresă de email de la"
@@ -2530,7 +2530,7 @@ msgid "To use the advanced search, combine phrases and labels as described in th
msgstr "Pentru a utiliza căutarea avansată, combinaţi fraze şi etichete după cum este descris în trucurile de căutare de mai jos"
msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words."
-msgstr "Pentru a vedea adresa de email pe care noi o utilizăm pentru a trimite cereri FOI către {{public_body_name}}, vă rugăm introduceti aceste cuvinte."
+msgstr "Pentru a vedea adresa de email pe care noi o utilizăm pentru a trimite solicitări de acces la informații către {{public_body_name}}, te rugăm să introduci aceste cuvinte."
msgid "To view the response, click on the link below."
msgstr "Pentru a vedea răspunsul, daţi click pe linkul de mai jos."
@@ -2614,10 +2614,10 @@ msgid "Update the status of this request"
msgstr "Actualizaţi starea acestei cereri"
msgid "Update the status of your request to "
-msgstr "Actualizaţi starea cereri dvs."
+msgstr "Actualizează starea cereri tale"
msgid "Upload FOI response"
-msgstr "Încarcă răspuns FOI"
+msgstr "Încarcă răspuns solicitare"
msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
msgstr "Utilizaţi SAU (cu litere mari) când contează oricare dintre cuvinte, de exemplu d, e.g. <strong><code> ministri SAU parlamentari </code></strong>"
@@ -2692,16 +2692,16 @@ msgid "Version {{version}}"
msgstr "Versiunea {{version}}"
msgid "View FOI email address"
-msgstr "Vezi adresa de email FOI"
+msgstr "Vezi adresa de email pentru solicitări"
msgid "View FOI email address for '{{public_body_name}}'"
-msgstr "Vezi adresa de email FOI pentru '{{public_body_name}}'"
+msgstr "Vezi adresa de email pentru '{{public_body_name}}'"
msgid "View FOI email address for {{public_body_name}}"
-msgstr "Vezi adresa de email FOI pentru '{{public_body_name}}'"
+msgstr "Vezi adresa de email pentru '{{public_body_name}}'"
msgid "View Freedom of Information requests made by {{user_name}}:"
-msgstr "Vezi cererile FOI făcute de {{user_name}}:"
+msgstr "Vezi cererile solicitările de acces la informații făcute de {{user_name}}:"
msgid "View and search requests"
msgstr "Vezi şi caută cereri"
@@ -2728,7 +2728,7 @@ msgid "Waiting for the public authority to reply"
msgstr "Aşteaptă răspunsul autorităţii publice"
msgid "Was the response you got to your FOI request any good?"
-msgstr "Răspunsul pe care l-aţi primit la cererea dvs. FOI vi-a fost de folos?"
+msgstr "Răspunsul pe care l-ai primit la solicitarea de acces la informații a fost de folos?"
msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
msgstr ""
@@ -2788,7 +2788,7 @@ msgid "When you receive the paper response, please help\\n others fin
msgstr "Când primeşti răspunsul scris, ajută-i\\n pe ceilalţi să afle ce ţi s-a răspuns:"
msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">reload this page</a> and file your new request."
-msgstr "Când aţi terminat, <strong>întoarceţi-vă aici</strong>, <a href=\"{{url}}\">reîncărcaţi acestă pagină</a> şi depuneţi noua dvs. cerere."
+msgstr "Când ai terminat, <strong>întoarce-te aici</strong>, <a href=\"{{url}}\">reîncărcă acestă pagină</a> şi depune noua ta solicitare."
msgid "Which of these is happening?"
msgstr "Care dintre acestea se întâmplă?"
@@ -2803,7 +2803,7 @@ msgid "Wk"
msgstr "Wk"
msgid "Would you like to see a website like this in your country?"
-msgstr "Aţi dori să vedeţi un web-site ca acesta în ţara dvs. ?"
+msgstr "Ai dori să vezi un web-site ca acesta în ţara ta?"
msgid "Write a reply"
msgstr "Scrie un răspuns"
@@ -2812,13 +2812,13 @@ msgid "Write a reply to "
msgstr "Scrie un răspuns către"
msgid "Write your FOI follow up message to "
-msgstr "Scrieţi mesajul dvs FOI de urmărire către"
+msgstr "Scrie mesajul de follow up la solicitarea către"
msgid "Write your request in <strong>simple, precise language</strong>."
-msgstr "Fromulaţi cererea dvs. într-nm <strong>limbaj precis, simplu</strong>."
+msgstr "Formulează solicitarea ta într-un <strong>limbaj precis, simplu</strong>."
msgid "You"
-msgstr "Dvs."
+msgstr "Tu"
msgid "You are already following new requests"
msgstr "Deja urmărești solicitările noi"
@@ -2839,7 +2839,7 @@ msgid "You are already following updates about {{track_description}}"
msgstr "Deja urmărești următoarele actualizări despre {{track_description}}"
msgid "You are currently receiving notification of new activity on your wall by email."
-msgstr "Primiţi în mod curent notificări pentru activităţi noi pe peretele dvs. sau prin email."
+msgstr "În acest moment primești notificări privind activititățile noi de pe peretele tău prin email."
msgid "You are following all new successful responses"
msgstr "Urmărești toate solicitările noi la care s-a răspuns"
@@ -2872,13 +2872,13 @@ msgid "You have hit the rate limit on new requests. Users are ordinarily limited
msgstr "Aţi atins limita maximă pentru cereri. Utilizatorii sunt de obicei limitaţi la {{max_requests_per_user_per_day}} cereri într-un interval de 24 de ore. Veţi putea face o nouă cerere în {{can_make_another_request}}."
msgid "You have made no Freedom of Information requests using this site."
-msgstr "Nu aţi făcut nici o cerere FOI utilizând acest site."
+msgstr "Nu ai făcut nici o solicitare de acces la informații utilizând acest site."
msgid "You have now changed the text about you on your profile."
-msgstr "Nu aţi schimbat textul referitor la profilul dvs."
+msgstr "Acum ai schimbat textul referitor la tine din profilul tău."
msgid "You have now changed your email address used on {{site_name}}"
-msgstr "Acum aţi schimbat adresa dvs. de email utilizată pe {{site_name}}"
+msgstr "Acum ai schimbat adresa de email utilizată pe {{site_name}}"
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 "Tocmai ai încercat să te înregistrezi la {{site_name}}, când ai \\ndeja un cont. Numele şi parola ta au fost \\nlăsate aşa cum erau înainte.\\n\\nTe rugăm să accesezi link-ul de mai jos."
@@ -2896,13 +2896,13 @@ msgid "You may be able to find\\none on their website, or by phoning them up and
msgstr "S-ar putea să găsești\\nunul pe website-ul lor sau telefonându-le și întrebând. Dacă reușești\\nsă găsești unul, atunci te rugăm<a href=\"{{help_url}}\">să ni-l trimiți și nouă</a>."
msgid "You need to be logged in to change the text about you on your profile."
-msgstr "Trebuie să fiţi logat pentru a schimba textul referitor la profilul dvs."
+msgstr "Trebuie să fii logat pentru a schimba textul referitor la profilul tău."
msgid "You need to be logged in to change your profile photo."
-msgstr "Trebuie să fiţi logat pentru a schimba poza dvs. de profil."
+msgstr "Trebuie să fii logat pentru a schimba poza ta de profil."
msgid "You need to be logged in to clear your profile photo."
-msgstr "Trebuie să fiţi logat pentru a şterge poza dvs. de profil."
+msgstr "Trebuie să fii logat pentru a şterge poza ta de profil."
msgid "You need to be logged in to edit your profile."
msgstr "Trebuie să fiţi conectat pentru a vă edita profilul"
@@ -2917,7 +2917,7 @@ msgid "You should have received a copy of the request by email, and you can resp
msgstr "Ar fi trebuit să primești o copie a solicitării tale prin email și poți răspunde\\n <strong>răspunzând</strong> la acel email. Pentru conveniență, adresa este:"
msgid "You want to <strong>give your postal address</strong> to the authority in private."
-msgstr "Vreţi să <strong>vă daţi adresa dvs. poştală</strong> către autoritate în privat."
+msgstr "Vrei să <strong>să specifici adresa ta poştală</strong> către autoritate în privat."
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 "Nu vei mai putea face noi solicitări, trimite follow up-uri, adăuga adnotări sau\\ntrimite mesaje altor utilizatori. Poți continua să vizualizezi alte solicitări și să setezi\\n alerte prin email."
@@ -2938,64 +2938,64 @@ msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your reques
msgstr "Ești autentificat.<a href=\"#\" id=\"send-request\">Continuă pentru transmiterea solicitării tale</a>"
msgid "You're long overdue a response to your FOI request - "
-msgstr "Sunteţi mult peste termen cu răspunsul la cererea dvs. FOI"
+msgstr "A fost depășit de mult termenul de răspuns la solicitarea de acces la informații -"
msgid "You're not following anything."
msgstr "Nu urmărești nimic."
msgid "You've now cleared your profile photo"
-msgstr "Acum aţi şters poza dvs. de profil"
+msgstr "Acum ai şters poza ta de profil"
msgid "Your <strong>name will appear publicly</strong>\\n (<a href=\"{{why_url}}\">why?</a>)\\n on this website and in search engines. If you\\n are thinking of using a pseudonym, please\\n <a href=\"{{help_url}}\">read this first</a>."
msgstr "Numele tău <strong>va apărea public</strong> \\n (<a href=\"{{why_url}}\">de ce?</a>)\\n pe acest website și în motoarele de căutare. Dacă te\\n gândești să utilizezi un pseudonim, te rugăm \\n <a href=\"{{help_url}}\">să citești aceasta înainte</a>."
msgid "Your annotations"
-msgstr "Adnotările dvs."
+msgstr "Adnotările tale"
msgid "Your details, including your email address, have not been given to anyone."
-msgstr "Detaliile dvs. inclusv adresa dvs. de email, nu au fost ofertite nimănui."
+msgstr "Detaliile tale, inclusv adresa de email, nu au fost oferite nimănui."
msgid "Your e-mail:"
-msgstr "Emailul dvs:"
+msgstr "Emailul tău:"
msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message."
-msgstr "Urmărirea dvs. nu a fost rimisă deoarece acest mesaj a fost stopat de protecţia anti-spam. Vă rugăm <a href=\"{{url}}\">să ne contactaţi</a> dacă doriţi cu adevărat să trimiteţi un mesaj de urmărire."
+msgstr "Follow up-ul tău nu a fost trimis deoarece acest mesaj a fost stopat de protecţia anti-spam. Te rugăm <a href=\"{{url}}\">să ne contactezi</a> dacă dorești cu adevărat să trimiţi un mesaj de follow up."
msgid "Your follow up message has been sent on its way."
-msgstr "Mesjaul dvs. de urmărire a fost trimis unde trebuie."
+msgstr "Mesajul tău de follow up a fost trimis unde trebuie."
msgid "Your internal review request has been sent on its way."
-msgstr "Cererea dvs. de revizuire internă a fost trimisă unde trebuie."
+msgstr "Cererea ta de revizuire internă a fost trimisă unde trebuie."
msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon."
-msgstr "Mesajul dvs. fost trimis. Vă mulţumim pentru informare. Vă vom contacta în curând."
+msgstr "Mesajul tău fost trimis. Îți mulţumim pentru informare. Te vom contacta în curând."
msgid "Your message to {{recipient_user_name}} has been sent"
-msgstr "Mesajul dvs. către {{recipient_user_name}} a fost trimis"
+msgstr "Mesajul către {{recipient_user_name}} a fost trimis"
msgid "Your message to {{recipient_user_name}} has been sent!"
-msgstr "Mesajul dvs către {{recipient_user_name}}a fost trimis!"
+msgstr "Mesajul tău către {{recipient_user_name}}a fost trimis!"
msgid "Your message will appear in <strong>search engines</strong>"
-msgstr "Mesajul dvs. va apărea în <strong>motoarele de căutare</strong>"
+msgstr "Mesajul tău va apărea în <strong>motoarele de căutare</strong>"
msgid "Your name and annotation will appear in <strong>search engines</strong>."
-msgstr "Numele şi adnotarea dvs. vor apărea în <strong>motoarele de căutare</strong>"
+msgstr "Numele şi adnotarea ta vor apărea în <strong>motoarele de căutare</strong>"
msgid "Your name, request and any responses will appear in <strong>search engines</strong>\\n (<a href=\"{{url}}\">details</a>)."
msgstr "Numele tău, solicitările tale şi orice răspunsuri vei primi vor apărea în <strong>motoare de căutare </strong>\\n (<a href=\"{{url}}\">details</a>)."
msgid "Your name:"
-msgstr "Numele dvs:"
+msgstr "Numele tău:"
msgid "Your original message is attached."
-msgstr "Mesajul dvs. original este ataşat."
+msgstr "Mesajul tău original este ataşat."
msgid "Your password has been changed."
-msgstr "Parola dvs. a fost modificată."
+msgstr "Parola ta a fost modificată."
msgid "Your password:"
-msgstr "Parola dvs.:"
+msgstr "Parola ta:"
msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n wherever you do something on {{site_name}}."
msgstr "Fotografia ta va fi făcută publică <strong>pe Internet</strong>,\\n oriunde faci ceva pe {{site_name}}."
@@ -3007,34 +3007,34 @@ msgid "Your request on {{site_name}} hidden"
msgstr ""
msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
-msgstr "Cererea dvs. a fost numită {{info_request}}. Permiţând tuturor să afle dacă aţi obţinut informaţiile, ne ajutaţi să menţinem o evidenţă"
+msgstr "Solicitarea ta a fost numită {{info_request}}. Permiţând tuturor să afle dacă ai obţinut informaţiile, ne ajuţi să menţinem o evidenţă"
msgid "Your request:"
-msgstr "Cererea dvs:"
+msgstr "Solicitarea ta:"
msgid "Your response to an FOI request was not delivered"
-msgstr "Răspunsul dvs. la o cerere FOI nu a fost livrat"
+msgstr "Răspunsul tău la o solicitare de acces la informații nu a fost livrat"
msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
-msgstr "Răspunsul dvs. <strong>va apărea pe Internet</strong>, <a href=\"{{url}}\">read why</a> şi răspunsurile la alte întrebări."
+msgstr "Răspunsul tău <strong>va apărea pe Internet</strong>, <a href=\"{{url}}\">read why</a> şi răspunde la alte întrebări."
msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request."
-msgstr "Consideraţiile dvs. cu privire la ceea ce <strong>administratorii</strong> {{site_name}} ar trebui să facă în legătură cu cererea."
+msgstr "Consideraţiile tale cu privire la ceea ce <strong>administratorii</strong> {{site_name}} ar trebui să facă în legătură cu cererea."
msgid "Your {{count}} Freedom of Information request"
msgid_plural "Your {{count}} Freedom of Information requests"
msgstr[0] "A {{count}} -a cerere FOI a dvs."
msgstr[1] "A {{count}} -a cerere FOI a dvs."
-msgstr[2] "A {{count}} -a cerere FOI a dvs."
+msgstr[2] "Cele {{count}} solicitări de acces la informații ale tale"
msgid "Your {{count}} annotation"
msgid_plural "Your {{count}} annotations"
msgstr[0] "A {{count}} -a adnotare a dvs."
msgstr[1] "A {{count}} -a adnotare a dvs."
-msgstr[2] "A {{count}} -a adnotare a dvs."
+msgstr[2] "A {{count}} -a adnotare a ta"
msgid "Your {{site_name}} email alert"
-msgstr "Alerta dvs. prin email {{site_name}}"
+msgstr "Alerta ta prin email de la {{site_name}}"
msgid "Yours faithfully,"
msgstr "Cu respect,"
@@ -3070,7 +3070,7 @@ msgid "all requests"
msgstr "toate cererile"
msgid "also called {{public_body_short_name}}"
-msgstr "deasemenea numit şi {{public_body_short_name}}"
+msgstr "de asemenea numită şi {{public_body_short_name}}"
msgid "an anonymous user"
msgstr "un utilizator anonim"
@@ -3145,7 +3145,7 @@ msgid "during term time"
msgstr "pe perioada termenului"
msgid "edit text about you"
-msgstr "editati textul despre dvs-"
+msgstr "editează textul despre tine"
msgid "even during holidays"
msgstr "chiar şi pe perioada vacanţelor"
@@ -3178,7 +3178,7 @@ msgid "internal reviews"
msgstr "revizuire internă"
msgid "is <strong>waiting for your clarification</strong>."
-msgstr " <strong>aşteaptă clarificarea dvs.</strong>."
+msgstr " <strong>aşteaptă clarificarea ta</strong>."
msgid "just to see how it works"
msgstr "doar să vedeţi cum funcţionează"
@@ -3256,7 +3256,7 @@ msgid "that you made to"
msgstr "pe care aţi făcut-o către"
msgid "the main FOI contact address for {{public_body}}"
-msgstr "principala adresă de contact FOI pentru {{public_body}}"
+msgstr "principala adresă de contact pentru {{public_body}}"
#. This phrase completes the following sentences:
#. Request an internal review from...
@@ -3264,7 +3264,7 @@ msgstr "principala adresă de contact FOI pentru {{public_body}}"
#. Send a public reply to...
#. Don't want to address your message to... ?
msgid "the main FOI contact at {{public_body}}"
-msgstr "Principalul contact FOI la {{public_body}}"
+msgstr "principalul contact la {{public_body}}"
msgid "the requester"
msgstr "solicitantul"
@@ -3315,13 +3315,13 @@ msgid "what's that?"
msgstr "ce este aceasta?"
msgid "{{count}} FOI requests found"
-msgstr "{{count}} cereri FOI găsite"
+msgstr "{{count}} solicitări de acces la informații găsite"
msgid "{{count}} Freedom of Information request to {{public_body_name}}"
msgid_plural "{{count}} Freedom of Information requests to {{public_body_name}}"
msgstr[0] "{{count}} cereri FOI până la {{public_body_name}}"
msgstr[1] "{{count}} cereri FOI până {{public_body_name}}"
-msgstr[2] "{{count}} solicitări de acces la informaţie până la {{public_body_name}} "
+msgstr[2] "{{count}} solicitări de acces la informaţii către {{public_body_name}} "
msgid "{{count}} person is following this authority"
msgid_plural "{{count}} people are following this authority"
@@ -3375,7 +3375,7 @@ msgid "{{public_body_name}} only:"
msgstr "numai {{public_body_name}} :"
msgid "{{public_body}} has asked you to explain part of your {{law_used}} request."
-msgstr "{{public_body}} vi-a cerut să explicaţi o parte a cererii dvs. {{law_used}} "
+msgstr "{{public_body}} ți-a cerut să explici o parte a solicitării tale prin {{law_used}} "
msgid "{{public_body}} sent a response to {{user_name}}"
msgstr "{{public_body}} trimite un răspuns către {{user_name}}"
@@ -3402,13 +3402,13 @@ msgid "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code>{
msgstr "{{thing_changed}} a fost schimbat din <code>{{from_value}}</code> în <code>{{to_value}}</code>"
msgid "{{title}} - a Freedom of Information request to {{public_body}}"
-msgstr "{{title}} - o cerere FOI către {{public_body}}"
+msgstr "{{title}} - o solicitare de acces la informații către {{public_body}}"
msgid "{{user_name}} (Account suspended)"
msgstr "{{user_name}} (Cont suspendat)"
msgid "{{user_name}} - Freedom of Information requests"
-msgstr "{{user_name}} - cereri FOI"
+msgstr "{{user_name}} - solicitări de acces la informații"
msgid "{{user_name}} - user profile"
msgstr "{{user_name}} - profil utilizator"
diff --git a/locale/sl/app.po b/locale/sl/app.po
index e199d46cc..2b042fbe0 100644
--- a/locale/sl/app.po
+++ b/locale/sl/app.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# zejn <zejn@kiberpipa.org>, 2013
msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
"POT-Creation-Date: 2013-06-24 09:40-0700\n"
-"PO-Revision-Date: 2013-06-24 16:52+0000\n"
-"Last-Translator: louisecrow <louise@mysociety.org>\n"
+"PO-Revision-Date: 2013-07-11 11:02+0000\n"
+"Last-Translator: zejn <zejn@kiberpipa.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/projects/p/alaveteli/language/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
@@ -18,3236 +19,3239 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
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 ""
+msgstr "To bo prikazano na profilu {{site_name}}, da vam bodo drugi lažje pomagali pri vaših zahtevkih."
msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">moderation policy</a>)"
-msgstr ""
+msgstr "(<strong>brez</strong> politikantstva, preberite naš <a href=\"{{url}}\">pravilnik moderiranja</a>)"
msgid " (<strong>patience</strong>, especially for large files, it may take a while!)"
-msgstr ""
+msgstr "(<strong>potrpežljivo</strong>, prenos lahko traja, še posebej v primeru večjih datotek!)"
msgid " (you)"
-msgstr ""
+msgstr "(vi)"
msgid " - view and make Freedom of Information requests"
-msgstr ""
+msgstr "- preglejte in ustvarite zahtevke za informacije javnega značaja"
msgid " - wall"
-msgstr ""
+msgstr "- zid"
msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password."
-msgstr ""
+msgstr "<strong>Opomba:</strong>\\n Poslali vam bomo e-pošto. Sledite navodilom v njej, da spremenite\\n vaše geslo."
msgid " <strong>Privacy note:</strong> Your email address will be given to"
-msgstr ""
+msgstr "<strong>Opomba:</strong> Vaš e-poštni naslov bo poslan "
msgid " <strong>Summarise</strong> the content of any information returned. "
-msgstr ""
+msgstr "<strong>Povzemite</strong> vsebino morebitnih prejetih informacij."
msgid " Advise on how to <strong>best clarify</strong> the request."
-msgstr ""
+msgstr "Svetujte kako <strong>najbolje razjasniti</strong> zahtevek."
msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. "
-msgstr ""
+msgstr "Predlogi o <strong>morebitnih drugih dokumentih</strong>, ki jih lahko organ drži."
msgid " If you know the address to use, then please <a href=\"{{url}}\">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 ""
+msgstr "Če poznate pravi e-poštni naslov, nam ga prosimo <a href=\"{{url}}\">pošljite</a>.\\n Naslov lahko najdete na njihovi spletni strani ali pa jih povprašate po telefonu."
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 ""
+msgstr "Vključite smiselne povezave, kot so povezava na stran kampanje, vaš blog ali \\ntwitter račun. Prikazale se bodo kot povezave. \\n npr."
msgid " Link to the information requested, if it is <strong>already available</strong> on the Internet. "
-msgstr ""
+msgstr "Povezava na zahtevane informacije, če so <strong>že na voljo</strong> na spletu."
msgid " Offer better ways of <strong>wording the request</strong> to get the information. "
-msgstr ""
+msgstr "Ponudite boljšo <strong>ubeseditev zahtevka</strong> po informacijah javnega značaja."
msgid " Say how you've <strong>used the information</strong>, with links if possible."
-msgstr ""
+msgstr "Opišite kako ste <strong>uporabili informacije</strong> in dodajte spletno povezavo, če je možno."
msgid " Suggest <strong>where else</strong> the requester might find the information. "
-msgstr ""
+msgstr "Predlagajte <strong>kje drugje</strong> bi prosilec lahko našel iskane informacije."
msgid " What are you investigating using Freedom of Information? "
-msgstr ""
+msgstr "Kaj preiskujete z uporabo informacij javnega značaja?"
msgid " You are already being emailed updates about the request."
-msgstr ""
+msgstr "Že prejemate e-poštna obvestila o tem zahtevku."
msgid " You will also be emailed updates about the request."
-msgstr ""
+msgstr "Prejeli boste tudi e-poštna obvestila o zahtevku."
msgid " made by "
-msgstr ""
+msgstr "ustvaril"
msgid " or "
-msgstr ""
+msgstr "ali"
msgid " when you send this message."
-msgstr ""
+msgstr "ko pošljete to sporočilo."
msgid "\"Hello! We have an <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">important message</a> for visitors outside {{country_name}}\""
-msgstr ""
+msgstr "\"Živjo! Imamo <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">pomembno novico</a> za obiskovalce izven {{country_name}}\""
msgid "'Crime statistics by ward level for Wales'"
-msgstr ""
+msgstr "'Statistika kaznivih dejanj po okoliših za Wales' "
msgid "'Pollution levels over time for the River Tyne'"
-msgstr ""
+msgstr "'Stopnje onesnaženosti skozi čas za reko Tyne'"
msgid "'{{link_to_authority}}', a public authority"
-msgstr ""
+msgstr "'{{link_to_authority}}', javni organ"
msgid "'{{link_to_request}}', a request"
-msgstr ""
+msgstr "'{{link_to_request}}', zahtevek"
msgid "'{{link_to_user}}', a person"
-msgstr ""
+msgstr "'{{link_to_user}}', oseba"
msgid "*unknown*"
-msgstr ""
+msgstr "*neznano*"
msgid ",\\n\\n\\n\\nYours,\\n\\n{{user_name}}"
-msgstr ""
+msgstr ",\\n\\n\\n\\nS spoštovanjem,\\n\\n{{user_name}}"
msgid "- or -"
-msgstr ""
+msgstr "- ali -"
msgid "1. Select an authority"
-msgstr ""
+msgstr "1. Izberite organ"
msgid "2. Ask for Information"
-msgstr ""
+msgstr "2. Zahtevajte informacije"
msgid "3. Now check your request"
-msgstr ""
+msgstr "3. Preverite vaš zahtevek"
msgid "<a href=\"{{browse_url}}\">Browse all</a> or <a href=\"{{add_url}}\">ask us to add one</a>."
-msgstr ""
+msgstr "<a href=\"{{browse_url}}\">Prebrskaj vse</a> ali <a href=\"{{add_url}}\"> nas poprosi, da dodamo kakega</a>."
msgid "<a href=\"{{url}}\">Add an annotation</a> (to help the requester or others)"
-msgstr ""
+msgstr "<a href=\"{{url}}\">Dodaj zaznamek</a> (da pomagate prosilcu in drugim)"
msgid "<a href=\"{{url}}\">Sign in</a> to change password, subscriptions and more ({{user_name}} only)"
-msgstr ""
+msgstr "<a href=\"{{url}}\">Prijavite se</a> da spremenite geslo, spremljanja in drugo (zgolj {{user_name}})"
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 ""
+msgstr "<p>Končano! Hvala za vašo pomoč.</p><p>Če želite pomagati {{site_name}}, lahko to storite na <a href=\"{{helpus_url}}\">več načinov</a>.</p>"
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 ""
+msgstr "<p>Hvala! Imamo nekaj idej kaj storiti naprej:</p>\\n <ul>\\n <li>Da bi poslali zahtevek še kakemu organu, najprej kopirajte besedilo spodnjega zahtevka, zatem pa <a href=\"{{find_authority_url}}\">poiščite drug organ</a>.</li>\\n <li>Če želite spodbijati trditev organa, da z informacijami ne razpolaga, si lahko pogledate\\n <a href=\"{{complain_url}}\">kako se pritožiti</a>.\\n </li>\\n <li>Imamo <a href=\"{{other_means_url}}\">nekaj predlogov</a>\\n za druge načine iskanja odgovorov na vaša vprašanja. \\n </li>\\n </ul>"
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 ""
+msgstr "<p>Hvala! Upamo, da ne boste rabili čakati dolgo.</p> <p>Po zakonu morate prejeti odgovor najkasneje do <strong>{{date_response_required_by}}</strong>.</p>"
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 ""
+msgstr "<p>Hvala! Upamo, da ne boste dolgo čakali na odgovor.</p> <p>Organi morajo odgovoriti v zakonsko določenem roku, in sicer pred <strong>\\n{{date_response_required_by}}</strong>.</p>"
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 ""
+msgstr "<p>Hvala! Upamo, da ne boste rabili dolgo čakati.</p><p>V {{late_number_of_days}} dneh morate prejeti odgovor ali obvestilo o podaljšanju roka (<a href=\"{{review_url}}\">podrobnosti</a>).</p>"
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 ""
+msgstr "<p>Hvala! Rok za odgovor na vaš zahtevek je potekel pred {{very_late_number_of_days}} delovnimi dnevi. Večina zahtevkov bi morala prejeti odgovor v {{late_number_of_days}} delovnih dneh. Če bi se želeli pritožiti, berite spodaj.</p>"
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 ""
+msgstr "<p>Hvala, da ste spremenili vaš profilni opis.</p>\\n <p><strong>Sedaj ...</strong> lahko dodate tudi profilno sliko.</p>"
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 ""
+msgstr "<p>Hvala, da ste posodobili vašo profilno sliko.</p>\\n <p><strong>Sedaj ...</strong> lahko na vaš profil dodate vaš opis in opis vaših interesov.</p>"
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 ""
+msgstr "<p>Priporočamo, da uredite vaš zahtevek in odstranite e-poštni naslov.\\n Če ga boste pustili v sporočilu, bo e-poštni naslov poslan organu, ne bo pa prikazan na spletni strani.</p>"
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>"
-msgstr ""
+msgstr "<p>Veseli nas, da ste dobili vse zahtevane informacije. Če boste o njih pisali ali jih kako drugače uporabili, prosimo dodajte zaznamek spodaj, da bodo to videli tudi drugi.</p>"
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 ""
+msgstr "<p>Veseli nas, da ste dobili vse zahtevane informacije. Če o tem pišete ali če informacije kakor koli uporabljate, vabljeni, da dodate zaznamek z opisom rabe.</p><p>Če je stran {{site_name}} uporabna, <a href=\"{{donation_url}}\">donirajte</a> organizaciji, ki skrbi zanjo.</p>"
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 ""
+msgstr "<p>Veseli nas, da ste dobili nekatere informacije, ki ste jih zahtevali. Če je spletna stran {{site_name}} uporabna, <a href=\"{{donation_url}}\">donirajte</a> organizaciji, ki skrbi za njo.</p><p>Če želite dobiti še preostale informacije, lahko to storite tako.</p>"
msgid "<p>We're glad you got some of the information that you wanted.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>"
-msgstr ""
+msgstr "<p>Veseli nas, da ste dobili vsaj nekatere od želenih informacij.</p><p>Če želite poskusiti pridobiti še preostale, morate storiti naslednje.</p>"
msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>"
-msgstr ""
+msgstr "<p>Ne rabite vključiti svojega e-poštnega naslova v zahtevek, da bi dobili odgovor (<a href=\"{{url}}\">podrobnosti</a>).</p>"
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=\"{{url}}\">details</a>).</p>"
-msgstr ""
+msgstr "<p>Ne rabite vključevati svojega e-poštnega naslova v zahtevek da bi dobili odgovor, ker ga boste vpisali v naslednjem koraku. (<a href=\"{{url}}\">podrobnosti</a>).</p>"
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 ""
+msgstr "<p>Vaš zahtevek vsebuje <strong>poštno številko</strong>. V kolikor se ne navezuje na vsebino zahtevka, prosim odstranite naslov, sicer bo <strong>javno objavljen na internetu</strong>.</p>"
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 {{late_number_of_days}} 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 ""
+msgstr "<p>Vaš zahtevek {{law_used_full}} je bil <strong>odposlan</strong>!</p>\\n <p><strong>Poslali vam bomo e-pošto</strong> ko bo prispel odgovor ali po {{late_number_of_days}}, ko se izteče rok za odgovor.</p><p>Če boste pisali o tem zahtevku (na primer na spletnem forumu ali na blogu), prosimo dodajte povezavo na to stran in dodajte zaznamek, da bodo obiskovalci opazili vaše pisanje.</p>"
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 ""
+msgstr "<p>{{site_name}} je trenutno v vzdrževanju, zato lahko zgolj pregledujete zahtevke. Ne morete ustvarjati novih zahtevkov, dodajati odgovorov ali zaznamkov ali kako drugače spreminjati vsebin.</p><p>{{read_only}}</p>"
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 ""
+msgstr "<small>Če uporabljate spletni vmesnik za e-pošto ali če uporabljte filtre za neželena sporočila, preverite tudi mapo z neželenimi sporočili. Včasih naša e-pošta pristane med neželenimi sporočili.</small>\\n</p>"
msgid "<strong> Can I request information about myself?</strong>\\n\t\t\t<a href=\"{{url}}\">No! (Click here for details)</a>"
-msgstr ""
+msgstr "<strong>Ali lahko zahtevam informacije o sebi?</strong>\\n\t\t\t<a href=\"{{url}}\">Ne! (Kliknite tu za pojasnila)</a>"
msgid "<strong><code>commented_by:tony_bowden</code></strong> to search annotations made by Tony Bowden, typing the name as in the URL."
-msgstr ""
+msgstr "<strong><code>commented_by:tone_balone</code></strong> da poiščete vse zaznamke, ki jih je ustvaril Tone Balone. Ime zapišete kot je zapisano v naslovni vrstici."
msgid "<strong><code>filetype:pdf</code></strong> to find all responses with PDF attachments. Or try these: <code>{{list_of_file_extensions}}</code>"
-msgstr ""
+msgstr "<strong><code>filetype:pdf</code></strong> da poiščete vse odgovore, ki v priponki vsebujejo datoteke PDF. Lahko poskusite tudi z: <code>{{list_of_file_extensions}}</code>"
msgid "<strong><code>request:</code></strong> to restrict to a specific request, typing the title as in the URL."
-msgstr ""
+msgstr "<strong><code>request:</code></strong> da preiščete določen zahtevek. Naslov zapišite tako, kot je zapisan v URL naslovu."
msgid "<strong><code>requested_by:julian_todd</code></strong> to search requests made by Julian Todd, typing the name as in the URL."
-msgstr ""
+msgstr "<strong><code>requested_by:julian_todd</code></strong> da preiščete zahtevke, ki jih je naredil Julian Todd. Ime zapišete kot je zapisano v URL naslovu."
msgid "<strong><code>requested_from:home_office</code></strong> to search requests from the Home Office, typing the name as in the URL."
-msgstr ""
+msgstr "<strong><code>requested_from:informacijski_pooblascenec</code></strong> da preiščete zahtevke, poslane Informacijskemu pooblaščencu. Ime zapišete tako, kot je zapisano v vrstici URL."
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 ""
+msgstr "<strong><code>status:</code></strong> da preiščete zahtevke glede na status ali nekdanjih status zahtevka. Za več informacij si poglejte <a href=\"{{statuses_url}}\">preglednico statusov</a> spodaj."
msgid "<strong><code>tag:charity</code></strong> to find all public authorities 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 ""
+msgstr "<strong><code>tag:charity</code></strong> da poiščete vse javne organe ali zahtevke s to označbo. Vključite lahko več označb, \\n in vrednosti, npr. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Privzeto se upošteva katera koli značka; da bi hkrati upoštevali vse, morate med označbe dodati <code>AND</code>."
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 ""
+msgstr "<strong><code>variety:</code></strong> da izberete željeni tip iskanega objekta. Za več informacij si oglejte <a href=\"{{varieties_url}}\">preglednico tipov</a> spodaj."
msgid "<strong>Advice</strong> on how to get a response that will satisfy the requester. </li>"
-msgstr ""
+msgstr "<strong>Nasveti</strong> kako spisati odgovor, ki bo zadovoljil prosilca. </li>"
msgid "<strong>All the information</strong> has been sent"
-msgstr ""
+msgstr "<strong>Vse informacije</strong> so bile poslane"
msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking"
-msgstr ""
+msgstr "<strong>Karkoli drugega</strong>, na primer pojasnila, pozivi, zahvale"
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 ""
+msgstr "<strong>Pozor!</strong> Da bi te podatke lahko uporabili, morate dobro poznati obnašanje uporabnikov na {{site_name}}. Odgovor na vprašanja kako, zakaj in po čem so zahtevki kategorizirani ni enostaven in prihajalo bo do napak in dvoumnosti. Poznati boste morali tudi zakon, ki pokriva IJZ in kako ga organi uporabljajo. Poleg vsega tega pa boste morali še dobro poznati statistiko. Prosimo, <a href=\"{{contact_path}}\">stopite v stik z nami</a> za dodatna vprašanja."
msgid "<strong>Clarification</strong> has been requested"
-msgstr ""
+msgstr "<strong>Pojasnilo</strong> je bilo zahtevano"
msgid "<strong>No response</strong> has been received\\n <small>(maybe there's just an acknowledgement)</small>"
-msgstr ""
+msgstr "<strong>Nismo prejeli odgovora</strong> <small>(morda je to le potrdilo o prejetju)</small>"
msgid "<strong>Note:</strong> Because we're testing, requests are being sent to {{email}} rather than to the actual authority."
-msgstr ""
+msgstr "<strong>Opomba:</strong> Ker je sistem v preizkusnem delovanju, se e-pošta pošilja na {{email}} namesto na pravi naslov."
msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\\n to try out how it works."
-msgstr ""
+msgstr "<strong>Opomba:</strong> Sporočilo pošiljate sami sebi, verjetno da preverjate kako deluje sistem."
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 ""
+msgstr "<strong>Opomba:</strong>Poslali vam bomo sporočilo na vaš novi e-poštni naslov. Sledite navodilom v njem, da potrdite spremembo e-poštnega naslova."
msgid "<strong>Privacy note:</strong> If you want to request private information about\\n yourself then <a href=\"{{url}}\">click here</a>."
-msgstr ""
+msgstr "<strong>Opomba o zasebnosti:</strong> Če želite zahtevati zasebne informacije, o sebi, <a href=\"{{url}}\">kliknite tu</a>."
msgid "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet,\\n wherever you do something on {{site_name}}."
-msgstr ""
+msgstr "<strong>Opomba glede zasebnosti:</strong> Vaša slika bo prikazana javno, na internetu, kjerkoli naredite nekaj na {{site_name}}."
msgid "<strong>Privacy warning:</strong> Your message, and any response\\n to it, will be displayed publicly on this website."
-msgstr ""
+msgstr "<strong>Opozorilo glede zasebnosti:</strong> Vaše sporočilo in odgovori nanj bodo prikazani javno na tej spletni strani."
msgid "<strong>Some of the information</strong> has been sent "
-msgstr ""
+msgstr "<strong>Nekatere informacije</strong> so bile poslane"
msgid "<strong>Thank</strong> the public authority or "
-msgstr ""
+msgstr "<strong>Zahvalite se</strong> javnemu organu ali"
msgid "<strong>did not have</strong> the information requested."
-msgstr ""
+msgstr "<strong>ni imel</strong> zahtevanih informacij"
msgid "A <a href=\"{{request_url}}\">follow up</a> to <em>{{request_title}}</em> was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
-msgstr ""
+msgstr "<a href=\"{{request_url}}\">Odziv</a> na <em>{{request_title}}</em> je {{info_request_user}} poslal {{public_body_name}} dne {{date}}."
msgid "A <a href=\"{{request_url}}\">response</a> to <em>{{request_title}}</em> was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}"
-msgstr ""
+msgstr "<a href=\"{{request_url}}\">Odgovor</a> na <em>{{request_title}}</em> je organ {{public_body_name}} poslal {{info_request_user}} dne {{date}}. Stanje zahtevka je: {{request_status}}"
msgid "A <strong>summary</strong> of the response if you have received it by post. "
-msgstr ""
+msgstr "<strong>Povzetek</strong> odgovora, če ste ga prejeli po pošti."
msgid "A Freedom of Information request"
-msgstr ""
+msgstr "Zahtevek za informacije javnega značaja"
msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
-msgstr ""
+msgstr "Polna zgodovina mojega zahtevka za IJZ in vsa korespondenca je dostopna na internetu na naslovu: {{url}}"
msgid "A new request, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
-msgstr ""
+msgstr "Nov zahtevek, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, je {{info_request_user}} poslal na {{public_body_name}} dne {{date}}."
msgid "A public authority"
-msgstr ""
+msgstr "Javni organ"
msgid "A response will be sent <strong>by post</strong>"
-msgstr ""
+msgstr "Odgovor bo poslan <strong>po pošti</strong>"
msgid "A strange reponse, required attention by the {{site_name}} team"
-msgstr ""
+msgstr "Nenavaden odgovor, ki zahteva pregled s strani ekipe spletne strani {{site_name}}"
msgid "A vexatious request"
-msgstr ""
+msgstr "Provokativen zahtevek"
msgid "A {{site_name}} user"
-msgstr ""
+msgstr "Uporabnik strani {{site_name}}"
msgid "About you:"
-msgstr ""
+msgstr "O meni:"
msgid "Act on what you've learnt"
-msgstr ""
+msgstr "Ukrepajte na podlagi odkritega"
msgid "Acts as xapian/acts as xapian job"
-msgstr ""
+msgstr "Deluje kot xapian/deluje kot xapian opravilo"
msgid "ActsAsXapian::ActsAsXapianJob|Action"
-msgstr ""
+msgstr "ActsAsXapian::ActsAsXapianJob|Action"
msgid "ActsAsXapian::ActsAsXapianJob|Model"
-msgstr ""
+msgstr "ActsAsXapian::ActsAsXapianJob|Model"
msgid "Add an annotation"
-msgstr ""
+msgstr "Dodajte zaznamek"
msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>."
-msgstr ""
+msgstr "Dodajte zaznamek k vašemu zahtevku z ? ali s <strong>povzetkom odgovora</strong>."
msgid "Added on {{date}}"
-msgstr ""
+msgstr "Dodano {{date}}"
msgid "Admin level is not included in list"
-msgstr ""
+msgstr "Administracijski privilegij ni vključen v seznamu"
msgid "Administration URL:"
-msgstr ""
+msgstr "Administracijski URL:"
msgid "Advanced search"
-msgstr ""
+msgstr "Napredno iskanje"
msgid "Advanced search tips"
-msgstr ""
+msgstr "Namigi za napredno iskanje"
msgid "Advise on whether the <strong>refusal is legal</strong>, and how to complain about it if not."
-msgstr ""
+msgstr "Svetujte glede <strong>legalnosti zavrnitve</strong>, in če ni kako se pritožiti."
msgid "Air, water, soil, land, flora and fauna (including how these effect\\n human beings)"
-msgstr ""
+msgstr "Zrak, voda, zemlja, rastlinje in živalstvo (vključno z vplivom na ljudi)"
msgid "All of the information requested has been received"
-msgstr ""
+msgstr "Vse zahtevane informacije so bile posredovane"
msgid "All the options below can use <strong>status</strong> or <strong>latest_status</strong> before the colon. For example, <strong>status:not_held</strong> will match requests which have <em>ever</em> been marked as not held; <strong>latest_status:not_held</strong> will match only requests that are <em>currently</em> marked as not held."
-msgstr ""
+msgstr "Pri vseh izbirah spodaj lahko uporabite <strong>status</strong> ali <strong>latest_status</strong> pred dvopičjem. Na primer, iskanju <strong>status:not_held</strong> bodo ustrezali zgolj zahtevki, ki <em>ta moment</em> niso označeni kot zadržani."
msgid "All the options below can use <strong>variety</strong> or <strong>latest_variety</strong> before the colon. For example, <strong>variety:sent</strong> will match requests which have <em>ever</em> been sent; <strong>latest_variety:sent</strong> will match only requests that are <em>currently</em> marked as sent."
-msgstr ""
+msgstr "Pri vseh izbirah spodaj lahko uporabite <strong>variety</strong> ali <strong>latest_variety</strong> pred dvopičjem. Na primer, iskanju <strong>variety:sent</strong> bodo ustrezali zgolj zahtevki, ki so <em>ta moment</em> označeni kot poslani."
msgid "Also called {{other_name}}."
-msgstr ""
+msgstr "Znano tudi kot {{other_name}}."
msgid "Also send me alerts by email"
-msgstr ""
+msgstr "Obveščaj me tudi preko e-pošte"
msgid "Alter your subscription"
-msgstr ""
+msgstr "Spremenite način obveščanja"
msgid "Although all responses are automatically published, we depend on\\nyou, the original requester, to evaluate them."
-msgstr ""
+msgstr "Čeprav so vsi odgovori objavljeni samodejno, je na vas, na prosilcu, da jih ovrednotite."
msgid "An <a href=\"{{request_url}}\">annotation</a> to <em>{{request_title}}</em> was made by {{event_comment_user}} on {{date}}"
-msgstr ""
+msgstr "Uporabnik {{event_comment_user}} dodal <a href=\"{{request_url}}\">zaznamek</a> na <em>{{request_title}}</em> dne {{date}}"
msgid "An <strong>error message</strong> has been received"
-msgstr ""
+msgstr "Prejeto je bilo <strong>sporočilo o napaki</strong>"
msgid "An Environmental Information Regulations request"
-msgstr ""
+msgstr "Zahtevek o informacijah glede varstva okolja"
msgid "An anonymous user"
-msgstr ""
+msgstr "Anonimni uporabnik"
msgid "Annotation added to request"
-msgstr ""
+msgstr "K zahtevku je bil dodan zaznamek"
msgid "Annotations"
-msgstr ""
+msgstr "Zaznamki"
msgid "Annotations are so anyone, including you, can help the requester with their request. For example:"
-msgstr ""
+msgstr "Zaznamki so namenjeni temu, da lahko kdorkoli pomaga prosilcu pri zahtevku, vključno z vami. Na primer:"
msgid "Annotations will be posted publicly here, and are\\n <strong>not</strong> sent to {{public_body_name}}."
-msgstr ""
+msgstr "Zaznamki bodo objavljeni tu in <strong>ne bodo poslani</strong> na {{public_body_name}}."
msgid "Anonymous user"
-msgstr ""
+msgstr "Anonimni uporabnik"
msgid "Anyone:"
-msgstr ""
+msgstr "Kdorkoli:"
msgid "Applies to"
-msgstr ""
+msgstr "Se nanaša na"
msgid "Are we missing a public authority?"
-msgstr ""
+msgstr "Ali nam manjka nek organ?"
msgid "Are you the owner of any commercial copyright on this page?"
-msgstr ""
+msgstr "Ali ste lastnik katere od avtorskih vsebin na tej strani?"
msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
-msgstr ""
+msgstr "Sprašujte za <strong>konkretne</strong> dokumente ali informacije, ta stran ni primerna za splošna vprašanja."
msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
-msgstr ""
+msgstr "Lahko odgovorite na dnu te strani in jih poskusite pregovoriti, da dokumente skenirajo \\n(<a href=\"{{url}}\">več o tem</a>)."
msgid "Attachment (optional):"
-msgstr ""
+msgstr "Priloga (neobvezno):"
msgid "Attachment:"
-msgstr ""
+msgstr "Priloga:"
msgid "Awaiting classification."
-msgstr ""
+msgstr "Čaka na klasifikacijo."
msgid "Awaiting internal review."
-msgstr ""
+msgstr "Čaka na interno revizijo."
msgid "Awaiting response."
-msgstr ""
+msgstr "Čaka odgovor."
msgid "Beginning with"
-msgstr ""
+msgstr "Začenši z"
msgid "Browse <a href='{{url}}'>other requests</a> for examples of how to word your request."
-msgstr ""
+msgstr "Prebrskajte <a href='{{url}}'>za drugimi zahtevki</a> za primere kako ubesediti vaš zahtevek."
msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request."
-msgstr ""
+msgstr "Prebrskajte <a href='{{url}}'>za drugimi zahtevki</a> za '{{public_body_name}}' za primere kako ubesediti vaš zahtevek."
msgid "Browse all authorities..."
-msgstr ""
+msgstr "Prebrskajte vse organe..."
msgid "By law, under all circumstances, {{public_body_link}} should have responded by now"
-msgstr ""
+msgstr "Po zakonu in po vseh možnih scenarijih bi {{public_body_link}} do sedaj že moral odgovoriti"
msgid "By law, {{public_body_link}} should normally have responded <strong>promptly</strong> and"
-msgstr ""
+msgstr "Po zakonu bi moral {{public_body_link}} odgovoriti <strong>hitro</strong> in"
msgid "Calculated home page"
-msgstr ""
+msgstr "Izračunana domača stran"
msgid "Can't find the one you want?"
-msgstr ""
+msgstr "Ne najdete željenega?"
msgid "Cancel a {{site_name}} alert"
-msgstr ""
+msgstr "Prekliči opozorilo {{site_name}}"
msgid "Cancel some {{site_name}} alerts"
-msgstr ""
+msgstr "Prekliči nekatera opozorila strani {{site_name}}"
msgid "Cancel, return to your profile page"
-msgstr ""
+msgstr "Prekliči in se vrni na profilno stran"
msgid "Censor rule"
-msgstr ""
+msgstr "Pravilo cenzure"
msgid "CensorRule|Last edit comment"
-msgstr ""
+msgstr "PraviloCenzure|Komentar zadnjega urejanja"
msgid "CensorRule|Last edit editor"
-msgstr ""
+msgstr "PraviloCenzure|Zadnje urejal"
msgid "CensorRule|Regexp"
-msgstr ""
+msgstr "CensorRule|Regexp"
msgid "CensorRule|Replacement"
-msgstr ""
+msgstr "PraviloCenzure|Zamenjava"
msgid "CensorRule|Text"
-msgstr ""
+msgstr "PraviloCenzure|Besedilo"
msgid "Change email on {{site_name}}"
-msgstr ""
+msgstr "Spremenite e-poštni naslov na strani {{site_name}}"
msgid "Change password on {{site_name}}"
-msgstr ""
+msgstr "Spremenite geslo na spletni strani {{site_name}}"
msgid "Change profile photo"
-msgstr ""
+msgstr "Spremenite profilno sliko"
msgid "Change the text about you on your profile at {{site_name}}"
-msgstr ""
+msgstr "Spremenite vaš opis na profilni strani na {{site_name}} "
msgid "Change your email"
-msgstr ""
+msgstr "Spremenite vašo e-pošto"
msgid "Change your email address used on {{site_name}}"
-msgstr ""
+msgstr "Spremenite e-poštni naslov, ki ga uporabljate na {{site_name}}"
msgid "Change your password"
-msgstr ""
+msgstr "Spremenite vaše geslo"
msgid "Change your password on {{site_name}}"
-msgstr ""
+msgstr "Spremenite vaše geslo na {{site_name}}"
msgid "Change your password {{site_name}}"
-msgstr ""
+msgstr "Spremenite vaše geslo {{site_name}}"
msgid "Charity registration"
-msgstr ""
+msgstr "Prijava dobrodelne organizacije"
msgid "Check for mistakes if you typed or copied the address."
-msgstr ""
+msgstr "Če ste naslov prekopirali ali vtipkali, ga preglejte za tipkarske napake."
msgid "Check you haven't included any <strong>personal information</strong>."
-msgstr ""
+msgstr "Preverite, da niste slučajno vključili <strong>osebnih podatkov</strong>."
msgid "Choose your profile photo"
-msgstr ""
+msgstr "Izberite vašo profilno sliko"
msgid "Clarification"
-msgstr ""
+msgstr "Pojasnilo"
msgid "Clarify your FOI request - "
-msgstr ""
+msgstr "Pojasnite vaš zahtevek za IJZ -"
msgid "Classify an FOI response from "
-msgstr ""
+msgstr "Razvrstite odgovor od"
msgid "Clear photo"
-msgstr ""
+msgstr "Odstrani sliko"
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 ""
+msgstr "Kliknite na spodnjo povezavo, da pošljete sporočilo {{public_body_name}} in jih obvestite, da morajo odgovoriti na vaš zahtevek. Zahtevate lahko tudi interno revizijo, da odkrijejo razloge za počano obravnavo zahtevka."
msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request."
-msgstr ""
+msgstr "Kliknite na spodnjo povezavo, da pošljete sporočilo {{public_body}} in jih opomnite, da morajo odgovoriti na vaš zahtevek."
msgid "Close"
-msgstr ""
+msgstr "Zapri"
msgid "Comment"
-msgstr ""
+msgstr "Komentar"
msgid "Comment|Body"
-msgstr ""
+msgstr "Komentar|Vsebina"
msgid "Comment|Comment type"
-msgstr ""
+msgstr "Komentar|Tip komentarja"
msgid "Comment|Locale"
-msgstr ""
+msgstr "Komentar|Jezik"
msgid "Comment|Visible"
-msgstr ""
+msgstr "Komentar|Vidnost"
msgid "Confirm you want to follow all successful FOI requests"
-msgstr ""
+msgstr "Potrdite, da želite spremljati vse uspešne zahtevke za IJZ"
msgid "Confirm you want to follow new requests"
-msgstr ""
+msgstr "Potrdite, da želite spremljati nove zahtevke"
msgid "Confirm you want to follow new requests or responses matching your search"
-msgstr ""
+msgstr "Potrdite, da želite spremljati nove zahtevke ali zahtevke, ki se ujemajo z vašim iskanjem"
msgid "Confirm you want to follow requests by '{{user_name}}'"
-msgstr ""
+msgstr "Potrdite, da želite spremljati zahtevke, ki jih dela '{{user_name}}'"
msgid "Confirm you want to follow requests to '{{public_body_name}}'"
-msgstr ""
+msgstr "Potrdite, da želite spremljati zahteve na '{{public_body_name}}'"
msgid "Confirm you want to follow the request '{{request_title}}'"
-msgstr ""
+msgstr "Potrdite, da želite spremljati zahtevek '{{request_title}}'"
msgid "Confirm your FOI request to "
-msgstr ""
+msgstr "Potrdite vaš zahtevek k "
msgid "Confirm your account on {{site_name}}"
-msgstr ""
+msgstr "Potrdite vaš račun na {{site_name}}"
msgid "Confirm your annotation to {{info_request_title}}"
-msgstr ""
+msgstr "Potrdite vaš zaznamek k {{info_request_title}}"
msgid "Confirm your email address"
-msgstr ""
+msgstr "Potrdite vaš e-poštni naslov"
msgid "Confirm your new email address on {{site_name}}"
-msgstr ""
+msgstr "Potrdite vaš novi e-poštni naslov na {{site_name}}"
msgid "Considered by administrators as not an FOI request and hidden from site."
-msgstr ""
+msgstr "Po mnenju administratorjev to ni zahtevek za IJZ in je bil umaknjen s spletne strani."
msgid "Considered by administrators as vexatious and hidden from site."
-msgstr ""
+msgstr "Po mnenju administratorjev je ta prispevek provokativen in je bil odstranjen s spletne strani."
msgid "Contact {{recipient}}"
-msgstr ""
+msgstr "Kontaktiraj {{recipient}}"
msgid "Contact {{site_name}}"
-msgstr ""
+msgstr "Kontaktirajte {{site_name}}"
msgid "Could not identify the request from the email address"
-msgstr ""
+msgstr "Zahtevka z e-poštnega naslova ni bilo možno identificirati"
msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported."
-msgstr ""
+msgstr "Slika, ki ste jo naložili, ni prepoznana. Podprti so zapisi PNG, JPEG, GIF in drugi pogosti zapisi slik."
msgid "Crop your profile photo"
-msgstr ""
+msgstr "Obrežite vašo profilno sliko"
msgid "Cultural sites and built structures (as they may be affected by the\\n environmental factors listed above)"
-msgstr ""
+msgstr "Kulturni spomeniki in zgradbe (na katere lahko vplivajo okoljski dejavniki, navedeni zgoraj)"
msgid "Currently <strong>waiting for a response</strong> from {{public_body_link}}, they must respond promptly and"
-msgstr ""
+msgstr "Trenutno <strong>čaka na odgovor</strong> od {{public_body_link}}, odgovoriti morajo kmalu in "
msgid "Date:"
-msgstr ""
+msgstr "Datum:"
msgid "Dear {{name}},"
-msgstr ""
+msgstr "Dragi {{name}},"
msgid "Dear {{public_body_name}},"
-msgstr ""
+msgstr "Dragi {{public_body_name}},"
msgid "Default locale"
-msgstr ""
+msgstr "Privzete jezikovne nastavitve"
msgid "Delayed response to your FOI request - "
-msgstr ""
+msgstr "Pozen odgovor na vaš zahtevek - "
msgid "Delayed."
-msgstr ""
+msgstr "Pozen."
msgid "Delivery error"
-msgstr ""
+msgstr "Napaka pri dostavi"
msgid "Destroy {{name}}"
-msgstr ""
+msgstr "Uniči {{name}}"
msgid "Details of request '"
-msgstr ""
+msgstr "Podrobnosti zahtevka"
msgid "Did you mean: {{correction}}"
-msgstr ""
+msgstr "Ste mislili: {{correction}}"
msgid "Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:"
-msgstr ""
+msgstr "Opozorilo: To sporočilo in odgovori nanj bodo javno objavljeni na internetu. Pravilnik glede zasebnosti in avtorskih pravic:"
msgid "Disclosure log"
-msgstr ""
+msgstr "Dnevnik razkritij"
msgid "Disclosure log URL"
-msgstr ""
+msgstr "URL za dnevnik razkritij"
msgid "Don't want to address your message to {{person_or_body}}? You can also write to:"
-msgstr ""
+msgstr "Ne želite sporočila nasloviti na {{person_or_body}}? Pišete lahko tudi:"
msgid "Done"
-msgstr ""
+msgstr "Končano"
msgid "Done &gt;&gt;"
-msgstr ""
+msgstr "Končano &gt;&gt;"
msgid "Download a zip file of all correspondence"
-msgstr ""
+msgstr "Prenesite celotno korespondenco kot arhiv ZIP"
msgid "Download original attachment"
-msgstr ""
+msgstr "Prenesite izvirno prilogo"
msgid "EIR"
-msgstr ""
+msgstr "EIR"
msgid "Edit"
-msgstr ""
+msgstr "Uredi"
msgid "Edit and add <strong>more details</strong> to the message above,\\n explaining why you are dissatisfied with their response."
-msgstr ""
+msgstr "Uredite in dodajte <strong>več podrobnosti</strong> k zgornjemu sporočilu, da obrazložite zakaj niste zadovoljni z odgovorom."
msgid "Edit text about you"
-msgstr ""
+msgstr "Uredite besedilo o vas"
msgid "Edit this request"
-msgstr ""
+msgstr "Uredite ta zahtevek"
msgid "Either the email or password was not recognised, please try again."
-msgstr ""
+msgstr "Nepravilen je bil bodisi e-poštni naslov bodisi geslo, poskusite ponovno."
msgid "Either the email or password was not recognised, please try again. Or create a new account using the form on the right."
-msgstr ""
+msgstr "Napačen je bil bodisi e-poštni naslov bodisi geslo. Poskusite ponovno ali ustvarite nov račun z obrazcem na desni."
msgid "Email doesn't look like a valid address"
-msgstr ""
+msgstr "E-poštni naslov ne izgleda veljaven"
msgid "Email me future updates to this request"
-msgstr ""
+msgstr "Obveščajte me o spremembah"
msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>"
-msgstr ""
+msgstr "Vnesite besede, ki jih iščete, ločene s presledki, npr. <strong>planinska pot</strong>"
msgid "Enter your response below. You may attach one file (use email, or\\n <a href=\"{{url}}\">contact us</a> if you need more)."
-msgstr ""
+msgstr "Vpišite vaš odgovor spodaj. Pripnete lahko eno datoteko (odgovorite prek e-pošte ali <a href=\"{{url}}\">nas kontaktirajte</a>, če potrebujete več)."
msgid "Environmental Information Regulations"
-msgstr ""
+msgstr "Environmental Information Regulations"
msgid "Environmental Information Regulations requests made"
-msgstr ""
+msgstr "Narejenjih zahtevkov Environmental Information Regulations "
msgid "Environmental Information Regulations requests made using this site"
-msgstr ""
+msgstr "Narejenih zahtevkov Environmental Information Regulations z uporabo te strani"
msgid "Event history"
-msgstr ""
+msgstr "Zgodovina dogodka"
msgid "Event history details"
-msgstr ""
+msgstr "Podrobnosti zgodovine dogodka"
msgid "Event {{id}}"
-msgstr ""
+msgstr "Dogodek {{id}}"
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=\"{{url}}\">why?</a>)."
-msgstr ""
+msgstr "Vse kar vpisujete na tej strani, vključno z <strong>vašim imenom</strong>, bo za vedno <strong>javno objavljeno</strong> na tej strani (<a href=\"{{url}}\">zakaj?</a>)."
msgid "Everything that you enter on this page\\n will be <strong>displayed publicly</strong> on\\n this website forever (<a href=\"{{url}}\">why?</a>)."
-msgstr ""
+msgstr "Vse kar vpišete na tej strani, bo za vedno <strong>javno objavljeno</strong> (<a href=\"{{url}}\">zakaj?</a>)."
msgid "FOI"
-msgstr ""
+msgstr "IJZ"
msgid "FOI email address for {{public_body}}"
-msgstr ""
+msgstr "E-poštni naslov za zahteve po informacijah javnega značaja za {{public_body}}"
msgid "FOI request – {{title}}"
-msgstr ""
+msgstr "Zahtevek za IJZ – {{title}}"
msgid "FOI requests"
-msgstr ""
+msgstr "Zahtevek za IJZ"
msgid "FOI requests by '{{user_name}}'"
-msgstr ""
+msgstr "Zahtevki za IJZ od '{{user_name}}'"
msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
-msgstr ""
+msgstr "Zahtevki od {{start_count}} do {{end_count}} od {{total_count}} skupaj"
msgid "FOI response requires admin ({{reason}}) - {{title}}"
-msgstr ""
+msgstr "Odgovor na zahtevek za IJZ zahteva administratorja ({{reason}}) - {{title}}"
msgid "Failed to convert image to a PNG"
-msgstr ""
+msgstr "Napaka pri pretvorbi slike v zapis PNG"
msgid "Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}"
-msgstr ""
+msgstr "Napaka pri pretvarjanju slike v ustrezno velikost: je {{cols}}x{{rows}} namesto {{width}}x{{height}}"
msgid "Filter"
-msgstr ""
+msgstr "Filtriraj"
msgid "First, did your other requests succeed?"
-msgstr ""
+msgstr "Najprej, so bili vaši drugi zahtevki uspešni?"
msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)."
-msgstr ""
+msgstr "Najprej vpišite <strong>ime slovenskega javnega organa</strong>, od katerega želite zahtevati informacije. <strong>Zakon jih obvezuje k odgovoru</strong>\\n (<a href=\"{{url}}\">zakaj?</a>)."
msgid "Foi attachment"
-msgstr ""
+msgstr "Priloga IJZ"
msgid "FoiAttachment|Charset"
-msgstr ""
+msgstr "IjzPriloga|Kodni nabor"
msgid "FoiAttachment|Content type"
-msgstr ""
+msgstr "IjzPriloga|Tip vsebine"
msgid "FoiAttachment|Display size"
-msgstr ""
+msgstr "IjzPriloga|Prikazna velikost"
msgid "FoiAttachment|Filename"
-msgstr ""
+msgstr "IjzPriloga|Ime datoteke"
msgid "FoiAttachment|Hexdigest"
-msgstr ""
+msgstr "IjzPriloga|Preverjevalna vsota"
msgid "FoiAttachment|Url part number"
-msgstr ""
+msgstr "IjzZahtevek|Zaporedna številka"
msgid "FoiAttachment|Within rfc822 subject"
-msgstr ""
+msgstr "IjzPriloga|Znotraj rfc822 naslova"
msgid "Follow"
-msgstr ""
+msgstr "Spremljaj"
msgid "Follow all new requests"
-msgstr ""
+msgstr "Spremljaj vse nove zahtevke"
msgid "Follow new successful responses"
-msgstr ""
+msgstr "Spremljaj nove uspešne zahtevke"
msgid "Follow requests to {{public_body_name}}"
-msgstr ""
+msgstr "Spremljaj zahtevke na {{public_body_name}}"
msgid "Follow these requests"
-msgstr ""
+msgstr "Sledite tem zahtevkom"
msgid "Follow things matching this search"
-msgstr ""
+msgstr "Spremljaj prispevke, ki ustrezajo temu iskanju"
msgid "Follow this authority"
-msgstr ""
+msgstr "Sledite temu organu"
msgid "Follow this link to see the request:"
-msgstr ""
+msgstr "Sledite tej povezavi, da si ogledate zahtevek:"
msgid "Follow this person"
-msgstr ""
+msgstr "Spremljaj to osebo"
msgid "Follow this request"
-msgstr ""
+msgstr "Sledite temu zahtevku"
msgid "Follow up"
-msgstr ""
+msgstr "Odziv"
msgid "Follow up message sent by requester"
-msgstr ""
+msgstr "Odziv, poslan s strani prosilca"
msgid "Follow up messages to existing requests are sent to "
-msgstr ""
+msgstr "Odzivi na obstoječe zahtevke so poslani k"
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 ""
+msgstr "Odzivi in novi odgovori na ta zahtevek so bili onemogočeni, da se omejijo neželena sporočila. Prosimo, <a href=\"{{url}}\">stopite v kontakt</a>, če ste uporabnik {{user_link}} in želite poslati odziv."
msgid "Follow us on twitter"
-msgstr ""
+msgstr "Sledite nam na twitterju"
msgid "Followups cannot be sent for this request, as it was made externally, and published here by {{public_body_name}} on the requester's behalf."
-msgstr ""
+msgstr "Odzivov ni mogoče dodajati, ker je bil ta zahevek narejen zunaj sistema in je {{public_body_name}} zahtevek v imenu prosilca naknadno objavil."
msgid "For an unknown reason, it is not possible to make a request to this authority."
-msgstr ""
+msgstr "Iz neznanega razloga zahtevka k temu organu ni mogoče narediti."
msgid "Forgotten your password?"
-msgstr ""
+msgstr "Ste pozabili geslo?"
msgid "Found {{count}} public authority {{description}}"
msgid_plural "Found {{count}} public authorities {{description}}"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Najden {{count}} javni organ {{description}}"
+msgstr[1] "Najdena {{count}} javna organa {{description}}"
+msgstr[2] "Najdeni {{count}} javni organi {{description}}"
+msgstr[3] "Najdenih {{count}} javnih organov {{description}}"
msgid "Freedom of Information"
-msgstr ""
+msgstr "Informacije javnega značaja"
msgid "Freedom of Information Act"
-msgstr ""
+msgstr "Zakon o dostopu do informacij javnega značaja"
msgid "Freedom of Information law does not apply to this authority, so you cannot make\\n a request to it."
-msgstr ""
+msgstr "Zakon o dostopu do informacij javnega značaja ne velja za ta subjekt, zato mu ne morete poslati zahtevka."
msgid "Freedom of Information law no longer applies to"
-msgstr ""
+msgstr "Zakon o informacijah javnega značaja ne velja več za"
msgid "Freedom of Information law no longer applies to this authority.Follow up messages to existing requests are sent to "
-msgstr ""
+msgstr "Zakon o dostopu do informacij javnega značaja ne velja več za ta organ. Odzivi na obstoječe zahtevke so poslani na"
msgid "Freedom of Information requests made"
-msgstr ""
+msgstr "narejenih zahtevkov po informacijah javnega značaja"
msgid "Freedom of Information requests made by this person"
-msgstr ""
+msgstr "Ta oseba je naredila zahtevkov po informacijah javnega značaja"
msgid "Freedom of Information requests made by you"
-msgstr ""
+msgstr "zahtevkov po informacijah javnega značaja ste naredili vi"
msgid "Freedom of Information requests made using this site"
-msgstr ""
+msgstr "Narejenih zahtevkov po informacijah javnega značaja z uporabo te strani"
msgid "Freedom of information requests to"
-msgstr ""
+msgstr "Zahtevki po informacijah javnega značaja za"
msgid "From"
-msgstr ""
+msgstr "Od"
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=\"{{url}}\">send it to us</a>."
-msgstr ""
+msgstr "Poskusite raje odgovoriti na konkretno sporočilo na strani zahtevka, namesto pošiljanja splošnega sporočila. Če morate poslati splošno povpraševanje in poznate e-poštni naslov za to, <a href=\"{{url}}\">nam ga prosimo pošljite</a>."
msgid "From:"
-msgstr ""
+msgstr "Od:"
msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE"
-msgstr ""
+msgstr "PODROBNOSTI O VAŠI PRITOŽBI VPIŠITE TU"
msgid "Handled by post."
-msgstr ""
+msgstr "Poslano s pošto."
msgid "Has tag string/has tag string tag"
-msgstr ""
+msgstr "Ima značko"
msgid "HasTagString::HasTagStringTag|Model"
-msgstr ""
+msgstr "HasTagString::HasTagStringTag|Model"
msgid "HasTagString::HasTagStringTag|Name"
-msgstr ""
+msgstr "HasTagString::HasTagStringTag|Name"
msgid "HasTagString::HasTagStringTag|Value"
-msgstr ""
+msgstr "HasTagString::HasTagStringTag|Value"
msgid "Hello! You can make Freedom of Information requests within {{country_name}} at {{link_to_website}}"
-msgstr ""
+msgstr "Živijo! Zahtevke po informacijah javnega značaja znotraj {{country_name}} lahko naredite na {{link_to_website}}"
msgid "Hello, {{username}}!"
-msgstr ""
+msgstr "Zdravo, {{username}}!"
msgid "Help"
-msgstr ""
+msgstr "Pomoč"
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 ""
+msgstr "Tu <strong>opisano</strong> pomeni, da je uporabnik izbral stanje in je bil zadnji dogodek posodobljen na izbrano vrednost. <strong>Izračunano</strong> pomeni, da je sistem {{site_name}} nastavil vrednosti vmesnih dogodkov, za katere uporabniki niso izbrali statusa. Oglejte si <a href=\"{{search_path}}\">namige za iskanje</a> za opis statusov."
msgid "Here is the message you wrote, in case you would like to copy the text and save it for later."
-msgstr ""
+msgstr "Tu je prikazano sporočilo, ki ste ga napisali, v kolikor bi si ga želeli shraniti za kasneje."
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 ""
+msgstr "Zdravo! Potrebujemo tvojo pomoč. Oseba, ki je naredila sledeči zahtevek\\n nam ni zaupala, če je bil zahtevek uspešen ali ne. Bi si vzeli\\n trenutek, da ga preberete in nam pomagate poskrbeti za urejen zahtevek?\\n Hvala."
msgid "Hide request"
-msgstr ""
+msgstr "Skrij zahtevek"
msgid "Holiday"
-msgstr ""
+msgstr "Praznik"
msgid "Holiday|Day"
-msgstr ""
+msgstr "Praznik|Dan"
msgid "Holiday|Description"
-msgstr ""
+msgstr "Praznik|Opis"
msgid "Home"
-msgstr ""
+msgstr "Domov"
msgid "Home page"
-msgstr ""
+msgstr "Domača stran"
msgid "Home page of authority"
-msgstr ""
+msgstr "Domača stran organa"
msgid "However, you have the right to request environmental\\n information under a different law"
-msgstr ""
+msgstr "Imate pa pravico zahtevati okoljske informacije po drugem zakonu"
msgid "Human health and safety"
-msgstr ""
+msgstr "Zdravje in varnost"
msgid "I am asking for <strong>new information</strong>"
-msgstr ""
+msgstr "Sprašujem za <strong>nove informacije</strong>"
msgid "I am requesting an <strong>internal review</strong>"
-msgstr ""
+msgstr "Zahtevam <strong>interno revizijo</strong>"
msgid "I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'."
-msgstr ""
+msgstr "Pišem, da bi zahteval interno revizijo glede ravnanja z zahtevkom za IJZ '{{info_request_title}}' na {{public_body_name}}."
msgid "I don't like these ones &mdash; give me some more!"
-msgstr ""
+msgstr "Ti mi niso všeč &mdash; prikaži več!"
msgid "I don't want to do any more tidying now!"
-msgstr ""
+msgstr "Ta moment ne želim več urejati!"
msgid "I like this request"
-msgstr ""
+msgstr "Všeč mi je ta zahtevek"
msgid "I would like to <strong>withdraw this request</strong>"
-msgstr ""
+msgstr "Želel bi <strong>umakniti to zahtevo</strong>"
msgid "I'm still <strong>waiting</strong> for my information\\n <small>(maybe you got an acknowledgement)</small>"
-msgstr ""
+msgstr "Še vedno <strong>čakam</strong> na informacije\\n <small>(ali pa sem prejel potrdilo o sprejemu)</small>"
msgid "I'm still <strong>waiting</strong> for the internal review"
-msgstr ""
+msgstr "Še vedno <strong>čakam</strong> na interno revizijo"
msgid "I'm waiting for an <strong>internal review</strong> response"
-msgstr ""
+msgstr "Čakam na odziv glede <strong>interne revizije</strong>"
msgid "I've been asked to <strong>clarify</strong> my request"
-msgstr ""
+msgstr "Od mene se zahteva, da <strong>pojasnim</strong> moj zahtevek"
msgid "I've received <strong>all the information"
-msgstr ""
+msgstr "Prejel sem <strong>vse zahtevane informacije"
msgid "I've received <strong>some of the information</strong>"
-msgstr ""
+msgstr "Prejel sem <strong>delne informacije</strong>"
msgid "I've received an <strong>error message</strong>"
-msgstr ""
+msgstr "Prejel sem <strong>sporočilo o napaki</strong>"
msgid "I've received an error message"
-msgstr ""
+msgstr "Prejel sem sporočilo o napaki"
msgid "Id"
-msgstr ""
+msgstr "Id"
msgid "If the address is wrong, or you know a better address, please <a href=\"{{url}}\">contact us</a>."
-msgstr ""
+msgstr "Če je e-poštni naslov napačen ali poznate primernejšega, nas prosimo <a href=\"{{url}}\">kontaktirajte</a>."
msgid "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."
-msgstr ""
+msgstr "Če ste prejeli napako o dostavi in ste uspeli najti delujoč e-poštni naslov za organ, nas prosim obvestite z uporabo spodnjega obrazca."
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 ""
+msgstr "Če to ni pravilno ali pa bi želeli poslati pozen odgovor na zahtevek\\n ali e-pošto uporabniku {{user}}, ki se ne tiče te zadeve, potem prosimo\\npošljite epošto na {{contact_email}}."
msgid "If you are dissatisfied by the response you got from\\n the public authority, you have the right to\\n complain (<a href=\"{{url}}\">details</a>)."
-msgstr ""
+msgstr "Če niste zadovoljni z odgovorom, ki ste ga prejeli od organa, se imate pravico pritožiti (<a href=\"{{url}}\">podrobnosti</a>)."
msgid "If you are still having trouble, please <a href=\"{{url}}\">contact us</a>."
-msgstr ""
+msgstr "Če imate še vedno težave, nas prosimo <a href=\"{{url}}\">kontaktirajte</a>."
msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the request."
-msgstr ""
+msgstr "Če ste vi prosilec, potem se lahko <a href=\"{{url}}\">prijavite</a>, da si ogledate zahtevek."
msgid "If you are thinking of using a pseudonym,\\n please <a href=\"{{url}}\">read this first</a>."
-msgstr ""
+msgstr "Če razmišljate o rabi psevdonima, potem si pred tem nujno <a href=\"{{url}}\">preberite to</a>."
msgid "If you are {{user_link}}, please"
-msgstr ""
+msgstr "Če ste uporabnik {{user_link}}, prosim"
msgid "If you believe this request is not suitable, you can report it for attention by the site administrators"
-msgstr ""
+msgstr "Če menite, da je ta zahtevek neprimeren, ga lahko prijavite administratorju."
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 ""
+msgstr "Če v e-pošti ne morete klikniti na povezavo, morate povezavo <strong>označiti\\n in kopirati</strong> v e-pošti. Zatem jo <strong>prilepite v brskalnik</strong>, v vrstico, \\nkamor bi vpisalo naslov katere koli druge strani."
msgid "If you can, scan in or photograph the response, and <strong>send us\\n a copy to upload</strong>."
-msgstr ""
+msgstr "Če lahko, skenirajte ali fotografirajte odgovor ter <strong>nam pošljite\\n kopijo, da ga naložimo na stran</strong>."
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 ""
+msgstr "Če ste pri organu odgovorni za dostop do informacij javnega značaja in vam ta storitev pomaga, dodajte povezavo na nas na vaši spletni strani."
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 ""
+msgstr "Če ste e-pošto prejeli <strong>pred več kot pol leta</strong>, potem ta povezava za prijavo ne bo več\\n delovala. Prosimo, poskusite še enkrat od začetka."
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 ""
+msgstr "Če tega še niste storili, prosimo napišite sporočilo, da obvestite organ o umiku zahteve, sicer organ ne bo vedel, da je zahteva umaknjena."
msgid "If you reply to this message it will go directly to {{user_name}}, who will\\nlearn your email address. Only reply if that is okay."
-msgstr ""
+msgstr "Če boste odgovorili na to sporočilo, bo sporočilo poslano neposredno\\n uporabniku {{user_name}}, ki bo tako seznanjen z vašim e-poštnim naslovom. To storite le, če vam to ustreza."
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 ""
+msgstr "Če uporabljate spletni vmesnik za e-pošto ali če uporabljte filtre za neželena sporočila, preverite tudi mapo z neželenimi sporočili. Včasih naša e-pošta pristane med neželenimi sporočili."
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 ""
+msgstr "Če želite, da umaknemo prepoved, potem nas lahko vljudno\\n <a href=\"/help/contact\">kontaktirate</a> in navedete razloge.\\n"
msgid "If you're new to {{site_name}}"
-msgstr ""
+msgstr "Če ste novi na strani {{site_name}}"
msgid "If you've used {{site_name}} before"
-msgstr ""
+msgstr "Če ste stran {{site_name}} že uporabljali"
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 ""
+msgstr "Če vaš brskalnik podpira piškotke in vidite to sporočilo, potem je verjetno\\n prišlo do napake na strežniku."
msgid "Incoming email address"
-msgstr ""
+msgstr "Vključno z e-poštnim naslovom"
msgid "Incoming message"
-msgstr ""
+msgstr "Dohodno sporočilo"
msgid "IncomingMessage|Cached attachment text clipped"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Porezano besedilo priloge"
msgid "IncomingMessage|Cached main body text folded"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Poravnana vsebina"
msgid "IncomingMessage|Cached main body text unfolded"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Neporavnana vsebina"
msgid "IncomingMessage|Last parsed"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Nazadnje prečitano"
msgid "IncomingMessage|Mail from"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Pošiljatelj"
msgid "IncomingMessage|Mail from domain"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Domena pošiljatelja"
msgid "IncomingMessage|Sent at"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Poslano ob"
msgid "IncomingMessage|Subject"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Zadeva"
msgid "IncomingMessage|Valid to reply to"
-msgstr ""
+msgstr "PrihajajoceSporocilo|Veljaven odgovor na"
msgid "Individual requests"
-msgstr ""
+msgstr "Posamezni zahtevki"
msgid "Info request"
-msgstr ""
+msgstr "Zahtevek za informacije"
msgid "Info request event"
-msgstr ""
+msgstr "Dogodek zahtevka za informacije"
msgid "InfoRequestEvent|Calculated state"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Izračunano stanje"
msgid "InfoRequestEvent|Described state"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Opisano stanje"
msgid "InfoRequestEvent|Event type"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Tip dogodka"
msgid "InfoRequestEvent|Last described at"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Zadnje opisano ob"
msgid "InfoRequestEvent|Params yaml"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Parametri"
msgid "InfoRequestEvent|Prominence"
-msgstr ""
+msgstr "InfoZahtevekDogodek|Prominenca"
msgid "InfoRequest|Allow new responses from"
-msgstr ""
+msgstr "InfoZahtevek|Dovoli nove odzive od"
msgid "InfoRequest|Attention requested"
-msgstr ""
+msgstr "InfoRequest|Zahtevano posredovanje"
msgid "InfoRequest|Awaiting description"
-msgstr ""
+msgstr "InfoZahtevek|Čakam opis"
msgid "InfoRequest|Comments allowed"
-msgstr ""
+msgstr "InfoRequest|Komentarji dovoljeni"
msgid "InfoRequest|Described state"
-msgstr ""
+msgstr "InfoZahtevek|Opisano stanje"
msgid "InfoRequest|External url"
-msgstr ""
+msgstr "InfoRequest|Eksterni URL"
msgid "InfoRequest|External user name"
-msgstr ""
+msgstr "InfoRequest|Externo uporabniško ime"
msgid "InfoRequest|Handle rejected responses"
-msgstr ""
+msgstr "InfoZahtevek|Obravnavaj zavrnjene odzive"
msgid "InfoRequest|Idhash"
-msgstr ""
+msgstr "InfoZahtevek|Preverjevalna vsota"
msgid "InfoRequest|Law used"
-msgstr ""
+msgstr "InfoZahtevek|Uporabljen zakon"
msgid "InfoRequest|Prominence"
-msgstr ""
+msgstr "InfoZahtevek|Prominenca"
msgid "InfoRequest|Title"
-msgstr ""
+msgstr "InfoZahtevek|Naslov"
msgid "InfoRequest|Url title"
-msgstr ""
+msgstr "InfoZahtevek|Naslov v URL"
msgid "Information not held."
-msgstr ""
+msgstr "Teh informacij ni"
msgid "Information on emissions and discharges (e.g. noise, energy,\\n radiation, waste materials)"
-msgstr ""
+msgstr "Informacije o emisijah in izpustih (npr. zvok, energija, \\nsevanje, odpadni materiali)"
msgid "Internal review request"
-msgstr ""
+msgstr "Zahtevek za interno revizijo"
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 ""
+msgstr "Je {{email_address}} napačen naslov za zahtevek {{type_of_request}} za {{public_body_name}}? Če je temu tako, nas prosimo kontaktirajte z uporabo tega obrazca:"
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 ""
+msgstr "Možno je, da je vaš brskalnik nastavljen, da ne sprejema \"piškotkov\", \\nali da jih ne more sprejeti. Če lahko, prosimo omogočite piškotke ali poskusite \\nuporabiti drug brskalnik. Potem osvežite in poskusite še enkrat."
msgid "Items matching the following conditions are currently displayed on your wall."
-msgstr ""
+msgstr "Na vašem zidu so prikazani predmeti, ki ustrezajo sledečim pogojem."
msgid "Items sent in last month"
-msgstr ""
+msgstr "Stvari, poslane v zadnjem mesecu"
msgid "Joined in"
-msgstr ""
+msgstr "Se je pridružil"
msgid "Joined {{site_name}} in"
-msgstr ""
+msgstr "Se je pridružil {{site_name}} v"
msgid "Just one more thing"
-msgstr ""
+msgstr "Še ena stvar"
msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"{{url}}\">why?</a>)."
-msgstr ""
+msgstr "Zahtevo spišite <strong>konkretno</strong>, tako je bolj verjetno, da prejmete željene informacije (<a href=\"{{url}}\">zakaj?</a>)."
msgid "Keywords"
-msgstr ""
+msgstr "Ključne besede"
msgid "Last authority viewed: "
-msgstr ""
+msgstr "Zadnji pregledani organ:"
msgid "Last request viewed: "
-msgstr ""
+msgstr "Zadnji pregledani zahtevek:"
msgid "Let us know what you were doing when this message\\nappeared and your browser and operating system type and version."
-msgstr ""
+msgstr "Povejte nam, kaj ste počeli, ko se je prikazalo to sporočilo,\\n ter kateri brskalnik in operacijski sistem uporabljate."
msgid "Link to this"
-msgstr ""
+msgstr "Trajna povezava"
msgid "List all"
-msgstr ""
+msgstr "Prikaži vse"
msgid "List of all authorities (CSV)"
-msgstr ""
+msgstr "Seznam organov (zapis CSV)"
msgid "Listing FOI requests"
-msgstr ""
+msgstr "Prikazujem zahtevke za IJZ"
msgid "Listing public authorities"
-msgstr ""
+msgstr "Prikazujem javne organe"
msgid "Listing public authorities matching '{{query}}'"
-msgstr ""
+msgstr "Prikazujem javne organe, ki ustrezajo '{{query}}'"
msgid "Listing tracks"
-msgstr ""
+msgstr "Prikazujem spremljanja"
msgid "Listing users"
-msgstr ""
+msgstr "Prikazujem uporabnike"
msgid "Log in to download a zip file of {{info_request_title}}"
-msgstr ""
+msgstr "Prijavite se, da prenesete arhiv ZIP zahtevka {{info_request_title}}"
msgid "Log into the admin interface"
-msgstr ""
+msgstr "Prijava v administracijski vmesnik"
msgid "Long overdue."
-msgstr ""
+msgstr "Rok za odziv pretečen."
msgid "Made between"
-msgstr ""
+msgstr "Narejeno med"
msgid "Mail server log"
-msgstr ""
+msgstr "Dnevnik poštnega strežnika"
msgid "Mail server log done"
-msgstr ""
+msgstr "Dnevnik poštnega strežnika končano"
msgid "MailServerLogDone|Filename"
-msgstr ""
+msgstr "MailServerLogDone|Datoteka"
msgid "MailServerLogDone|Last stat"
-msgstr ""
+msgstr "MailServerLogDone|Last stat"
msgid "MailServerLog|Line"
-msgstr ""
+msgstr "MailServerLog|Vrstica"
msgid "MailServerLog|Order"
-msgstr ""
+msgstr "MailServerLog|Vrstni red"
msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>"
-msgstr ""
+msgstr "Ustvarite nov<br/>\\n <strong>Zahtevek <span>za</span><br/>\\n informacije<br/>\\n javnega značaja</strong>"
msgid "Make a request"
-msgstr ""
+msgstr "Naredite zahtevek"
msgid "Make a request to this authority"
-msgstr ""
+msgstr "Naredite nov zahtevek za ta organ"
msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
-msgstr ""
+msgstr "Naredite {{law_used_short}} zahtevek za '{{public_body_name}}'"
msgid "Make and browse Freedom of Information (FOI) requests"
-msgstr ""
+msgstr "Naredite in brskajte zahtevke za informacije javnega značaja"
msgid "Make your own request"
-msgstr ""
+msgstr "Naredite nov zahtevek"
msgid "Many requests"
-msgstr ""
+msgstr "Veliko zahtevkov"
msgid "Message"
-msgstr ""
+msgstr "Sporočilo"
msgid "Message sent using {{site_name}} contact form, "
-msgstr ""
+msgstr "Sporočilo je bilo poslano z uporabo obrazca na {{site_name}},"
msgid "Missing contact details for '"
-msgstr ""
+msgstr "Manjkajo kontaktne informacije za '"
msgid "More about this authority"
-msgstr ""
+msgstr "Več o tem organu"
msgid "More requests..."
-msgstr ""
+msgstr "Več zahtevkov..."
msgid "More similar requests"
-msgstr ""
+msgstr "Več podobnih zahtevkov"
msgid "More successful requests..."
-msgstr ""
+msgstr "Več uspešnih zahtevkov..."
msgid "My profile"
-msgstr ""
+msgstr "Moj profil"
msgid "My request has been <strong>refused</strong>"
-msgstr ""
+msgstr "Moj zahtevek je bil <strong>zavrnjen</strong>"
msgid "My requests"
-msgstr ""
+msgstr "Moji zahtevki"
msgid "My wall"
-msgstr ""
+msgstr "Moj zid"
msgid "Name can't be blank"
-msgstr ""
+msgstr "Ime ne more biti prazno"
msgid "Name is already taken"
-msgstr ""
+msgstr "Ime je že zasedeno"
msgid "New Freedom of Information requests"
-msgstr ""
+msgstr "Nov zahtevek po informacijah javnega značaja"
msgid "New censor rule"
-msgstr ""
+msgstr "Novo pravilo za cenzuro"
msgid "New e-mail:"
-msgstr ""
+msgstr "Nov e-poštni naslov:"
msgid "New email doesn't look like a valid address"
-msgstr ""
+msgstr "Nov e-poštni naslov ne izgleda veljaven"
msgid "New password:"
-msgstr ""
+msgstr "Novo geslo:"
msgid "New password: (again)"
-msgstr ""
+msgstr "Novo geslo (ponovno):"
msgid "New response to '{{title}}'"
-msgstr ""
+msgstr "Nov odgovor na '{{title}}'"
msgid "New response to your FOI request - "
-msgstr ""
+msgstr "Nov odziv na vaš zaktevek -"
msgid "New response to your request"
-msgstr ""
+msgstr "Nov odgovor na vaš zahtevek"
msgid "New response to {{law_used_short}} request"
-msgstr ""
+msgstr "Nov odgovor na {{law_used_short}} zahtevek"
msgid "New updates for the request '{{request_title}}'"
-msgstr ""
+msgstr "Nove spremembe glede zahtevka '{{request_title}}'"
msgid "Newest results first"
-msgstr ""
+msgstr "Najnovejši rezultati najprej"
msgid "Next"
-msgstr ""
+msgstr "Naprej"
msgid "Next, crop your photo &gt;&gt;"
-msgstr ""
+msgstr "Obrežite vašo sliko &gt;&gt;"
msgid "No requests of this sort yet."
-msgstr ""
+msgstr "Ni še zahtevkov te vrste."
msgid "No results found."
-msgstr ""
+msgstr "Ni najdenih rezultatov."
msgid "No similar requests found."
-msgstr ""
+msgstr "Ni podobnih zahtevkov."
msgid "No tracked things found."
-msgstr ""
+msgstr "Ni spremljanj."
msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
-msgstr ""
+msgstr "Nihče še ni naredil zahtevka po informacijah javnega značaja za {{public_body_name}} z uporabo te strani."
msgid "None found."
-msgstr ""
+msgstr "Ni najdeno."
msgid "None made."
-msgstr ""
+msgstr "Ni narejeno."
msgid "Not a valid FOI request"
-msgstr ""
+msgstr "Ni veljaven zahtevek za IJZ"
msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf."
-msgstr ""
+msgstr "Vedite, da prosilec ne bo obveščen o vašem zaznamku, ker je bil zahtevek objavljen na lastno željo {{public_body_name}}."
msgid "Now check your email!"
-msgstr ""
+msgstr "Preverite vašo e-pošto!"
msgid "Now preview your annotation"
-msgstr ""
+msgstr "Preglejte vaš zaznamek"
msgid "Now preview your follow up"
-msgstr ""
+msgstr "Preglejte vaš odziv"
msgid "Now preview your message asking for an internal review"
-msgstr ""
+msgstr "Preglejte vaš zahtevek za interno revizijo"
msgid "OR remove the existing photo"
-msgstr ""
+msgstr "ALI odstranite trenutno fotografijo"
msgid "Offensive? Unsuitable?"
-msgstr ""
+msgstr "Žaljivo? Neprimerno?"
msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now."
-msgstr ""
+msgstr "Joj ne! Vaš zahtevek je bil zavrnjen. Poglejte kaj lahko storite sedaj."
msgid "Old e-mail:"
-msgstr ""
+msgstr "Star e-poštni naslov:"
msgid "Old email address isn't the same as the address of the account you are logged in with"
-msgstr ""
+msgstr "Stari e-poštni naslov ni isti, kot je ta, s katerim ste prijavljeni"
msgid "Old email doesn't look like a valid address"
-msgstr ""
+msgstr "Stari e-poštni naslov ni veljaven"
msgid "On this page"
-msgstr ""
+msgstr "Na tej strani"
msgid "One FOI request found"
-msgstr ""
+msgstr "En zahtevek najden"
msgid "One person found"
-msgstr ""
+msgstr "Najdena ena oseba "
msgid "One public authority found"
-msgstr ""
+msgstr "Najden en javni organ"
msgid "Only put in abbreviations which are really used, otherwise leave blank. Short or long name is used in the URL – don't worry about breaking URLs through renaming, as the history is used to redirect"
-msgstr ""
+msgstr "Dodajte le okrajšave, ki se uporabljajo, sicer pustite prazno. Kratko ali dolgo ime je uporabljano v URL naslovu - ne delajte si skrbi z okvaro povezav pri spremembah, saj se ohranijo z uporabo preusmeritev"
msgid "Only requests made using {{site_name}} are shown."
-msgstr ""
+msgstr "Prikazani so zgolj zahtevki, narejeni z uporabo {{site_name}}."
msgid "Only the authority can reply to this request, and I don't recognise the address this reply was sent from"
-msgstr ""
+msgstr "Na ta zahtevek lahko odgovori zgolj organ, e-poštni naslov, s katerega je bil poslan odgovor, pa ni prepoznan"
msgid "Only the authority can reply to this request, but there is no \"From\" address to check against"
-msgstr ""
+msgstr "Na ta zahtevek lahko odgovori zgolj organ, a sporočilo ne vsebuje polja pošiljatelja, da bi ga primerjali"
msgid "Or search in their website for this information."
-msgstr ""
+msgstr "Ali iščite po njihovi spletni strani za te informacije"
msgid "Original request sent"
-msgstr ""
+msgstr "Izvirno poslani zahtevek"
msgid "Other:"
-msgstr ""
+msgstr "Drugo:"
msgid "Outgoing message"
-msgstr ""
+msgstr "Odhodno sporočilo"
msgid "OutgoingMessage|Body"
-msgstr ""
+msgstr "IzhodnoSporočilo|Vsebina"
msgid "OutgoingMessage|Last sent at"
-msgstr ""
+msgstr "IzhodnoSporočilo|Zadnje poslano ob"
msgid "OutgoingMessage|Message type"
-msgstr ""
+msgstr "IzhodnoSporočilo|Tip sporočila"
msgid "OutgoingMessage|Status"
-msgstr ""
+msgstr "IzhodnoSporočilo|Status"
msgid "OutgoingMessage|What doing"
-msgstr ""
+msgstr "IzhodnoSporočilo|Cilj"
msgid "Partially successful."
-msgstr ""
+msgstr "Delno odobreno."
msgid "Password is not correct"
-msgstr ""
+msgstr "Geslo ni pravilno"
msgid "Password:"
-msgstr ""
+msgstr "Geslo:"
msgid "Password: (again)"
-msgstr ""
+msgstr "Geslo (ponovno):"
msgid "Paste this link into emails, tweets, and anywhere else:"
-msgstr ""
+msgstr "Prilepite to povezavo v e-pošto, tvite in drugam:"
msgid "People"
-msgstr ""
+msgstr "Ljudje"
msgid "People {{start_count}} to {{end_count}} of {{total_count}}"
-msgstr ""
+msgstr "Ljudje od {{start_count}} do {{end_count}} od skupno {{total_count}}"
msgid "Photo of you:"
-msgstr ""
+msgstr "Vaša slika:"
msgid "Plans and administrative measures that affect these matters"
-msgstr ""
+msgstr "Načrti in administrativni ukrepi, ki vplivajo na te zadeve"
msgid "Play the request categorisation game"
-msgstr ""
+msgstr "Igrajte igro kategorizacije zahtevkov"
msgid "Play the request categorisation game!"
-msgstr ""
+msgstr "Igrajte igro kategorizacije zahtevkov!"
msgid "Please"
-msgstr ""
+msgstr "Prosimo"
msgid "Please <a href=\"{{url}}\">get in touch</a> with us so we can fix it."
-msgstr ""
+msgstr "Prosimo, <a href=\"{{url}}\">stopite v kontakt z nami</a>, da lahko zadevo popravimo."
msgid "Please <strong>answer the question above</strong> so we know whether the "
-msgstr ""
+msgstr "Prosimo <strong>odgovorite na zgornje vprašanje</strong> da vemo ali"
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 ""
+msgstr "Prosimo, <strong>pojdite na sledeče zahtevke</strong> in nam \\npovejte, če vsebujejo zadnji odgovori kaj zahtevanih infromacij."
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 ""
+msgstr "Prosimo, vpisujte <strong>zgolj</strong> sporočila, ki se tičejo tega zahtevka {{request_link}}. Če bi želeli pridobiti informacije, ki jih niste zahtevali v izvirnem zahtevku, potem <a href=\"{{new_request_link}}\">naredite nov zahtevek</a>."
msgid "Please ask for environmental information only"
-msgstr ""
+msgstr "Vprašajte zgolj za informacije o okolju"
msgid "Please check the URL (i.e. the long code of letters and numbers) is copied\\ncorrectly from your email."
-msgstr ""
+msgstr "Prosimo preverite, da je URL (daljši niz znakov in številk) pravilno prekopiran \\n iz vaše e-pošte."
msgid "Please choose a file containing your photo."
-msgstr ""
+msgstr "Izberite datoteko z vašo fotografijo."
msgid "Please choose a reason"
-msgstr ""
+msgstr "Prosimo, izberite razlog"
msgid "Please choose what sort of reply you are making."
-msgstr ""
+msgstr "Izberite tip odgovora, ki ga pišete."
msgid "Please choose whether or not you got some of the information that you wanted."
-msgstr ""
+msgstr "Označite ali ste dobili vsaj del informacij, ki ste jih zahtevali."
msgid "Please click on the link below to cancel or alter these emails."
-msgstr ""
+msgstr "Kliknite na spodnjo povezavo, da prekličete ali spremenite ta e-pisma."
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 ""
+msgstr "Prosimo, kliknite na spodnjo povezavo, da potrdite, da želite spremeniti e-poštni naslov, ki ga uporabljate na {{site_name}}\\niz {{old_email}} v {{new_email}}"
msgid "Please click on the link below to confirm your email address."
-msgstr ""
+msgstr "Kliknite na spodnjo povezavo, da potrdite vaš e-poštni naslov."
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 ""
+msgstr "Bolj natantančno opišite zadevo zahtevka. Ni potrebe, da rečete, da gre za zahtevek IJZ, saj se to doda avtomatsko."
msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
-msgstr ""
+msgstr "Prosimo ne nalagajte žaljivih slik. Neprimerne slike bodo odstranjene."
msgid "Please enable \"cookies\" to carry on"
-msgstr ""
+msgstr "Za nadaljevanje morate omogočiti piškotke."
msgid "Please enter a password"
-msgstr ""
+msgstr "Vnesite geslo"
msgid "Please enter a subject"
-msgstr ""
+msgstr "Vnesite zadevo"
msgid "Please enter a summary of your request"
-msgstr ""
+msgstr "Vnesite povzetek vašega zahtevka"
msgid "Please enter a valid email address"
-msgstr ""
+msgstr "Vnesite veljaven e-poštni naslov"
msgid "Please enter the message you want to send"
-msgstr ""
+msgstr "Vnesite sporočilo, ki ga želite poslati"
msgid "Please enter the same password twice"
-msgstr ""
+msgstr "Vnesite isto geslo obakrat"
msgid "Please enter your annotation"
-msgstr ""
+msgstr "Vnesite vaš zaznamek"
msgid "Please enter your email address"
-msgstr ""
+msgstr "Vnesite vaš e-poštni naslov"
msgid "Please enter your follow up message"
-msgstr ""
+msgstr "Vnesite vaš odziv"
msgid "Please enter your letter requesting information"
-msgstr ""
+msgstr "Vnesite vaše sporočilo, v katerem zahtevate informacije"
msgid "Please enter your name"
-msgstr ""
+msgstr "Vnesite vaše ime"
msgid "Please enter your name, not your email address, in the name field."
-msgstr ""
+msgstr "V polju za ime vnesite vaše ime, ne vašega e-poštnega naslova."
msgid "Please enter your new email address"
-msgstr ""
+msgstr "Vnesite vaš novi e-poštni naslov"
msgid "Please enter your old email address"
-msgstr ""
+msgstr "Vnesite vaš stari e-poštni naslov"
msgid "Please enter your password"
-msgstr ""
+msgstr "Vnesite vaše geslo"
msgid "Please give details explaining why you want a review"
-msgstr ""
+msgstr "Podrobno utemeljite zakaj zahtevate revizijo"
msgid "Please keep it shorter than 500 characters"
-msgstr ""
+msgstr "Opišite v 500 znakih ali manj "
msgid "Please keep the summary short, like in the subject of an email. You can use a phrase, rather than a full sentence."
-msgstr ""
+msgstr "Povzetek naj bo kratek, tako kot zadeva e-poštnega sporočila. Uporabite lahko tudi besedno zvezo namesto celotnega stavka."
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 ""
+msgstr "Prosimo zahtevajte le informacije, ki spadajo v te kategorije in <strong>ne tratite vašega časa</strong> in časa javnih organov z zahtevami po nepovezanih informacijah."
msgid "Please pass this on to the person who conducts Freedom of Information reviews."
-msgstr ""
+msgstr "Prosimo, posredujte to osebi, odgovorni za dostop do informacij javnega značaja."
msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not."
-msgstr ""
+msgstr "Prosimo izberite vsakega od teh zahtevkov po vrsti in <strong>dajte vsem vedeti</strong>,\\n če so bili uspešni ali ne."
msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature"
-msgstr ""
+msgstr "Prosimo, podpišite se spodaj z vašim imenom ali pa spremenite podpis \"{{signoff}}\"."
msgid "Please sign in as "
-msgstr ""
+msgstr "Prijavite se kot"
msgid "Please sign in or make a new account."
-msgstr ""
+msgstr "Prosimo, prijavite se ali ustvarite nov račun."
msgid "Please type a message and/or choose a file containing your response."
-msgstr ""
+msgstr "Napišite sporočilo in/ali izberite datoteko z vašim odzivom."
msgid "Please use this email address for all replies to this request:"
-msgstr ""
+msgstr "Prosimo uporabite ta e-poštni naslov za vse odgovore na ta zahtevek:"
msgid "Please write a summary with some text in it"
-msgstr ""
+msgstr "Prosimo vpišite povzetek"
msgid "Please write the summary using a mixture of capital and lower case letters. This makes it easier for others to read."
-msgstr ""
+msgstr "Povzetek napišite z uporabo velikih začetnic, da bo prijetnejši za branje."
msgid "Please write your annotation using a mixture of capital and lower case letters. This makes it easier for others to read."
-msgstr ""
+msgstr "Prosimo, napišite vaš zaznamek z uporabo velikih začetnic, da bo lažji za branje."
msgid "Please write your follow up message containing the necessary clarifications below."
-msgstr ""
+msgstr "Prosimo napišite vaš odziv, ki vsebuje zahtevana pojasnila spodaj."
msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read."
-msgstr ""
+msgstr "Prosimo napišite vaše sporočilo z uporabo velikih začetnic. Tako bo prijetnejši za branje."
msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful."
-msgstr ""
+msgstr "Opozorite na <strong>sorodne informacije</strong>, kampanje ali forume, ki so morda uporabni."
msgid "Possibly related requests:"
-msgstr ""
+msgstr "Morebiti sorodni zahtevki:"
msgid "Post annotation"
-msgstr ""
+msgstr "Objavi zaznamek"
msgid "Post redirect"
-msgstr ""
+msgstr "Preusmeritev"
msgid "PostRedirect|Circumstance"
-msgstr ""
+msgstr "PostRedirect|Okoliščine"
msgid "PostRedirect|Email token"
-msgstr ""
+msgstr "PostRedirect|Epoštni žeton"
msgid "PostRedirect|Post params yaml"
-msgstr ""
+msgstr "PostRedirect|Parametri v yaml"
msgid "PostRedirect|Reason params yaml"
-msgstr ""
+msgstr "PostRedirect|Parametri razlogov v yaml"
msgid "PostRedirect|Token"
-msgstr ""
+msgstr "PostRedirect|Žeton"
msgid "PostRedirect|Uri"
-msgstr ""
+msgstr "PostRedirect|Uri"
msgid "Posted on {{date}} by {{author}}"
-msgstr ""
+msgstr "Objavlil {{author}} dne {{date}}"
msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>"
-msgstr ""
+msgstr "Stran poganja <a href=\"http://www.alaveteli.org/\">Alaveteli</a>"
msgid "Prev"
-msgstr ""
+msgstr "Prejšnja"
msgid "Preview follow up to '"
-msgstr ""
+msgstr "Predogled odziva na '"
msgid "Preview new annotation on '{{info_request_title}}'"
-msgstr ""
+msgstr "Predogled zaznamka na '{{info_request_title}}'"
msgid "Preview your annotation"
-msgstr ""
+msgstr "Predogled zaznamka"
msgid "Preview your message"
-msgstr ""
+msgstr "Predogled sporočila"
msgid "Preview your public request"
-msgstr ""
+msgstr "Predogled vašega zahtevka"
msgid "Profile photo"
-msgstr ""
+msgstr "Profilna slika"
msgid "ProfilePhoto|Data"
-msgstr ""
+msgstr "ProfilnaSlika|Podatki"
msgid "ProfilePhoto|Draft"
-msgstr ""
+msgstr "ProfilnaSlika|Osnutek"
msgid "Public authorities"
-msgstr ""
+msgstr "Javni organi"
msgid "Public authorities - {{description}}"
-msgstr ""
+msgstr "Javni organi - {{description}}"
msgid "Public authorities {{start_count}} to {{end_count}} of {{total_count}}"
-msgstr ""
+msgstr "Javni organi od {{start_count}} do {{end_count}} od skupno {{total_count}}"
msgid "Public authority – {{name}}"
-msgstr ""
+msgstr "Javni organ - {{name}}"
msgid "Public body"
-msgstr ""
+msgstr "Javni organ"
msgid "Public notes"
-msgstr ""
+msgstr "Javne opombe"
msgid "Public page"
-msgstr ""
+msgstr "Javna stran"
msgid "Public page not available"
-msgstr ""
+msgstr "Javna stran ni na voljo"
msgid "PublicBody|Api key"
-msgstr ""
+msgstr "PublicBody|Api key"
msgid "PublicBody|Disclosure log"
-msgstr ""
+msgstr "PublicBody|Dnevnik razkritij"
msgid "PublicBody|First letter"
-msgstr ""
+msgstr "JavniOrgan|Prva črka"
msgid "PublicBody|Home page"
-msgstr ""
+msgstr "JavniOrgan|Domača stran"
msgid "PublicBody|Info requests count"
-msgstr ""
+msgstr "PublicBody|Število zahtevkov IJZ"
msgid "PublicBody|Last edit comment"
-msgstr ""
+msgstr "JavniOrgan|Zadnji urejani komentar"
msgid "PublicBody|Last edit editor"
-msgstr ""
+msgstr "JavniOrgan|Zadnji urejevalec"
msgid "PublicBody|Name"
-msgstr ""
+msgstr "JavniOrgan|Naziv"
msgid "PublicBody|Notes"
-msgstr ""
+msgstr "JavniOrgan|Opombe"
msgid "PublicBody|Publication scheme"
-msgstr ""
+msgstr "JavniOrgan|Metoda objave"
msgid "PublicBody|Request email"
-msgstr ""
+msgstr "JavniOrgan|Epoštni naslov za zahtevke"
msgid "PublicBody|Short name"
-msgstr ""
+msgstr "JavniOrgan|Kratko ime"
msgid "PublicBody|Url name"
-msgstr ""
+msgstr "JavniOrgan|Ime v URL"
msgid "PublicBody|Version"
-msgstr ""
+msgstr "JavniOrgan|Verzija"
msgid "Publication scheme"
-msgstr ""
+msgstr "Metoda objave"
msgid "Publication scheme URL"
-msgstr ""
+msgstr "URL metode objave"
msgid "Purge request"
-msgstr ""
+msgstr "Počisti zahtevek"
msgid "PurgeRequest|Model"
-msgstr ""
+msgstr "PurgeRequest|Model"
msgid "PurgeRequest|Url"
-msgstr ""
+msgstr "PurgeRequest|Url"
msgid "RSS feed"
-msgstr ""
+msgstr "vir RSS"
msgid "RSS feed of updates"
-msgstr ""
+msgstr "vir sprememb RSS"
msgid "Re-edit this annotation"
-msgstr ""
+msgstr "Ponovno uredi ta zaznamek"
msgid "Re-edit this message"
-msgstr ""
+msgstr "Ponovno uredi to sporočilo"
msgid "Read about <a href=\"{{advanced_search_url}}\">advanced search operators</a>, such as proximity and wildcards."
-msgstr ""
+msgstr "Preberite si <a href=\"{{advanced_search_url}}\">o naprednih iskalnih operatorjih</a>, kot so podobnost."
msgid "Read blog"
-msgstr ""
+msgstr "Obiščite blog"
msgid "Received an error message, such as delivery failure."
-msgstr ""
+msgstr "Prejeto je bilo sporočilo o napaki, kot npr. napaka pri dostavi."
msgid "Recently described results first"
-msgstr ""
+msgstr "Nedavno opisani rezultati najprej"
msgid "Refused."
-msgstr ""
+msgstr "Zavrnjeno."
msgid "Remember me</label> (keeps you signed in longer;\\n do not use on a public computer) "
-msgstr ""
+msgstr "Zapomni se me</label>(ohrani vašo prijavo na tem računalniku;\\nne uporabljate tega na javnih računalnikih)"
msgid "Report abuse"
-msgstr ""
+msgstr "Prijavi zlorabo"
msgid "Report an offensive or unsuitable request"
-msgstr ""
+msgstr "Prijavite žaljiv ali neprimeren zahtevek"
msgid "Report request"
-msgstr ""
+msgstr "Prijavi zahtevek"
msgid "Report this request"
-msgstr ""
+msgstr "Prijavite ta zahtevek"
msgid "Reported for administrator attention."
-msgstr ""
+msgstr "Prijavljeno administratorjem."
msgid "Request an internal review"
-msgstr ""
+msgstr "Zahtevajte interno revizijo"
msgid "Request an internal review from {{person_or_body}}"
-msgstr ""
+msgstr "Zahtevajte interno revizijo od {{person_or_body}}"
msgid "Request email"
-msgstr ""
+msgstr "Zahtevajte e-pošto"
msgid "Request has been removed"
-msgstr ""
+msgstr "Zahtevek je bil odstranjen"
msgid "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
-msgstr ""
+msgstr "Zahtevek je bil poslan na {{public_body_name}} s strani {{info_request_user}} dne {{date}}."
msgid "Request to {{public_body_name}} by {{info_request_user}}. Annotated by {{event_comment_user}} on {{date}}."
-msgstr ""
+msgstr "Zahtevek na {{public_body_name}} od uporabnika {{info_request_user}}. Zaznamek uporabnika {{event_comment_user}} dne {{date}}."
msgid "Requested from {{public_body_name}} by {{info_request_user}} on {{date}}"
-msgstr ""
+msgstr "Zahtevano od {{public_body_name}} s strani uporabnika {{info_request_user}} dne {{date}}"
msgid "Requested on {{date}}"
-msgstr ""
+msgstr "Zahtevano dne {{date}}"
msgid "Requests for personal information and vexatious requests are not considered valid for FOI purposes (<a href=\"/help/about\">read more</a>)."
-msgstr ""
+msgstr "Zahtevki za osebne podatke in provokativni zahtevki se ne smatrajo za veljavne zahtevke za IJZ (<a href=\"/help/about\">preberite več</a>)."
msgid "Requests or responses matching your saved search"
-msgstr ""
+msgstr "Zahtevki in odgovori, ki ustrezajo vašemu shranjenemu iskanju"
msgid "Respond by email"
-msgstr ""
+msgstr "Odgovorite prek e-pošte"
msgid "Respond to request"
-msgstr ""
+msgstr "Odgovorite na zahtevek"
msgid "Respond to the FOI request"
-msgstr ""
+msgstr "Odgovorite na zahtevek po IJZ"
msgid "Respond using the web"
-msgstr ""
+msgstr "Odgovorite z uporabo spletnega vmesnika"
msgid "Response"
-msgstr ""
+msgstr "Odgovorite"
msgid "Response from a public authority"
-msgstr ""
+msgstr "Odgovor od javnega organa"
msgid "Response to '{{title}}'"
-msgstr ""
+msgstr "Odgovor na '{{title}}'"
msgid "Response to this request is <strong>delayed</strong>."
-msgstr ""
+msgstr "Odgovor na ta zahtevek je bil <strong>odložen</strong>."
msgid "Response to this request is <strong>long overdue</strong>."
-msgstr ""
+msgstr "Rok za odgovor na ta zahtevek je <strong>potekel</strong>."
msgid "Response to your request"
-msgstr ""
+msgstr "Odgovor na vaš zahtevek"
msgid "Response:"
-msgstr ""
+msgstr "Odgovor:"
msgid "Restrict to"
-msgstr ""
+msgstr "Omejite na"
msgid "Results page {{page_number}}"
-msgstr ""
+msgstr "Rezultati, stran {{page_number}}"
msgid "Save"
-msgstr ""
+msgstr "Shrani"
msgid "Search"
-msgstr ""
+msgstr "Išči"
msgid "Search Freedom of Information requests, public authorities and users"
-msgstr ""
+msgstr "Iščite po zahtevkih IJZ, javnih organih in uporabnikih"
msgid "Search contributions by this person"
-msgstr ""
+msgstr "Iščite prispevke te osebe"
msgid "Search for words in:"
-msgstr ""
+msgstr "Iščite za besedami v:"
msgid "Search in"
-msgstr ""
+msgstr "Iščite v"
msgid "Search over<br/>\\n <strong>{{number_of_requests}} requests</strong> <span>and</span><br/>\\n <strong>{{number_of_authorities}} authorities</strong>"
-msgstr ""
+msgstr "Iščite po <br/>\\n <strong>{{number_of_requests}} zahtevkih</strong> <span>in po</span><br/>\\n<strong>{{number_of_authorities}} organih</strong>"
msgid "Search queries"
-msgstr ""
+msgstr "Iskalne poizvedbe"
msgid "Search results"
-msgstr ""
+msgstr "Rezultati iskanja"
msgid "Search the site to find what you were looking for."
-msgstr ""
+msgstr "Iščite po strani"
msgid "Search within the {{count}} Freedom of Information requests to {{public_body_name}}"
msgid_plural "Search within the {{count}} Freedom of Information requests made to {{public_body_name}}"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Iščite po {{count}} zahtevku za informacije javnega značaja, narejene na {{public_body_name}}"
+msgstr[1] "Iščite po {{count}} zahtevkih za informacije javnega značaja, narejene na {{public_body_name}}"
+msgstr[2] "Iščite po {{count}} zahtevkih za informacije javnega značaja, narejene na {{public_body_name}}"
+msgstr[3] "Iščite po {{count}} zahtevkih za informacije javnega značaja, narejene na {{public_body_name}}"
msgid "Search your contributions"
-msgstr ""
+msgstr "Iščite po vaših prispevkih"
msgid "See bounce message"
-msgstr ""
+msgstr "Poglejte sporočilo o nedostavi"
msgid "Select one to see more information about the authority."
-msgstr ""
+msgstr "Izberite en javni organ, da bi dobili več informacij o njem."
msgid "Select the authority to write to"
-msgstr ""
+msgstr "Izberite organ za dopis"
msgid "Send a followup"
-msgstr ""
+msgstr "Pošljite odziv"
msgid "Send a message to "
-msgstr ""
+msgstr "Pošljite sporočilo na"
msgid "Send a public follow up message to {{person_or_body}}"
-msgstr ""
+msgstr "Pošljite javni odziv za {{person_or_body}}"
msgid "Send a public reply to {{person_or_body}}"
-msgstr ""
+msgstr "Pošljite javni odgovor za {{person_or_body}}"
msgid "Send follow up to '{{title}}'"
-msgstr ""
+msgstr "Pošljite odziv na '{{title}}'"
msgid "Send message"
-msgstr ""
+msgstr "Pošljite sporočilo"
msgid "Send message to "
-msgstr ""
+msgstr "Pošlji sporočilo "
msgid "Send request"
-msgstr ""
+msgstr "Pošlji zahtevek"
msgid "Set your profile photo"
-msgstr ""
+msgstr "Nastavi profilno fotografijo"
msgid "Short name"
-msgstr ""
+msgstr "Kratko ime"
msgid "Short name is already taken"
-msgstr ""
+msgstr "Kratko ime je že zasedeno"
msgid "Show most relevant results first"
-msgstr ""
+msgstr "Prikaži najbolj relevantne rezultate najprej"
msgid "Show only..."
-msgstr ""
+msgstr "Prikaži le..."
msgid "Showing"
-msgstr ""
+msgstr "Prikazujem"
msgid "Sign in"
-msgstr ""
+msgstr "Prijava"
msgid "Sign in or make a new account"
-msgstr ""
+msgstr "Prijava ali ustvarjanje novega računa"
msgid "Sign in or sign up"
-msgstr ""
+msgstr "Prijava ali nov račun"
msgid "Sign out"
-msgstr ""
+msgstr "Odjava"
msgid "Sign up"
-msgstr ""
+msgstr "Nov račun"
msgid "Similar requests"
-msgstr ""
+msgstr "Podobni zahtevki"
msgid "Simple search"
-msgstr ""
+msgstr "Enostavno iskanje"
msgid "Some notes have been added to your FOI request - "
-msgstr ""
+msgstr "K vašemu zahtevku IJZ so bili dodani zaznamki -"
msgid "Some of the information requested has been received"
-msgstr ""
+msgstr "Prejet je bil del zahtevanih informacij"
msgid "Some people who've made requests haven't let us know whether they were\\nsuccessful or not. We need <strong>your</strong> help &ndash;\\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 ""
+msgstr "Nekateri prosilci niso povedali, če so bili njihovi zahtevki uspešni ali ne.\\n Poterbujemo <strong>vašo</strong> pomoč &ndash;\\nizberite enega izmed teh zahtevkov, ga preberite, ter označite če vsebuje zahtevane\\n informacije ali ne, da bomo vsi vedeli. Vsi vam bomo neizmerno hvaležni."
msgid "Somebody added a note to your FOI request - "
-msgstr ""
+msgstr "Nekdo je k vašemu zahtevku IJZ dodal opombo -"
msgid "Someone has updated the status of your request"
-msgstr ""
+msgstr "Nekdo je posodobil status vašega zahtevka"
msgid "Someone, perhaps you, just tried to change their email address on\\n{{site_name}} from {{old_email}} to {{new_email}}."
-msgstr ""
+msgstr "Nekdo, morda vi, je pravkar želel spremeniti e-poštni naslov na\\n{{site_name}} iz {{old_email}} na {{new_email}}."
msgid "Sorry - you cannot respond to this request via {{site_name}}, because this is a copy of the request originally at {{link_to_original_request}}."
-msgstr ""
+msgstr "Oprostite - na ta zahtevek ne morete odgovoriti z uporabo {{site_name}}, ker je to kopija zahtevka, izvirno objavljenega na {{link_to_original_request}}."
msgid "Sorry, but only {{user_name}} is allowed to do that."
-msgstr ""
+msgstr "Oprostite, ampak to lahko stori zgolj {{user_name}}."
msgid "Sorry, there was a problem processing this page"
-msgstr ""
+msgstr "Oprostite, pri procesiranju je prišlo do napake."
msgid "Sorry, we couldn't find that page"
-msgstr ""
+msgstr "Oprostite, te strani ni mogoče najti"
msgid "Special note for this authority!"
-msgstr ""
+msgstr "Posebna opomba za ta organ!"
msgid "Start now &raquo;"
-msgstr ""
+msgstr "Začnite zdaj &raquo;"
msgid "Start your own blog"
-msgstr ""
+msgstr "Začnite svoj blog"
msgid "Stay up to date"
-msgstr ""
+msgstr "Ostanite na tekočem"
msgid "Still awaiting an <strong>internal review</strong>"
-msgstr ""
+msgstr "Še vedno čaka <strong>interno revizijo</strong>"
msgid "Subject"
-msgstr ""
+msgstr "Zadeva"
msgid "Subject:"
-msgstr ""
+msgstr "Zadeva:"
msgid "Submit"
-msgstr ""
+msgstr "Pošlji"
msgid "Submit status"
-msgstr ""
+msgstr "Pošlji stanje"
msgid "Submit status and send message"
-msgstr ""
+msgstr "Shrani status in odpošlji sporočilo"
msgid "Subscribe to blog"
-msgstr ""
+msgstr "Naroči se na blog"
msgid "Successful Freedom of Information requests"
-msgstr ""
+msgstr "Uspešni zahtevki za informacije javnega značaja"
msgid "Successful."
-msgstr ""
+msgstr "Uspešno."
msgid "Suggest how the requester can find the <strong>rest of the information</strong>."
-msgstr ""
+msgstr "Predlagaj kako lahko prosilec najde <strong>preostanek zahtevanih informacij</strong>."
msgid "Summary:"
-msgstr ""
+msgstr "Povzetek:"
msgid "Table of statuses"
-msgstr ""
+msgstr "Preglednica stanj"
msgid "Table of varieties"
-msgstr ""
+msgstr "Preglednica tipov"
msgid "Tags"
-msgstr ""
+msgstr "Značke"
msgid "Tags (separated by a space):"
-msgstr ""
+msgstr "Značke (ločene s presledkom):"
msgid "Tags:"
-msgstr ""
+msgstr "Značke:"
msgid "Technical details"
-msgstr ""
+msgstr "Tehnične podrobnosti"
msgid "Thank you for helping us keep the site tidy!"
-msgstr ""
+msgstr "Hvala za pomoč pri urejanju strani!"
msgid "Thank you for making an annotation!"
-msgstr ""
+msgstr "Hvala za dodan zaznamek!"
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 ""
+msgstr "Hvala za odgovor na ta zahtevek za informacije javnega značaja! Vaš odgovor je bil objavljen spodaj, povezava na odgovor pa je bila poslana "
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 ""
+msgstr "Hvala za posodobitev zahtevka '<a href=\"{{url}}\">{{info_request_title}}</a>'. Spodaj so še drugi zahtevki, ki jih lahko razvrstite."
msgid "Thank you for updating this request!"
-msgstr ""
+msgstr "Hvala za posodobitev tega zahtevka!"
msgid "Thank you for updating your profile photo"
-msgstr ""
+msgstr "Hvala za posodobitev vaše profilne slike"
msgid "Thank you! We'll look into what happened and try and fix it up."
-msgstr ""
+msgstr "Hvala! Pogledali bomo kaj se je zgodilo in poskusili odpraviti napako."
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 ""
+msgstr "Hvala za pomoč - vaš trud omogoča, da lahko vsi najdejo uspešne zahtevke in nam morda celo omogočajo narediti lestvice ..."
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 ""
+msgstr "Hvala - to bo omogočilo, da najdemo uporabne zadeve. Prav tako\\n vam bomo, če boste potrebovali, svetovali kaj storiti\\n naprej z vašimi zahtevki."
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 ""
+msgstr "Hvala, ker pomagate skrbeti, da je spletna stran <strong>lepa in urejena</strong>.\\nPrav tako vam bomo, če boste potrebovali, svetovali kaj storiti naprej z vašimi zahtevki."
msgid "That doesn't look like a valid email address. Please check you have typed it correctly."
-msgstr ""
+msgstr "Vnešeno ni veljaven e-poštni naslov. Prosimo, preverite če ste ga vtipkali pravilno."
msgid "The <strong>review has finished</strong> and overall:"
-msgstr ""
+msgstr "<strong>Revizija je končana</strong>, izsledki:"
msgid "The Freedom of Information Act <strong>does not apply</strong> to"
-msgstr ""
+msgstr "Zakon o dostopu do informacij javnega značaja <strong>ne velja</strong> za"
msgid "The accounts have been left as they previously were."
-msgstr ""
+msgstr "Računi so ostali nedotaknjeni."
msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)"
-msgstr ""
+msgstr "Organ <strong>nima</strong> zahtevanih informacij <small>(mogoče povedo, kdo pa jih ima)"
msgid "The authority only has a <strong>paper copy</strong> of the information."
-msgstr ""
+msgstr "Organ ima zahtevane informacije zgolj <strong>v papirnati obliki</strong>."
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 ""
+msgstr "Organ pravi, da potrebuje poštni naslov, ne zgolj e-pošte, da gre za veljaven zahtevek za IJZ"
msgid "The authority would like to / has <strong>responded by post</strong> to this request."
-msgstr ""
+msgstr "Organ bi želel oziroma je na ta zahtevek <strong>odgovoril preko pošte</strong>."
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 ""
+msgstr "E-pošta, ki ste jo v imenu {{public_body}} poslali {{user}} \\nkot odgovor na zahtevek za {{law_used_short}} ni bila dostavljena."
msgid "The page doesn't exist. Things you can try now:"
-msgstr ""
+msgstr "Stran ne obstaja. Kaj lahko storite:"
msgid "The public authority does not have the information requested"
-msgstr ""
+msgstr "Organ nima zahtevanih informacij"
msgid "The public authority would like part of the request explained"
-msgstr ""
+msgstr "Organ je zaprosil za pojasnilo dela zahteve"
msgid "The public authority would like to / has responded by post"
-msgstr ""
+msgstr "Organ bi želel oziroma je odgovoril po pošti"
msgid "The request has been <strong>refused</strong>"
-msgstr ""
+msgstr "Zahtevek je bil <strong>zavrnjen</strong>"
msgid "The request has been updated since you originally loaded this page. Please check for any new incoming messages below, and try again."
-msgstr ""
+msgstr "V času odkar ste nazadnje osvežili stran je bil zahtevek posodobljen. Prosimo poglejte za novimi prejetimi sporočili in poskusite ponovno."
msgid "The request is <strong>waiting for clarification</strong>."
-msgstr ""
+msgstr "Zahtevek <strong>čaka na pojasnilo</strong>."
msgid "The request was <strong>partially successful</strong>."
-msgstr ""
+msgstr "Zahtevku je bilo <strong>delno ugodeno</strong>."
msgid "The request was <strong>refused</strong> by"
-msgstr ""
+msgstr "Zahtevek je <strong>zavrnil</strong> "
msgid "The request was <strong>successful</strong>."
-msgstr ""
+msgstr "Zahtevku je bilo <strong>ugodeno</strong>."
msgid "The request was refused by the public authority"
-msgstr ""
+msgstr "Zahtevek je bil s strani organa zavrnjen"
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=\"{{url}}\">contact us</a> if you have any questions."
-msgstr ""
+msgstr "Zahtevek, ki ste ga želeli pregledati, je bil odstranjen. Obstajajo različni razlogi, zaradi katerih je zahtevek lahko odstranjen, žal pa ne moremo biti bolj konkretni. <a\\n href=\"{{url}}\">Kontaktirajte nas</a>, če imate kaka vprašanja."
msgid "The requester has abandoned this request for some reason"
-msgstr ""
+msgstr "Prosilec je iz nekega razloga preklical zahtevek"
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 ""
+msgstr "Odgovor na vaš zahtevek je bil <strong>odložen</strong>. Organ bi po zakonu moral odgovoriti <strong>v roku</strong> in"
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 ""
+msgstr "Rok za odgovor na vaš zahtevek <strong>je potekel</strong>. Po zakonu bi organ, ne glede na vse okoliščine, do zdaj moral odgovoriti"
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 ""
+msgstr "Iskalnik trenutno ni dosegljiv, zato vam ne moremo prikazati zahtevkov po informacijah javnega značaja, ki so bile naslovljene na ta organ."
msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made."
-msgstr ""
+msgstr "Iskalnik je trenutno nedosegljiv, zato vam ne moremo prikazati zahtevkov po informacijah javnega značaja, ki jih je ustvaril ta uporabnik. "
msgid "The {{site_name}} team."
-msgstr ""
+msgstr "Ekipa {{site_name}}."
msgid "Then you can cancel the alert."
-msgstr ""
+msgstr "Zatem lahko prekličete obveščanje."
msgid "Then you can cancel the alerts."
-msgstr ""
+msgstr "Zatem lahko prekličete obveščanja."
msgid "Then you can change your email address used on {{site_name}}"
-msgstr ""
+msgstr "Zatem lahko spremenite vaš e-poštni naslov, ki ga uporabljate na {{site_name}}"
msgid "Then you can change your password on {{site_name}}"
-msgstr ""
+msgstr "Zatem lahko spremenite vaše geslo na {{site_name}}"
msgid "Then you can classify the FOI response you have got from "
-msgstr ""
+msgstr "Zatem lahko razvrstite odgovor, ki ste ga prejeli od"
msgid "Then you can download a zip file of {{info_request_title}}."
-msgstr ""
+msgstr "Zatem lahko preneset arhiv ZIP zahtevka {{info_request_title}}"
msgid "Then you can log into the administrative interface"
-msgstr ""
+msgstr "Zatem se lahko prijavite v administrativni vmesnik"
msgid "Then you can play the request categorisation game."
-msgstr ""
+msgstr "Zatem lahko igrate igro kategorizacije zahtevkov."
msgid "Then you can report the request '{{title}}'"
-msgstr ""
+msgstr "Zatem lahko prijavite zahtevek '{{title}}'"
msgid "Then you can send a message to "
-msgstr ""
+msgstr "Zatem lahko pošljete sporočilo "
msgid "Then you can sign in to {{site_name}}"
-msgstr ""
+msgstr "Zatem se lahko prijavite na {{site_name}}"
msgid "Then you can update the status of your request to "
-msgstr ""
+msgstr "Zatem lahko posodobite stanje vaših zahtevkov na"
msgid "Then you can upload an FOI response. "
-msgstr ""
+msgstr "Zatem lahko naložite odgovor na zahtevek IJZ"
msgid "Then you can write follow up message to "
-msgstr ""
+msgstr "Zatem lahko napišete odziv na "
msgid "Then you can write your reply to "
-msgstr ""
+msgstr "Zatem lahko napišete odgovor na"
msgid "Then you will be following all new FOI requests."
-msgstr ""
+msgstr "Po tem boste spremljali vse nove zahtevke za IJZ"
msgid "Then you will be notified whenever '{{user_name}}' requests something or gets a response."
-msgstr ""
+msgstr "Zatem boste opozorjeni kadarkoli bo uporabnik '{{user_name}}' ustvaril nov zahtevek ali prejel odgovor."
msgid "Then you will be notified whenever a new request or response matches your search."
-msgstr ""
+msgstr "Zatem boste obveščeni kadar bo nov zahtevek ali odgovor ustrezal vašemu iskalnemu nizu."
msgid "Then you will be notified whenever an FOI request succeeds."
-msgstr ""
+msgstr "Zatem boste obveščeni kadar bo zahtevek za IJZ uspešen."
msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
-msgstr ""
+msgstr "Zatem boste obveščeni, kadar kdo naredi nov zahtevek ali prejme odgovor od '{{public_body_name}}'."
msgid "Then you will be updated whenever the request '{{request_title}}' is updated."
-msgstr ""
+msgstr "Zatem boste obveščeni, kadar bo posodobljen zahtevek '{{request_title}}'."
msgid "Then you'll be allowed to send FOI requests."
-msgstr ""
+msgstr "Zatem boste smeli pošiljati zahtevke IJZ."
msgid "Then your FOI request to {{public_body_name}} will be sent."
-msgstr ""
+msgstr "Zatem bo vaš zahtevek za informacije javnega značaja na {{public_body_name}} poslan."
msgid "Then your annotation to {{info_request_title}} will be posted."
-msgstr ""
+msgstr "Zatem bo objavljen vaš zaznamek na {{info_request_title}}."
msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote."
-msgstr ""
+msgstr "Na vašem zahtevku {{info_request}} je {{count}} novih zaznamkov. Sledite tej povezavi, da vidite kaj je novega."
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 ""
+msgstr "Obstaja <strong>več ljudi</strong> s tem imenom, ki uporabljajo to stran. Eden izmed njih je prikazan spodaj, lahko pa mislite na koga drugega:"
msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>."
-msgstr ""
+msgstr "Obstaja omejitev na število dnevnih zahtevkov, ki jih lahko naredite, ker ne želimo javnih organov zasuti z veliko količino zahtevkov z neprimernimi zahtevami. Če se vam zdi, da imate upravičen razlog za dvig omejitve, nas <a href='{{help_contact_path}}'>kontaktirajte</a>."
msgid "There is {{count}} person following this request"
msgid_plural "There are {{count}} people following this request"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} oseba sledi temu zahtevku"
+msgstr[1] "{{count}} osebi sledita temu zahtevku"
+msgstr[2] "{{count}} osebe sledijo temu zahtevku"
+msgstr[3] "{{count}} oseb sledi temu zahtevku"
msgid "There was a <strong>delivery error</strong> or similar, which needs fixing by the {{site_name}} team."
-msgstr ""
+msgstr "Prišlo je do <strong>napake pri pošiljanju</strong> ali druge napake, ki zahteva posredovanje s strani ekipe {{site_name}}."
msgid "There was an error with the words you entered, please try again."
-msgstr ""
+msgstr "Pri vnešenem besedilu je prišlo do napake, prosimo poskusite ponovno."
msgid "There were no requests matching your query."
-msgstr ""
+msgstr "Poizvedbi ne ustreza noben zahtevek."
msgid "There were no results matching your query."
-msgstr ""
+msgstr "Vaša poizvedba ni vrnila rezultatov."
msgid "They are going to reply <strong>by post</strong>"
-msgstr ""
+msgstr "Odgovorili bodo <strong>po pošti</strong>"
msgid "They do <strong>not have</strong> the information <small>(maybe they say who does)</small>"
-msgstr ""
+msgstr "<strong>Nimajo</strong> zahtevanih informacij <small>(morda so navedli kdo jih ima)</small>"
msgid "They have been given the following explanation:"
-msgstr ""
+msgstr "Prejeli so sledeče pojasnilo:"
msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law"
-msgstr ""
+msgstr "Na vaš {{law_used_short}} zahtevek {{title}} niso odgovorili v predvidenem roku"
msgid "They have not replied to your {{law_used_short}} request {{title}}, \\nas required by law"
-msgstr ""
+msgstr "Niso odgovorili na vaš zahtevek za {{law_used_short}} {{title}}, kot to od njih zahteva zakon"
msgid "Things to do with this request"
-msgstr ""
+msgstr "Opravila za ta zahtevek"
msgid "Things you're following"
-msgstr ""
+msgstr "Stvari, ki jim sledite"
msgid "This authority no longer exists, so you cannot make a request to it."
-msgstr ""
+msgstr "Ta organ ne obstaja več, zato mu ne morete več posredovati zahtevkov"
msgid "This comment has been hidden. See annotations to\\n find out why. If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
-msgstr ""
+msgstr "Ta komentar je bil skrit. Poglejte zaznamke, da bi videli čemu. Če ste prosilec vi, se lahko <a href=\"{{url}}\">prijavite</a>, da vidite odgovor."
msgid "This covers a very wide spectrum of information about the state of\\n the <strong>natural and built environment</strong>, such as:"
-msgstr ""
+msgstr "To pokriva zelo širok spekter informacij o stanju <strong>narave in okolja</strong>, na primer:"
msgid "This external request has been hidden"
-msgstr ""
+msgstr "Ta zunanji zahtevek je bil skrit"
msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}"
-msgstr ""
+msgstr "To je tekstovna različica zahtevka za informacije javnega značaja \"{{request_title}}\". Zadnja in polna različica je na voljo na spletu na {{full_url}}"
msgid "This is an HTML version of an attachment to the Freedom of Information request"
-msgstr ""
+msgstr "To je HTML različica priloge k zahtevku za informacije javnega značaja"
msgid "This is because {{title}} is an old request that has been\\nmarked to no longer receive responses."
-msgstr ""
+msgstr "To je zato, ker je {{title}} star zahtevek, ki ne prejema več posodobitev."
msgid "This is the first version."
-msgstr ""
+msgstr "To je prva različica."
msgid "This is your own request, so you will be automatically emailed when new responses arrive."
-msgstr ""
+msgstr "To je vaš zahtevek, zato boste ob spremembah obveščeni po e-pošti"
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=\"{{url}}\">sign in</a> to view the response."
-msgstr ""
+msgstr "To odhodno sporočilo je bilo skrito. Poglejte zaznamke, da bi videli čemu. Če ste prosilec vi, se lahko <a href=\"{{url}}\">prijavite</a> in vidite odgovor."
msgid "This particular request is finished:"
-msgstr ""
+msgstr "Ta zahtevek je končan:"
msgid "This person has made no Freedom of Information requests using this site."
-msgstr ""
+msgstr "Ta oseba ni ustvarila nobenega zahtevka za informacije javnega značaja z uporabo te strani."
msgid "This person's annotations"
-msgstr ""
+msgstr "Zaznamki te osebe"
msgid "This person's {{count}} Freedom of Information request"
msgid_plural "This person's {{count}} Freedom of Information requests"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} zahtevek za informacije javnega značaja te osebe"
+msgstr[1] "{{count}} zahtevka za informacije javnega značaja te osebe"
+msgstr[2] "{{count}} zahtevki za informacije javnega značaja te osebe"
+msgstr[3] "{{count}} zahtevkov za informacije javnega značaja te osebe"
msgid "This person's {{count}} annotation"
msgid_plural "This person's {{count}} annotations"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} zaznamek te osebe"
+msgstr[1] "{{count}} zaznamka te osebe"
+msgstr[2] "{{count}} zaznamki te osebe"
+msgstr[3] "{{count}} zaznamkov te osebe"
msgid "This request <strong>requires administrator attention</strong>"
-msgstr ""
+msgstr "Ta zahtevek <strong>zahteva pozornost administratorja</strong>"
msgid "This request has already been reported for administrator attention"
-msgstr ""
+msgstr "Ta zahtevek je že bil prijavljen administratorju"
msgid "This request has an <strong>unknown status</strong>."
-msgstr ""
+msgstr "Status tega zahtevka je <strong>neznan</strong>."
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
-msgstr ""
+msgstr "Ta zahtevek je bil <strong>skrit</strong> s spletne strani, ker po mnenju administratorja to ni zahtevek za IJZ"
msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
-msgstr ""
+msgstr "Ta zahtevek je bil <strong>skrit</strong> s spletne strani, ker je administrator mnenja, da je provokativen"
msgid "This request has been <strong>reported</strong> as needing administrator attention (perhaps because it is vexatious, or a request for personal information)"
-msgstr ""
+msgstr "Ta zahtevek je bil <strong>prijavljen</strong> administratorju (morda zato, ker je provokativen ali pa je zahtevek za osebne podatke)"
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 ""
+msgstr "Ta zahtevek je bil <strong>umaknjen</strong> s strani prosilca. V spodnji korespondenci je morda obrazložitev."
msgid "This request has been marked for review by the site administrators, who have not hidden it at this time. If you believe it should be hidden, please <a href=\"{{url}}\">contact us</a>."
-msgstr ""
+msgstr "Ta zahtevek je bil označen za pregled s strani administratorjev, ki ga še niso skrili. Če ste mnenja, da bi morali ta zahtevek skriti, nas prosimo <a href=\"{{url}}\">kontaktirajte</a>."
msgid "This request has been reported for administrator attention"
-msgstr ""
+msgstr "Ta zahtevek je bil prijavljen administratorju"
msgid "This request has been set by an administrator to \"allow new responses from nobody\""
-msgstr ""
+msgstr "Administrator je zaklenil ta zahtevek, zaradi česar ni možno dodajati novih odzivov."
msgid "This request has had an unusual response, and <strong>requires attention</strong> from the {{site_name}} team."
-msgstr ""
+msgstr "Ta zahtevek je imel neobičajen odgovor in <strong>zahteva ukrepanje</strong> ekipe {{site_name}}."
msgid "This request has prominence 'hidden'. You can only see it because you are logged\\n in as a super user."
-msgstr ""
+msgstr "Ta zahtevek je skrit. Vidite ga lahko, ker ste prijavljeni kot administrator."
msgid "This request is hidden, so that only you the requester can see it. Please\\n <a href=\"{{url}}\">contact us</a> if you are not sure why."
-msgstr ""
+msgstr "Ta zahtevek je skrit, tako da je viden zgolj vam in prosilcu. Prosimo, <a href=\"{{url}}\">stopite v kontakt</a> če niste prepričani zakaj."
msgid "This request is still in progress:"
-msgstr ""
+msgstr "Ta zahtevek je še vedno v teku:"
msgid "This request requires administrator attention"
-msgstr ""
+msgstr "Ta zahtevek zahteva pozornost administratorja"
msgid "This request was not made via {{site_name}}"
-msgstr ""
+msgstr "Ta zahtevek ni bil narejen z uporabo {{site_name}}"
msgid "This response has been hidden. See annotations to find out why.\\n If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
-msgstr ""
+msgstr "Ta odgovor je bil skrit. Poglejte zaznamke, da bi videli čemu. Če ste prosilec vi, potem se lahko <a href=\"{{url}}\">prijavite</a> in vidite odgovor."
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 ""
+msgstr "Ta tabela prikazuje tehnične podrobnosti internih dogodkov, ki so se dogajali na tem zahtevku na {{site_name}}. To lahko uporabite, da zgenerirate informacije o odzivnosti oz. hitrosti, s katero organi odgovarjajo na zahteve, število zahtev ki zahtevajo poštno pošiljanje in še mnogo več."
msgid "This user has been banned from {{site_name}} "
-msgstr ""
+msgstr "Temu uporabniku je bil onemogočen dostop do {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
-msgstr ""
+msgstr "Tega ni bilo možno narediti, ker že obstaja uporabnik z e-poštnim naslovom {{email}}."
msgid "To cancel these alerts"
-msgstr ""
+msgstr "Za preklic teh opozoril"
msgid "To cancel this alert"
-msgstr ""
+msgstr "Da prekličete to opozorilo"
msgid "To carry on, you need to sign in or make an account. Unfortunately, there\\nwas a technical problem trying to do this."
-msgstr ""
+msgstr "Da nadaljujete, se morate prijaviti ali narediti račun. Žal je pri tem prišlo do tehničnih težav."
msgid "To change your email address used on {{site_name}}"
-msgstr ""
+msgstr "Za spremembo e-poštnega naslova, ki ga uporabljate na {{site_name}}"
msgid "To classify the response to this FOI request"
-msgstr ""
+msgstr "Za razvrstitev odgovora na ta zahtevek za informacije javnega značaja"
msgid "To do that please send a private email to "
-msgstr ""
+msgstr "Za to prosimo pošljite zasebno e-pošto "
msgid "To do this, first click on the link below."
-msgstr ""
+msgstr "Za to najprej kliknite na povezavo spodaj."
msgid "To download the zip file"
-msgstr ""
+msgstr "Za prenos arhiva ZIP"
msgid "To follow all successful requests"
-msgstr ""
+msgstr "Da bi spremljali vse uspešne zahtevke"
msgid "To follow new requests"
-msgstr ""
+msgstr "Da bi spremljali nove zahtevke"
msgid "To follow requests and responses matching your search"
-msgstr ""
+msgstr "Da sledite zahtevku in odgovorom, ki ustrezajo vašemu iskanju"
msgid "To follow requests by '{{user_name}}'"
-msgstr ""
+msgstr "Da bi spremljali zahtevke od '{{user_name}}'"
msgid "To follow requests made using {{site_name}} to the public authority '{{public_body_name}}'"
-msgstr ""
+msgstr "Da bi spremljali zahtevke za organ '{{public_body_name}}', narejene z uporabo {{site_name}}"
msgid "To follow the request '{{request_title}}'"
-msgstr ""
+msgstr "Da bi spremljali zahtevek '{{request_title}}'"
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 ""
+msgstr "Pomagajte nam vzdrževati stran pregledno, nekdo je posodobil status zahtevka {{law_used_full}} {{title}}, ki ste ga poslali {{public_body}} v \"{{display_status}}\". Če se s kategorizacijo ne strinjate, prosimo sami popravite status tako, da bo ustrezno."
msgid "To let everyone know, follow this link and then select the appropriate box."
-msgstr ""
+msgstr "Da bi obvestili vse, kliknite na to povezavo in izberite ustrezne okvirje."
msgid "To log into the administrative interface"
-msgstr ""
+msgstr "Da se prijavite v administrativni vmesnik"
msgid "To play the request categorisation game"
-msgstr ""
+msgstr "Za igranje igre razvrščanja zahtevkov"
msgid "To post your annotation"
-msgstr ""
+msgstr "Da objavite vaš zaznamek"
msgid "To reply to "
-msgstr ""
+msgstr "Za odgovor na"
msgid "To report this request"
-msgstr ""
+msgstr "Da prijavite ta zahtevek"
msgid "To send a follow up message to "
-msgstr ""
+msgstr "Da pošljete odziv na "
msgid "To send a message to "
-msgstr ""
+msgstr "Da pošljete sporočilo "
msgid "To send your FOI request"
-msgstr ""
+msgstr "Da pošljete zahtevek za IJZ"
msgid "To update the status of this FOI request"
-msgstr ""
+msgstr "Da posodobite status tega zahtevka za IJZ"
msgid "To upload a response, you must be logged in using an email address from "
-msgstr ""
+msgstr "Da naložite odgovor morate biti prijavljeni z e-pošto "
msgid "To use the advanced search, combine phrases and labels as described in the search tips below."
-msgstr ""
+msgstr "Da uporabite napredno iskanje, združite fraze in označbe kot je opisano v namigih spodaj."
msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words."
-msgstr ""
+msgstr "Da bi videli e-poštni naslov, ki ga uporabljamo za pošiljanje zahtevkov za IJZ na {{public_body_name}}, prosimo vnesite te besede."
msgid "To view the response, click on the link below."
-msgstr ""
+msgstr "Da bi videli odgovor, kliknite na povezavo spodaj."
msgid "To {{public_body_link_absolute}}"
-msgstr ""
+msgstr "Za {{public_body_link_absolute}}"
msgid "To:"
-msgstr ""
+msgstr "Za:"
msgid "Today"
-msgstr ""
+msgstr "Danes"
msgid "Too many requests"
-msgstr ""
+msgstr "Preveč zahtevkov"
msgid "Top search results:"
-msgstr ""
+msgstr "Najboljši rezultati iskanja:"
msgid "Track thing"
-msgstr ""
+msgstr "Spremljaj predmet"
msgid "Track this person"
-msgstr ""
+msgstr "Obveščaj me o tej osebi"
msgid "Track this search"
-msgstr ""
+msgstr "Obveščaj me o tem iskanju"
msgid "TrackThing|Track medium"
-msgstr ""
+msgstr "TrackThing|Track medium"
msgid "TrackThing|Track query"
-msgstr ""
+msgstr "TrackThing|Track query"
msgid "TrackThing|Track type"
-msgstr ""
+msgstr "TrackThing|Track type"
msgid "Turn off email alerts"
-msgstr ""
+msgstr "Izklopi obveščanje po e-pošti"
msgid "Tweet this request"
-msgstr ""
+msgstr "Tvitni ta zahtevek"
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 ""
+msgstr "Napišite <strong><code>01/01/2008..14/01/2008</code></strong> da prikažete le stvari, ki so se zgodile v prvih dveh tednih januarja."
msgid "URL name can't be blank"
-msgstr ""
+msgstr "Ime za v URL ne more biti prazno"
msgid "Unable to change email address on {{site_name}}"
-msgstr ""
+msgstr "E-poštnega naslova na {{site_name}} ni bilo možno spremeniti"
msgid "Unable to send a reply to {{username}}"
-msgstr ""
+msgstr "Ni bilo možno poslati odgovora osebi {{username}}"
msgid "Unable to send follow up message to {{username}}"
-msgstr ""
+msgstr "Ni bilo možno poslati odziva osebi {{username}}"
msgid "Unexpected search result type"
-msgstr ""
+msgstr "Nepričakovan tip rezultata pri iskanju"
msgid "Unexpected search result type "
-msgstr ""
+msgstr "Nepričakovan tip rezultata pri iskanju"
msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out."
-msgstr ""
+msgstr "Žal ne poznamo e-poštnega naslova od tega organa, zato tega ne moremo preveriti. Prosimo, <a href=\"{{url}}\">kontaktirajte nas</a>, da to rešimo."
msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for"
-msgstr ""
+msgstr "Žal v bazi nimamo veljavnega naslova za zahtevke {{info_request_law_used_full}} za "
msgid "Unknown"
-msgstr ""
+msgstr "Neznano"
msgid "Unsubscribe"
-msgstr ""
+msgstr "Ne spremljaj več"
msgid "Unusual response."
-msgstr ""
+msgstr "Neobičajen odgovor."
msgid "Update the status of this request"
-msgstr ""
+msgstr "Posodobite stanje tega zahtevka"
msgid "Update the status of your request to "
-msgstr ""
+msgstr "Posodobite stanje vašega zahtevka za"
msgid "Upload FOI response"
-msgstr ""
+msgstr "Naloži odgovor na zahtevek IJZ"
msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
-msgstr ""
+msgstr "Uporabite OR (z velikimi črkami), če lahko ustreza katerakoli beseda, npr. <strong><code>zbor OR svet</code></strong>"
msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Liverpool City Council\"</code></strong>"
-msgstr ""
+msgstr "Uporabite narekovaje, kadar želite poiskati natančne besedne zveze, npr. <strong><code>\"Mestna občina Ljubljana\"</code></strong>"
msgid "User"
-msgstr ""
+msgstr "Uporabni"
msgid "User info request sent alert"
-msgstr ""
+msgstr "Poslano opozorilo o uporabnikovemu zahtevku"
msgid "User – {{name}}"
-msgstr ""
+msgstr "User - {{name}}"
msgid "UserInfoRequestSentAlert|Alert type"
-msgstr ""
+msgstr "UserInfoRequestSentAlert|Alert type"
msgid "User|About me"
-msgstr ""
+msgstr "User|About me"
msgid "User|Address"
-msgstr ""
+msgstr "User|Naslov"
msgid "User|Admin level"
-msgstr ""
+msgstr "User|Admin level"
msgid "User|Ban text"
-msgstr ""
+msgstr "User|Ban text"
msgid "User|Dob"
-msgstr ""
+msgstr "User|Rojstni dan"
msgid "User|Email"
-msgstr ""
+msgstr "User|Email"
msgid "User|Email bounce message"
-msgstr ""
+msgstr "User|Email bounce message"
msgid "User|Email bounced at"
-msgstr ""
+msgstr "User|Email bounced at"
msgid "User|Email confirmed"
-msgstr ""
+msgstr "User|Email confirmed"
msgid "User|Hashed password"
-msgstr ""
+msgstr "User|Hashed password"
msgid "User|Last daily track email"
-msgstr ""
+msgstr "User|Last daily track email"
msgid "User|Locale"
-msgstr ""
+msgstr "User|Locale"
msgid "User|Name"
-msgstr ""
+msgstr "User|Name"
msgid "User|No limit"
-msgstr ""
+msgstr "User|No limit"
msgid "User|Receive email alerts"
-msgstr ""
+msgstr "User|Prejemanje epoštnih opozoril"
msgid "User|Salt"
-msgstr ""
+msgstr "User|Salt"
msgid "User|Url name"
-msgstr ""
+msgstr "User|Url name"
msgid "Version {{version}}"
-msgstr ""
+msgstr "Različica {{version}}"
msgid "View FOI email address"
-msgstr ""
+msgstr "Preglejte e-poštni naslov za zahtevke za IJZ"
msgid "View FOI email address for '{{public_body_name}}'"
-msgstr ""
+msgstr "Poglejte e-poštni naslov za zahtevke za IJZ za '{{public_body_name}}'"
msgid "View FOI email address for {{public_body_name}}"
-msgstr ""
+msgstr "Poglejte e-poštni naslov za zahtevke za IJZ za {{public_body_name}}"
msgid "View Freedom of Information requests made by {{user_name}}:"
-msgstr ""
+msgstr "Poglejte zahtevke za informacije javnega značaja, ki jih je naredil {{user_name}}:"
msgid "View and search requests"
-msgstr ""
+msgstr "Preglejte in iščite po zahtevkih"
msgid "View authorities"
-msgstr ""
+msgstr "Poglejte organe"
msgid "View email"
-msgstr ""
+msgstr "Poglejte e-poštni naslov"
msgid "View requests"
-msgstr ""
+msgstr "Poglejte zahtevke"
msgid "Waiting clarification."
-msgstr ""
+msgstr "Čaka pojasnilo."
msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request."
-msgstr ""
+msgstr "Čaka na <strong>interno revizijo</strong> s strani {{public_body_link}}."
msgid "Waiting for the public authority to complete an internal review of their handling of the request"
-msgstr ""
+msgstr "Čaka na javni organ, da konča interno revizijo obravnavanja tega zahtevka."
msgid "Waiting for the public authority to reply"
-msgstr ""
+msgstr "Čaka javni organ na odgovor"
msgid "Was the response you got to your FOI request any good?"
-msgstr ""
+msgstr "Ali je bil odgovor, ki ste ga prejeli na zahtevek za IJZ, uporaben?"
msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
-msgstr ""
+msgstr "Smatramo, da to ni veljaven zahtevek za IJZ, zato je bil zahtevek skrit."
msgid "We consider it to be vexatious, and have therefore hidden it from other users."
-msgstr ""
+msgstr "Zahtevek je provokacija, zato je bil skrit."
msgid "We do not have a working request email address for this authority."
-msgstr ""
+msgstr "Nimamo deluječga e-poštnega naslova za ta javni organ."
msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}."
-msgstr ""
+msgstr "Nimamo delujočega e-poštnega naslova za {{law_used_full}} zahtevke za {{public_body_name}}. "
msgid "We don't know whether the most recent response to this request contains\\n information or not\\n &ndash;\\n\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know."
-msgstr ""
+msgstr "Ne vemo če najnovejši odgovor na ta zahtevek vsebuje zahtevane infromacije ali ne &ndash; če ste {{user_link}}, se prosimo <a href=\"{{url}}\">prijavite</a> in označite enkrat za vselej."
msgid "We will not reveal your email address to anybody unless you or\\n the law tell us to (<a href=\"{{url}}\">details</a>). "
-msgstr ""
+msgstr "Vašega e-poštnega naslova ne bomo razkrivali nikomur brez vaše privolitve ali naloga (<a href=\"{{url}}\">podrobnosti</a>)."
msgid "We will not reveal your email address to anybody unless you\\nor the law tell us to."
-msgstr ""
+msgstr "Vašega e-poštnega naslova ne bomo razkrivali nikomur brez vaše privolitve ali naloga."
msgid "We will not reveal your email addresses to anybody unless you\\nor the law tell us to."
-msgstr ""
+msgstr "Vaših e-poštnih naslovov ne bomo razkrivali nikomur brez vaše privolitve ali naloga."
msgid "We're waiting for"
-msgstr ""
+msgstr "Čakamo na"
msgid "We're waiting for someone to read"
-msgstr ""
+msgstr "Čakamo nekoga, da prebere"
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 ""
+msgstr "Poslali smo vam e-pošto na vaš nov naslov. Klikniti boste morali na povezavo v njej, da sprememba e-poštnega naslova stopi v veljavo."
msgid "We've sent you an email, and you'll need to click the link in it before you can\\ncontinue."
-msgstr ""
+msgstr "Poslali smo vam e-pošto, v kateri je povezava, ki jo morate klikniti, preden lahko nadaljujete."
msgid "We've sent you an email, click the link in it, then you can change your password."
-msgstr ""
+msgstr "Poslali smo vam e-pošto, kliknite na povezavo v njej, da spremenite vaše geslo."
msgid "What are you doing?"
-msgstr ""
+msgstr "Kaj delate?"
msgid "What best describes the status of this request now?"
-msgstr ""
+msgstr "Kaj najbolje opiše trenutno stanje tega zahtevka?"
msgid "What information has been released?"
-msgstr ""
+msgstr "Katere informacije so bile prejete?"
msgid "What information has been requested?"
-msgstr ""
+msgstr "Katere informacije so bile zahtevane?"
msgid "When you get there, please update the status to say if the response \\ncontains any useful information."
-msgstr ""
+msgstr "Ko pridete do tega, prosimo posodobite status, da bo odražal, če odgovor vsebuje zahtevane informacije."
msgid "When you receive the paper response, please help\\n others find out what it says:"
-msgstr ""
+msgstr "Ko boste prejeli odgovor po pošti, prosimo povejte še ostalim kaj vsebuje:"
msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">reload this page</a> and file your new request."
-msgstr ""
+msgstr "Ko boste končali, <strong>se vrnite nazaj</strong>, <a href=\"{{url}}\">osvežite to stran</a> in ustvarite nov zahtevek."
msgid "Which of these is happening?"
-msgstr ""
+msgstr "Kaj od tega se dogaja?"
msgid "Who can I request information from?"
-msgstr ""
+msgstr "Od koga lahko zahtevam informacije?"
msgid "Withdrawn by the requester."
-msgstr ""
+msgstr "Prosilec je umaknil zahtevo."
msgid "Wk"
-msgstr ""
+msgstr "Teden"
msgid "Would you like to see a website like this in your country?"
-msgstr ""
+msgstr "Bi želeli videt spletno stran kakršna je ta v vaši državi?"
msgid "Write a reply"
-msgstr ""
+msgstr "Napišite odgovor"
msgid "Write a reply to "
-msgstr ""
+msgstr "Napišite odgovor"
msgid "Write your FOI follow up message to "
-msgstr ""
+msgstr "Napišite vaš odziv na"
msgid "Write your request in <strong>simple, precise language</strong>."
-msgstr ""
+msgstr "Zapišite vaš zahtevek v <strong>enostavnem in nedvoumnem jeziku</strong>."
msgid "You"
-msgstr ""
+msgstr "Vi"
msgid "You are already following new requests"
-msgstr ""
+msgstr "Že spremljate nove zahtevke"
msgid "You are already following requests to {{public_body_name}}"
-msgstr ""
+msgstr "Že spremljate zahtevke od '{{public_body_name}}'"
msgid "You are already following things matching this search"
-msgstr ""
+msgstr "Že spremljate predmete, ki ustrezajo temu iskanju"
msgid "You are already following this person"
-msgstr ""
+msgstr "Že spremljate to osebo"
msgid "You are already following this request"
-msgstr ""
+msgstr "Že spremljate ta zahtevek"
msgid "You are already following updates about {{track_description}}"
-msgstr ""
+msgstr "Že spremljate posodobitve o {{track_description}}"
msgid "You are currently receiving notification of new activity on your wall by email."
-msgstr ""
+msgstr "Trenutno preko e-pošte prejemate obvestila o novostih na vašem zidu"
msgid "You are following all new successful responses"
-msgstr ""
+msgstr "Spremljate vse nove uspešne zahtevke"
msgid "You are no longer following {{track_description}}."
-msgstr ""
+msgstr "Ne spremljate več {{track_description}}."
msgid "You are now <a href=\"{{wall_url_user}}\">following</a> updates about {{track_description}}"
-msgstr ""
+msgstr "Sedaj <a href=\"{{wall_url_user}}\">spremljate</a> novosti o {{track_description}}"
msgid "You can <strong>complain</strong> by"
-msgstr ""
+msgstr "<strong>Pritožite</strong> se lahko pri"
msgid "You can change the requests and users you are following on <a href=\"{{profile_url}}\">your profile page</a>."
-msgstr ""
+msgstr "Na <a href=\"{{profile_url}}\">vaši profilni strani</a> lahko spremenite zahtevke in uporabnike, ki jih spremljate."
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 ""
+msgstr "To stran lahko dobite tudi v strojno čitljivem zapisu v obliki JSON. Za podrobnosti si oglejte <a href=\"{{api_path}}\">dokumentacijo API vmesnika</a>."
msgid "You can only request information about the environment from this authority."
-msgstr ""
+msgstr "Od tega organa lahko zahtevate zgolj informacije o okolju."
msgid "You have a new response to the {{law_used_full}} request "
-msgstr ""
+msgstr "Na {{law_used_full}} zahtevek ste prejeli nov odgovor"
msgid "You have found a bug. Please <a href=\"{{contact_url}}\">contact us</a> to tell us about the problem"
-msgstr ""
+msgstr "Našli ste hrošča. Prosimo, <a href=\"{{contact_url}}\">stopite v stik z nami</a> da nas obvestite o težavi"
msgid "You have hit the rate limit on new requests. Users are ordinarily limited to {{max_requests_per_user_per_day}} requests in any rolling 24-hour period. You will be able to make another request in {{can_make_another_request}}."
-msgstr ""
+msgstr "Prišli ste do omejitve števila novih zahtevkov. Uporabniki so običajno omejeni na {{max_requests_per_user_per_day}} na 24 urno obdobje. Nov zahtevek boste lahko naredili v {{can_make_another_request}}."
msgid "You have made no Freedom of Information requests using this site."
-msgstr ""
+msgstr "Niste naredili še nobenega zahtevka za informacije javnega značaja z uporabo te strani."
msgid "You have now changed the text about you on your profile."
-msgstr ""
+msgstr "Spremenili ste vaš opis na profilni strani."
msgid "You have now changed your email address used on {{site_name}}"
-msgstr ""
+msgstr "Spremenili ste e-poštni naslov, ki ga uporabljate na {{site_name}}"
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 ""
+msgstr "Poskusili ste ustvariti nov račun na {{site_name}}, a ga že imate. Vaše ime in geslo je ostalo takšno, kot je bilo. Prosimo, kliknite na povezavo spodaj."
msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address."
-msgstr ""
+msgstr "Če veste kaj je povzročilo napako, lahko <strong>predlagate rešitev</strong>, na primer delujoč e-poštni naslov."
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 ""
+msgstr "<strong>Dodate lahko priponke.</strong> Če želite pripeti datoteko, ki je prevelika za pošiljanje po e-pošti, uporabite spodnji obrazec."
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=\"{{url}}\">send it to us</a>."
-msgstr ""
+msgstr "Morda ga lahko poiščete na njihovi spletni strani ali pa jih povprašate po telefonu. Če ga najdete, nam ga prosim <a href=\"{{help_url}}\">pošljite</a>."
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 ""
+msgstr "Morda ga lahko poiščete na njihovi spletni strani ali pa jih povprašate po telefonu. Če ga najdete, nam ga prosim <a href=\"{{help_url}}\">pošljite</a>."
msgid "You need to be logged in to change the text about you on your profile."
-msgstr ""
+msgstr "Za spremembo vašega opisa na profilu se morate prijaviti."
msgid "You need to be logged in to change your profile photo."
-msgstr ""
+msgstr "Za spremembo vaše profilne slike se morate prijaviti."
msgid "You need to be logged in to clear your profile photo."
-msgstr ""
+msgstr "Za umik vaše profilne slike se morate prijaviti."
msgid "You need to be logged in to edit your profile."
-msgstr ""
+msgstr "Za urejanje vašega profila morate biti prijavljeni."
msgid "You need to be logged in to report a request for administrator attention"
-msgstr ""
+msgstr "Da prijavite zahtevek administratorju, morate biti prijavljeni"
msgid "You previously submitted that exact follow up message for this request."
-msgstr ""
+msgstr "Enak odziv na ta zahtevek ste že poslali."
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 ""
+msgstr "Po e-pošti bi morali prejeti kopijo zahtevka, na katerega lahko <strong>enostavno odgovorite</strong> z e-pošto. Za pošiljanje lahko uporabite tudi ta naslov:"
msgid "You want to <strong>give your postal address</strong> to the authority in private."
-msgstr ""
+msgstr "Vaš <strong>naslov boste želeli povedati</strong> organu v zasebnem sporočilu."
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 ""
+msgstr "Ne boste mogli ustvarjati novih zahtevkov, odzivov in dodajati zaznamkov ali pošiljati sporočil drugim uporabnikom. Še vedno pa lahko pregledujete zahtevke in prejemate opozorila po e-pošti."
msgid "You will no longer be emailed updates for those alerts"
-msgstr ""
+msgstr "Ne boste več prejemali obvestil za ta opozorila"
msgid "You will now be emailed updates about {{track_description}}. <a href=\"{{change_email_alerts_url}}\">Prefer not to receive emails?</a>"
-msgstr ""
+msgstr "Sedaj boste prejemali posodobitve o {{track_description}}. <a href=\"{{change_email_alerts_url}}\">Ne želite prejemati te e-pošte?</a>"
msgid "You will only get an answer to your request if you follow up\\nwith the clarification."
-msgstr ""
+msgstr "Odgovor na vaš zahtevek boste prejeli le če odgovorite na zahtevo za pojasnilo."
msgid "You will still be able to view it while logged in to the site. Please reply to this email if you would like to discuss this decision further."
-msgstr ""
+msgstr "Še vedno ga boste lahko videl, kadar boste prijavljeni na strani. Če mislite, da to ni prav, prosimo, da odgovorite na to e-pošto in utemeljite zakaj."
msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>"
-msgstr ""
+msgstr "Prijavljeni ste. <a href=\"#\" id=\"send-request\">Nadaljujte s pošiljanjem vašega zahtevka</a>"
msgid "You're long overdue a response to your FOI request - "
-msgstr ""
+msgstr "Rok za vaš zahtevek IJZ je že potekel - "
msgid "You're not following anything."
-msgstr ""
+msgstr "Ne spremljate ničesar."
msgid "You've now cleared your profile photo"
-msgstr ""
+msgstr "Vaša profilna slika je sedaj odstranjena"
msgid "Your <strong>name will appear publicly</strong>\\n (<a href=\"{{why_url}}\">why?</a>)\\n on this website and in search engines. If you\\n are thinking of using a pseudonym, please\\n <a href=\"{{help_url}}\">read this first</a>."
-msgstr ""
+msgstr "Vaše <strong>ime bo prikazano javno</strong> na tej strani in v spletnih iskalnikih (<a href=\"{{why_url}}\">zakaj?</a>). Če razmišljate o rabi psevdonima, preberite najprej <a href=\"{{help_url}}\">to pojasnilo</a>."
msgid "Your annotations"
-msgstr ""
+msgstr "Vaši zaznamki"
msgid "Your details, including your email address, have not been given to anyone."
-msgstr ""
+msgstr "Vaši podatki, vključno z e-poštnim naslovom, se ne posredujejo."
msgid "Your e-mail:"
-msgstr ""
+msgstr "Vaš e-poštni naslov:"
msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message."
-msgstr ""
+msgstr "Vaš odziv ni bil poslan, ker je bil ta zahtevek ustavljen, da se prepreči nezaželena pošta. Prosimo, <a href=\"{{url}}\">stopite v stik</a>, če res želite poslati sporočilo."
msgid "Your follow up message has been sent on its way."
-msgstr ""
+msgstr "Vaš odziv je bil odposlan."
msgid "Your internal review request has been sent on its way."
-msgstr ""
+msgstr "Vaš zahtevek za interno revizijo je bil odposlan."
msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon."
-msgstr ""
+msgstr "Vaše sporočilo je bilo odposlano. Hvala, ker ste stopili v stik z nami! Odgovorili bomo v najkrajšem možnem času."
msgid "Your message to {{recipient_user_name}} has been sent"
-msgstr ""
+msgstr "Vaše sporočilo za {{recipient_user_name}} je bilo poslano"
msgid "Your message to {{recipient_user_name}} has been sent!"
-msgstr ""
+msgstr "Vaše sporočilu je bilo poslano {{recipient_user_name}}!"
msgid "Your message will appear in <strong>search engines</strong>"
-msgstr ""
+msgstr "Vaše sporočilo bo prikazano v <strong>rezultatih spletnih iskalnikov</strong>"
msgid "Your name and annotation will appear in <strong>search engines</strong>."
-msgstr ""
+msgstr "Vaše ime in zaznamek bo prikazan v <strong>rezultatih spletnih iskalnikov</strong>."
msgid "Your name, request and any responses will appear in <strong>search engines</strong>\\n (<a href=\"{{url}}\">details</a>)."
-msgstr ""
+msgstr "Vaše ime, zahtevek in odgovori bodo prikazani v <strong>spletnih iskalnikih</strong> (<a href=\"{{url}}\">podrobnosti</a>)."
msgid "Your name:"
-msgstr ""
+msgstr "Vaše ime:"
msgid "Your original message is attached."
-msgstr ""
+msgstr "Vaše izvirno sporočilo je v priponki."
msgid "Your password has been changed."
-msgstr ""
+msgstr "Vaše geslo je bilo spremenjeno."
msgid "Your password:"
-msgstr ""
+msgstr "Vaše geslo:"
msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n wherever you do something on {{site_name}}."
-msgstr ""
+msgstr "Vaša slika bo prikazana <strong>javno na internetu</strong>, kjerkoli naredite kaj na {{site_name}}."
msgid "Your request '{{request}}' at {{url}} has been reviewed by moderators."
-msgstr ""
+msgstr "Moderatorji so pregledali vaš zahtevek '{{request}}' na naslovu {{url}}."
msgid "Your request on {{site_name}} hidden"
-msgstr ""
+msgstr "Vaš skriti zahtevek na {{site_name}}"
msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
-msgstr ""
+msgstr "Vaš zahtevek je bil poimenovan {{info_request}}. Če boste razjasnili, če ste prejeli informacije, nam bo pomagalo vrednotiti"
msgid "Your request:"
-msgstr ""
+msgstr "Vaš zahtevek:"
msgid "Your response to an FOI request was not delivered"
-msgstr ""
+msgstr "Vaš odgovor na zahtevek za IJZ ni bil dostavljen"
msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
-msgstr ""
+msgstr "Vaš odgovor <strong>bo prikazan na internetu</strong>, <a href=\"{{url}}\">preberite si zakaj</a> in druge odgovore na vprašanje."
msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request."
-msgstr ""
+msgstr "Vaša priporočila glede tega kaj naj <strong>administratorji</strong> {{site_name}} storijo glede zahtevka."
msgid "Your {{count}} Freedom of Information request"
msgid_plural "Your {{count}} Freedom of Information requests"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Vaš {{count}} zahtevek za informacije javnega značaja"
+msgstr[1] "Vaša {{count}} zahtevka za informacije javnega značaja"
+msgstr[2] "Vaši {{count}} zahtevki za informacije javnega značaja"
+msgstr[3] "Vaših {{count}} zahtevkov za informacije javnega značaja"
msgid "Your {{count}} annotation"
msgid_plural "Your {{count}} annotations"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Vaš {{count}} zaznamek"
+msgstr[1] "Vaša {{count}} zaznamka"
+msgstr[2] "Vaši {{count}} zaznamki"
+msgstr[3] "Vaših {{count}} zaznamkov"
msgid "Your {{site_name}} email alert"
-msgstr ""
+msgstr "Vaša {{site_name}} opozorila"
msgid "Yours faithfully,"
-msgstr ""
+msgstr "S spoštovanjem,"
msgid "Yours sincerely,"
-msgstr ""
+msgstr "S spoštovanjem,"
msgid "Yours,"
-msgstr ""
+msgstr "S spoštovanjem,"
msgid "[FOI #{{request}} email]"
-msgstr ""
+msgstr "[IJZ epošta #{{request}}]"
msgid "[{{public_body}} request email]"
-msgstr ""
+msgstr "[epošta zahtevkov {{public_body}}]"
msgid "[{{site_name}} contact email]"
-msgstr ""
+msgstr "[{{site_name}} kontaktna epošta]"
msgid "\\n\\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]"
msgstr ""
+"\n"
+"\n"
+"[ {{site_name}} note: Zgornje besedilo je bilo zapisano v napačnem kodnem zapisu, zato so bili okvarjeni znaki odstranjeni. ]"
msgid "a one line summary of the information you are requesting, \\n\t\t\te.g."
-msgstr ""
+msgstr "povzetek informacij, ki jih zahtevate, v eni vrstici, \\n npr."
msgid "admin"
-msgstr ""
+msgstr "admin"
msgid "alaveteli_foi:The software that runs {{site_name}}"
-msgstr ""
+msgstr "alateveli_foi:Programska oprema, ki poganja {{site_name}}"
msgid "all requests"
-msgstr ""
+msgstr "vsi zahtevki"
msgid "also called {{public_body_short_name}}"
-msgstr ""
+msgstr "znan tudi kot {{public_body_short_name}}"
msgid "an anonymous user"
-msgstr ""
+msgstr "anonimni uporabni"
msgid "and"
-msgstr ""
+msgstr "in"
msgid "and update the status accordingly. Perhaps <strong>you</strong> might like to help out by doing that?"
-msgstr ""
+msgstr "in ustrezno posodobite status. Morda bi to pomagali narediti <strong>vi</strong>?"
msgid "and update the status."
-msgstr ""
+msgstr "in posodobite status."
msgid "and we'll suggest <strong>what to do next</strong>"
-msgstr ""
+msgstr "in mi vam bomo svetovali <strong>kaj lahko storite naprej</strong>"
msgid "any <a href=\"/list\">new requests</a>"
-msgstr ""
+msgstr "kak <a href=\"/list\">nov zahtevek</a>"
msgid "any <a href=\"/list/successful\">successful requests</a>"
-msgstr ""
+msgstr "kak <a href=\"/list/successful\">uspešen zahtevek</a>"
msgid "anything"
-msgstr ""
+msgstr "karkoli"
msgid "are long overdue."
-msgstr ""
+msgstr "je rok že potekel."
msgid "at"
-msgstr ""
+msgstr "pri"
msgid "authorities"
-msgstr ""
+msgstr "organi"
msgid "awaiting a response"
-msgstr ""
+msgstr "čaka na odgovor"
msgid "beginning with ‘{{first_letter}}’"
-msgstr ""
+msgstr "se začne z '{{first_letter}}'"
msgid "between two dates"
-msgstr ""
+msgstr "med datumoma"
msgid "but followupable"
-msgstr ""
+msgstr "lahko spremljate"
msgid "by"
-msgstr ""
+msgstr "od"
msgid "by <strong>{{date}}</strong>"
-msgstr ""
+msgstr "od <strong>{{date}}</strong>"
msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}."
-msgstr ""
+msgstr "od {{public_body_name}} za {{info_request_user}} dne {{date}}."
msgid "by {{user_link_absolute}}"
-msgstr ""
+msgstr "od {{user_link_absolute}}"
msgid "comments"
-msgstr ""
+msgstr "komentarji"
msgid "containing your postal address, and asking them to reply to this request.\\n Or you could phone them."
-msgstr ""
+msgstr "z vašim poštnim naslovom, ter jih prosite, da vam odgovorijo na ta zahtevek.\\n Lahko jih tudi pokličete."
msgid "details"
-msgstr ""
+msgstr "podrobnosti"
msgid "display_status only works for incoming and outgoing messages right now"
-msgstr ""
+msgstr "display_status trenutno deluje le za dohodna in odhodna sporočila"
msgid "during term time"
-msgstr ""
+msgstr "med obdobjem"
msgid "edit text about you"
-msgstr ""
+msgstr "uredi vaš opis"
msgid "even during holidays"
-msgstr ""
+msgstr "tudi ob praznikih"
msgid "everything"
-msgstr ""
+msgstr "vse"
msgid "external"
-msgstr ""
+msgstr "eksterni"
msgid "has reported an"
-msgstr ""
+msgstr "je poročal o"
msgid "have delayed."
-msgstr ""
+msgstr "so zakasnjene."
msgid "hide quoted sections"
-msgstr ""
+msgstr "skrij citirane odseke"
msgid "in term time"
-msgstr ""
+msgstr "v obdobju"
msgid "in the category ‘{{category_name}}’"
-msgstr ""
+msgstr "v kategoriji '{{category_name}}'"
msgid "internal error"
-msgstr ""
+msgstr "interna napaka"
msgid "internal reviews"
-msgstr ""
+msgstr "interne revizije"
msgid "is <strong>waiting for your clarification</strong>."
-msgstr ""
+msgstr "<strong>čaka na vaša pojasnila</strong>."
msgid "just to see how it works"
-msgstr ""
+msgstr "da vidite kako deluje"
msgid "left an annotation"
-msgstr ""
+msgstr "je dodal zaznamek"
msgid "made."
-msgstr ""
+msgstr "narejeno."
msgid "matching the tag ‘{{tag_name}}’"
-msgstr ""
+msgstr "ki ustreza znački '{{tag_name}}'"
msgid "messages from authorities"
-msgstr ""
+msgstr "sporočila od organov"
msgid "messages from users"
-msgstr ""
+msgstr "sporočila od uporabnikov"
msgid "move..."
-msgstr ""
+msgstr "premakni..."
msgid "no later than"
-msgstr ""
+msgstr "najkasneje do "
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=\"{{url}}\">send it to us</a>."
-msgstr ""
+msgstr "Poskusite odgovoriti na konkretno sporočilo na strani zahtevka, namesto pošiljanja splošnega odgovora. Če poznate e-poštni naslov za splošni kontakt, <a href=\"{{url}}\">nam ga prosimo posredujte</a>."
msgid "normally"
-msgstr ""
+msgstr "normalno"
msgid "not requestable due to: {{reason}}"
-msgstr ""
+msgstr "ni možno zahtevati zaradi: {{reason}}"
msgid "please sign in as "
-msgstr ""
+msgstr "prosimo, prijavite se kot "
msgid "requesting an internal review"
-msgstr ""
+msgstr "zahteva interno revizijo"
msgid "requests"
-msgstr ""
+msgstr "zahtevk"
msgid "requests which are {{list_of_statuses}}"
-msgstr ""
+msgstr "zahtevki, ki so {{list_of_statuses}}"
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 ""
+msgstr "odgovor, da potrebuje ukrepanje administratorjev. Poglejte in odgovorite na to e-pošto ter jim sporočite kaj boste storili."
msgid "send a follow up message"
-msgstr ""
+msgstr "odzovite se na sporočilo"
msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
-msgstr ""
+msgstr "{{info_request_user}} poslal {{public_body_name}} dne {{date}}."
msgid "set to <strong>blank</strong> (empty string) if can't find an address; these emails are <strong>public</strong> as anyone can view with a CAPTCHA"
-msgstr ""
+msgstr "pustite <strong>prazno</strong> (brez vnosa), če e-poštnega naslova ne najdete; ti naslovi so <strong>javno objavljeni</strong> in skrit zgolj za CAPTCHA"
msgid "show quoted sections"
-msgstr ""
+msgstr "prikaži citirane odseke"
msgid "sign in"
-msgstr ""
+msgstr "prijava"
msgid "simple_date_format"
-msgstr ""
+msgstr "simple_date_format"
msgid "successful"
-msgstr ""
+msgstr "uspešno"
msgid "successful requests"
-msgstr ""
+msgstr "uspešni zahtevk"
msgid "that you made to"
-msgstr ""
+msgstr "ki ste jih naredili na"
msgid "the main FOI contact address for {{public_body}}"
-msgstr ""
+msgstr "glavni e-poštni naslov za zahtevke za IJZ za {{public_body}}"
#. This phrase completes the following sentences:
#. Request an internal review from...
@@ -3255,179 +3259,179 @@ msgstr ""
#. Send a public reply to...
#. Don't want to address your message to... ?
msgid "the main FOI contact at {{public_body}}"
-msgstr ""
+msgstr "glavni naslov za zahtevke za IJZ za {{public_body}}"
msgid "the requester"
-msgstr ""
+msgstr "prosilec"
msgid "the {{site_name}} team"
-msgstr ""
+msgstr "ekipa {{site_name}}"
msgid "to read"
-msgstr ""
+msgstr "za branje"
msgid "to send a follow up message."
-msgstr ""
+msgstr "da pošljete odziv"
msgid "to {{public_body}}"
-msgstr ""
+msgstr "za {{public_body}}"
msgid "unexpected prominence on request event"
-msgstr ""
+msgstr "nepričakovana pozornost za zahtevek"
msgid "unknown reason "
-msgstr ""
+msgstr "neznan razlog"
msgid "unknown status "
-msgstr ""
+msgstr "neznan status"
msgid "unresolved requests"
-msgstr ""
+msgstr "nerešeni zahtevki"
msgid "unsubscribe"
-msgstr ""
+msgstr "odjavi"
msgid "unsubscribe all"
-msgstr ""
+msgstr "odjavi vse"
msgid "unsuccessful"
-msgstr ""
+msgstr "neuspešno"
msgid "unsuccessful requests"
-msgstr ""
+msgstr "neuspešni zahtevki"
msgid "useful information."
-msgstr ""
+msgstr "uporabne informacije."
msgid "users"
-msgstr ""
+msgstr "uporabniki"
msgid "what's that?"
-msgstr ""
+msgstr "kaj je to?"
msgid "{{count}} FOI requests found"
-msgstr ""
+msgstr "najdenih {{count}} zahtevkov IJZ"
msgid "{{count}} Freedom of Information request to {{public_body_name}}"
msgid_plural "{{count}} Freedom of Information requests to {{public_body_name}}"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} zahtevek za informacije javnega značaja za {{public_body_name}}"
+msgstr[1] "{{count}} zahtevka za informacije javnega značaja za {{public_body_name}}"
+msgstr[2] "{{count}} zahtevki za informacije javnega značaja za {{public_body_name}}"
+msgstr[3] "{{count}} zahtevkov za informacije javnega značaja za {{public_body_name}}"
msgid "{{count}} person is following this authority"
msgid_plural "{{count}} people are following this authority"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} spremlja ta organ"
+msgstr[1] "{{count}} spremljata ta organ"
+msgstr[2] "{{count}} spremljajo ta organ"
+msgstr[3] "{{count}} spremlja ta organ"
msgid "{{count}} request"
msgid_plural "{{count}} requests"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} zahtevek"
+msgstr[1] "{{count}} zahtevka"
+msgstr[2] "{{count}} zahtevki"
+msgstr[3] "{{count}} zahtevkov"
msgid "{{count}} request made."
msgid_plural "{{count}} requests made."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{{count}} narejen zahtevek"
+msgstr[1] "{{count}} narejena zahtevka"
+msgstr[2] "{{count}} narejeni zahtevki"
+msgstr[3] "{{count}} narejenih zahtevkov"
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 ""
+msgstr "{{existing_request_user}} je že ustvaril enak zahtevek dne {{date}}. Lahko si ogledate <a href=\"{{existing_request}}\">že obstoječi zahtevek</a>,\\n ali nadaljujete z urejanjem da naredite nov podoben zahtevek."
msgid "{{info_request_user_name}} only:"
-msgstr ""
+msgstr "{{info_request_user_name}} le:"
msgid "{{law_used_full}} request - {{title}}"
-msgstr ""
+msgstr "zahtevek za {{law_used_full}} - {{title}}"
msgid "{{law_used_full}} request GQ - {{title}}"
-msgstr ""
+msgstr "zahtevek {{law_used_full}} GQ? - {{title}}"
msgid "{{law_used}} requests at {{public_body}}"
-msgstr ""
+msgstr "zahtevki {{law_used}} za {{public_body}}"
msgid "{{length_of_time}} ago"
-msgstr ""
+msgstr "pred {{length_of_time}}"
msgid "{{list_of_things}} matching text '{{search_query}}'"
-msgstr ""
+msgstr "{{list_of_things}}, ki ustrezajo '{{search_query}}'"
msgid "{{number_of_comments}} comments"
-msgstr ""
+msgstr "{{number_of_comments}} komentarjev"
msgid "{{public_body_link}} answered a request about"
-msgstr ""
+msgstr "{{public_body_link}} je odgovoril na zahtevek o"
msgid "{{public_body_link}} was sent a request about"
-msgstr ""
+msgstr "Na {{public_body_link}} je bil poslan zahtevek o"
msgid "{{public_body_name}} only:"
-msgstr ""
+msgstr "zgolj {{public_body_name}}:"
msgid "{{public_body}} has asked you to explain part of your {{law_used}} request."
-msgstr ""
+msgstr "Organ {{public_body}} naproša, da pojasnite dele vašega zahtevka {{law_used}}."
msgid "{{public_body}} sent a response to {{user_name}}"
-msgstr ""
+msgstr "Organ {{public_body}} je odgovoril {{user_name}}"
msgid "{{reason}}, please sign in or make a new account."
-msgstr ""
+msgstr "{{reason}}, prosimo prijavite se ali ustvarite nov račun."
msgid "{{search_results}} matching '{{query}}'"
-msgstr ""
+msgstr "{{search_results}}, ki ustrezajo '{{query}}'"
msgid "{{site_name}} blog and tweets"
-msgstr ""
+msgstr "{{site_name}} blog in tviti"
msgid "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:"
-msgstr ""
+msgstr "{{site_name}} pokriva zahtevke za {{number_of_authorities}} organov, med drugim tudi:"
msgid "{{site_name}} sends new requests to <strong>{{request_email}}</strong> for this authority."
-msgstr ""
+msgstr "{{site_name}} pošilja nove zahtevke za ta organ na <strong>{{request_email}}</strong>."
msgid "{{site_name}} users have made {{number_of_requests}} requests, including:"
-msgstr ""
+msgstr "uporabniki {{site_name}} so ustvarili {{number_of_requests}} zahtevkov, med drugim tudi:"
msgid "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code>{{to_value}}</code>"
-msgstr ""
+msgstr "{{thing_changed}} je bilo spremenjeno iz <code>{{from_value}}</code> v <code>{{to_value}}</code>"
msgid "{{title}} - a Freedom of Information request to {{public_body}}"
-msgstr ""
+msgstr "{{title}} - zahtevek za IJZ za {{public_body}}"
msgid "{{user_name}} (Account suspended)"
-msgstr ""
+msgstr "{{user_name}} (Račun zamrznjen)"
msgid "{{user_name}} - Freedom of Information requests"
-msgstr ""
+msgstr "{{user_name}} - Zahtevki za informacije javnega značaja"
msgid "{{user_name}} - user profile"
-msgstr ""
+msgstr "{{user_name}} - profil"
msgid "{{user_name}} added an annotation"
-msgstr ""
+msgstr "{{user_name}} je dodal zaznamek"
msgid "{{user_name}} has annotated your {{law_used_short}} \\nrequest. Follow this link to see what they wrote."
-msgstr ""
+msgstr "{{user_name}} je dodal zaznamek na vaš zahtevek za {{law_used_short}}.\\n Sledite tej povezavi, da vidite kaj je napisal."
msgid "{{user_name}} has used {{site_name}} to send you the message below."
-msgstr ""
+msgstr "{{user_name}} je uporabil {{site_name}}, da vam je poslal spodnje sporočilo."
msgid "{{user_name}} sent a follow up message to {{public_body}}"
-msgstr ""
+msgstr "{{user_name}} je poslal odziv na sporočilo za {{public_body}}"
msgid "{{user_name}} sent a request to {{public_body}}"
-msgstr ""
+msgstr "{{user_name}} je poslal zahtevek za {{public_body}}"
msgid "{{username}} left an annotation:"
-msgstr ""
+msgstr "{{username}} je dodal zaznamek:"
msgid "{{user}} ({{user_admin_link}}) 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 ""
+msgstr "{{user}} ({{user_admin_link}}) je ustvaril ta zahtevek {{law_used_full}} (<a href=\"{{request_admin_url}}\">admin</a>) za {{public_body_link}} (<a href=\"{{public_body_admin_url}}\">admin</a>)"
msgid "{{user}} made this {{law_used_full}} request"
-msgstr ""
+msgstr "{{user}} je naredil zahtevek {{law_used_full}}"
diff --git a/locale/vi/app.po b/locale/vi/app.po
new file mode 100644
index 000000000..2f60838b1
--- /dev/null
+++ b/locale/vi/app.po
@@ -0,0 +1,3401 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# ppanhh <ppanhh@gmail.com>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: alaveteli\n"
+"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n"
+"POT-Creation-Date: 2013-06-24 09:40-0700\n"
+"PO-Revision-Date: 2013-07-08 17:52+0000\n"
+"Last-Translator: ppanhh <ppanhh@gmail.com>\n"
+"Language-Team: Vietnamese (http://www.transifex.com/projects/p/alaveteli/language/vi/)\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+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 ""
+
+msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">moderation policy</a>)"
+msgstr ""
+
+msgid " (<strong>patience</strong>, especially for large files, it may take a while!)"
+msgstr " (<strong>kiên nhẫn</strong>, đặc biệt đối với các tập tin lớn, sẽ tốn kha khá thời gian!)"
+
+msgid " (you)"
+msgstr " (bạn)"
+
+msgid " - view and make Freedom of Information requests"
+msgstr " - xem và tạo các yêu cầu về Tự Do Thông Tin"
+
+msgid " - wall"
+msgstr ""
+
+msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password."
+msgstr ""
+
+msgid " <strong>Privacy note:</strong> Your email address will be given to"
+msgstr " <strong>Ghi chú về quyền riêng tư:</strong> Địa chỉ email của bạn phải được chuyển đến"
+
+msgid " <strong>Summarise</strong> the content of any information returned. "
+msgstr " <strong>Tóm tắt</strong> nội dung của bất kỳ thông tin nào được trả về. "
+
+msgid " Advise on how to <strong>best clarify</strong> the request."
+msgstr " Quảng cáo về cách <strong>xác định rõ ràng nhất</strong> đối với yêu cầu."
+
+msgid " Ideas on what <strong>other documents to request</strong> which the authority may hold. "
+msgstr ""
+
+msgid " If you know the address to use, then please <a href=\"{{url}}\">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 ""
+
+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 ""
+
+msgid " Link to the information requested, if it is <strong>already available</strong> on the Internet. "
+msgstr ""
+
+msgid " Offer better ways of <strong>wording the request</strong> to get the information. "
+msgstr ""
+
+msgid " Say how you've <strong>used the information</strong>, with links if possible."
+msgstr ""
+
+msgid " Suggest <strong>where else</strong> the requester might find the information. "
+msgstr ""
+
+msgid " What are you investigating using Freedom of Information? "
+msgstr ""
+
+msgid " You are already being emailed updates about the request."
+msgstr ""
+
+msgid " You will also be emailed updates about the request."
+msgstr ""
+
+msgid " made by "
+msgstr ""
+
+msgid " or "
+msgstr ""
+
+msgid " when you send this message."
+msgstr ""
+
+msgid "\"Hello! We have an <a href=\\\"/help/alaveteli?country_name=#{CGI.escape(current_country)}\\\">important message</a> for visitors outside {{country_name}}\""
+msgstr ""
+
+msgid "'Crime statistics by ward level for Wales'"
+msgstr ""
+
+msgid "'Pollution levels over time for the River Tyne'"
+msgstr ""
+
+msgid "'{{link_to_authority}}', a public authority"
+msgstr ""
+
+msgid "'{{link_to_request}}', a request"
+msgstr ""
+
+msgid "'{{link_to_user}}', a person"
+msgstr ""
+
+msgid "*unknown*"
+msgstr ""
+
+msgid ",\\n\\n\\n\\nYours,\\n\\n{{user_name}}"
+msgstr ""
+
+msgid "- or -"
+msgstr ""
+
+msgid "1. Select an authority"
+msgstr ""
+
+msgid "2. Ask for Information"
+msgstr ""
+
+msgid "3. Now check your request"
+msgstr ""
+
+msgid "<a href=\"{{browse_url}}\">Browse all</a> or <a href=\"{{add_url}}\">ask us to add one</a>."
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Add an annotation</a> (to help the requester or others)"
+msgstr ""
+
+msgid "<a href=\"{{url}}\">Sign in</a> to change password, subscriptions and more ({{user_name}} only)"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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>"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "<p>We're glad you got some of the information that you wanted.</p><p>If you want to try and get the rest of the information, here's what to do now.</p>"
+msgstr ""
+
+msgid "<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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=\"{{url}}\">details</a>).</p>"
+msgstr ""
+
+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 ""
+
+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 {{late_number_of_days}} 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 ""
+
+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 ""
+
+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 ""
+
+msgid "<strong> Can I request information about myself?</strong>\\n\t\t\t<a href=\"{{url}}\">No! (Click here for details)</a>"
+msgstr ""
+
+msgid "<strong><code>commented_by:tony_bowden</code></strong> to search annotations made by Tony Bowden, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>filetype:pdf</code></strong> to find all responses with PDF attachments. Or try these: <code>{{list_of_file_extensions}}</code>"
+msgstr ""
+
+msgid "<strong><code>request:</code></strong> to restrict to a specific request, typing the title as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_by:julian_todd</code></strong> to search requests made by Julian Todd, typing the name as in the URL."
+msgstr ""
+
+msgid "<strong><code>requested_from:home_office</code></strong> to search requests from the Home Office, typing the name as in the URL."
+msgstr ""
+
+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 ""
+
+msgid "<strong><code>tag:charity</code></strong> to find all public authorities 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 ""
+
+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 ""
+
+msgid "<strong>Advice</strong> on how to get a response that will satisfy the requester. </li>"
+msgstr ""
+
+msgid "<strong>All the information</strong> has been sent"
+msgstr ""
+
+msgid "<strong>Anything else</strong>, such as clarifying, prompting, thanking"
+msgstr ""
+
+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 ""
+
+msgid "<strong>Clarification</strong> has been requested"
+msgstr ""
+
+msgid "<strong>No response</strong> has been received\\n <small>(maybe there's just an acknowledgement)</small>"
+msgstr ""
+
+msgid "<strong>Note:</strong> Because we're testing, requests are being sent to {{email}} rather than to the actual authority."
+msgstr ""
+
+msgid "<strong>Note:</strong> You're sending a message to yourself, presumably\\n to try out how it works."
+msgstr ""
+
+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 ""
+
+msgid "<strong>Privacy note:</strong> If you want to request private information about\\n yourself then <a href=\"{{url}}\">click here</a>."
+msgstr ""
+
+msgid "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "<strong>Privacy warning:</strong> Your message, and any response\\n to it, will be displayed publicly on this website."
+msgstr ""
+
+msgid "<strong>Some of the information</strong> has been sent "
+msgstr ""
+
+msgid "<strong>Thank</strong> the public authority or "
+msgstr ""
+
+msgid "<strong>did not have</strong> the information requested."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">follow up</a> to <em>{{request_title}}</em> was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A <a href=\"{{request_url}}\">response</a> to <em>{{request_title}}</em> was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}"
+msgstr ""
+
+msgid "A <strong>summary</strong> of the response if you have received it by post. "
+msgstr ""
+
+msgid "A Freedom of Information request"
+msgstr ""
+
+msgid "A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}"
+msgstr ""
+
+msgid "A new request, <em><a href=\"{{request_url}}\">{{request_title}}</a></em>, was sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "A public authority"
+msgstr ""
+
+msgid "A response will be sent <strong>by post</strong>"
+msgstr ""
+
+msgid "A strange reponse, required attention by the {{site_name}} team"
+msgstr ""
+
+msgid "A vexatious request"
+msgstr ""
+
+msgid "A {{site_name}} user"
+msgstr ""
+
+msgid "About you:"
+msgstr ""
+
+msgid "Act on what you've learnt"
+msgstr ""
+
+msgid "Acts as xapian/acts as xapian job"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Action"
+msgstr ""
+
+msgid "ActsAsXapian::ActsAsXapianJob|Model"
+msgstr ""
+
+msgid "Add an annotation"
+msgstr ""
+
+msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>."
+msgstr ""
+
+msgid "Added on {{date}}"
+msgstr ""
+
+msgid "Admin level is not included in list"
+msgstr ""
+
+msgid "Administration URL:"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Advanced search tips"
+msgstr ""
+
+msgid "Advise on whether the <strong>refusal is legal</strong>, and how to complain about it if not."
+msgstr ""
+
+msgid "Air, water, soil, land, flora and fauna (including how these effect\\n human beings)"
+msgstr ""
+
+msgid "All of the information requested has been received"
+msgstr ""
+
+msgid "All the options below can use <strong>status</strong> or <strong>latest_status</strong> before the colon. For example, <strong>status:not_held</strong> will match requests which have <em>ever</em> been marked as not held; <strong>latest_status:not_held</strong> will match only requests that are <em>currently</em> marked as not held."
+msgstr ""
+
+msgid "All the options below can use <strong>variety</strong> or <strong>latest_variety</strong> before the colon. For example, <strong>variety:sent</strong> will match requests which have <em>ever</em> been sent; <strong>latest_variety:sent</strong> will match only requests that are <em>currently</em> marked as sent."
+msgstr ""
+
+msgid "Also called {{other_name}}."
+msgstr ""
+
+msgid "Also send me alerts by email"
+msgstr ""
+
+msgid "Alter your subscription"
+msgstr ""
+
+msgid "Although all responses are automatically published, we depend on\\nyou, the original requester, to evaluate them."
+msgstr ""
+
+msgid "An <a href=\"{{request_url}}\">annotation</a> to <em>{{request_title}}</em> was made by {{event_comment_user}} on {{date}}"
+msgstr ""
+
+msgid "An <strong>error message</strong> has been received"
+msgstr ""
+
+msgid "An Environmental Information Regulations request"
+msgstr ""
+
+msgid "An anonymous user"
+msgstr ""
+
+msgid "Annotation added to request"
+msgstr ""
+
+msgid "Annotations"
+msgstr ""
+
+msgid "Annotations are so anyone, including you, can help the requester with their request. For example:"
+msgstr ""
+
+msgid "Annotations will be posted publicly here, and are\\n <strong>not</strong> sent to {{public_body_name}}."
+msgstr ""
+
+msgid "Anonymous user"
+msgstr ""
+
+msgid "Anyone:"
+msgstr ""
+
+msgid "Applies to"
+msgstr ""
+
+msgid "Are we missing a public authority?"
+msgstr ""
+
+msgid "Are you the owner of any commercial copyright on this page?"
+msgstr ""
+
+msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries."
+msgstr ""
+
+msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)."
+msgstr ""
+
+msgid "Attachment (optional):"
+msgstr ""
+
+msgid "Attachment:"
+msgstr ""
+
+msgid "Awaiting classification."
+msgstr ""
+
+msgid "Awaiting internal review."
+msgstr ""
+
+msgid "Awaiting response."
+msgstr ""
+
+msgid "Beginning with"
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> for examples of how to word your request."
+msgstr ""
+
+msgid "Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request."
+msgstr ""
+
+msgid "Browse all authorities..."
+msgstr ""
+
+msgid "By law, under all circumstances, {{public_body_link}} should have responded by now"
+msgstr ""
+
+msgid "By law, {{public_body_link}} should normally have responded <strong>promptly</strong> and"
+msgstr ""
+
+msgid "Calculated home page"
+msgstr ""
+
+msgid "Can't find the one you want?"
+msgstr ""
+
+msgid "Cancel a {{site_name}} alert"
+msgstr ""
+
+msgid "Cancel some {{site_name}} alerts"
+msgstr ""
+
+msgid "Cancel, return to your profile page"
+msgstr ""
+
+msgid "Censor rule"
+msgstr ""
+
+msgid "CensorRule|Last edit comment"
+msgstr ""
+
+msgid "CensorRule|Last edit editor"
+msgstr ""
+
+msgid "CensorRule|Regexp"
+msgstr ""
+
+msgid "CensorRule|Replacement"
+msgstr ""
+
+msgid "CensorRule|Text"
+msgstr ""
+
+msgid "Change email on {{site_name}}"
+msgstr ""
+
+msgid "Change password on {{site_name}}"
+msgstr ""
+
+msgid "Change profile photo"
+msgstr ""
+
+msgid "Change the text about you on your profile at {{site_name}}"
+msgstr ""
+
+msgid "Change your email"
+msgstr ""
+
+msgid "Change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Change your password"
+msgstr ""
+
+msgid "Change your password on {{site_name}}"
+msgstr ""
+
+msgid "Change your password {{site_name}}"
+msgstr ""
+
+msgid "Charity registration"
+msgstr ""
+
+msgid "Check for mistakes if you typed or copied the address."
+msgstr ""
+
+msgid "Check you haven't included any <strong>personal information</strong>."
+msgstr ""
+
+msgid "Choose your profile photo"
+msgstr ""
+
+msgid "Clarification"
+msgstr ""
+
+msgid "Clarify your FOI request - "
+msgstr ""
+
+msgid "Classify an FOI response from "
+msgstr ""
+
+msgid "Clear photo"
+msgstr ""
+
+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 ""
+
+msgid "Click on the link below to send a message to {{public_body}} reminding them to reply to your request."
+msgstr ""
+
+msgid "Close"
+msgstr ""
+
+msgid "Comment"
+msgstr ""
+
+msgid "Comment|Body"
+msgstr ""
+
+msgid "Comment|Comment type"
+msgstr ""
+
+msgid "Comment|Locale"
+msgstr ""
+
+msgid "Comment|Visible"
+msgstr ""
+
+msgid "Confirm you want to follow all successful FOI requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests"
+msgstr ""
+
+msgid "Confirm you want to follow new requests or responses matching your search"
+msgstr ""
+
+msgid "Confirm you want to follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow requests to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Confirm you want to follow the request '{{request_title}}'"
+msgstr ""
+
+msgid "Confirm your FOI request to "
+msgstr ""
+
+msgid "Confirm your account on {{site_name}}"
+msgstr ""
+
+msgid "Confirm your annotation to {{info_request_title}}"
+msgstr ""
+
+msgid "Confirm your email address"
+msgstr ""
+
+msgid "Confirm your new email address on {{site_name}}"
+msgstr ""
+
+msgid "Considered by administrators as not an FOI request and hidden from site."
+msgstr ""
+
+msgid "Considered by administrators as vexatious and hidden from site."
+msgstr ""
+
+msgid "Contact {{recipient}}"
+msgstr ""
+
+msgid "Contact {{site_name}}"
+msgstr ""
+
+msgid "Could not identify the request from the email address"
+msgstr ""
+
+msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported."
+msgstr ""
+
+msgid "Crop your profile photo"
+msgstr ""
+
+msgid "Cultural sites and built structures (as they may be affected by the\\n environmental factors listed above)"
+msgstr ""
+
+msgid "Currently <strong>waiting for a response</strong> from {{public_body_link}}, they must respond promptly and"
+msgstr ""
+
+msgid "Date:"
+msgstr ""
+
+msgid "Dear {{name}},"
+msgstr ""
+
+msgid "Dear {{public_body_name}},"
+msgstr ""
+
+msgid "Default locale"
+msgstr ""
+
+msgid "Delayed response to your FOI request - "
+msgstr ""
+
+msgid "Delayed."
+msgstr ""
+
+msgid "Delivery error"
+msgstr ""
+
+msgid "Destroy {{name}}"
+msgstr ""
+
+msgid "Details of request '"
+msgstr ""
+
+msgid "Did you mean: {{correction}}"
+msgstr ""
+
+msgid "Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:"
+msgstr ""
+
+msgid "Disclosure log"
+msgstr ""
+
+msgid "Disclosure log URL"
+msgstr ""
+
+msgid "Don't want to address your message to {{person_or_body}}? You can also write to:"
+msgstr ""
+
+msgid "Done"
+msgstr ""
+
+msgid "Done &gt;&gt;"
+msgstr ""
+
+msgid "Download a zip file of all correspondence"
+msgstr ""
+
+msgid "Download original attachment"
+msgstr ""
+
+msgid "EIR"
+msgstr ""
+
+msgid "Edit"
+msgstr ""
+
+msgid "Edit and add <strong>more details</strong> to the message above,\\n explaining why you are dissatisfied with their response."
+msgstr ""
+
+msgid "Edit text about you"
+msgstr ""
+
+msgid "Edit this request"
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again."
+msgstr ""
+
+msgid "Either the email or password was not recognised, please try again. Or create a new account using the form on the right."
+msgstr ""
+
+msgid "Email doesn't look like a valid address"
+msgstr ""
+
+msgid "Email me future updates to this request"
+msgstr ""
+
+msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>"
+msgstr ""
+
+msgid "Enter your response below. You may attach one file (use email, or\\n <a href=\"{{url}}\">contact us</a> if you need more)."
+msgstr ""
+
+msgid "Environmental Information Regulations"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made"
+msgstr ""
+
+msgid "Environmental Information Regulations requests made using this site"
+msgstr ""
+
+msgid "Event history"
+msgstr ""
+
+msgid "Event history details"
+msgstr ""
+
+msgid "Event {{id}}"
+msgstr ""
+
+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=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Everything that you enter on this page\\n will be <strong>displayed publicly</strong> on\\n this website forever (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "FOI"
+msgstr ""
+
+msgid "FOI email address for {{public_body}}"
+msgstr ""
+
+msgid "FOI request – {{title}}"
+msgstr ""
+
+msgid "FOI requests"
+msgstr ""
+
+msgid "FOI requests by '{{user_name}}'"
+msgstr ""
+
+msgid "FOI requests {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "FOI response requires admin ({{reason}}) - {{title}}"
+msgstr ""
+
+msgid "Failed to convert image to a PNG"
+msgstr ""
+
+msgid "Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}"
+msgstr ""
+
+msgid "Filter"
+msgstr ""
+
+msgid "First, did your other requests succeed?"
+msgstr ""
+
+msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Foi attachment"
+msgstr ""
+
+msgid "FoiAttachment|Charset"
+msgstr ""
+
+msgid "FoiAttachment|Content type"
+msgstr ""
+
+msgid "FoiAttachment|Display size"
+msgstr ""
+
+msgid "FoiAttachment|Filename"
+msgstr ""
+
+msgid "FoiAttachment|Hexdigest"
+msgstr ""
+
+msgid "FoiAttachment|Url part number"
+msgstr ""
+
+msgid "FoiAttachment|Within rfc822 subject"
+msgstr ""
+
+msgid "Follow"
+msgstr ""
+
+msgid "Follow all new requests"
+msgstr ""
+
+msgid "Follow new successful responses"
+msgstr ""
+
+msgid "Follow requests to {{public_body_name}}"
+msgstr ""
+
+msgid "Follow these requests"
+msgstr ""
+
+msgid "Follow things matching this search"
+msgstr ""
+
+msgid "Follow this authority"
+msgstr ""
+
+msgid "Follow this link to see the request:"
+msgstr ""
+
+msgid "Follow this person"
+msgstr ""
+
+msgid "Follow this request"
+msgstr ""
+
+msgid "Follow up"
+msgstr ""
+
+msgid "Follow up message sent by requester"
+msgstr ""
+
+msgid "Follow up messages to existing requests are sent to "
+msgstr ""
+
+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 ""
+
+msgid "Follow us on twitter"
+msgstr ""
+
+msgid "Followups cannot be sent for this request, as it was made externally, and published here by {{public_body_name}} on the requester's behalf."
+msgstr ""
+
+msgid "For an unknown reason, it is not possible to make a request to this authority."
+msgstr ""
+
+msgid "Forgotten your password?"
+msgstr ""
+
+msgid "Found {{count}} public authority {{description}}"
+msgid_plural "Found {{count}} public authorities {{description}}"
+msgstr[0] ""
+
+msgid "Freedom of Information"
+msgstr ""
+
+msgid "Freedom of Information Act"
+msgstr ""
+
+msgid "Freedom of Information law does not apply to this authority, so you cannot make\\n a request to it."
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to"
+msgstr ""
+
+msgid "Freedom of Information law no longer applies to this authority.Follow up messages to existing requests are sent to "
+msgstr ""
+
+msgid "Freedom of Information requests made"
+msgstr ""
+
+msgid "Freedom of Information requests made by this person"
+msgstr ""
+
+msgid "Freedom of Information requests made by you"
+msgstr ""
+
+msgid "Freedom of Information requests made using this site"
+msgstr ""
+
+msgid "Freedom of information requests to"
+msgstr ""
+
+msgid "From"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "From:"
+msgstr ""
+
+msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE"
+msgstr ""
+
+msgid "Handled by post."
+msgstr ""
+
+msgid "Has tag string/has tag string tag"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Model"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Name"
+msgstr ""
+
+msgid "HasTagString::HasTagStringTag|Value"
+msgstr ""
+
+msgid "Hello! You can make Freedom of Information requests within {{country_name}} at {{link_to_website}}"
+msgstr ""
+
+msgid "Hello, {{username}}!"
+msgstr ""
+
+msgid "Help"
+msgstr ""
+
+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 ""
+
+msgid "Here is the message you wrote, in case you would like to copy the text and save it for later."
+msgstr ""
+
+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 ""
+
+msgid "Hide request"
+msgstr ""
+
+msgid "Holiday"
+msgstr ""
+
+msgid "Holiday|Day"
+msgstr ""
+
+msgid "Holiday|Description"
+msgstr ""
+
+msgid "Home"
+msgstr ""
+
+msgid "Home page"
+msgstr ""
+
+msgid "Home page of authority"
+msgstr ""
+
+msgid "However, you have the right to request environmental\\n information under a different law"
+msgstr ""
+
+msgid "Human health and safety"
+msgstr ""
+
+msgid "I am asking for <strong>new information</strong>"
+msgstr ""
+
+msgid "I am requesting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'."
+msgstr ""
+
+msgid "I don't like these ones &mdash; give me some more!"
+msgstr ""
+
+msgid "I don't want to do any more tidying now!"
+msgstr ""
+
+msgid "I like this request"
+msgstr ""
+
+msgid "I would like to <strong>withdraw this request</strong>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for my information\\n <small>(maybe you got an acknowledgement)</small>"
+msgstr ""
+
+msgid "I'm still <strong>waiting</strong> for the internal review"
+msgstr ""
+
+msgid "I'm waiting for an <strong>internal review</strong> response"
+msgstr ""
+
+msgid "I've been asked to <strong>clarify</strong> my request"
+msgstr ""
+
+msgid "I've received <strong>all the information"
+msgstr ""
+
+msgid "I've received <strong>some of the information</strong>"
+msgstr ""
+
+msgid "I've received an <strong>error message</strong>"
+msgstr ""
+
+msgid "I've received an error message"
+msgstr ""
+
+msgid "Id"
+msgstr ""
+
+msgid "If the address is wrong, or you know a better address, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "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."
+msgstr ""
+
+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 ""
+
+msgid "If you are dissatisfied by the response you got from\\n the public authority, you have the right to\\n complain (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "If you are still having trouble, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the request."
+msgstr ""
+
+msgid "If you are thinking of using a pseudonym,\\n please <a href=\"{{url}}\">read this first</a>."
+msgstr ""
+
+msgid "If you are {{user_link}}, please"
+msgstr ""
+
+msgid "If you believe this request is not suitable, you can report it for attention by the site administrators"
+msgstr ""
+
+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 ""
+
+msgid "If you can, scan in or photograph the response, and <strong>send us\\n a copy to upload</strong>."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "If you reply to this message it will go directly to {{user_name}}, who will\\nlearn your email address. Only reply if that is okay."
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "If you're new to {{site_name}}"
+msgstr ""
+
+msgid "If you've used {{site_name}} before"
+msgstr ""
+
+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 ""
+
+msgid "Incoming email address"
+msgstr ""
+
+msgid "Incoming message"
+msgstr ""
+
+msgid "IncomingMessage|Cached attachment text clipped"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text folded"
+msgstr ""
+
+msgid "IncomingMessage|Cached main body text unfolded"
+msgstr ""
+
+msgid "IncomingMessage|Last parsed"
+msgstr ""
+
+msgid "IncomingMessage|Mail from"
+msgstr ""
+
+msgid "IncomingMessage|Mail from domain"
+msgstr ""
+
+msgid "IncomingMessage|Sent at"
+msgstr ""
+
+msgid "IncomingMessage|Subject"
+msgstr ""
+
+msgid "IncomingMessage|Valid to reply to"
+msgstr ""
+
+msgid "Individual requests"
+msgstr ""
+
+msgid "Info request"
+msgstr ""
+
+msgid "Info request event"
+msgstr ""
+
+msgid "InfoRequestEvent|Calculated state"
+msgstr ""
+
+msgid "InfoRequestEvent|Described state"
+msgstr ""
+
+msgid "InfoRequestEvent|Event type"
+msgstr ""
+
+msgid "InfoRequestEvent|Last described at"
+msgstr ""
+
+msgid "InfoRequestEvent|Params yaml"
+msgstr ""
+
+msgid "InfoRequestEvent|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Allow new responses from"
+msgstr ""
+
+msgid "InfoRequest|Attention requested"
+msgstr ""
+
+msgid "InfoRequest|Awaiting description"
+msgstr ""
+
+msgid "InfoRequest|Comments allowed"
+msgstr ""
+
+msgid "InfoRequest|Described state"
+msgstr ""
+
+msgid "InfoRequest|External url"
+msgstr ""
+
+msgid "InfoRequest|External user name"
+msgstr ""
+
+msgid "InfoRequest|Handle rejected responses"
+msgstr ""
+
+msgid "InfoRequest|Idhash"
+msgstr ""
+
+msgid "InfoRequest|Law used"
+msgstr ""
+
+msgid "InfoRequest|Prominence"
+msgstr ""
+
+msgid "InfoRequest|Title"
+msgstr ""
+
+msgid "InfoRequest|Url title"
+msgstr ""
+
+msgid "Information not held."
+msgstr ""
+
+msgid "Information on emissions and discharges (e.g. noise, energy,\\n radiation, waste materials)"
+msgstr ""
+
+msgid "Internal review request"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Items matching the following conditions are currently displayed on your wall."
+msgstr ""
+
+msgid "Items sent in last month"
+msgstr ""
+
+msgid "Joined in"
+msgstr ""
+
+msgid "Joined {{site_name}} in"
+msgstr ""
+
+msgid "Just one more thing"
+msgstr ""
+
+msgid "Keep it <strong>focused</strong>, you'll be more likely to get what you want (<a href=\"{{url}}\">why?</a>)."
+msgstr ""
+
+msgid "Keywords"
+msgstr ""
+
+msgid "Last authority viewed: "
+msgstr ""
+
+msgid "Last request viewed: "
+msgstr ""
+
+msgid "Let us know what you were doing when this message\\nappeared and your browser and operating system type and version."
+msgstr ""
+
+msgid "Link to this"
+msgstr ""
+
+msgid "List all"
+msgstr ""
+
+msgid "List of all authorities (CSV)"
+msgstr ""
+
+msgid "Listing FOI requests"
+msgstr ""
+
+msgid "Listing public authorities"
+msgstr ""
+
+msgid "Listing public authorities matching '{{query}}'"
+msgstr ""
+
+msgid "Listing tracks"
+msgstr ""
+
+msgid "Listing users"
+msgstr ""
+
+msgid "Log in to download a zip file of {{info_request_title}}"
+msgstr ""
+
+msgid "Log into the admin interface"
+msgstr ""
+
+msgid "Long overdue."
+msgstr ""
+
+msgid "Made between"
+msgstr ""
+
+msgid "Mail server log"
+msgstr ""
+
+msgid "Mail server log done"
+msgstr ""
+
+msgid "MailServerLogDone|Filename"
+msgstr ""
+
+msgid "MailServerLogDone|Last stat"
+msgstr ""
+
+msgid "MailServerLog|Line"
+msgstr ""
+
+msgid "MailServerLog|Order"
+msgstr ""
+
+msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>"
+msgstr ""
+
+msgid "Make a request"
+msgstr ""
+
+msgid "Make a request to this authority"
+msgstr ""
+
+msgid "Make an {{law_used_short}} request to '{{public_body_name}}'"
+msgstr ""
+
+msgid "Make and browse Freedom of Information (FOI) requests"
+msgstr ""
+
+msgid "Make your own request"
+msgstr ""
+
+msgid "Many requests"
+msgstr ""
+
+msgid "Message"
+msgstr ""
+
+msgid "Message sent using {{site_name}} contact form, "
+msgstr ""
+
+msgid "Missing contact details for '"
+msgstr ""
+
+msgid "More about this authority"
+msgstr ""
+
+msgid "More requests..."
+msgstr ""
+
+msgid "More similar requests"
+msgstr ""
+
+msgid "More successful requests..."
+msgstr ""
+
+msgid "My profile"
+msgstr ""
+
+msgid "My request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "My requests"
+msgstr ""
+
+msgid "My wall"
+msgstr ""
+
+msgid "Name can't be blank"
+msgstr ""
+
+msgid "Name is already taken"
+msgstr ""
+
+msgid "New Freedom of Information requests"
+msgstr ""
+
+msgid "New censor rule"
+msgstr ""
+
+msgid "New e-mail:"
+msgstr ""
+
+msgid "New email doesn't look like a valid address"
+msgstr ""
+
+msgid "New password:"
+msgstr ""
+
+msgid "New password: (again)"
+msgstr ""
+
+msgid "New response to '{{title}}'"
+msgstr ""
+
+msgid "New response to your FOI request - "
+msgstr ""
+
+msgid "New response to your request"
+msgstr ""
+
+msgid "New response to {{law_used_short}} request"
+msgstr ""
+
+msgid "New updates for the request '{{request_title}}'"
+msgstr ""
+
+msgid "Newest results first"
+msgstr ""
+
+msgid "Next"
+msgstr ""
+
+msgid "Next, crop your photo &gt;&gt;"
+msgstr ""
+
+msgid "No requests of this sort yet."
+msgstr ""
+
+msgid "No results found."
+msgstr ""
+
+msgid "No similar requests found."
+msgstr ""
+
+msgid "No tracked things found."
+msgstr ""
+
+msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet."
+msgstr ""
+
+msgid "None found."
+msgstr ""
+
+msgid "None made."
+msgstr ""
+
+msgid "Not a valid FOI request"
+msgstr ""
+
+msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf."
+msgstr ""
+
+msgid "Now check your email!"
+msgstr ""
+
+msgid "Now preview your annotation"
+msgstr ""
+
+msgid "Now preview your follow up"
+msgstr ""
+
+msgid "Now preview your message asking for an internal review"
+msgstr ""
+
+msgid "OR remove the existing photo"
+msgstr ""
+
+msgid "Offensive? Unsuitable?"
+msgstr ""
+
+msgid "Oh no! Sorry to hear that your request was refused. Here is what to do now."
+msgstr ""
+
+msgid "Old e-mail:"
+msgstr ""
+
+msgid "Old email address isn't the same as the address of the account you are logged in with"
+msgstr ""
+
+msgid "Old email doesn't look like a valid address"
+msgstr ""
+
+msgid "On this page"
+msgstr ""
+
+msgid "One FOI request found"
+msgstr ""
+
+msgid "One person found"
+msgstr ""
+
+msgid "One public authority found"
+msgstr ""
+
+msgid "Only put in abbreviations which are really used, otherwise leave blank. Short or long name is used in the URL – don't worry about breaking URLs through renaming, as the history is used to redirect"
+msgstr ""
+
+msgid "Only requests made using {{site_name}} are shown."
+msgstr ""
+
+msgid "Only the authority can reply to this request, and I don't recognise the address this reply was sent from"
+msgstr ""
+
+msgid "Only the authority can reply to this request, but there is no \"From\" address to check against"
+msgstr ""
+
+msgid "Or search in their website for this information."
+msgstr ""
+
+msgid "Original request sent"
+msgstr ""
+
+msgid "Other:"
+msgstr ""
+
+msgid "Outgoing message"
+msgstr ""
+
+msgid "OutgoingMessage|Body"
+msgstr ""
+
+msgid "OutgoingMessage|Last sent at"
+msgstr ""
+
+msgid "OutgoingMessage|Message type"
+msgstr ""
+
+msgid "OutgoingMessage|Status"
+msgstr ""
+
+msgid "OutgoingMessage|What doing"
+msgstr ""
+
+msgid "Partially successful."
+msgstr ""
+
+msgid "Password is not correct"
+msgstr ""
+
+msgid "Password:"
+msgstr ""
+
+msgid "Password: (again)"
+msgstr ""
+
+msgid "Paste this link into emails, tweets, and anywhere else:"
+msgstr ""
+
+msgid "People"
+msgstr ""
+
+msgid "People {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Photo of you:"
+msgstr ""
+
+msgid "Plans and administrative measures that affect these matters"
+msgstr ""
+
+msgid "Play the request categorisation game"
+msgstr ""
+
+msgid "Play the request categorisation game!"
+msgstr ""
+
+msgid "Please"
+msgstr ""
+
+msgid "Please <a href=\"{{url}}\">get in touch</a> with us so we can fix it."
+msgstr ""
+
+msgid "Please <strong>answer the question above</strong> so we know whether the "
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Please ask for environmental information only"
+msgstr ""
+
+msgid "Please check the URL (i.e. the long code of letters and numbers) is copied\\ncorrectly from your email."
+msgstr ""
+
+msgid "Please choose a file containing your photo."
+msgstr ""
+
+msgid "Please choose a reason"
+msgstr ""
+
+msgid "Please choose what sort of reply you are making."
+msgstr ""
+
+msgid "Please choose whether or not you got some of the information that you wanted."
+msgstr ""
+
+msgid "Please click on the link below to cancel or alter these emails."
+msgstr ""
+
+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 ""
+
+msgid "Please click on the link below to confirm your email address."
+msgstr ""
+
+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 ""
+
+msgid "Please don't upload offensive pictures. We will take down images\\n that we consider inappropriate."
+msgstr ""
+
+msgid "Please enable \"cookies\" to carry on"
+msgstr ""
+
+msgid "Please enter a password"
+msgstr ""
+
+msgid "Please enter a subject"
+msgstr ""
+
+msgid "Please enter a summary of your request"
+msgstr ""
+
+msgid "Please enter a valid email address"
+msgstr ""
+
+msgid "Please enter the message you want to send"
+msgstr ""
+
+msgid "Please enter the same password twice"
+msgstr ""
+
+msgid "Please enter your annotation"
+msgstr ""
+
+msgid "Please enter your email address"
+msgstr ""
+
+msgid "Please enter your follow up message"
+msgstr ""
+
+msgid "Please enter your letter requesting information"
+msgstr ""
+
+msgid "Please enter your name"
+msgstr ""
+
+msgid "Please enter your name, not your email address, in the name field."
+msgstr ""
+
+msgid "Please enter your new email address"
+msgstr ""
+
+msgid "Please enter your old email address"
+msgstr ""
+
+msgid "Please enter your password"
+msgstr ""
+
+msgid "Please give details explaining why you want a review"
+msgstr ""
+
+msgid "Please keep it shorter than 500 characters"
+msgstr ""
+
+msgid "Please keep the summary short, like in the subject of an email. You can use a phrase, rather than a full sentence."
+msgstr ""
+
+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 ""
+
+msgid "Please pass this on to the person who conducts Freedom of Information reviews."
+msgstr ""
+
+msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not."
+msgstr ""
+
+msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature"
+msgstr ""
+
+msgid "Please sign in as "
+msgstr ""
+
+msgid "Please sign in or make a new account."
+msgstr ""
+
+msgid "Please type a message and/or choose a file containing your response."
+msgstr ""
+
+msgid "Please use this email address for all replies to this request:"
+msgstr ""
+
+msgid "Please write a summary with some text in it"
+msgstr ""
+
+msgid "Please write the summary using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your annotation using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Please write your follow up message containing the necessary clarifications below."
+msgstr ""
+
+msgid "Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read."
+msgstr ""
+
+msgid "Point to <strong>related information</strong>, campaigns or forums which may be useful."
+msgstr ""
+
+msgid "Possibly related requests:"
+msgstr ""
+
+msgid "Post annotation"
+msgstr ""
+
+msgid "Post redirect"
+msgstr ""
+
+msgid "PostRedirect|Circumstance"
+msgstr ""
+
+msgid "PostRedirect|Email token"
+msgstr ""
+
+msgid "PostRedirect|Post params yaml"
+msgstr ""
+
+msgid "PostRedirect|Reason params yaml"
+msgstr ""
+
+msgid "PostRedirect|Token"
+msgstr ""
+
+msgid "PostRedirect|Uri"
+msgstr ""
+
+msgid "Posted on {{date}} by {{author}}"
+msgstr ""
+
+msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>"
+msgstr ""
+
+msgid "Prev"
+msgstr ""
+
+msgid "Preview follow up to '"
+msgstr ""
+
+msgid "Preview new annotation on '{{info_request_title}}'"
+msgstr ""
+
+msgid "Preview your annotation"
+msgstr ""
+
+msgid "Preview your message"
+msgstr ""
+
+msgid "Preview your public request"
+msgstr ""
+
+msgid "Profile photo"
+msgstr ""
+
+msgid "ProfilePhoto|Data"
+msgstr ""
+
+msgid "ProfilePhoto|Draft"
+msgstr ""
+
+msgid "Public authorities"
+msgstr ""
+
+msgid "Public authorities - {{description}}"
+msgstr ""
+
+msgid "Public authorities {{start_count}} to {{end_count}} of {{total_count}}"
+msgstr ""
+
+msgid "Public authority – {{name}}"
+msgstr ""
+
+msgid "Public body"
+msgstr ""
+
+msgid "Public notes"
+msgstr ""
+
+msgid "Public page"
+msgstr ""
+
+msgid "Public page not available"
+msgstr ""
+
+msgid "PublicBody|Api key"
+msgstr ""
+
+msgid "PublicBody|Disclosure log"
+msgstr ""
+
+msgid "PublicBody|First letter"
+msgstr ""
+
+msgid "PublicBody|Home page"
+msgstr ""
+
+msgid "PublicBody|Info requests count"
+msgstr ""
+
+msgid "PublicBody|Last edit comment"
+msgstr ""
+
+msgid "PublicBody|Last edit editor"
+msgstr ""
+
+msgid "PublicBody|Name"
+msgstr ""
+
+msgid "PublicBody|Notes"
+msgstr ""
+
+msgid "PublicBody|Publication scheme"
+msgstr ""
+
+msgid "PublicBody|Request email"
+msgstr ""
+
+msgid "PublicBody|Short name"
+msgstr ""
+
+msgid "PublicBody|Url name"
+msgstr ""
+
+msgid "PublicBody|Version"
+msgstr ""
+
+msgid "Publication scheme"
+msgstr ""
+
+msgid "Publication scheme URL"
+msgstr ""
+
+msgid "Purge request"
+msgstr ""
+
+msgid "PurgeRequest|Model"
+msgstr ""
+
+msgid "PurgeRequest|Url"
+msgstr ""
+
+msgid "RSS feed"
+msgstr ""
+
+msgid "RSS feed of updates"
+msgstr ""
+
+msgid "Re-edit this annotation"
+msgstr ""
+
+msgid "Re-edit this message"
+msgstr ""
+
+msgid "Read about <a href=\"{{advanced_search_url}}\">advanced search operators</a>, such as proximity and wildcards."
+msgstr ""
+
+msgid "Read blog"
+msgstr ""
+
+msgid "Received an error message, such as delivery failure."
+msgstr ""
+
+msgid "Recently described results first"
+msgstr ""
+
+msgid "Refused."
+msgstr ""
+
+msgid "Remember me</label> (keeps you signed in longer;\\n do not use on a public computer) "
+msgstr ""
+
+msgid "Report abuse"
+msgstr ""
+
+msgid "Report an offensive or unsuitable request"
+msgstr ""
+
+msgid "Report request"
+msgstr ""
+
+msgid "Report this request"
+msgstr ""
+
+msgid "Reported for administrator attention."
+msgstr ""
+
+msgid "Request an internal review"
+msgstr ""
+
+msgid "Request an internal review from {{person_or_body}}"
+msgstr ""
+
+msgid "Request email"
+msgstr ""
+
+msgid "Request has been removed"
+msgstr ""
+
+msgid "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "Request to {{public_body_name}} by {{info_request_user}}. Annotated by {{event_comment_user}} on {{date}}."
+msgstr ""
+
+msgid "Requested from {{public_body_name}} by {{info_request_user}} on {{date}}"
+msgstr ""
+
+msgid "Requested on {{date}}"
+msgstr ""
+
+msgid "Requests for personal information and vexatious requests are not considered valid for FOI purposes (<a href=\"/help/about\">read more</a>)."
+msgstr ""
+
+msgid "Requests or responses matching your saved search"
+msgstr ""
+
+msgid "Respond by email"
+msgstr ""
+
+msgid "Respond to request"
+msgstr ""
+
+msgid "Respond to the FOI request"
+msgstr ""
+
+msgid "Respond using the web"
+msgstr ""
+
+msgid "Response"
+msgstr ""
+
+msgid "Response from a public authority"
+msgstr ""
+
+msgid "Response to '{{title}}'"
+msgstr ""
+
+msgid "Response to this request is <strong>delayed</strong>."
+msgstr ""
+
+msgid "Response to this request is <strong>long overdue</strong>."
+msgstr ""
+
+msgid "Response to your request"
+msgstr ""
+
+msgid "Response:"
+msgstr ""
+
+msgid "Restrict to"
+msgstr ""
+
+msgid "Results page {{page_number}}"
+msgstr ""
+
+msgid "Save"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Search Freedom of Information requests, public authorities and users"
+msgstr ""
+
+msgid "Search contributions by this person"
+msgstr ""
+
+msgid "Search for words in:"
+msgstr ""
+
+msgid "Search in"
+msgstr ""
+
+msgid "Search over<br/>\\n <strong>{{number_of_requests}} requests</strong> <span>and</span><br/>\\n <strong>{{number_of_authorities}} authorities</strong>"
+msgstr ""
+
+msgid "Search queries"
+msgstr ""
+
+msgid "Search results"
+msgstr ""
+
+msgid "Search the site to find what you were looking for."
+msgstr ""
+
+msgid "Search within the {{count}} Freedom of Information requests to {{public_body_name}}"
+msgid_plural "Search within the {{count}} Freedom of Information requests made to {{public_body_name}}"
+msgstr[0] ""
+
+msgid "Search your contributions"
+msgstr ""
+
+msgid "See bounce message"
+msgstr ""
+
+msgid "Select one to see more information about the authority."
+msgstr ""
+
+msgid "Select the authority to write to"
+msgstr ""
+
+msgid "Send a followup"
+msgstr ""
+
+msgid "Send a message to "
+msgstr ""
+
+msgid "Send a public follow up message to {{person_or_body}}"
+msgstr ""
+
+msgid "Send a public reply to {{person_or_body}}"
+msgstr ""
+
+msgid "Send follow up to '{{title}}'"
+msgstr ""
+
+msgid "Send message"
+msgstr ""
+
+msgid "Send message to "
+msgstr ""
+
+msgid "Send request"
+msgstr ""
+
+msgid "Set your profile photo"
+msgstr ""
+
+msgid "Short name"
+msgstr ""
+
+msgid "Short name is already taken"
+msgstr ""
+
+msgid "Show most relevant results first"
+msgstr ""
+
+msgid "Show only..."
+msgstr ""
+
+msgid "Showing"
+msgstr ""
+
+msgid "Sign in"
+msgstr ""
+
+msgid "Sign in or make a new account"
+msgstr ""
+
+msgid "Sign in or sign up"
+msgstr ""
+
+msgid "Sign out"
+msgstr ""
+
+msgid "Sign up"
+msgstr ""
+
+msgid "Similar requests"
+msgstr ""
+
+msgid "Simple search"
+msgstr ""
+
+msgid "Some notes have been added to your FOI request - "
+msgstr ""
+
+msgid "Some of the information requested has been received"
+msgstr ""
+
+msgid "Some people who've made requests haven't let us know whether they were\\nsuccessful or not. We need <strong>your</strong> help &ndash;\\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 ""
+
+msgid "Somebody added a note to your FOI request - "
+msgstr ""
+
+msgid "Someone has updated the status of your request"
+msgstr ""
+
+msgid "Someone, perhaps you, just tried to change their email address on\\n{{site_name}} from {{old_email}} to {{new_email}}."
+msgstr ""
+
+msgid "Sorry - you cannot respond to this request via {{site_name}}, because this is a copy of the request originally at {{link_to_original_request}}."
+msgstr ""
+
+msgid "Sorry, but only {{user_name}} is allowed to do that."
+msgstr ""
+
+msgid "Sorry, there was a problem processing this page"
+msgstr ""
+
+msgid "Sorry, we couldn't find that page"
+msgstr ""
+
+msgid "Special note for this authority!"
+msgstr ""
+
+msgid "Start now &raquo;"
+msgstr ""
+
+msgid "Start your own blog"
+msgstr ""
+
+msgid "Stay up to date"
+msgstr ""
+
+msgid "Still awaiting an <strong>internal review</strong>"
+msgstr ""
+
+msgid "Subject"
+msgstr ""
+
+msgid "Subject:"
+msgstr ""
+
+msgid "Submit"
+msgstr ""
+
+msgid "Submit status"
+msgstr ""
+
+msgid "Submit status and send message"
+msgstr ""
+
+msgid "Subscribe to blog"
+msgstr ""
+
+msgid "Successful Freedom of Information requests"
+msgstr ""
+
+msgid "Successful."
+msgstr ""
+
+msgid "Suggest how the requester can find the <strong>rest of the information</strong>."
+msgstr ""
+
+msgid "Summary:"
+msgstr ""
+
+msgid "Table of statuses"
+msgstr ""
+
+msgid "Table of varieties"
+msgstr ""
+
+msgid "Tags"
+msgstr ""
+
+msgid "Tags (separated by a space):"
+msgstr ""
+
+msgid "Tags:"
+msgstr ""
+
+msgid "Technical details"
+msgstr ""
+
+msgid "Thank you for helping us keep the site tidy!"
+msgstr ""
+
+msgid "Thank you for making an annotation!"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Thank you for updating this request!"
+msgstr ""
+
+msgid "Thank you for updating your profile photo"
+msgstr ""
+
+msgid "Thank you! We'll look into what happened and try and fix it up."
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "That doesn't look like a valid email address. Please check you have typed it correctly."
+msgstr ""
+
+msgid "The <strong>review has finished</strong> and overall:"
+msgstr ""
+
+msgid "The Freedom of Information Act <strong>does not apply</strong> to"
+msgstr ""
+
+msgid "The accounts have been left as they previously were."
+msgstr ""
+
+msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)"
+msgstr ""
+
+msgid "The authority only has a <strong>paper copy</strong> of the information."
+msgstr ""
+
+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 ""
+
+msgid "The authority would like to / has <strong>responded by post</strong> to this request."
+msgstr ""
+
+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 ""
+
+msgid "The page doesn't exist. Things you can try now:"
+msgstr ""
+
+msgid "The public authority does not have the information requested"
+msgstr ""
+
+msgid "The public authority would like part of the request explained"
+msgstr ""
+
+msgid "The public authority would like to / has responded by post"
+msgstr ""
+
+msgid "The request has been <strong>refused</strong>"
+msgstr ""
+
+msgid "The request has been updated since you originally loaded this page. Please check for any new incoming messages below, and try again."
+msgstr ""
+
+msgid "The request is <strong>waiting for clarification</strong>."
+msgstr ""
+
+msgid "The request was <strong>partially successful</strong>."
+msgstr ""
+
+msgid "The request was <strong>refused</strong> by"
+msgstr ""
+
+msgid "The request was <strong>successful</strong>."
+msgstr ""
+
+msgid "The request was refused by the public authority"
+msgstr ""
+
+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=\"{{url}}\">contact us</a> if you have any questions."
+msgstr ""
+
+msgid "The requester has abandoned this request for some reason"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "The search index is currently offline, so we can't show the Freedom of Information requests this person has made."
+msgstr ""
+
+msgid "The {{site_name}} team."
+msgstr ""
+
+msgid "Then you can cancel the alert."
+msgstr ""
+
+msgid "Then you can cancel the alerts."
+msgstr ""
+
+msgid "Then you can change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "Then you can change your password on {{site_name}}"
+msgstr ""
+
+msgid "Then you can classify the FOI response you have got from "
+msgstr ""
+
+msgid "Then you can download a zip file of {{info_request_title}}."
+msgstr ""
+
+msgid "Then you can log into the administrative interface"
+msgstr ""
+
+msgid "Then you can play the request categorisation game."
+msgstr ""
+
+msgid "Then you can report the request '{{title}}'"
+msgstr ""
+
+msgid "Then you can send a message to "
+msgstr ""
+
+msgid "Then you can sign in to {{site_name}}"
+msgstr ""
+
+msgid "Then you can update the status of your request to "
+msgstr ""
+
+msgid "Then you can upload an FOI response. "
+msgstr ""
+
+msgid "Then you can write follow up message to "
+msgstr ""
+
+msgid "Then you can write your reply to "
+msgstr ""
+
+msgid "Then you will be following all new FOI requests."
+msgstr ""
+
+msgid "Then you will be notified whenever '{{user_name}}' requests something or gets a response."
+msgstr ""
+
+msgid "Then you will be notified whenever a new request or response matches your search."
+msgstr ""
+
+msgid "Then you will be notified whenever an FOI request succeeds."
+msgstr ""
+
+msgid "Then you will be notified whenever someone requests something or gets a response from '{{public_body_name}}'."
+msgstr ""
+
+msgid "Then you will be updated whenever the request '{{request_title}}' is updated."
+msgstr ""
+
+msgid "Then you'll be allowed to send FOI requests."
+msgstr ""
+
+msgid "Then your FOI request to {{public_body_name}} will be sent."
+msgstr ""
+
+msgid "Then your annotation to {{info_request_title}} will be posted."
+msgstr ""
+
+msgid "There are {{count}} new annotations on your {{info_request}} request. Follow this link to see what they wrote."
+msgstr ""
+
+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 ""
+
+msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>."
+msgstr ""
+
+msgid "There is {{count}} person following this request"
+msgid_plural "There are {{count}} people following this request"
+msgstr[0] ""
+
+msgid "There was a <strong>delivery error</strong> or similar, which needs fixing by the {{site_name}} team."
+msgstr ""
+
+msgid "There was an error with the words you entered, please try again."
+msgstr ""
+
+msgid "There were no requests matching your query."
+msgstr ""
+
+msgid "There were no results matching your query."
+msgstr ""
+
+msgid "They are going to reply <strong>by post</strong>"
+msgstr ""
+
+msgid "They do <strong>not have</strong> the information <small>(maybe they say who does)</small>"
+msgstr ""
+
+msgid "They have been given the following explanation:"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}} promptly, as normally required by law"
+msgstr ""
+
+msgid "They have not replied to your {{law_used_short}} request {{title}}, \\nas required by law"
+msgstr ""
+
+msgid "Things to do with this request"
+msgstr ""
+
+msgid "Things you're following"
+msgstr ""
+
+msgid "This authority no longer exists, so you cannot make a request to it."
+msgstr ""
+
+msgid "This comment has been hidden. See annotations to\\n find out why. If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This covers a very wide spectrum of information about the state of\\n the <strong>natural and built environment</strong>, such as:"
+msgstr ""
+
+msgid "This external request has been hidden"
+msgstr ""
+
+msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}"
+msgstr ""
+
+msgid "This is an HTML version of an attachment to the Freedom of Information request"
+msgstr ""
+
+msgid "This is because {{title}} is an old request that has been\\nmarked to no longer receive responses."
+msgstr ""
+
+msgid "This is the first version."
+msgstr ""
+
+msgid "This is your own request, so you will be automatically emailed when new responses arrive."
+msgstr ""
+
+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=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+msgid "This particular request is finished:"
+msgstr ""
+
+msgid "This person has made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "This person's annotations"
+msgstr ""
+
+msgid "This person's {{count}} Freedom of Information request"
+msgid_plural "This person's {{count}} Freedom of Information requests"
+msgstr[0] ""
+
+msgid "This person's {{count}} annotation"
+msgid_plural "This person's {{count}} annotations"
+msgstr[0] ""
+
+msgid "This request <strong>requires administrator attention</strong>"
+msgstr ""
+
+msgid "This request has already been reported for administrator attention"
+msgstr ""
+
+msgid "This request has an <strong>unknown status</strong>."
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it not to be an FOI request"
+msgstr ""
+
+msgid "This request has been <strong>hidden</strong> from the site, because an administrator considers it vexatious"
+msgstr ""
+
+msgid "This request has been <strong>reported</strong> as needing administrator attention (perhaps because it is vexatious, or a request for personal information)"
+msgstr ""
+
+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 ""
+
+msgid "This request has been marked for review by the site administrators, who have not hidden it at this time. If you believe it should be hidden, please <a href=\"{{url}}\">contact us</a>."
+msgstr ""
+
+msgid "This request has been reported for administrator attention"
+msgstr ""
+
+msgid "This request has been set by an administrator to \"allow new responses from nobody\""
+msgstr ""
+
+msgid "This request has had an unusual response, and <strong>requires attention</strong> from the {{site_name}} team."
+msgstr ""
+
+msgid "This request has prominence 'hidden'. You can only see it because you are logged\\n in as a super user."
+msgstr ""
+
+msgid "This request is hidden, so that only you the requester can see it. Please\\n <a href=\"{{url}}\">contact us</a> if you are not sure why."
+msgstr ""
+
+msgid "This request is still in progress:"
+msgstr ""
+
+msgid "This request requires administrator attention"
+msgstr ""
+
+msgid "This request was not made via {{site_name}}"
+msgstr ""
+
+msgid "This response has been hidden. See annotations to find out why.\\n If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the response."
+msgstr ""
+
+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 ""
+
+msgid "This user has been banned from {{site_name}} "
+msgstr ""
+
+msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
+msgstr ""
+
+msgid "To cancel these alerts"
+msgstr ""
+
+msgid "To cancel this alert"
+msgstr ""
+
+msgid "To carry on, you need to sign in or make an account. Unfortunately, there\\nwas a technical problem trying to do this."
+msgstr ""
+
+msgid "To change your email address used on {{site_name}}"
+msgstr ""
+
+msgid "To classify the response to this FOI request"
+msgstr ""
+
+msgid "To do that please send a private email to "
+msgstr ""
+
+msgid "To do this, first click on the link below."
+msgstr ""
+
+msgid "To download the zip file"
+msgstr ""
+
+msgid "To follow all successful requests"
+msgstr ""
+
+msgid "To follow new requests"
+msgstr ""
+
+msgid "To follow requests and responses matching your search"
+msgstr ""
+
+msgid "To follow requests by '{{user_name}}'"
+msgstr ""
+
+msgid "To follow requests made using {{site_name}} to the public authority '{{public_body_name}}'"
+msgstr ""
+
+msgid "To follow the request '{{request_title}}'"
+msgstr ""
+
+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 ""
+
+msgid "To let everyone know, follow this link and then select the appropriate box."
+msgstr ""
+
+msgid "To log into the administrative interface"
+msgstr ""
+
+msgid "To play the request categorisation game"
+msgstr ""
+
+msgid "To post your annotation"
+msgstr ""
+
+msgid "To reply to "
+msgstr ""
+
+msgid "To report this request"
+msgstr ""
+
+msgid "To send a follow up message to "
+msgstr ""
+
+msgid "To send a message to "
+msgstr ""
+
+msgid "To send your FOI request"
+msgstr ""
+
+msgid "To update the status of this FOI request"
+msgstr ""
+
+msgid "To upload a response, you must be logged in using an email address from "
+msgstr ""
+
+msgid "To use the advanced search, combine phrases and labels as described in the search tips below."
+msgstr ""
+
+msgid "To view the email address that we use to send FOI requests to {{public_body_name}}, please enter these words."
+msgstr ""
+
+msgid "To view the response, click on the link below."
+msgstr ""
+
+msgid "To {{public_body_link_absolute}}"
+msgstr ""
+
+msgid "To:"
+msgstr ""
+
+msgid "Today"
+msgstr ""
+
+msgid "Too many requests"
+msgstr ""
+
+msgid "Top search results:"
+msgstr ""
+
+msgid "Track thing"
+msgstr ""
+
+msgid "Track this person"
+msgstr ""
+
+msgid "Track this search"
+msgstr ""
+
+msgid "TrackThing|Track medium"
+msgstr ""
+
+msgid "TrackThing|Track query"
+msgstr ""
+
+msgid "TrackThing|Track type"
+msgstr ""
+
+msgid "Turn off email alerts"
+msgstr ""
+
+msgid "Tweet this request"
+msgstr ""
+
+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 ""
+
+msgid "URL name can't be blank"
+msgstr ""
+
+msgid "Unable to change email address on {{site_name}}"
+msgstr ""
+
+msgid "Unable to send a reply to {{username}}"
+msgstr ""
+
+msgid "Unable to send follow up message to {{username}}"
+msgstr ""
+
+msgid "Unexpected search result type"
+msgstr ""
+
+msgid "Unexpected search result type "
+msgstr ""
+
+msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out."
+msgstr ""
+
+msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for"
+msgstr ""
+
+msgid "Unknown"
+msgstr ""
+
+msgid "Unsubscribe"
+msgstr ""
+
+msgid "Unusual response."
+msgstr ""
+
+msgid "Update the status of this request"
+msgstr ""
+
+msgid "Update the status of your request to "
+msgstr ""
+
+msgid "Upload FOI response"
+msgstr ""
+
+msgid "Use OR (in capital letters) where you don't mind which word, e.g. <strong><code>commons OR lords</code></strong>"
+msgstr ""
+
+msgid "Use quotes when you want to find an exact phrase, e.g. <strong><code>\"Liverpool City Council\"</code></strong>"
+msgstr ""
+
+msgid "User"
+msgstr ""
+
+msgid "User info request sent alert"
+msgstr ""
+
+msgid "User – {{name}}"
+msgstr ""
+
+msgid "UserInfoRequestSentAlert|Alert type"
+msgstr ""
+
+msgid "User|About me"
+msgstr ""
+
+msgid "User|Address"
+msgstr ""
+
+msgid "User|Admin level"
+msgstr ""
+
+msgid "User|Ban text"
+msgstr ""
+
+msgid "User|Dob"
+msgstr ""
+
+msgid "User|Email"
+msgstr ""
+
+msgid "User|Email bounce message"
+msgstr ""
+
+msgid "User|Email bounced at"
+msgstr ""
+
+msgid "User|Email confirmed"
+msgstr ""
+
+msgid "User|Hashed password"
+msgstr ""
+
+msgid "User|Last daily track email"
+msgstr ""
+
+msgid "User|Locale"
+msgstr ""
+
+msgid "User|Name"
+msgstr ""
+
+msgid "User|No limit"
+msgstr ""
+
+msgid "User|Receive email alerts"
+msgstr ""
+
+msgid "User|Salt"
+msgstr ""
+
+msgid "User|Url name"
+msgstr ""
+
+msgid "Version {{version}}"
+msgstr ""
+
+msgid "View FOI email address"
+msgstr ""
+
+msgid "View FOI email address for '{{public_body_name}}'"
+msgstr ""
+
+msgid "View FOI email address for {{public_body_name}}"
+msgstr ""
+
+msgid "View Freedom of Information requests made by {{user_name}}:"
+msgstr ""
+
+msgid "View and search requests"
+msgstr ""
+
+msgid "View authorities"
+msgstr ""
+
+msgid "View email"
+msgstr ""
+
+msgid "View requests"
+msgstr ""
+
+msgid "Waiting clarification."
+msgstr ""
+
+msgid "Waiting for an <strong>internal review</strong> by {{public_body_link}} of their handling of this request."
+msgstr ""
+
+msgid "Waiting for the public authority to complete an internal review of their handling of the request"
+msgstr ""
+
+msgid "Waiting for the public authority to reply"
+msgstr ""
+
+msgid "Was the response you got to your FOI request any good?"
+msgstr ""
+
+msgid "We consider it is not a valid FOI request, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We consider it to be vexatious, and have therefore hidden it from other users."
+msgstr ""
+
+msgid "We do not have a working request email address for this authority."
+msgstr ""
+
+msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}."
+msgstr ""
+
+msgid "We don't know whether the most recent response to this request contains\\n information or not\\n &ndash;\\n\tif you are {{user_link}} please <a href=\"{{url}}\">sign in</a> and let everyone know."
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you or\\n the law tell us to (<a href=\"{{url}}\">details</a>). "
+msgstr ""
+
+msgid "We will not reveal your email address to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We will not reveal your email addresses to anybody unless you\\nor the law tell us to."
+msgstr ""
+
+msgid "We're waiting for"
+msgstr ""
+
+msgid "We're waiting for someone to read"
+msgstr ""
+
+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 ""
+
+msgid "We've sent you an email, and you'll need to click the link in it before you can\\ncontinue."
+msgstr ""
+
+msgid "We've sent you an email, click the link in it, then you can change your password."
+msgstr ""
+
+msgid "What are you doing?"
+msgstr ""
+
+msgid "What best describes the status of this request now?"
+msgstr ""
+
+msgid "What information has been released?"
+msgstr ""
+
+msgid "What information has been requested?"
+msgstr ""
+
+msgid "When you get there, please update the status to say if the response \\ncontains any useful information."
+msgstr ""
+
+msgid "When you receive the paper response, please help\\n others find out what it says:"
+msgstr ""
+
+msgid "When you're done, <strong>come back here</strong>, <a href=\"{{url}}\">reload this page</a> and file your new request."
+msgstr ""
+
+msgid "Which of these is happening?"
+msgstr ""
+
+msgid "Who can I request information from?"
+msgstr ""
+
+msgid "Withdrawn by the requester."
+msgstr ""
+
+msgid "Wk"
+msgstr ""
+
+msgid "Would you like to see a website like this in your country?"
+msgstr ""
+
+msgid "Write a reply"
+msgstr ""
+
+msgid "Write a reply to "
+msgstr ""
+
+msgid "Write your FOI follow up message to "
+msgstr ""
+
+msgid "Write your request in <strong>simple, precise language</strong>."
+msgstr ""
+
+msgid "You"
+msgstr ""
+
+msgid "You are already following new requests"
+msgstr ""
+
+msgid "You are already following requests to {{public_body_name}}"
+msgstr ""
+
+msgid "You are already following things matching this search"
+msgstr ""
+
+msgid "You are already following this person"
+msgstr ""
+
+msgid "You are already following this request"
+msgstr ""
+
+msgid "You are already following updates about {{track_description}}"
+msgstr ""
+
+msgid "You are currently receiving notification of new activity on your wall by email."
+msgstr ""
+
+msgid "You are following all new successful responses"
+msgstr ""
+
+msgid "You are no longer following {{track_description}}."
+msgstr ""
+
+msgid "You are now <a href=\"{{wall_url_user}}\">following</a> updates about {{track_description}}"
+msgstr ""
+
+msgid "You can <strong>complain</strong> by"
+msgstr ""
+
+msgid "You can change the requests and users you are following on <a href=\"{{profile_url}}\">your profile page</a>."
+msgstr ""
+
+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 ""
+
+msgid "You can only request information about the environment from this authority."
+msgstr ""
+
+msgid "You have a new response to the {{law_used_full}} request "
+msgstr ""
+
+msgid "You have found a bug. Please <a href=\"{{contact_url}}\">contact us</a> to tell us about the problem"
+msgstr ""
+
+msgid "You have hit the rate limit on new requests. Users are ordinarily limited to {{max_requests_per_user_per_day}} requests in any rolling 24-hour period. You will be able to make another request in {{can_make_another_request}}."
+msgstr ""
+
+msgid "You have made no Freedom of Information requests using this site."
+msgstr ""
+
+msgid "You have now changed the text about you on your profile."
+msgstr ""
+
+msgid "You have now changed your email address used on {{site_name}}"
+msgstr ""
+
+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 ""
+
+msgid "You know what caused the error, and can <strong>suggest a solution</strong>, such as a working email address."
+msgstr ""
+
+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 ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+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 ""
+
+msgid "You need to be logged in to change the text about you on your profile."
+msgstr ""
+
+msgid "You need to be logged in to change your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to clear your profile photo."
+msgstr ""
+
+msgid "You need to be logged in to edit your profile."
+msgstr ""
+
+msgid "You need to be logged in to report a request for administrator attention"
+msgstr ""
+
+msgid "You previously submitted that exact follow up message for this request."
+msgstr ""
+
+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 ""
+
+msgid "You want to <strong>give your postal address</strong> to the authority in private."
+msgstr ""
+
+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 ""
+
+msgid "You will no longer be emailed updates for those alerts"
+msgstr ""
+
+msgid "You will now be emailed updates about {{track_description}}. <a href=\"{{change_email_alerts_url}}\">Prefer not to receive emails?</a>"
+msgstr ""
+
+msgid "You will only get an answer to your request if you follow up\\nwith the clarification."
+msgstr ""
+
+msgid "You will still be able to view it while logged in to the site. Please reply to this email if you would like to discuss this decision further."
+msgstr ""
+
+msgid "You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>"
+msgstr ""
+
+msgid "You're long overdue a response to your FOI request - "
+msgstr ""
+
+msgid "You're not following anything."
+msgstr ""
+
+msgid "You've now cleared your profile photo"
+msgstr ""
+
+msgid "Your <strong>name will appear publicly</strong>\\n (<a href=\"{{why_url}}\">why?</a>)\\n on this website and in search engines. If you\\n are thinking of using a pseudonym, please\\n <a href=\"{{help_url}}\">read this first</a>."
+msgstr ""
+
+msgid "Your annotations"
+msgstr ""
+
+msgid "Your details, including your email address, have not been given to anyone."
+msgstr ""
+
+msgid "Your e-mail:"
+msgstr ""
+
+msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message."
+msgstr ""
+
+msgid "Your follow up message has been sent on its way."
+msgstr ""
+
+msgid "Your internal review request has been sent on its way."
+msgstr ""
+
+msgid "Your message has been sent. Thank you for getting in touch! We'll get back to you soon."
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent"
+msgstr ""
+
+msgid "Your message to {{recipient_user_name}} has been sent!"
+msgstr ""
+
+msgid "Your message will appear in <strong>search engines</strong>"
+msgstr ""
+
+msgid "Your name and annotation will appear in <strong>search engines</strong>."
+msgstr ""
+
+msgid "Your name, request and any responses will appear in <strong>search engines</strong>\\n (<a href=\"{{url}}\">details</a>)."
+msgstr ""
+
+msgid "Your name:"
+msgstr ""
+
+msgid "Your original message is attached."
+msgstr ""
+
+msgid "Your password has been changed."
+msgstr ""
+
+msgid "Your password:"
+msgstr ""
+
+msgid "Your photo will be shown in public <strong>on the Internet</strong>,\\n wherever you do something on {{site_name}}."
+msgstr ""
+
+msgid "Your request '{{request}}' at {{url}} has been reviewed by moderators."
+msgstr ""
+
+msgid "Your request on {{site_name}} hidden"
+msgstr ""
+
+msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on"
+msgstr ""
+
+msgid "Your request:"
+msgstr ""
+
+msgid "Your response to an FOI request was not delivered"
+msgstr ""
+
+msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions."
+msgstr ""
+
+msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request."
+msgstr ""
+
+msgid "Your {{count}} Freedom of Information request"
+msgid_plural "Your {{count}} Freedom of Information requests"
+msgstr[0] ""
+
+msgid "Your {{count}} annotation"
+msgid_plural "Your {{count}} annotations"
+msgstr[0] ""
+
+msgid "Your {{site_name}} email alert"
+msgstr ""
+
+msgid "Yours faithfully,"
+msgstr ""
+
+msgid "Yours sincerely,"
+msgstr ""
+
+msgid "Yours,"
+msgstr ""
+
+msgid "[FOI #{{request}} email]"
+msgstr ""
+
+msgid "[{{public_body}} request email]"
+msgstr ""
+
+msgid "[{{site_name}} contact email]"
+msgstr ""
+
+msgid "\\n\\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]"
+msgstr ""
+
+msgid "a one line summary of the information you are requesting, \\n\t\t\te.g."
+msgstr ""
+
+msgid "admin"
+msgstr ""
+
+msgid "alaveteli_foi:The software that runs {{site_name}}"
+msgstr ""
+
+msgid "all requests"
+msgstr ""
+
+msgid "also called {{public_body_short_name}}"
+msgstr ""
+
+msgid "an anonymous user"
+msgstr ""
+
+msgid "and"
+msgstr ""
+
+msgid "and update the status accordingly. Perhaps <strong>you</strong> might like to help out by doing that?"
+msgstr ""
+
+msgid "and update the status."
+msgstr ""
+
+msgid "and we'll suggest <strong>what to do next</strong>"
+msgstr ""
+
+msgid "any <a href=\"/list\">new requests</a>"
+msgstr ""
+
+msgid "any <a href=\"/list/successful\">successful requests</a>"
+msgstr ""
+
+msgid "anything"
+msgstr ""
+
+msgid "are long overdue."
+msgstr ""
+
+msgid "at"
+msgstr ""
+
+msgid "authorities"
+msgstr ""
+
+msgid "awaiting a response"
+msgstr ""
+
+msgid "beginning with ‘{{first_letter}}’"
+msgstr ""
+
+msgid "between two dates"
+msgstr ""
+
+msgid "but followupable"
+msgstr ""
+
+msgid "by"
+msgstr ""
+
+msgid "by <strong>{{date}}</strong>"
+msgstr ""
+
+msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "by {{user_link_absolute}}"
+msgstr ""
+
+msgid "comments"
+msgstr ""
+
+msgid "containing your postal address, and asking them to reply to this request.\\n Or you could phone them."
+msgstr ""
+
+msgid "details"
+msgstr ""
+
+msgid "display_status only works for incoming and outgoing messages right now"
+msgstr ""
+
+msgid "during term time"
+msgstr ""
+
+msgid "edit text about you"
+msgstr ""
+
+msgid "even during holidays"
+msgstr ""
+
+msgid "everything"
+msgstr ""
+
+msgid "external"
+msgstr ""
+
+msgid "has reported an"
+msgstr ""
+
+msgid "have delayed."
+msgstr ""
+
+msgid "hide quoted sections"
+msgstr ""
+
+msgid "in term time"
+msgstr ""
+
+msgid "in the category ‘{{category_name}}’"
+msgstr ""
+
+msgid "internal error"
+msgstr ""
+
+msgid "internal reviews"
+msgstr ""
+
+msgid "is <strong>waiting for your clarification</strong>."
+msgstr ""
+
+msgid "just to see how it works"
+msgstr ""
+
+msgid "left an annotation"
+msgstr ""
+
+msgid "made."
+msgstr ""
+
+msgid "matching the tag ‘{{tag_name}}’"
+msgstr ""
+
+msgid "messages from authorities"
+msgstr ""
+
+msgid "messages from users"
+msgstr ""
+
+msgid "move..."
+msgstr ""
+
+msgid "no later than"
+msgstr ""
+
+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=\"{{url}}\">send it to us</a>."
+msgstr ""
+
+msgid "normally"
+msgstr ""
+
+msgid "not requestable due to: {{reason}}"
+msgstr ""
+
+msgid "please sign in as "
+msgstr ""
+
+msgid "requesting an internal review"
+msgstr ""
+
+msgid "requests"
+msgstr ""
+
+msgid "requests which are {{list_of_statuses}}"
+msgstr ""
+
+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 ""
+
+msgid "send a follow up message"
+msgstr ""
+
+msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}."
+msgstr ""
+
+msgid "set to <strong>blank</strong> (empty string) if can't find an address; these emails are <strong>public</strong> as anyone can view with a CAPTCHA"
+msgstr ""
+
+msgid "show quoted sections"
+msgstr ""
+
+msgid "sign in"
+msgstr ""
+
+msgid "simple_date_format"
+msgstr ""
+
+msgid "successful"
+msgstr ""
+
+msgid "successful requests"
+msgstr ""
+
+msgid "that you made to"
+msgstr ""
+
+msgid "the main FOI contact address for {{public_body}}"
+msgstr ""
+
+#. This phrase completes the following sentences:
+#. Request an internal review from...
+#. Send a public follow up message to...
+#. Send a public reply to...
+#. Don't want to address your message to... ?
+msgid "the main FOI contact at {{public_body}}"
+msgstr ""
+
+msgid "the requester"
+msgstr ""
+
+msgid "the {{site_name}} team"
+msgstr ""
+
+msgid "to read"
+msgstr ""
+
+msgid "to send a follow up message."
+msgstr ""
+
+msgid "to {{public_body}}"
+msgstr ""
+
+msgid "unexpected prominence on request event"
+msgstr ""
+
+msgid "unknown reason "
+msgstr ""
+
+msgid "unknown status "
+msgstr ""
+
+msgid "unresolved requests"
+msgstr ""
+
+msgid "unsubscribe"
+msgstr ""
+
+msgid "unsubscribe all"
+msgstr ""
+
+msgid "unsuccessful"
+msgstr ""
+
+msgid "unsuccessful requests"
+msgstr ""
+
+msgid "useful information."
+msgstr ""
+
+msgid "users"
+msgstr ""
+
+msgid "what's that?"
+msgstr ""
+
+msgid "{{count}} FOI requests found"
+msgstr ""
+
+msgid "{{count}} Freedom of Information request to {{public_body_name}}"
+msgid_plural "{{count}} Freedom of Information requests to {{public_body_name}}"
+msgstr[0] ""
+
+msgid "{{count}} person is following this authority"
+msgid_plural "{{count}} people are following this authority"
+msgstr[0] ""
+
+msgid "{{count}} request"
+msgid_plural "{{count}} requests"
+msgstr[0] ""
+
+msgid "{{count}} request made."
+msgid_plural "{{count}} requests made."
+msgstr[0] ""
+
+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 ""
+
+msgid "{{info_request_user_name}} only:"
+msgstr ""
+
+msgid "{{law_used_full}} request - {{title}}"
+msgstr ""
+
+msgid "{{law_used_full}} request GQ - {{title}}"
+msgstr ""
+
+msgid "{{law_used}} requests at {{public_body}}"
+msgstr ""
+
+msgid "{{length_of_time}} ago"
+msgstr ""
+
+msgid "{{list_of_things}} matching text '{{search_query}}'"
+msgstr ""
+
+msgid "{{number_of_comments}} comments"
+msgstr ""
+
+msgid "{{public_body_link}} answered a request about"
+msgstr ""
+
+msgid "{{public_body_link}} was sent a request about"
+msgstr ""
+
+msgid "{{public_body_name}} only:"
+msgstr ""
+
+msgid "{{public_body}} has asked you to explain part of your {{law_used}} request."
+msgstr ""
+
+msgid "{{public_body}} sent a response to {{user_name}}"
+msgstr ""
+
+msgid "{{reason}}, please sign in or make a new account."
+msgstr ""
+
+msgid "{{search_results}} matching '{{query}}'"
+msgstr ""
+
+msgid "{{site_name}} blog and tweets"
+msgstr ""
+
+msgid "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:"
+msgstr ""
+
+msgid "{{site_name}} sends new requests to <strong>{{request_email}}</strong> for this authority."
+msgstr ""
+
+msgid "{{site_name}} users have made {{number_of_requests}} requests, including:"
+msgstr ""
+
+msgid "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code>{{to_value}}</code>"
+msgstr ""
+
+msgid "{{title}} - a Freedom of Information request to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} (Account suspended)"
+msgstr ""
+
+msgid "{{user_name}} - Freedom of Information requests"
+msgstr ""
+
+msgid "{{user_name}} - user profile"
+msgstr ""
+
+msgid "{{user_name}} added an annotation"
+msgstr ""
+
+msgid "{{user_name}} has annotated your {{law_used_short}} \\nrequest. Follow this link to see what they wrote."
+msgstr ""
+
+msgid "{{user_name}} has used {{site_name}} to send you the message below."
+msgstr ""
+
+msgid "{{user_name}} sent a follow up message to {{public_body}}"
+msgstr ""
+
+msgid "{{user_name}} sent a request to {{public_body}}"
+msgstr ""
+
+msgid "{{username}} left an annotation:"
+msgstr ""
+
+msgid "{{user}} ({{user_admin_link}}) 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 ""
+
+msgid "{{user}} made this {{law_used_full}} request"
+msgstr ""
diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb
index 73d1849ea..2c605a139 100644
--- a/spec/controllers/request_controller_spec.rb
+++ b/spec/controllers/request_controller_spec.rb
@@ -1519,8 +1519,8 @@ describe RequestController, "when classifying an information request" do
post_status('rejected')
end
- it 'should not log a status update event' do
- @dog_request.should_not_receive(:log_event)
+ it 'should log a status update event' do
+ @dog_request.should_receive(:log_event)
post_status('rejected')
end
@@ -1573,11 +1573,12 @@ describe RequestController, "when classifying an information request" do
@dog_request.awaiting_description.should == false
@dog_request.described_state.should == 'rejected'
@dog_request.get_last_response_event.should == info_request_events(:useless_incoming_message_event)
- @dog_request.get_last_response_event.calculated_state.should == 'rejected'
+ @dog_request.info_request_events.last.event_type.should == "status_update"
+ @dog_request.info_request_events.last.calculated_state.should == 'rejected'
end
- it 'should not log a status update event' do
- @dog_request.should_not_receive(:log_event)
+ it 'should log a status update event' do
+ @dog_request.should_receive(:log_event)
post_status('rejected')
end
diff --git a/spec/lib/mail_handler/mail_handler_spec.rb b/spec/lib/mail_handler/mail_handler_spec.rb
index 241ce06c1..aa351bd94 100644
--- a/spec/lib/mail_handler/mail_handler_spec.rb
+++ b/spec/lib/mail_handler/mail_handler_spec.rb
@@ -9,6 +9,13 @@ end
describe 'when creating a mail object from raw data' do
+ it "should be able to parse a large email without raising an exception", :focus => true do
+ m = Mail.new
+ m.add_file(:filename => "attachment.data", :content => "a" * (8 * 1024 * 1024))
+ raw_email = "From jamis_buck@byu.edu Mon May 2 16:07:05 2005\r\n#{m.to_s}"
+ lambda { Mail::Message.new(raw_email) }.should_not raise_error
+ end
+
it 'should correctly parse a multipart email with a linebreak in the boundary' do
mail = get_fixture_mail('space-boundary.email')
mail.parts.size.should == 2
diff --git a/spec/models/incoming_message_spec.rb b/spec/models/incoming_message_spec.rb
index 3c924dcb3..ff6a8e34e 100644
--- a/spec/models/incoming_message_spec.rb
+++ b/spec/models/incoming_message_spec.rb
@@ -328,7 +328,18 @@ describe IncomingMessage, " when censoring data" do
data.should == "His email was x\000x\000x\000@\000x\000x\000x\000.\000x\000x\000x\000, indeed"
end
-
+ it 'should handle multibyte characters correctly', :focus => true do
+ orig_data = 'á'
+ data = orig_data.dup
+ @regex_censor_rule = CensorRule.new()
+ @regex_censor_rule.text = 'á'
+ @regex_censor_rule.regexp = true
+ @regex_censor_rule.replacement = 'cat'
+ @regex_censor_rule.last_edit_editor = 'unknown'
+ @regex_censor_rule.last_edit_comment = 'none'
+ @im.info_request.censor_rules << @regex_censor_rule
+ lambda{ @im.binary_mask_stuff!(data, "text/plain") }.should_not raise_error
+ end
def pdf_replacement_test(use_ghostscript_compression)
config = MySociety::Config.load_default()
diff --git a/spec/models/info_request_spec.rb b/spec/models/info_request_spec.rb
index db58da4bd..c9ee57c74 100644
--- a/spec/models/info_request_spec.rb
+++ b/spec/models/info_request_spec.rb
@@ -607,4 +607,207 @@ describe InfoRequest do
@info_request.user_json_for_api.should == {:name => 'Anonymous user'}
end
end
+ describe "#set_described_state and #log_event" do
+ context "a request" do
+ let(:request) { InfoRequest.create!(:title => "my request",
+ :public_body => public_bodies(:geraldine_public_body),
+ :user => users(:bob_smith_user)) }
+
+ context "a series of events on a request" do
+ it "should have sensible events after the initial request has been made" do
+ # An initial request is sent
+ # The logic that changes the status when a message is sent is mixed up
+ # in OutgoingMessage#send_message. So, rather than extract it (or call it)
+ # let's just duplicate what it does here for the time being.
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+
+ events = request.info_request_events
+ events.count.should == 1
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ end
+
+ it "should have sensible events after a response is received to a request" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # A response is received
+ # This is normally done in InfoRequest#receive
+ request.awaiting_description = true
+ request.log_event("response", {})
+
+ events = request.info_request_events
+ events.count.should == 2
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "response"
+ events[1].described_state.should be_nil
+ # TODO: Should calculated_status in this situation be "waiting_classification"?
+ # This would allow searches like "latest_status: waiting_classification" to be
+ # available to the user in "Advanced search"
+ events[1].calculated_state.should be_nil
+ end
+
+ it "should have sensible events after a request is classified by the requesting user" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # A response is received
+ request.awaiting_description = true
+ request.log_event("response", {})
+ # The request is classified by the requesting user
+ # This is normally done in RequestController#describe_state
+ request.log_event("status_update", {})
+ request.set_described_state("waiting_response")
+
+ events = request.info_request_events
+ events.count.should == 3
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "response"
+ events[1].described_state.should be_nil
+ events[1].calculated_state.should be_nil
+ events[2].event_type.should == "status_update"
+ events[2].described_state.should == "waiting_response"
+ events[2].calculated_state.should == "waiting_response"
+ end
+
+ it "should have sensible events after a normal followup is sent" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # A response is received
+ request.awaiting_description = true
+ request.log_event("response", {})
+ # The request is classified by the requesting user
+ request.log_event("status_update", {})
+ request.set_described_state("waiting_response")
+ # A normal follow up is sent
+ # This is normally done in OutgoingMessage#send_message
+ request.log_event('followup_sent', {})
+ request.set_described_state('waiting_response')
+
+ events = request.info_request_events
+ events.count.should == 4
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "response"
+ events[1].described_state.should be_nil
+ events[1].calculated_state.should be_nil
+ events[2].event_type.should == "status_update"
+ events[2].described_state.should == "waiting_response"
+ events[2].calculated_state.should == "waiting_response"
+ events[3].event_type.should == "followup_sent"
+ events[3].described_state.should == "waiting_response"
+ events[3].calculated_state.should == "waiting_response"
+ end
+
+ it "should have sensible events after a user classifies the request after a follow up" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # A response is received
+ request.awaiting_description = true
+ request.log_event("response", {})
+ # The request is classified by the requesting user
+ request.log_event("status_update", {})
+ request.set_described_state("waiting_response")
+ # A normal follow up is sent
+ request.log_event('followup_sent', {})
+ request.set_described_state('waiting_response')
+ # The request is classified by the requesting user
+ request.log_event("status_update", {})
+ request.set_described_state("waiting_response")
+
+ events = request.info_request_events
+ events.count.should == 5
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "response"
+ events[1].described_state.should be_nil
+ events[1].calculated_state.should be_nil
+ events[2].event_type.should == "status_update"
+ events[2].described_state.should == "waiting_response"
+ events[2].calculated_state.should == "waiting_response"
+ events[3].event_type.should == "followup_sent"
+ events[3].described_state.should == "waiting_response"
+ events[3].calculated_state.should == "waiting_response"
+ events[4].event_type.should == "status_update"
+ events[4].described_state.should == "waiting_response"
+ events[4].calculated_state.should == "waiting_response"
+ end
+ end
+
+ context "another series of events on a request" do
+ it "should have sensible event states" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # An internal review is requested
+ request.log_event('followup_sent', {})
+ request.set_described_state('internal_review')
+
+ events = request.info_request_events
+ events.count.should == 2
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "followup_sent"
+ events[1].described_state.should == "internal_review"
+ events[1].calculated_state.should == "internal_review"
+ end
+
+ it "should have sensible event states" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # An internal review is requested
+ request.log_event('followup_sent', {})
+ request.set_described_state('internal_review')
+ # The user marks the request as rejected
+ request.log_event("status_update", {})
+ request.set_described_state("rejected")
+
+ events = request.info_request_events
+ events.count.should == 3
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "followup_sent"
+ events[1].described_state.should == "internal_review"
+ events[1].calculated_state.should == "internal_review"
+ events[2].event_type.should == "status_update"
+ events[2].described_state.should == "rejected"
+ events[2].calculated_state.should == "rejected"
+ end
+ end
+
+ context "another series of events on a request" do
+ it "should have sensible event states" do
+ # An initial request is sent
+ request.log_event('sent', {})
+ request.set_described_state('waiting_response')
+ # The user marks the request as successful (I know silly but someone did
+ # this in https://www.whatdotheyknow.com/request/family_support_worker_redundanci)
+ request.log_event("status_update", {})
+ request.set_described_state("successful")
+
+ events = request.info_request_events
+ events.count.should == 2
+ events[0].event_type.should == "sent"
+ events[0].described_state.should == "waiting_response"
+ events[0].calculated_state.should == "waiting_response"
+ events[1].event_type.should == "status_update"
+ events[1].described_state.should == "successful"
+ events[1].calculated_state.should == "successful"
+ end
+ end
+ end
+ end
end