diff options
-rw-r--r-- | app/controllers/request_controller.rb | 12 | ||||
-rw-r--r-- | app/views/layouts/default.rhtml | 2 | ||||
-rw-r--r-- | app/views/request/_search_ahead.rhtml | 13 | ||||
-rw-r--r-- | app/views/request/new.rhtml | 204 | ||||
-rw-r--r-- | app/views/request/preview.rhtml | 6 | ||||
-rw-r--r-- | config/routes.rb | 1 | ||||
-rw-r--r-- | locale/cy/app.po | 3684 | ||||
-rw-r--r-- | locale/de/app.po | 920 | ||||
-rw-r--r-- | locale/es/app.po | 788 | ||||
-rw-r--r-- | locale/fr/app.po | 513 | ||||
-rw-r--r-- | locale/sq/app.po | 996 | ||||
-rw-r--r-- | locale/sr/app.po | 491 | ||||
-rw-r--r-- | locale/sr@latin/app.po | 491 | ||||
l--------- | public/asktheeu-theme | 1 | ||||
-rw-r--r-- | public/javascripts/ba-throttle-debounce.js | 9 | ||||
-rw-r--r-- | public/stylesheets/main.css | 33 | ||||
-rw-r--r-- | spec/controllers/request_controller_spec.rb | 31 |
17 files changed, 5856 insertions, 2339 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index e446854ab..f36fae463 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -736,5 +736,17 @@ class RequestController < ApplicationController return end end + + # Type ahead search + def search_typeahead + # Since acts_as_xapian doesn't support the Partial match flag, we work around it + # by making the last work a wildcard, which is quite the same + query = params[:q] + '*' + + query = query.split(' ').join(' OR ') # XXX: HACK for OR instead of default AND! + @xapian_requests = perform_search([InfoRequestEvent], query, 'relevant', 'request_collapse', 5) + + render :partial => "request/search_ahead.rhtml" + end end diff --git a/app/views/layouts/default.rhtml b/app/views/layouts/default.rhtml index 94ec5a956..a14dfcf8e 100644 --- a/app/views/layouts/default.rhtml +++ b/app/views/layouts/default.rhtml @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="<%= I18n.locale %>"> <head> + <script type="text/javascript" src="/javascripts/jquery.js"></script> <% if @profile_photo_javascript %> - <script type="text/javascript" src="/javascripts/jquery.js"></script> <script type="text/javascript" src="/javascripts/jquery.Jcrop.js"></script> <script type="text/javascript" src="/javascripts/profile_photo.js"></script> <link rel="stylesheet" href="/stylesheets/jquery.Jcrop.css" type="text/css" > diff --git a/app/views/request/_search_ahead.rhtml b/app/views/request/_search_ahead.rhtml new file mode 100644 index 000000000..053b10146 --- /dev/null +++ b/app/views/request/_search_ahead.rhtml @@ -0,0 +1,13 @@ +<p> + <div id="request_search_ahead_results"> + <% if @xapian_requests.results.size > 0 %> + <h3>Possibly related requests:</h3> + <% end %> + <% for result in @xapian_requests.results %> + <%= render :partial => 'request/request_listing_short_via_event', :locals => { :event => result[:model], :info_request => result[:model].info_request } %> + <% end %> + </div> +</p> + + + diff --git a/app/views/request/new.rhtml b/app/views/request/new.rhtml index b8625a8e6..e8dd395a4 100644 --- a/app/views/request/new.rhtml +++ b/app/views/request/new.rhtml @@ -1,3 +1,14 @@ +<script type="text/javascript" src="/javascripts/ba-throttle-debounce.js"></script> +<script> + $(document).ready(function(){ + // Avoid triggering too often (on each keystroke) by using the debounce jQuery plugin: + // http://benalman.com/projects/jquery-throttle-debounce-plugin/ + $("#typeahead_search").keypress($.debounce( 300, function() { + $("#typeahead_response").load("<%=search_ahead_url%>?q="+encodeURI(this.value)); + })); + }); +</script> + <% @title = _("Make an {{law_used_short}} request to '{{public_body_name}}'",:law_used_short=>h(@info_request.law_used_short),:public_body_name=>h(@info_request.public_body.name)) %> <% if @existing_request %> @@ -10,107 +21,90 @@ </ul></div> <% end %> -<%= foi_error_messages_for :info_request, :outgoing_message %> + <%= foi_error_messages_for :info_request, :outgoing_message %> -<div id="request_advice"> - <h1><%= _('Read this before writing your {{info_request_law_used_full}} request', :info_request_law_used_full=>h(@info_request.law_used_full)) %></h1> - <ul> - <li> - <% form_tag("http://www.google.co.uk/search", {:id => "search_body_website_form", :method => "get"} ) do %> - <p> - <%= _('First,') %> - <% if !@info_request.public_body.publication_scheme.empty? %> - <%= _('<strong>browse</strong> the authority\'s <a href="%s">publication scheme</a> or <strong>search</strong> their web site ...') % [@info_request.public_body.publication_scheme] %> + <h1><%= _('2. Ask for Information') %></h1> + + <% form_for(:info_request, @info_request, :html => { :id => 'write_form' } ) do |f| %> + + <div id="request_header"> + <p> + <label class="form_label" for="info_request_public_body_id"><%= _('To:') %></label> + <span id="to_public_body"><%=h(@info_request.public_body.name)%></span> + <div class="form_item_note"> + <% if @info_request.public_body.info_requests.size > 0 %> + <%= _("Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request.", :public_body_name=>h(@info_request.public_body.name), :url=>public_body_url(@info_request.public_body)) %> <% else %> - <%= _('<strong>search</strong> the authority\'s web site ...') %> + <%= _("Browse <a href='{{url}}'>other requests</a> for examples of how to word your request.", :url=>request_list_url) %> <% end %> - <% if !@info_request.public_body.calculated_home_page.nil? %> - <br> - <%= text_field_tag 'q', params[:q], { :size => 20 } %> - <%= hidden_field_tag 'as_sitesearch', @info_request.public_body.calculated_home_page %> - <%= submit_tag _("Search") %> - <% end %> - <br> - ... <%= _('to check that the info isn\'t already published.') %> - </p> - <% end %> - </li> + </div> + </p> - <li> - <% if @info_request.public_body.info_requests.size > 0 %> - <%= _("Browse <a href='{{url}}'>other requests</a> to '{{public_body_name}}' for examples of how to word your request.", :public_body_name=>h(@info_request.public_body.name), :url=>public_body_url(@info_request.public_body)) %> - <% else %> - <%= _('Browse <a href="%s">other requests</a> for examples of how to word your request.') % [request_list_url] %> + <div id="request_header_text"> + <% if @info_request.public_body.has_notes? %> + <h3><%= _('Special note for this authority!') %></h3> + <p><%= @info_request.public_body.notes_as_html %></p> <% end %> - </li> - <li><%= _('Write your request in <strong>simple, precise language</strong>.') %></li> - <li><%= _('Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries.') %></li> - <li><%= _('Keep it <strong>focused</strong>, you\'ll be more likely to get what you want (<a href="%s">why?</a>).') % [help_requesting_path + '#focused'] %></li> - <li><%= _('This site is <strong>public</strong>. Everything you type and any response will be published.') %></li> - </ul> - - <% if @info_request.public_body.has_notes? %> - <h1><%= _('Special note for this authority!') %></h1> - <ul> - <li><p><%= @info_request.public_body.notes_as_html %></p></li> - </ul> - <% end %> - <% if @info_request.public_body.eir_only? %> - <h1><%= _('Please ask for environmental information only') %></h1> - - <p><%= _('The Freedom of Information Act <strong>does not apply</strong> to') %> <%=h(@info_request.public_body.name)%>. - <%= _('However, you have the right to request environmental - information under a different law') %> (<a href="/help/requesting#eir">explanation</a>). - <%= _('This covers a very wide spectrum of information about the state of - the <strong>natural and built environment</strong>, such as:') %> + <% if @info_request.public_body.eir_only? %> + <h3><%= _('Please ask for environmental information only') %></h3> + + <p><%= _('The Freedom of Information Act <strong>does not apply</strong> to') %> <%=h(@info_request.public_body.name)%>. + <%= _('However, you have the right to request environmental + information under a different law') %> (<a href="/help/requesting#eir">explanation</a>). + <%= _('This covers a very wide spectrum of information about the state of + the <strong>natural and built environment</strong>, such as:') %> + <ul> + <li><%= _('Air, water, soil, land, flora and fauna (including how these effect + human beings)') %></li> + <li><%= _('Information on emissions and discharges (e.g. noise, energy, + radiation, waste materials)') %></li> + <li><%= _('Human health and safety') %></li> + <li><%= _('Cultural sites and built structures (as they may be affected by the + environmental factors listed above)') %></li> + <li><%= _('Plans and administrative measures that affect these matters') %></li> + </ul> + + <p><%= _('Please only request information that comes under those categories, <strong>do not waste your + time</strong> or the time of the public authority by requesting unrelated information.') %></p> + <% end %> + </div> + + <p> + <label class="form_label" for="info_request_title"><%= _('Summary:') %></label> + <%= f.text_field :title, :size => 50, :id =>"typeahead_search" %> + </p> + <div class="form_item_note"> + (<%= _('a one line summary of the information you are requesting, + e.g.') %> + <% if @info_request.law_used == 'eir' %> + <%= _("'Pollution levels over time for the River Tyne'") %> + <% else %> + <%= _("'Crime statistics by ward level for Wales'") %> + <% end %> + ) + </div> + <div id="typeahead_response"> + </div> + </div> + + <div id="request_advice"> <ul> - <li><%= _('Air, water, soil, land, flora and fauna (including how these effect - human beings)') %></li> - <li><%= _('Information on emissions and discharges (e.g. noise, energy, - radiation, waste materials)') %></li> - <li><%= _('Human health and safety') %></li> - <li><%= _('Cultural sites and built structures (as they may be affected by the - environmental factors listed above)') %></li> - <li><%= _('Plans and administrative measures that affect these matters') %></li> + <li><%= _('Write your request in <strong>simple, precise language</strong>.') %></li> + <li><%= _('Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries.') %></li> + <li><%= _('Keep it <strong>focused</strong>, you\'ll be more likely to get what you want (<a href="%s">why?</a>).') % [help_requesting_path + '#focused'] %></li> </ul> + </div> - <p><%= _('Please only request information that comes under those categories, <strong>do not waste your - time</strong> or the time of the public authority by requesting unrelated information.') %></p> - <% end %> -</div> - -<% form_for(:info_request, @info_request, :html => { :id => 'write_form' } ) do |f| %> - - <div id="request_form"> - <h1> - <label class="form_label" for="info_request_public_body_id"><%= _('To:') %></label> - <span id="to_public_body"><%=h(@info_request.public_body.name)%></span> - </h1> - - <p> - <label class="form_label" for="info_request_title"><%= _('Summary:') %></label> - <%= f.text_field :title, :size => 50 %> - </p> - <div class="form_item_note"> - (<%= _('a one line summary of the information you are requesting, - e.g.') %> - <% if @info_request.law_used == 'eir' %> - <%= _("'Pollution levels over time for the River Tyne'") %> - <% else %> - <%= _("'Crime statistics by ward level for Wales'") %> - <% end %> - ) - </div> - - <% fields_for :outgoing_message do |o| %> - <p> - <label class="form_label" for="outgoing_message_body"><%= _('Your request:') %></label> - <%= o.text_area :body, :rows => 20, :cols => 60 %> - </p> - <% end %> - + <div id="request_form"> + <% fields_for :outgoing_message do |o| %> + <p> + <label class="form_label" for="outgoing_message_body"><%= _('Your request:') %></label> + <%= o.text_area :body, :rows => 20, :cols => 60 %> + </p> + <% end %> + <% if !@user %> <p class="form_note"> <%= _('Everything that you enter on this page, including <strong>your name</strong>, @@ -126,18 +120,18 @@ this website forever (<a href="%s">why?</a>).') % [help_privacy_path+"#public_request"] %> </p> <% end %> - - <p class="form_note"> - <%= _('<strong> Can I request information about myself?</strong> - <a href="%s">No! (Click here for details)</a>') % [help_requesting_path+"#data_protection"] %> - </p> - - <div class="form_button"> - <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> - <%= hidden_field_tag(:submitted_new_request, 1 ) %> - <%= hidden_field_tag(:preview, 1 ) %> - <%= submit_tag _("Preview your public request") %> - </div> + + <p class="form_note"> + <%= _('<strong> Can I request information about myself?</strong> + <a href="%s">No! (Click here for details)</a>') % [help_requesting_path+"#data_protection"] %> + </p> + + <div class="form_button"> + <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> + <%= hidden_field_tag(:submitted_new_request, 1 ) %> + <%= hidden_field_tag(:preview, 1 ) %> + <%= submit_tag _("Preview your public request") %> + </div> <% if !@info_request.tag_string.empty? %> <p class="form_note"> @@ -148,8 +142,8 @@ <strong>Tags:</strong> <%=h @info_request.tag_string %> </p> <% end %> - - </div> + + </div> <% end %> diff --git a/app/views/request/preview.rhtml b/app/views/request/preview.rhtml index 6f6ecb2f9..1dab22960 100644 --- a/app/views/request/preview.rhtml +++ b/app/views/request/preview.rhtml @@ -2,7 +2,7 @@ <% form_for(:info_request, @info_request, :html => { :id => 'preview_form' } ) do |f| %> - <h1><%= _('Now preview your request') %></h1> + <h1><%= _('3. Now check your request') %></h1> <ul> <li><%= _('Check you haven\'t included any <strong>personal information</strong>.') %></li> <li><%= _('Your name, request and any responses will appear in <strong>search engines</strong> @@ -37,8 +37,8 @@ <%= f.hidden_field(:tag_string) %> <%= hidden_field_tag(:submitted_new_request, 1) %> <%= hidden_field_tag(:preview, 0 ) %> - <%= submit_tag _("Re-edit this request"), :name => 'reedit' %> - <%= submit_tag _("Send public ") + h(@info_request.law_used_full) + " request", :name => 'submit' %> + <%= submit_tag _("Edit this request"), :name => 'reedit' %> + <%= submit_tag _("Send request"), :name => 'submit' %> </p> <% if !@info_request.tag_string.empty? %> diff --git a/config/routes.rb b/config/routes.rb index c16c10eb9..7da279002 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -53,6 +53,7 @@ ActionController::Routing::Routes.draw do |map| request.upload_response "/upload/request/:url_title", :action => 'upload_response' + request.search_ahead '/request_search_ahead', :action => 'search_typeahead' end # Use /profile for things to do with the currently signed in user. diff --git a/locale/cy/app.po b/locale/cy/app.po new file mode 100644 index 000000000..45ad1d348 --- /dev/null +++ b/locale/cy/app.po @@ -0,0 +1,3684 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# <alex@alexskene.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: alaveteli\n" +"Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-29 18:04+0000\n" +"Last-Translator: skenaja <alex@alexskene.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n" + +#: app/views/user/set_profile_about_me.rhtml:14 +msgid "" +" This will appear on your WhatDoTheyKnow profile, to make it\n" +" easier for others to get involved with what you're doing." +msgstr "" + +#: app/views/comment/_comment_form.rhtml:16 +msgid "" +" (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " +"policy</a>)" +msgstr "" + +#: app/views/request/upload_response.rhtml:40 +msgid "" +" (<strong>patience</strong>, especially for large files, it may take a " +"while!)" +msgstr "" + +#: app/views/user/show.rhtml:59 +msgid " (you)" +msgstr "" + +#: app/views/user/signchangepassword_send_confirm.rhtml:18 +msgid "" +" <strong>Note:</strong>\n" +" We will send you an email. Follow the instructions in it to change\n" +" your password." +msgstr "" + +#: app/views/user/contact.rhtml:35 +msgid " <strong>Privacy note:</strong> Your email address will be given to" +msgstr "" + +#: app/views/comment/new.rhtml:33 +msgid " <strong>Summarise</strong> the content of any information returned. " +msgstr "" + +#: app/views/comment/new.rhtml:23 +msgid " Advise on how to <strong>best clarify</strong> the request." +msgstr "" + +#: app/views/comment/new.rhtml:49 +msgid "" +" Ideas on what <strong>other documents to request</strong> which the " +"authority may hold. " +msgstr "" + +#: app/views/public_body/view_email.rhtml:30 +msgid "" +" If you know the address to use, then please <a href=\"%s\">send it to us</a>.\n" +" You may be able to find the address on their website, or by phoning them up and asking." +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:26 +msgid "" +" Include relevant links, such as to a campaign page, your blog or a\n" +" twitter account. They will be made clickable. \n" +" e.g." +msgstr "" + +#: app/views/comment/new.rhtml:27 +msgid "" +" Link to the information requested, if it is <strong>already " +"available</strong> on the Internet. " +msgstr "" + +#: app/views/comment/new.rhtml:29 +msgid "" +" Offer better ways of <strong>wording the request</strong> to get the " +"information. " +msgstr "" + +#: app/views/user/sign.rhtml:26 +msgid " Please sign in or make a new account." +msgstr "" + +#: app/views/comment/new.rhtml:34 +msgid "" +" Say how you've <strong>used the information</strong>, with links if " +"possible." +msgstr "" + +#: app/views/comment/new.rhtml:28 +msgid "" +" Suggest <strong>where else</strong> the requester might find the " +"information. " +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:11 +msgid " What are you investigating using Freedom of Information? " +msgstr "" + +#: app/controllers/comment_controller.rb:75 +msgid " You are already being emailed updates about the request." +msgstr "" + +#: app/controllers/comment_controller.rb:73 +msgid " You will also be emailed updates about the request." +msgstr "" + +#: app/views/request/upload_response.rhtml:5 +msgid " made by " +msgstr "" + +#: app/views/user/show.rhtml:123 +msgid " made no Freedom of Information requests using this site." +msgstr "" + +#: app/views/user/contact.rhtml:36 +msgid " when you send this message." +msgstr "" + +#: app/views/public_body/show.rhtml:80 +msgid "%d Freedom of Information request" +msgid_plural "%d Freedom of Information requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: app/views/general/frontpage.rhtml:36 +msgid "%d request" +msgid_plural "%d requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: app/views/request/new.rhtml:102 +msgid "'Crime statistics by ward level for Wales'" +msgstr "" + +#: app/views/request/new.rhtml:100 +msgid "'Pollution levels over time for the River Tyne'" +msgstr "" + +#: app/controllers/user_controller.rb:354 +msgid "" +",\n" +"\n" +"\n" +"\n" +"Yours,\n" +"\n" +"{{user_name}}" +msgstr "" + +#: app/views/request/_after_actions.rhtml:9 +msgid "<a href=\"%s\">Add an annotation</a> (to help the requester or others)" +msgstr "" + +#: app/views/public_body/list.rhtml:29 +msgid "<a href=\"%s\">Are we missing a public authority?</a>." +msgstr "" + +#: app/views/request/_sidebar.rhtml:45 +msgid "" +"<a href=\"%s\">Are you the owner of\n" +" any commercial copyright on this page?</a>" +msgstr "" + +#: app/views/general/search.rhtml:53 +msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." +msgstr "" + +#: app/views/general/exception_caught.rhtml:13 +msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" +msgstr "" + +#: app/views/public_body/show.rhtml:50 +msgid "" +"<a href=\"%s\">Make a new Freedom of Information request</a> to " +"{{public_body_name}}" +msgstr "" + +#: app/views/public_body/list.rhtml:43 +msgid "<a href=\"%s\">can't find the one you want?</a>" +msgstr "" + +#: app/views/request/_followup.rhtml:42 app/views/request/_followup.rhtml:49 +#: app/views/request/show.rhtml:76 app/views/request/show.rhtml:80 +msgid "<a href=\"%s\">details</a>" +msgstr "" + +#: app/views/request/_followup.rhtml:77 +msgid "<a href=\"%s\">what's that?</a>" +msgstr "" + +#: app/controllers/request_game_controller.rb:23 +msgid "" +"<p>All done! Thank you very much for your help.</p><p>There are <a " +"href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:394 +msgid "" +"<p>Thank you! Here are some ideas on what to do next:</p>\n" +" <ul>\n" +" <li>To send your request to another authority, first copy the text of your request below, then <a href=\"%s\">find the other authority</a>.</li>\n" +" <li>If you would like to contest the authority's claim that they do not hold the information, here is \n" +" <a href=\"%s\">how to complain</a>.\n" +" </li>\n" +" <li>We have <a href=\"%s\">suggestions</a>\n" +" on other means to answer your question.\n" +" </li>\n" +" </ul>\n" +" " +msgstr "" + +#: app/controllers/request_controller.rb:388 +msgid "" +"<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " +"should have got a response promptly, and normally before the end of " +"<strong>{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:384 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" +"{{date_response_required_by}}</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:421 +msgid "" +"<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " +"response within 20 days, or be told if it will take longer (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:424 +msgid "" +"<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " +"the error was a delivery failure, and you can find an up to date FOI email " +"address for the authority, please tell us using the form below.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:391 +msgid "" +"<p>Thank you! Your request is long overdue, by more than 40 working days. " +"Most requests should be answered within 20 working days. You might like to " +"complain about this, see below.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:494 +msgid "" +"<p>Thanks for changing the text about you on your profile.</p>\n" +" <p><strong>Next...</strong> You can upload a profile photograph too.</p>" +msgstr "" + +#: app/controllers/user_controller.rb:416 +msgid "" +"<p>Thanks for updating your profile photo.</p>\n" +" <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:279 +msgid "" +"<p>We recommend that you edit your request and remove the email address.\n" +" If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:410 +msgid "" +"<p>We're glad you got all the information that you wanted. If you write " +"about or make use of the information, please come back and add an annotation" +" below saying what you did.</p><p>If you found WhatDoTheyKnow useful, <a " +"href=\"%s\">make a donation</a> to the charity which runs it.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:413 +msgid "" +"<p>We're glad you got some of the information that you wanted. If you found " +"WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " +"which runs it.</p><p>If you want to try and get the rest of the information," +" here's what to do now.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:277 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply (<a href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:275 +msgid "" +"<p>You do not need to include your email in the request in order to get a " +"reply, as we will ask for it on the next screen (<a " +"href=\"%s\">details</a>).</p>" +msgstr "" + +#: app/controllers/request_controller.rb:283 +msgid "" +"<p>Your request contains a <strong>postcode</strong>. Unless it directly " +"relates to the subject of your request, please remove any address as it will" +" <strong>appear publicly on the Internet</strong>.</p>" +msgstr "" + +#: app/controllers/request_controller.rb:306 +msgid "" +"<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" +" <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" +" replied by then.</p>\n" +" <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an \n" +" annotation below telling people about your writing.</p>" +msgstr "" + +#: app/views/user/confirm.rhtml:11 +msgid "" +"<small>If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way.</small>\n" +"</p>" +msgstr "" + +#: app/views/request/new.rhtml:131 +msgid "" +"<strong> Can I request information about myself?</strong>\n" +"\t\t\t<a href=\"%s\">No! (Click here for details)</a>" +msgstr "" + +#: app/views/general/search.rhtml:130 +msgid "" +"<strong><code>commented_by:tony_bowden</code></strong> to search annotations" +" made by Tony Bowden, typing the name as in the URL." +msgstr "" + +#: app/views/general/search.rhtml:132 +msgid "" +"<strong><code>filetype:pdf</code></strong> to find all responses with PDF " +"attachments. Or try these: <code>{{list_of_file_extensions}}</code>" +msgstr "" + +#: app/views/general/search.rhtml:131 +msgid "" +"<strong><code>request:</code></strong> to restrict to a specific request, " +"typing the title as in the URL." +msgstr "" + +#: app/views/general/search.rhtml:129 +msgid "" +"<strong><code>requested_by:julian_todd</code></strong> to search requests " +"made by Julian Todd, typing the name as in the URL." +msgstr "" + +#: app/views/general/search.rhtml:128 +msgid "" +"<strong><code>requested_from:home_office</code></strong> to search requests " +"from the Home Office, typing the name as in the URL." +msgstr "" + +#: app/views/general/search.rhtml:126 +msgid "" +"<strong><code>status:</code></strong> to select based on the status or " +"historical status of the request, see the <a href=\"%s\">table of " +"statuses</a> below." +msgstr "" + +#: app/views/general/search.rhtml:134 +msgid "" +"<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" +" and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" +" can be present, you have to put <code>AND</code> explicitly if you only want results them all present." +msgstr "" + +#: app/views/general/search.rhtml:127 +msgid "" +"<strong><code>variety:</code></strong> to select type of thing to search " +"for, see the <a href=\"%s\">table of varieties</a> below." +msgstr "" + +#: app/views/comment/new.rhtml:56 +msgid "" +"<strong>Advice</strong> on how to get a response that will satisfy the " +"requester. </li>" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:56 +msgid "<strong>All the information</strong> has been sent" +msgstr "" + +#: app/views/request/_followup.rhtml:82 +msgid "" +"<strong>Anything else</strong>, such as clarifying, prompting, thanking" +msgstr "" + +#: app/views/request/details.rhtml:12 +msgid "" +"<strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" +"a good internal knowledge of user behaviour on WhatDoTheyKnow. How, \n" +"why and by whom requests are categorised is not straightforward, and there will\n" +"be user error and ambiguity. You will also need to understand FOI law, and the\n" +"way authorities use it. Plus you'll need to be an elite statistician. Please\n" +"<a href=\"%s\">contact us</a> with questions." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:28 +msgid "<strong>Clarification</strong> has been requested" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:14 +msgid "" +"<strong>No response</strong> has been received\n" +" <small>(maybe there's just an acknowledgement)</small>" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:30 +msgid "" +"<strong>Note:</strong>\n" +" We will send an email to your new email address. Follow the\n" +" instructions in it to confirm changing your email." +msgstr "" + +#: app/views/user/contact.rhtml:32 +msgid "" +"<strong>Note:</strong> You're sending a message to yourself, presumably\n" +" to try out how it works." +msgstr "" + +#: app/views/request/preview.rhtml:31 +msgid "" +"<strong>Privacy note:</strong> If you want to request private information about\n" +" yourself then <a href=\"%s\">click here</a>." +msgstr "" + +#: app/views/user/set_crop_profile_photo.rhtml:35 +msgid "" +"<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" +" wherever you do something on WhatDoTheyKnow." +msgstr "" + +#: app/views/request/followup_preview.rhtml:37 +msgid "" +"<strong>Privacy warning:</strong> Your message, and any response\n" +" to it, will be displayed publicly on this website." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:52 +msgid "<strong>Some of the information</strong> has been sent " +msgstr "" + +#: app/views/general/exception_caught.rhtml:17 +msgid "<strong>Technical details:</strong>" +msgstr "" + +#: app/views/comment/new.rhtml:35 +msgid "<strong>Thank</strong> the public authority or " +msgstr "" + +#: app/views/request/new.rhtml:23 +msgid "" +"<strong>browse</strong> the authority's <a href=\"%s\">publication " +"scheme</a> or <strong>search</strong> their web site ..." +msgstr "" + +#: app/views/request/show.rhtml:84 +msgid "<strong>did not have</strong> the information requested." +msgstr "" + +#: app/views/request/new.rhtml:25 +msgid "<strong>search</strong> the authority's web site ..." +msgstr "<strong>chwilio'r</strong> wefan yr awdurdod ..." + +#: app/views/comment/new.rhtml:45 +msgid "" +"A <strong>summary</strong> of the response if you have received it by post. " +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:34 +msgid "A response will be sent <strong>by post</strong>" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:20 +msgid "About you:" +msgstr "" + +#: app/models/info_request_event.rb:288 +msgid "Acknowledgement" +msgstr "" + +#: app/views/request/_sidebar.rhtml:5 +msgid "Act on what you've learnt" +msgstr "" + +#: app/views/comment/new.rhtml:14 +msgid "Add an annotation to " +msgstr "" + +#: app/views/request/show_response.rhtml:47 +msgid "" +"Add an annotation to your request with choice quotes, or\n" +" a <strong>summary of the response</strong>." +msgstr "" + +#: app/models/user.rb:54 +msgid "Admin level is not included in list" +msgstr "" + +#: app/views/request_mailer/requires_admin.rhtml:9 +msgid "Administration URL:" +msgstr "" + +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 +msgid "Advanced search tips" +msgstr "" + +#: app/views/comment/new.rhtml:52 +msgid "" +"Advise on whether the <strong>refusal is legal</strong>, and how to complain" +" about it if not." +msgstr "" + +#: app/views/request/new.rhtml:69 +msgid "" +"Air, water, soil, land, flora and fauna (including how these effect\n" +" human beings)" +msgstr "" + +#: app/models/info_request_event.rb:304 +msgid "All information sent" +msgstr "" + +#: app/views/public_body/list.rhtml:5 +msgid "Alphabet" +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:12 +msgid "" +"Although all responses are automatically published, we depend on\n" +"you, the original requester, to evaluate them." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:70 +msgid "An <strong>error message</strong> has been received" +msgstr "" + +#: app/views/user/show.rhtml:34 +msgid "Annotations" +msgstr "" + +#: app/views/comment/new.rhtml:17 +msgid "" +"Annotations are so anyone, including you, can help the requester with their " +"request. For example:" +msgstr "" + +#: app/views/comment/new.rhtml:69 +msgid "" +"Annotations will be posted publicly here, and are \n" +" <strong>not</strong> sent to {{public_body_name}}." +msgstr "" + +#: app/views/request/_after_actions.rhtml:6 +msgid "Anyone:" +msgstr "" + +#: app/views/request/new.rhtml:47 +msgid "" +"Ask for <strong>specific</strong> documents or information, this site is not" +" suitable for general enquiries." +msgstr "" + +#: app/views/request/show_response.rhtml:31 +msgid "" +"At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" +" (<a href=\"%s\">more details</a>)." +msgstr "" + +#: app/views/request/upload_response.rhtml:33 +msgid "Attachment (optional):" +msgstr "" + +#: app/models/info_request.rb:776 +msgid "Awaiting classification." +msgstr "" + +#: app/models/info_request.rb:796 +msgid "Awaiting internal review." +msgstr "" + +#: app/models/info_request.rb:778 +msgid "Awaiting response." +msgstr "" + +#: app/views/request/new.rhtml:43 +msgid "" +"Browse <a href=\"%s\">other requests</a> for examples of how to word your " +"request." +msgstr "" + +#: app/views/request/new.rhtml:41 +msgid "" +"Browse <a href='%s'>other requests</a> to '{{public_body_name}}' for " +"examples of how to word your request." +msgstr "" + +#: app/views/request/show.rhtml:79 +msgid "" +"By law, under all circumstances, {{public_body_link}} should have responded " +"by now" +msgstr "" + +#: app/views/request/show.rhtml:71 +msgid "" +"By law, {{public_body_link}} should normally have responded " +"<strong>promptly</strong> and" +msgstr "" + +#: app/views/general/search.rhtml:17 +msgid "" +"Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" +" it</a>." +msgstr "" + +#: app/controllers/track_controller.rb:143 +msgid "Cancel a {{site_name}} alert" +msgstr "" + +#: app/controllers/track_controller.rb:173 +msgid "Cancel some {{site_name}} alerts" +msgstr "" + +#: locale/model_attributes.rb:46 +msgid "CensorRule|Last edit comment" +msgstr "" + +#: locale/model_attributes.rb:45 +msgid "CensorRule|Last edit editor" +msgstr "" + +#: locale/model_attributes.rb:44 +msgid "CensorRule|Replacement" +msgstr "" + +#: locale/model_attributes.rb:43 +msgid "CensorRule|Text" +msgstr "" + +#: lib/public_body_categories_en.rb:14 +msgid "Central government" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:27 +msgid "Change password on {{site_name}}" +msgstr "Newid cyfrinair ar {{site_name}}" + +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 +msgid "Change profile photo" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:1 +msgid "Change the text about you on your profile at WhatDoTheyKnow.com" +msgstr "" + +#: app/views/user/show.rhtml:107 +msgid "Change your email" +msgstr "" + +#: app/controllers/user_controller.rb:249 +#: app/views/user/signchangeemail.rhtml:1 +#: app/views/user/signchangeemail.rhtml:11 +msgid "Change your email address used on {{site_name}}" +msgstr "" + +#: app/views/user/show.rhtml:106 +msgid "Change your password" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:1 +#: app/views/user/signchangepassword.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:1 +#: app/views/user/signchangepassword_send_confirm.rhtml:9 +msgid "Change your password on {{site_name}}" +msgstr "Newid eich cyfrinair ar {{site_name}}" + +#: app/controllers/user_controller.rb:203 +msgid "Change your password {{site_name}}" +msgstr "" + +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 +msgid "Charity registration" +msgstr "" + +#: app/views/general/exception_caught.rhtml:6 +msgid "Check for mistakes if you typed or copied the address." +msgstr "" + +#: app/views/request/preview.rhtml:7 +#: app/views/request/followup_preview.rhtml:14 +msgid "Check you haven't included any <strong>personal information</strong>." +msgstr "" + +#: app/models/info_request_event.rb:326 +msgid "Clarification" +msgstr "" + +#: app/models/info_request_event.rb:290 +msgid "Clarification required" +msgstr "" + +#: app/controllers/request_controller.rb:334 +msgid "Classify an FOI response from " +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:6 +msgid "" +"Click on the link below to send a message to {{public_body_name}} telling them to reply to your request. You might like to ask for an internal\n" +"review, asking them to find out why response to the request has been so slow." +msgstr "" + +#: app/views/request_mailer/overdue_alert.rhtml:5 +msgid "" +"Click on the link below to send a message to {{public_body}} reminding them " +"to reply to your request." +msgstr "" + +#: locale/model_attributes.rb:28 +msgid "Comment|Body" +msgstr "" + +#: locale/model_attributes.rb:27 +msgid "Comment|Comment type" +msgstr "" + +#: locale/model_attributes.rb:30 +msgid "Comment|Locale" +msgstr "" + +#: locale/model_attributes.rb:29 +msgid "Comment|Visible" +msgstr "" + +#: app/models/track_thing.rb:163 +msgid "Confirm you want to be emailed when an FOI request succeeds" +msgstr "" + +#: app/controllers/request_controller.rb:295 +msgid "Confirm your FOI request to " +msgstr "" + +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 +msgid "Confirm your account on {{site_name}}" +msgstr "" + +#: app/controllers/comment_controller.rb:57 +msgid "Confirm your annotation to {{info_request_title}}" +msgstr "" + +#: app/models/user_mailer.rb:34 +msgid "Confirm your new email address on WhatDoTheyKnow.com" +msgstr "" + +#: app/views/layouts/default.rhtml:146 +msgid "Contact {{site_name}}" +msgstr "Cysylltwch â {{site_name}}" + +#: app/models/profile_photo.rb:96 +msgid "" +"Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " +"many other common image file formats are supported." +msgstr "" + +#: app/views/user/set_crop_profile_photo.rhtml:6 +msgid "Crop your profile photo" +msgstr "" + +#: app/views/request/new.rhtml:74 +msgid "" +"Cultural sites and built structures (as they may be affected by the\n" +" environmental factors listed above)" +msgstr "" + +#: app/views/request/show.rhtml:61 +msgid "" +"Currently <strong>waiting for a response</strong> from {{public_body_link}}," +" they must respond promptly and" +msgstr "" + +#: app/models/info_request_event.rb:294 +msgid "Deadline Extended" +msgstr "" + +#: app/models/outgoing_message.rb:57 +msgid "Dear " +msgstr "" + +#: app/models/info_request.rb:780 +msgid "Delayed." +msgstr "" + +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 +msgid "Delivery error" +msgstr "" + +#: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 +msgid "Details of request '" +msgstr "" + +#: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 +msgid "Did you mean: {{correction}}" +msgstr "" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 +msgid "" +"Disclaimer: This message and any reply that you make will be published on " +"the internet. Our privacy and copyright policies:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:6 +msgid "Download original attachment" +msgstr "" + +#: app/views/request/_followup.rhtml:88 +msgid "" +"Edit and add <strong>more details</strong> to the message above,\n" +" explaining why you are dissatisfied with their response." +msgstr "" + +#: app/views/admin_public_body/_locale_selector.rhtml:2 +msgid "Edit language version:" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:9 +msgid "Edit text about you" +msgstr "" + +#: app/models/user.rb:132 +msgid "Either the email or password was not recognised, please try again." +msgstr "" + +#: app/models/user.rb:134 +msgid "" +"Either the email or password was not recognised, please try again. Or create" +" a new account using the form on the right." +msgstr "" + +#: app/models/contact_validator.rb:34 +msgid "Email doesn't look like a valid address" +msgstr "" + +#: app/views/comment/_comment_form.rhtml:8 +msgid "Email me future updates to this request" +msgstr "" + +#: app/models/track_thing.rb:155 +msgid "Email me new successful responses " +msgstr "" + +#: app/views/user/show.rhtml:36 +msgid "Email subscriptions" +msgstr "" + +#: app/views/general/search.rhtml:123 +msgid "" +"Enter words that you want to find separated by spaces, e.g. <strong>climbing" +" lane</strong>" +msgstr "" + +#: app/views/request/upload_response.rhtml:23 +msgid "" +"Enter your response below. You may attach one file (use email, or \n" +"<a href=\"%s\">contact us</a> if you need more)." +msgstr "" + +#: app/views/public_body/show.rhtml:96 +msgid "Environmental Information Regulations requests made" +msgstr "" + +#: app/views/public_body/show.rhtml:69 +msgid "Environmental Information Regulations requests made using this site" +msgstr "" + +#: app/views/request/details.rhtml:4 +msgid "Event history" +msgstr "" + +#: app/views/request/_sidebar.rhtml:41 +msgid "Event history details" +msgstr "" + +#: app/views/request/new.rhtml:124 +msgid "" +"Everything that you enter on this page \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" + +#: app/views/request/new.rhtml:116 +msgid "" +"Everything that you enter on this page, including <strong>your name</strong>, \n" +" will be <strong>displayed publicly</strong> on\n" +" this website forever (<a href=\"%s\">why?</a>)." +msgstr "" + +#: locale/model_attributes.rb:61 +msgid "EximLogDone|Filename" +msgstr "" + +#: locale/model_attributes.rb:62 +msgid "EximLogDone|Last stat" +msgstr "" + +#: locale/model_attributes.rb:16 +msgid "EximLog|Line" +msgstr "" + +#: locale/model_attributes.rb:15 +msgid "EximLog|Order" +msgstr "" + +#: app/views/public_body/view_email.rhtml:3 +msgid "FOI email address for {{public_body}}" +msgstr "" + +#: app/views/user/show.rhtml:33 +msgid "FOI requests" +msgstr "" + +#: app/models/profile_photo.rb:101 +msgid "Failed to convert image to a PNG" +msgstr "" + +#: app/models/profile_photo.rb:105 +msgid "" +"Failed to convert image to the correct size: at %{cols}x%{rows}, need " +"%{width}x%{height}" +msgstr "" + +#: app/views/request/new.rhtml:21 +msgid "First," +msgstr "" + +#: app/views/general/frontpage.rhtml:8 +msgid "" +"First, type in the <strong>name of the UK public authority</strong> you'd \n" +" <br>like information from. <strong>By law, they have to respond</strong>\n" +" (<a href=\"%s\">why?</a>)." +msgstr "" +"Yn gyntaf, teipiwch <strong>enw awdurdod cyhoeddus yn y DU</strong> yr<br>\n" +"hoffech gael gwybodaeth ganddo. Yn ôl y gyfraith, mae'n rhaid iddynt ymateb (<a href=\"%s\">pam?</a>)." + +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 +msgid "Follow this link to see the request:" +msgstr "" + +#: app/models/info_request_event.rb:330 +msgid "Follow up" +msgstr "" + +#: app/views/public_body/view_email.rhtml:14 +msgid "Follow up messages to existing requests are sent to " +msgstr "" + +#: app/views/request/_followup.rhtml:16 +msgid "" +"Follow ups and new responses to this request have been stopped to prevent spam. Please\n" +" <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." +msgstr "" + +#: app/views/public_body/show.rhtml:61 +msgid "" +"For an unknown reason, it is not possible to make a request to this " +"authority." +msgstr "" + +#: app/views/user/_signin.rhtml:21 +msgid "Forgotten your password?" +msgstr "" + +#: app/views/public_body/show.rhtml:56 +msgid "" +"Freedom of Information law does not apply to this authority, so you cannot make\n" +" a request to it." +msgstr "" + +#: app/views/request/followup_bad.rhtml:11 +msgid "Freedom of Information law no longer applies to" +msgstr "" + +#: app/views/public_body/view_email.rhtml:10 +msgid "" +"Freedom of Information law no longer applies to this authority.Follow up " +"messages to existing requests are sent to " +msgstr "" + +#: app/views/user/show.rhtml:128 +msgid "Freedom of Information request" +msgstr "" + +#: app/views/public_body/show.rhtml:98 +msgid "Freedom of Information requests made" +msgstr "" + +#: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 +msgid "Freedom of Information requests made by" +msgstr "" + +#: app/views/public_body/show.rhtml:72 +msgid "Freedom of Information requests made using this site" +msgstr "" + +#: app/views/request/followup_bad.rhtml:12 +msgid "" +"From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/models/outgoing_message.rb:73 +msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" +msgstr "" + +#: app/views/general/exception_caught.rhtml:14 +msgid "Go to our <a href=\"%s\">front page</a></li>" +msgstr "" + +#: app/models/info_request_event.rb:292 +msgid "Handled by post" +msgstr "" + +#: app/models/info_request.rb:794 +msgid "Handled by post." +msgstr "" + +#: app/views/layouts/default.rhtml:121 +msgid "Hello!" +msgstr "Helo!" + +#: app/views/layouts/default.rhtml:118 +msgid "Hello, {{username}}!" +msgstr "Helo, {{username}}!" + +#: app/views/layouts/default.rhtml:113 +msgid "Help" +msgstr "Help" + +#: app/views/request/details.rhtml:50 +msgid "" +"Here <strong>described</strong> means when a user selected a status for the request, and\n" +"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" +"WhatDoTheyKnow for intermediate events, which weren't given an explicit\n" +"description by a user. See the <a href=\"%s\">search tips</a> for description of the states." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:4 +msgid "" +"Hi! We need your help. The person who made the following request\n" +" hasn't told us whether or not it was successful. Would you mind taking\n" +" a moment to read it and help us keep the place tidy for everyone?\n" +" Thanks." +msgstr "" + +#: locale/model_attributes.rb:58 +msgid "Holiday|Day" +msgstr "Gwyliau | Diwrnod" + +#: locale/model_attributes.rb:59 +msgid "Holiday|Description" +msgstr "Gwyliau | Disgrifiad" + +#: app/views/public_body/show.rhtml:7 +msgid "Home page of authority" +msgstr "" + +#: app/views/request/new.rhtml:63 +msgid "" +"However, you have the right to request environmental\n" +" information under a different law" +msgstr "" + +#: app/views/request/new.rhtml:73 +msgid "Human health and safety" +msgstr "" + +#: app/views/request/_followup.rhtml:71 +msgid "I am asking for <strong>new information</strong>" +msgstr "" + +#: app/views/request/_followup.rhtml:76 +msgid "I am requesting an <strong>internal review</strong>" +msgstr "" + +#: app/views/request_game/play.rhtml:39 +msgid "I don't like these ones — give me some more!" +msgstr "" + +#: app/views/request_game/play.rhtml:40 +msgid "I don't want to do any more tidying now!" +msgstr "" + +#: app/views/request/_describe_state.rhtml:91 +msgid "I would like to <strong>withdraw this request</strong>" +msgstr "" + +#: app/views/request/_describe_state.rhtml:11 +msgid "" +"I'm still <strong>waiting</strong> for my information\n" +" <small>(maybe you got an acknowledgement)</small>" +msgstr "" + +#: app/views/request/_describe_state.rhtml:18 +msgid "I'm still <strong>waiting</strong> for the internal review" +msgstr "" + +#: app/views/request/_describe_state.rhtml:32 +msgid "I'm waiting for an <strong>internal review</strong> response" +msgstr "" + +#: app/views/request/_describe_state.rhtml:25 +msgid "I've been asked to <strong>clarify</strong> my request" +msgstr "" + +#: app/views/request/_describe_state.rhtml:60 +msgid "I've received <strong>all the information" +msgstr "" + +#: app/views/request/_describe_state.rhtml:56 +msgid "I've received <strong>some of the information</strong>" +msgstr "" + +#: app/views/request/_describe_state.rhtml:76 +msgid "I've received an <strong>error message</strong>" +msgstr "" + +#: app/views/public_body/view_email.rhtml:28 +msgid "" +"If the address is wrong, or you know a better address, please <a " +"href=\"%s\">contact us</a>." +msgstr "" + +#: app/views/request_mailer/stopped_responses.rhtml:10 +msgid "" +"If this is incorrect, or you would like to send a late response to the request\n" +"or an email on another subject to {{user}}, then please\n" +"email {{contact_email}} for help." +msgstr "" + +#: app/views/request/_followup.rhtml:21 +msgid "" +"If you are dissatisfied by the response you got from\n" +" the public authority, you have the right to\n" +" complain (<a href=\"%s\">details</a>)." +msgstr "" + +#: app/views/user/no_cookies.rhtml:20 +msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "" + +#: app/views/request/hidden.rhtml:15 +msgid "" +"If you are the requester, then you may <a href=\"%s\">sign in</a> to view " +"the request." +msgstr "" + +#: app/views/request/new.rhtml:119 +msgid "" +"If you are thinking of using a pseudonym,\n" +" please <a href=\"%s\">read this first</a>." +msgstr "" + +#: app/views/request/show.rhtml:98 +msgid "If you are {{user_link}}, please" +msgstr "" + +#: app/views/user/bad_token.rhtml:7 +msgid "" +"If you can't click on it in the email, you'll have to <strong>select and copy\n" +"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" +"you would type the address of any other webpage." +msgstr "" + +#: app/views/request/show_response.rhtml:49 +msgid "" +"If you can, scan in or photograph the response, and <strong>send us\n" +" a copy to upload</strong>." +msgstr "" + +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 +msgid "" +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." +msgstr "" + +#: app/views/user/bad_token.rhtml:13 +msgid "" +"If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" +"more. Please try doing what you were doing from the beginning." +msgstr "" + +#: app/controllers/request_controller.rb:430 +msgid "" +"If you have not done so already, please write a message below telling the " +"authority that you have withdrawn your request. Otherwise they will not know" +" it has been withdrawn." +msgstr "" + +#: app/views/user/signchangepassword_confirm.rhtml:10 +#: app/views/user/signchangeemail_confirm.rhtml:11 +msgid "" +"If you use web-based email or have \"junk mail\" filters, also check your\n" +"bulk/spam mail folders. Sometimes, our messages are marked that way." +msgstr "" + +#: app/views/user/banned.rhtml:15 +msgid "" +"If you would like us to lift this ban, then you may politely\n" +"<a href=\"/help/contact\">contact us</a> giving reasons.\n" +msgstr "" + +#: app/views/user/_signup.rhtml:6 +msgid "If you're new to WhatDoTheyKnow" +msgstr "" + +#: app/views/user/_signin.rhtml:7 +msgid "If you've used WhatDoTheyKnow before" +msgstr "" + +#: app/views/user/no_cookies.rhtml:12 +msgid "" +"If your browser is set to accept cookies and you are seeing this message,\n" +"then there is probably a fault with our server." +msgstr "" + +#: locale/model_attributes.rb:64 +msgid "IncomingMessage|Cached attachment text clipped" +msgstr "" + +#: locale/model_attributes.rb:65 +msgid "IncomingMessage|Cached main body text folded" +msgstr "" + +#: locale/model_attributes.rb:66 +msgid "IncomingMessage|Cached main body text unfolded" +msgstr "" + +#: locale/model_attributes.rb:39 +msgid "InfoRequestEvent|Calculated state" +msgstr "" + +#: locale/model_attributes.rb:38 +msgid "InfoRequestEvent|Described state" +msgstr "" + +#: locale/model_attributes.rb:36 +msgid "InfoRequestEvent|Event type" +msgstr "" + +#: locale/model_attributes.rb:40 +msgid "InfoRequestEvent|Last described at" +msgstr "" + +#: locale/model_attributes.rb:37 +msgid "InfoRequestEvent|Params yaml" +msgstr "" + +#: locale/model_attributes.rb:41 +msgid "InfoRequestEvent|Prominence" +msgstr "" + +#: locale/model_attributes.rb:87 +msgid "InfoRequest|Allow new responses from" +msgstr "" + +#: locale/model_attributes.rb:83 +msgid "InfoRequest|Awaiting description" +msgstr "" + +#: locale/model_attributes.rb:82 +msgid "InfoRequest|Described state" +msgstr "" + +#: locale/model_attributes.rb:88 +msgid "InfoRequest|Handle rejected responses" +msgstr "" + +#: locale/model_attributes.rb:86 +msgid "InfoRequest|Law used" +msgstr "" + +#: locale/model_attributes.rb:84 +msgid "InfoRequest|Prominence" +msgstr "" + +#: locale/model_attributes.rb:81 +msgid "InfoRequest|Title" +msgstr "" + +#: locale/model_attributes.rb:85 +msgid "InfoRequest|Url title" +msgstr "" + +#: app/models/info_request_event.rb:298 +msgid "Information not held" +msgstr "" + +#: app/models/info_request.rb:784 +msgid "Information not held." +msgstr "" + +#: app/views/request/new.rhtml:71 +msgid "" +"Information on emissions and discharges (e.g. noise, energy,\n" +" radiation, waste materials)" +msgstr "" + +#: app/models/info_request_event.rb:306 +msgid "Internal review acknowledgement" +msgstr "" + +#: app/models/info_request_event.rb:323 +msgid "Internal review request" +msgstr "" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + +#: app/views/user/no_cookies.rhtml:8 +msgid "" +"It may be that your browser is not set to accept a thing called \"cookies\",\n" +"or cannot do so. If you can, please enable cookies, or try using a different\n" +"browser. Then press refresh to have another go." +msgstr "" + +#: app/views/user/show.rhtml:62 +msgid "Joined WhatDoTheyKnow in" +msgstr "" + +#: app/views/user/_user_listing_single.rhtml:21 +msgid "Joined in" +msgstr "" + +#: app/views/request/new.rhtml:48 +msgid "" +"Keep it <strong>focused</strong>, you'll be more likely to get what you want" +" (<a href=\"%s\">why?</a>)." +msgstr "" + +#: app/views/contact_mailer/message.rhtml:10 +msgid "Last authority viewed: " +msgstr "" + +#: app/views/contact_mailer/message.rhtml:7 +msgid "Last request viewed: " +msgstr "" + +#: app/views/user/no_cookies.rhtml:17 +msgid "" +"Let us know what you were doing when this message\n" +"appeared and your browser and operating system type and version." +msgstr "" + +#: app/views/request/_correspondence.rhtml:27 +#: app/views/request/_correspondence.rhtml:57 +msgid "Link to this" +msgstr "" + +#: app/views/public_body/list.rhtml:32 +msgid "List of all authorities (CSV)" +msgstr "" + +#: lib/public_body_categories_en.rb:23 +msgid "Local and regional" +msgstr "" + +#: app/models/info_request.rb:782 +msgid "Long overdue." +msgstr "" + +#: app/views/public_body/show.rhtml:47 +msgid "Make a new Environmental Information request" +msgstr "" + +#: app/views/request/new.rhtml:1 +msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "" + +#: app/views/layouts/default.rhtml:15 +msgid "Make and browse Freedom of Information (FOI) requests" +msgstr "" + +#: app/views/layouts/default.rhtml:86 +msgid "Make and explore Freedom of Information requests" +msgstr "Gwnewch geisiadau Rhyddid Gwybodaeth neu archwiliwch trwyddynt" + +#: app/views/general/frontpage.rhtml:4 +msgid "Make or explore Freedom of Information requests" +msgstr "Gwnewch geisiadau Rhyddid Gwybodaeth neu archwiliwch trwyddynt" + +#: app/views/layouts/default.rhtml:106 +msgid "Make request" +msgstr "Gwneud cais" + +#: app/views/public_body/_body_listing_single.rhtml:23 +msgid "Make your own request" +msgstr "" + +#: app/views/contact_mailer/message.rhtml:4 +msgid "Message sent using WhatDoTheyKnow contact form, " +msgstr "" + +#: app/views/request/new_bad_contact.rhtml:1 +msgid "Missing contact details for '" +msgstr "" + +#: app/views/public_body/show.rhtml:5 +msgid "More about this authority" +msgstr "" + +#: app/views/general/frontpage.rhtml:41 +msgid "More authorities..." +msgstr "Mwy o awdurdodau..." + +#: app/views/general/frontpage.rhtml:55 +msgid "More successful requests..." +msgstr "Mwy o geisiadau llwyddiannus..." + +#: app/views/request/_describe_state.rhtml:64 +msgid "My request has been <strong>refused</strong>" +msgstr "" + +#: app/views/layouts/default.rhtml:110 +msgid "My requests" +msgstr "" + +#: app/models/public_body.rb:36 +msgid "Name can't be blank" +msgstr "" + +#: app/models/public_body.rb:40 +msgid "Name is already taken" +msgstr "" + +#: app/views/user/signchangeemail.rhtml:20 +msgid "New e-mail:" +msgstr "" + +#: app/models/change_email_validator.rb:53 +msgid "New email doesn't look like a valid address" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:15 +msgid "New password:" +msgstr "" + +#: app/views/user/signchangepassword.rhtml:20 +msgid "New password: (again)" +msgstr "" + +#: app/views/request/show_response.rhtml:62 +msgid "New response to your request" +msgstr "" + +#: app/views/request/show_response.rhtml:68 +msgid "New response to {{law_used_short}} request" +msgstr "" + +#: app/views/general/search.rhtml:40 +msgid "Newest results first" +msgstr "" + +#: app/views/user/set_draft_profile_photo.rhtml:32 +msgid "Next, crop your photo >>" +msgstr "" + +#: app/views/general/search.rhtml:16 +msgid "Next, select the public authority you'd like to make the request from." +msgstr "" + +#: app/views/general/search.rhtml:48 +msgid "No public authorities found" +msgstr "" + +#: app/views/request/list.rhtml:23 +msgid "No requests of this sort yet." +msgstr "" + +#: app/views/request/similar.rhtml:7 +msgid "No similar requests found." +msgstr "" + +#: app/views/public_body/show.rhtml:73 +msgid "" +"Nobody has made any Freedom of Information requests to {{public_body_name}} " +"using this site yet." +msgstr "" + +#: app/views/request/_request_listing.rhtml:2 +#: app/views/public_body/_body_listing.rhtml:2 +msgid "None found." +msgstr "" + +#: app/views/user/signchangepassword_confirm.rhtml:1 +#: app/views/user/signchangepassword_confirm.rhtml:3 +#: app/views/user/signchangeemail_confirm.rhtml:3 +msgid "Now check your email!" +msgstr "" + +#: app/views/comment/preview.rhtml:5 +msgid "Now preview your annotation" +msgstr "" + +#: app/views/request/followup_preview.rhtml:10 +msgid "Now preview your follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:8 +msgid "Now preview your message asking for an internal review" +msgstr "" + +#: app/views/request/preview.rhtml:5 +msgid "Now preview your request" +msgstr "" + +#: app/views/user/set_draft_profile_photo.rhtml:46 +msgid "OR remove the existing photo" +msgstr "" + +#: app/views/general/frontpage.rhtml:25 +msgid "" +"OR, <strong>search</strong> for information others have requested using " +"{{site_name}}" +msgstr "" +"NEU, <strong>chwiliwch</strong> am wybodaeth y mae pobl eraill wedi gofyn " +"amdani gan ddefnyddio {{site_name}}" + +#: app/controllers/request_controller.rb:407 +msgid "" +"Oh no! Sorry to hear that your request was refused. Here is what to do now." +msgstr "" + +#: app/views/user/signchangeemail.rhtml:15 +msgid "Old e-mail:" +msgstr "" + +#: app/models/change_email_validator.rb:44 +msgid "" +"Old email address isn't the same as the address of the account you are " +"logged in with" +msgstr "" + +#: app/models/change_email_validator.rb:39 +msgid "Old email doesn't look like a valid address" +msgstr "" + +#: app/views/user/show.rhtml:32 +msgid "On this page" +msgstr "" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 +msgid "Only requests made using {{site_name}} are shown." +msgstr "" + +#: locale/model_attributes.rb:21 +msgid "OutgoingMessage|Body" +msgstr "" + +#: locale/model_attributes.rb:24 +msgid "OutgoingMessage|Last sent at" +msgstr "" + +#: locale/model_attributes.rb:23 +msgid "OutgoingMessage|Message type" +msgstr "" + +#: locale/model_attributes.rb:22 +msgid "OutgoingMessage|Status" +msgstr "" + +#: locale/model_attributes.rb:25 +msgid "OutgoingMessage|What doing" +msgstr "" + +#: app/models/info_request.rb:788 +msgid "Partially successful." +msgstr "" + +#: app/models/change_email_validator.rb:47 +msgid "Password is not correct" +msgstr "" + +#: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 +msgid "Password:" +msgstr "" + +#: app/views/user/_signup.rhtml:35 +msgid "Password: (again)" +msgstr "" + +#: app/views/user/set_draft_profile_photo.rhtml:13 +msgid "Photo of you:" +msgstr "" + +#: app/views/request/new.rhtml:76 +msgid "Plans and administrative measures that affect these matters" +msgstr "" + +#: app/controllers/request_game_controller.rb:40 +msgid "Play the request categorisation game" +msgstr "" + +#: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 +msgid "Play the request categorisation game!" +msgstr "" + +#: app/views/request/show.rhtml:94 +msgid "Please" +msgstr "" + +#: app/views/user/no_cookies.rhtml:15 +msgid "Please <a href=\"%s\">get in touch</a> with us so we can fix it." +msgstr "" + +#: app/views/request/show.rhtml:45 +msgid "" +"Please <strong>answer the question above</strong> so we know whether the " +msgstr "" + +#: app/views/user/show.rhtml:12 +msgid "" +"Please <strong>go to the following requests</strong>, and let us\n" +" know if there was information in the recent responses to them." +msgstr "" + +#: app/views/request/_followup.rhtml:28 +msgid "" +"Please <strong>only</strong> write messages directly relating to your \n" +"\t\t\t\trequest {{request_link}}. If you would like to ask for information\n" +"\t\t\t\tthat was not in your original request, then <a href=\"%s\">file a new request</a>." +msgstr "" + +#: app/views/request/new.rhtml:60 +msgid "Please ask for environmental information only" +msgstr "" + +#: app/views/user/bad_token.rhtml:2 +msgid "" +"Please check the URL (i.e. the long code of letters and numbers) is copied\n" +"correctly from your email." +msgstr "" + +#: app/models/profile_photo.rb:91 +msgid "Please choose a file containing your photo." +msgstr "" + +#: app/models/outgoing_message.rb:162 +msgid "Please choose what sort of reply you are making." +msgstr "" + +#: app/controllers/request_controller.rb:341 +msgid "" +"Please choose whether or not you got some of the information that you " +"wanted." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:3 +msgid "" +"Please click on the link below to confirm that you want to \n" +"change the email address that you use for WhatDoTheyKnow\n" +"from " +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:3 +msgid "Please click on the link below to confirm your email address." +msgstr "" + +#: app/models/info_request.rb:127 +msgid "" +"Please describe more what the request is about in the subject. There is no " +"need to say it is an FOI request, we add that on anyway." +msgstr "" + +#: app/views/user/set_draft_profile_photo.rhtml:22 +msgid "" +"Please don't upload offensive pictures. We will take down images\n" +" that we consider inappropriate." +msgstr "" + +#: app/views/user/no_cookies.rhtml:3 +msgid "Please enable \"cookies\" to carry on" +msgstr "" + +#: app/models/user.rb:38 +msgid "Please enter a password" +msgstr "" + +#: app/models/contact_validator.rb:30 +msgid "Please enter a subject" +msgstr "" + +#: app/models/info_request.rb:35 +msgid "Please enter a summary of your request" +msgstr "" + +#: app/models/user.rb:106 +msgid "Please enter a valid email address" +msgstr "" + +#: app/models/contact_validator.rb:31 +msgid "Please enter the message you want to send" +msgstr "" + +#: app/models/user.rb:49 +msgid "Please enter the same password twice" +msgstr "" + +#: app/models/comment.rb:59 +msgid "Please enter your annotation" +msgstr "" + +#: app/models/contact_validator.rb:29 app/models/user.rb:34 +msgid "Please enter your email address" +msgstr "" + +#: app/models/outgoing_message.rb:147 +msgid "Please enter your follow up message" +msgstr "" + +#: app/models/outgoing_message.rb:150 +msgid "Please enter your letter requesting information" +msgstr "" + +#: app/models/contact_validator.rb:28 app/models/user.rb:36 +msgid "Please enter your name" +msgstr "" + +#: app/models/user.rb:109 +msgid "Please enter your name, not your email address, in the name field." +msgstr "" + +#: app/models/change_email_validator.rb:30 +msgid "Please enter your new email address" +msgstr "" + +#: app/models/change_email_validator.rb:29 +msgid "Please enter your old email address" +msgstr "" + +#: app/models/change_email_validator.rb:31 +msgid "Please enter your password" +msgstr "" + +#: app/models/outgoing_message.rb:145 +msgid "Please give details explaining why you want a review" +msgstr "" + +#: app/models/about_me_validator.rb:24 +msgid "Please keep it shorter than 500 characters" +msgstr "" + +#: app/models/info_request.rb:124 +msgid "" +"Please keep the summary short, like in the subject of an email. You can use " +"a phrase, rather than a full sentence." +msgstr "" + +#: app/views/request/new.rhtml:79 +msgid "" +"Please only request information that comes under those categories, <strong>do not waste your\n" +" time</strong> or the time of the public authority by requesting unrelated information." +msgstr "" + +#: app/views/request/new_please_describe.rhtml:5 +msgid "" +"Please select each of these requests in turn, and <strong>let everyone know</strong>\n" +"if they are successful yet or not." +msgstr "" + +#: app/models/outgoing_message.rb:156 +msgid "" +"Please sign at the bottom with your name, or alter the \"%{signoff}\" " +"signature" +msgstr "" + +#: app/views/user/sign.rhtml:8 +msgid "Please sign in as " +msgstr "" + +#: app/controllers/request_controller.rb:723 +msgid "Please type a message and/or choose a file containing your response." +msgstr "" + +#: app/controllers/request_controller.rb:427 +msgid "Please use the form below to tell us more." +msgstr "" + +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 +msgid "Please use this email address for all replies to this request:" +msgstr "" + +#: app/models/info_request.rb:36 +msgid "Please write a summary with some text in it" +msgstr "" + +#: app/models/info_request.rb:121 +msgid "" +"Please write the summary using a mixture of capital and lower case letters. " +"This makes it easier for others to read." +msgstr "" + +#: app/models/comment.rb:62 +msgid "" +"Please write your annotation using a mixture of capital and lower case " +"letters. This makes it easier for others to read." +msgstr "" + +#: app/controllers/request_controller.rb:416 +msgid "" +"Please write your follow up message containing the necessary clarifications " +"below." +msgstr "" + +#: app/models/outgoing_message.rb:159 +msgid "" +"Please write your message using a mixture of capital and lower case letters." +" This makes it easier for others to read." +msgstr "" + +#: app/views/comment/new.rhtml:41 +msgid "" +"Point to <strong>related information</strong>, campaigns or forums which may" +" be useful." +msgstr "" + +#: app/views/comment/preview.rhtml:21 +msgid "Post annotation" +msgstr "" + +#: locale/model_attributes.rb:56 +msgid "PostRedirect|Circumstance" +msgstr "" + +#: locale/model_attributes.rb:54 +msgid "PostRedirect|Email token" +msgstr "" + +#: locale/model_attributes.rb:53 +msgid "PostRedirect|Post params yaml" +msgstr "" + +#: locale/model_attributes.rb:55 +msgid "PostRedirect|Reason params yaml" +msgstr "" + +#: locale/model_attributes.rb:51 +msgid "PostRedirect|Token" +msgstr "" + +#: locale/model_attributes.rb:52 +msgid "PostRedirect|Uri" +msgstr "" + +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + +#: app/views/request/followup_preview.rhtml:1 +msgid "Preview follow up to '" +msgstr "" + +#: app/views/comment/preview.rhtml:1 +msgid "Preview new annotation on '{{info_request_title}}'" +msgstr "" + +#: app/views/comment/_comment_form.rhtml:15 +msgid "Preview your annotation" +msgstr "" + +#: app/views/request/_followup.rhtml:99 +msgid "Preview your message" +msgstr "" + +#: app/views/request/new.rhtml:139 +msgid "Preview your public request" +msgstr "" + +#: locale/model_attributes.rb:18 +msgid "ProfilePhoto|Data" +msgstr "" + +#: locale/model_attributes.rb:19 +msgid "ProfilePhoto|Draft" +msgstr "" + +#: app/views/public_body/list.rhtml:37 +msgid "Public authorities - {{description}}" +msgstr "" + +#: app/views/general/search.rhtml:73 +msgid "" +"Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " +"{{user_search_query}}" +msgstr "" + +#: locale/model_attributes.rb:12 +msgid "PublicBody|First letter" +msgstr "" + +#: locale/model_attributes.rb:10 +msgid "PublicBody|Home page" +msgstr "" + +#: locale/model_attributes.rb:8 +msgid "PublicBody|Last edit comment" +msgstr "" + +#: locale/model_attributes.rb:7 +msgid "PublicBody|Last edit editor" +msgstr "" + +#: locale/model_attributes.rb:3 +msgid "PublicBody|Name" +msgstr "" + +#: locale/model_attributes.rb:11 +msgid "PublicBody|Notes" +msgstr "" + +#: locale/model_attributes.rb:13 +msgid "PublicBody|Publication scheme" +msgstr "" + +#: locale/model_attributes.rb:5 +msgid "PublicBody|Request email" +msgstr "" + +#: locale/model_attributes.rb:4 +msgid "PublicBody|Short name" +msgstr "" + +#: locale/model_attributes.rb:9 +msgid "PublicBody|Url name" +msgstr "" + +#: locale/model_attributes.rb:6 +msgid "PublicBody|Version" +msgstr "" + +#: app/views/public_body/show.rhtml:10 +msgid "Publication scheme" +msgstr "" + +#: locale/model_attributes.rb:49 +msgid "RawEmail|Data binary" +msgstr "" + +#: locale/model_attributes.rb:48 +msgid "RawEmail|Data text" +msgstr "" + +#: app/views/comment/preview.rhtml:20 +msgid "Re-edit this annotation" +msgstr "" + +#: app/views/request/followup_preview.rhtml:49 +msgid "Re-edit this message" +msgstr "" + +#: app/views/request/preview.rhtml:40 +msgid "Re-edit this request" +msgstr "" + +#: app/views/general/search.rhtml:137 +msgid "" +"Read about <a href=\"%s\">advanced search operators</a>, such as proximity " +"and wildcards." +msgstr "" + +#: app/views/layouts/default.rhtml:112 +msgid "Read blog" +msgstr "Darllen blog" + +#: app/views/request/new.rhtml:16 +msgid "Read this before writing your {{info_request_law_used_full}} request" +msgstr "" + +#: app/views/general/search.rhtml:42 +msgid "Recently described results first" +msgstr "" + +#: app/controllers/request_controller.rb:134 +msgid "Recently sent Freedom of Information requests" +msgstr "" + +#: app/views/request/list.rhtml:6 +msgid "Recently sent requests" +msgstr "" + +#: app/controllers/request_controller.rb:139 +msgid "Recently successful responses" +msgstr "" + +#: app/models/info_request_event.rb:300 +msgid "Refused" +msgstr "" + +#: app/models/info_request.rb:786 +msgid "Refused." +msgstr "" + +#: app/views/user/_signin.rhtml:26 +msgid "" +"Remember me</label> (keeps you signed in longer;\n" +" do not use on a public computer) " +msgstr "" + +#: app/views/request/_correspondence.rhtml:28 +msgid "Reply to this message" +msgstr "" + +#: app/views/comment/_single_comment.rhtml:24 +msgid "Report abuse" +msgstr "" + +#: app/views/request/_after_actions.rhtml:37 +msgid "Request an internal review" +msgstr "" + +#: app/views/request/_followup.rhtml:4 +msgid "Request an internal review from" +msgstr "" + +#: app/views/request/hidden.rhtml:1 +msgid "Request has been removed" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:28 +msgid "" +"Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:36 +msgid "" +"Request to {{public_body_name}} by {{info_request_user}}. Annotated by " +"{{event_comment_user}} on {{date}}." +msgstr "" + +#: app/views/request/_request_listing_single.rhtml:12 +msgid "" +"Requested from {{public_body_name}} by {{info_request_user}} on {{date}}" +msgstr "" + +#: app/views/request/_sidebar_request_listing.rhtml:13 +msgid "Requested on {{date}}" +msgstr "" + +#: app/views/request/upload_response.rhtml:11 +msgid "Respond by email" +msgstr "" + +#: app/views/request/_after_actions.rhtml:46 +msgid "Respond to request" +msgstr "" + +#: app/views/request/upload_response.rhtml:5 +msgid "Respond to the FOI request" +msgstr "" + +#: app/views/request/upload_response.rhtml:21 +msgid "Respond using the web" +msgstr "" + +#: app/views/request/show.rhtml:70 +msgid "Response to this request is <strong>delayed</strong>." +msgstr "" + +#: app/views/request/show.rhtml:78 +msgid "Response to this request is <strong>long overdue</strong>." +msgstr "" + +#: app/views/request/show_response.rhtml:64 +msgid "Response to your request" +msgstr "" + +#: app/views/request/upload_response.rhtml:28 +msgid "Response:" +msgstr "" + +#: app/views/general/search.rhtml:9 +msgid "Results page {{page_number}}" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:35 +msgid "Save" +msgstr "" + +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 +#: app/views/general/exception_caught.rhtml:10 +#: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 +msgid "Search" +msgstr "Chwilio" + +#: app/views/general/search.rhtml:4 +msgid "Search Freedom of Information requests, public authorities and users" +msgstr "" +"Chwilio Rhyddid Gwybodaeth o geisiadau, awdurdodau cyhoeddus a defnyddwyr" + +#: app/views/general/exception_caught.rhtml:7 +msgid "Search the site to find what you were looking for." +msgstr "" + +#: app/controllers/user_controller.rb:330 +msgid "Send a message to " +msgstr "" + +#: app/views/request/_followup.rhtml:7 +msgid "Send a public follow up message to" +msgstr "" + +#: app/views/request/_followup.rhtml:10 +msgid "Send a public reply to" +msgstr "" + +#: app/views/request/_correspondence.rhtml:58 +msgid "Send follow up" +msgstr "" + +#: app/views/request/followup_preview.rhtml:50 +msgid "Send message" +msgstr "" + +#: app/views/user/show.rhtml:69 +msgid "Send message to " +msgstr "" + +#: app/views/request/preview.rhtml:41 +msgid "Send public " +msgstr "" + +#: app/views/user/show.rhtml:53 +msgid "Set your profile photo" +msgstr "" + +#: app/models/public_body.rb:39 +msgid "Short name is already taken" +msgstr "" + +#: app/views/general/search.rhtml:38 +msgid "Show most relevant results first" +msgstr "" + +#: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 +msgid "Show only..." +msgstr "" + +#: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 +msgid "Sign in" +msgstr "" + +#: app/views/user/sign.rhtml:20 +msgid "Sign in or make a new account" +msgstr "" + +#: app/views/layouts/default.rhtml:122 +msgid "Sign in or sign up" +msgstr "" + +#: app/views/layouts/default.rhtml:119 +msgid "Sign out" +msgstr "" + +#: app/views/user/_signup.rhtml:41 +msgid "Sign up" +msgstr "" + +#: app/views/request/_sidebar.rhtml:30 +msgid "Similar requests" +msgstr "" + +#: app/models/info_request_event.rb:302 +msgid "Some information sent" +msgstr "" + +#: app/views/request_game/play.rhtml:31 +msgid "" +"Some people who've made requests haven't let us know whether they were\n" +"successful or not. We need <strong>your</strong> help –\n" +"choose one of these requests, read it, and let everyone know whether or not the\n" +"information has been provided. Everyone'll be exceedingly grateful." +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:1 +msgid "" +"Someone, perhaps you, just tried to change their email address on\n" +"WhatDoTheyKnow.com from " +msgstr "" + +#: app/views/general/exception_caught.rhtml:1 +msgid "Sorry, we couldn't find that page" +msgstr "" + +#: app/views/request/new.rhtml:53 +msgid "Special note for this authority!" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:21 +msgid "Still awaiting an <strong>internal review</strong>" +msgstr "" + +#: app/views/request/preview.rhtml:18 +#: app/views/request/followup_preview.rhtml:23 +msgid "Subject:" +msgstr "" + +#: app/views/user/signchangepassword_send_confirm.rhtml:26 +msgid "Submit" +msgstr "" + +#: app/views/request/_describe_state.rhtml:101 +msgid "Submit status" +msgstr "" + +#: app/models/track_thing.rb:158 app/models/track_thing.rb:159 +msgid "Successful Freedom of Information requests" +msgstr "" + +#: app/views/request/list.rhtml:5 +msgid "Successful responses" +msgstr "" + +#: app/models/info_request.rb:790 +msgid "Successful." +msgstr "" + +#: app/views/comment/new.rhtml:38 +msgid "" +"Suggest how the requester can find the <strong>rest of the " +"information</strong>." +msgstr "" + +#: app/views/request/new.rhtml:93 +msgid "Summary:" +msgstr "" + +#: app/views/general/search.rhtml:140 +msgid "Table of statuses" +msgstr "" + +#: app/views/request/preview.rhtml:45 +msgid "Tags:" +msgstr "" + +#: app/controllers/request_game_controller.rb:50 +msgid "Thank you for helping us keep the site tidy!" +msgstr "" + +#: app/controllers/comment_controller.rb:62 +msgid "Thank you for making an annotation!" +msgstr "" + +#: app/controllers/request_controller.rb:729 +msgid "" +"Thank you for responding to this FOI request! Your response has been " +"published below, and a link to your response has been emailed to " +msgstr "" + +#: app/controllers/request_controller.rb:373 +msgid "" +"Thank you for updating the status of the request '<a " +"href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " +"for you to classify." +msgstr "" + +#: app/controllers/request_controller.rb:376 +msgid "Thank you for updating this request!" +msgstr "" + +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 +msgid "Thank you for updating your profile photo" +msgstr "" + +#: app/views/request_game/play.rhtml:42 +msgid "" +"Thanks for helping - your work will make it easier for everyone to find successful\n" +"responses, and maybe even let us make league tables..." +msgstr "" + +#: app/views/user/show.rhtml:20 +msgid "" +"Thanks very much - this will help others find useful stuff. We'll\n" +" also, if you need it, give advice on what to do next about your\n" +" requests." +msgstr "" + +#: app/views/request/new_please_describe.rhtml:20 +msgid "" +"Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" +" We'll also, if you need it, give you advice on what to do next about each of your\n" +" requests." +msgstr "" + +#: app/controllers/user_controller.rb:188 +msgid "" +"That doesn't look like a valid email address. Please check you have typed it" +" correctly." +msgstr "" + +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 +msgid "The <strong>review has finished</strong> and overall:" +msgstr "" + +#: app/views/request/new.rhtml:62 +msgid "The Freedom of Information Act <strong>does not apply</strong> to" +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:7 +msgid "The accounts have been left as they previously were." +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:48 +msgid "" +"The authority do <strong>not have</strong> the information <small>(maybe " +"they say who does)" +msgstr "" + +#: app/views/request/show_response.rhtml:28 +msgid "" +"The authority only has a <strong>paper copy</strong> of the information." +msgstr "" + +#: app/views/request/show_response.rhtml:18 +msgid "" +"The authority say that they <strong>need a postal\n" +" address</strong>, not just an email, for it to be a valid FOI request" +msgstr "" + +#: app/views/request/show.rhtml:102 +msgid "" +"The authority would like to / has <strong>responded by post</strong> to this" +" request." +msgstr "" + +#: app/views/request_mailer/stopped_responses.rhtml:1 +msgid "" +"The email that you, on behalf of {{public_body}}, sent to\n" +"{{user}} to reply to an {{law_used_short}}\n" +"request has not been delivered." +msgstr "" + +#: app/views/request/show_response.rhtml:22 +msgid "" +"The law, the Ministry of Justice and the Information Commissioner\n" +" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" +" At the bottom of this page, write a reply to the authority explaining this to them." +msgstr "" + +#: app/views/general/exception_caught.rhtml:3 +msgid "The page either doesn't exist, or is broken. Things you can try now:" +msgstr "" + +#: app/views/request/_other_describe_state.rhtml:60 +msgid "The request has been <strong>refused</strong>" +msgstr "" + +#: app/controllers/request_controller.rb:347 +msgid "" +"The request has been updated since you originally loaded this page. Please " +"check for any new incoming messages below, and try again." +msgstr "" + +#: app/views/request/show.rhtml:97 +msgid "The request is <strong>waiting for clarification</strong>." +msgstr "" + +#: app/views/request/show.rhtml:90 +msgid "The request was <strong>partially successful</strong>." +msgstr "" + +#: app/views/request/show.rhtml:86 +msgid "The request was <strong>refused</strong> by" +msgstr "" + +#: app/views/request/show.rhtml:88 +msgid "The request was <strong>successful</strong>." +msgstr "" + +#: app/views/request/hidden.rhtml:9 +msgid "" +"The request you have tried to view has been removed. There are\n" +"various reasons why we might have done this, sorry we can't be more specific here. Please <a\n" +" href=\"%s\">contact us</a> if you have any questions." +msgstr "" + +#: app/views/request/_followup.rhtml:35 +msgid "" +"The response to your request has been <strong>delayed</strong>. You can say that, \n" +" by law, the authority should normally have responded\n" +" <strong>promptly</strong> and" +msgstr "" + +#: app/views/request/_followup.rhtml:47 +msgid "" +"The response to your request is <strong>long overdue</strong>. You can say that, by \n" +" law, under all circumstances, the authority should have responded\n" +" by now" +msgstr "" + +#: app/views/public_body/show.rhtml:100 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests that have been made to this authority." +msgstr "" + +#: app/views/user/show.rhtml:141 +msgid "" +"The search index is currently offline, so we can't show the Freedom of " +"Information requests this person has made." +msgstr "" + +#: app/controllers/track_controller.rb:142 +msgid "Then you can cancel the alert." +msgstr "" + +#: app/controllers/track_controller.rb:172 +msgid "Then you can cancel the alerts." +msgstr "" + +#: app/controllers/user_controller.rb:248 +msgid "Then you can change your email address used on {{site_name}}" +msgstr "" + +#: app/controllers/user_controller.rb:202 +msgid "Then you can change your password on {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:333 +msgid "Then you can classify the FOI response you have got from " +msgstr "" + +#: app/controllers/request_game_controller.rb:39 +msgid "Then you can play the request categorisation game." +msgstr "" + +#: app/controllers/user_controller.rb:329 +msgid "Then you can send a message to " +msgstr "" + +#: app/controllers/user_controller.rb:513 +msgid "Then you can sign in to {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:59 +msgid "Then you can update the status of your request to " +msgstr "" + +#: app/controllers/request_controller.rb:695 +msgid "Then you can upload an FOI response. " +msgstr "" + +#: app/controllers/request_controller.rb:538 +msgid "Then you can write follow up message to " +msgstr "" + +#: app/controllers/request_controller.rb:539 +msgid "Then you can write your reply to " +msgstr "" + +#: app/models/track_thing.rb:162 +msgid "Then you will be emailed whenever an FOI request succeeds." +msgstr "" + +#: app/controllers/request_controller.rb:294 +msgid "Then your FOI request to {{public_body_name}} will be sent." +msgstr "" + +#: app/controllers/comment_controller.rb:56 +msgid "Then your annotation to {{info_request_title}} will be posted." +msgstr "" + +#: app/views/request_mailer/comment_on_alert_plural.rhtml:1 +msgid "" +"There are {{count}} new annotations on your {{info_request}} request. Follow" +" this link to see what they wrote." +msgstr "" + +#: app/views/user/show.rhtml:4 +msgid "" +"There is <strong>more than one person</strong> who uses this site and has this name. \n" +" One of them is shown below, you may mean a different one:" +msgstr "" + +#: app/views/request/show.rhtml:106 +msgid "" +"There was a <strong>delivery error</strong> or similar, which needs fixing " +"by the WhatDoTheyKnow team." +msgstr "" + +#: app/controllers/public_body_controller.rb:76 +msgid "There was an error with the words you entered, please try again." +msgstr "" + +#: app/views/request/_describe_state.rhtml:38 +msgid "They are going to reply <strong>by post</strong>" +msgstr "" + +#: app/views/request/_describe_state.rhtml:52 +msgid "" +"They do <strong>not have</strong> the information <small>(maybe they say who" +" does)</small>" +msgstr "" + +#: app/views/user/show.rhtml:83 +msgid "They have been given the following explanation:" +msgstr "" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}} promptly," +" as normally required by law" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:3 +msgid "" +"They have not replied to your {{law_used_short}} request {{title}}, \n" +"as required by law" +msgstr "" + +#: app/views/request/_after_actions.rhtml:3 +msgid "Things to do with this request" +msgstr "" + +#: app/views/public_body/show.rhtml:59 +msgid "This authority no longer exists, so you cannot make a request to it." +msgstr "" + +#: app/views/request/_hidden_correspondence.rhtml:23 +msgid "" +"This comment has been hidden. See annotations to\n" +" find out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/request/new.rhtml:65 +msgid "" +"This covers a very wide spectrum of information about the state of\n" +" the <strong>natural and built environment</strong>, such as:" +msgstr "" + +#: app/views/request/_view_html_prefix.rhtml:9 +msgid "" +"This is an HTML version of an attachment to the Freedom of Information " +"request" +msgstr "" + +#: app/views/request_mailer/stopped_responses.rhtml:5 +msgid "" +"This is because {{title}} is an old request that has been\n" +"marked to no longer receive responses." +msgstr "" + +#: app/views/track/_tracking_links.rhtml:9 +msgid "" +"This is your own request, so you will be automatically emailed when new " +"responses arrive." +msgstr "" + +#: app/views/request/_hidden_correspondence.rhtml:17 +msgid "" +"This outgoing message has been hidden. See annotations to\n" +"\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/user/show.rhtml:122 +msgid "This person has" +msgstr "" + +#: app/views/user/show.rhtml:152 +msgid "This person's" +msgstr "" + +#: app/views/request/_describe_state.rhtml:84 +msgid "This request <strong>requires administrator attention</strong>" +msgstr "" + +#: app/views/request/show.rhtml:48 +msgid "This request has an <strong>unknown status</strong>." +msgstr "" + +#: app/views/request/show.rhtml:110 +msgid "" +"This request has been <strong>withdrawn</strong> by the person who made it. \n" +" \t There may be an explanation in the correspondence below." +msgstr "" + +#: app/views/request/show.rhtml:108 +msgid "" +"This request has had an unusual response, and <strong>requires " +"attention</strong> from the WhatDoTheyKnow team." +msgstr "" + +#: app/views/request/show.rhtml:5 +msgid "" +"This request has prominence 'hidden'. You can only see it because you are logged\n" +" in as a super user." +msgstr "" + +#: app/views/request/show.rhtml:11 +msgid "" +"This request is hidden, so that only you the requester can see it. Please\n" +" <a href=\"%s\">contact us</a> if you are not sure why." +msgstr "" + +#: app/views/request/_hidden_correspondence.rhtml:10 +msgid "" +"This response has been hidden. See annotations to find out why.\n" +" If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." +msgstr "" + +#: app/views/request/new.rhtml:49 +msgid "" +"This site is <strong>public</strong>. Everything you type and any response " +"will be published." +msgstr "" + +#: app/views/request/details.rhtml:6 +msgid "" +"This table shows the technical details of the internal events that happened\n" +"to this request on WhatDoTheyKnow. This could be used to generate information about\n" +"the speed with which authorities respond to requests, the number of requests\n" +"which require a postal response and much more." +msgstr "" + +#: app/views/user/show.rhtml:79 +msgid "This user has been banned from WhatDoTheyKnow.com " +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:4 +msgid "" +"This was not possible because there is already an account using \n" +"the email address " +msgstr "" + +#: app/models/track_thing.rb:161 +msgid "To be emailed about any successful requests" +msgstr "" + +#: app/controllers/track_controller.rb:171 +msgid "To cancel these alerts" +msgstr "" + +#: app/controllers/track_controller.rb:141 +msgid "To cancel this alert" +msgstr "" + +#: app/views/user/no_cookies.rhtml:5 +msgid "" +"To carry on, you need to sign in or make an account. Unfortunately, there\n" +"was a technical problem trying to do this." +msgstr "" + +#: app/controllers/user_controller.rb:247 +msgid "To change your email address used on {{site_name}}" +msgstr "" + +#: app/controllers/request_controller.rb:332 +msgid "To classify the response to this FOI request" +msgstr "" + +#: app/views/request/show_response.rhtml:39 +msgid "To do that please send a private email to " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:2 +msgid "To do this, first click on the link below." +msgstr "" + +#: app/views/request_mailer/old_unclassified_updated.rhtml:1 +msgid "" +"To help us keep the site tidy, someone else has updated the status of the \n" +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:1 +msgid "To let us know, follow this link and then select the appropriate box." +msgstr "" + +#: app/controllers/request_game_controller.rb:38 +msgid "To play the request categorisation game" +msgstr "" + +#: app/controllers/comment_controller.rb:55 +msgid "To post your annotation" +msgstr "" + +#: app/controllers/request_controller.rb:536 +msgid "To reply to " +msgstr "" + +#: app/controllers/request_controller.rb:535 +msgid "To send a follow up message to " +msgstr "" + +#: app/controllers/user_controller.rb:328 +msgid "To send a message to " +msgstr "" + +#: app/controllers/request_controller.rb:293 +msgid "To send your FOI request" +msgstr "" + +#: app/controllers/request_controller.rb:58 +msgid "To update the status of this FOI request" +msgstr "" + +#: app/controllers/request_controller.rb:694 +msgid "" +"To upload a response, you must be logged in using an email address from " +msgstr "" + +#: app/views/public_body/view_email_captcha.rhtml:5 +msgid "" +"To view the email address that we use to send FOI requests to " +"{{public_body_name}}, please enter these words." +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:5 +msgid "To view the response, click on the link below." +msgstr "" + +#: app/views/request/_request_listing_short_via_event.rhtml:9 +msgid "To {{public_body_link_absolute}}" +msgstr "" + +#: app/views/request/preview.rhtml:17 +#: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 +msgid "To:" +msgstr "" + +#: app/models/track_thing.rb:174 +msgid "Track requests to {{public_body_name}} by email" +msgstr "" + +#: app/views/public_body/show.rhtml:3 +msgid "Track this authority" +msgstr "" + +#: app/views/user/show.rhtml:29 +msgid "Track this person" +msgstr "" + +#: app/views/request/_sidebar.rhtml:2 +msgid "Track this request" +msgstr "" + +#: locale/model_attributes.rb:33 +msgid "TrackThing|Track medium" +msgstr "" + +#: locale/model_attributes.rb:32 +msgid "TrackThing|Track query" +msgstr "" + +#: locale/model_attributes.rb:34 +msgid "TrackThing|Track type" +msgstr "" + +#: app/views/general/search.rhtml:133 +msgid "" +"Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " +"things that happened in the first two weeks of January." +msgstr "" + +#: app/models/public_body.rb:37 +msgid "URL name can't be blank" +msgstr "" + +#: app/models/user_mailer.rb:45 +msgid "Unable to change email address on WhatDoTheyKnow.com" +msgstr "" + +#: app/views/request/followup_bad.rhtml:4 +msgid "Unable to send a reply to {{username}}" +msgstr "" + +#: app/views/request/followup_bad.rhtml:2 +msgid "Unable to send follow up message to {{username}}" +msgstr "" + +#: app/views/request/list.rhtml:29 +msgid "Unexpected search result type" +msgstr "" + +#: app/views/request/similar.rhtml:18 +msgid "Unexpected search result type " +msgstr "" + +#: app/views/user/wrong_user_unknown_email.rhtml:3 +msgid "" +"Unfortunately we don't know the FOI\n" +"email address for that authority, so we can't validate this.\n" +"Please <a href=\"%s\">contact us</a> to sort it out." +msgstr "" + +#: app/views/request/new_bad_contact.rhtml:5 +msgid "" +"Unfortunately, we do not have a working {{info_request_law_used_full}}\n" +"address for" +msgstr "" + +#: app/views/general/exception_caught.rhtml:17 +msgid "Unknown" +msgstr "" + +#: app/models/info_request_event.rb:312 +msgid "Unusual response" +msgstr "" + +#: app/models/info_request.rb:800 +msgid "Unusual response." +msgstr "" + +#: app/views/request/_after_actions.rhtml:13 +#: app/views/request/_after_actions.rhtml:33 +msgid "Update the status of this request" +msgstr "" + +#: app/controllers/request_controller.rb:60 +msgid "Update the status of your request to " +msgstr "" + +#: app/views/general/search.rhtml:124 +msgid "" +"Use OR (in capital letters) where you don't mind which word, e.g. " +"<strong><code>commons OR lords</code></strong>" +msgstr "" + +#: app/views/general/search.rhtml:125 +msgid "" +"Use quotes when you want to find an exact phrase, e.g. " +"<strong><code>\"Liverpool City Council\"</code></strong>" +msgstr "" + +#: locale/model_attributes.rb:68 +msgid "UserInfoRequestSentAlert|Alert type" +msgstr "" + +#: locale/model_attributes.rb:79 +msgid "User|About me" +msgstr "" + +#: locale/model_attributes.rb:77 +msgid "User|Admin level" +msgstr "" + +#: locale/model_attributes.rb:78 +msgid "User|Ban text" +msgstr "" + +#: locale/model_attributes.rb:70 +msgid "User|Email" +msgstr "" + +#: locale/model_attributes.rb:74 +msgid "User|Email confirmed" +msgstr "" + +#: locale/model_attributes.rb:72 +msgid "User|Hashed password" +msgstr "" + +#: locale/model_attributes.rb:76 +msgid "User|Last daily track email" +msgstr "" + +#: locale/model_attributes.rb:71 +msgid "User|Name" +msgstr "" + +#: locale/model_attributes.rb:73 +msgid "User|Salt" +msgstr "" + +#: locale/model_attributes.rb:75 +msgid "User|Url name" +msgstr "" + +#: app/views/public_body/show.rhtml:21 +msgid "View FOI email address" +msgstr "" + +#: app/views/public_body/view_email_captcha.rhtml:1 +msgid "View FOI email address for '{{public_body_name}}'" +msgstr "" + +#: app/views/public_body/view_email_captcha.rhtml:3 +msgid "View FOI email address for {{public_body_name}}" +msgstr "" + +#: app/views/contact_mailer/user_message.rhtml:10 +msgid "View Freedom of Information requests made by" +msgstr "" + +#: app/views/layouts/default.rhtml:108 +msgid "View authorities" +msgstr "Gweld yr awdurdodau" + +#: app/views/public_body/view_email_captcha.rhtml:12 +msgid "View email" +msgstr "" + +#: app/views/layouts/default.rhtml:107 +msgid "View requests" +msgstr "Gweld ceisiadau" + +#: app/models/info_request.rb:792 +msgid "Waiting clarification." +msgstr "" + +#: app/views/request/show.rhtml:104 +msgid "" +"Waiting for an <strong>internal review</strong> by {{public_body_link}} of " +"their handling of this request." +msgstr "" + +#: app/views/public_body/view_email.rhtml:17 +msgid "We do not have a working request email address for this authority." +msgstr "" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"We do not have a working {{law_used_full}} address for {{public_body_name}}." +msgstr "" + +#: app/views/request/_describe_state.rhtml:107 +msgid "" +"We don't know whether the most recent response to this request contains\n" +" information or not\n" +" –\n" +"\tif you are {{user_link}} please <a href=\"%s\">sign in</a> and let everyone know." +msgstr "" + +#: app/views/user_mailer/confirm_login.rhtml:8 +msgid "" +"We will not reveal your email address to anybody unless you\n" +"or the law tell us to." +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:9 +msgid "" +"We will not reveal your email addresses to anybody unless you\n" +"or the law tell us to." +msgstr "" + +#: app/views/request/show.rhtml:54 +msgid "We're waiting for" +msgstr "" + +#: app/views/request/show.rhtml:50 +msgid "We're waiting for someone to read" +msgstr "" + +#: app/views/user/signchangeemail_confirm.rhtml:6 +msgid "" +"We've sent an email to your new email address. You'll need to click the link in\n" +"it before your email address will be changed." +msgstr "" + +#: app/views/user/confirm.rhtml:6 +msgid "" +"We've sent you an email, and you'll need to click the link in it before you can\n" +"continue." +msgstr "" + +#: app/views/user/signchangepassword_confirm.rhtml:6 +msgid "" +"We've sent you an email, click the link in it, then you can change your " +"password." +msgstr "" + +#: app/views/request/_followup.rhtml:61 +msgid "What are you doing?" +msgstr "" + +#: app/views/request/_describe_state.rhtml:4 +msgid "What best describes the status of this request now?" +msgstr "" + +#: app/views/public_body/view_email.rhtml:7 +msgid "" +"WhatDoTheyKnow sends new requests to <strong>{{request_email}}</strong> for " +"this authority." +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:9 +msgid "" +"When you get there, please update the status to say if the response \n" +"contains any useful information." +msgstr "" + +#: app/views/request/show_response.rhtml:44 +msgid "" +"When you receive the paper response, please help\n" +" others find out what it says:" +msgstr "" + +#: app/views/request/new_please_describe.rhtml:16 +msgid "" +"When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " +"this page</a> and file your new request." +msgstr "" + +#: app/views/request/show_response.rhtml:13 +msgid "Which of these is happening?" +msgstr "" + +#: app/models/info_request_event.rb:308 +msgid "Withdrawn by requester" +msgstr "" + +#: app/models/info_request.rb:802 +msgid "Withdrawn by the requester." +msgstr "" + +#: app/controllers/request_controller.rb:542 +msgid "Write a reply to " +msgstr "" + +#: app/controllers/request_controller.rb:541 +msgid "Write your FOI follow up message to " +msgstr "" + +#: app/views/request/new.rhtml:46 +msgid "Write your request in <strong>simple, precise language</strong>." +msgstr "" + +#: app/models/info_request_event.rb:296 +msgid "Wrong Response" +msgstr "" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "You" +msgstr "" + +#: app/controllers/track_controller.rb:96 +msgid "You are already being emailed updates about " +msgstr "" + +#: app/models/track_thing.rb:156 +msgid "You are being emailed about any new successful responses" +msgstr "" + +#: app/views/request/show.rhtml:81 +msgid "You can <strong>complain</strong> by" +msgstr "" + +#: app/views/request/details.rhtml:57 +msgid "" +"You can get this page in computer-readable format as part of the main JSON\n" +"page for the request. See the <a href=\"%s\">API documentation</a>." +msgstr "" + +#: app/views/public_body/show.rhtml:40 +msgid "" +"You can only request information about the environment from this authority." +msgstr "" + +#: app/views/user/show.rhtml:122 +msgid "You have" +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:1 +msgid "You have a new response to the {{law_used_full}} request " +msgstr "" + +#: app/controllers/user_controller.rb:491 +msgid "You have now changed the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:309 +msgid "You have now changed your email address used on {{site_name}}" +msgstr "" + +#: app/views/user_mailer/already_registered.rhtml:3 +msgid "" +"You just tried to sign up to WhatDoTheyKnow.com, when you\n" +"already have an account. Your name and password have been\n" +"left as they previously were.\n" +"\n" +"Please click on the link below." +msgstr "" + +#: app/views/comment/new.rhtml:59 +msgid "" +"You know what caused the error, and can <strong>suggest a solution</strong>," +" such as a working email address." +msgstr "" + +#: app/views/request/upload_response.rhtml:16 +msgid "" +"You may <strong>include attachments</strong>. If you would like to attach a\n" +"file too large for email, use the form below." +msgstr "" + +#: app/views/request/followup_bad.rhtml:24 +msgid "" +"You may be able to find\n" +" one on their website, or by phoning them up and asking. If you manage\n" +" to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/new_bad_contact.rhtml:6 +msgid "" +"You may be able to find\n" +"one on their website, or by phoning them up and asking. If you manage\n" +"to find one, then please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/controllers/user_controller.rb:469 +msgid "You need to be logged in to change the text about you on your profile." +msgstr "" + +#: app/controllers/user_controller.rb:370 +msgid "You need to be logged in to change your profile photo." +msgstr "" + +#: app/controllers/user_controller.rb:432 +msgid "You need to be logged in to clear your profile photo." +msgstr "" + +#: app/controllers/request_controller.rb:552 +msgid "" +"You previously submitted that exact follow up message for this request." +msgstr "" + +#: app/views/request/upload_response.rhtml:13 +msgid "" +"You should have received a copy of the request by email, and you can respond\n" +"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" +msgstr "" + +#: app/views/request/show_response.rhtml:36 +msgid "" +"You want to <strong>give your postal address</strong> to the authority in " +"private." +msgstr "" + +#: app/views/user/banned.rhtml:9 +msgid "" +"You will be unable to make new requests, send follow ups, add annotations or\n" +"send messages to other users. You may continue to view other requests, and set\n" +"up\n" +"email alerts." +msgstr "" + +#: app/controllers/track_controller.rb:152 +msgid "You will no longer be emailed updates about " +msgstr "" + +#: app/controllers/track_controller.rb:181 +msgid "You will no longer be emailed updates for those alerts" +msgstr "" + +#: app/controllers/track_controller.rb:109 +msgid "You will now be emailed updates about " +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:6 +msgid "" +"You will only get an answer to your request if you follow up\n" +"with the clarification." +msgstr "" + +#: app/controllers/user_controller.rb:441 +msgid "You've now cleared your profile photo" +msgstr "" + +#: app/views/user/show.rhtml:152 +msgid "Your " +msgstr "" + +#: app/views/user/_signup.rhtml:22 +msgid "" +"Your <strong>name will appear publicly</strong> \n" +" (<a href=\"%s\">why?</a>)\n" +" on this website and in search engines. If you\n" +" are thinking of using a pseudonym, please \n" +" <a href=\"%s\">read this first</a>." +msgstr "" + +#: app/views/contact_mailer/user_message.rhtml:3 +msgid "" +"Your details have not been given to anyone, unless you choose to reply to this\n" +"message, which will then go directly to the person who wrote the message." +msgstr "" + +#: app/views/user/_signin.rhtml:11 +#: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 +msgid "Your e-mail:" +msgstr "" + +#: app/views/user/show.rhtml:168 +msgid "Your email subscriptions" +msgstr "" + +#: app/controllers/request_controller.rb:549 +msgid "" +"Your follow up has not been sent because this request has been stopped to " +"prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " +"send a follow up message." +msgstr "" + +#: app/controllers/request_controller.rb:577 +msgid "Your follow up message has been sent on its way." +msgstr "" + +#: app/controllers/request_controller.rb:575 +msgid "Your internal review request has been sent on its way." +msgstr "" + +#: app/controllers/help_controller.rb:61 +msgid "" +"Your message has been sent. Thank you for getting in touch! We'll get back " +"to you soon." +msgstr "" + +#: app/controllers/user_controller.rb:348 +msgid "Your message to {{recipient_user_name}} has been sent!" +msgstr "" + +#: app/views/request/followup_preview.rhtml:15 +msgid "Your message will appear in <strong>search engines</strong>" +msgstr "" + +#: app/views/comment/preview.rhtml:10 +msgid "" +"Your name and annotation will appear in <strong>search engines</strong>." +msgstr "" + +#: app/views/request/preview.rhtml:8 +msgid "" +"Your name, request and any responses will appear in <strong>search engines</strong>\n" +" (<a href=\"%s\">details</a>)." +msgstr "" + +#: app/views/user/_signup.rhtml:18 +msgid "Your name:" +msgstr "" + +#: app/views/request_mailer/stopped_responses.rhtml:14 +msgid "Your original message is attached." +msgstr "" + +#: app/controllers/user_controller.rb:230 +msgid "Your password has been changed." +msgstr "" + +#: app/views/user/signchangeemail.rhtml:25 +msgid "Your password:" +msgstr "" + +#: app/views/user/set_draft_profile_photo.rhtml:18 +msgid "" +"Your photo will be shown in public <strong>on the Internet</strong>, \n" +" wherever you do something on WhatDoTheyKnow." +msgstr "" + +#: app/views/request_mailer/new_response_reminder_alert.rhtml:5 +msgid "" +"Your request was called {{info_request}}. Letting everyone know whether you " +"got the information will help us keep tabs on" +msgstr "" + +#: app/views/request/new.rhtml:109 +msgid "Your request:" +msgstr "" + +#: app/views/request/upload_response.rhtml:8 +msgid "" +"Your response will <strong>appear on the Internet</strong>, <a " +"href=\"%s\">read why</a> and answers to other questions." +msgstr "" + +#: app/views/comment/new.rhtml:62 +msgid "" +"Your thoughts on what the WhatDoTheyKnow <strong>administrators</strong> " +"should do about the request." +msgstr "" + +#: app/models/outgoing_message.rb:69 +msgid "Yours faithfully," +msgstr "" + +#: app/models/outgoing_message.rb:67 +msgid "Yours sincerely," +msgstr "" + +#: app/views/request/new.rhtml:97 +msgid "" +"a one line summary of the information you are requesting, \n" +"\t\t\te.g." +msgstr "" + +#: app/views/public_body/show.rhtml:31 +msgid "admin" +msgstr "" + +#: app/views/public_body/show.rhtml:29 +msgid "also called {{public_body_short_name}}" +msgstr "" + +#: app/views/user/wrong_user.rhtml:5 +msgid "and sign in as " +msgstr "" + +#: app/views/request/show.rhtml:52 +msgid "" +"and update the status accordingly. Perhaps <strong>you</strong> might like " +"to help out by doing that?" +msgstr "" + +#: app/views/request/show.rhtml:57 +msgid "and update the status." +msgstr "" + +#: app/views/request/_describe_state.rhtml:101 +msgid "and we'll suggest <strong>what to do next</strong>" +msgstr "" + +#: app/views/user/show.rhtml:153 +msgid "annotation" +msgstr "" + +#: app/views/user/show.rhtml:147 +msgid "annotations" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:1 +msgid "are long overdue." +msgstr "" + +#: app/controllers/public_body_controller.rb:109 +msgid "beginning with" +msgstr "" + +#: app/views/request/show.rhtml:75 +msgid "by" +msgstr "" + +#: app/views/request/_followup.rhtml:41 +msgid "by <strong>{{date}}</strong>" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:34 +msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." +msgstr "" + +#: app/views/request/_request_listing_short_via_event.rhtml:10 +msgid "by {{user_link_absolute}}" +msgstr "" + +#: locale/model_attributes.rb:42 +msgid "censor rule" +msgstr "" + +#: locale/model_attributes.rb:26 +msgid "comment" +msgstr "" + +#: app/views/request/show_response.rhtml:41 +msgid "" +"containing your postal address, and asking them to reply to this request.\n" +" Or you could phone them." +msgstr "" + +#: app/models/info_request_event.rb:333 +msgid "display_status only works for incoming and outgoing messages right now" +msgstr "" + +#: app/views/request_mailer/overdue_alert.rhtml:3 +msgid "during term time" +msgstr "" + +#: app/views/general/frontpage.rhtml:18 +msgid "e.g." +msgstr "ee" + +#: app/views/user/show.rhtml:96 +msgid "edit text about you" +msgstr "" + +#: app/views/user/show.rhtml:171 +msgid "email subscription" +msgstr "" + +#: app/views/request_mailer/very_overdue_alert.rhtml:4 +msgid "even during holidays" +msgstr "hyd yn oed yn ystod y gwyliau" + +#: locale/model_attributes.rb:14 +msgid "exim log" +msgstr "" + +#: locale/model_attributes.rb:60 +msgid "exim log done" +msgstr "" + +#: app/views/request_mailer/requires_admin.rhtml:2 +msgid "has reported an" +msgstr "" + +#: app/views/request_mailer/overdue_alert.rhtml:1 +msgid "have delayed." +msgstr "" + +#: locale/model_attributes.rb:57 +msgid "holiday" +msgstr "gwyliau" + +#: app/views/request/_followup.rhtml:39 app/views/request/show.rhtml:63 +#: app/views/request/show.rhtml:73 +msgid "in term time" +msgstr "" + +#: app/views/public_body/list.rhtml:42 +msgid "in total" +msgstr "" + +#: locale/model_attributes.rb:63 +msgid "incoming message" +msgstr "" + +#: locale/model_attributes.rb:80 +msgid "info request" +msgstr "" + +#: locale/model_attributes.rb:35 +msgid "info request event" +msgstr "" + +#: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 +msgid "internal error" +msgstr "" + +#: app/views/request/show.rhtml:93 +msgid "is <strong>waiting for your clarification</strong>." +msgstr "" + +#: app/views/user/show.rhtml:71 +msgid "just to see how it works" +msgstr "" + +#: app/views/comment/_single_comment.rhtml:10 +msgid "left an annotation" +msgstr "" + +#: app/views/user/_user_listing_single.rhtml:19 +#: app/views/user/_user_listing_single.rhtml:20 +msgid "made." +msgstr "" + +#: app/views/request/show.rhtml:67 +msgid "no later than" +msgstr "" + +#: app/views/request/followup_bad.rhtml:18 +msgid "" +"no longer exists. If you are trying to make\n" +" From the request page, try replying to a particular message, rather than sending\n" +" a general followup. If you need to make a general followup, and know\n" +" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." +msgstr "" + +#: app/views/request/show.rhtml:65 +msgid "normally" +msgstr "" + +#: app/views/user/show.rhtml:114 +msgid "only" +msgstr "" + +#: locale/model_attributes.rb:20 +msgid "outgoing message" +msgstr "" + +#: app/views/user/sign.rhtml:11 +msgid "please sign in as " +msgstr "" + +#: app/views/user/sign.rhtml:28 +msgid "please sign in or make a new account." +msgstr "" + +#: locale/model_attributes.rb:50 +msgid "post redirect" +msgstr "" + +#: locale/model_attributes.rb:17 +msgid "profile photo" +msgstr "" + +#: locale/model_attributes.rb:2 +msgid "public body" +msgstr "" + +#: locale/model_attributes.rb:47 +msgid "raw email" +msgstr "" + +#: app/views/request_mailer/not_clarified_alert.rhtml:1 +msgid "request." +msgstr "" + +#: app/views/request/show.rhtml:82 +msgid "requesting an internal review" +msgstr "" + +#: app/views/request_mailer/requires_admin.rhtml:3 +msgid "" +"response as needing administrator attention. Take a look, and reply to this\n" +"email to let them know what you are going to do about it." +msgstr "" + +#: app/views/request/show.rhtml:95 +msgid "send a follow up message" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:31 +msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." +msgstr "" + +#: app/views/request/show.rhtml:99 +msgid "sign in" +msgstr "" + +#: app/views/user/wrong_user.rhtml:4 +msgid "sign out" +msgstr "" + +#: app/views/request_mailer/new_response.rhtml:2 +msgid "that you made to" +msgstr "" + +#: app/views/user_mailer/already_registered.rhtml:11 +#: app/views/user_mailer/confirm_login.rhtml:11 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 +#: app/views/request_mailer/stopped_responses.rhtml:16 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 +#: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 +msgid "the WhatDoTheyKnow team" +msgstr "" + +#: app/views/user/show.rhtml:140 +msgid "this person" +msgstr "" + +#: app/views/user_mailer/changeemail_already_used.rhtml:2 +msgid "to" +msgstr "" + +#: app/views/user_mailer/changeemail_confirm.rhtml:5 +msgid "to " +msgstr "" + +#: app/views/user/show.rhtml:113 +msgid "" +"to change password, \n" +" subscriptions and more" +msgstr "" + +#: app/views/request/new.rhtml:34 +msgid "to check that the info isn't already published." +msgstr "" + +#: app/views/request/show.rhtml:55 +msgid "to read" +msgstr "" + +#: app/views/request/show.rhtml:99 +msgid "to send a follow up message." +msgstr "" + +#: app/views/request/show.rhtml:39 +msgid "to {{public_body}}" +msgstr "" + +#: locale/model_attributes.rb:31 +msgid "track thing" +msgstr "" + +#: app/views/request/_hidden_correspondence.rhtml:32 +msgid "unexpected prominence on request event" +msgstr "" + +#: app/views/request/_request_listing_via_event.rhtml:38 +msgid "unknown event type indexed " +msgstr "" + +#: app/views/request/followup_bad.rhtml:29 +msgid "unknown reason " +msgstr "" + +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 +msgid "unknown status " +msgstr "" + +#: app/views/user/show.rhtml:208 +msgid "unsubscribe" +msgstr "" + +#: app/views/user/show.rhtml:180 app/views/user/show.rhtml:194 +msgid "unsubscribe all" +msgstr "" + +#: app/views/request/show.rhtml:46 +msgid "useful information." +msgstr "" + +#: locale/model_attributes.rb:69 +msgid "user" +msgstr "" + +#: locale/model_attributes.rb:67 +msgid "user info request sent alert" +msgstr "" + +#: app/views/user/show.rhtml:140 +msgid "you" +msgstr "" + +#: app/views/request/new.rhtml:6 +msgid "" +"{{existing_request_user}} already\n" +" created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" +" or edit the details below to make a new but similar request." +msgstr "" + +#: app/views/request/_after_actions.rhtml:20 +msgid "{{info_request_user_name}} only:" +msgstr "" + +#: app/views/general/frontpage.rhtml:51 +msgid "{{length_of_time}} ago" +msgstr "{{length_of_time}} yn ôl" + +#: app/views/request/_after_actions.rhtml:43 +msgid "{{public_body_name}} only:" +msgstr "" + +#: app/views/request_mailer/comment_on_alert.rhtml:1 +msgid "" +"{{user_name}} has annotated your {{law_used_short}} \n" +"request. Follow this link to see what they wrote." +msgstr "" + +#: app/views/request/show.rhtml:35 +msgid "{{user}} made this {{law_used_full}} request" +msgstr "" + + diff --git a/locale/de/app.po b/locale/de/app.po index a702a9cdb..7fa30ff21 100644 --- a/locale/de/app.po +++ b/locale/de/app.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# <kersti@access-info.org>, 2011. # stefanw <stefanwehrmeyer@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-07-12 15:27+0100\n" -"Last-Translator: stefanw <stefanwehrmeyer@gmail.com>\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-27 21:05+0000\n" +"Last-Translator: KerstiRu <kersti@access-info.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgid "" " easier for others to get involved with what you're doing." msgstr "" -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" @@ -37,7 +38,7 @@ msgstr "" #: app/views/user/show.rhtml:59 msgid " (you)" -msgstr "" +msgstr " (Sie)" #: app/views/user/signchangepassword_send_confirm.rhtml:18 msgid "" @@ -45,6 +46,8 @@ msgid "" " We will send you an email. Follow the instructions in it to change\n" " your password." msgstr "" +"<strong>Note:</strong>⏎ Sie werden in Kürze eine Email erhalten. Folgen Sie " +"der Anleitung, um Ihr Passwort⏎ zu ändern." #: app/views/user/contact.rhtml:35 msgid " <strong>Privacy note:</strong> Your email address will be given to" @@ -91,7 +94,7 @@ msgstr "" #: app/views/user/sign.rhtml:26 msgid " Please sign in or make a new account." -msgstr "" +msgstr "Bitte melden Sie sich an oder erstellen Sie ein neues Benutzerkonto." #: app/views/comment/new.rhtml:34 msgid "" @@ -129,13 +132,13 @@ msgstr "" msgid " when you send this message." msgstr "" -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" msgstr[0] "" msgstr[1] "" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" msgstr[0] "" @@ -149,7 +152,7 @@ msgstr "" msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -176,28 +179,30 @@ msgstr "" #: app/views/general/search.rhtml:53 msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." -msgstr "" +msgstr "<a href=\"%s\">Alle durchsuchen</a> or <a href=\"%s\">ask us to add one</a>." #: app/views/general/exception_caught.rhtml:13 msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" -msgstr "" +msgstr "<a href=\"%s\">Neue Anfrage starten</a> to {{public_body_name}}" #: app/views/public_body/list.rhtml:43 msgid "<a href=\"%s\">can't find the one you want?</a>" msgstr "" +"<a href=\"%s\">Können Sie die von Ihnen benötigte Information nicht " +"finden?</a>" #: app/views/request/_followup.rhtml:42 app/views/request/_followup.rhtml:49 #: app/views/request/show.rhtml:76 app/views/request/show.rhtml:80 msgid "<a href=\"%s\">details</a>" -msgstr "" +msgstr "<a href=\"%s\">Details</a>" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "" @@ -207,7 +212,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -222,59 +227,61 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" +"<p>Wir empfehlen Ihnen Ihre Anfrage zu bearbeiten und Ihre Emailadresse zu entfernen.\n" +" Sollten Sie die Emaildresse nicht entfernen, wir diese an die entsprechende Behörde gesendet, jedoch nicht auf der Seite angezeigt.</p>" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -282,7 +289,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -290,27 +297,33 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" msgstr "" +"<p> Es ist nicht erfoderlich Ihre Emailadresse in der Anfrage zu nennen, um " +"eine Antwort zu erhalten (<a href=\"%s\">details</a>).</p>" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" +"<p>Ihre Anfrage enthält eine <strong>Postleitzahl</strong>. Sollte diese " +"nicht unmittelbar in Zusammenhang mit Ihrer Anfrage stehen, empfehlen wir " +"diese zu entfern en, da diese ansonsten<strong>im Internet veröffentlicht " +"wird </strong>.</p>" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -326,61 +339,65 @@ msgid "" "</p>" msgstr "" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" +"<strong> Kann ich Informationen zu meiner eigenen Person anfragen?</strong>\n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><a href=\"%s\">Nein! (Click here for details)</a>" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." msgstr "" -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " "statuses</a> below." msgstr "" -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" " can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." msgstr "" +"<strong><code>variety:</code></strong> Um Ihre Suchauswahl zu treffen, gehen" +" Sie zu <a href=\"%s\">Auswahlliste</a> am Ende der Seite." #: app/views/comment/new.rhtml:56 msgid "" @@ -388,11 +405,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" @@ -423,6 +440,8 @@ msgid "" " We will send an email to your new email address. Follow the\n" " instructions in it to confirm changing your email." msgstr "" +"<strong>Note:</strong>\n" +" Es wird eine Email an Ihre neue Emailadresse versendet. Folgen Sie den darin angegebenen Schritten, um die Änderung Ihrer Emailadresse zu bestätigen." #: app/views/user/contact.rhtml:32 msgid "" @@ -435,6 +454,8 @@ msgid "" "<strong>Privacy note:</strong> If you want to request private information about\n" " yourself then <a href=\"%s\">click here</a>." msgstr "" +"<strong>Privacy note:</strong> Falls Sie Informationen zu Ihrer eingenen " +"Person erfragen wollen <a href=\"%s\">Klicken Sie hier</a>." #: app/views/user/set_crop_profile_photo.rhtml:35 msgid "" @@ -447,8 +468,10 @@ msgid "" "<strong>Privacy warning:</strong> Your message, and any response\n" " to it, will be displayed publicly on this website." msgstr "" +"<strong>Privacy warning:</strong> Ihre Nachricht als auch alle " +"entsprechenden Reaktionen werden auf dieser Webseite veröffentlicht." -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "" @@ -485,7 +508,7 @@ msgstr "" #: app/views/user/set_profile_about_me.rhtml:20 msgid "About you:" -msgstr "" +msgstr "Zu Ihrer Person:" #: app/models/info_request_event.rb:288 msgid "Acknowledgement" @@ -513,9 +536,9 @@ msgstr "" msgid "Administration URL:" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" -msgstr "" +msgstr "Tipps zur erweiterten Suchanfrage" #: app/views/comment/new.rhtml:52 msgid "" @@ -535,7 +558,7 @@ msgstr "" #: app/views/public_body/list.rhtml:5 msgid "Alphabet" -msgstr "" +msgstr "Alphabet" #: app/views/request_mailer/new_response.rhtml:12 msgid "" @@ -543,19 +566,21 @@ msgid "" "you, the original requester, to evaluate them." msgstr "" -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" -msgstr "" +msgstr "Eine <strong>Fehlermeldung</strong> wurde empfangen" #: app/views/user/show.rhtml:34 msgid "Annotations" -msgstr "" +msgstr "Anmerkungen" #: app/views/comment/new.rhtml:17 msgid "" "Annotations are so anyone, including you, can help the requester with their " "request. For example:" msgstr "" +"Anmerkungen helfen Ihnen sowie weiteren Benutzern bei der Erstellungen einer" +" neuer Anfrage. Beispielsweise:" #: app/views/comment/new.rhtml:69 msgid "" @@ -581,31 +606,17 @@ msgstr "" #: app/views/request/upload_response.rhtml:33 msgid "Attachment (optional):" -msgstr "" - -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "" +msgstr "Anhang (freiwillig)" -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "" -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "" -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "" @@ -663,26 +674,26 @@ msgstr "" msgid "CensorRule|Text" msgstr "" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "" #: app/views/user/signchangepassword.rhtml:27 msgid "Change password on {{site_name}}" -msgstr "" +msgstr "Passwort ändern: {{site_name}}" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" -msgstr "" +msgstr "Profilbild ändern" #: app/views/user/set_profile_about_me.rhtml:1 msgid "Change the text about you on your profile at WhatDoTheyKnow.com" msgstr "" +"Ändern Sie Angaben zu Ihrer Person in Ihrem Benutzerkonto auf AskTheEu.org" #: app/views/user/show.rhtml:107 msgid "Change your email" -msgstr "" +msgstr "Emailadresse ändern" #: app/controllers/user_controller.rb:249 #: app/views/user/signchangeemail.rhtml:1 @@ -692,7 +703,7 @@ msgstr "" #: app/views/user/show.rhtml:106 msgid "Change your password" -msgstr "" +msgstr "Passwort ändern" #: app/views/user/signchangepassword.rhtml:1 #: app/views/user/signchangepassword.rhtml:11 @@ -703,9 +714,9 @@ msgstr "" #: app/controllers/user_controller.rb:203 msgid "Change your password {{site_name}}" -msgstr "" +msgstr "Passwort ändern{{site_name}}" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "" @@ -726,7 +737,7 @@ msgstr "" msgid "Clarification required" msgstr "" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " msgstr "" @@ -741,6 +752,8 @@ msgid "" "Click on the link below to send a message to {{public_body}} reminding them " "to reply to your request." msgstr "" +"Klicken Sie auf den unten aufgeführten Link an {{public_body}}, um eine " +"Anfrageerinnerung zu versenden." #: locale/model_attributes.rb:28 msgid "Comment|Body" @@ -762,12 +775,12 @@ msgstr "" msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " msgstr "" -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" msgstr "" @@ -777,11 +790,11 @@ msgstr "" #: app/models/user_mailer.rb:34 msgid "Confirm your new email address on WhatDoTheyKnow.com" -msgstr "" +msgstr "Bestätigen Sie Ihre neue Emailadresse auf www.asktheeu.org" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" -msgstr "" +msgstr "Kontakt {{site_name}}" #: app/models/profile_photo.rb:96 msgid "" @@ -809,34 +822,29 @@ msgstr "" #: app/models/info_request_event.rb:294 msgid "Deadline Extended" -msgstr "" - -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" +msgstr "Frist verlängert" #: app/models/outgoing_message.rb:57 msgid "Dear " -msgstr "" +msgstr "Sehr geehrte / sehr geehrter " -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." msgstr "" -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" msgstr "" #: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 msgid "Details of request '" -msgstr "" +msgstr "Anfragedetails" #: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 msgid "Did you mean: {{correction}}" -msgstr "" +msgstr "Meinten Sie: {{correction}}" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" @@ -844,9 +852,9 @@ msgstr "" #: app/views/request/_view_html_prefix.rhtml:6 msgid "Download original attachment" -msgstr "" +msgstr "Originalanhang herunterladen" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." @@ -854,15 +862,17 @@ msgstr "" #: app/views/admin_public_body/_locale_selector.rhtml:2 msgid "Edit language version:" -msgstr "" +msgstr "Sprachauswahl ändern:" #: app/views/user/set_profile_about_me.rhtml:9 msgid "Edit text about you" -msgstr "" +msgstr "Profiltext ändern" #: app/models/user.rb:132 msgid "Either the email or password was not recognised, please try again." msgstr "" +"Passwort oder emailadresse wurde nicht erkannt. Bitte versuchen Sie es " +"erneut. " #: app/models/user.rb:134 msgid "" @@ -874,9 +884,10 @@ msgstr "" msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" msgstr "" +"Informieren Sie mich über zukünftige Aktualisierungen zu dieser Anfrage" #: app/models/track_thing.rb:155 msgid "Email me new successful responses " @@ -886,7 +897,7 @@ msgstr "" msgid "Email subscriptions" msgstr "" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" @@ -898,11 +909,11 @@ msgid "" "<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" @@ -914,14 +925,14 @@ msgstr "" msgid "Event history details" msgstr "" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" @@ -952,12 +963,6 @@ msgstr "" msgid "FOI requests" msgstr "" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" msgstr "Konnte Bild nicht in ein PNG konvertieren" @@ -972,7 +977,7 @@ msgstr "" #: app/views/request/new.rhtml:21 msgid "First," -msgstr "" +msgstr "Erstens, " #: app/views/general/frontpage.rhtml:8 msgid "" @@ -981,7 +986,7 @@ msgid "" " (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" msgstr "" @@ -999,17 +1004,19 @@ msgid "" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." msgstr "" +"Aus unbekannten Gründen ist es nicht möglich eine Anfrage a diese Behörde zu" +" stellen. " #: app/views/user/_signin.rhtml:21 msgid "Forgotten your password?" -msgstr "" +msgstr "Passwort vergessen?" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." @@ -1029,15 +1036,15 @@ msgstr "" msgid "Freedom of Information request" msgstr "" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" -msgstr "" +msgstr "Anfrage ausgeführt" #: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 msgid "Freedom of Information requests made by" msgstr "" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" msgstr "" @@ -1060,21 +1067,21 @@ msgstr "" msgid "Handled by post" msgstr "" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." msgstr "" -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" -msgstr "" +msgstr "Hallo!" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" -msgstr "" +msgstr "Hallo, " -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" -msgstr "" +msgstr "Hilfe" #: app/views/request/details.rhtml:50 msgid "" @@ -1102,7 +1109,7 @@ msgstr "" #: app/views/public_body/show.rhtml:7 msgid "Home page of authority" -msgstr "" +msgstr "Offizielle Homepage der Behörde" #: app/views/request/new.rhtml:63 msgid "" @@ -1112,13 +1119,13 @@ msgstr "" #: app/views/request/new.rhtml:73 msgid "Human health and safety" -msgstr "" +msgstr "Gesundheit und Sicherheit" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" msgstr "" @@ -1130,7 +1137,7 @@ msgstr "" msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "" @@ -1152,17 +1159,17 @@ msgstr "" msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" -msgstr "" +msgstr "Angefragte Information <strong> vollständig erhalten" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" -msgstr "" +msgstr "Angefragte Information <strong> teilweise erhalten </strong>" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" -msgstr "" +msgstr "Fehlerhafte Information <strong>erhalten</strong>" #: app/views/public_body/view_email.rhtml:28 msgid "" @@ -1183,10 +1190,14 @@ msgid "" " the public authority, you have the right to\n" " complain (<a href=\"%s\">details</a>)." msgstr "" +"Sollten Sie mit den erhaltenen Informationen nicht zufrieden sein, haben Sie" +" das Recht eine Beschwerde einzureichen (<a href=\"%s\">details</a>)." #: app/views/user/no_cookies.rhtml:20 msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." msgstr "" +"Sollten weiterhin Probleme bestehen, bitte <a href=\"%s\">kontaktieren Sie " +"uns</a>." #: app/views/request/hidden.rhtml:15 msgid "" @@ -1194,15 +1205,15 @@ msgid "" "the request." msgstr "" -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" -msgstr "" +msgstr "Wenn Sie {{user_link}} sind, bitte" #: app/views/user/bad_token.rhtml:7 msgid "" @@ -1217,11 +1228,10 @@ msgid "" " a copy to upload</strong>." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" #: app/views/user/bad_token.rhtml:13 @@ -1229,8 +1239,11 @@ msgid "" "If you got the email <strong>more than six months ago</strong>, then this login link won't work any\n" "more. Please try doing what you were doing from the beginning." msgstr "" +"Wenn Sie diese Email <strong>vor mehr als sechs Monaten erhalten " +"haben</strong>, ist dieser Anmeldecode nichtmehr aktiv. Bitte nehmen Sie " +"eine neue Registrierung vor. " -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1243,6 +1256,9 @@ msgid "" "If you use web-based email or have \"junk mail\" filters, also check your\n" "bulk/spam mail folders. Sometimes, our messages are marked that way." msgstr "" +"Sollten Sie ein webbasiertes Emailkonto oder Spamfilter benutzen, überrpüfen" +" Sie Ihre Bulk-, Spamordner. Unsere Nachrichten landen teilweise in diese " +"Ordnern. " #: app/views/user/banned.rhtml:15 msgid "" @@ -1334,11 +1350,11 @@ msgstr "" #: app/models/info_request_event.rb:298 msgid "Information not held" -msgstr "" +msgstr "Information nicht verfügbar" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." -msgstr "" +msgstr "Information nicht verfügbr" #: app/views/request/new.rhtml:71 msgid "" @@ -1354,6 +1370,12 @@ msgstr "" msgid "Internal review request" msgstr "" +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + #: app/views/user/no_cookies.rhtml:8 msgid "" "It may be that your browser is not set to accept a thing called \"cookies\",\n" @@ -1367,7 +1389,7 @@ msgstr "" #: app/views/user/_user_listing_single.rhtml:21 msgid "Joined in" -msgstr "" +msgstr "Angemeldet" #: app/views/request/new.rhtml:48 msgid "" @@ -1396,43 +1418,49 @@ msgstr "" #: app/views/public_body/list.rhtml:32 msgid "List of all authorities (CSV)" -msgstr "" +msgstr "Liste aller Behörden (CSV)" #: lib/public_body_categories_en.rb:23 msgid "Local and regional" -msgstr "" +msgstr "Örtlich und regional" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." msgstr "" -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" msgstr "" #: app/views/request/new.rhtml:1 msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" -msgstr "" +msgstr "Stellen Sie einen {{law_used_short}} Antrag an '{{public_body_name}}'" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" msgstr "" +"Hier können Sie Anfragen an das Informationsgesetz stellen und bestehende " +"Anfragen durchsuchen" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" msgstr "" +"Hier können Sie Anfragen an das Informationsgesetz stellen und bestehende " +"Anfragen durchsuchen" #: app/views/general/frontpage.rhtml:4 msgid "Make or explore Freedom of Information requests" msgstr "" +"Hier können Sie Anfragen an das Informationsgesetz stellen oder bestehende " +"Anfragen durchsuchen" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" -msgstr "" +msgstr "Anfrage stellen" #: app/views/public_body/_body_listing_single.rhtml:23 msgid "Make your own request" -msgstr "" +msgstr "Eigene Anfrage stellen" #: app/views/contact_mailer/message.rhtml:4 msgid "Message sent using WhatDoTheyKnow contact form, " @@ -1444,43 +1472,43 @@ msgstr "" #: app/views/public_body/show.rhtml:5 msgid "More about this authority" -msgstr "" +msgstr "Weitere Informationen zu dieser Behörde" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." -msgstr "" +msgstr "Weitere Behörden" -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." -msgstr "" +msgstr "Weitere erfolgreiche Anfragen" -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" -msgstr "" +msgstr "Meine Anfrage wurde <strong>abgelehnt</strong>" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" -msgstr "" +msgstr "Meine Anfragen " #: app/models/public_body.rb:36 msgid "Name can't be blank" -msgstr "" +msgstr "Name muss eingegeben werden " #: app/models/public_body.rb:40 msgid "Name is already taken" -msgstr "" +msgstr "Benutzername vergeben" #: app/views/user/signchangeemail.rhtml:20 msgid "New e-mail:" -msgstr "" +msgstr "Neue Email:" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" msgstr "" #: app/views/user/signchangepassword.rhtml:15 msgid "New password:" -msgstr "" +msgstr "Neues Passwort:" #: app/views/user/signchangepassword.rhtml:20 msgid "New password: (again)" @@ -1488,15 +1516,15 @@ msgstr "" #: app/views/request/show_response.rhtml:62 msgid "New response to your request" -msgstr "" +msgstr "Neue Antwort auf Ihre Anfrage" #: app/views/request/show_response.rhtml:68 msgid "New response to {{law_used_short}} request" -msgstr "" +msgstr "Neue Antwort auf {{law_used_short}} Anfrage" #: app/views/general/search.rhtml:40 msgid "Newest results first" -msgstr "" +msgstr "Aktuellste Ergebnisse zuerst anzeigen" #: app/views/user/set_draft_profile_photo.rhtml:32 msgid "Next, crop your photo >>" @@ -1505,10 +1533,12 @@ msgstr "" #: app/views/general/search.rhtml:16 msgid "Next, select the public authority you'd like to make the request from." msgstr "" +"Nächster Schritt: Wählen Sie die Behörde, an welche Sie eine Anfrage senden " +"möchten. " #: app/views/general/search.rhtml:48 msgid "No public authorities found" -msgstr "" +msgstr "Keine Behörde gefunden" #: app/views/request/list.rhtml:23 msgid "No requests of this sort yet." @@ -1516,23 +1546,21 @@ msgstr "" #: app/views/request/similar.rhtml:7 msgid "No similar requests found." -msgstr "" +msgstr "Keine vergleichbaren Anfragen gefunden. " -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." msgstr "" +"Bisher hat niemand eine Anfrage an {{public_body_name}} über diese Seite " +"gestellt." #: app/views/request/_request_listing.rhtml:2 #: app/views/public_body/_body_listing.rhtml:2 msgid "None found." msgstr "" -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1564,40 +1592,39 @@ msgid "" "OR, <strong>search</strong> for information others have requested using " "{{site_name}}" msgstr "" -"ODER, <strong>suchen Sie</strong> nach Informationen zu haben andere " -"angeforderte mit {{}} site_name" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" -msgstr "" +msgstr "Alte Emailadresse: " -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" msgstr "" #: app/views/user/show.rhtml:32 msgid "On this page" +msgstr "Auf dieser Seite" + +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" msgstr "" -#: app/views/public_body/show.rhtml:93 +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." msgstr "" +"Es werden ausschliesslich Anfragen zu folgendem Sucheintrag angezeit: " +"{{site_name}} " #: locale/model_attributes.rb:21 msgid "OutgoingMessage|Body" @@ -1619,31 +1646,25 @@ msgstr "" msgid "OutgoingMessage|What doing" msgstr "" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "" -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" -msgstr "" +msgstr "falsches Passwort" #: app/views/user/_signin.rhtml:16 app/views/user/_signup.rhtml:30 msgid "Password:" -msgstr "" +msgstr "Passwort:" #: app/views/user/_signup.rhtml:35 msgid "Password: (again)" msgstr "" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" -msgstr "" +msgstr "Ihr Profilbild:" #: app/views/request/new.rhtml:76 msgid "Plans and administrative measures that affect these matters" @@ -1657,7 +1678,7 @@ msgstr "" msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "" @@ -1701,7 +1722,7 @@ msgstr "Bitte wählen Sie eine Datei mit Ihrem Foto." msgid "Please choose what sort of reply you are making." msgstr "Bitte wählen Sie, welche Art von Antwort Sie geben." -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1717,8 +1738,10 @@ msgstr "" #: app/views/user_mailer/confirm_login.rhtml:3 msgid "Please click on the link below to confirm your email address." msgstr "" +"Klicken Sie auf den unten aufgeführten Link, um Ihre Emailadresse zu " +"bestätigen." -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." @@ -1787,15 +1810,15 @@ msgstr "" "Bitte geben Sie Ihren Namen und nicht Ihre E-Mail-Adresse in das Name-Feld " "ein." -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" msgstr "Bitte geben Sie Ihre neue Email-Adresse ein" -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" msgstr "Bitte geben Sie Ihre alte E-Mail-Adresse ein" -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" msgstr "Bitte geben Sie Ihr Passwort ein" @@ -1807,7 +1830,7 @@ msgstr "Bitte machen Sie Angaben, warum Sie eine Durchsicht möchten" msgid "Please keep it shorter than 500 characters" msgstr "Bitte bleiben Sie unter 500 Zeichen" -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." @@ -1839,24 +1862,25 @@ msgstr "" msgid "Please sign in as " msgstr "" -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" +"Bitte nutzen Sie diese Emailadresse für alle Antworten auf diese Anfrage:" #: app/models/info_request.rb:36 msgid "Please write a summary with some text in it" msgstr "Bitte schreiben Sie eine Zusammenfassung mit etwas Text" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." @@ -1872,7 +1896,7 @@ msgstr "" "Bitte nutzen Sie eine Mischung aus Groß- und Kleinschreibung für Ihre " "Anmerkung. Dies vereinfacht das Lesen für andere." -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -1920,6 +1944,10 @@ msgstr "" msgid "PostRedirect|Uri" msgstr "" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" msgstr "" @@ -1928,17 +1956,17 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" -msgstr "" +msgstr "Anfrage ansehen" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" -msgstr "" +msgstr "Öffentliche Anfrage ansehen" #: locale/model_attributes.rb:18 msgid "ProfilePhoto|Data" @@ -1952,7 +1980,7 @@ msgstr "" msgid "Public authorities - {{description}}" msgstr "" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" @@ -2020,21 +2048,21 @@ msgstr "" #: app/views/request/followup_preview.rhtml:49 msgid "Re-edit this message" -msgstr "" +msgstr "Nachricht ändern" #: app/views/request/preview.rhtml:40 msgid "Re-edit this request" -msgstr "" +msgstr "Anfrage ändern" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." msgstr "" -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" -msgstr "" +msgstr "Blog lesen" #: app/views/request/new.rhtml:16 msgid "Read this before writing your {{info_request_law_used_full}} request" @@ -2044,25 +2072,25 @@ msgstr "" msgid "Recently described results first" msgstr "" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "" #: app/views/request/list.rhtml:6 msgid "Recently sent requests" -msgstr "" +msgstr "Kürzlich gestellte Anfragen" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "" #: app/models/info_request_event.rb:300 msgid "Refused" -msgstr "" +msgstr "Abgelehnt" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." -msgstr "" +msgstr "Abgelehnt." #: app/views/user/_signin.rhtml:26 msgid "" @@ -2076,7 +2104,7 @@ msgstr "" #: app/views/comment/_single_comment.rhtml:24 msgid "Report abuse" -msgstr "" +msgstr "Missbrauch melden" #: app/views/request/_after_actions.rhtml:37 msgid "Request an internal review" @@ -2088,12 +2116,14 @@ msgstr "" #: app/views/request/hidden.rhtml:1 msgid "Request has been removed" -msgstr "" +msgstr "Anfrage wurde verweigert" #: app/views/request/_request_listing_via_event.rhtml:28 msgid "" "Request sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" +"Anfrage gestellt an {{public_body_name}} durch {{info_request_user}} am " +"{{date}}." #: app/views/request/_request_listing_via_event.rhtml:36 msgid "" @@ -2108,7 +2138,7 @@ msgstr "" #: app/views/request/_sidebar_request_listing.rhtml:13 msgid "Requested on {{date}}" -msgstr "" +msgstr "Angefragt am {{date}}" #: app/views/request/upload_response.rhtml:11 msgid "Respond by email" @@ -2116,7 +2146,7 @@ msgstr "" #: app/views/request/_after_actions.rhtml:46 msgid "Respond to request" -msgstr "" +msgstr "Auf Anfrage reagieren" #: app/views/request/upload_response.rhtml:5 msgid "Respond to the FOI request" @@ -2128,19 +2158,20 @@ msgstr "" #: app/views/request/show.rhtml:70 msgid "Response to this request is <strong>delayed</strong>." -msgstr "" +msgstr "Die Antwort auf diese Anfrage ist <strong>im Rückstand</strong>." #: app/views/request/show.rhtml:78 msgid "Response to this request is <strong>long overdue</strong>." msgstr "" +"Die Antwort auf diese Anfrage ist <strong>lange im Rückstand</strong>." #: app/views/request/show_response.rhtml:64 msgid "Response to your request" -msgstr "" +msgstr "Reagieren Sie auf Ihre Anfrage" #: app/views/request/upload_response.rhtml:28 msgid "Response:" -msgstr "" +msgstr "Antwort:" #: app/views/general/search.rhtml:9 msgid "Results page {{page_number}}" @@ -2148,13 +2179,13 @@ msgstr "" #: app/views/user/set_profile_about_me.rhtml:35 msgid "Save" -msgstr "" +msgstr "Speichern" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" -msgstr "" +msgstr "Suche" #: app/views/general/search.rhtml:4 msgid "Search Freedom of Information requests, public authorities and users" @@ -2164,9 +2195,9 @@ msgstr "" msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " -msgstr "" +msgstr "Nachricht senden an" #: app/views/request/_followup.rhtml:7 msgid "Send a public follow up message to" @@ -2174,7 +2205,7 @@ msgstr "" #: app/views/request/_followup.rhtml:10 msgid "Send a public reply to" -msgstr "" +msgstr "Senden Sie eine öffentliche Antwort an" #: app/views/request/_correspondence.rhtml:58 msgid "Send follow up" @@ -2182,15 +2213,15 @@ msgstr "" #: app/views/request/followup_preview.rhtml:50 msgid "Send message" -msgstr "" +msgstr "Nachricht senden" #: app/views/user/show.rhtml:69 msgid "Send message to " -msgstr "" +msgstr "Nachricht senden an" #: app/views/request/preview.rhtml:41 msgid "Send public " -msgstr "" +msgstr "Öffentlich senden" #: app/views/user/show.rhtml:53 msgid "Set your profile photo" @@ -2198,11 +2229,11 @@ msgstr "" #: app/models/public_body.rb:39 msgid "Short name is already taken" -msgstr "" +msgstr "Nutzername bereits vergeben " #: app/views/general/search.rhtml:38 msgid "Show most relevant results first" -msgstr "" +msgstr "Relevanteste Suchergebnisse zuerst anzeigen " #: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 msgid "Show only..." @@ -2210,27 +2241,27 @@ msgstr "" #: app/views/user/_signin.rhtml:31 app/views/user/show.rhtml:113 msgid "Sign in" -msgstr "" +msgstr "Anmelden" #: app/views/user/sign.rhtml:20 msgid "Sign in or make a new account" -msgstr "" +msgstr "Anmelden oder neues Benutzerkonto erstellen" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" -msgstr "" +msgstr "Amelden oder einloggen " -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" -msgstr "" +msgstr "Ausloggen" #: app/views/user/_signup.rhtml:41 msgid "Sign up" -msgstr "" +msgstr "Benutzerkonto erstellen" #: app/views/request/_sidebar.rhtml:30 msgid "Similar requests" -msgstr "" +msgstr "Ähnliche Anfragen" #: app/models/info_request_event.rb:302 msgid "Some information sent" @@ -2252,7 +2283,7 @@ msgstr "" #: app/views/general/exception_caught.rhtml:1 msgid "Sorry, we couldn't find that page" -msgstr "" +msgstr "Diese Seite wurde leider nicht gefunden" #: app/views/request/new.rhtml:53 msgid "Special note for this authority!" @@ -2269,11 +2300,11 @@ msgstr "" #: app/views/user/signchangepassword_send_confirm.rhtml:26 msgid "Submit" -msgstr "" +msgstr "Senden" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" -msgstr "" +msgstr "Status senden" #: app/models/track_thing.rb:158 app/models/track_thing.rb:159 msgid "Successful Freedom of Information requests" @@ -2281,11 +2312,11 @@ msgstr "" #: app/views/request/list.rhtml:5 msgid "Successful responses" -msgstr "" +msgstr "Erfolgreiche Anfragen" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." -msgstr "" +msgstr "Erfolgreich." #: app/views/comment/new.rhtml:38 msgid "" @@ -2295,15 +2326,15 @@ msgstr "" #: app/views/request/new.rhtml:93 msgid "Summary:" -msgstr "" +msgstr "Zusammenfassung" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" -msgstr "" +msgstr "Statusliste" #: app/views/request/preview.rhtml:45 msgid "Tags:" -msgstr "" +msgstr "Links" #: app/controllers/request_game_controller.rb:50 msgid "Thank you for helping us keep the site tidy!" @@ -2311,27 +2342,27 @@ msgstr "" #: app/controllers/comment_controller.rb:62 msgid "Thank you for making an annotation!" -msgstr "" +msgstr "Vielen Dank für Ihre Anmerkung" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" msgstr "" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" msgstr "" @@ -2361,8 +2392,8 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" msgstr "" @@ -2374,7 +2405,7 @@ msgstr "" msgid "The accounts have been left as they previously were." msgstr "" -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" @@ -2384,6 +2415,8 @@ msgstr "" msgid "" "The authority only has a <strong>paper copy</strong> of the information." msgstr "" +"Die zuständige Behörde ist ausschliesslich in Besitz einer gedruckten " +"Version <strong>paper copy</strong> der angefragten Informtion. " #: app/views/request/show_response.rhtml:18 msgid "" @@ -2391,7 +2424,7 @@ msgid "" " address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2413,33 +2446,33 @@ msgstr "" #: app/views/general/exception_caught.rhtml:3 msgid "The page either doesn't exist, or is broken. Things you can try now:" -msgstr "" +msgstr "Diese Seite existiert nicht oder ist beschädigt. Versuchen Sie:" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" -msgstr "" +msgstr "Die Anfrage wurde <strong>abgelehnt</strong>" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." -msgstr "" +msgstr "Ihre Anfrage war <strong>teilweise erfolgreich</strong>." #: app/views/request/show.rhtml:86 msgid "The request was <strong>refused</strong> by" -msgstr "" +msgstr "Die Anfrage wurde <strong>abgelehnt</strong> durch" #: app/views/request/show.rhtml:88 msgid "The request was <strong>successful</strong>." -msgstr "" +msgstr "Die Anfrage war <strong>erfolgreich</strong>." #: app/views/request/hidden.rhtml:9 msgid "" @@ -2462,7 +2495,7 @@ msgid "" " by now" msgstr "" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." @@ -2490,7 +2523,7 @@ msgstr "" msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " msgstr "" @@ -2498,27 +2531,27 @@ msgstr "" msgid "Then you can play the request categorisation game." msgstr "" -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " msgstr "" -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " msgstr "" -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " msgstr "" @@ -2526,7 +2559,7 @@ msgstr "" msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" @@ -2546,13 +2579,13 @@ msgid "" " One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." msgstr "" @@ -2560,7 +2593,7 @@ msgstr "" msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2575,20 +2608,26 @@ msgid "" "They have not replied to your {{law_used_short}} request {{title}} promptly," " as normally required by law" msgstr "" +"Ihre {{law_used_short}} Anfrage {{title}}wurde nicht im gesetzlich " +"vorgeschriebenen Zeitrahmen beantwortet. " #: app/views/request_mailer/very_overdue_alert.rhtml:3 msgid "" "They have not replied to your {{law_used_short}} request {{title}}, \n" "as required by law" msgstr "" +"Ihre {{law_used_short}} Anfrage {{title}} wurde nicht nach gesetzlicher " +"Vorschrift beantwortet" #: app/views/request/_after_actions.rhtml:3 msgid "Things to do with this request" msgstr "" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" +"Diese Behörde existiert nichtmehr. Es ist folglich nicht möglich eine " +"Anfrage zu stellen. " #: app/views/request/_hidden_correspondence.rhtml:23 msgid "" @@ -2619,6 +2658,8 @@ msgid "" "This is your own request, so you will be automatically emailed when new " "responses arrive." msgstr "" +"Dies ist Ihre Anfrage. Sie erhalten eine automatische Emailbenchrichtigung, " +"sobald Ihre Anfrage beantwortet wird. " #: app/views/request/_hidden_correspondence.rhtml:17 msgid "" @@ -2634,7 +2675,7 @@ msgstr "" msgid "This person's" msgstr "" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "" @@ -2642,13 +2683,13 @@ msgstr "" msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." msgstr "" -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -2677,6 +2718,8 @@ msgid "" "This site is <strong>public</strong>. Everything you type and any response " "will be published." msgstr "" +"Diese Seite ist <strong>öffentlich</strong>. Jede von Ihnen eingegebene " +"Information, sowie jegliche Antwort wird veröffentlicht. " #: app/views/request/details.rhtml:6 msgid "" @@ -2688,13 +2731,15 @@ msgstr "" #: app/views/user/show.rhtml:79 msgid "This user has been banned from WhatDoTheyKnow.com " -msgstr "" +msgstr "Dieser Nutzer wurde von AskTheEU.org verweigert." #: app/views/user_mailer/changeemail_already_used.rhtml:4 msgid "" "This was not possible because there is already an account using \n" "the email address " msgstr "" +"Dieser Vorgang kann nicht ausgeführt werden, da bereits ein Benutzerkonto " +"mit dieser Emailadresse besteht. " #: app/models/track_thing.rb:161 msgid "To be emailed about any successful requests" @@ -2713,12 +2758,14 @@ msgid "" "To carry on, you need to sign in or make an account. Unfortunately, there\n" "was a technical problem trying to do this." msgstr "" +"Um fortzufahren müssen Sie sich anmelden oder ein Benutzerkonto erstellen. " +"Leider sind bei diesem Versuch technische Störungen aufgetreten. " #: app/controllers/user_controller.rb:247 msgid "To change your email address used on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" msgstr "" @@ -2733,11 +2780,7 @@ msgstr "" #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 @@ -2752,27 +2795,27 @@ msgstr "" msgid "To post your annotation" msgstr "" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " msgstr "" -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " msgstr "" -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " msgstr "" -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" msgstr "" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" msgstr "" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" @@ -2789,12 +2832,12 @@ msgstr "" #: app/views/request/_request_listing_short_via_event.rhtml:9 msgid "To {{public_body_link_absolute}}" -msgstr "" +msgstr "An {{public_body_link_absolute}}" #: app/views/request/preview.rhtml:17 #: app/views/request/followup_preview.rhtml:22 app/views/request/new.rhtml:88 msgid "To:" -msgstr "" +msgstr "An:" #: app/models/track_thing.rb:174 msgid "Track requests to {{public_body_name}} by email" @@ -2806,11 +2849,11 @@ msgstr "" #: app/views/user/show.rhtml:29 msgid "Track this person" -msgstr "" +msgstr "Dieser Person folgen " #: app/views/request/_sidebar.rhtml:2 msgid "Track this request" -msgstr "" +msgstr "Diese Anfrage verfolgen" #: locale/model_attributes.rb:33 msgid "TrackThing|Track medium" @@ -2824,7 +2867,7 @@ msgstr "" msgid "TrackThing|Track type" msgstr "" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." @@ -2832,7 +2875,7 @@ msgstr "" #: app/models/public_body.rb:37 msgid "URL name can't be blank" -msgstr "" +msgstr "URL muss angegeben werden" #: app/models/user_mailer.rb:45 msgid "Unable to change email address on WhatDoTheyKnow.com" @@ -2869,32 +2912,32 @@ msgstr "" #: app/views/general/exception_caught.rhtml:17 msgid "Unknown" -msgstr "" +msgstr "Unbekannt" #: app/models/info_request_event.rb:312 msgid "Unusual response" msgstr "" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "" #: app/views/request/_after_actions.rhtml:13 #: app/views/request/_after_actions.rhtml:33 msgid "Update the status of this request" -msgstr "" +msgstr "Status der Anfrage aktualisieren" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " msgstr "" -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" msgstr "" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" @@ -2906,7 +2949,7 @@ msgstr "" #: locale/model_attributes.rb:79 msgid "User|About me" -msgstr "" +msgstr "BenutzerIÜber mich" #: locale/model_attributes.rb:77 msgid "User|Admin level" @@ -2918,11 +2961,11 @@ msgstr "" #: locale/model_attributes.rb:70 msgid "User|Email" -msgstr "" +msgstr "BenutzerIEmail" #: locale/model_attributes.rb:74 msgid "User|Email confirmed" -msgstr "" +msgstr "UserIEmail bestätigt" #: locale/model_attributes.rb:72 msgid "User|Hashed password" @@ -2934,7 +2977,7 @@ msgstr "" #: locale/model_attributes.rb:71 msgid "User|Name" -msgstr "" +msgstr "BenutzerIName" #: locale/model_attributes.rb:73 msgid "User|Salt" @@ -2944,7 +2987,7 @@ msgstr "" msgid "User|Url name" msgstr "" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" msgstr "" @@ -2960,23 +3003,23 @@ msgstr "" msgid "View Freedom of Information requests made by" msgstr "" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" -msgstr "" +msgstr "Behörden ansehen" #: app/views/public_body/view_email_captcha.rhtml:12 msgid "View email" -msgstr "" +msgstr "Email ansehen" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" -msgstr "" +msgstr "Anfragen ansehen" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "" -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." @@ -2991,7 +3034,7 @@ msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" @@ -3024,20 +3067,26 @@ msgid "" "We've sent an email to your new email address. You'll need to click the link in\n" "it before your email address will be changed." msgstr "" +"Wir haben eine Email an Ihre neue Emailadresse gesendet. Sie müssen den Link" +" in dieser Email anklicken, um Ihre neue Adresse zu aktivieren. " #: app/views/user/confirm.rhtml:6 msgid "" "We've sent you an email, and you'll need to click the link in it before you can\n" "continue." msgstr "" +"Wir haben Ihnen eine Email gesendet. Um fortzufahren klicken Sie bitte den " +"darin angezeigten Link. " #: app/views/user/signchangepassword_confirm.rhtml:6 msgid "" "We've sent you an email, click the link in it, then you can change your " "password." msgstr "" +"Wir haben Ihnen eine Email gesendet. Klicken Sie den darin angezeigten Link," +" um Ihr Passwort zu ändern. " -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "" @@ -3077,34 +3126,26 @@ msgstr "" msgid "Withdrawn by requester" msgstr "" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "" -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " -msgstr "" +msgstr "Antwort senden" -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " msgstr "" #: app/views/request/new.rhtml:46 msgid "Write your request in <strong>simple, precise language</strong>." msgstr "" +"Formulieren Sie Ihre Anfrage in <strong>schlicht und präzise </strong>." #: app/models/info_request_event.rb:296 msgid "Wrong Response" -msgstr "" - -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "" - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" +msgstr "Falsche Antwort" #: app/views/comment/_single_comment.rhtml:10 msgid "You" @@ -3128,7 +3169,7 @@ msgid "" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." msgstr "" @@ -3140,12 +3181,13 @@ msgstr "" #: app/views/request_mailer/new_response.rhtml:1 msgid "You have a new response to the {{law_used_full}} request " msgstr "" +"Sie haben eine neue Antwort auf die Anfrage {{law_used_full}} erhalten " -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" msgstr "" @@ -3184,19 +3226,19 @@ msgid "" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." -msgstr "" +msgstr "Sie müssen angemeldet sein, um Ihren Profiltext zu ändern. " -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." -msgstr "" +msgstr "Sie müssen angemeldet sein, um Ihren Profilbild zu ändern. " -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." -msgstr "" +msgstr "Sie müssen angemeldet sein, um Ihren Profilbild zu löschen." -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3239,7 +3281,7 @@ msgid "" "with the clarification." msgstr "" -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" msgstr "" @@ -3262,27 +3304,28 @@ msgid "" "message, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" -msgstr "" +msgstr "Ihre Email:" #: app/views/user/show.rhtml:168 msgid "Your email subscriptions" msgstr "" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." msgstr "" @@ -3292,40 +3335,45 @@ msgid "" "to you soon." msgstr "" -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" -msgstr "" +msgstr "Ihre Nachricht an {{recipient_user_name}} wurde versendet!" #: app/views/request/followup_preview.rhtml:15 msgid "Your message will appear in <strong>search engines</strong>" msgstr "" +"Your message will appear in <strong>Suchmaschinen</strong> angezeigt werden" #: app/views/comment/preview.rhtml:10 msgid "" "Your name and annotation will appear in <strong>search engines</strong>." msgstr "" +"Ihr Name und Ihr Kommentar wird in <strong>Suchmaschinen</strong>.angezeigt " +"werden. " #: app/views/request/preview.rhtml:8 msgid "" "Your name, request and any responses will appear in <strong>search engines</strong>\n" " (<a href=\"%s\">details</a>)." msgstr "" +"Ihr Name, Ihre Anfrage und alle Antworten werden in <strong>Suchmaschinen</strong> angezeigt werden\n" +" (<a href=\"%s\">details</a>)." #: app/views/user/_signup.rhtml:18 msgid "Your name:" -msgstr "" +msgstr "Ihr Name:" #: app/views/request_mailer/stopped_responses.rhtml:14 msgid "Your original message is attached." -msgstr "" +msgstr "Ihre ursprüngliche Nachricht befindet sich im Anhang. " #: app/controllers/user_controller.rb:230 msgid "Your password has been changed." -msgstr "" +msgstr "Ihr Passwort wurde geändert." #: app/views/user/signchangeemail.rhtml:25 msgid "Your password:" -msgstr "" +msgstr "Ihr Passwort:" #: app/views/user/set_draft_profile_photo.rhtml:18 msgid "" @@ -3341,7 +3389,7 @@ msgstr "" #: app/views/request/new.rhtml:109 msgid "Your request:" -msgstr "" +msgstr "Ihre Anfrage:" #: app/views/request/upload_response.rhtml:8 msgid "" @@ -3357,7 +3405,7 @@ msgstr "" #: app/models/outgoing_message.rb:69 msgid "Yours faithfully," -msgstr "" +msgstr "Mit freundlichem Gruß, " #: app/models/outgoing_message.rb:67 msgid "Yours sincerely," @@ -3368,18 +3416,20 @@ msgid "" "a one line summary of the information you are requesting, \n" "\t\t\te.g." msgstr "" +"Einzeilige Zusammenfassung der von Ihnen angefragten Information, \n" +"<span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span><span class=\"whitespace other\" title=\"Tab\">»</span>e.g." -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" -msgstr "" +msgstr "Administration" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" msgstr "" #: app/views/user/wrong_user.rhtml:5 msgid "and sign in as " -msgstr "" +msgstr "und melden Sie sich an als" #: app/views/request/show.rhtml:52 msgid "" @@ -3389,31 +3439,31 @@ msgstr "" #: app/views/request/show.rhtml:57 msgid "and update the status." -msgstr "" +msgstr "und aktualisieren Sie den Status. " -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" #: app/views/user/show.rhtml:153 msgid "annotation" -msgstr "" +msgstr "Anmerkung" #: app/views/user/show.rhtml:147 msgid "annotations" -msgstr "" +msgstr "Anmerkungen" #: app/views/request_mailer/very_overdue_alert.rhtml:1 msgid "are long overdue." -msgstr "" +msgstr "sind lange überfällig. " -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "" #: app/views/request/show.rhtml:75 msgid "by" -msgstr "" +msgstr "von" #: app/views/request/_followup.rhtml:41 msgid "by <strong>{{date}}</strong>" @@ -3421,7 +3471,7 @@ msgstr "" #: app/views/request/_request_listing_via_event.rhtml:34 msgid "by {{public_body_name}} to {{info_request_user}} on {{date}}." -msgstr "" +msgstr "von {{public_body_name}} an {{info_request_user}} am {{date}}." #: app/views/request/_request_listing_short_via_event.rhtml:10 msgid "by {{user_link_absolute}}" @@ -3433,7 +3483,7 @@ msgstr "" #: locale/model_attributes.rb:26 msgid "comment" -msgstr "" +msgstr "Kommentar" #: app/views/request/show_response.rhtml:41 msgid "" @@ -3451,7 +3501,7 @@ msgstr "" #: app/views/general/frontpage.rhtml:18 msgid "e.g." -msgstr "" +msgstr "z.B." #: app/views/user/show.rhtml:96 msgid "edit text about you" @@ -3459,7 +3509,7 @@ msgstr "" #: app/views/user/show.rhtml:171 msgid "email subscription" -msgstr "" +msgstr "Anleitung mailen" #: app/views/request_mailer/very_overdue_alert.rhtml:4 msgid "even during holidays" @@ -3496,22 +3546,22 @@ msgstr "" #: locale/model_attributes.rb:63 msgid "incoming message" -msgstr "" +msgstr "Eingehende Nachricht" #: locale/model_attributes.rb:80 msgid "info request" -msgstr "" +msgstr "Informationsanfrage" #: locale/model_attributes.rb:35 msgid "info request event" msgstr "" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" -msgstr "" +msgstr "interner Fehler" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "" @@ -3530,7 +3580,7 @@ msgstr "" #: app/views/request/show.rhtml:67 msgid "no later than" -msgstr "" +msgstr "nicht später als" #: app/views/request/followup_bad.rhtml:18 msgid "" @@ -3542,11 +3592,11 @@ msgstr "" #: app/views/request/show.rhtml:65 msgid "normally" -msgstr "" +msgstr "normalerweise" #: app/views/user/show.rhtml:114 msgid "only" -msgstr "" +msgstr "nur" #: locale/model_attributes.rb:20 msgid "outgoing message" @@ -3554,11 +3604,11 @@ msgstr "" #: app/views/user/sign.rhtml:11 msgid "please sign in as " -msgstr "" +msgstr "Bitte melden Sie sich an als" #: app/views/user/sign.rhtml:28 msgid "please sign in or make a new account." -msgstr "" +msgstr "Bitte melden Sie sich an oder erstellen Sie ein neues Benutzerkonto." #: locale/model_attributes.rb:50 msgid "post redirect" @@ -3566,7 +3616,7 @@ msgstr "" #: locale/model_attributes.rb:17 msgid "profile photo" -msgstr "" +msgstr "Profilbild" #: locale/model_attributes.rb:2 msgid "public body" @@ -3578,7 +3628,7 @@ msgstr "" #: app/views/request_mailer/not_clarified_alert.rhtml:1 msgid "request." -msgstr "" +msgstr "Anfrage." #: app/views/request/show.rhtml:82 msgid "requesting an internal review" @@ -3590,45 +3640,45 @@ msgid "" "email to let them know what you are going to do about it." msgstr "" -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" -msgstr "" +msgstr "Nachfrage versenden" #: app/views/request/_request_listing_via_event.rhtml:31 msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" -msgstr "" +msgstr "Anmelden" #: app/views/user/wrong_user.rhtml:4 msgid "sign out" -msgstr "" +msgstr "Abmelden" #: app/views/request_mailer/new_response.rhtml:2 msgid "that you made to" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" -msgstr "" +msgstr "das Ask The EU team" #: app/views/user/show.rhtml:140 msgid "this person" -msgstr "" +msgstr "diese Person" #: app/views/user_mailer/changeemail_already_used.rhtml:2 msgid "to" @@ -3652,13 +3702,13 @@ msgstr "" msgid "to read" msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." msgstr "" #: app/views/request/show.rhtml:39 msgid "to {{public_body}}" -msgstr "" +msgstr "an {{public_body}}" #: locale/model_attributes.rb:31 msgid "track thing" @@ -3674,11 +3724,11 @@ msgstr "" #: app/views/request/followup_bad.rhtml:29 msgid "unknown reason " -msgstr "" +msgstr "unbekannte Ursache" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " -msgstr "" +msgstr "unbekannter Status" #: app/views/user/show.rhtml:208 msgid "unsubscribe" @@ -3690,11 +3740,11 @@ msgstr "" #: app/views/request/show.rhtml:46 msgid "useful information." -msgstr "" +msgstr "nützliche Information" #: locale/model_attributes.rb:69 msgid "user" -msgstr "" +msgstr "Benutzer" #: locale/model_attributes.rb:67 msgid "user info request sent alert" @@ -3715,9 +3765,9 @@ msgstr "" msgid "{{info_request_user_name}} only:" msgstr "" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" -msgstr "" +msgstr "vor {{length_of_time}} " #: app/views/request/_after_actions.rhtml:43 msgid "{{public_body_name}} only:" @@ -3731,6 +3781,6 @@ msgstr "" #: app/views/request/show.rhtml:35 msgid "{{user}} made this {{law_used_full}} request" -msgstr "" +msgstr "{{user}} hat diese {{law_used_full}} Anfrage gestellt" diff --git a/locale/es/app.po b/locale/es/app.po index f5d55f3e6..95ad582b1 100644 --- a/locale/es/app.po +++ b/locale/es/app.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# <victoria@access-info.org>, 2011. +# David Cabo <david.cabo@gmail.com>, 2011. # skenaja <alex@alexskene.com>, 2011. msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-07-12 14:28+0000\n" -"Last-Translator: sebbacon <seb.bacon@gmail.com>\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-27 00:27+0000\n" +"Last-Translator: vickyanderica <victoria@access-info.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +25,7 @@ msgid "" " easier for others to get involved with what you're doing." msgstr "" -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" @@ -129,17 +131,17 @@ msgstr "" msgid " when you send this message." msgstr "" -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" -msgstr[0] "%d Libera de Information requesto" -msgstr[1] "Libera de Information requesti numbera %d" +msgstr[0] "%d petición de acceso a información" +msgstr[1] "%d peticiones de acceso a información" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" -msgstr[0] "%d nonna requesti" -msgstr[1] "%d multissimo requestos" +msgstr[0] "%d petición" +msgstr[1] "%d peticiones" #: app/views/request/new.rhtml:102 msgid "'Crime statistics by ward level for Wales'" @@ -149,7 +151,7 @@ msgstr "" msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -176,18 +178,18 @@ msgstr "" #: app/views/general/search.rhtml:53 msgid "<a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add one</a>." -msgstr "<a href=\"%s\">Browso tutto</a> ou <a href=\"%s\">demandus adder une</a>." +msgstr "<a href=\"%s\">Ver todas</a> o <a href=\"%s\">pídenos que añadamos una</a>." #: app/views/general/exception_caught.rhtml:13 msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" msgstr "" -"<a href=\"%s\">Makando une Libera de Information requesti</a> a " +"<a href=\"%s\">Hacer una nueva petición de información</a> a " "{{public_body_name}}" #: app/views/public_body/list.rhtml:43 @@ -199,7 +201,7 @@ msgstr "" msgid "<a href=\"%s\">details</a>" msgstr "" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "" @@ -209,7 +211,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -224,59 +226,59 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -284,7 +286,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -292,27 +294,27 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -328,63 +330,82 @@ msgid "" "</p>" msgstr "" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -"<strong><code>commented_by:tony_bowden</code></strong> a busquar annotationi \n" -"makando para Tony Bowden, typar la nom con en el URL." +"<strong><code>commented_by:rafael_nadal</code></strong> para buscar " +"comentarios hechos por el usuario 'rafael_nadal'." -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" +"<strong><code>filetype:pdf</code></strong> para buscar todas las respuestas " +"con PDFs adjuntos. O prueba estas: <code>{{list_of_file_extensions}}</code>" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." msgstr "" +"<strong><code>request:</code></strong> para restringir la búsqueda a una " +"petición específica, escribiendo el título tal y como aparece en la URL." -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." msgstr "" +"<code><strong>requested_by:julian_todd</strong></code> para buscar las " +"peticiones realizadas por Julian Todd, escribiendo el nombre como aparece en" +" la URL." -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." msgstr "" +"<strong><code>requested_from:consejo_europeo</code></strong> para buscar " +"peticiones realizadas al Consejo Europeo, escribiendo su nombre como aparece" +" en la URL." -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " "statuses</a> below." msgstr "" +"<code><strong>status:</strong></code> para seleccionar en función del estado" +" de la solicitud, consulte la <a href=\"%s\">tabla de estados</a> a " +"continuación." -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" " can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" +"<strong><code>tag:salud</code></strong> para buscar todos los organismos públicos o peticiones con la etiqueta dada. Puede incluir múltiples etiquetas, \n" +" y valores, e.g. <code>tag:salud AND tag:financial_transaction:335633</code>. Por defecto, basta con que cualquiera de las etiquetas\n" +" esté presente, añada <code>AND</code> explícitamente si sólo quiere resultados con todas ellas presentes." -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." msgstr "" +"<strong><code>variety:</code></strong> para seleccionar el tipo de " +"información a buscar, consulte la <a href=\"%s\">tabla de tipos</a> a " +"continuación." #: app/views/comment/new.rhtml:56 msgid "" @@ -392,11 +413,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" @@ -452,7 +473,7 @@ msgid "" " to it, will be displayed publicly on this website." msgstr "" -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "" @@ -511,15 +532,15 @@ msgstr "" #: app/models/user.rb:54 msgid "Admin level is not included in list" -msgstr "" +msgstr "Nivel de Administrador no incluido en la lista" #: app/views/request_mailer/requires_admin.rhtml:9 msgid "Administration URL:" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" -msgstr "" +msgstr "Ayuda para la búsqueda avanzada" #: app/views/comment/new.rhtml:52 msgid "" @@ -547,7 +568,7 @@ msgid "" "you, the original requester, to evaluate them." msgstr "" -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" msgstr "" @@ -587,29 +608,15 @@ msgstr "" msgid "Attachment (optional):" msgstr "" -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "" - -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "" -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "" -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "" @@ -642,8 +649,8 @@ msgid "" "Can't find it? <a href=\"%s\">Browse all</a> or <a href=\"%s\">ask us to add" " it</a>." msgstr "" -"No busquara? <a href=\"%s\">Browse tutti</a> ou <a href=\"%s\">demanda a nous a addare \"\n" -"\"la</a> " +"No lo encuentra? <a href=\"%s\">Consulte la lista completa</a> o <a " +"href=\"%s\">pídanos que añadamos uno nuevo</a> " #: app/controllers/track_controller.rb:143 msgid "Cancel a {{site_name}} alert" @@ -669,7 +676,6 @@ msgstr "" msgid "CensorRule|Text" msgstr "" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "" @@ -678,7 +684,7 @@ msgstr "" msgid "Change password on {{site_name}}" msgstr "" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" msgstr "" @@ -711,7 +717,7 @@ msgstr "" msgid "Change your password {{site_name}}" msgstr "" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "" @@ -732,7 +738,7 @@ msgstr "" msgid "Clarification required" msgstr "" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " msgstr "" @@ -768,12 +774,12 @@ msgstr "" msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " msgstr "" -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" msgstr "" @@ -785,9 +791,9 @@ msgstr "" msgid "Confirm your new email address on WhatDoTheyKnow.com" msgstr "" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" -msgstr "" +msgstr "Contacte con {{site_name}}" #: app/models/profile_photo.rb:96 msgid "" @@ -815,19 +821,15 @@ msgstr "" msgid "Deadline Extended" msgstr "" -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" - #: app/models/outgoing_message.rb:57 msgid "Dear " msgstr "" -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." msgstr "" -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" msgstr "" @@ -837,10 +839,9 @@ msgstr "" #: app/views/general/search.rhtml:50 app/views/general/search.rhtml:62 msgid "Did you mean: {{correction}}" -msgstr "" +msgstr "¿Quiere decir: {{correction}}?" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" @@ -850,7 +851,7 @@ msgstr "" msgid "Download original attachment" msgstr "" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." @@ -878,9 +879,9 @@ msgstr "" msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" -msgstr "" +msgstr "Quiero recibir emails con las actulizaciones de esta solicitud" #: app/models/track_thing.rb:155 msgid "Email me new successful responses " @@ -890,11 +891,13 @@ msgstr "" msgid "Email subscriptions" msgstr "" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" msgstr "" +"Introduzca las palabras que desee separadas por espacio, es decir " +"<strong>parlamento gasto</strong>" #: app/views/request/upload_response.rhtml:23 msgid "" @@ -902,11 +905,11 @@ msgid "" "<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" @@ -918,14 +921,14 @@ msgstr "" msgid "Event history details" msgstr "" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" @@ -956,21 +959,17 @@ msgstr "" msgid "FOI requests" msgstr "" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" -msgstr "" +msgstr "Error al convertir la imagen a PNG" #: app/models/profile_photo.rb:105 msgid "" "Failed to convert image to the correct size: at %{cols}x%{rows}, need " "%{width}x%{height}" msgstr "" +"Error al convertir la imagen al tamaño adecuado: es %{cols}x%{rows}, debería" +" ser %{width}x%{height}" #: app/views/request/new.rhtml:21 msgid "First," @@ -982,10 +981,8 @@ msgid "" " <br>like information from. <strong>By law, they have to respond</strong>\n" " (<a href=\"%s\">why?</a>)." msgstr "" -"Premiero, si poco <strong>nomo de Seblando publicus authoritita</strong> \n" -"tu <br>amo informatia. <strong>Con legalando, se obligandus respondre</strong> (<a href=\"%s\">pour acqui?</a>)." -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" msgstr "" @@ -1003,21 +1000,24 @@ msgid "" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." msgstr "" +"No es posible hacer una petición a este organismo, por motivos desconocidos." #: app/views/user/_signin.rhtml:21 msgid "Forgotten your password?" msgstr "" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." msgstr "" +"La ley de acceso a la información no es aplicable a esta institución por lo " +"que no puedes enviar una solicitud." #: app/views/request/followup_bad.rhtml:11 msgid "Freedom of Information law no longer applies to" @@ -1033,17 +1033,17 @@ msgstr "" msgid "Freedom of Information request" msgstr "" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" -msgstr "Makando Libera de Information requesti" +msgstr "peticiones de acceso a la información realizadas" #: app/views/user/show.rhtml:121 app/views/user/show.rhtml:140 msgid "Freedom of Information requests made by" msgstr "" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" -msgstr "Makando Libera de Information requesti con la site isto" +msgstr "peticiones de acceso a la información realizadas por esta web" #: app/views/request/followup_bad.rhtml:12 msgid "" @@ -1064,21 +1064,21 @@ msgstr "" msgid "Handled by post" msgstr "" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." msgstr "" -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" -msgstr "Nomjour!" +msgstr "¡Hola!" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" -msgstr "¡{{username}} hola!" +msgstr "¡Hola, {{username}}!" -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" -msgstr "Aider" +msgstr "Ayuda" #: app/views/request/details.rhtml:50 msgid "" @@ -1106,7 +1106,7 @@ msgstr "" #: app/views/public_body/show.rhtml:7 msgid "Home page of authority" -msgstr "La pago home del authoritias" +msgstr "Sitio web del organismo" #: app/views/request/new.rhtml:63 msgid "" @@ -1118,11 +1118,11 @@ msgstr "" msgid "Human health and safety" msgstr "" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "" msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "" @@ -1156,15 +1156,15 @@ msgstr "" msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" msgstr "" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" msgstr "" @@ -1198,13 +1198,13 @@ msgid "" "the request." msgstr "" -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" msgstr "" @@ -1221,11 +1221,10 @@ msgid "" " a copy to upload</strong>." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" #: app/views/user/bad_token.rhtml:13 @@ -1234,7 +1233,7 @@ msgid "" "more. Please try doing what you were doing from the beginning." msgstr "" -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1340,7 +1339,7 @@ msgstr "" msgid "Information not held" msgstr "" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." msgstr "" @@ -1358,6 +1357,12 @@ msgstr "" msgid "Internal review request" msgstr "" +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + #: app/views/user/no_cookies.rhtml:8 msgid "" "It may be that your browser is not set to accept a thing called \"cookies\",\n" @@ -1406,11 +1411,11 @@ msgstr "" msgid "Local and regional" msgstr "" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." msgstr "" -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" msgstr "" @@ -1418,21 +1423,21 @@ msgstr "" msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" -msgstr "Makando et browser los Libera de Information requesti" +msgstr "Realiza una petición de información o mira las ya realizadas" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" -msgstr "Makando et explorator los Libera de Information requesti" +msgstr "Realiza una petición de información o mira las ya realizadas" #: app/views/general/frontpage.rhtml:4 msgid "Make or explore Freedom of Information requests" -msgstr "\"Makando ou explorator los Libera de Information requesti" +msgstr "Realiza una petición de información o mira las ya realizadas" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" -msgstr "Creer requesto" +msgstr "Realizar petición" #: app/views/public_body/_body_listing_single.rhtml:23 msgid "Make your own request" @@ -1448,37 +1453,37 @@ msgstr "" #: app/views/public_body/show.rhtml:5 msgid "More about this authority" -msgstr "Mas ou subjet du autoritas" +msgstr "Más información sobre este organismo" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." -msgstr "Mas autorititatas..." +msgstr "Más organismos..." -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." -msgstr "Mas requestos de suces" +msgstr "Más peticiones realizadas con éxito..." -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" msgstr "" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" -msgstr "Mes requestos" +msgstr "Mis peticiones" #: app/models/public_body.rb:36 msgid "Name can't be blank" -msgstr "" +msgstr "El nombre no puede estar vacío" #: app/models/public_body.rb:40 msgid "Name is already taken" -msgstr "Nom deja prendar" +msgstr "El nombre ya está siendo utilizado" #: app/views/user/signchangeemail.rhtml:20 msgid "New e-mail:" msgstr "" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" msgstr "" @@ -1500,7 +1505,7 @@ msgstr "" #: app/views/general/search.rhtml:40 msgid "Newest results first" -msgstr "Los resultas la mas nouvela premer" +msgstr "Resultados recientes primero" #: app/views/user/set_draft_profile_photo.rhtml:32 msgid "Next, crop your photo >>" @@ -1508,11 +1513,11 @@ msgstr "" #: app/views/general/search.rhtml:16 msgid "Next, select the public authority you'd like to make the request from." -msgstr "Maintena, shala el authoritas publicas que tu aimer requestar por" +msgstr "Ahora, elige el organismo al que le quiere enviar su petición." #: app/views/general/search.rhtml:48 msgid "No public authorities found" -msgstr "Nulla authoritas publiqua trouves" +msgstr "No se han encontrado organismos" #: app/views/request/list.rhtml:23 msgid "No requests of this sort yet." @@ -1522,23 +1527,19 @@ msgstr "" msgid "No similar requests found." msgstr "" -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." msgstr "" -"Nonna persona crear los requestos Libras Informatias a {{public_body_name}} " -"con esto sita" +"Nadie ha realizado todavía una petición de información a " +"{{public_body_name}} usando esta web." #: app/views/request/_request_listing.rhtml:2 #: app/views/public_body/_body_listing.rhtml:2 msgid "None found." msgstr "" -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1570,29 +1571,25 @@ msgid "" "OR, <strong>search</strong> for information others have requested using " "{{site_name}}" msgstr "" -"Ou <strong>busqar</strong> per infos los autros requesta com {{site_name}}" +"O, <strong>busca</strong> busca en la información que otros han solicitado " +"usando {{site_name}}" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" msgstr "" -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" msgstr "" @@ -1600,9 +1597,13 @@ msgstr "" msgid "On this page" msgstr "" -#: app/views/public_body/show.rhtml:93 +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." -msgstr "Seul los requestos crear con {{site_name}} heerro" +msgstr "Sólo se muestran las peticiones realizadas con {{site_name}}." #: locale/model_attributes.rb:21 msgid "OutgoingMessage|Body" @@ -1624,11 +1625,11 @@ msgstr "" msgid "OutgoingMessage|What doing" msgstr "" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "" -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" msgstr "" @@ -1640,12 +1641,6 @@ msgstr "" msgid "Password: (again)" msgstr "" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" msgstr "" @@ -1662,7 +1657,7 @@ msgstr "" msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "" @@ -1700,13 +1695,13 @@ msgstr "" #: app/models/profile_photo.rb:91 msgid "Please choose a file containing your photo." -msgstr "" +msgstr "Por favor elige el fichero que contiene tu foto" #: app/models/outgoing_message.rb:162 msgid "Please choose what sort of reply you are making." -msgstr "Por favor, show el typo de respondra tu creeara" +msgstr "Por favor, elija el tipo de respuesta que está creando." -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1723,11 +1718,13 @@ msgstr "" msgid "Please click on the link below to confirm your email address." msgstr "" -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." msgstr "" +"Por favor, describe mejor el tema de tu petición en el asunto. Por cierto, " +"no hace falta decir que es una petición FOI, ya lo añadimos nosotros." #: app/views/user/set_draft_profile_photo.rhtml:22 msgid "" @@ -1741,77 +1738,81 @@ msgstr "" #: app/models/user.rb:38 msgid "Please enter a password" -msgstr "" +msgstr "Por favor, introduce una contraseña." #: app/models/contact_validator.rb:30 msgid "Please enter a subject" -msgstr "Por favor, creear una suject" +msgstr "Por favor, introduce un asunto" #: app/models/info_request.rb:35 msgid "Please enter a summary of your request" -msgstr "" +msgstr "Por favor, introduce un resumen de tu petición" #: app/models/user.rb:106 msgid "Please enter a valid email address" -msgstr "" +msgstr "Por favor, introduce una dirección de correo válida" #: app/models/contact_validator.rb:31 msgid "Please enter the message you want to send" -msgstr "" +msgstr "Por favor, introduce el mensaje que quieres enviar" #: app/models/user.rb:49 msgid "Please enter the same password twice" -msgstr "" +msgstr "Por favor, introduce la misma contraseña dos veces" #: app/models/comment.rb:59 msgid "Please enter your annotation" -msgstr "" +msgstr "Por favor, introduce tu comentario" #: app/models/contact_validator.rb:29 app/models/user.rb:34 msgid "Please enter your email address" -msgstr "" +msgstr "Por favor, introduce tu dirección de correo" #: app/models/outgoing_message.rb:147 msgid "Please enter your follow up message" -msgstr "" +msgstr "Por favor, introduce tu mensaje" #: app/models/outgoing_message.rb:150 msgid "Please enter your letter requesting information" -msgstr "" +msgstr "Por favor, introduce tu petición de información" #: app/models/contact_validator.rb:28 app/models/user.rb:36 msgid "Please enter your name" -msgstr "" +msgstr "Por favor, introduce tu nombre" #: app/models/user.rb:109 msgid "Please enter your name, not your email address, in the name field." msgstr "" +"Por favor, introduce tu nombre - no tu dirección de correo - en el campo " +"para el nombre" -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" -msgstr "" +msgstr "Por favor, introduce tu nueva dirección de correo" -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" -msgstr "" +msgstr "Por favor, introduce tu antigua dirección de correo" -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" -msgstr "" +msgstr "Por favor, introduce tu contraseña" #: app/models/outgoing_message.rb:145 msgid "Please give details explaining why you want a review" -msgstr "" +msgstr "Por favor, explica por qué quieres una revisión" #: app/models/about_me_validator.rb:24 msgid "Please keep it shorter than 500 characters" -msgstr "" +msgstr "Por favor, limita tu mensaje a 500 carácteres" -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." msgstr "" +"Por favor, mantén el resumen corto, como en el asunto de un correo " +"electrónico" #: app/views/request/new.rhtml:79 msgid "" @@ -1830,41 +1831,47 @@ msgid "" "Please sign at the bottom with your name, or alter the \"%{signoff}\" " "signature" msgstr "" +"Por favor, firma con tu nombre en la parte inferior, o cambia la firma " +"\"%{signoff}\"" #: app/views/user/sign.rhtml:8 msgid "Please sign in as " msgstr "" -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" #: app/models/info_request.rb:36 msgid "Please write a summary with some text in it" -msgstr "" +msgstr "Por favor, escribe un resumen que no esté vacío" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." msgstr "" +"Por favor, escribe el resumen usando letras mayúsculas y minúsculas para " +"facilitar su lectura" #: app/models/comment.rb:62 msgid "" "Please write your annotation using a mixture of capital and lower case " "letters. This makes it easier for others to read." msgstr "" +"Por favor, escribe tu comentario usando letras mayúsculas y minúsculas para " +"facilitar su lectura" -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -1875,6 +1882,8 @@ msgid "" "Please write your message using a mixture of capital and lower case letters." " This makes it easier for others to read." msgstr "" +"Por favor, escribe tu mensaje usando letras mayúsculas y minúsculas para " +"facilitar su lectura" #: app/views/comment/new.rhtml:41 msgid "" @@ -1910,6 +1919,10 @@ msgstr "" msgid "PostRedirect|Uri" msgstr "" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" msgstr "" @@ -1918,15 +1931,15 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" msgstr "" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" msgstr "" @@ -1942,19 +1955,21 @@ msgstr "" msgid "Public authorities - {{description}}" msgstr "" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" msgstr "" +"Organismos {{start_count}} a {{end_count}} de {{total_count}} para " +"{{user_search_query}}" #: locale/model_attributes.rb:12 msgid "PublicBody|First letter" -msgstr "El premier lettre" +msgstr "Primera letra" #: locale/model_attributes.rb:10 msgid "PublicBody|Home page" -msgstr "La page de home" +msgstr "Stio web" #: locale/model_attributes.rb:8 msgid "PublicBody|Last edit comment" @@ -1966,11 +1981,11 @@ msgstr "" #: locale/model_attributes.rb:3 msgid "PublicBody|Name" -msgstr "La Nom" +msgstr "Nombre" #: locale/model_attributes.rb:11 msgid "PublicBody|Notes" -msgstr "" +msgstr "Notas" #: locale/model_attributes.rb:13 msgid "PublicBody|Publication scheme" @@ -1982,19 +1997,19 @@ msgstr "" #: locale/model_attributes.rb:4 msgid "PublicBody|Short name" -msgstr "La nom breva" +msgstr "Nombre corto" #: locale/model_attributes.rb:9 msgid "PublicBody|Url name" -msgstr "" +msgstr "Dirección web" #: locale/model_attributes.rb:6 msgid "PublicBody|Version" -msgstr "" +msgstr "Versión" #: app/views/public_body/show.rhtml:10 msgid "Publication scheme" -msgstr "" +msgstr "Esquema de publicación" #: locale/model_attributes.rb:49 msgid "RawEmail|Data binary" @@ -2016,15 +2031,17 @@ msgstr "" msgid "Re-edit this request" msgstr "" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." msgstr "" +"Más información sobre <a href=\"%s\">los operadores de búsqueda " +"avanzados</a>, como cercanía y comodines." -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" -msgstr "Lire bloggo" +msgstr "Leer el blog" #: app/views/request/new.rhtml:16 msgid "Read this before writing your {{info_request_law_used_full}} request" @@ -2032,9 +2049,9 @@ msgstr "" #: app/views/general/search.rhtml:42 msgid "Recently described results first" -msgstr "Los resultas recentas decriba au premier" +msgstr "Resultados descritos recientemente primero" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "" @@ -2042,7 +2059,7 @@ msgstr "" msgid "Recently sent requests" msgstr "" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "" @@ -2050,7 +2067,7 @@ msgstr "" msgid "Refused" msgstr "" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." msgstr "" @@ -2134,27 +2151,27 @@ msgstr "" #: app/views/general/search.rhtml:9 msgid "Results page {{page_number}}" -msgstr "Page de resultas numero {{page_number}}" +msgstr "Página de resultados {{page_number}}" #: app/views/user/set_profile_about_me.rhtml:35 msgid "Save" msgstr "" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" -msgstr "Busquar" +msgstr "Buscar" #: app/views/general/search.rhtml:4 msgid "Search Freedom of Information requests, public authorities and users" -msgstr "Busquare Libra Info Requesta, authoritas et personna" +msgstr "Buscar peticiones de información, organismos públicos y usuarios" #: app/views/general/exception_caught.rhtml:7 msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " msgstr "" @@ -2188,11 +2205,11 @@ msgstr "" #: app/models/public_body.rb:39 msgid "Short name is already taken" -msgstr "" +msgstr "Nombre de usuario ya en uso" #: app/views/general/search.rhtml:38 msgid "Show most relevant results first" -msgstr "" +msgstr "Muestra resultados más relevantes primero" #: app/views/request/list.rhtml:2 app/views/public_body/list.rhtml:3 msgid "Show only..." @@ -2206,13 +2223,13 @@ msgstr "" msgid "Sign in or make a new account" msgstr "" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" -msgstr "Enregister au signin" +msgstr "Iniciar sesión o registro" -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" -msgstr "Exito" +msgstr "Cerrar sesión" #: app/views/user/_signup.rhtml:41 msgid "Sign up" @@ -2261,7 +2278,7 @@ msgstr "" msgid "Submit" msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" msgstr "" @@ -2273,7 +2290,7 @@ msgstr "" msgid "Successful responses" msgstr "" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." msgstr "" @@ -2287,9 +2304,9 @@ msgstr "" msgid "Summary:" msgstr "" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" -msgstr "" +msgstr "Tabla de estados" #: app/views/request/preview.rhtml:45 msgid "Tags:" @@ -2303,25 +2320,25 @@ msgstr "" msgid "Thank you for making an annotation!" msgstr "" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" msgstr "" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" msgstr "" @@ -2351,8 +2368,8 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" msgstr "" @@ -2364,7 +2381,7 @@ msgstr "" msgid "The accounts have been left as they previously were." msgstr "" -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" @@ -2381,7 +2398,7 @@ msgid "" " address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2405,21 +2422,21 @@ msgstr "" msgid "The page either doesn't exist, or is broken. Things you can try now:" msgstr "" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" msgstr "" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." msgstr "" @@ -2452,11 +2469,13 @@ msgid "" " by now" msgstr "" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." msgstr "" +"El índice de búsqueda no está accesible en estos momentos: no podemos " +"mostrar las peticiones de información realizadas a este organismo." #: app/views/user/show.rhtml:141 msgid "" @@ -2480,7 +2499,7 @@ msgstr "" msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " msgstr "" @@ -2488,27 +2507,27 @@ msgstr "" msgid "Then you can play the request categorisation game." msgstr "" -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " msgstr "" -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " msgstr "" -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " msgstr "" @@ -2516,7 +2535,7 @@ msgstr "" msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" @@ -2536,13 +2555,13 @@ msgid "" " One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." msgstr "" @@ -2550,7 +2569,7 @@ msgstr "" msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2576,9 +2595,10 @@ msgstr "" msgid "Things to do with this request" msgstr "" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" +"Este organismo ya no existe, no pueden realizarse peticiones de información." #: app/views/request/_hidden_correspondence.rhtml:23 msgid "" @@ -2624,7 +2644,7 @@ msgstr "" msgid "This person's" msgstr "" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "" @@ -2632,13 +2652,13 @@ msgstr "" msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." msgstr "" -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -2696,7 +2716,7 @@ msgstr "" #: app/controllers/track_controller.rb:141 msgid "To cancel this alert" -msgstr "" +msgstr "Cancelar esta alerta" #: app/views/user/no_cookies.rhtml:5 msgid "" @@ -2706,11 +2726,11 @@ msgstr "" #: app/controllers/user_controller.rb:247 msgid "To change your email address used on {{site_name}}" -msgstr "" +msgstr "Cambiar la dirección de correo usada en {{site_name}}" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" -msgstr "" +msgstr "Reclasificar la respuesta a esta petición" #: app/views/request/show_response.rhtml:39 msgid "To do that please send a private email to " @@ -2723,11 +2743,7 @@ msgstr "" #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 @@ -2736,36 +2752,38 @@ msgstr "" #: app/controllers/request_game_controller.rb:38 msgid "To play the request categorisation game" -msgstr "" +msgstr "Jugar al juego de recategorización de peticiones" #: app/controllers/comment_controller.rb:55 msgid "To post your annotation" -msgstr "" +msgstr "Añadir su comentario" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " -msgstr "" +msgstr "Contestar a " -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " -msgstr "" +msgstr "Enviar una respuesta a " -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " -msgstr "" +msgstr "Para enviar un mensaje a" -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" -msgstr "" +msgstr "Para enviar su petición de información" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" -msgstr "" +msgstr "Para actualizar el estado de su petición de información" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" +"Para cargar una respuesta, debe estar registrado con una dirección de correo" +" electrónico de" #: app/views/public_body/view_email_captcha.rhtml:5 msgid "" @@ -2792,7 +2810,7 @@ msgstr "" #: app/views/public_body/show.rhtml:3 msgid "Track this authority" -msgstr "Traqo esto authotito" +msgstr "" #: app/views/user/show.rhtml:29 msgid "Track this person" @@ -2814,15 +2832,17 @@ msgstr "" msgid "TrackThing|Track type" msgstr "" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." msgstr "" +"Introduce <code><strong>01/01/2008..14/01/2008</strong></code> para mostrar " +"sólo las cosas que sucedieron en las dos primeras semanas de enero." #: app/models/public_body.rb:37 msgid "URL name can't be blank" -msgstr "" +msgstr "La URL no puede estar vacía." #: app/models/user_mailer.rb:45 msgid "Unable to change email address on WhatDoTheyKnow.com" @@ -2865,7 +2885,7 @@ msgstr "" msgid "Unusual response" msgstr "" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "" @@ -2874,21 +2894,25 @@ msgstr "" msgid "Update the status of this request" msgstr "" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " -msgstr "" +msgstr "Actualizar el estado de la petición a " -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" msgstr "" +"Escriba OR (en mayúsculas) cuando no le importe qué palabra, e.g. " +"<strong><code>diputado OR parlamento</code></strong>" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" msgstr "" +"Utilice comillas cuando quiera buscar una frase exacta, por ejemplo " +"<strong><code>\"Consejo de Europa\"</code></strong>" #: locale/model_attributes.rb:68 msgid "UserInfoRequestSentAlert|Alert type" @@ -2896,7 +2920,7 @@ msgstr "" #: locale/model_attributes.rb:79 msgid "User|About me" -msgstr "" +msgstr "Sobre mí" #: locale/model_attributes.rb:77 msgid "User|Admin level" @@ -2908,7 +2932,7 @@ msgstr "" #: locale/model_attributes.rb:70 msgid "User|Email" -msgstr "" +msgstr "Dirección de correo" #: locale/model_attributes.rb:74 msgid "User|Email confirmed" @@ -2924,7 +2948,7 @@ msgstr "" #: locale/model_attributes.rb:71 msgid "User|Name" -msgstr "" +msgstr "Nombre" #: locale/model_attributes.rb:73 msgid "User|Salt" @@ -2932,11 +2956,11 @@ msgstr "" #: locale/model_attributes.rb:75 msgid "User|Url name" -msgstr "" +msgstr "URL" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" -msgstr "" +msgstr "Ver dirección de correo" #: app/views/public_body/view_email_captcha.rhtml:1 msgid "View FOI email address for '{{public_body_name}}'" @@ -2950,23 +2974,23 @@ msgstr "" msgid "View Freedom of Information requests made by" msgstr "" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" -msgstr "" +msgstr "Ver organismos públicos" #: app/views/public_body/view_email_captcha.rhtml:12 msgid "View email" msgstr "" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" -msgstr "" +msgstr "Ver solicitudes" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "" -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." @@ -2981,7 +3005,7 @@ msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" @@ -3027,7 +3051,7 @@ msgid "" "password." msgstr "" -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "" @@ -3067,17 +3091,17 @@ msgstr "" msgid "Withdrawn by requester" msgstr "" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "" -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " -msgstr "" +msgstr "Escribir una respuesta a " -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " -msgstr "" +msgstr "Escribir una respuesta a " #: app/views/request/new.rhtml:46 msgid "Write your request in <strong>simple, precise language</strong>." @@ -3087,22 +3111,13 @@ msgstr "" msgid "Wrong Response" msgstr "" -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "" - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" - #: app/views/comment/_single_comment.rhtml:10 msgid "You" msgstr "" #: app/controllers/track_controller.rb:96 msgid "You are already being emailed updates about " -msgstr "" +msgstr "Ya está recibiendo actualizaciones por correo sobre " #: app/models/track_thing.rb:156 msgid "You are being emailed about any new successful responses" @@ -3118,10 +3133,10 @@ msgid "" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." -msgstr "" +msgstr "Solo puedes solicitar información medioambiental a esta institución" #: app/views/user/show.rhtml:122 msgid "You have" @@ -3131,13 +3146,13 @@ msgstr "" msgid "You have a new response to the {{law_used_full}} request " msgstr "" -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." -msgstr "" +msgstr "Ha cambiado el texto sobre usted en su perfil." -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" -msgstr "" +msgstr "Ha cambiado la dirección de correo que usa en {{site_name}}" #: app/views/user_mailer/already_registered.rhtml:3 msgid "" @@ -3153,6 +3168,8 @@ msgid "" "You know what caused the error, and can <strong>suggest a solution</strong>," " such as a working email address." msgstr "" +"Sabe lo que ha causado el error, y puede <strong>sugerir una solución</a>, " +"como una dirección de correo válida." #: app/views/request/upload_response.rhtml:16 msgid "" @@ -3174,19 +3191,19 @@ msgid "" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." -msgstr "" +msgstr "Necesita identificarse para cambiar el texto de su perfil." -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." -msgstr "" +msgstr "Necesita identificarse para cambiar la foto de su perfil." -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." -msgstr "" +msgstr "Necesita identificarse para borrar la foto de su perfil." -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3213,15 +3230,15 @@ msgstr "" #: app/controllers/track_controller.rb:152 msgid "You will no longer be emailed updates about " -msgstr "" +msgstr "Ya no recibirá actualizaciones por correo sobre " #: app/controllers/track_controller.rb:181 msgid "You will no longer be emailed updates for those alerts" -msgstr "" +msgstr "Ya no recibirá correos para esas alertas" #: app/controllers/track_controller.rb:109 msgid "You will now be emailed updates about " -msgstr "" +msgstr "Ahora recibirá actualizaciones por correo sobre " #: app/views/request_mailer/not_clarified_alert.rhtml:6 msgid "" @@ -3229,9 +3246,9 @@ msgid "" "with the clarification." msgstr "" -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" -msgstr "" +msgstr "Ha borrado la foto de su perfil" #: app/views/user/show.rhtml:152 msgid "Your " @@ -3252,8 +3269,9 @@ msgid "" "message, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" msgstr "" @@ -3261,18 +3279,21 @@ msgstr "" msgid "Your email subscriptions" msgstr "" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" +"Su respuesta no ha sido enviada porque esta petición ha sido bloqueada para " +"evitar spam. Por favor <a href=\"%s\">contáctenos</a> si realmente quiere " +"enviar una respuesta." -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." msgstr "" @@ -3281,10 +3302,12 @@ msgid "" "Your message has been sent. Thank you for getting in touch! We'll get back " "to you soon." msgstr "" +"Su mensaje ha sido enviado. Gracias por escribir, nos pondremos en contacto " +"con usted pronto." -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" -msgstr "" +msgstr "Su mensaje a {{recipient_user_name}} ha sido enviado." #: app/views/request/followup_preview.rhtml:15 msgid "Your message will appear in <strong>search engines</strong>" @@ -3311,7 +3334,7 @@ msgstr "" #: app/controllers/user_controller.rb:230 msgid "Your password has been changed." -msgstr "" +msgstr "Su contraseña ha sido cambiada." #: app/views/user/signchangeemail.rhtml:25 msgid "Your password:" @@ -3359,13 +3382,13 @@ msgid "" "\t\t\te.g." msgstr "" -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" msgstr "" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" -msgstr "en additionado, nomme {{public_body_short_name}}" +msgstr "también conocido como {{public_body_short_name}}" #: app/views/user/wrong_user.rhtml:5 msgid "and sign in as " @@ -3381,7 +3404,7 @@ msgstr "" msgid "and update the status." msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" @@ -3397,7 +3420,7 @@ msgstr "" msgid "are long overdue." msgstr "" -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "" @@ -3441,7 +3464,7 @@ msgstr "" #: app/views/general/frontpage.rhtml:18 msgid "e.g." -msgstr "par exemplo" +msgstr "por ejemplo" #: app/views/user/show.rhtml:96 msgid "edit text about you" @@ -3496,12 +3519,12 @@ msgstr "" msgid "info request event" msgstr "" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" msgstr "" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "" @@ -3580,7 +3603,7 @@ msgid "" "email to let them know what you are going to do about it." msgstr "" -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" msgstr "" @@ -3588,7 +3611,7 @@ msgstr "" msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" msgstr "" @@ -3600,19 +3623,19 @@ msgstr "" msgid "that you made to" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" msgstr "" @@ -3642,7 +3665,7 @@ msgstr "" msgid "to read" msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." msgstr "" @@ -3666,7 +3689,7 @@ msgstr "" msgid "unknown reason " msgstr "" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " msgstr "" @@ -3705,9 +3728,9 @@ msgstr "" msgid "{{info_request_user_name}} only:" msgstr "" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" -msgstr "depuis {{length_of_time}}" +msgstr "hace {{length_of_time}}" #: app/views/request/_after_actions.rhtml:43 msgid "{{public_body_name}} only:" @@ -3724,6 +3747,3 @@ msgid "{{user}} made this {{law_used_full}} request" msgstr "" - - - diff --git a/locale/fr/app.po b/locale/fr/app.po index 7c36ede20..787b9795f 100644 --- a/locale/fr/app.po +++ b/locale/fr/app.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# <victoria@access-info.org>, 2011. # skenaja <alex@alexskene.com>, 2011. msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-07-12 15:26+0100\n" -"Last-Translator: skenaja <alex@alexskene.com>\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-28 13:14+0000\n" +"Last-Translator: vickyanderica <victoria@access-info.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgid "" " easier for others to get involved with what you're doing." msgstr "" -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" @@ -129,13 +130,13 @@ msgstr "" msgid " when you send this message." msgstr "" -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" msgstr[0] "" msgstr[1] "" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" msgstr[0] "" @@ -149,7 +150,7 @@ msgstr "" msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -182,7 +183,7 @@ msgstr "" msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" @@ -197,7 +198,7 @@ msgstr "" msgid "<a href=\"%s\">details</a>" msgstr "" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "" @@ -207,7 +208,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -222,59 +223,59 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -282,7 +283,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -290,27 +291,27 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -326,57 +327,57 @@ msgid "" "</p>" msgstr "" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." msgstr "" -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " "statuses</a> below." msgstr "" -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" " can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." @@ -388,11 +389,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" @@ -448,7 +449,7 @@ msgid "" " to it, will be displayed publicly on this website." msgstr "" -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "" @@ -513,7 +514,7 @@ msgstr "" msgid "Administration URL:" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" msgstr "" @@ -543,7 +544,7 @@ msgid "" "you, the original requester, to evaluate them." msgstr "" -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" msgstr "" @@ -583,29 +584,15 @@ msgstr "" msgid "Attachment (optional):" msgstr "" -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "" - -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "" -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "" -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "" @@ -663,7 +650,6 @@ msgstr "" msgid "CensorRule|Text" msgstr "" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "" @@ -672,7 +658,7 @@ msgstr "" msgid "Change password on {{site_name}}" msgstr "" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" msgstr "" @@ -705,7 +691,7 @@ msgstr "" msgid "Change your password {{site_name}}" msgstr "" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "" @@ -726,7 +712,7 @@ msgstr "" msgid "Clarification required" msgstr "" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " msgstr "" @@ -762,12 +748,12 @@ msgstr "" msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " msgstr "" -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" msgstr "" @@ -779,7 +765,7 @@ msgstr "" msgid "Confirm your new email address on WhatDoTheyKnow.com" msgstr "" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" msgstr "" @@ -788,6 +774,8 @@ msgid "" "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and " "many other common image file formats are supported." msgstr "" +"Nous n'avons pas pu comprendre le format de l'image que vous avais " +"téléchargé. D’autres formats tels que PNG, JPEG ou GIF sont admis ." #: app/views/user/set_crop_profile_photo.rhtml:6 msgid "Crop your profile photo" @@ -809,19 +797,15 @@ msgstr "" msgid "Deadline Extended" msgstr "" -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" - #: app/models/outgoing_message.rb:57 msgid "Dear " msgstr "" -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." msgstr "" -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" msgstr "" @@ -833,8 +817,7 @@ msgstr "" msgid "Did you mean: {{correction}}" msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" @@ -844,7 +827,7 @@ msgstr "" msgid "Download original attachment" msgstr "" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." @@ -872,7 +855,7 @@ msgstr "" msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" msgstr "" @@ -884,7 +867,7 @@ msgstr "" msgid "Email subscriptions" msgstr "" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" @@ -896,11 +879,11 @@ msgid "" "<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" @@ -912,14 +895,14 @@ msgstr "" msgid "Event history details" msgstr "" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" @@ -950,12 +933,6 @@ msgstr "" msgid "FOI requests" msgstr "" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" msgstr "Je n'ais pas pu convertir l'image en PNG" @@ -965,6 +942,8 @@ msgid "" "Failed to convert image to the correct size: at %{cols}x%{rows}, need " "%{width}x%{height}" msgstr "" +"Nous n'avons pas pu changer la dimension de l'image: at %{cols}x%{rows}, " +"need %{width}x%{height}" #: app/views/request/new.rhtml:21 msgid "First," @@ -977,7 +956,7 @@ msgid "" " (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" msgstr "" @@ -995,7 +974,7 @@ msgid "" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." @@ -1005,7 +984,7 @@ msgstr "" msgid "Forgotten your password?" msgstr "" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." @@ -1025,7 +1004,7 @@ msgstr "" msgid "Freedom of Information request" msgstr "" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" msgstr "" @@ -1033,7 +1012,7 @@ msgstr "" msgid "Freedom of Information requests made by" msgstr "" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" msgstr "" @@ -1056,19 +1035,19 @@ msgstr "" msgid "Handled by post" msgstr "" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." msgstr "" -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" msgstr "Bonjour!" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" msgstr "Bonjour, {{username}}!" -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" msgstr "Aide" @@ -1110,11 +1089,11 @@ msgstr "" msgid "Human health and safety" msgstr "" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" msgstr "" @@ -1126,7 +1105,7 @@ msgstr "" msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "" @@ -1148,15 +1127,15 @@ msgstr "" msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" msgstr "" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" msgstr "" @@ -1190,13 +1169,13 @@ msgid "" "the request." msgstr "" -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" msgstr "" @@ -1213,11 +1192,10 @@ msgid "" " a copy to upload</strong>." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" #: app/views/user/bad_token.rhtml:13 @@ -1226,7 +1204,7 @@ msgid "" "more. Please try doing what you were doing from the beginning." msgstr "" -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1332,7 +1310,7 @@ msgstr "" msgid "Information not held" msgstr "" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." msgstr "" @@ -1350,6 +1328,12 @@ msgstr "" msgid "Internal review request" msgstr "" +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + #: app/views/user/no_cookies.rhtml:8 msgid "" "It may be that your browser is not set to accept a thing called \"cookies\",\n" @@ -1398,11 +1382,11 @@ msgstr "" msgid "Local and regional" msgstr "" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." msgstr "" -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" msgstr "" @@ -1410,11 +1394,11 @@ msgstr "" msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" msgstr "" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" msgstr "" @@ -1422,7 +1406,7 @@ msgstr "" msgid "Make or explore Freedom of Information requests" msgstr "" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" msgstr "" @@ -1442,19 +1426,19 @@ msgstr "" msgid "More about this authority" msgstr "Plus d'infos sur cet administration" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." msgstr "Encore plus d'administrations" -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." msgstr "" -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" msgstr "" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" msgstr "Mes demandes" @@ -1470,7 +1454,7 @@ msgstr "Le nom est déjà pris" msgid "New e-mail:" msgstr "" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" msgstr "" @@ -1515,7 +1499,7 @@ msgstr "" msgid "No similar requests found." msgstr "" -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." @@ -1526,10 +1510,6 @@ msgstr "" msgid "None found." msgstr "" -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "Rien trouvé pour '{{search_terms}}" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1562,27 +1542,22 @@ msgid "" "{{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" msgstr "" -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" msgstr "" @@ -1590,7 +1565,11 @@ msgstr "" msgid "On this page" msgstr "" -#: app/views/public_body/show.rhtml:93 +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." msgstr "Seules les demandes faites en utilisant {{site_name}} sont présentés." @@ -1614,11 +1593,11 @@ msgstr "" msgid "OutgoingMessage|What doing" msgstr "" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "" -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" msgstr "" @@ -1630,12 +1609,6 @@ msgstr "" msgid "Password: (again)" msgstr "" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" msgstr "" @@ -1652,7 +1625,7 @@ msgstr "" msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "" @@ -1694,9 +1667,9 @@ msgstr "Choisissez un fichier qui contient votre photo." #: app/models/outgoing_message.rb:162 msgid "Please choose what sort of reply you are making." -msgstr "" +msgstr "S'il vous plait choisissez le type de réponse que vous faites" -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1713,11 +1686,13 @@ msgstr "" msgid "Please click on the link below to confirm your email address." msgstr "" -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." msgstr "" +"S'il vous plait indiquer le sujet de votre sollicitude. Ce n'est pas " +"nécessaire d'indiquer que c'est une sollicitude d'accès à l'information." #: app/views/user/set_draft_profile_photo.rhtml:22 msgid "" @@ -1776,32 +1751,34 @@ msgstr "Entrez votre nom" #: app/models/user.rb:109 msgid "Please enter your name, not your email address, in the name field." msgstr "" +"S'il vous plait indiquer votre nom, non pas votre email, dans la case NOM" -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" msgstr "Entrez votre nouvelle addresse email" -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" msgstr "Entrez votre ancienne addresse email" -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" msgstr "Entrez votre mot de passe" #: app/models/outgoing_message.rb:145 msgid "Please give details explaining why you want a review" -msgstr "" +msgstr "S'il vous plait expliquer pourquoi vous voulez une révision." #: app/models/about_me_validator.rb:24 msgid "Please keep it shorter than 500 characters" -msgstr "" +msgstr "S'il vous limitez vous à 500 caractères " -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." msgstr "" +"S'il vous plait soyez bref dans le résumé, comme dans le titre d'un email." #: app/views/request/new.rhtml:79 msgid "" @@ -1820,33 +1797,37 @@ msgid "" "Please sign at the bottom with your name, or alter the \"%{signoff}\" " "signature" msgstr "" +"S'il vous plait signer à la fin avec votre nom, ou changez la \"%{signoff}\"" +" signature" #: app/views/user/sign.rhtml:8 msgid "Please sign in as " msgstr "" -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" #: app/models/info_request.rb:36 msgid "Please write a summary with some text in it" -msgstr "" +msgstr "S'il vous plait écrivez un résumé avec du texte" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." msgstr "" +"S'il vous plait écrivez un résumé en utilisant des lettres majuscules et " +"minuscules" #: app/models/comment.rb:62 msgid "" @@ -1854,7 +1835,7 @@ msgid "" "letters. This makes it easier for others to read." msgstr "" -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -1865,6 +1846,8 @@ msgid "" "Please write your message using a mixture of capital and lower case letters." " This makes it easier for others to read." msgstr "" +"S'il vous plait écrivez votre message en utilisant des lettres majuscules et" +" minuscules. Ce sera plus facile de lire." #: app/views/comment/new.rhtml:41 msgid "" @@ -1900,6 +1883,10 @@ msgstr "" msgid "PostRedirect|Uri" msgstr "" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" msgstr "" @@ -1908,15 +1895,15 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" msgstr "" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" msgstr "" @@ -1932,7 +1919,7 @@ msgstr "" msgid "Public authorities - {{description}}" msgstr "" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" @@ -2008,13 +1995,13 @@ msgstr "" msgid "Re-edit this request" msgstr "" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." msgstr "" -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" msgstr "Lire le blog" @@ -2026,7 +2013,7 @@ msgstr "" msgid "Recently described results first" msgstr "" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "" @@ -2034,7 +2021,7 @@ msgstr "" msgid "Recently sent requests" msgstr "" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "" @@ -2042,7 +2029,7 @@ msgstr "" msgid "Refused" msgstr "" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." msgstr "" @@ -2132,7 +2119,7 @@ msgstr "Page de résultats {{page_number}}" msgid "Save" msgstr "" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" @@ -2146,7 +2133,7 @@ msgstr "" msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " msgstr "" @@ -2198,11 +2185,11 @@ msgstr "" msgid "Sign in or make a new account" msgstr "" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" msgstr "Se connecter ou s'inscrire" -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" msgstr "Se déconnecter" @@ -2253,7 +2240,7 @@ msgstr "" msgid "Submit" msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" msgstr "" @@ -2265,7 +2252,7 @@ msgstr "" msgid "Successful responses" msgstr "" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." msgstr "" @@ -2279,7 +2266,7 @@ msgstr "" msgid "Summary:" msgstr "" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" msgstr "" @@ -2295,25 +2282,25 @@ msgstr "" msgid "Thank you for making an annotation!" msgstr "" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" msgstr "" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" msgstr "" @@ -2343,8 +2330,8 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" msgstr "" @@ -2356,7 +2343,7 @@ msgstr "" msgid "The accounts have been left as they previously were." msgstr "" -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" @@ -2373,7 +2360,7 @@ msgid "" " address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2397,21 +2384,21 @@ msgstr "" msgid "The page either doesn't exist, or is broken. Things you can try now:" msgstr "" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" msgstr "" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." msgstr "" @@ -2444,7 +2431,7 @@ msgid "" " by now" msgstr "" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." @@ -2472,7 +2459,7 @@ msgstr "" msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " msgstr "" @@ -2480,27 +2467,27 @@ msgstr "" msgid "Then you can play the request categorisation game." msgstr "" -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " msgstr "" -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " msgstr "" -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " msgstr "" @@ -2508,7 +2495,7 @@ msgstr "" msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" @@ -2528,13 +2515,13 @@ msgid "" " One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." msgstr "" @@ -2542,7 +2529,7 @@ msgstr "" msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2568,7 +2555,7 @@ msgstr "" msgid "Things to do with this request" msgstr "" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" @@ -2616,7 +2603,7 @@ msgstr "" msgid "This person's" msgstr "" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "" @@ -2624,13 +2611,13 @@ msgstr "" msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." msgstr "" -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -2700,7 +2687,7 @@ msgstr "" msgid "To change your email address used on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" msgstr "" @@ -2715,11 +2702,7 @@ msgstr "" #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 @@ -2734,27 +2717,27 @@ msgstr "" msgid "To post your annotation" msgstr "" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " msgstr "" -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " msgstr "" -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " msgstr "" -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" msgstr "" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" msgstr "" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" @@ -2806,7 +2789,7 @@ msgstr "" msgid "TrackThing|Track type" msgstr "" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." @@ -2857,7 +2840,7 @@ msgstr "" msgid "Unusual response" msgstr "" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "" @@ -2866,17 +2849,17 @@ msgstr "" msgid "Update the status of this request" msgstr "" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " msgstr "" -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" msgstr "" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" @@ -2926,7 +2909,7 @@ msgstr "" msgid "User|Url name" msgstr "" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" msgstr "" @@ -2942,7 +2925,7 @@ msgstr "" msgid "View Freedom of Information requests made by" msgstr "" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" msgstr "" @@ -2950,15 +2933,15 @@ msgstr "" msgid "View email" msgstr "" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" msgstr "Voir requêtes" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "" -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." @@ -2973,7 +2956,7 @@ msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" @@ -3019,7 +3002,7 @@ msgid "" "password." msgstr "" -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "" @@ -3059,15 +3042,15 @@ msgstr "" msgid "Withdrawn by requester" msgstr "" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "" -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " msgstr "" -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " msgstr "" @@ -3079,15 +3062,6 @@ msgstr "" msgid "Wrong Response" msgstr "" -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "" - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" - #: app/views/comment/_single_comment.rhtml:10 msgid "You" msgstr "" @@ -3110,7 +3084,7 @@ msgid "" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." msgstr "" @@ -3123,11 +3097,11 @@ msgstr "" msgid "You have a new response to the {{law_used_full}} request " msgstr "" -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" msgstr "" @@ -3166,19 +3140,19 @@ msgid "" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." msgstr "" -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." msgstr "" -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3221,7 +3195,7 @@ msgid "" "with the clarification." msgstr "" -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" msgstr "" @@ -3244,8 +3218,9 @@ msgid "" "message, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" msgstr "" @@ -3253,18 +3228,18 @@ msgstr "" msgid "Your email subscriptions" msgstr "" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." msgstr "" @@ -3274,7 +3249,7 @@ msgid "" "to you soon." msgstr "" -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" msgstr "" @@ -3351,11 +3326,11 @@ msgid "" "\t\t\te.g." msgstr "" -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" msgstr "admin" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" msgstr "aussi appelé {{public_body_short_name}}" @@ -3373,7 +3348,7 @@ msgstr "" msgid "and update the status." msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" @@ -3389,7 +3364,7 @@ msgstr "" msgid "are long overdue." msgstr "" -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "" @@ -3488,12 +3463,12 @@ msgstr "" msgid "info request event" msgstr "" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" msgstr "" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "" @@ -3572,7 +3547,7 @@ msgid "" "email to let them know what you are going to do about it." msgstr "" -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" msgstr "" @@ -3580,7 +3555,7 @@ msgstr "" msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" msgstr "" @@ -3592,19 +3567,19 @@ msgstr "" msgid "that you made to" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" msgstr "" @@ -3634,7 +3609,7 @@ msgstr "" msgid "to read" msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." msgstr "" @@ -3658,7 +3633,7 @@ msgstr "" msgid "unknown reason " msgstr "" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " msgstr "" @@ -3697,7 +3672,7 @@ msgstr "" msgid "{{info_request_user_name}} only:" msgstr "" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" msgstr "depuis {{length_of_time}}" diff --git a/locale/sq/app.po b/locale/sq/app.po index 31a24986a..2290705e1 100644 --- a/locale/sq/app.po +++ b/locale/sq/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-07-12 14:28+0000\n" -"Last-Translator: sebbacon <seb.bacon@gmail.com>\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-27 00:27+0000\n" +"Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,13 +29,11 @@ msgstr "" "Kjo do të shfaqet në profilin tuaj në InformataZyrtare, për ta bërë më të " "lehtë për të tjerët që të përfshihen me çfarë jeni duke bërë." -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" msgstr "" -"AA (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " -"policy</a>)" #: app/views/request/upload_response.rhtml:40 msgid "" @@ -70,15 +68,13 @@ msgstr "" #: app/views/comment/new.rhtml:23 msgid " Advise on how to <strong>best clarify</strong> the request." -msgstr "AA Advise on how to <strong>best clarify</strong> the request." +msgstr "" #: app/views/comment/new.rhtml:49 msgid "" " Ideas on what <strong>other documents to request</strong> which the " "authority may hold. " msgstr "" -"AA Ideas on what <strong>other documents to request</strong> which the " -"authority may hold. " #: app/views/public_body/view_email.rhtml:30 msgid "" @@ -95,9 +91,6 @@ msgid "" " twitter account. They will be made clickable. \n" " e.g." msgstr "" -"AA Include relevant links, such as to a campaign page, your blog or a\n" -" twitter account. They will be made clickable. \n" -" e.g." #: app/views/comment/new.rhtml:27 msgid "" @@ -143,10 +136,13 @@ msgstr "" #: app/controllers/comment_controller.rb:75 msgid " You are already being emailed updates about the request." msgstr "" +"Ti tashmë je duke i pranuar me email aktualizimet në lidhje me këtë kërkesë." #: app/controllers/comment_controller.rb:73 msgid " You will also be emailed updates about the request." msgstr "" +"Ti gjithashtu do të pranon email me aktualizimet e reja në lidhje me " +"kërkesën." #: app/views/request/upload_response.rhtml:5 msgid " made by " @@ -161,13 +157,13 @@ msgstr "" msgid " when you send this message." msgstr "kur e dërgoni këtë mesazh." -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" -msgstr[0] "%d Freedom of Information requests" -msgstr[1] "%d Freedom of Information requests" +msgstr[0] "" +msgstr[1] "" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" msgstr[0] "%d kërkesë" @@ -181,7 +177,7 @@ msgstr "'Statistikat e krimit në nivel komune'" msgid "'Pollution levels over time for the River Tyne'" msgstr "'Niveli i ndotjes për lumin Drin'" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -219,7 +215,7 @@ msgstr "" msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "<a href=\"%s\">Na kontakto</a> për të na tregu për problemin</li>" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" @@ -236,7 +232,7 @@ msgstr "<a href=\"%s\">nuk mund të gjeni ate që dëshironi?</a>" msgid "<a href=\"%s\">details</a>" msgstr "<a href=\"%s\">detajet</a>" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "<a href=\"%s\">Çfarë është ajo?</a>" @@ -246,7 +242,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -261,59 +257,62 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" +"<p> Faleminderit! Shpresojmë që pritja yte nuk do të jetë shumë e gjatë. " +"</p><p> Ti duhet të merr përgjegje brenda 7 ditë pune, ose të njoftohesh se " +"do të marrë më gjatë ( <a href=\"%s\">details</a> ). </p>" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -321,7 +320,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -329,7 +328,7 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" @@ -337,21 +336,24 @@ msgstr "" "<p> Ti nuk duhet të inkludosh adresën e emailit tënd në këtë kërkesë qe të " "marrësh përgjegje ( <a href=\"%s\">detaje</a> ). </p>" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" +"<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhet " +"direkt me temën e kërkesës tënde, të lutem largo çdo adresë sepse do të jetë" +" <strong> publike në internet</strong>. </p>" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -370,23 +372,19 @@ msgstr "" "\"junk mail\" filtra, kontrollo edhe bulk/spam folderët. Ndonjëherë, " "mesazhet tona janë të shenjuara në këtë mënyrë.</small> </p>" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" -"AA <strong> Can I request information about myself?</strong>><a " -"href=\"%s\">No! (Click here for details)</a>" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -"AA <strong><code>commented_by:tony_bowden</code></strong> to search " -"annotations made by Tony Bowden, typing the name as in the URL." -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" @@ -395,7 +393,7 @@ msgstr "" "përgjegjet me PDF të bashkangjitur. Apo provo këto: " "<code>{{list_of_file_extensions}}</code>" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." @@ -403,7 +401,7 @@ msgstr "" "<strong><code>kërkesë:</code></strong> për të kufizuar në një kërkesë të " "caktuar, duke shkruar titullin si në URL." -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." @@ -411,7 +409,7 @@ msgstr "" "<strong><code>kerkuar_nga:filan_fisteku</code></strong> për të kërkuar " "kërkesat e bëra nga Filan Fisteku duke shkruar titullin si në URL." -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." @@ -420,7 +418,7 @@ msgstr "" " kërkesat e dërguara te Zyra e Kryeministrit, duke shkruar titullin si në " "URL." -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " @@ -430,7 +428,7 @@ msgstr "" " kërkesës apo historisë së statusit, shih <a href=\"%s\">tabelën e " "statuseve</a> më poshtë." -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" @@ -440,7 +438,7 @@ msgstr "" " dhe vlera të etiketave, psh. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Secila nga etiketat mund të jetë\n" " prezente, duhet të shkruash <code>AND</code> në mënyrë eksplicite nëse do që vetëm ato te përfshihen." -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." @@ -454,11 +452,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "<strong>Të gjitha informatat</strong> janë dërguar" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "<strong>Diçka tjetër,</strong> p.sh. sqarim, falënderim" @@ -472,12 +470,6 @@ msgid "" "way authorities use it. Plus you'll need to be an elite statistician. Please\n" "<a href=\"%s\">contact us</a> with questions." msgstr "" -"AA <strong>Caveat emptor!</strong> To use this data in an honourable way, you will need \n" -"a good internal knowledge of user behaviour on WhatDoTheyKnow. How, \n" -"why and by whom requests are categorised is not straightforward, and there will\n" -"be user error and ambiguity. You will also need to understand FOI law, and the\n" -"way authorities use it. Plus you'll need to be an elite statistician. Please\n" -"<a href=\"%s\">contact us</a> with questions." #: app/views/request/_other_describe_state.rhtml:28 msgid "<strong>Clarification</strong> has been requested" @@ -495,33 +487,24 @@ msgid "" " We will send an email to your new email address. Follow the\n" " instructions in it to confirm changing your email." msgstr "" -"AA <strong>Note:</strong>\n" -" We will send an email to your new email address. Follow the\n" -" instructions in it to confirm changing your email." #: app/views/user/contact.rhtml:32 msgid "" "<strong>Note:</strong> You're sending a message to yourself, presumably\n" " to try out how it works." msgstr "" -"AA <strong>Note:</strong> You're sending a message to yourself, presumably\n" -" to try out how it works." #: app/views/request/preview.rhtml:31 msgid "" "<strong>Privacy note:</strong> If you want to request private information about\n" " yourself then <a href=\"%s\">click here</a>." msgstr "" -"AA <strong>Privacy note:</strong> If you want to request private information about\n" -" yourself then <a href=\"%s\">click here</a>." #: app/views/user/set_crop_profile_photo.rhtml:35 msgid "" "<strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" " wherever you do something on WhatDoTheyKnow." msgstr "" -"AA <strong>Privacy note:</strong> Your photo will be shown in public on the Internet, \n" -" wherever you do something on WhatDoTheyKnow." #: app/views/request/followup_preview.rhtml:37 msgid "" @@ -531,7 +514,7 @@ msgstr "" "<strong>Parajalmrim privacie:</strong> Mesazhi yt si dhe çdo përgjegje do të" " paraqitet publikisht në këtë ueb faqe " -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "<strong>Disa nga informacionet</strong> janë dërguar" @@ -541,19 +524,17 @@ msgstr "<strong>Detajet teknike:</strong>" #: app/views/comment/new.rhtml:35 msgid "<strong>Thank</strong> the public authority or " -msgstr "AA <strong>Thank</strong> the public authority or " +msgstr "<strong>Falënderoju</strong> autoritet publik ose " #: app/views/request/new.rhtml:23 msgid "" "<strong>browse</strong> the authority's <a href=\"%s\">publication " "scheme</a> or <strong>search</strong> their web site ..." msgstr "" -"AA <strong>browse</strong> the authority's <a href=\"%s\">publication " -"scheme</a> or <strong>search</strong> their web site ..." #: app/views/request/show.rhtml:84 msgid "<strong>did not have</strong> the information requested." -msgstr "AA <strong>did not have</strong> the information requested." +msgstr "<strong>nuk e kanë</strong> informacionin e kërkuar." #: app/views/request/new.rhtml:25 msgid "<strong>search</strong> the authority's web site ..." @@ -568,7 +549,7 @@ msgstr "" #: app/views/request/_other_describe_state.rhtml:34 msgid "A response will be sent <strong>by post</strong>" -msgstr "Përgjigja do të dërgohet <strong>me postë</strong>" +msgstr "Përgjegja do të dërgohet <strong>me postë</strong>" #: app/views/user/set_profile_about_me.rhtml:20 msgid "About you:" @@ -580,7 +561,7 @@ msgstr "" #: app/views/request/_sidebar.rhtml:5 msgid "Act on what you've learnt" -msgstr "AA Act on what you've learnt" +msgstr "" #: app/views/comment/new.rhtml:14 msgid "Add an annotation to " @@ -591,8 +572,6 @@ msgid "" "Add an annotation to your request with choice quotes, or\n" " a <strong>summary of the response</strong>." msgstr "" -"AA Add an annotation to your request with choice quotes, or\n" -" a <strong>summary of the response</strong>." #: app/models/user.rb:54 msgid "Admin level is not included in list" @@ -602,7 +581,7 @@ msgstr "Niveli i administratorit nuk është i përfshir në listë" msgid "Administration URL:" msgstr "URL për administrim:" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" msgstr "Këshilla te avansuara për kërkim" @@ -617,8 +596,6 @@ msgid "" "Air, water, soil, land, flora and fauna (including how these effect\n" " human beings)" msgstr "" -"AA Air, water, soil, land, flora and fauna (including how these effect human" -" beings)" #: app/models/info_request_event.rb:304 msgid "All information sent" @@ -636,7 +613,7 @@ msgstr "" "Edhe pse të gjitha përgjegjet publikohen automatikisht, ne varemi nga ti, si" " kërkues i tyre, për t'i vlerësuar ato." -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" msgstr "Një <strong>mesazh gabimi</strong> është marrë" @@ -667,46 +644,26 @@ msgid "" "Ask for <strong>specific</strong> documents or information, this site is not" " suitable for general enquiries." msgstr "" -"AA Ask for <strong>specific</strong> documents or information, this site is " -"not suitable for general enquiries." #: app/views/request/show_response.rhtml:31 msgid "" "At the bottom of this page, write a reply to them trying to persuade them to scan it in\n" " (<a href=\"%s\">more details</a>)." msgstr "" -"AA At the bottom of this page, write a reply to them trying to persuade them" -" to scan it in(<a href=\"%s\">more details</a>)." #: app/views/request/upload_response.rhtml:33 msgid "Attachment (optional):" -msgstr "AA Attachment (optional):" - -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" -"Autoriteti është përgjegjur, por përgjegja <strong>nuk korrespondon me " -"kërkesën</strong>" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "Autoriteti ka kërkuar <strong>shtyrje të afatit.</strong>" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "Autoriteti ka kërkuar shtyrje të afatit." +msgstr "Attachment (opcionale):" -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "Në pritje të klasifikimit." -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "Në pritje për rishikimit të brendshëm." -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "Në pritje të përgjegjes." @@ -715,8 +672,8 @@ msgid "" "Browse <a href=\"%s\">other requests</a> for examples of how to word your " "request." msgstr "" -"AA Browse <a href=\"%s\">other requests</a> for examples of how to word " -"your request." +"Shfleto <a href=\"%s\">kërkesa të tjera</a> për shembuj se si të formulosh " +"kërkesën tënde." #: app/views/request/new.rhtml:41 msgid "" @@ -731,16 +688,14 @@ msgid "" "By law, under all circumstances, {{public_body_link}} should have responded " "by now" msgstr "" -"AA By law, under all circumstances, {{public_body_link}} should have " -"responded by now" +"Sipas ligjit, në të gjitha rrethanat, {{public_body_link}} është duhur të " +"përgjegjet deri tani" #: app/views/request/show.rhtml:71 msgid "" "By law, {{public_body_link}} should normally have responded " "<strong>promptly</strong> and" msgstr "" -"AA By law, {{public_body_link}} should normally have responded " -"<strong>promptly</strong> and" #: app/views/general/search.rhtml:17 msgid "" @@ -752,11 +707,11 @@ msgstr "" #: app/controllers/track_controller.rb:143 msgid "Cancel a {{site_name}} alert" -msgstr "" +msgstr "Anulo njoftimet për {{site_name}}" #: app/controllers/track_controller.rb:173 msgid "Cancel some {{site_name}} alerts" -msgstr "" +msgstr "Anulo disa njoftime për {{site_name}}" #: locale/model_attributes.rb:46 msgid "CensorRule|Last edit comment" @@ -774,7 +729,6 @@ msgstr "CensorRule | Zëvendësimi" msgid "CensorRule|Text" msgstr "CensorRule | Teksti" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "Qeveria" @@ -783,13 +737,13 @@ msgstr "Qeveria" msgid "Change password on {{site_name}}" msgstr "Ndrysho fjalekalimin në {{site_name}}" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" msgstr "Ndrysho fotografinë e profilit" #: app/views/user/set_profile_about_me.rhtml:1 msgid "Change the text about you on your profile at WhatDoTheyKnow.com" -msgstr "AA Change the text about you on your profile at WhatDoTheyKnow.com" +msgstr "Ndrysho tekstin për ty në profilin tënd në InformataZyrtare.org" #: app/views/user/show.rhtml:107 msgid "Change your email" @@ -814,9 +768,9 @@ msgstr "Ndrysho fjalëkalimin tënd në {{site_name}}" #: app/controllers/user_controller.rb:203 msgid "Change your password {{site_name}}" -msgstr "" +msgstr "Ndrysho fjalëkalimin tënd {{site_name}}" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "Regjistrimi i organizatës" @@ -828,7 +782,7 @@ msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." #: app/views/request/followup_preview.rhtml:14 msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" -"AA Check you haven't included any <strong>personal information</strong>." +"Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" #: app/models/info_request_event.rb:326 msgid "Clarification" @@ -838,9 +792,9 @@ msgstr "Sqarim" msgid "Clarification required" msgstr "Kërkohet sqarim" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " -msgstr "" +msgstr "Klasifiko një përgjegje për kërkesë për informatë zyrtare prej " #: app/views/request_mailer/very_overdue_alert.rhtml:6 msgid "" @@ -857,8 +811,6 @@ msgid "" "Click on the link below to send a message to {{public_body}} reminding them " "to reply to your request." msgstr "" -"AA Click on the link below to send a message to {{public_body}} reminding " -"them to reply to your request." #: locale/model_attributes.rb:28 msgid "Comment|Body" @@ -879,25 +831,27 @@ msgstr "Koment | i/e dukshëm" #: app/models/track_thing.rb:163 msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" +"Konfirmo që doni të merrni email kur një kërkesë për informata zyrtare ka " +"sukses" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " -msgstr "" +msgstr "Konfirmo kërkesën tënde për " -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" -msgstr "" +msgstr "Konfirmo llogarinë tënde në {{site_name}}" #: app/controllers/comment_controller.rb:57 msgid "Confirm your annotation to {{info_request_title}}" -msgstr "" +msgstr "Konfirmo shënimin tënd për {{info_request_title}}" #: app/models/user_mailer.rb:34 msgid "Confirm your new email address on WhatDoTheyKnow.com" -msgstr "" +msgstr "Konfirmo adresën e email-it tënd të ri në InformataZyrtare.org" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" msgstr "Kontakt {{site_name}}" @@ -918,36 +872,28 @@ msgid "" "Cultural sites and built structures (as they may be affected by the\n" " environmental factors listed above)" msgstr "" -"AA Cultural sites and built structures (as they may be affected by the " -"environmental factors listed above)" #: app/views/request/show.rhtml:61 msgid "" "Currently <strong>waiting for a response</strong> from {{public_body_link}}," " they must respond promptly and" msgstr "" -"AA Currently <strong>waiting for a response</strong> from " -"{{public_body_link}}, they must respond promptly and" #: app/models/info_request_event.rb:294 msgid "Deadline Extended" -msgstr "" - -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" +msgstr "Afati është vazhduar" #: app/models/outgoing_message.rb:57 msgid "Dear " -msgstr "" +msgstr "I/e nderuar " -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." -msgstr "" +msgstr "Vonuar." -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" -msgstr "" +msgstr "Gabim gjatë dorëzimit" #: app/views/request/details.rhtml:1 app/views/request/details.rhtml:2 msgid "Details of request '" @@ -957,26 +903,21 @@ msgstr "Detajet e kërkesës" msgid "Did you mean: {{correction}}" msgstr "Mos mendove këtë: {{correction}}" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" msgstr "" -"AA Disclaimer: This message and any reply that you make will be published on" -" the internet. Our privacy and copyright policies:" #: app/views/request/_view_html_prefix.rhtml:6 msgid "Download original attachment" msgstr "Shkarko attachment-in origjinal" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." msgstr "" -"AA Edit and add <strong>more details</strong> to the message above,\n" -"explaining why you are dissatisfied with their response." #: app/views/admin_public_body/_locale_selector.rhtml:2 msgid "Edit language version:" @@ -989,30 +930,33 @@ msgstr "Edito tekstin për vetën tënde" #: app/models/user.rb:132 msgid "Either the email or password was not recognised, please try again." msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri." #: app/models/user.rb:134 msgid "" "Either the email or password was not recognised, please try again. Or create" " a new account using the form on the right." msgstr "" +"Adresa e email-it apo fjalëkalimi nuk janë njohur, të lutem provo përsëri. " +"Ose krijo një llogari të re duke përdor formën në të djathtë." #: app/models/contact_validator.rb:34 msgid "Email doesn't look like a valid address" -msgstr "" +msgstr "Email adresa nuk duket si një adresë e vlefshme" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" msgstr "Dërgom përditësime me email në lidhje me këtë kërkesë" #: app/models/track_thing.rb:155 msgid "Email me new successful responses " -msgstr "" +msgstr "M'i dërgo me email përgjegjet e reja të suksesshme" #: app/views/user/show.rhtml:36 msgid "Email subscriptions" msgstr "Abonimet me email" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" @@ -1029,11 +973,11 @@ msgstr "" "(përdor e-mail, ose <a href=\"%s\">na kontakto</a> nëse ke nevojë për më " "shumë)." -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "\"Environmental Information Regulations\" kërkesa të bëra" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" "\"Environmental Information Regulations\" kërkesa të bëra duke përdorur këtë" @@ -1047,25 +991,19 @@ msgstr "Historiku i ngjarjeve" msgid "Event history details" msgstr "Detajet e historikut të ngjarjeve" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -"AA Everything that you enter on this page \n" -" will be <strong>displayed publicly</strong> on\n" -" this website forever (<a href=\"%s\">why?</a>)." -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -"AA Everything that you enter on this page, including <strong>your name</strong>, \n" -" will be <strong>displayed publicly</strong> on\n" -" this website forever (<a href=\"%s\">why?</a>)." #: locale/model_attributes.rb:61 msgid "EximLogDone|Filename" @@ -1091,14 +1029,6 @@ msgstr "Adresa e emailit për Informatë Zyrtare për {{public_body}}" msgid "FOI requests" msgstr "Kërkesat për Informata Zyrtare" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" -"Kërkesat për IZ {{start_count}} deri {{end_count}} nga {{total_count}} për " -"{{user_search_query}}" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" msgstr "Konvertimi i imazhit në PNG dështoi" @@ -1107,9 +1037,7 @@ msgstr "Konvertimi i imazhit në PNG dështoi" msgid "" "Failed to convert image to the correct size: at %{cols}x%{rows}, need " "%{width}x%{height}" -msgstr "" -"Konvertimi i imazhit në madhësinë adekuate dështoi: në %{cols}x%{rows}, " -"duhet %{width}x%{height}" +msgstr "Kyçu ose krijo llogari " #: app/views/request/new.rhtml:21 msgid "First," @@ -1125,9 +1053,9 @@ msgstr "" "cilit kërkoni informata. <strong>Sipas ligjit, ata duhet të " "përgjegjen</strong> ( <a href=\"%s\">pse?</a> )." -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" -msgstr "Kliko këtë link për të parë të kërkesën:" +msgstr "Kliko këtë link për të parë kërkesën:" #: app/models/info_request_event.rb:330 msgid "Follow up" @@ -1135,17 +1063,15 @@ msgstr "" #: app/views/public_body/view_email.rhtml:14 msgid "Follow up messages to existing requests are sent to " -msgstr "AA Follow up messages to existing requests are sent to " +msgstr "" #: app/views/request/_followup.rhtml:16 msgid "" "Follow ups and new responses to this request have been stopped to prevent spam. Please\n" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -"AA Follow ups and new responses to this request have been stopped to prevent spam. Please\n" -" <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." @@ -1157,7 +1083,7 @@ msgstr "" msgid "Forgotten your password?" msgstr "Keni harruar fjalëkalimin?" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." @@ -1167,21 +1093,19 @@ msgstr "" #: app/views/request/followup_bad.rhtml:11 msgid "Freedom of Information law no longer applies to" -msgstr "AA Freedom of Information law no longer applies to" +msgstr "Ligji për qasje në dokumente publike nuk aplikohet më për" #: app/views/public_body/view_email.rhtml:10 msgid "" "Freedom of Information law no longer applies to this authority.Follow up " "messages to existing requests are sent to " msgstr "" -"AA Freedom of Information law no longer applies to this authority.Follow up " -"messages to existing requests are sent to " #: app/views/user/show.rhtml:128 msgid "Freedom of Information request" msgstr "Kërkesë për informatë zyrtare" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" msgstr "Kërkesa për Informatë zyrtare është bërë" @@ -1189,7 +1113,7 @@ msgstr "Kërkesa për Informatë zyrtare është bërë" msgid "Freedom of Information requests made by" msgstr "Kërkesat për Informata Zyrtare bërë nga" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" msgstr "Kërkesat për informata zyrtare të bëra duke përdorur këtë web sajt" @@ -1199,9 +1123,6 @@ msgid "" " a general followup. If you need to make a general followup, and know\n" " an email which will go to the right place, please <a href=\"%s\">send it to us</a>." msgstr "" -"AA From the request page, try replying to a particular message, rather than sending\n" -" a general followup. If you need to make a general followup, and know\n" -" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." #: app/models/outgoing_message.rb:73 msgid "GIVE DETAILS ABOUT YOUR COMPLAINT HERE" @@ -1213,21 +1134,21 @@ msgstr "Shko te <a href=\"%s\">ballina</a> </li>" #: app/models/info_request_event.rb:292 msgid "Handled by post" -msgstr "" +msgstr "Do të trajtohet me postë" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." -msgstr "" +msgstr "Do të trajtohet me postë." -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" msgstr "Përshëndetje" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" msgstr "Përshëndetje, {{username}}!" -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" msgstr "Ndihmë" @@ -1238,10 +1159,6 @@ msgid "" "WhatDoTheyKnow for intermediate events, which weren't given an explicit\n" "description by a user. See the <a href=\"%s\">search tips</a> for description of the states." msgstr "" -"AA Here <strong>described</strong> means when a user selected a status for the request, and\n" -"the most recent event had its status updated to that value. <strong>calculated</strong> is then inferred by\n" -"WhatDoTheyKnow for intermediate events, which weren't given an explicit\n" -"description by a user. See the <a href=\"%s\">search tips</a> for description of the states." #: app/views/request/_other_describe_state.rhtml:4 msgid "" @@ -1268,30 +1185,28 @@ msgid "" "However, you have the right to request environmental\n" " information under a different law" msgstr "" -"AA However, you have the right to request environmental information under a " -"different law" #: app/views/request/new.rhtml:73 msgid "Human health and safety" -msgstr "AA Human health and safety" +msgstr "" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" -msgstr "AA I am asking for <strong>new information</strong>" +msgstr "Unë jam duke kërkuar <strong>informacion të ri</strong>" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" -msgstr "AA I am requesting an <strong>internal review</strong>" +msgstr "" #: app/views/request_game/play.rhtml:39 msgid "I don't like these ones — give me some more!" -msgstr "AA I don't like these ones — give me some more!" +msgstr "Nuk më pëlqejnë këto kërkesa &mdash më jep disa të tjera!" #: app/views/request_game/play.rhtml:40 msgid "I don't want to do any more tidying now!" -msgstr "AA I don't want to do any more tidying now!" +msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "Ddo të doja të <strong>tërheqë këtë kërkesë</strong>" @@ -1300,30 +1215,28 @@ msgid "" "I'm still <strong>waiting</strong> for my information\n" " <small>(maybe you got an acknowledgement)</small>" msgstr "" -"AA I'm still <strong>waiting</strong> for my information\n" -" <small>(maybe you got an acknowledgement)</small>" #: app/views/request/_describe_state.rhtml:18 msgid "I'm still <strong>waiting</strong> for the internal review" -msgstr "AA I'm still <strong>waiting</strong> for the internal review" +msgstr "" #: app/views/request/_describe_state.rhtml:32 msgid "I'm waiting for an <strong>internal review</strong> response" -msgstr "AA I'm waiting for an <strong>internal review</strong> response" +msgstr "" #: app/views/request/_describe_state.rhtml:25 msgid "I've been asked to <strong>clarify</strong> my request" msgstr "Më kanë kërkuar të <strong>qartësojë</strong> kërkesën time" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" msgstr "Kam marrë <strong>të gjithë informacionin</strong>" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" msgstr "Kam marrë <strong>disa prej informatave</strong>" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" msgstr "Kam marrë një <strong>mesazh gabimi</strong>" @@ -1332,8 +1245,8 @@ msgid "" "If the address is wrong, or you know a better address, please <a " "href=\"%s\">contact us</a>." msgstr "" -"AA If the address is wrong, or you know a better address, please <a " -"href=\"%s\">contact us</a>." +"Nëse adresa është e gabuar, ose ti e din një adresë më të mirë, të lutem <a " +"href=\"%s\">na kontakto</a> ." #: app/views/request_mailer/stopped_responses.rhtml:10 msgid "" @@ -1341,9 +1254,6 @@ msgid "" "or an email on another subject to {{user}}, then please\n" "email {{contact_email}} for help." msgstr "" -"AA If this is incorrect, or you would like to send a late response to the request\n" -"or an email on another subject to {{user}}, then please\n" -"email {{contact_email}} for help." #: app/views/request/_followup.rhtml:21 msgid "" @@ -1351,31 +1261,28 @@ msgid "" " the public authority, you have the right to\n" " complain (<a href=\"%s\">details</a>)." msgstr "" -"AA If you are dissatisfied by the response you got from\n" -" the public authority, you have the right to\n" -" complain (<a href=\"%s\">details</a>)." #: app/views/user/no_cookies.rhtml:20 msgid "If you are still having trouble, please <a href=\"%s\">contact us</a>." -msgstr "AA If you are still having trouble, please <a href=\"%s\">contact us</a>." +msgstr "Nëse ende po ka probleme, të lutem <a href=\"%s\">na kontakto</a> ." #: app/views/request/hidden.rhtml:15 msgid "" "If you are the requester, then you may <a href=\"%s\">sign in</a> to view " "the request." msgstr "" -"AA If you are the requester, then you may <a href=\"%s\">sign in</a> to view" -" the request." +"Nëse ti je kërkuesi, atëherë ti mund të <a href=\"%s\">kyçesh</a> për të " +"parë kërkesën." -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -"AA If you are thinking of using a pseudonym,\n" -" please <a href=\"%s\">read this first</a>." +"Nëse je duke mendu me përdor pseudonim, të lutem <a href=\"%s\">lexo këtë së" +" pari</a> ." -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" msgstr "Nëse ti je {{user_link}}, të lutem" @@ -1385,9 +1292,6 @@ msgid "" "it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" "you would type the address of any other webpage." msgstr "" -"AA If you can't click on it in the email, you'll have to <strong>select and copy\n" -"it</strong> from the email. Then <strong>paste it into your browser</strong>, into the place\n" -"you would type the address of any other webpage." #: app/views/request/show_response.rhtml:49 msgid "" @@ -1397,14 +1301,11 @@ msgstr "" "Nëse mund të skanoni ose fotografoni përgjegjen, dhe të <strong>na e dërgoni" " që ne ta ngarkojme ate.</strong>" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" -"AA If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." #: app/views/user/bad_token.rhtml:13 msgid "" @@ -1415,7 +1316,7 @@ msgstr "" "parë,</strong> atëherë ky link për kyçje nuk do të funksionojë më. Të lutem " "provon duke bërë atë që keni vepruar nga fillimi." -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1437,8 +1338,6 @@ msgid "" "If you would like us to lift this ban, then you may politely\n" "<a href=\"/help/contact\">contact us</a> giving reasons.\n" msgstr "" -"AA If you would like us to lift this ban, then you may politely\n" -"<a href=\"/help/contact\">contact us</a> giving reasons.\n" #: app/views/user/_signup.rhtml:6 msgid "If you're new to WhatDoTheyKnow" @@ -1528,7 +1427,7 @@ msgstr "Info të kërkesës | Titulli Url" msgid "Information not held" msgstr "Informata nuk mbahet këtu" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." msgstr "Informata nuk mbahet këtu." @@ -1537,8 +1436,6 @@ msgid "" "Information on emissions and discharges (e.g. noise, energy,\n" " radiation, waste materials)" msgstr "" -"AA Information on emissions and discharges (e.g. noise, energy, radiation, " -"waste materials)" #: app/models/info_request_event.rb:306 msgid "Internal review acknowledgement" @@ -1546,6 +1443,12 @@ msgstr "" #: app/models/info_request_event.rb:323 msgid "Internal review request" +msgstr "Kërkesë për shqyrtim të brendshëm" + +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" msgstr "" #: app/views/user/no_cookies.rhtml:8 @@ -1561,7 +1464,7 @@ msgstr "" #: app/views/user/show.rhtml:62 msgid "Joined WhatDoTheyKnow in" -msgstr "" +msgstr "Je anëtarësuar në InformataZyrtare" #: app/views/user/_user_listing_single.rhtml:21 msgid "Joined in" @@ -1572,8 +1475,6 @@ msgid "" "Keep it <strong>focused</strong>, you'll be more likely to get what you want" " (<a href=\"%s\">why?</a>)." msgstr "" -"AA Keep it <strong>focused</strong>, you'll be more likely to get what you " -"want (<a href=\"%s\">why?</a>)." #: app/views/contact_mailer/message.rhtml:10 msgid "Last authority viewed: " @@ -1595,7 +1496,7 @@ msgstr "" #: app/views/request/_correspondence.rhtml:27 #: app/views/request/_correspondence.rhtml:57 msgid "Link to this" -msgstr "" +msgstr "Linku te ky" #: app/views/public_body/list.rhtml:32 msgid "List of all authorities (CSV)" @@ -1605,23 +1506,23 @@ msgstr "Listo të gjitha autoritetet (CSV)" msgid "Local and regional" msgstr "Lokale dhe regjionale" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." -msgstr "" +msgstr "Shumë e vonuar." -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" -msgstr "AA Make a new Environmental Information request" +msgstr "" #: app/views/request/new.rhtml:1 msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" -msgstr "AA Make an {{law_used_short}} request to '{{public_body_name}}'" +msgstr "Bëjë një kërkesë {{law_used_short}} për '{{public_body_name}}'" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" msgstr "Bëj dhe shfleto kërkesa për Informata Zyrtare" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" @@ -1629,7 +1530,7 @@ msgstr "Bëj dhe hulumto kërkesa për Informata Zyrtare" msgid "Make or explore Freedom of Information requests" msgstr "Bëj ose shfleto kërkesa për Informata Zyrtare" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" msgstr "Bëjë kërkesë" @@ -1649,19 +1550,19 @@ msgstr "Mungojnë të dhënat për '" msgid "More about this authority" msgstr "Më shumë për këtë autoritet" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." msgstr "Më shumë autoritete" -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." msgstr "Më shumë kërkesa te suksesshme" -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" msgstr "Kërkesa ime është <strong>refuzuar</strong>" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" msgstr "Kërkesat e mia" @@ -1677,9 +1578,9 @@ msgstr "Emri është i zënë" msgid "New e-mail:" msgstr "Email i ri:" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" -msgstr "" +msgstr "Email adresa e re nuk duket si një adresë e vlefshme" #: app/views/user/signchangepassword.rhtml:15 msgid "New password:" @@ -1722,7 +1623,7 @@ msgstr "Ende nuk ka kërkesa të këtij lloji." msgid "No similar requests found." msgstr "Nuk gjetëm kërkesa të ngjashme." -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." @@ -1735,10 +1636,6 @@ msgstr "" msgid "None found." msgstr "Asnjë nuk u gjet." -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "Asgjë nuk u gjet për '{{search_terms}}'" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1751,15 +1648,15 @@ msgstr "" #: app/views/request/followup_preview.rhtml:10 msgid "Now preview your follow up" -msgstr "AA Now preview your follow up" +msgstr "" #: app/views/request/followup_preview.rhtml:8 msgid "Now preview your message asking for an internal review" -msgstr "AA Now preview your message asking for an internal review" +msgstr "" #: app/views/request/preview.rhtml:5 msgid "Now preview your request" -msgstr "AA Now preview your request" +msgstr "" #: app/views/user/set_draft_profile_photo.rhtml:46 msgid "OR remove the existing photo" @@ -1773,35 +1670,36 @@ msgstr "" "OSE, <strong>kërko</strong> informata që të tjerët kanë kërkuar duke " "përdorur {{site_name}}" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" msgstr "Emali i vjetër:" -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" +"Adresa e emailit të vjetër nuk është e njëjtë me adresën e llogarisë me të " +"cilën jeni kyçur për momentin" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" -msgstr "" +msgstr "Email adresa e vjetër nuk duket si një adresë e vlefshme" #: app/views/user/show.rhtml:32 msgid "On this page" msgstr "Në këtë faqe" -#: app/views/public_body/show.rhtml:93 +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." msgstr "Vetëm kërkesat që janë bërë me {{site_name}} janë të shfaqura." @@ -1825,11 +1723,11 @@ msgstr "OutgoingMessage|Status" msgid "OutgoingMessage|What doing" msgstr "OutgoingMessage|What doing" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "Pjesërisht e suksesshme." -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" msgstr "Fjalëkalimi nuk është i saktë" @@ -1841,14 +1739,6 @@ msgstr "Fjalëkalimi:" msgid "Password: (again)" msgstr "Fjalëkalimi: (përsërite)" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" -"Njerëzit {{start_count}} {{end_count}} i {{total_count}} " -"{{user_search_query}}" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" msgstr "Fotografia yte:" @@ -1859,13 +1749,13 @@ msgstr "Planet dhe masat administrative që ndikojnë këto çështje" #: app/controllers/request_game_controller.rb:40 msgid "Play the request categorisation game" -msgstr "" +msgstr "Luaj në lojën e kategorizimit të kërkesave" #: app/views/request_game/play.rhtml:1 app/views/request_game/play.rhtml:30 msgid "Play the request categorisation game!" msgstr "Luaj lojën e kategorizimit të kërkesave!" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "Të lutem" @@ -1884,8 +1774,6 @@ msgid "" "Please <strong>go to the following requests</strong>, and let us\n" " know if there was information in the recent responses to them." msgstr "" -"AA Please <strong>go to the following requests</strong>, and let us\n" -" know if there was information in the recent responses to them." #: app/views/request/_followup.rhtml:28 msgid "" @@ -1893,9 +1781,6 @@ msgid "" "\t\t\t\trequest {{request_link}}. If you would like to ask for information\n" "\t\t\t\tthat was not in your original request, then <a href=\"%s\">file a new request</a>." msgstr "" -"AAPlease <strong>only</strong> write messages directly relating to your \n" -"title=\"Tab\">»</span>request {{request_link}}. If you would like to ask for information\n" -"<span class=\"whitespace other\" title=\"Tab\">»</span>that was not in your original request, then <a href=\"%s\">file a new request</a>." #: app/views/request/new.rhtml:60 msgid "Please ask for environmental information only" @@ -1906,8 +1791,8 @@ msgid "" "Please check the URL (i.e. the long code of letters and numbers) is copied\n" "correctly from your email." msgstr "" -"AA Please check the URL (i.e. the long code of letters and numbers) is copied\n" -"correctly from your email." +"Të lutem kontrollo që URL (dmth. kodin e gjatë me shkronja e numra) është " +"kopjuar në rregull nga emaili yt." #: app/models/profile_photo.rb:91 msgid "Please choose a file containing your photo." @@ -1915,9 +1800,9 @@ msgstr "Të lutem zgjedh një fajll që përmban foton tënde." #: app/models/outgoing_message.rb:162 msgid "Please choose what sort of reply you are making." -msgstr "Të lutem zgjedh llojin e përgjigjes." +msgstr "Të lutem zgjedh llojin e përgjegjes." -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1937,7 +1822,7 @@ msgid "Please click on the link below to confirm your email address." msgstr "" "Të lutem kliko në linkun e mëposhtëm për të konfirmuar email adresën tënde." -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." @@ -1984,7 +1869,7 @@ msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" #: app/models/comment.rb:59 msgid "Please enter your annotation" -msgstr "Të lutem shto komentin tënd" +msgstr "Të lutem shkruaj shënimin tënd" #: app/models/contact_validator.rb:29 app/models/user.rb:34 msgid "Please enter your email address" @@ -2006,15 +1891,15 @@ msgstr "Të lutem shkruaj emrin tënd" msgid "Please enter your name, not your email address, in the name field." msgstr "Të lutem shkruaj emrin tënd e jo adresën e emailit ne këtë fushë." -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" msgstr "Të lutem shkruaj adresën e re të emailit " -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" msgstr "Të lutem shkruaj adresën e vjetër të emailit " -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" msgstr "Të lutem shkruaj fjalëkalimin tënd" @@ -2027,7 +1912,7 @@ msgstr "" msgid "Please keep it shorter than 500 characters" msgstr "Të lutem mbaje tekstin më të shkurër se 500 shenja" -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." @@ -2040,16 +1925,12 @@ msgid "" "Please only request information that comes under those categories, <strong>do not waste your\n" " time</strong> or the time of the public authority by requesting unrelated information." msgstr "" -"AA Please only request information that comes under those categories, <strong>do not waste your\n" -" time</strong> or the time of the public authority by requesting unrelated information." #: app/views/request/new_please_describe.rhtml:5 msgid "" "Please select each of these requests in turn, and <strong>let everyone know</strong>\n" "if they are successful yet or not." msgstr "" -"AA Please select each of these requests in turn, and <strong>let everyone know</strong>\n" -"if they are successful yet or not." #: app/models/outgoing_message.rb:156 msgid "" @@ -2063,16 +1944,18 @@ msgstr "" msgid "Please sign in as " msgstr "Të lutem kyçu si " -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" +"Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjegjen " +"tënde." -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "Të lutem përdor formularin e mëposhtëm për të na treguar më shumë." -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" "Të lutem përdor këtë adresë të emailit për të gjitha përgjegjet në këtë " @@ -2082,7 +1965,7 @@ msgstr "" msgid "Please write a summary with some text in it" msgstr "Të lutem shkruaj përmbledhjen" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." @@ -2098,7 +1981,7 @@ msgstr "" "Të lutem shkruaj komentin duke përdorur kombinim të germave të mëdha dhe të " "vogla. Kjo e bën leximin për të tjerët më të lehtë." -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -2117,12 +2000,10 @@ msgid "" "Point to <strong>related information</strong>, campaigns or forums which may" " be useful." msgstr "" -"AA Point to <strong>related information</strong>, campaigns or forums which " -"may be useful." #: app/views/comment/preview.rhtml:21 msgid "Post annotation" -msgstr "" +msgstr "Posto shënimin" #: locale/model_attributes.rb:56 msgid "PostRedirect|Circumstance" @@ -2148,25 +2029,29 @@ msgstr "PostRedirect|Token" msgid "PostRedirect|Uri" msgstr "PostRedirect|Uri" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" -msgstr "AA Preview follow up to '" +msgstr "" #: app/views/comment/preview.rhtml:1 msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" -msgstr "AA Preview your annotation" +msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" -msgstr "AA Preview your message" +msgstr "" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" -msgstr "AA Preview your public request" +msgstr "" #: locale/model_attributes.rb:18 msgid "ProfilePhoto|Data" @@ -2180,7 +2065,7 @@ msgstr "ProfilePhoto|Draft" msgid "Public authorities - {{description}}" msgstr "Autoritetet publike - {{description}}" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" @@ -2246,7 +2131,7 @@ msgstr "RawEmail | Teksti i të dhënave" #: app/views/comment/preview.rhtml:20 msgid "Re-edit this annotation" -msgstr "" +msgstr "Ri edito këtë shënim" #: app/views/request/followup_preview.rhtml:49 msgid "Re-edit this message" @@ -2256,7 +2141,7 @@ msgstr "Ri-edito këtë mesazh" msgid "Re-edit this request" msgstr "Ri-edito këtë kërkesë" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." @@ -2264,7 +2149,7 @@ msgstr "" "Lexo rreth <a href=\"%s\">kërkimit të avansuar të operatorëve</a> , të tilla" " si afërsia dhe gjithëpërfshirëse." -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" msgstr "Lexo blog-un" @@ -2277,7 +2162,7 @@ msgstr "" msgid "Recently described results first" msgstr "Rezultatet e përshkruara së fundi radhiti të parat" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" @@ -2285,7 +2170,7 @@ msgstr "Kërkesat për Informata zyrtare të dërguara së fundi" msgid "Recently sent requests" msgstr "Kërkesat e dërguara së fundi" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "Përgjegjet e marra së fundi" @@ -2293,7 +2178,7 @@ msgstr "Përgjegjet e marra së fundi" msgid "Refused" msgstr "Refuzuar" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." msgstr "Refuzuar." @@ -2302,12 +2187,12 @@ msgid "" "Remember me</label> (keeps you signed in longer;\n" " do not use on a public computer) " msgstr "" -"AA Remember me</label> (keeps you signed in longer;\n" -" do not use on a public computer) " +"Me mbaj mend </label> (të mban të kyçur më gjatë\n" +" mos e përdor në kompjuter publik) " #: app/views/request/_correspondence.rhtml:28 msgid "Reply to this message" -msgstr "" +msgstr "Pergjegju këtij mesazhi" #: app/views/comment/_single_comment.rhtml:24 msgid "Report abuse" @@ -2337,8 +2222,6 @@ msgid "" "Request to {{public_body_name}} by {{info_request_user}}. Annotated by " "{{event_comment_user}} on {{date}}." msgstr "" -"AA Request to {{public_body_name}} by {{info_request_user}}. Annotated by " -"{{event_comment_user}} on {{date}}." #: app/views/request/_request_listing_single.rhtml:12 msgid "" @@ -2390,7 +2273,7 @@ msgstr "Faqja e rezultateve {{page_number}}" msgid "Save" msgstr "Ruaj" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" @@ -2405,17 +2288,17 @@ msgstr "" msgid "Search the site to find what you were looking for." msgstr "Kërko në këtë ueb sajt për të gjetur atë që ti po kërkon." -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " -msgstr "" +msgstr "Dërgo mesazh te " #: app/views/request/_followup.rhtml:7 msgid "Send a public follow up message to" -msgstr "AA Send a public follow up message to" +msgstr "" #: app/views/request/_followup.rhtml:10 msgid "Send a public reply to" -msgstr "AA Send a public reply to" +msgstr "Dërgo përgjegje publike te" #: app/views/request/_correspondence.rhtml:58 msgid "Send follow up" @@ -2457,11 +2340,11 @@ msgstr "Kyçu" msgid "Sign in or make a new account" msgstr "Kyçu ose krijo një llogari të re" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" msgstr "Kyçu ose Ç'kyçu" -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" msgstr "Ç'kyçu" @@ -2484,10 +2367,6 @@ msgid "" "choose one of these requests, read it, and let everyone know whether or not the\n" "information has been provided. Everyone'll be exceedingly grateful." msgstr "" -"AA Some people who've made requests haven't let us know whether they were\n" -"successful or not. We need <strong>your</strong> help –\n" -"choose one of these requests, read it, and let everyone know whether or not the\n" -"information has been provided. Everyone'll be exceedingly grateful." #: app/views/user_mailer/changeemail_already_used.rhtml:1 msgid "" @@ -2518,7 +2397,7 @@ msgstr "Lënda:" msgid "Submit" msgstr "Dërgo" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" msgstr "Dërgo statusin" @@ -2530,7 +2409,7 @@ msgstr "Kërkesat e suksesshme për Informata Zyrtare" msgid "Successful responses" msgstr "Përgjegjet e suksesshme" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." msgstr "Suksesshme." @@ -2546,7 +2425,7 @@ msgstr "" msgid "Summary:" msgstr "Përmbledhje:" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" msgstr "Tabela e statuseve" @@ -2560,37 +2439,38 @@ msgstr "" #: app/controllers/comment_controller.rb:62 msgid "Thank you for making an annotation!" -msgstr "" +msgstr "Faleminderit që keni bërë një shënim!" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" +"Faleminderit që i jeni përgjegjur kësaj kërkese për informata zyrtare. " +"Përgjegja yte është publikuar më poshtë, si dhe linku për përgjegjen tënde i" +" është derguar me email " -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" -msgstr "" +msgstr "Faleminderit për aktualizimin e kësaj kërkese!" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" -msgstr "" +msgstr "Faleminderit për aktualizimin e fotografisë e profilit tënd" #: app/views/request_game/play.rhtml:42 msgid "" "Thanks for helping - your work will make it easier for everyone to find successful\n" "responses, and maybe even let us make league tables..." msgstr "" -"AA Thanks for helping - your work will make it easier for everyone to find successful\n" -"responses, and maybe even let us make league tables..." #: app/views/user/show.rhtml:20 msgid "" @@ -2598,8 +2478,6 @@ msgid "" " also, if you need it, give advice on what to do next about your\n" " requests." msgstr "" -"AA Thanks very much - this will help others find useful stuff. We'll also, if you need it, give advice on what to do next about your\n" -" requests." #: app/views/request/new_please_describe.rhtml:20 msgid "" @@ -2607,9 +2485,6 @@ msgid "" " We'll also, if you need it, give you advice on what to do next about each of your\n" " requests." msgstr "" -"AA Thanks very much for helping keep everything <strong>neat and organised</strong>.\n" -" We'll also, if you need it, give you advice on what to do next about each of your\n" -" requests." #: app/controllers/user_controller.rb:188 msgid "" @@ -2617,10 +2492,10 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" -msgstr "AA The <strong>review has finished</strong> and overall:" +msgstr "" #: app/views/request/new.rhtml:62 msgid "The Freedom of Information Act <strong>does not apply</strong> to" @@ -2630,11 +2505,13 @@ msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" msgid "The accounts have been left as they previously were." msgstr "Llogaritë janë lënë siq kanë qenë më përpara." -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" msgstr "" +"Autoriteti <strong>nuk e ka</strong> informatën <small>(ndoshta ata e dine " +"kush e ka)</small>" #: app/views/request/show_response.rhtml:28 msgid "" @@ -2650,7 +2527,7 @@ msgstr "" " jo vetëm një adresë te emailit, që ajo të jetë një kërkesë e vlefshme për " "informatë zyrtare" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2673,9 +2550,6 @@ msgid "" " all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" " At the bottom of this page, write a reply to the authority explaining this to them." msgstr "" -"AA The law, the Ministry of Justice and the Information Commissioner\n" -" all say that an email is sufficient (<a href=\"%s\">more details</a>).\n" -" At the bottom of this page, write a reply to the authority explaining this to them." #: app/views/general/exception_caught.rhtml:3 msgid "The page either doesn't exist, or is broken. Things you can try now:" @@ -2683,23 +2557,23 @@ msgstr "" "Kjo faqe ose nuk ekziston, ose është prishur. Gjërat që mund t'i provosh " "tani:" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" msgstr "Kërkesa është <strong>refuzuar</strong>" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." -msgstr "Kërkesa është në <strong>pritje për sqarim.</strong>" +msgstr "Kërkesa është në <strong>pritje për sqarim</strong>." -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." -msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme.</strong>" +msgstr "Kërkesa ishte <strong>pjesërisht e suksesshme</strong>." #: app/views/request/show.rhtml:86 msgid "The request was <strong>refused</strong> by" @@ -2726,9 +2600,6 @@ msgid "" " by law, the authority should normally have responded\n" " <strong>promptly</strong> and" msgstr "" -"AA The response to your request has been <strong>delayed</strong>. You can say that, \n" -" by law, the authority should normally have responded\n" -" <strong>promptly</strong> and" #: app/views/request/_followup.rhtml:47 msgid "" @@ -2736,11 +2607,8 @@ msgid "" " law, under all circumstances, the authority should have responded\n" " by now" msgstr "" -"AA The response to your request is <strong>long overdue</strong>. You can say that, by \n" -" law, under all circumstances, the authority should have responded\n" -" by now" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." @@ -2753,102 +2621,100 @@ msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests this person has made." msgstr "" -"AA The search index is currently offline, so we can't show the Freedom of " -"Information requests this person has made." #: app/controllers/track_controller.rb:142 msgid "Then you can cancel the alert." -msgstr "" +msgstr "Pastaj ti mund të anulon njoftimin." #: app/controllers/track_controller.rb:172 msgid "Then you can cancel the alerts." -msgstr "" +msgstr "Pastaj ti mund të anulon njoftimet." #: app/controllers/user_controller.rb:248 msgid "Then you can change your email address used on {{site_name}}" msgstr "" +"Pastaj ti mund të ndryshosh adresën tënde të emailit që përdoret në " +"{{site_name}}" #: app/controllers/user_controller.rb:202 msgid "Then you can change your password on {{site_name}}" msgstr "" +"Pastaj ti mund të ndryshosh fjalëkalimin tënd që përdoret në {{site_name}}" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " -msgstr "" +msgstr "Pastaj ti mund të klasifikon përgjegjet e marra nga " #: app/controllers/request_game_controller.rb:39 msgid "Then you can play the request categorisation game." -msgstr "" +msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " -msgstr "" +msgstr "Pastaj ti mund të dërgon mesazh te " -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" -msgstr "" +msgstr "Pastaj ti mund të kyçesh në {{site_name}}" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " -msgstr "" +msgstr "Pastaj ti mund të aktualizosh statusin e kërkesës tënde për " -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" +"Pastaj ti mund të ngarkon një përgjegje ndaj kërkesës për informata zyrtare." -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " -msgstr "" +msgstr "Pastaj ti mund të shkruash përgjegjen tënde për " #: app/models/track_thing.rb:162 msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." -msgstr "" +msgstr "Pastaj kërkesa yte për " #: app/controllers/comment_controller.rb:56 msgid "Then your annotation to {{info_request_title}} will be posted." -msgstr "" +msgstr "Pastaj shënimi yt për {{info_request_title}} do të postohet." #: app/views/request_mailer/comment_on_alert_plural.rhtml:1 msgid "" "There are {{count}} new annotations on your {{info_request}} request. Follow" " this link to see what they wrote." msgstr "" -"AA There are {{count}} new annotations on your {{info_request}} request. " -"Follow this link to see what they wrote." +"Ka {{count}} shënime të reja në kërkesën tënde {{info_request}}. Ndiqni " +"këtë link për t'i parë ato." #: app/views/user/show.rhtml:4 msgid "" "There is <strong>more than one person</strong> who uses this site and has this name. \n" " One of them is shown below, you may mean a different one:" msgstr "" -"AA There is <strong>more than one person</strong> who uses this site and has this name. \n" -" One of them is shown below, you may mean a different one:" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -"AA There was a <strong>delivery error</strong> or similar, which needs " -"fixing by the WhatDoTheyKnow team." -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." -msgstr "" +msgstr "Kishte një gabim me fjalët që keni shtypur, të lutem provo përsëri." #: app/views/request/_describe_state.rhtml:38 msgid "They are going to reply <strong>by post</strong>" msgstr "Ata do të përgjegjen <strong>me postë</strong>" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2880,7 +2746,7 @@ msgstr "" msgid "Things to do with this request" msgstr "Gjëra për të bërë me këtë kërkesë" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" "Ky autoritet nuk ekziston më, kështu që ju nuk mund të bëjni një kërkesë për" @@ -2900,8 +2766,6 @@ msgid "" "This covers a very wide spectrum of information about the state of\n" " the <strong>natural and built environment</strong>, such as:" msgstr "" -"AA This covers a very wide spectrum of information about the state of\n" -" the <strong>natural and built environment</strong>, such as:" #: app/views/request/_view_html_prefix.rhtml:9 msgid "" @@ -2909,7 +2773,7 @@ msgid "" "request" msgstr "" "Ky është version HTML i shtojcës (attachment) ndaj kërkesës për informata " -"zyrtare Lirinë e të kërkojë informacion" +"zyrtare" #: app/views/request_mailer/stopped_responses.rhtml:5 msgid "" @@ -2932,9 +2796,6 @@ msgid "" "This outgoing message has been hidden. See annotations to\n" "\t\t\t\t\t\tfind out why. If you are the requester, then you may <a href=\"%s\">sign in</a> to view the response." msgstr "" -"AA This outgoing message has been hidden. See annotations to " -"title=\"Tab\">»</span>find out why. If you are the requester, then you may " -"<a href=\"%s\">sign in</a> to view the response." #: app/views/user/show.rhtml:122 msgid "This person has" @@ -2944,7 +2805,7 @@ msgstr "Ky person ka" msgid "This person's" msgstr "e këtij personi" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" @@ -2952,7 +2813,7 @@ msgstr "Kjo kërkesë <strong>kërkon vëmendje të administratorit</strong>" msgid "This request has an <strong>unknown status</strong>." msgstr "Kjo kërkesë ka <strong>status të panjohur</strong>." -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." @@ -2960,7 +2821,7 @@ msgstr "" "Kjo kërkesë është <strong>tërhequr</strong> nga personi që e bëri atë. » " "Mund të ketë një shpjegim në korrespondencën më poshtë." -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -3009,10 +2870,6 @@ msgid "" "the speed with which authorities respond to requests, the number of requests\n" "which require a postal response and much more." msgstr "" -"AA This table shows the technical details of the internal events that happened\n" -"to this request on WhatDoTheyKnow. This could be used to generate information about\n" -"the speed with which authorities respond to requests, the number of requests\n" -"which require a postal response and much more." #: app/views/user/show.rhtml:79 msgid "This user has been banned from WhatDoTheyKnow.com " @@ -3032,11 +2889,11 @@ msgstr "" #: app/controllers/track_controller.rb:171 msgid "To cancel these alerts" -msgstr "" +msgstr "Për të anuluar njoftimet" #: app/controllers/track_controller.rb:141 msgid "To cancel this alert" -msgstr "" +msgstr "Për të anuluar këtë njoftim" #: app/views/user/no_cookies.rhtml:5 msgid "" @@ -3048,11 +2905,11 @@ msgstr "" #: app/controllers/user_controller.rb:247 msgid "To change your email address used on {{site_name}}" -msgstr "" +msgstr "Për të ndryshuar email adresën tënde të përdorur në {{site_name}}" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" -msgstr "" +msgstr "Për të klasifikuar përgjegjen e kësaj kërkese për informata zyrtare" #: app/views/request/show_response.rhtml:39 msgid "To do that please send a private email to " @@ -3065,18 +2922,8 @@ msgstr "Për ta bërë këtë, së pari kliko në linkun më poshtë." #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." -msgstr "" -"AA To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." +msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 msgid "To let us know, follow this link and then select the appropriate box." @@ -3085,36 +2932,38 @@ msgstr "" #: app/controllers/request_game_controller.rb:38 msgid "To play the request categorisation game" -msgstr "" +msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" #: app/controllers/comment_controller.rb:55 msgid "To post your annotation" -msgstr "" +msgstr "Për të postuar shënimin tënd" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " -msgstr "" +msgstr "Për t'iu përgjegjur " -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " msgstr "" -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " -msgstr "" +msgstr "Për të dërguar mesazh te " -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" -msgstr "" +msgstr "Për të dërguar kërkesën tënde për informata zyrtare" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" -msgstr "" +msgstr "Për të aktualizuar statusin e kësaj kërkese për informata zyrtare" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" +"Të ngarkoni një përgjegje, ti duhet të kyçesh duke përdorur një email adresë" +" nga " #: app/views/public_body/view_email_captcha.rhtml:5 msgid "" @@ -3137,7 +2986,7 @@ msgstr "Për:" #: app/models/track_thing.rb:174 msgid "Track requests to {{public_body_name}} by email" -msgstr "" +msgstr "Përcjell kërkesat e bëra për {{public_body_name}} me email" #: app/views/public_body/show.rhtml:3 msgid "Track this authority" @@ -3163,7 +3012,7 @@ msgstr "TrackThing|Track query" msgid "TrackThing|Track type" msgstr "TrackThing |Track type" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." @@ -3177,7 +3026,7 @@ msgstr "URL emri nuk mund të jetë i zbrazët" #: app/models/user_mailer.rb:45 msgid "Unable to change email address on WhatDoTheyKnow.com" -msgstr "" +msgstr "E pamundur për të ndryshuar email adresën në InformataZyrtare.org" #: app/views/request/followup_bad.rhtml:4 msgid "Unable to send a reply to {{username}}" @@ -3189,11 +3038,11 @@ msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" #: app/views/request/list.rhtml:29 msgid "Unexpected search result type" -msgstr "AA Unexpected search result type" +msgstr "" #: app/views/request/similar.rhtml:18 msgid "Unexpected search result type " -msgstr "AA Unexpected search result type " +msgstr "" #: app/views/user/wrong_user_unknown_email.rhtml:3 msgid "" @@ -3221,7 +3070,7 @@ msgstr "I/e panjohur" msgid "Unusual response" msgstr "Përgjegje e pazakonshme" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "Përgjegje e pazakonshme." @@ -3230,11 +3079,11 @@ msgstr "Përgjegje e pazakonshme." msgid "Update the status of this request" msgstr "Aktualizo statusin e kësaj kërkese" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " -msgstr "" +msgstr "Aktualizo statusin e kërkesës tënde për " -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" @@ -3243,7 +3092,7 @@ msgstr "" "bëhet fjalë, p.sh. <code><strong>të përbashkëta ose të " "mdhaja</strong></code>" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" @@ -3295,7 +3144,7 @@ msgstr "User|Salt" msgid "User|Url name" msgstr "Përdoruesi | Emri Url" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" msgstr "Shiko adresën e emailit për Informatë Zyrtare" @@ -3312,7 +3161,7 @@ msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}" msgid "View Freedom of Information requests made by" msgstr "Shiko kërkesat për informata zyrtare të bëra nga" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" msgstr "Shiko autoritetet" @@ -3320,21 +3169,19 @@ msgstr "Shiko autoritetet" msgid "View email" msgstr "Shiko adresën e emailit" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" msgstr "Shiko kërkesat" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "Duke pritur sqarim." -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." msgstr "" -"AA Waiting for an <strong>internal review</strong> by {{public_body_link}} " -"of their handling of this request." #: app/views/public_body/view_email.rhtml:17 msgid "We do not have a working request email address for this authority." @@ -3344,19 +3191,15 @@ msgstr "" #: app/views/request/followup_bad.rhtml:24 msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." -msgstr "" +msgstr "Ne nuk kemi {{law_used_full}} adresë për {public_body_name}}." -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" " –\n" "\tif you are {{user_link}} please <a href=\"%s\">sign in</a> and let everyone know." msgstr "" -"AA We don't know whether the most recent response to this request contains\n" -" information or not\n" -" –\n" -"<span class=\"whitespace other\" title=\"Tab\">»</span>if you are {{user_link}} please <a href=\"%s\">sign in</a> and let everyone know." #: app/views/user_mailer/confirm_login.rhtml:8 msgid "" @@ -3380,7 +3223,7 @@ msgstr "Po presim për" #: app/views/request/show.rhtml:50 msgid "We're waiting for someone to read" -msgstr "AA We're waiting for someone to read" +msgstr "" #: app/views/user/signchangeemail_confirm.rhtml:6 msgid "" @@ -3406,7 +3249,7 @@ msgstr "" "Ne të kemi dërguar një email, kliko në linkun në te që të ti mund të " "ndryshon fjalëkalimin tënd." -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "Çfarë je duke bërë?" @@ -3427,8 +3270,6 @@ msgid "" "When you get there, please update the status to say if the response \n" "contains any useful information." msgstr "" -"AA When you get there, please update the status to say if the response \n" -"contains any useful information." #: app/views/request/show_response.rhtml:44 msgid "" @@ -3443,8 +3284,8 @@ msgid "" "When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " "this page</a> and file your new request." msgstr "" -"AA When you're done, <strong>come back here</strong>, <a href=\"%s\">reload " -"this page</a> and file your new request." +"Kur të kesh mbaruar, <strong>kthehu këtu,</strong> <a href=\"%s\">rifresko " +"këtë faqe</a> dhe bëj kërkesën tënde të re." #: app/views/request/show_response.rhtml:13 msgid "Which of these is happening?" @@ -3454,36 +3295,26 @@ msgstr "Cila nga këto po ndodh?" msgid "Withdrawn by requester" msgstr "E tërhequr nga kërkuesi" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "E tërhequr nga kërkuesi." -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " msgstr "Shkruaj një përgjegje për " -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " msgstr "" #: app/views/request/new.rhtml:46 msgid "Write your request in <strong>simple, precise language</strong>." -msgstr "AA Write your request in <strong>simple, precise language</strong>." +msgstr "" #: app/models/info_request_event.rb:296 msgid "Wrong Response" msgstr "Përgjegje e gabuar." -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "Përgjegje e gabuar." - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" -"ABC XXX this section needs localising re EIR as these are specific to UK law" - #: app/views/comment/_single_comment.rhtml:10 msgid "You" msgstr "Ti" @@ -3494,7 +3325,7 @@ msgstr "" #: app/models/track_thing.rb:156 msgid "You are being emailed about any new successful responses" -msgstr "" +msgstr "Ti je duke pranuar me email çdo përgjegje të re të suksesshme" #: app/views/request/show.rhtml:81 msgid "You can <strong>complain</strong> by" @@ -3505,10 +3336,8 @@ msgid "" "You can get this page in computer-readable format as part of the main JSON\n" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -"AA You can get this page in computer-readable format as part of the main JSON\n" -"page for the request. See the <a href=\"%s\">API documentation</a>." -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." msgstr "" @@ -3523,13 +3352,14 @@ msgstr "Ti ke" msgid "You have a new response to the {{law_used_full}} request " msgstr "Ti ke një përgjegje të re për kërkesën {{law_used_full}}" -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" msgstr "" +"Tash ke ndryshuar adresën tënde të emailit që përdoret në {{site_name}}" #: app/views/user_mailer/already_registered.rhtml:3 msgid "" @@ -3539,11 +3369,6 @@ msgid "" "\n" "Please click on the link below." msgstr "" -"AA You just tried to sign up to WhatDoTheyKnow.com, when you\n" -"already have an account. Your name and password have been\n" -"left as they previously were.\n" -"\n" -"Please click on the link below." #: app/views/comment/new.rhtml:59 msgid "" @@ -3556,8 +3381,6 @@ msgid "" "You may <strong>include attachments</strong>. If you would like to attach a\n" "file too large for email, use the form below." msgstr "" -"AA You may <strong>include attachments</strong>. If you would like to attach a\n" -"file too large for email, use the form below." #: app/views/request/followup_bad.rhtml:24 msgid "" @@ -3565,9 +3388,6 @@ msgid "" " one on their website, or by phoning them up and asking. If you manage\n" " to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -"AA You may be able to find\n" -" one on their website, or by phoning them up and asking. If you manage\n" -" to find one, then please <a href=\"%s\">send it to us</a>." #: app/views/request/new_bad_contact.rhtml:6 msgid "" @@ -3575,23 +3395,22 @@ msgid "" "one on their website, or by phoning them up and asking. If you manage\n" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -"AA You may be able to find\n" -"one on their website, or by phoning them up and asking. If you manage\n" -"to find one, then please <a href=\"%s\">send it to us</a>." -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." msgstr "Ti duhet të jesh i kyçur që të ndryshosh fotografinë e profilit tënd." -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." msgstr "" +"Ti duhet të jesh i kyçur për të larguar (fshirë) fotografinë e profilit " +"tënd." -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3601,16 +3420,12 @@ msgid "" "You should have received a copy of the request by email, and you can respond\n" "by <strong>simply replying</strong> to that email. For your convenience, here is the address:" msgstr "" -"AA You should have received a copy of the request by email, and you can respond\n" -"by <strong>simply replying</strong> to that email. For your convenience, here is the address:" #: app/views/request/show_response.rhtml:36 msgid "" "You want to <strong>give your postal address</strong> to the authority in " "private." msgstr "" -"AA You want to <strong>give your postal address</strong> to the authority in" -" private." #: app/views/user/banned.rhtml:9 msgid "" @@ -3619,10 +3434,6 @@ msgid "" "up\n" "email alerts." msgstr "" -"AA You will be unable to make new requests, send follow ups, add annotations or\n" -"send messages to other users. You may continue to view other requests, and set\n" -"up\n" -"email alerts." #: app/controllers/track_controller.rb:152 msgid "You will no longer be emailed updates about " @@ -3630,7 +3441,7 @@ msgstr "" #: app/controllers/track_controller.rb:181 msgid "You will no longer be emailed updates for those alerts" -msgstr "" +msgstr "Ti nuk të merr më aktualizime me email për këto njoftime " #: app/controllers/track_controller.rb:109 msgid "You will now be emailed updates about " @@ -3641,16 +3452,15 @@ msgid "" "You will only get an answer to your request if you follow up\n" "with the clarification." msgstr "" -"AA You will only get an answer to your request if you follow up\n" -"with the clarification." +"Ti do të merr përgjegje në kërkesën tënde vetëm në qoftë se e sqaroni ate." -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" -msgstr "" +msgstr "Ke pastruar fotografinë e profilit tënd" #: app/views/user/show.rhtml:152 msgid "Your " -msgstr "AA Your " +msgstr "" #: app/views/user/_signup.rhtml:22 msgid "" @@ -3660,22 +3470,16 @@ msgid "" " are thinking of using a pseudonym, please \n" " <a href=\"%s\">read this first</a>." msgstr "" -"AA Your <strong>name will appear publicly</strong> \n" -" (<a href=\"%s\">why?</a>)\n" -" on this website and in search engines. If you\n" -" are thinking of using a pseudonym, please \n" -" <a href=\"%s\">read this first</a>." #: app/views/contact_mailer/user_message.rhtml:3 msgid "" "Your details have not been given to anyone, unless you choose to reply to this\n" "message, which will then go directly to the person who wrote the message." msgstr "" -"AA Your details have not been given to anyone, unless you choose to reply to this\n" -"message, which will then go directly to the person who wrote the message." -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" msgstr "Adresa e emailit tënd:" @@ -3683,28 +3487,30 @@ msgstr "Adresa e emailit tënd:" msgid "Your email subscriptions" msgstr "Email abonimet e tua" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." -msgstr "" +msgstr "Kërkesa për shqyrtim të brendshëm është dërguar." #: app/controllers/help_controller.rb:61 msgid "" "Your message has been sent. Thank you for getting in touch! We'll get back " "to you soon." msgstr "" +"Mesazhi yt u dërgua. Faleminderit që na kontaktuat! Ne do t'ju përgjegjemi " +"së shpejti." -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" msgstr "Mesazhi yt për {{recipient_user_name}} është dërguar!" @@ -3758,8 +3564,6 @@ msgid "" "Your request was called {{info_request}}. Letting everyone know whether you " "got the information will help us keep tabs on" msgstr "" -"AA Your request was called {{info_request}}. Letting everyone know whether " -"you got the information will help us keep tabs on" #: app/views/request/new.rhtml:109 msgid "Your request:" @@ -3778,10 +3582,12 @@ msgid "" "Your thoughts on what the WhatDoTheyKnow <strong>administrators</strong> " "should do about the request." msgstr "" +"Mendimet tua se çfare duhet <strong>administratorët e</strong> " +"InformataZyrtare.org bërë me kërkesën." #: app/models/outgoing_message.rb:69 msgid "Yours faithfully," -msgstr "" +msgstr "Me nderime," #: app/models/outgoing_message.rb:67 msgid "Yours sincerely," @@ -3795,11 +3601,11 @@ msgstr "" "një përmbledhje në një rresht të informacionit që ti kërkon,\n" "»» »p.sh." -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" msgstr "admin" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" msgstr "i quajtur edhe {{public_body_short_name}}" @@ -3812,16 +3618,14 @@ msgid "" "and update the status accordingly. Perhaps <strong>you</strong> might like " "to help out by doing that?" msgstr "" -"AA and update the status accordingly. Perhaps <strong>you</strong> might " -"like to help out by doing that?" #: app/views/request/show.rhtml:57 msgid "and update the status." msgstr "dhe aktualizo statusin." -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" -msgstr "AA and we'll suggest <strong>what to do next</strong>" +msgstr "" #: app/views/user/show.rhtml:153 msgid "annotation" @@ -3835,7 +3639,7 @@ msgstr "shënimet" msgid "are long overdue." msgstr "janë vonuar së tepërmi." -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "duke filluar me" @@ -3868,16 +3672,15 @@ msgid "" "containing your postal address, and asking them to reply to this request.\n" " Or you could phone them." msgstr "" -"AA containing your postal address, and asking them to reply to this request.\n" -" Or you could phone them." #: app/models/info_request_event.rb:333 msgid "display_status only works for incoming and outgoing messages right now" msgstr "" +"display_status tani për tani punon vetëm për mesazhet hyrëse dhe dalëse" #: app/views/request_mailer/overdue_alert.rhtml:3 msgid "during term time" -msgstr "AA during term time" +msgstr "" #: app/views/general/frontpage.rhtml:18 msgid "e.g." @@ -3918,7 +3721,7 @@ msgstr "festë" #: app/views/request/_followup.rhtml:39 app/views/request/show.rhtml:63 #: app/views/request/show.rhtml:73 msgid "in term time" -msgstr "AA in term time" +msgstr "" #: app/views/public_body/list.rhtml:42 msgid "in total" @@ -3936,12 +3739,12 @@ msgstr "kërkesë për informatë" msgid "info request event" msgstr "info request event" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" msgstr "gabim i brendshëm i sistemit" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "është duke <strong>pritur për sqarim tuaj</strong>." @@ -3969,10 +3772,6 @@ msgid "" " a general followup. If you need to make a general followup, and know\n" " an email which will go to the right place, please <a href=\"%s\">send it to us</a>." msgstr "" -"AA no longer exists. If you are trying to make\n" -" From the request page, try replying to a particular message, rather than sending\n" -" a general followup. If you need to make a general followup, and know\n" -" an email which will go to the right place, please <a href=\"%s\">send it to us</a>." #: app/views/request/show.rhtml:65 msgid "normally" @@ -4023,18 +3822,16 @@ msgid "" "response as needing administrator attention. Take a look, and reply to this\n" "email to let them know what you are going to do about it." msgstr "" -"AA response as needing administrator attention. Take a look, and reply to this\n" -"email to let them know what you are going to do about it." -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" -msgstr "AA send a follow up message" +msgstr "" #: app/views/request/_request_listing_via_event.rhtml:31 msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "dërguar {{public_body_name}} nga {{info_request_user}} me {{date}}." -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" msgstr "Kyçu" @@ -4046,19 +3843,19 @@ msgstr "Ç'kyçu" msgid "that you made to" msgstr "që ti ke bërë për" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" msgstr "ekipi i InformataZyrtare" @@ -4084,15 +3881,15 @@ msgstr "" #: app/views/request/new.rhtml:34 msgid "to check that the info isn't already published." -msgstr "AA to check that the info isn't already published." +msgstr "" #: app/views/request/show.rhtml:55 msgid "to read" msgstr "për të lexuar" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." -msgstr "AA to send a follow up message." +msgstr "" #: app/views/request/show.rhtml:39 msgid "to {{public_body}}" @@ -4104,17 +3901,17 @@ msgstr "përcjell gjënë" #: app/views/request/_hidden_correspondence.rhtml:32 msgid "unexpected prominence on request event" -msgstr "AA unexpected prominence on request event" +msgstr "" #: app/views/request/_request_listing_via_event.rhtml:38 msgid "unknown event type indexed " -msgstr "AA unknown event type indexed " +msgstr "" #: app/views/request/followup_bad.rhtml:29 msgid "unknown reason " msgstr "arsye e panjohur" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " msgstr "status i panjohur" @@ -4136,7 +3933,7 @@ msgstr "përdoruesi" #: locale/model_attributes.rb:67 msgid "user info request sent alert" -msgstr "AA user info request sent alert" +msgstr "" #: app/views/user/show.rhtml:140 msgid "you" @@ -4148,14 +3945,14 @@ msgid "" " created the same request on {{date}}. You can either view the <a href=\"{{existing_request}}\">existing request</a>,\n" " or edit the details below to make a new but similar request." msgstr "" -"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{Data}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" +"{{existing_request_user}} tashmë ka krijuar të njëjtën kërkesë me {{date}}. Ju mund ta shikoni <a href=\"{{existing_request}}\">kërkesën ekzistuese</a> , \n" "apo të editosh të dhënat e mëposhtme për të bërë një kërkesë të re, por të ngjashme." #: app/views/request/_after_actions.rhtml:20 msgid "{{info_request_user_name}} only:" msgstr "{{info_request_user_name}} vetëm:" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" msgstr "{{length_of_time}} më parë" @@ -4176,6 +3973,3 @@ msgid "{{user}} made this {{law_used_full}} request" msgstr "{{user}} bëri këtë {{law_used_full}} kërkesë" - - - diff --git a/locale/sr/app.po b/locale/sr/app.po index 148c7b9e2..ab011c6cf 100644 --- a/locale/sr/app.po +++ b/locale/sr/app.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-07-13 09:39+0000\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-30 00:37+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "" " easier for others to get involved with what you're doing." msgstr "" -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" @@ -128,14 +128,14 @@ msgstr "" msgid " when you send this message." msgstr "" -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" msgstr[0] "" @@ -150,7 +150,7 @@ msgstr "" msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -183,7 +183,7 @@ msgstr "" msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" @@ -198,7 +198,7 @@ msgstr "" msgid "<a href=\"%s\">details</a>" msgstr "" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "" @@ -208,7 +208,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -223,59 +223,59 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -283,7 +283,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -291,27 +291,27 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -327,57 +327,57 @@ msgid "" "</p>" msgstr "" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." msgstr "" -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " "statuses</a> below." msgstr "" -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" " can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." @@ -389,11 +389,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" @@ -449,7 +449,7 @@ msgid "" " to it, will be displayed publicly on this website." msgstr "" -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "" @@ -514,7 +514,7 @@ msgstr "" msgid "Administration URL:" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" msgstr "" @@ -544,7 +544,7 @@ msgid "" "you, the original requester, to evaluate them." msgstr "" -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" msgstr "" @@ -584,29 +584,15 @@ msgstr "" msgid "Attachment (optional):" msgstr "" -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "" - -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "" -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "" -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "" @@ -664,7 +650,6 @@ msgstr "" msgid "CensorRule|Text" msgstr "" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "" @@ -673,7 +658,7 @@ msgstr "" msgid "Change password on {{site_name}}" msgstr "" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" msgstr "" @@ -706,7 +691,7 @@ msgstr "" msgid "Change your password {{site_name}}" msgstr "" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "" @@ -727,7 +712,7 @@ msgstr "" msgid "Clarification required" msgstr "" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " msgstr "" @@ -763,12 +748,12 @@ msgstr "" msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " msgstr "" -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" msgstr "" @@ -780,7 +765,7 @@ msgstr "" msgid "Confirm your new email address on WhatDoTheyKnow.com" msgstr "" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" msgstr "" @@ -810,19 +795,15 @@ msgstr "" msgid "Deadline Extended" msgstr "" -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" - #: app/models/outgoing_message.rb:57 msgid "Dear " msgstr "" -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." msgstr "" -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" msgstr "" @@ -834,8 +815,7 @@ msgstr "" msgid "Did you mean: {{correction}}" msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" @@ -845,7 +825,7 @@ msgstr "" msgid "Download original attachment" msgstr "" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." @@ -873,7 +853,7 @@ msgstr "" msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" msgstr "" @@ -885,7 +865,7 @@ msgstr "" msgid "Email subscriptions" msgstr "" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" @@ -897,11 +877,11 @@ msgid "" "<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" @@ -913,14 +893,14 @@ msgstr "" msgid "Event history details" msgstr "" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" @@ -951,12 +931,6 @@ msgstr "" msgid "FOI requests" msgstr "" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" msgstr "" @@ -978,7 +952,7 @@ msgid "" " (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" msgstr "" @@ -996,7 +970,7 @@ msgid "" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." @@ -1006,7 +980,7 @@ msgstr "" msgid "Forgotten your password?" msgstr "" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." @@ -1026,7 +1000,7 @@ msgstr "" msgid "Freedom of Information request" msgstr "" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" msgstr "" @@ -1034,7 +1008,7 @@ msgstr "" msgid "Freedom of Information requests made by" msgstr "" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" msgstr "" @@ -1057,19 +1031,19 @@ msgstr "" msgid "Handled by post" msgstr "" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." msgstr "" -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" msgstr "" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" msgstr "" -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" msgstr "" @@ -1111,11 +1085,11 @@ msgstr "" msgid "Human health and safety" msgstr "" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" msgstr "" @@ -1127,7 +1101,7 @@ msgstr "" msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "" @@ -1149,15 +1123,15 @@ msgstr "" msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" msgstr "" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" msgstr "" @@ -1191,13 +1165,13 @@ msgid "" "the request." msgstr "" -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" msgstr "" @@ -1214,11 +1188,10 @@ msgid "" " a copy to upload</strong>." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" #: app/views/user/bad_token.rhtml:13 @@ -1227,7 +1200,7 @@ msgid "" "more. Please try doing what you were doing from the beginning." msgstr "" -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1333,7 +1306,7 @@ msgstr "" msgid "Information not held" msgstr "" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." msgstr "" @@ -1351,6 +1324,12 @@ msgstr "" msgid "Internal review request" msgstr "" +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + #: app/views/user/no_cookies.rhtml:8 msgid "" "It may be that your browser is not set to accept a thing called \"cookies\",\n" @@ -1399,11 +1378,11 @@ msgstr "" msgid "Local and regional" msgstr "" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." msgstr "" -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" msgstr "" @@ -1411,11 +1390,11 @@ msgstr "" msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" msgstr "" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" msgstr "" @@ -1423,7 +1402,7 @@ msgstr "" msgid "Make or explore Freedom of Information requests" msgstr "" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" msgstr "" @@ -1443,19 +1422,19 @@ msgstr "" msgid "More about this authority" msgstr "" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." msgstr "" -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." msgstr "" -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" msgstr "" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" msgstr "" @@ -1471,7 +1450,7 @@ msgstr "" msgid "New e-mail:" msgstr "" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" msgstr "" @@ -1515,7 +1494,7 @@ msgstr "" msgid "No similar requests found." msgstr "" -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." @@ -1526,10 +1505,6 @@ msgstr "" msgid "None found." msgstr "" -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1562,27 +1537,22 @@ msgid "" "{{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" msgstr "" -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" msgstr "" @@ -1590,7 +1560,11 @@ msgstr "" msgid "On this page" msgstr "" -#: app/views/public_body/show.rhtml:93 +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." msgstr "" @@ -1614,11 +1588,11 @@ msgstr "" msgid "OutgoingMessage|What doing" msgstr "" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "" -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" msgstr "" @@ -1630,12 +1604,6 @@ msgstr "" msgid "Password: (again)" msgstr "" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" msgstr "" @@ -1652,7 +1620,7 @@ msgstr "" msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "" @@ -1696,7 +1664,7 @@ msgstr "" msgid "Please choose what sort of reply you are making." msgstr "" -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1713,7 +1681,7 @@ msgstr "" msgid "Please click on the link below to confirm your email address." msgstr "" -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." @@ -1777,15 +1745,15 @@ msgstr "" msgid "Please enter your name, not your email address, in the name field." msgstr "" -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" msgstr "" -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" msgstr "" -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" msgstr "" @@ -1797,7 +1765,7 @@ msgstr "" msgid "Please keep it shorter than 500 characters" msgstr "" -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." @@ -1825,16 +1793,16 @@ msgstr "" msgid "Please sign in as " msgstr "" -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" @@ -1842,7 +1810,7 @@ msgstr "" msgid "Please write a summary with some text in it" msgstr "" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." @@ -1854,7 +1822,7 @@ msgid "" "letters. This makes it easier for others to read." msgstr "" -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -1900,6 +1868,10 @@ msgstr "" msgid "PostRedirect|Uri" msgstr "" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" msgstr "" @@ -1908,15 +1880,15 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" msgstr "" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" msgstr "" @@ -1932,7 +1904,7 @@ msgstr "" msgid "Public authorities - {{description}}" msgstr "" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" @@ -2006,13 +1978,13 @@ msgstr "" msgid "Re-edit this request" msgstr "" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." msgstr "" -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" msgstr "" @@ -2024,7 +1996,7 @@ msgstr "" msgid "Recently described results first" msgstr "" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "" @@ -2032,7 +2004,7 @@ msgstr "" msgid "Recently sent requests" msgstr "" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "" @@ -2040,7 +2012,7 @@ msgstr "" msgid "Refused" msgstr "" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." msgstr "" @@ -2130,7 +2102,7 @@ msgstr "" msgid "Save" msgstr "" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" @@ -2144,7 +2116,7 @@ msgstr "" msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " msgstr "" @@ -2196,11 +2168,11 @@ msgstr "" msgid "Sign in or make a new account" msgstr "" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" msgstr "" -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" msgstr "" @@ -2251,7 +2223,7 @@ msgstr "" msgid "Submit" msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" msgstr "" @@ -2263,7 +2235,7 @@ msgstr "" msgid "Successful responses" msgstr "" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." msgstr "" @@ -2277,7 +2249,7 @@ msgstr "" msgid "Summary:" msgstr "" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" msgstr "" @@ -2293,25 +2265,25 @@ msgstr "" msgid "Thank you for making an annotation!" msgstr "" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" msgstr "" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" msgstr "" @@ -2341,8 +2313,8 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" msgstr "" @@ -2354,7 +2326,7 @@ msgstr "" msgid "The accounts have been left as they previously were." msgstr "" -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" @@ -2371,7 +2343,7 @@ msgid "" " address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2395,21 +2367,21 @@ msgstr "" msgid "The page either doesn't exist, or is broken. Things you can try now:" msgstr "" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" msgstr "" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." msgstr "" @@ -2442,7 +2414,7 @@ msgid "" " by now" msgstr "" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." @@ -2470,7 +2442,7 @@ msgstr "" msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " msgstr "" @@ -2478,27 +2450,27 @@ msgstr "" msgid "Then you can play the request categorisation game." msgstr "" -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " msgstr "" -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " msgstr "" -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " msgstr "" @@ -2506,7 +2478,7 @@ msgstr "" msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" @@ -2526,13 +2498,13 @@ msgid "" " One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." msgstr "" @@ -2540,7 +2512,7 @@ msgstr "" msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2566,7 +2538,7 @@ msgstr "" msgid "Things to do with this request" msgstr "" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" @@ -2614,7 +2586,7 @@ msgstr "" msgid "This person's" msgstr "" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "" @@ -2622,13 +2594,13 @@ msgstr "" msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." msgstr "" -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -2698,7 +2670,7 @@ msgstr "" msgid "To change your email address used on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" msgstr "" @@ -2713,11 +2685,7 @@ msgstr "" #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 @@ -2732,27 +2700,27 @@ msgstr "" msgid "To post your annotation" msgstr "" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " msgstr "" -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " msgstr "" -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " msgstr "" -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" msgstr "" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" msgstr "" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" @@ -2804,7 +2772,7 @@ msgstr "" msgid "TrackThing|Track type" msgstr "" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." @@ -2855,7 +2823,7 @@ msgstr "" msgid "Unusual response" msgstr "" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "" @@ -2864,17 +2832,17 @@ msgstr "" msgid "Update the status of this request" msgstr "" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " msgstr "" -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" msgstr "" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" @@ -2924,7 +2892,7 @@ msgstr "" msgid "User|Url name" msgstr "" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" msgstr "" @@ -2940,7 +2908,7 @@ msgstr "" msgid "View Freedom of Information requests made by" msgstr "" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" msgstr "" @@ -2948,15 +2916,15 @@ msgstr "" msgid "View email" msgstr "" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" msgstr "" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "" -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." @@ -2971,7 +2939,7 @@ msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" @@ -3017,7 +2985,7 @@ msgid "" "password." msgstr "" -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "" @@ -3057,15 +3025,15 @@ msgstr "" msgid "Withdrawn by requester" msgstr "" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "" -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " msgstr "" -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " msgstr "" @@ -3077,15 +3045,6 @@ msgstr "" msgid "Wrong Response" msgstr "" -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "" - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" - #: app/views/comment/_single_comment.rhtml:10 msgid "You" msgstr "" @@ -3108,7 +3067,7 @@ msgid "" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." msgstr "" @@ -3121,11 +3080,11 @@ msgstr "" msgid "You have a new response to the {{law_used_full}} request " msgstr "" -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" msgstr "" @@ -3164,19 +3123,19 @@ msgid "" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." msgstr "" -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." msgstr "" -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3219,7 +3178,7 @@ msgid "" "with the clarification." msgstr "" -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" msgstr "" @@ -3242,8 +3201,9 @@ msgid "" "message, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" msgstr "" @@ -3251,18 +3211,18 @@ msgstr "" msgid "Your email subscriptions" msgstr "" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." msgstr "" @@ -3272,7 +3232,7 @@ msgid "" "to you soon." msgstr "" -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" msgstr "" @@ -3349,11 +3309,11 @@ msgid "" "\t\t\te.g." msgstr "" -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" msgstr "" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" msgstr "" @@ -3371,7 +3331,7 @@ msgstr "" msgid "and update the status." msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" @@ -3387,7 +3347,7 @@ msgstr "" msgid "are long overdue." msgstr "" -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "" @@ -3486,12 +3446,12 @@ msgstr "" msgid "info request event" msgstr "" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" msgstr "" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "" @@ -3570,7 +3530,7 @@ msgid "" "email to let them know what you are going to do about it." msgstr "" -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" msgstr "" @@ -3578,7 +3538,7 @@ msgstr "" msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" msgstr "" @@ -3590,19 +3550,19 @@ msgstr "" msgid "that you made to" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" msgstr "" @@ -3632,7 +3592,7 @@ msgstr "" msgid "to read" msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." msgstr "" @@ -3656,7 +3616,7 @@ msgstr "" msgid "unknown reason " msgstr "" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " msgstr "" @@ -3695,7 +3655,7 @@ msgstr "" msgid "{{info_request_user_name}} only:" msgstr "" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" msgstr "" @@ -3714,6 +3674,3 @@ msgid "{{user}} made this {{law_used_full}} request" msgstr "" - - - diff --git a/locale/sr@latin/app.po b/locale/sr@latin/app.po index 33db2df86..f8284c268 100644 --- a/locale/sr@latin/app.po +++ b/locale/sr@latin/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: http://github.com/sebbacon/alaveteli/issues\n" -"POT-Creation-Date: 2011-06-25 15:32+0200\n" -"PO-Revision-Date: 2011-06-26 00:20+0000\n" +"POT-Creation-Date: 2011-07-12 15:18+0100\n" +"PO-Revision-Date: 2011-07-27 00:27+0000\n" "Last-Translator: vbrestovci <vbrestovci@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "" " easier for others to get involved with what you're doing." msgstr "" -#: app/views/comment/_comment_form.rhtml:17 +#: app/views/comment/_comment_form.rhtml:16 msgid "" " (<strong>no ranty</strong> politics, read our <a href=\"%s\">moderation " "policy</a>)" @@ -129,14 +129,14 @@ msgstr "" msgid " when you send this message." msgstr "" -#: app/views/public_body/show.rhtml:82 +#: app/views/public_body/show.rhtml:80 msgid "%d Freedom of Information request" msgid_plural "%d Freedom of Information requests" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: app/views/general/frontpage.rhtml:35 +#: app/views/general/frontpage.rhtml:36 msgid "%d request" msgid_plural "%d requests" msgstr[0] "" @@ -151,7 +151,7 @@ msgstr "" msgid "'Pollution levels over time for the River Tyne'" msgstr "" -#: app/controllers/user_controller.rb:345 +#: app/controllers/user_controller.rb:354 msgid "" ",\n" "\n" @@ -184,7 +184,7 @@ msgstr "" msgid "<a href=\"%s\">Contact us</a> to tell us about the problem</li>" msgstr "" -#: app/views/public_body/show.rhtml:51 +#: app/views/public_body/show.rhtml:50 msgid "" "<a href=\"%s\">Make a new Freedom of Information request</a> to " "{{public_body_name}}" @@ -199,7 +199,7 @@ msgstr "" msgid "<a href=\"%s\">details</a>" msgstr "" -#: app/views/request/_followup.rhtml:78 +#: app/views/request/_followup.rhtml:77 msgid "<a href=\"%s\">what's that?</a>" msgstr "" @@ -209,7 +209,7 @@ msgid "" "href=\"%s\">more things you can do</a> to help WhatDoTheyKnow.</p>" msgstr "" -#: app/controllers/request_controller.rb:382 +#: app/controllers/request_controller.rb:394 msgid "" "<p>Thank you! Here are some ideas on what to do next:</p>\n" " <ul>\n" @@ -224,59 +224,59 @@ msgid "" " " msgstr "" -#: app/controllers/request_controller.rb:376 +#: app/controllers/request_controller.rb:388 msgid "" "<p>Thank you! Hope you don't have to wait much longer.</p> <p>By law, you " "should have got a response promptly, and normally before the end of " "<strong>{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:372 +#: app/controllers/request_controller.rb:384 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p> <p>By law, you should get a response promptly, and normally before the end of <strong>\n" "{{date_response_required_by}}</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:415 +#: app/controllers/request_controller.rb:421 msgid "" "<p>Thank you! Hopefully your wait isn't too long.</p><p>You should get a " "response within 20 days, or be told if it will take longer (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:418 +#: app/controllers/request_controller.rb:424 msgid "" "<p>Thank you! We'll look into what happened and try and fix it up.</p><p>If " "the error was a delivery failure, and you can find an up to date FOI email " "address for the authority, please tell us using the form below.</p>" msgstr "" -#: app/controllers/request_controller.rb:379 +#: app/controllers/request_controller.rb:391 msgid "" "<p>Thank you! Your request is long overdue, by more than 40 working days. " "Most requests should be answered within 20 working days. You might like to " "complain about this, see below.</p>" msgstr "" -#: app/controllers/user_controller.rb:485 +#: app/controllers/user_controller.rb:494 msgid "" "<p>Thanks for changing the text about you on your profile.</p>\n" " <p><strong>Next...</strong> You can upload a profile photograph too.</p>" msgstr "" -#: app/controllers/user_controller.rb:407 +#: app/controllers/user_controller.rb:416 msgid "" "<p>Thanks for updating your profile photo.</p>\n" " <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "" -#: app/controllers/request_controller.rb:267 +#: app/controllers/request_controller.rb:279 msgid "" "<p>We recommend that you edit your request and remove the email address.\n" " If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>" msgstr "" -#: app/controllers/request_controller.rb:398 +#: app/controllers/request_controller.rb:410 msgid "" "<p>We're glad you got all the information that you wanted. If you write " "about or make use of the information, please come back and add an annotation" @@ -284,7 +284,7 @@ msgid "" "href=\"%s\">make a donation</a> to the charity which runs it.</p>" msgstr "" -#: app/controllers/request_controller.rb:401 +#: app/controllers/request_controller.rb:413 msgid "" "<p>We're glad you got some of the information that you wanted. If you found " "WhatDoTheyKnow useful, <a href=\"%s\">make a donation</a> to the charity " @@ -292,27 +292,27 @@ msgid "" " here's what to do now.</p>" msgstr "" -#: app/controllers/request_controller.rb:265 +#: app/controllers/request_controller.rb:277 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply (<a href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:263 +#: app/controllers/request_controller.rb:275 msgid "" "<p>You do not need to include your email in the request in order to get a " "reply, as we will ask for it on the next screen (<a " "href=\"%s\">details</a>).</p>" msgstr "" -#: app/controllers/request_controller.rb:271 +#: app/controllers/request_controller.rb:283 msgid "" "<p>Your request contains a <strong>postcode</strong>. Unless it directly " "relates to the subject of your request, please remove any address as it will" " <strong>appear publicly on the Internet</strong>.</p>" msgstr "" -#: app/controllers/request_controller.rb:294 +#: app/controllers/request_controller.rb:306 msgid "" "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\n" " <p><strong>We will email you</strong> when there is a response, or after 20 working days if the authority still hasn't\n" @@ -328,57 +328,57 @@ msgid "" "</p>" msgstr "" -#: app/views/request/new.rhtml:135 +#: app/views/request/new.rhtml:131 msgid "" "<strong> Can I request information about myself?</strong>\n" "\t\t\t<a href=\"%s\">No! (Click here for details)</a>" msgstr "" -#: app/views/general/search.rhtml:118 +#: app/views/general/search.rhtml:130 msgid "" "<strong><code>commented_by:tony_bowden</code></strong> to search annotations" " made by Tony Bowden, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:120 +#: app/views/general/search.rhtml:132 msgid "" "<strong><code>filetype:pdf</code></strong> to find all responses with PDF " "attachments. Or try these: <code>{{list_of_file_extensions}}</code>" msgstr "" -#: app/views/general/search.rhtml:119 +#: app/views/general/search.rhtml:131 msgid "" "<strong><code>request:</code></strong> to restrict to a specific request, " "typing the title as in the URL." msgstr "" -#: app/views/general/search.rhtml:117 +#: app/views/general/search.rhtml:129 msgid "" "<strong><code>requested_by:julian_todd</code></strong> to search requests " "made by Julian Todd, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:116 +#: app/views/general/search.rhtml:128 msgid "" "<strong><code>requested_from:home_office</code></strong> to search requests " "from the Home Office, typing the name as in the URL." msgstr "" -#: app/views/general/search.rhtml:114 +#: app/views/general/search.rhtml:126 msgid "" "<strong><code>status:</code></strong> to select based on the status or " "historical status of the request, see the <a href=\"%s\">table of " "statuses</a> below." msgstr "" -#: app/views/general/search.rhtml:122 +#: app/views/general/search.rhtml:134 msgid "" "<strong><code>tag:charity</code></strong> to find all public bodies or requests with a given tag. You can include multiple tags, \n" " and tag values, e.g. <code>tag:openlylocal AND tag:financial_transaction:335633</code>. Note that by default any of the tags\n" " can be present, you have to put <code>AND</code> explicitly if you only want results them all present." msgstr "" -#: app/views/general/search.rhtml:115 +#: app/views/general/search.rhtml:127 msgid "" "<strong><code>variety:</code></strong> to select type of thing to search " "for, see the <a href=\"%s\">table of varieties</a> below." @@ -390,11 +390,11 @@ msgid "" "requester. </li>" msgstr "" -#: app/views/request/_other_describe_state.rhtml:53 +#: app/views/request/_other_describe_state.rhtml:56 msgid "<strong>All the information</strong> has been sent" msgstr "" -#: app/views/request/_followup.rhtml:83 +#: app/views/request/_followup.rhtml:82 msgid "" "<strong>Anything else</strong>, such as clarifying, prompting, thanking" msgstr "" @@ -450,7 +450,7 @@ msgid "" " to it, will be displayed publicly on this website." msgstr "" -#: app/views/request/_other_describe_state.rhtml:49 +#: app/views/request/_other_describe_state.rhtml:52 msgid "<strong>Some of the information</strong> has been sent " msgstr "" @@ -515,7 +515,7 @@ msgstr "" msgid "Administration URL:" msgstr "" -#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:109 +#: app/views/general/search.rhtml:31 app/views/general/search.rhtml:121 msgid "Advanced search tips" msgstr "" @@ -545,7 +545,7 @@ msgid "" "you, the original requester, to evaluate them." msgstr "" -#: app/views/request/_other_describe_state.rhtml:65 +#: app/views/request/_other_describe_state.rhtml:70 msgid "An <strong>error message</strong> has been received" msgstr "" @@ -585,29 +585,15 @@ msgstr "" msgid "Attachment (optional):" msgstr "" -#: app/views/request/_describe_state.rhtml:70 -msgid "" -"Authority has replied but the response <strong>does not correspond to the " -"request</strong>" -msgstr "" - -#: app/views/request/_describe_state.rhtml:43 -msgid "Authority has requested <strong>extension of the deadline.</strong>" -msgstr "" - -#: app/controllers/request_controller.rb:409 -msgid "Authority has requested extension of the deadline." -msgstr "" - -#: app/models/info_request.rb:753 +#: app/models/info_request.rb:776 msgid "Awaiting classification." msgstr "" -#: app/models/info_request.rb:777 +#: app/models/info_request.rb:796 msgid "Awaiting internal review." msgstr "" -#: app/models/info_request.rb:755 +#: app/models/info_request.rb:778 msgid "Awaiting response." msgstr "" @@ -665,7 +651,6 @@ msgstr "" msgid "CensorRule|Text" msgstr "" -#: lib/public_body_categories_sr.rb:14 lib/public_body_categories_sq.rb:14 #: lib/public_body_categories_en.rb:14 msgid "Central government" msgstr "" @@ -674,7 +659,7 @@ msgstr "" msgid "Change password on {{site_name}}" msgstr "" -#: app/views/user/show.rhtml:104 app/views/user/set_crop_profile_photo.rhtml:1 +#: app/views/user/set_crop_profile_photo.rhtml:1 app/views/user/show.rhtml:104 msgid "Change profile photo" msgstr "" @@ -707,7 +692,7 @@ msgstr "" msgid "Change your password {{site_name}}" msgstr "" -#: app/views/public_body/show.rhtml:16 app/views/public_body/show.rhtml:18 +#: app/views/public_body/show.rhtml:15 app/views/public_body/show.rhtml:17 msgid "Charity registration" msgstr "" @@ -728,7 +713,7 @@ msgstr "" msgid "Clarification required" msgstr "" -#: app/controllers/request_controller.rb:322 +#: app/controllers/request_controller.rb:334 msgid "Classify an FOI response from " msgstr "" @@ -764,12 +749,12 @@ msgstr "" msgid "Confirm you want to be emailed when an FOI request succeeds" msgstr "" -#: app/controllers/request_controller.rb:283 +#: app/controllers/request_controller.rb:295 msgid "Confirm your FOI request to " msgstr "" -#: app/controllers/request_controller.rb:687 -#: app/controllers/user_controller.rb:505 +#: app/controllers/request_controller.rb:696 +#: app/controllers/user_controller.rb:514 msgid "Confirm your account on {{site_name}}" msgstr "" @@ -781,7 +766,7 @@ msgstr "" msgid "Confirm your new email address on WhatDoTheyKnow.com" msgstr "" -#: app/views/layouts/default.rhtml:143 +#: app/views/layouts/default.rhtml:146 msgid "Contact {{site_name}}" msgstr "Kontakt {{site_name}}" @@ -811,19 +796,15 @@ msgstr "" msgid "Deadline Extended" msgstr "" -#: app/models/info_request.rb:773 -msgid "Deadline extended." -msgstr "" - #: app/models/outgoing_message.rb:57 msgid "Dear " msgstr "" -#: app/models/info_request.rb:757 +#: app/models/info_request.rb:780 msgid "Delayed." msgstr "" -#: app/models/info_request.rb:779 app/models/info_request_event.rb:310 +#: app/models/info_request.rb:798 app/models/info_request_event.rb:310 msgid "Delivery error" msgstr "" @@ -835,8 +816,7 @@ msgstr "" msgid "Did you mean: {{correction}}" msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:4 -#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/_followup_footer.rhtml:1 msgid "" "Disclaimer: This message and any reply that you make will be published on " "the internet. Our privacy and copyright policies:" @@ -846,7 +826,7 @@ msgstr "" msgid "Download original attachment" msgstr "" -#: app/views/request/_followup.rhtml:89 +#: app/views/request/_followup.rhtml:88 msgid "" "Edit and add <strong>more details</strong> to the message above,\n" " explaining why you are dissatisfied with their response." @@ -874,7 +854,7 @@ msgstr "" msgid "Email doesn't look like a valid address" msgstr "" -#: app/views/comment/_comment_form.rhtml:9 +#: app/views/comment/_comment_form.rhtml:8 msgid "Email me future updates to this request" msgstr "" @@ -886,7 +866,7 @@ msgstr "" msgid "Email subscriptions" msgstr "" -#: app/views/general/search.rhtml:111 +#: app/views/general/search.rhtml:123 msgid "" "Enter words that you want to find separated by spaces, e.g. <strong>climbing" " lane</strong>" @@ -898,11 +878,11 @@ msgid "" "<a href=\"%s\">contact us</a> if you need more)." msgstr "" -#: app/views/public_body/show.rhtml:98 +#: app/views/public_body/show.rhtml:96 msgid "Environmental Information Regulations requests made" msgstr "" -#: app/views/public_body/show.rhtml:70 +#: app/views/public_body/show.rhtml:69 msgid "Environmental Information Regulations requests made using this site" msgstr "" @@ -914,14 +894,14 @@ msgstr "" msgid "Event history details" msgstr "" -#: app/views/request/new.rhtml:128 +#: app/views/request/new.rhtml:124 msgid "" "Everything that you enter on this page \n" " will be <strong>displayed publicly</strong> on\n" " this website forever (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request/new.rhtml:120 +#: app/views/request/new.rhtml:116 msgid "" "Everything that you enter on this page, including <strong>your name</strong>, \n" " will be <strong>displayed publicly</strong> on\n" @@ -952,12 +932,6 @@ msgstr "" msgid "FOI requests" msgstr "" -#: app/views/general/search.rhtml:90 -msgid "" -"FOI requests {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/models/profile_photo.rb:101 msgid "Failed to convert image to a PNG" msgstr "" @@ -979,7 +953,7 @@ msgid "" " (<a href=\"%s\">why?</a>)." msgstr "" -#: app/views/request_mailer/old_unclassified_updated.rhtml:8 +#: app/views/request_mailer/old_unclassified_updated.rhtml:4 msgid "Follow this link to see the request:" msgstr "" @@ -997,7 +971,7 @@ msgid "" " <a href=\"%s\">contact us</a> if you are {{user_link}} and need to send a follow up." msgstr "" -#: app/views/public_body/show.rhtml:62 +#: app/views/public_body/show.rhtml:61 msgid "" "For an unknown reason, it is not possible to make a request to this " "authority." @@ -1007,7 +981,7 @@ msgstr "" msgid "Forgotten your password?" msgstr "" -#: app/views/public_body/show.rhtml:57 +#: app/views/public_body/show.rhtml:56 msgid "" "Freedom of Information law does not apply to this authority, so you cannot make\n" " a request to it." @@ -1027,7 +1001,7 @@ msgstr "" msgid "Freedom of Information request" msgstr "" -#: app/views/public_body/show.rhtml:100 +#: app/views/public_body/show.rhtml:98 msgid "Freedom of Information requests made" msgstr "" @@ -1035,7 +1009,7 @@ msgstr "" msgid "Freedom of Information requests made by" msgstr "" -#: app/views/public_body/show.rhtml:74 +#: app/views/public_body/show.rhtml:72 msgid "Freedom of Information requests made using this site" msgstr "" @@ -1058,19 +1032,19 @@ msgstr "" msgid "Handled by post" msgstr "" -#: app/models/info_request.rb:771 +#: app/models/info_request.rb:794 msgid "Handled by post." msgstr "" -#: app/views/layouts/default.rhtml:119 +#: app/views/layouts/default.rhtml:121 msgid "Hello!" msgstr "" -#: app/views/layouts/default.rhtml:116 +#: app/views/layouts/default.rhtml:118 msgid "Hello, {{username}}!" msgstr "" -#: app/views/layouts/default.rhtml:111 +#: app/views/layouts/default.rhtml:113 msgid "Help" msgstr "Pomoć" @@ -1112,11 +1086,11 @@ msgstr "" msgid "Human health and safety" msgstr "" -#: app/views/request/_followup.rhtml:72 +#: app/views/request/_followup.rhtml:71 msgid "I am asking for <strong>new information</strong>" msgstr "" -#: app/views/request/_followup.rhtml:77 +#: app/views/request/_followup.rhtml:76 msgid "I am requesting an <strong>internal review</strong>" msgstr "" @@ -1128,7 +1102,7 @@ msgstr "" msgid "I don't want to do any more tidying now!" msgstr "" -#: app/views/request/_describe_state.rhtml:93 +#: app/views/request/_describe_state.rhtml:91 msgid "I would like to <strong>withdraw this request</strong>" msgstr "" @@ -1150,15 +1124,15 @@ msgstr "" msgid "I've been asked to <strong>clarify</strong> my request" msgstr "" -#: app/views/request/_describe_state.rhtml:61 +#: app/views/request/_describe_state.rhtml:60 msgid "I've received <strong>all the information" msgstr "" -#: app/views/request/_describe_state.rhtml:57 +#: app/views/request/_describe_state.rhtml:56 msgid "I've received <strong>some of the information</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:78 +#: app/views/request/_describe_state.rhtml:76 msgid "I've received an <strong>error message</strong>" msgstr "" @@ -1192,13 +1166,13 @@ msgid "" "the request." msgstr "" -#: app/views/request/new.rhtml:123 +#: app/views/request/new.rhtml:119 msgid "" "If you are thinking of using a pseudonym,\n" " please <a href=\"%s\">read this first</a>." msgstr "" -#: app/views/request/show.rhtml:104 +#: app/views/request/show.rhtml:98 msgid "If you are {{user_link}}, please" msgstr "" @@ -1215,11 +1189,10 @@ msgid "" " a copy to upload</strong>." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:13 -#: app/views/outgoing_mailer/followup.rhtml:12 +#: app/views/outgoing_mailer/_followup_footer.rhtml:4 msgid "" -"If you find WhatDoTheyKnow useful as an FOI officer, please ask your web " -"manager to suggest us on your organisation's FOI page." +"If you find this service useful as an FOI officer, please ask your web " +"manager to link to us from your organisation's FOI page." msgstr "" #: app/views/user/bad_token.rhtml:13 @@ -1228,7 +1201,7 @@ msgid "" "more. Please try doing what you were doing from the beginning." msgstr "" -#: app/controllers/request_controller.rb:424 +#: app/controllers/request_controller.rb:430 msgid "" "If you have not done so already, please write a message below telling the " "authority that you have withdrawn your request. Otherwise they will not know" @@ -1334,7 +1307,7 @@ msgstr "" msgid "Information not held" msgstr "" -#: app/models/info_request.rb:761 +#: app/models/info_request.rb:784 msgid "Information not held." msgstr "" @@ -1352,6 +1325,12 @@ msgstr "" msgid "Internal review request" msgstr "" +#: app/views/outgoing_mailer/initial_request.rhtml:8 +msgid "" +"Is {{email_address}} the wrong address for {{type_of_request}} requests tp " +"{{public_body_name}}? If so, please contact us using this form:" +msgstr "" + #: app/views/user/no_cookies.rhtml:8 msgid "" "It may be that your browser is not set to accept a thing called \"cookies\",\n" @@ -1400,11 +1379,11 @@ msgstr "" msgid "Local and regional" msgstr "" -#: app/models/info_request.rb:759 +#: app/models/info_request.rb:782 msgid "Long overdue." msgstr "" -#: app/views/public_body/show.rhtml:48 +#: app/views/public_body/show.rhtml:47 msgid "Make a new Environmental Information request" msgstr "" @@ -1412,11 +1391,11 @@ msgstr "" msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" -#: app/views/layouts/default.rhtml:17 +#: app/views/layouts/default.rhtml:15 msgid "Make and browse Freedom of Information (FOI) requests" msgstr "" -#: app/views/layouts/default.rhtml:88 +#: app/views/layouts/default.rhtml:86 msgid "Make and explore Freedom of Information requests" msgstr "" @@ -1424,7 +1403,7 @@ msgstr "" msgid "Make or explore Freedom of Information requests" msgstr "" -#: app/views/layouts/default.rhtml:104 +#: app/views/layouts/default.rhtml:106 msgid "Make request" msgstr "Napravi zahtev" @@ -1444,19 +1423,19 @@ msgstr "" msgid "More about this authority" msgstr "" -#: app/views/general/frontpage.rhtml:39 +#: app/views/general/frontpage.rhtml:41 msgid "More authorities..." msgstr "" -#: app/views/general/frontpage.rhtml:53 +#: app/views/general/frontpage.rhtml:55 msgid "More successful requests..." msgstr "" -#: app/views/request/_describe_state.rhtml:65 +#: app/views/request/_describe_state.rhtml:64 msgid "My request has been <strong>refused</strong>" msgstr "" -#: app/views/layouts/default.rhtml:108 +#: app/views/layouts/default.rhtml:110 msgid "My requests" msgstr "Moji zahtevi" @@ -1472,7 +1451,7 @@ msgstr "" msgid "New e-mail:" msgstr "" -#: app/models/change_email_validator.rb:48 +#: app/models/change_email_validator.rb:53 msgid "New email doesn't look like a valid address" msgstr "" @@ -1516,7 +1495,7 @@ msgstr "" msgid "No similar requests found." msgstr "" -#: app/views/public_body/show.rhtml:75 +#: app/views/public_body/show.rhtml:73 msgid "" "Nobody has made any Freedom of Information requests to {{public_body_name}} " "using this site yet." @@ -1527,10 +1506,6 @@ msgstr "" msgid "None found." msgstr "" -#: app/views/general/search.rhtml:7 -msgid "Nothing found for '{{search_terms}}'" -msgstr "" - #: app/views/user/signchangepassword_confirm.rhtml:1 #: app/views/user/signchangepassword_confirm.rhtml:3 #: app/views/user/signchangeemail_confirm.rhtml:3 @@ -1563,27 +1538,22 @@ msgid "" "{{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:395 +#: app/controllers/request_controller.rb:407 msgid "" "Oh no! Sorry to hear that your request was refused. Here is what to do now." msgstr "" -#: app/controllers/request_controller.rb:412 -msgid "" -"Oh no! Sorry to hear that your request was wrong. Here is what to do now." -msgstr "" - #: app/views/user/signchangeemail.rhtml:15 msgid "Old e-mail:" msgstr "" -#: app/models/change_email_validator.rb:39 +#: app/models/change_email_validator.rb:44 msgid "" "Old email address isn't the same as the address of the account you are " "logged in with" msgstr "" -#: app/models/change_email_validator.rb:34 +#: app/models/change_email_validator.rb:39 msgid "Old email doesn't look like a valid address" msgstr "" @@ -1591,7 +1561,11 @@ msgstr "" msgid "On this page" msgstr "" -#: app/views/public_body/show.rhtml:93 +#: app/views/general/search.rhtml:71 +msgid "One public authority matching ‘{{user_search_query}}’" +msgstr "" + +#: app/views/public_body/show.rhtml:91 msgid "Only requests made using {{site_name}} are shown." msgstr "" @@ -1615,11 +1589,11 @@ msgstr "" msgid "OutgoingMessage|What doing" msgstr "" -#: app/models/info_request.rb:765 +#: app/models/info_request.rb:788 msgid "Partially successful." msgstr "" -#: app/models/change_email_validator.rb:42 +#: app/models/change_email_validator.rb:47 msgid "Password is not correct" msgstr "" @@ -1631,12 +1605,6 @@ msgstr "" msgid "Password: (again)" msgstr "" -#: app/views/general/search.rhtml:80 -msgid "" -"People {{start_count}} to {{end_count}} of {{total_count}} for " -"{{user_search_query}}" -msgstr "" - #: app/views/user/set_draft_profile_photo.rhtml:13 msgid "Photo of you:" msgstr "" @@ -1653,7 +1621,7 @@ msgstr "" msgid "Play the request categorisation game!" msgstr "" -#: app/views/request/show.rhtml:100 +#: app/views/request/show.rhtml:94 msgid "Please" msgstr "" @@ -1697,7 +1665,7 @@ msgstr "" msgid "Please choose what sort of reply you are making." msgstr "" -#: app/controllers/request_controller.rb:329 +#: app/controllers/request_controller.rb:341 msgid "" "Please choose whether or not you got some of the information that you " "wanted." @@ -1714,7 +1682,7 @@ msgstr "" msgid "Please click on the link below to confirm your email address." msgstr "" -#: app/models/info_request.rb:106 +#: app/models/info_request.rb:127 msgid "" "Please describe more what the request is about in the subject. There is no " "need to say it is an FOI request, we add that on anyway." @@ -1778,15 +1746,15 @@ msgstr "Molimo Vas da unesete svoje ime" msgid "Please enter your name, not your email address, in the name field." msgstr "" -#: app/models/change_email_validator.rb:29 +#: app/models/change_email_validator.rb:30 msgid "Please enter your new email address" msgstr "" -#: app/models/change_email_validator.rb:28 +#: app/models/change_email_validator.rb:29 msgid "Please enter your old email address" msgstr "" -#: app/models/change_email_validator.rb:30 +#: app/models/change_email_validator.rb:31 msgid "Please enter your password" msgstr "Molimo Vas da unesete vaš pasvord" @@ -1798,7 +1766,7 @@ msgstr "" msgid "Please keep it shorter than 500 characters" msgstr "" -#: app/models/info_request.rb:103 +#: app/models/info_request.rb:124 msgid "" "Please keep the summary short, like in the subject of an email. You can use " "a phrase, rather than a full sentence." @@ -1826,16 +1794,16 @@ msgstr "" msgid "Please sign in as " msgstr "" -#: app/controllers/request_controller.rb:714 +#: app/controllers/request_controller.rb:723 msgid "Please type a message and/or choose a file containing your response." msgstr "" -#: app/controllers/request_controller.rb:421 +#: app/controllers/request_controller.rb:427 msgid "Please use the form below to tell us more." msgstr "" -#: app/views/outgoing_mailer/initial_request.rhtml:7 -#: app/views/outgoing_mailer/followup.rhtml:9 +#: app/views/outgoing_mailer/followup.rhtml:6 +#: app/views/outgoing_mailer/initial_request.rhtml:5 msgid "Please use this email address for all replies to this request:" msgstr "" @@ -1843,7 +1811,7 @@ msgstr "" msgid "Please write a summary with some text in it" msgstr "" -#: app/models/info_request.rb:100 +#: app/models/info_request.rb:121 msgid "" "Please write the summary using a mixture of capital and lower case letters. " "This makes it easier for others to read." @@ -1855,7 +1823,7 @@ msgid "" "letters. This makes it easier for others to read." msgstr "" -#: app/controllers/request_controller.rb:404 +#: app/controllers/request_controller.rb:416 msgid "" "Please write your follow up message containing the necessary clarifications " "below." @@ -1901,6 +1869,10 @@ msgstr "" msgid "PostRedirect|Uri" msgstr "" +#: app/views/general/_credits.rhtml:1 +msgid "Powered by <a href=\"http://www.alaveteli.org/\">Alaveteli</a>." +msgstr "" + #: app/views/request/followup_preview.rhtml:1 msgid "Preview follow up to '" msgstr "" @@ -1909,15 +1881,15 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" -#: app/views/comment/_comment_form.rhtml:16 +#: app/views/comment/_comment_form.rhtml:15 msgid "Preview your annotation" msgstr "" -#: app/views/request/_followup.rhtml:100 +#: app/views/request/_followup.rhtml:99 msgid "Preview your message" msgstr "" -#: app/views/request/new.rhtml:143 +#: app/views/request/new.rhtml:139 msgid "Preview your public request" msgstr "" @@ -1933,7 +1905,7 @@ msgstr "" msgid "Public authorities - {{description}}" msgstr "" -#: app/views/general/search.rhtml:70 +#: app/views/general/search.rhtml:73 msgid "" "Public authorities {{start_count}} to {{end_count}} of {{total_count}} for " "{{user_search_query}}" @@ -2007,13 +1979,13 @@ msgstr "" msgid "Re-edit this request" msgstr "" -#: app/views/general/search.rhtml:125 +#: app/views/general/search.rhtml:137 msgid "" "Read about <a href=\"%s\">advanced search operators</a>, such as proximity " "and wildcards." msgstr "" -#: app/views/layouts/default.rhtml:110 +#: app/views/layouts/default.rhtml:112 msgid "Read blog" msgstr "" @@ -2025,7 +1997,7 @@ msgstr "" msgid "Recently described results first" msgstr "" -#: app/controllers/request_controller.rb:122 +#: app/controllers/request_controller.rb:134 msgid "Recently sent Freedom of Information requests" msgstr "" @@ -2033,7 +2005,7 @@ msgstr "" msgid "Recently sent requests" msgstr "" -#: app/controllers/request_controller.rb:127 +#: app/controllers/request_controller.rb:139 msgid "Recently successful responses" msgstr "" @@ -2041,7 +2013,7 @@ msgstr "" msgid "Refused" msgstr "" -#: app/models/info_request.rb:763 +#: app/models/info_request.rb:786 msgid "Refused." msgstr "" @@ -2131,7 +2103,7 @@ msgstr "" msgid "Save" msgstr "" -#: app/views/layouts/default.rhtml:98 app/views/request/new.rhtml:31 +#: app/views/request/new.rhtml:31 app/views/layouts/default.rhtml:99 #: app/views/general/exception_caught.rhtml:10 #: app/views/general/frontpage.rhtml:16 app/views/general/search.rhtml:29 msgid "Search" @@ -2145,7 +2117,7 @@ msgstr "" msgid "Search the site to find what you were looking for." msgstr "" -#: app/controllers/user_controller.rb:321 +#: app/controllers/user_controller.rb:330 msgid "Send a message to " msgstr "" @@ -2197,11 +2169,11 @@ msgstr "" msgid "Sign in or make a new account" msgstr "" -#: app/views/layouts/default.rhtml:120 +#: app/views/layouts/default.rhtml:122 msgid "Sign in or sign up" msgstr "" -#: app/views/layouts/default.rhtml:117 +#: app/views/layouts/default.rhtml:119 msgid "Sign out" msgstr "" @@ -2252,7 +2224,7 @@ msgstr "" msgid "Submit" msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "Submit status" msgstr "" @@ -2264,7 +2236,7 @@ msgstr "" msgid "Successful responses" msgstr "" -#: app/models/info_request.rb:767 +#: app/models/info_request.rb:790 msgid "Successful." msgstr "" @@ -2278,7 +2250,7 @@ msgstr "" msgid "Summary:" msgstr "" -#: app/views/general/search.rhtml:128 +#: app/views/general/search.rhtml:140 msgid "Table of statuses" msgstr "" @@ -2294,25 +2266,25 @@ msgstr "" msgid "Thank you for making an annotation!" msgstr "" -#: app/controllers/request_controller.rb:720 +#: app/controllers/request_controller.rb:729 msgid "" "Thank you for responding to this FOI request! Your response has been " "published below, and a link to your response has been emailed to " msgstr "" -#: app/controllers/request_controller.rb:361 +#: app/controllers/request_controller.rb:373 msgid "" "Thank you for updating the status of the request '<a " "href=\"%s\">{{info_request_title}}</a>'. There are some more requests below " "for you to classify." msgstr "" -#: app/controllers/request_controller.rb:364 +#: app/controllers/request_controller.rb:376 msgid "Thank you for updating this request!" msgstr "" -#: app/controllers/user_controller.rb:388 -#: app/controllers/user_controller.rb:404 +#: app/controllers/user_controller.rb:397 +#: app/controllers/user_controller.rb:413 msgid "Thank you for updating your profile photo" msgstr "" @@ -2342,8 +2314,8 @@ msgid "" " correctly." msgstr "" -#: app/views/request/_other_describe_state.rhtml:40 -#: app/views/request/_describe_state.rhtml:48 +#: app/views/request/_describe_state.rhtml:47 +#: app/views/request/_other_describe_state.rhtml:43 msgid "The <strong>review has finished</strong> and overall:" msgstr "" @@ -2355,7 +2327,7 @@ msgstr "" msgid "The accounts have been left as they previously were." msgstr "" -#: app/views/request/_other_describe_state.rhtml:45 +#: app/views/request/_other_describe_state.rhtml:48 msgid "" "The authority do <strong>not have</strong> the information <small>(maybe " "they say who does)" @@ -2372,7 +2344,7 @@ msgid "" " address</strong>, not just an email, for it to be a valid FOI request" msgstr "" -#: app/views/request/show.rhtml:108 +#: app/views/request/show.rhtml:102 msgid "" "The authority would like to / has <strong>responded by post</strong> to this" " request." @@ -2396,21 +2368,21 @@ msgstr "" msgid "The page either doesn't exist, or is broken. Things you can try now:" msgstr "" -#: app/views/request/_other_describe_state.rhtml:57 +#: app/views/request/_other_describe_state.rhtml:60 msgid "The request has been <strong>refused</strong>" msgstr "" -#: app/controllers/request_controller.rb:335 +#: app/controllers/request_controller.rb:347 msgid "" "The request has been updated since you originally loaded this page. Please " "check for any new incoming messages below, and try again." msgstr "" -#: app/views/request/show.rhtml:103 +#: app/views/request/show.rhtml:97 msgid "The request is <strong>waiting for clarification</strong>." msgstr "" -#: app/views/request/show.rhtml:96 +#: app/views/request/show.rhtml:90 msgid "The request was <strong>partially successful</strong>." msgstr "" @@ -2443,7 +2415,7 @@ msgid "" " by now" msgstr "" -#: app/views/public_body/show.rhtml:102 +#: app/views/public_body/show.rhtml:100 msgid "" "The search index is currently offline, so we can't show the Freedom of " "Information requests that have been made to this authority." @@ -2471,7 +2443,7 @@ msgstr "" msgid "Then you can change your password on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:321 +#: app/controllers/request_controller.rb:333 msgid "Then you can classify the FOI response you have got from " msgstr "" @@ -2479,27 +2451,27 @@ msgstr "" msgid "Then you can play the request categorisation game." msgstr "" -#: app/controllers/user_controller.rb:320 +#: app/controllers/user_controller.rb:329 msgid "Then you can send a message to " msgstr "" -#: app/controllers/user_controller.rb:504 +#: app/controllers/user_controller.rb:513 msgid "Then you can sign in to {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:48 +#: app/controllers/request_controller.rb:59 msgid "Then you can update the status of your request to " msgstr "" -#: app/controllers/request_controller.rb:686 +#: app/controllers/request_controller.rb:695 msgid "Then you can upload an FOI response. " msgstr "" -#: app/controllers/request_controller.rb:528 +#: app/controllers/request_controller.rb:538 msgid "Then you can write follow up message to " msgstr "" -#: app/controllers/request_controller.rb:529 +#: app/controllers/request_controller.rb:539 msgid "Then you can write your reply to " msgstr "" @@ -2507,7 +2479,7 @@ msgstr "" msgid "Then you will be emailed whenever an FOI request succeeds." msgstr "" -#: app/controllers/request_controller.rb:282 +#: app/controllers/request_controller.rb:294 msgid "Then your FOI request to {{public_body_name}} will be sent." msgstr "" @@ -2527,13 +2499,13 @@ msgid "" " One of them is shown below, you may mean a different one:" msgstr "" -#: app/views/request/show.rhtml:112 +#: app/views/request/show.rhtml:106 msgid "" "There was a <strong>delivery error</strong> or similar, which needs fixing " "by the WhatDoTheyKnow team." msgstr "" -#: app/controllers/public_body_controller.rb:70 +#: app/controllers/public_body_controller.rb:76 msgid "There was an error with the words you entered, please try again." msgstr "" @@ -2541,7 +2513,7 @@ msgstr "" msgid "They are going to reply <strong>by post</strong>" msgstr "" -#: app/views/request/_describe_state.rhtml:53 +#: app/views/request/_describe_state.rhtml:52 msgid "" "They do <strong>not have</strong> the information <small>(maybe they say who" " does)</small>" @@ -2567,7 +2539,7 @@ msgstr "" msgid "Things to do with this request" msgstr "" -#: app/views/public_body/show.rhtml:60 +#: app/views/public_body/show.rhtml:59 msgid "This authority no longer exists, so you cannot make a request to it." msgstr "" @@ -2615,7 +2587,7 @@ msgstr "" msgid "This person's" msgstr "" -#: app/views/request/_describe_state.rhtml:86 +#: app/views/request/_describe_state.rhtml:84 msgid "This request <strong>requires administrator attention</strong>" msgstr "" @@ -2623,13 +2595,13 @@ msgstr "" msgid "This request has an <strong>unknown status</strong>." msgstr "" -#: app/views/request/show.rhtml:116 +#: app/views/request/show.rhtml:110 msgid "" "This request has been <strong>withdrawn</strong> by the person who made it. \n" " \t There may be an explanation in the correspondence below." msgstr "" -#: app/views/request/show.rhtml:114 +#: app/views/request/show.rhtml:108 msgid "" "This request has had an unusual response, and <strong>requires " "attention</strong> from the WhatDoTheyKnow team." @@ -2699,7 +2671,7 @@ msgstr "" msgid "To change your email address used on {{site_name}}" msgstr "" -#: app/controllers/request_controller.rb:320 +#: app/controllers/request_controller.rb:332 msgid "To classify the response to this FOI request" msgstr "" @@ -2714,11 +2686,7 @@ msgstr "" #: app/views/request_mailer/old_unclassified_updated.rhtml:1 msgid "" "To help us keep the site tidy, someone else has updated the status of the \n" -"{{law_used_full}} request {{title}} \n" -"that you made to {{public_body}}, to \n" -"{{display_status}} If you disagree with \n" -"their categorisation, please update the status again yourself to what\n" -"you believe to be more accurate." +"{{law_used_full}} request {{title}} that you made to {{public_body}}, to \"{{display_status}}\" If you disagree with their categorisation, please update the status again yourself to what you believe to be more accurate." msgstr "" #: app/views/request_mailer/new_response_reminder_alert.rhtml:1 @@ -2733,27 +2701,27 @@ msgstr "" msgid "To post your annotation" msgstr "" -#: app/controllers/request_controller.rb:526 +#: app/controllers/request_controller.rb:536 msgid "To reply to " msgstr "" -#: app/controllers/request_controller.rb:525 +#: app/controllers/request_controller.rb:535 msgid "To send a follow up message to " msgstr "" -#: app/controllers/user_controller.rb:319 +#: app/controllers/user_controller.rb:328 msgid "To send a message to " msgstr "" -#: app/controllers/request_controller.rb:281 +#: app/controllers/request_controller.rb:293 msgid "To send your FOI request" msgstr "" -#: app/controllers/request_controller.rb:47 +#: app/controllers/request_controller.rb:58 msgid "To update the status of this FOI request" msgstr "" -#: app/controllers/request_controller.rb:685 +#: app/controllers/request_controller.rb:694 msgid "" "To upload a response, you must be logged in using an email address from " msgstr "" @@ -2805,7 +2773,7 @@ msgstr "" msgid "TrackThing|Track type" msgstr "" -#: app/views/general/search.rhtml:121 +#: app/views/general/search.rhtml:133 msgid "" "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show " "things that happened in the first two weeks of January." @@ -2856,7 +2824,7 @@ msgstr "" msgid "Unusual response" msgstr "" -#: app/models/info_request.rb:781 +#: app/models/info_request.rb:800 msgid "Unusual response." msgstr "" @@ -2865,17 +2833,17 @@ msgstr "" msgid "Update the status of this request" msgstr "" -#: app/controllers/request_controller.rb:49 +#: app/controllers/request_controller.rb:60 msgid "Update the status of your request to " msgstr "" -#: app/views/general/search.rhtml:112 +#: app/views/general/search.rhtml:124 msgid "" "Use OR (in capital letters) where you don't mind which word, e.g. " "<strong><code>commons OR lords</code></strong>" msgstr "" -#: app/views/general/search.rhtml:113 +#: app/views/general/search.rhtml:125 msgid "" "Use quotes when you want to find an exact phrase, e.g. " "<strong><code>\"Liverpool City Council\"</code></strong>" @@ -2925,7 +2893,7 @@ msgstr "" msgid "User|Url name" msgstr "" -#: app/views/public_body/show.rhtml:22 +#: app/views/public_body/show.rhtml:21 msgid "View FOI email address" msgstr "" @@ -2941,7 +2909,7 @@ msgstr "" msgid "View Freedom of Information requests made by" msgstr "" -#: app/views/layouts/default.rhtml:106 +#: app/views/layouts/default.rhtml:108 msgid "View authorities" msgstr "" @@ -2949,15 +2917,15 @@ msgstr "" msgid "View email" msgstr "" -#: app/views/layouts/default.rhtml:105 +#: app/views/layouts/default.rhtml:107 msgid "View requests" msgstr "" -#: app/models/info_request.rb:769 +#: app/models/info_request.rb:792 msgid "Waiting clarification." msgstr "" -#: app/views/request/show.rhtml:110 +#: app/views/request/show.rhtml:104 msgid "" "Waiting for an <strong>internal review</strong> by {{public_body_link}} of " "their handling of this request." @@ -2972,7 +2940,7 @@ msgid "" "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" -#: app/views/request/_describe_state.rhtml:109 +#: app/views/request/_describe_state.rhtml:107 msgid "" "We don't know whether the most recent response to this request contains\n" " information or not\n" @@ -3018,7 +2986,7 @@ msgid "" "password." msgstr "" -#: app/views/request/_followup.rhtml:62 +#: app/views/request/_followup.rhtml:61 msgid "What are you doing?" msgstr "" @@ -3058,15 +3026,15 @@ msgstr "" msgid "Withdrawn by requester" msgstr "" -#: app/models/info_request.rb:783 +#: app/models/info_request.rb:802 msgid "Withdrawn by the requester." msgstr "" -#: app/controllers/request_controller.rb:532 +#: app/controllers/request_controller.rb:542 msgid "Write a reply to " msgstr "" -#: app/controllers/request_controller.rb:531 +#: app/controllers/request_controller.rb:541 msgid "Write your FOI follow up message to " msgstr "" @@ -3078,15 +3046,6 @@ msgstr "" msgid "Wrong Response" msgstr "" -#: app/models/info_request.rb:775 -msgid "Wrong Response." -msgstr "" - -#: app/views/public_body/show.rhtml:71 -msgid "" -"XXX this section needs localising re EIR as these are specific to UK law" -msgstr "" - #: app/views/comment/_single_comment.rhtml:10 msgid "You" msgstr "" @@ -3109,7 +3068,7 @@ msgid "" "page for the request. See the <a href=\"%s\">API documentation</a>." msgstr "" -#: app/views/public_body/show.rhtml:41 +#: app/views/public_body/show.rhtml:40 msgid "" "You can only request information about the environment from this authority." msgstr "" @@ -3122,11 +3081,11 @@ msgstr "" msgid "You have a new response to the {{law_used_full}} request " msgstr "" -#: app/controllers/user_controller.rb:482 +#: app/controllers/user_controller.rb:491 msgid "You have now changed the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:300 +#: app/controllers/user_controller.rb:309 msgid "You have now changed your email address used on {{site_name}}" msgstr "" @@ -3165,19 +3124,19 @@ msgid "" "to find one, then please <a href=\"%s\">send it to us</a>." msgstr "" -#: app/controllers/user_controller.rb:460 +#: app/controllers/user_controller.rb:469 msgid "You need to be logged in to change the text about you on your profile." msgstr "" -#: app/controllers/user_controller.rb:361 +#: app/controllers/user_controller.rb:370 msgid "You need to be logged in to change your profile photo." msgstr "" -#: app/controllers/user_controller.rb:423 +#: app/controllers/user_controller.rb:432 msgid "You need to be logged in to clear your profile photo." msgstr "" -#: app/controllers/request_controller.rb:542 +#: app/controllers/request_controller.rb:552 msgid "" "You previously submitted that exact follow up message for this request." msgstr "" @@ -3220,7 +3179,7 @@ msgid "" "with the clarification." msgstr "" -#: app/controllers/user_controller.rb:432 +#: app/controllers/user_controller.rb:441 msgid "You've now cleared your profile photo" msgstr "" @@ -3243,8 +3202,9 @@ msgid "" "message, which will then go directly to the person who wrote the message." msgstr "" -#: app/views/user/_signin.rhtml:11 app/views/user/_signup.rhtml:9 +#: app/views/user/_signin.rhtml:11 #: app/views/user/signchangepassword_send_confirm.rhtml:13 +#: app/views/user/_signup.rhtml:9 msgid "Your e-mail:" msgstr "" @@ -3252,18 +3212,18 @@ msgstr "" msgid "Your email subscriptions" msgstr "" -#: app/controllers/request_controller.rb:539 +#: app/controllers/request_controller.rb:549 msgid "" "Your follow up has not been sent because this request has been stopped to " "prevent spam. Please <a href=\"%s\">contact us</a> if you really want to " "send a follow up message." msgstr "" -#: app/controllers/request_controller.rb:567 +#: app/controllers/request_controller.rb:577 msgid "Your follow up message has been sent on its way." msgstr "" -#: app/controllers/request_controller.rb:565 +#: app/controllers/request_controller.rb:575 msgid "Your internal review request has been sent on its way." msgstr "" @@ -3273,7 +3233,7 @@ msgid "" "to you soon." msgstr "" -#: app/controllers/user_controller.rb:339 +#: app/controllers/user_controller.rb:348 msgid "Your message to {{recipient_user_name}} has been sent!" msgstr "" @@ -3350,11 +3310,11 @@ msgid "" "\t\t\te.g." msgstr "" -#: app/views/public_body/show.rhtml:32 +#: app/views/public_body/show.rhtml:31 msgid "admin" msgstr "admin" -#: app/views/public_body/show.rhtml:30 +#: app/views/public_body/show.rhtml:29 msgid "also called {{public_body_short_name}}" msgstr "" @@ -3372,7 +3332,7 @@ msgstr "" msgid "and update the status." msgstr "" -#: app/views/request/_describe_state.rhtml:103 +#: app/views/request/_describe_state.rhtml:101 msgid "and we'll suggest <strong>what to do next</strong>" msgstr "" @@ -3388,7 +3348,7 @@ msgstr "" msgid "are long overdue." msgstr "" -#: app/controllers/public_body_controller.rb:110 +#: app/controllers/public_body_controller.rb:109 msgid "beginning with" msgstr "" @@ -3487,12 +3447,12 @@ msgstr "" msgid "info request event" msgstr "" -#: app/views/user/signchangeemail.rhtml:3 #: app/views/user/set_profile_about_me.rhtml:3 +#: app/views/user/signchangeemail.rhtml:3 msgid "internal error" msgstr "" -#: app/views/request/show.rhtml:99 +#: app/views/request/show.rhtml:93 msgid "is <strong>waiting for your clarification</strong>." msgstr "" @@ -3571,7 +3531,7 @@ msgid "" "email to let them know what you are going to do about it." msgstr "" -#: app/views/request/show.rhtml:101 +#: app/views/request/show.rhtml:95 msgid "send a follow up message" msgstr "" @@ -3579,7 +3539,7 @@ msgstr "" msgid "sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "sign in" msgstr "" @@ -3591,19 +3551,19 @@ msgstr "" msgid "that you made to" msgstr "" -#: app/views/user_mailer/changeemail_already_used.rhtml:9 -#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/user_mailer/already_registered.rhtml:11 #: app/views/user_mailer/confirm_login.rhtml:11 -#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 -#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 -#: app/views/request_mailer/not_clarified_alert.rhtml:9 -#: app/views/request_mailer/old_unclassified_updated.rhtml:12 -#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/user_mailer/changeemail_already_used.rhtml:9 +#: app/views/user_mailer/changeemail_confirm.rhtml:12 #: app/views/request_mailer/stopped_responses.rhtml:16 -#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/not_clarified_alert.rhtml:9 #: app/views/request_mailer/comment_on_alert.rhtml:6 +#: app/views/request_mailer/old_unclassified_updated.rhtml:8 #: app/views/request_mailer/very_overdue_alert.rhtml:11 +#: app/views/request_mailer/overdue_alert.rhtml:9 +#: app/views/request_mailer/new_response_reminder_alert.rhtml:8 +#: app/views/request_mailer/new_response.rhtml:15 +#: app/views/request_mailer/comment_on_alert_plural.rhtml:5 msgid "the WhatDoTheyKnow team" msgstr "" @@ -3633,7 +3593,7 @@ msgstr "" msgid "to read" msgstr "" -#: app/views/request/show.rhtml:105 +#: app/views/request/show.rhtml:99 msgid "to send a follow up message." msgstr "" @@ -3657,7 +3617,7 @@ msgstr "" msgid "unknown reason " msgstr "" -#: app/models/info_request.rb:785 app/models/info_request_event.rb:328 +#: app/models/info_request.rb:807 app/models/info_request_event.rb:328 msgid "unknown status " msgstr "" @@ -3696,7 +3656,7 @@ msgstr "" msgid "{{info_request_user_name}} only:" msgstr "" -#: app/views/general/frontpage.rhtml:49 +#: app/views/general/frontpage.rhtml:51 msgid "{{length_of_time}} ago" msgstr "{{length_of_time}} pre" @@ -3715,6 +3675,3 @@ msgid "{{user}} made this {{law_used_full}} request" msgstr "" - - - diff --git a/public/asktheeu-theme b/public/asktheeu-theme new file mode 120000 index 000000000..108ef0abe --- /dev/null +++ b/public/asktheeu-theme @@ -0,0 +1 @@ +/Users/David/src/asktheeu/asktheeu/vendor/plugins/asktheeu-theme/public
\ No newline at end of file diff --git a/public/javascripts/ba-throttle-debounce.js b/public/javascripts/ba-throttle-debounce.js new file mode 100644 index 000000000..07205508e --- /dev/null +++ b/public/javascripts/ba-throttle-debounce.js @@ -0,0 +1,9 @@ +/* + * jQuery throttle / debounce - v1.1 - 3/7/2010 + * http://benalman.com/projects/jquery-throttle-debounce-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this);
\ No newline at end of file diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 8dfecd586..0c669e8ef 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -930,16 +930,39 @@ a img.attachment_image { /*------------------------------------------------ making a request / sign up / sign in */ #request_advice -{} +{ + float: right; + width: 250px; + margin-top: 1em; +} + #request_advice ul { - width: 26em; margin: 0 auto 0 auto; } #request_advice ul li { margin: 0 0 1em 0; } +#request_header +{ + background-color: #FFFFE0; + padding-top: 0.5em; + padding-bottom: 1em; +} + +#request_header_text +{ + font-size: 0.8em; + margin-left: 11em; +} + +#request_search_ahead_results +{ + font-size: 0.8em; + margin-left: 11em; +} + #request_form -{ margin-top: 4em;} +{ margin-top: 1em;} #request_form label, label.form_label @@ -952,10 +975,6 @@ label.form_label padding: 0 10px 0 0; margin: 0 0 0 0; } - #request_form h1 label - { - font-size: 0.55em; - } .form_item_note, .form_note { diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index 69c1433f2..ffb9861f7 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -1286,5 +1286,36 @@ describe RequestController, "when showing JSON version for API" do end +describe RequestController, "when doing type ahead searches" do + fixtures :info_requests, :info_request_events, :public_bodies, :public_body_translations, :users, :incoming_messages, :raw_emails, :outgoing_messages, :comments + + it "should return nothing for the empty query string" do + get :search_typeahead, :q => "" + response.should render_template('request/_search_ahead.rhtml') + assigns[:xapian_requests].results.size.should == 0 + end + + it "should return a request matching the given keyword, but not users with a matching description" do + get :search_typeahead, :q => "chicken" + response.should render_template('request/_search_ahead.rhtml') + assigns[:xapian_requests].results.size.should == 1 + assigns[:xapian_requests].results[0][:model].title.should == info_requests(:naughty_chicken_request).title + end + + it "should return all requests matching any of the given keywords" do + get :search_typeahead, :q => "money dog" + response.should render_template('request/_search_ahead.rhtml') + assigns[:xapian_requests].results.size.should == 2 + assigns[:xapian_requests].results[0][:model].title.should == info_requests(:fancy_dog_request).title + assigns[:xapian_requests].results[1][:model].title.should == info_requests(:naughty_chicken_request).title + end + + it "should return partial matches" do + get :search_typeahead, :q => "chick" # 'chick' for 'chicken' + response.should render_template('request/_search_ahead.rhtml') + assigns[:xapian_requests].results.size.should == 1 + assigns[:xapian_requests].results[0][:model].title.should == info_requests(:naughty_chicken_request).title + end +end |