diff options
172 files changed, 15107 insertions, 1310 deletions
diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index 1e38e022c..000000000 --- a/.cvsignore +++ /dev/null @@ -1,5 +0,0 @@ -tmp -log -coverage -sqlitedbs -cache diff --git a/Gemfile.lock b/Gemfile.lock index a1c26620a..c3f994a51 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -266,7 +266,7 @@ GEM nokogiri (>= 1.2.0) rack (>= 1.0) rack-test (>= 0.5.3) - will_paginate (3.0.4) + will_paginate (3.0.5) xapian-full-alaveteli (1.2.9.5) xml-simple (1.1.2) zip (2.0.2) diff --git a/app/assets/javascripts/new-request.js b/app/assets/javascripts/new-request.js new file mode 100644 index 000000000..f8f2a0665 --- /dev/null +++ b/app/assets/javascripts/new-request.js @@ -0,0 +1,14 @@ +$(document).ready(function() { + $('.batch_public_body_list').hide(); + var showtext = $('.batch_public_body_toggle').attr('data-showtext'); + var hidetext = $('.batch_public_body_toggle').attr('data-hidetext'); + $('.toggle-message').text(showtext); + $('.batch_public_body_toggle').click(function(){ + $('.batch_public_body_list').toggle(); + if ($('.toggle-message').text() == showtext){ + $('.toggle-message').text(hidetext); + }else{ + $('.toggle-message').text(showtext); + } + }) +}) diff --git a/app/assets/javascripts/select-authorities.js b/app/assets/javascripts/select-authorities.js new file mode 100644 index 000000000..843f5c0ad --- /dev/null +++ b/app/assets/javascripts/select-authorities.js @@ -0,0 +1,67 @@ +$(document).ready(function() { + + function add_option(selector, value, text) { + var optionExists = ($(selector + ' option[value=' + value + ']').length > 0); + if(!optionExists){ + $(selector).append("<option value=" + value + ">" + text + "</option>"); + } + } + // Transfer a set of select options defined by 'from_selector' to another select, + // defined by 'to_selector' + function transfer_options(from_selector, to_selector){ + $(from_selector).each(function() + { + add_option(to_selector, $(this).val(), $(this).text()); + $(this).remove(); + }) + $('#public_body_query').val(''); + return false; + } + + // Submit the search form once the text reaches a certain length + $("#public_body_query").keypress($.debounce( 300, function() { + if ($('#public_body_query').val().length >= 3) { + $('#body_search_form').submit(); + } + })); + + // Populate the candidate list with json search results + $('#body_search_form').on('ajax:success', function(event, data, status, xhr) { + $('#select_body_candidates').empty(); + $.each(data, function(key, value) + { + add_option('#select_body_candidates', value['id'], value['name']); + }); + }); + + // Add a hidden element to the submit form for every option in the selected list + $('#body_submit_button').click(function(){ + $('#select_body_selections option').each(function() + { + $('#body_submit_form').append('<input type="hidden" value="' + $(this).val() + '" name="public_body_ids[]">' ); + }) + }) + + // Transfer selected candidates to selected list + $('#body_select_button').click(function(){ + return transfer_options('#select_body_candidates option:selected', '#select_body_selections'); + }) + + // Transfer selected selected options back to candidate list + $('#body_deselect_button').click(function(){ + return transfer_options('#select_body_selections option:selected', '#select_body_candidates'); + }) + + // Transfer all candidates to selected list + $('#body_select_all_button').click(function(){ + return transfer_options('#select_body_candidates option', '#select_body_selections'); + }) + + // Transfer all selected back to candidate list + $('#body_deselect_all_button').click(function(){ + return transfer_options('#select_body_selections option', '#select_body_candidates'); + }) + + // Show the buttons for selecting and deselecting all + $('.select_all_button').show(); +}) diff --git a/app/assets/stylesheets/main.scss b/app/assets/stylesheets/main.scss index 6405d1dc3..3118eab3d 100644 --- a/app/assets/stylesheets/main.scss +++ b/app/assets/stylesheets/main.scss @@ -1722,7 +1722,7 @@ padding-right:50px; margin-bottom:10px; } -div.ff-icon-printfix,.comment_in_request_text img.comment_quote,body.front #other-country-notice,#other-country-notice,#authority_preview .public-body-name-prefix,#authority_preview #list-filter,#authority_preview h2.foi_results,div#show_response_view p.event_actions { +div.ff-icon-printfix,.comment_in_request_text img.comment_quote,body.front #other-country-notice,#other-country-notice,#authority_preview .public-body-name-prefix,#authority_preview #list-filter,#authority_preview h2.foi_results,div#show_response_view p.event_actions, div.batch_public_body_toggle { display:none; } @@ -1777,3 +1777,48 @@ text-decoration:none; the axes black rather than transparent grey for the moment: */ color: #000 !important; } + + +#body_selection .body_list { + width: 45%; +} + +#body_selection .body_list input[type='submit'] { + margin: 10px 0; + width: 45%; +} + +#body_selection .body_list #body_select_all_button, +#body_selection .body_list #body_deselect_button{ + float: right; +} + +#body_selection #body_candidates { + float: left; +} + +#body_selection #body_selections { + float: right; +} + +#body_selection #body_submission input[type='submit'] { + margin: 10px 0; + width:100%; +} + +#body_selection .select_all_button { + display: none; +} + +#body_selection .body_select { + width: 100%; +} + +.batch_public_body_list { + margin-left: 110px; +} + +.batch_public_body_toggle { + color: #0000EE; + font-size: 0.9em; +} diff --git a/app/controllers/admin_general_controller.rb b/app/controllers/admin_general_controller.rb index 196616ed6..753208c9a 100644 --- a/app/controllers/admin_general_controller.rb +++ b/app/controllers/admin_general_controller.rb @@ -27,13 +27,16 @@ class AdminGeneralController < AdminController @comment_count = Comment.count # Tasks to do - @requires_admin_requests = InfoRequest.find(:all, :select => '*, ' + InfoRequest.last_event_time_clause + ' as last_event_time', :conditions => ["described_state = 'requires_admin'"], :order => "last_event_time") - @error_message_requests = InfoRequest.find(:all, :select => '*, ' + InfoRequest.last_event_time_clause + ' as last_event_time', :conditions => ["described_state = 'error_message'"], :order => "last_event_time") - @attention_requests = InfoRequest.find(:all, :select => '*, ' + InfoRequest.last_event_time_clause + ' as last_event_time', :conditions => ["described_state = 'attention_requested'"], :order => "last_event_time") - @blank_contacts = PublicBody.find(:all, :conditions => ["request_email = ''"], :order => "updated_at") + @requires_admin_requests = InfoRequest.find_in_state('requires_admin') + @error_message_requests = InfoRequest.find_in_state('error_message') + @attention_requests = InfoRequest.find_in_state('attention_requested') + @blank_contacts = PublicBody.find(:all, :conditions => ["request_email = ''"], + :order => "updated_at") @old_unclassified = InfoRequest.find_old_unclassified(:limit => 20, - :conditions => ["prominence = 'normal'"]) + :conditions => ["prominence = 'normal'"]) @holding_pen_messages = InfoRequest.holding_pen_request.incoming_messages + @new_body_requests = PublicBodyChangeRequest.new_body_requests.open + @body_update_requests = PublicBodyChangeRequest.body_update_requests.open end def timeline diff --git a/app/controllers/admin_public_body_change_requests_controller.rb b/app/controllers/admin_public_body_change_requests_controller.rb new file mode 100644 index 000000000..d76cdc0e5 --- /dev/null +++ b/app/controllers/admin_public_body_change_requests_controller.rb @@ -0,0 +1,15 @@ +class AdminPublicBodyChangeRequestsController < AdminController + + def edit + @change_request = PublicBodyChangeRequest.find(params[:id]) + end + + def update + @change_request = PublicBodyChangeRequest.find(params[:id]) + @change_request.close! + @change_request.send_response(params[:subject], params[:response]) + flash[:notice] = 'The change request has been closed and the user has been notified' + redirect_to admin_general_index_path + end + +end diff --git a/app/controllers/admin_public_body_controller.rb b/app/controllers/admin_public_body_controller.rb index 88e275960..120419a27 100644 --- a/app/controllers/admin_public_body_controller.rb +++ b/app/controllers/admin_public_body_controller.rb @@ -85,14 +85,33 @@ class AdminPublicBodyController < AdminController def new @public_body = PublicBody.new - render + if params[:change_request_id] + @change_request = PublicBodyChangeRequest.find(params[:change_request_id]) + end + if @change_request + @change_request_user_response = render_to_string(:template => "admin_public_body_change_requests/add_accepted", + :formats => [:txt]) + @public_body.name = @change_request.public_body_name + @public_body.request_email = @change_request.public_body_email + @public_body.last_edit_comment = @change_request.comment_for_public_body + end + render :formats => [:html] end def create I18n.with_locale(I18n.default_locale) do + if params[:change_request_id] + @change_request = PublicBodyChangeRequest.find(params[:change_request_id]) + end params[:public_body][:last_edit_editor] = admin_current_user() @public_body = PublicBody.new(params[:public_body]) if @public_body.save + if @change_request + response_text = params[:response].gsub(_("[Authority URL will be inserted here]"), + public_body_url(@public_body, :only_path => false)) + @change_request.close! + @change_request.send_response(params[:subject], response_text) + end flash[:notice] = 'PublicBody was successfully created.' redirect_to admin_body_show_url(@public_body) else @@ -103,15 +122,32 @@ class AdminPublicBodyController < AdminController def edit @public_body = PublicBody.find(params[:id]) - @public_body.last_edit_comment = "" - render + if params[:change_request_id] + @change_request = PublicBodyChangeRequest.find(params[:change_request_id]) + end + if @change_request + @change_request_user_response = render_to_string(:template => "admin_public_body_change_requests/update_accepted", + :formats => [:txt]) + @public_body.request_email = @change_request.public_body_email + @public_body.last_edit_comment = @change_request.comment_for_public_body + else + @public_body.last_edit_comment = "" + end + render :formats => [:html] end def update + if params[:change_request_id] + @change_request = PublicBodyChangeRequest.find(params[:change_request_id]) + end I18n.with_locale(I18n.default_locale) do params[:public_body][:last_edit_editor] = admin_current_user() @public_body = PublicBody.find(params[:id]) if @public_body.update_attributes(params[:public_body]) + if @change_request + @change_request.close! + @change_request.send_response(params[:subject], params[:response]) + end flash[:notice] = 'PublicBody was successfully updated.' redirect_to admin_body_show_url(@public_body) else diff --git a/app/controllers/admin_request_controller.rb b/app/controllers/admin_request_controller.rb index 4d45ced8b..fc291d998 100644 --- a/app/controllers/admin_request_controller.rb +++ b/app/controllers/admin_request_controller.rb @@ -26,15 +26,13 @@ class AdminRequestController < AdminController def show @info_request = InfoRequest.find(params[:id]) - # XXX is this *really* the only way to render a template to a - # variable, rather than to the response? - vars = OpenStruct.new(:name_to => @info_request.user_name, - :name_from => AlaveteliConfiguration::contact_name, - :info_request => @info_request, :reason => params[:reason], - :info_request_url => 'http://' + AlaveteliConfiguration::domain + request_url(@info_request), - :site_name => site_name) - template = File.read(File.join(File.dirname(__FILE__), "..", "views", "admin_request", "hidden_user_explanation.html.erb")) - @request_hidden_user_explanation = ERB.new(template).result(vars.instance_eval { binding }) + vars_for_explanation = {:reason => params[:reason], + :info_request => @info_request, + :name_to => @info_request.user_name, + :name_from => AlaveteliConfiguration::contact_name, + :info_request_url => request_url(@info_request, :only_path => false)} + @request_hidden_user_explanation = render_to_string(:template => "admin_request/hidden_user_explanation", + :locals => vars_for_explanation) end def resend @@ -281,7 +279,8 @@ class AdminRequestController < AdminController if ! info_request.is_external? ContactMailer.from_admin_message( - info_request.user, + info_request.user.name, + info_request.user.email, subject, params[:explanation].strip.html_safe ).deliver diff --git a/app/controllers/admin_user_controller.rb b/app/controllers/admin_user_controller.rb index 929b93e0e..940a5fe8f 100644 --- a/app/controllers/admin_user_controller.rb +++ b/app/controllers/admin_user_controller.rb @@ -48,6 +48,7 @@ class AdminUserController < AdminController @admin_user.ban_text = params[:admin_user][:ban_text] @admin_user.about_me = params[:admin_user][:about_me] @admin_user.no_limit = params[:admin_user][:no_limit] + @admin_user.can_make_batch_requests = params[:admin_user][:can_make_batch_requests] if @admin_user.valid? @admin_user.save! diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 161a82b26..370e8e15c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -369,9 +369,9 @@ class ApplicationController < ActionController::Base return page end - def perform_search_typeahead(query, model) + def perform_search_typeahead(query, model, per_page=25) @page = get_search_page_from_params - @per_page = 10 + @per_page = per_page query_words = query.split(/ +(?![-+]+)/) if query_words.last.nil? || query_words.last.strip.length < 3 xapian_requests = nil @@ -428,100 +428,6 @@ class ApplicationController < ActionController::Base end end - def get_request_variety_from_params(params) - query = "" - sortby = "newest" - varieties = [] - if params[:request_variety] && !(query =~ /variety:/) - if params[:request_variety].include? "sent" - varieties -= ['variety:sent', 'variety:followup_sent', 'variety:response', 'variety:comment'] - varieties << ['variety:sent', 'variety:followup_sent'] - end - if params[:request_variety].include? "response" - varieties << ['variety:response'] - end - if params[:request_variety].include? "comment" - varieties << ['variety:comment'] - end - end - if !varieties.empty? - query = " (#{varieties.join(' OR ')})" - end - return query - end - - def get_status_from_params(params) - query = "" - if params[:latest_status] - statuses = [] - if params[:latest_status].class == String - params[:latest_status] = [params[:latest_status]] - end - if params[:latest_status].include?("recent") || params[:latest_status].include?("all") - query += " (variety:sent OR variety:followup_sent OR variety:response OR variety:comment)" - end - if params[:latest_status].include? "successful" - statuses << ['latest_status:successful', 'latest_status:partially_successful'] - end - if params[:latest_status].include? "unsuccessful" - statuses << ['latest_status:rejected', 'latest_status:not_held'] - end - if params[:latest_status].include? "awaiting" - statuses << ['latest_status:waiting_response', 'latest_status:waiting_clarification', 'waiting_classification:true', 'latest_status:internal_review','latest_status:gone_postal', 'latest_status:error_message', 'latest_status:requires_admin'] - end - if params[:latest_status].include? "internal_review" - statuses << ['status:internal_review'] - end - if params[:latest_status].include? "other" - statuses << ['latest_status:gone_postal', 'latest_status:error_message', 'latest_status:requires_admin', 'latest_status:user_withdrawn'] - end - if params[:latest_status].include? "gone_postal" - statuses << ['latest_status:gone_postal'] - end - if !statuses.empty? - query = " (#{statuses.join(' OR ')})" - end - end - return query - end - - def get_date_range_from_params(params) - query = "" - if params.has_key?(:request_date_after) && !params.has_key?(:request_date_before) - params[:request_date_before] = Time.now.strftime("%d/%m/%Y") - query += " #{params[:request_date_after]}..#{params[:request_date_before]}" - elsif !params.has_key?(:request_date_after) && params.has_key?(:request_date_before) - params[:request_date_after] = "01/01/2001" - end - if params.has_key?(:request_date_after) - query = " #{params[:request_date_after]}..#{params[:request_date_before]}" - end - return query - end - - def get_tags_from_params(params) - query = "" - tags = [] - if params.has_key?(:tags) - params[:tags].split().each do |tag| - tags << "tag:#{tag}" - end - end - if !tags.empty? - query = " (#{tags.join(' OR ')})" - end - return query - end - - def make_query_from_params(params) - query = params[:query] || "" if query.nil? - query += get_date_range_from_params(params) - query += get_request_variety_from_params(params) - query += get_status_from_params(params) - query += get_tags_from_params(params) - return query - end - def country_from_ip country = "" if !AlaveteliConfiguration::gaze_url.empty? diff --git a/app/controllers/comment_controller.rb b/app/controllers/comment_controller.rb index d4b17e9d2..cda56a211 100644 --- a/app/controllers/comment_controller.rb +++ b/app/controllers/comment_controller.rb @@ -38,7 +38,7 @@ class CommentController < ApplicationController if params[:comment] # XXX this check should theoretically be a validation rule in the model - @existing_comment = Comment.find_by_existing_comment(@info_request.id, params[:comment][:body]) + @existing_comment = Comment.find_existing(@info_request.id, params[:comment][:body]) else # Default to subscribing to request when first viewing form params[:subscribe_to_request] = true @@ -68,7 +68,7 @@ class CommentController < ApplicationController if params[:subscribe_to_request] @track_thing = TrackThing.create_track_for_request(@info_request) - @existing_track = TrackThing.find_by_existing_track(@user, @track_thing) + @existing_track = TrackThing.find_existing(@user, @track_thing) if @user && @info_request.user == @user # don't subscribe to own request! elsif !@existing_track diff --git a/app/controllers/general_controller.rb b/app/controllers/general_controller.rb index b01a67027..6f0d29889 100644 --- a/app/controllers/general_controller.rb +++ b/app/controllers/general_controller.rb @@ -103,7 +103,7 @@ class GeneralController < ApplicationController params[:query] = @query end if @variety_postfix != "all" && @requests - @query, _ = make_query_from_params(params) + @query = InfoRequestEvent.make_query_from_params(params) end @inputted_sortby = @sortby if @sortby.nil? diff --git a/app/controllers/info_request_batch_controller.rb b/app/controllers/info_request_batch_controller.rb new file mode 100644 index 000000000..b66658757 --- /dev/null +++ b/app/controllers/info_request_batch_controller.rb @@ -0,0 +1,16 @@ +class InfoRequestBatchController < ApplicationController + + def show + @info_request_batch = InfoRequestBatch.find(params[:id]) + @per_page = 25 + @page = get_search_page_from_params + if @info_request_batch.sent_at + @info_requests = @info_request_batch.info_requests.visible.all(:offset => (@page - 1) * @per_page, + :limit => @per_page) + else + @public_bodies = @info_request_batch.public_bodies.all(:offset => (@page - 1) * @per_page, + :limit => @per_page) + end + end + +end diff --git a/app/controllers/public_body_change_requests_controller.rb b/app/controllers/public_body_change_requests_controller.rb new file mode 100644 index 000000000..4a6c5f5cb --- /dev/null +++ b/app/controllers/public_body_change_requests_controller.rb @@ -0,0 +1,28 @@ +class PublicBodyChangeRequestsController < ApplicationController + + def create + @change_request = PublicBodyChangeRequest.from_params(params[:public_body_change_request], @user) + if @change_request.save + @change_request.send_message + flash[:notice] = @change_request.thanks_notice + redirect_to frontpage_url + return + else + render :action => 'new' + end + end + + def new + @change_request = PublicBodyChangeRequest.new + if params[:body] + @change_request.public_body = PublicBody.find_by_url_name_with_historic(params[:body]) + end + if @change_request.public_body + @title = _('Ask us to update the email address for {{public_body_name}}', + :public_body_name => @change_request.public_body.name) + else + @title = _('Ask us to add an authority') + end + + end +end diff --git a/app/controllers/public_body_controller.rb b/app/controllers/public_body_controller.rb index 308d38e4c..862f4b318 100644 --- a/app/controllers/public_body_controller.rb +++ b/app/controllers/public_body_controller.rb @@ -40,7 +40,7 @@ class PublicBodyController < ApplicationController @searched_to_send_request = true end @view = params[:view] - query = make_query_from_params(params.merge(:latest_status => @view)) + query = InfoRequestEvent.make_query_from_params(params.merge(:latest_status => @view)) query += " requested_from:#{@public_body.url_name}" # Use search query for this so can collapse and paginate easily # XXX really should just use SQL query here rather than Xapian. diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index d982bd391..a94461758 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -11,7 +11,7 @@ require 'open-uri' class RequestController < ApplicationController before_filter :check_read_only, :only => [ :new, :show_response, :describe_state, :upload_response ] protect_from_forgery :only => [ :new, :show_response, :describe_state, :upload_response ] # See ActionController::RequestForgeryProtection for details - + before_filter :check_batch_requests_and_user_allowed, :only => [ :select_authorities, :new_batch ] MAX_RESULTS = 500 PER_PAGE = 25 @@ -43,6 +43,32 @@ class RequestController < ApplicationController medium_cache end + def select_authorities + if !params[:public_body_query].nil? + @search_bodies = perform_search_typeahead(params[:public_body_query], PublicBody, 1000) + end + respond_to do |format| + format.html do + if !params[:public_body_ids].nil? + if !params[:remove_public_body_ids].nil? + body_ids = params[:public_body_ids] - params[:remove_public_body_ids] + else + body_ids = params[:public_body_ids] + end + @public_bodies = PublicBody.where({:id => body_ids}).all + end + end + format.json do + if @search_bodies + render :json => @search_bodies.results.map{ |result| {:name => result[:model].name, + :id => result[:model].id } } + else + render :json => [] + end + end + end + end + def show if !AlaveteliConfiguration::varnish_host.blank? # If varnish is set up to accept PURGEs, then cache for a @@ -141,7 +167,10 @@ class RequestController < ApplicationController def list medium_cache @view = params[:view] + @locale = self.locale_from_params() @page = get_search_page_from_params if !@page # used in cache case, as perform_search sets @page as side effect + @per_page = PER_PAGE + @max_results = MAX_RESULTS if @view == "recent" return redirect_to request_list_all_url(:action => "list", :view => "all", :page => @page), :status => :moved_permanently end @@ -151,16 +180,11 @@ class RequestController < ApplicationController raise ActiveRecord::RecordNotFound.new("Sorry. No pages after #{MAX_RESULTS / PER_PAGE}.") end - query = make_query_from_params(params.merge(:latest_status => @view)) + @filters = params.merge(:latest_status => @view) @title = _("View and search requests") - sortby = "newest" - xapian_object = perform_search([InfoRequestEvent], query, sortby, 'request_collapse') - @list_results = xapian_object.results.map { |r| r[:model] } - @matches_estimated = xapian_object.matches_estimated - @show_no_more_than = (@matches_estimated > MAX_RESULTS) ? MAX_RESULTS : @matches_estimated @title = @title + " (page " + @page.to_s + ")" if (@page > 1) - @track_thing = TrackThing.create_track_for_search_query(query) + @track_thing = TrackThing.create_track_for_search_query(InfoRequestEvent.make_query_from_params(@filters)) @feed_autodetect = [ { :url => do_track_url(@track_thing, 'feed'), :title => @track_thing.params[:title_in_rss], :has_json => true } ] # Don't let robots go more than 20 pages in @@ -169,6 +193,69 @@ class RequestController < ApplicationController end end + def new_batch + if params[:public_body_ids].blank? + redirect_to select_authorities_path and return + end + + # TODO: Decide if we make batch requesters describe their undescribed requests + # before being able to make a new batch request + + if !authenticated_user.can_file_requests? + @details = authenticated_user.can_fail_html + render :template => 'user/banned' and return + end + + @batch = true + + I18n.with_locale(@locale) do + @public_bodies = PublicBody.where({:id => params[:public_body_ids]}). + includes(:translations). + order('public_body_translations.name').all + end + if params[:submitted_new_request].nil? || params[:reedit] + return render_new_compose(batch=true) + end + + # Check for double submission of batch + @existing_batch = InfoRequestBatch.find_existing(authenticated_user, + params[:info_request][:title], + params[:outgoing_message][:body], + params[:public_body_ids]) + + @info_request = InfoRequest.create_from_attributes(params[:info_request], + params[:outgoing_message], + authenticated_user) + @outgoing_message = @info_request.outgoing_messages.first + @info_request.is_batch_request_template = true + if !@existing_batch.nil? || !@info_request.valid? + # We don't want the error "Outgoing messages is invalid", as in this + # case the list of errors will also contain a more specific error + # describing the reason it is invalid. + @info_request.errors.delete(:outgoing_messages) + render :action => 'new' + return + end + + # Show preview page, if it is a preview + if params[:preview].to_i == 1 + return render_new_preview + end + + @info_request_batch = InfoRequestBatch.create!(:title => params[:info_request][:title], + :body => params[:outgoing_message][:body], + :public_bodies => @public_bodies, + :user => authenticated_user) + flash[:notice] = _("<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p> + <p><strong>We will email you</strong> when they have been sent. + We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't + replied by then.</p> + <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>", + :law_used_full=>@info_request.law_used_full, + :late_number_of_days => AlaveteliConfiguration::reply_late_after_days) + redirect_to info_request_batch_path(@info_request_batch) + end + # Page new form posts to def new # All new requests are of normal_sort @@ -213,71 +300,19 @@ class RequestController < ApplicationController render :template => 'user/rate_limited' return end - - params[:info_request] = { } if !params[:info_request] - - # Read parameters in - first the public body (by URL name or id) - if params[:url_name] - if params[:url_name].match(/^[0-9]+$/) - params[:info_request][:public_body] = PublicBody.find(params[:url_name]) - else - public_body = PublicBody.find_by_url_name_with_historic(params[:url_name]) - raise ActiveRecord::RecordNotFound.new("None found") if public_body.nil? # XXX proper 404 - params[:info_request][:public_body] = public_body - end - elsif params[:public_body_id] - params[:info_request][:public_body] = PublicBody.find(params[:public_body_id]) - # Explicitly load the association as this isn't done automatically in newer Rails versions - elsif params[:info_request][:public_body_id] - params[:info_request][:public_body] = PublicBody.find(params[:info_request][:public_body_id]) - end - if !params[:info_request][:public_body] - # compulsory to have a body by here, or go to front page which is start of process - redirect_to frontpage_url - return - end - - # ... next any tags or other things - params[:info_request][:title] = params[:title] if params[:title] - params[:info_request][:tag_string] = params[:tags] if params[:tags] - - @info_request = InfoRequest.new(params[:info_request]) - params[:info_request_id] = @info_request.id - params[:outgoing_message] = {} if !params[:outgoing_message] - params[:outgoing_message][:body] = params[:body] if params[:body] - params[:outgoing_message][:default_letter] = params[:default_letter] if params[:default_letter] - params[:outgoing_message][:info_request] = @info_request - @outgoing_message = OutgoingMessage.new(params[:outgoing_message]) - @outgoing_message.set_signature_name(@user.name) if !@user.nil? - - if @info_request.public_body.is_requestable? - render :action => 'new' - else - if @info_request.public_body.not_requestable_reason == 'bad_contact' - render :action => 'new_bad_contact' - else - # if not requestable because defunct or not_apply, redirect to main page - # (which doesn't link to the /new/ URL) - redirect_to public_body_url(@info_request.public_body) - end - end - return + return render_new_compose(batch=false) end # See if the exact same request has already been submitted # XXX this check should theoretically be a validation rule in the # model, except we really want to pass @existing_request to the view so # it can link to it. - @existing_request = InfoRequest.find_by_existing_request(params[:info_request][:title], params[:info_request][:public_body_id], params[:outgoing_message][:body]) + @existing_request = InfoRequest.find_existing(params[:info_request][:title], params[:info_request][:public_body_id], params[:outgoing_message][:body]) # Create both FOI request and the first request message - @info_request = InfoRequest.new(params[:info_request]) - @outgoing_message = OutgoingMessage.new(params[:outgoing_message].merge({ - :status => 'ready', - :message_type => 'initial_request' - })) - @info_request.outgoing_messages << @outgoing_message - @outgoing_message.info_request = @info_request + @info_request = InfoRequest.create_from_attributes(params[:info_request], + params[:outgoing_message]) + @outgoing_message = @info_request.outgoing_messages.first # Maybe we lost the address while they're writing it if !@info_request.public_body.is_requestable? @@ -298,24 +333,7 @@ class RequestController < ApplicationController # Show preview page, if it is a preview if params[:preview].to_i == 1 - message = "" - if @outgoing_message.contains_email? - if @user.nil? - message += _("<p>You do not need to include your email in the request in order to get a reply, as we will ask for it on the next screen (<a href=\"{{url}}\">details</a>).</p>", :url => (help_privacy_path+"#email_address").html_safe); - else - message += _("<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>", :url => (help_privacy_path+"#email_address").html_safe); - end - message += _("<p>We recommend that you edit your request and remove the email address. - If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>") - end - if @outgoing_message.contains_postcode? - message += _("<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>"); - end - if not message.empty? - flash.now[:error] = message.html_safe - end - render :action => 'preview' - return + return render_new_preview end if user_exceeded_limit @@ -326,7 +344,7 @@ class RequestController < ApplicationController if !authenticated?( :web => _("To send your FOI request").to_str, :email => _("Then your FOI request to {{public_body_name}} will be sent.",:public_body_name=>@info_request.public_body.name), - :email_subject => _("Confirm your FOI request to ") + @info_request.public_body.name + :email_subject => _("Confirm your FOI request to {{public_body_name}}",:public_body_name=>@info_request.public_body.name) ) # do nothing - as "authenticated?" has done the redirect to signin page for us return @@ -671,7 +689,7 @@ class RequestController < ApplicationController end if !incoming_message.user_can_view?(authenticated_user) @incoming_message = incoming_message # used by view - return render_hidden_message + return render_hidden('request/hidden_correspondence') end # Is this a completely public request that we can cache attachments for # to be served up without authentication? @@ -885,19 +903,10 @@ class RequestController < ApplicationController private - def render_hidden + def render_hidden(template='request/hidden') respond_to do |format| response_code = 403 # forbidden - format.html{ render :template => 'request/hidden', :status => response_code } - format.any{ render :nothing => true, :status => response_code } - end - false - end - - def render_hidden_message - respond_to do |format| - response_code = 403 # forbidden - format.html{ render :template => 'request/hidden_correspondence', :status => response_code } + format.html{ render :template => template, :status => response_code } format.any{ render :nothing => true, :status => response_code } end false @@ -969,6 +978,103 @@ class RequestController < ApplicationController "request/similar/#{info_request.id}/#{locale}" end + def check_batch_requests_and_user_allowed + if !AlaveteliConfiguration::allow_batch_requests + raise RouteNotFound.new("Page not enabled") + end + if !authenticated?( + :web => _("To make a batch request"), + :email => _("Then you can make a batch request"), + :email_subject => _("Make a batch request"), + :user_name => "a user who has been authorised to make batch requests") + # do nothing - as "authenticated?" has done the redirect to signin page for us + return + end + if !@user.can_make_batch_requests? + return render_hidden('request/batch_not_allowed') + end + end + + def render_new_compose(batch) + + params[:info_request] = { } if !params[:info_request] + + # Read parameters in + unless batch + # first the public body (by URL name or id) + if params[:url_name] + if params[:url_name].match(/^[0-9]+$/) + params[:info_request][:public_body] = PublicBody.find(params[:url_name]) + else + public_body = PublicBody.find_by_url_name_with_historic(params[:url_name]) + raise ActiveRecord::RecordNotFound.new("None found") if public_body.nil? # XXX proper 404 + params[:info_request][:public_body] = public_body + end + elsif params[:public_body_id] + params[:info_request][:public_body] = PublicBody.find(params[:public_body_id]) + # Explicitly load the association as this isn't done automatically in newer Rails versions + elsif params[:info_request][:public_body_id] + params[:info_request][:public_body] = PublicBody.find(params[:info_request][:public_body_id]) + end + if !params[:info_request][:public_body] + # compulsory to have a body by here, or go to front page which is start of process + redirect_to frontpage_url + return + end + end + + # ... next any tags or other things + params[:info_request][:title] = params[:title] if params[:title] + params[:info_request][:tag_string] = params[:tags] if params[:tags] + + @info_request = InfoRequest.new(params[:info_request]) + if batch + @info_request.is_batch_request_template = true + end + params[:info_request_id] = @info_request.id + params[:outgoing_message] = {} if !params[:outgoing_message] + params[:outgoing_message][:body] = params[:body] if params[:body] + params[:outgoing_message][:default_letter] = params[:default_letter] if params[:default_letter] + params[:outgoing_message][:info_request] = @info_request + @outgoing_message = OutgoingMessage.new(params[:outgoing_message]) + @outgoing_message.set_signature_name(@user.name) if !@user.nil? + + if batch + render :action => 'new' + else + if @info_request.public_body.is_requestable? + render :action => 'new' + else + if @info_request.public_body.not_requestable_reason == 'bad_contact' + render :action => 'new_bad_contact' + else + # if not requestable because defunct or not_apply, redirect to main page + # (which doesn't link to the /new/ URL) + redirect_to public_body_url(@info_request.public_body) + end + end + end + return + end + def render_new_preview + message = "" + if @outgoing_message.contains_email? + if @user.nil? + message += _("<p>You do not need to include your email in the request in order to get a reply, as we will ask for it on the next screen (<a href=\"{{url}}\">details</a>).</p>", :url => (help_privacy_path+"#email_address").html_safe); + else + message += _("<p>You do not need to include your email in the request in order to get a reply (<a href=\"{{url}}\">details</a>).</p>", :url => (help_privacy_path+"#email_address").html_safe); + end + message += _("<p>We recommend that you edit your request and remove the email address. + If you leave it, the email address will be sent to the authority, but will not be displayed on the site.</p>") + end + if @outgoing_message.contains_postcode? + message += _("<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>"); + end + if not message.empty? + flash.now[:error] = message.html_safe + end + render :action => 'preview' + end end diff --git a/app/controllers/track_controller.rb b/app/controllers/track_controller.rb index 1123903f9..83e05ebbc 100644 --- a/app/controllers/track_controller.rb +++ b/app/controllers/track_controller.rb @@ -116,7 +116,7 @@ class TrackController < ApplicationController # Generic request tracker - set @track_thing before calling def track_set if @user - @existing_track = TrackThing.find_by_existing_track(@user, @track_thing) + @existing_track = TrackThing.find_existing(@user, @track_thing) if @existing_track flash[:notice] = _("You are already following updates about {{track_description}}", :track_description => @track_thing.params[:list_description]) return true diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index 175425280..8d6522923 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -26,12 +26,15 @@ class UserController < ApplicationController if params[:view].nil? @show_requests = true @show_profile = true + @show_batches = false elsif params[:view] == 'profile' @show_profile = true @show_requests = false + @show_batches = false elsif params[:view] == 'requests' @show_profile = false @show_requests = true + @show_batches = true end @display_user = User.find(:first, :conditions => [ "url_name = ? and email_confirmed = ?", params[:url_name], true ]) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 4b603b064..154697377 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -123,5 +123,18 @@ module ApplicationHelper yield end end + + # We only want to cache request lists that have a reasonable chance of not expiring + # before they're requested again. Don't cache lists returned from specific searches + # or anything except the first page of results, just the first page of the default + # views + def request_list_cache_key + cacheable_param_list = ['controller', 'action', 'locale', 'view'] + if params.keys.all?{ |key| cacheable_param_list.include?(key) } + "request-list-#{@view}-#{@locale}" + else + nil + end + end end diff --git a/app/helpers/link_to_helper.rb b/app/helpers/link_to_helper.rb index 8df28f350..405886a85 100755 --- a/app/helpers/link_to_helper.rb +++ b/app/helpers/link_to_helper.rb @@ -121,24 +121,37 @@ module LinkToHelper end def user_link_absolute(user) - link_to h(user.name), user_url(user) + link_to user.name, user_url(user) end def user_link(user) - link_to h(user.name), user_path(user) + link_to user.name, user_path(user) end - def request_user_link_absolute(request) + def external_user_link(request, absolute, text) + if request.external_user_name + request.external_user_name + else + if absolute + url = help_privacy_url(:anchor => 'anonymous') + else + url = help_privacy_path(:anchor => 'anonymous') + end + link_to(text, url) + end + end + + def request_user_link_absolute(request, anonymous_text=_("Anonymous user")) if request.is_external? - request.external_user_name || _("Anonymous user") + external_user_link(request, absolute=true, anonymous_text) else user_link_absolute(request.user) end end - def request_user_link(request) + def request_user_link(request, anonymous_text=_("Anonymous user")) if request.is_external? - request.external_user_name || _("Anonymous user") + external_user_link(request, absolute=false, anonymous_text) else user_link(request.user) end diff --git a/app/mailers/contact_mailer.rb b/app/mailers/contact_mailer.rb index 4dc49bf8b..27e04ca4b 100644 --- a/app/mailers/contact_mailer.rb +++ b/app/mailers/contact_mailer.rb @@ -34,12 +34,31 @@ class ContactMailer < ApplicationMailer end # Send message to a user from the administrator - def from_admin_message(recipient_user, subject, message) - @message, @from_user, @recipient_user = message, contact_from_name_and_email, recipient_user - + def from_admin_message(recipient_name, recipient_email, subject, message) + @message, @from_user = message, contact_from_name_and_email + @recipient_name, @recipient_email = recipient_name, recipient_email mail(:from => contact_from_name_and_email, - :to => recipient_user.name_and_email, + :to => MailHandler.address_from_name_and_email(@recipient_name, @recipient_email), :bcc => AlaveteliConfiguration::contact_email, :subject => subject) end + + # Send a request to the administrator to add an authority + def add_public_body(change_request) + @change_request = change_request + mail(:from => MailHandler.address_from_name_and_email(@change_request.get_user_name, @change_request.get_user_email), + :to => contact_from_name_and_email, + :subject => _('Add authority - {{public_body_name}}', + :public_body_name => @change_request.get_public_body_name)) + end + + # Send a request to the administrator to update an authority email address + def update_public_body_email(change_request) + @change_request = change_request + mail(:from => MailHandler.address_from_name_and_email(@change_request.get_user_name, @change_request.get_user_email), + :to => contact_from_name_and_email, + :subject => _('Update email address - {{public_body_name}}', + :public_body_name => @change_request.get_public_body_name)) + end + end diff --git a/app/mailers/info_request_batch_mailer.rb b/app/mailers/info_request_batch_mailer.rb new file mode 100644 index 000000000..a2becfb24 --- /dev/null +++ b/app/mailers/info_request_batch_mailer.rb @@ -0,0 +1,25 @@ +# models/info_request_batch_mailer.rb: +# Emails relating to user accounts. e.g. Confirming a new account +# +# Copyright (c) 2013 UK Citizens Online Democracy. All rights reserved. +# Email: hello@mysociety.org; WWW: http://www.mysociety.org/ + +class InfoRequestBatchMailer < ApplicationMailer + + def batch_sent(info_request_batch, unrequestable, user) + @info_request_batch, @unrequestable = info_request_batch, unrequestable + headers('Return-Path' => blackhole_email, 'Reply-To' => contact_from_name_and_email) + + # Make a link going to the info request batch page, which logs the user in. + post_redirect = PostRedirect.new( + :uri => info_request_batch_url(@info_request_batch), + :user_id => info_request_batch.user_id) + post_redirect.save! + @url = confirm_url(:email_token => post_redirect.email_token) + + mail(:from => contact_from_name_and_email, + :to => user.name_and_email, + :subject => _("Your batch request \"{{title}}\" has been sent", + :title => info_request_batch.title)) + end +end diff --git a/app/models/comment.rb b/app/models/comment.rb index 75d37e04f..b4c099123 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -62,7 +62,7 @@ class Comment < ActiveRecord::Base end # When posting a new comment, use this to check user hasn't double submitted. - def Comment.find_by_existing_comment(info_request_id, body) + def Comment.find_existing(info_request_id, body) # XXX can add other databases here which have regexp_replace if ActiveRecord::Base.connection.adapter_name == "PostgreSQL" # Exclude spaces from the body comparison using regexp_replace diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index bcf0b6ec9..6db145348 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -35,7 +35,7 @@ require 'htmlentities' require 'rexml/document' require 'zip/zip' -require 'iconv' unless RUBY_VERSION >= '1.9' +require 'iconv' unless String.method_defined?(:encode) class IncomingMessage < ActiveRecord::Base extend MessageProminence @@ -294,7 +294,7 @@ class IncomingMessage < ActiveRecord::Base emails = ascii_chars.scan(MySociety::Validate.email_find_regexp) # Convert back to UCS-2, making a mask at the same time - if RUBY_VERSION >= '1.9' + if String.method_defined?(:encode) emails.map! do |email| # We want the ASCII representation of UCS-2 [email[0].encode('UTF-16LE').force_encoding('US-ASCII'), @@ -385,6 +385,10 @@ class IncomingMessage < ActiveRecord::Base multiline_original_message = '(' + '''>>>.* \d\d/\d\d/\d\d\d\d\s+\d\d:\d\d(?::\d\d)?\s*>>>''' + ')' text.gsub!(/^(#{multiline_original_message}\n.*)$/m, replacement) + # On Thu, Nov 28, 2013 at 9:08 AM, A User + # <[1]request-7-skm40s2ls@xxx.xxxx> wrote: + text.gsub!(/^( On [^\n]+\n\s*\<[^>\n]+\> (wrote|said):\s*\n.*)$/m, replacement) + # Single line sections text.gsub!(/^(>.*\n)/, replacement) text.gsub!(/^(On .+ (wrote|said):\n)/, replacement) @@ -516,7 +520,7 @@ class IncomingMessage < ActiveRecord::Base # should instead tell elinks to respect the source # charset use_charset = "utf-8" - if RUBY_VERSION.to_f >= 1.9 + if String.method_defined?(:encode) begin text.encode('utf-8') rescue Encoding::UndefinedConversionError, Encoding::InvalidByteSequenceError @@ -547,7 +551,7 @@ class IncomingMessage < ActiveRecord::Base end def _sanitize_text(text) - if RUBY_VERSION.to_f >= 1.9 + if String.method_defined?(:encode) begin # Test if it's good UTF-8 text.encode('utf-8') @@ -792,27 +796,28 @@ class IncomingMessage < ActiveRecord::Base return self.cached_attachment_text_clipped end - def _get_attachment_text_internal + def _extract_text # Extract text from each attachment - text = '' - attachments = self.get_attachments_for_display - for attachment in attachments - text += MailHandler.get_attachment_text_one_file(attachment.content_type, + self.get_attachments_for_display.reduce(''){ |memo, attachment| + memo += MailHandler.get_attachment_text_one_file(attachment.content_type, attachment.body, attachment.charset) - end + } + end + + def _get_attachment_text_internal + text = self._extract_text # Remove any bad characters - if RUBY_VERSION >= '1.9' - text.encode("utf-8", :invalid => :replace, - :undef => :replace, - :replace => "") + if String.method_defined?(:encode) + # handle "problematic" encoding + text.encode!('UTF-16', 'UTF-8', :invalid => :replace, :undef => :replace, :replace => '') + text.encode('UTF-8', 'UTF-16') else Iconv.conv('utf-8//IGNORE', 'utf-8', text) end end - # Returns text for indexing def get_text_for_indexing_full return get_body_for_quoting + "\n\n" + get_attachment_text_full diff --git a/app/models/info_request.rb b/app/models/info_request.rb index 0a073dc79..47ad435cb 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -1,5 +1,6 @@ # encoding: utf-8 # == Schema Information +# Schema version: 20131024114346 # # Table name: info_requests # @@ -21,6 +22,7 @@ # external_url :string(255) # attention_requested :boolean default(FALSE) # comments_allowed :boolean default(TRUE), not null +# info_request_batch_id :integer # require 'digest/sha1' @@ -40,7 +42,8 @@ class InfoRequest < ActiveRecord::Base validate :must_be_internal_or_external belongs_to :public_body, :counter_cache => true - validates_presence_of :public_body_id + belongs_to :info_request_batch + validates_presence_of :public_body_id, :unless => Proc.new { |info_request| info_request.is_batch_request_template? } has_many :outgoing_messages, :order => 'created_at' has_many :incoming_messages, :order => 'created_at' @@ -50,6 +53,7 @@ class InfoRequest < ActiveRecord::Base has_many :comments, :order => 'created_at' has_many :censor_rules, :order => 'created_at desc' has_many :mail_server_logs, :order => 'mail_server_log_done_id' + attr_accessor :is_batch_request_template has_tag_string @@ -113,8 +117,12 @@ class InfoRequest < ActiveRecord::Base # Possible reasons that a request could be reported for administrator attention def report_reasons - ["Contains defamatory material", "Not a valid request", "Request for personal information", - "Contains personal information", "Vexatious", "Other"] + [_("Contains defamatory material"), + _("Not a valid request"), + _("Request for personal information"), + _("Contains personal information"), + _("Vexatious"), + _("Other")] end def must_be_valid_state @@ -122,6 +130,10 @@ class InfoRequest < ActiveRecord::Base !InfoRequest.enumerate_states.include? described_state end + def is_batch_request_template? + is_batch_request_template == true + end + # The request must either be internal, in which case it has # a foreign key reference to a User object and no external_url or external_user_name, # or else be external in which case it has no user_id but does have an external_url, @@ -379,7 +391,7 @@ public # repeated requests, say once a quarter for time information, then might need to do that. # XXX this *should* also check outgoing message joined to is an initial # request (rather than follow up) - def InfoRequest.find_by_existing_request(title, public_body_id, body) + def InfoRequest.find_existing(title, public_body_id, body) return InfoRequest.find(:first, :conditions => [ "title = ? and public_body_id = ? and outgoing_messages.body = ?", title, public_body_id, body ], :include => [ :outgoing_messages ] ) end @@ -928,6 +940,20 @@ public self.idhash = InfoRequest.hash_from_id(self.id) end + def InfoRequest.create_from_attributes(info_request_atts, outgoing_message_atts, user=nil) + info_request = new(info_request_atts) + default_message_params = { + :status => 'ready', + :message_type => 'initial_request', + :what_doing => 'normal_sort' + } + outgoing_message = OutgoingMessage.new(outgoing_message_atts.merge(default_message_params)) + info_request.outgoing_messages << outgoing_message + outgoing_message.info_request = info_request + info_request.user = user + info_request + end + def InfoRequest.hash_from_id(id) return Digest::SHA1.hexdigest(id.to_s + AlaveteliConfiguration::incoming_email_secret)[0,8] end @@ -1074,7 +1100,10 @@ public # Get the list of censor rules that apply to this request def applicable_censor_rules - applicable_rules = [self.censor_rules, self.public_body.censor_rules, CensorRule.global.all] + applicable_rules = [self.censor_rules, CensorRule.global.all] + unless is_batch_request_template? + applicable_rules << self.public_body.censor_rules + end if self.user && !self.user.censor_rules.empty? applicable_rules << self.user.censor_rules end @@ -1228,6 +1257,23 @@ public return [xapian_similar, xapian_similar_more] end + def InfoRequest.request_list(filters, page, per_page, max_results) + xapian_object = ActsAsXapian::Search.new([InfoRequestEvent], + InfoRequestEvent.make_query_from_params(filters), + :offset => (page - 1) * per_page, + :limit => 25, + :sort_by_prefix => 'created_at', + :sort_by_ascending => true, + :collapse_by_prefix => 'request_collapse' + ) + list_results = xapian_object.results.map { |r| r[:model] } + matches_estimated = xapian_object.matches_estimated + show_no_more_than = [matches_estimated, max_results].min + return { :results => list_results, + :matches_estimated => matches_estimated, + :show_no_more_than => show_no_more_than } + end + def InfoRequest.recent_requests request_events = [] request_events_all_successful = false @@ -1275,6 +1321,12 @@ public return [request_events, request_events_all_successful] end + def InfoRequest.find_in_state(state) + find(:all, :select => '*, ' + last_event_time_clause + ' as last_event_time', + :conditions => ["described_state = ?", state], + :order => "last_event_time") + end + private def set_defaults diff --git a/app/models/info_request_batch.rb b/app/models/info_request_batch.rb new file mode 100644 index 000000000..498ab4951 --- /dev/null +++ b/app/models/info_request_batch.rb @@ -0,0 +1,73 @@ +# == Schema Information +# Schema version: 20131024114346 +# +# Table name: info_request_batches +# +# id :integer not null, primary key +# title :text not null +# user_id :integer not null +# created_at :datetime +# updated_at :datetime +# + +class InfoRequestBatch < ActiveRecord::Base + has_many :info_requests + belongs_to :user + has_and_belongs_to_many :public_bodies + + validates_presence_of :user + validates_presence_of :title + validates_presence_of :body + + # When constructing a new batch, use this to check user hasn't double submitted. + def InfoRequestBatch.find_existing(user, title, body, public_body_ids) + find(:first, :conditions => ['user_id = ? + AND title = ? + AND body = ? + AND info_request_batches_public_bodies.public_body_id in (?)', + user, title, body, public_body_ids], + :include => :public_bodies) + end + + # Create a batch of information requests, returning a list of public bodies + # that are unrequestable from the initial list of public body ids passed. + def create_batch! + unrequestable = [] + created = [] + ActiveRecord::Base.transaction do + public_bodies.each do |public_body| + if public_body.is_requestable? + created << create_request!(public_body) + else + unrequestable << public_body + end + end + self.sent_at = Time.now + self.save! + end + created.each{ |info_request| info_request.outgoing_messages.first.send_message } + + return unrequestable + end + + # Create and send an FOI request to a public body + def create_request!(public_body) + body = OutgoingMessage.fill_in_salutation(self.body, public_body) + info_request = InfoRequest.create_from_attributes({:title => self.title}, + {:body => body}, + self.user) + info_request.public_body_id = public_body.id + info_request.info_request_batch = self + info_request.save! + info_request + end + + def InfoRequestBatch.send_batches() + find_each(:conditions => "sent_at IS NULL") do |info_request_batch| + unrequestable = info_request_batch.create_batch! + mail_message = InfoRequestBatchMailer.batch_sent(info_request_batch, + unrequestable, + info_request_batch.user).deliver + end + end +end diff --git a/app/models/info_request_event.rb b/app/models/info_request_event.rb index e268b28ca..5eed5ba83 100644 --- a/app/models/info_request_event.rb +++ b/app/models/info_request_event.rb @@ -21,6 +21,9 @@ # Email: hello@mysociety.org; WWW: http://www.mysociety.org/ class InfoRequestEvent < ActiveRecord::Base + + extend XapianQueries + belongs_to :info_request validates_presence_of :info_request @@ -416,4 +419,5 @@ class InfoRequestEvent < ActiveRecord::Base yield(column.human_name, self.send(column.name), column.type.to_s, column.name) end end + end diff --git a/app/models/outgoing_message.rb b/app/models/outgoing_message.rb index 6efc1d2ba..a435511d3 100644 --- a/app/models/outgoing_message.rb +++ b/app/models/outgoing_message.rb @@ -1,4 +1,5 @@ # == Schema Information +# Schema version: 20131024114346 # # Table name: outgoing_messages # @@ -67,15 +68,30 @@ class OutgoingMessage < ActiveRecord::Base # How the default letter starts and ends def get_salutation + if self.info_request.is_batch_request_template? + return OutgoingMessage.placeholder_salutation + end ret = "" if self.message_type == 'followup' && !self.incoming_message_followup.nil? && !self.incoming_message_followup.safe_mail_from.nil? && self.incoming_message_followup.valid_to_reply_to? ret = ret + OutgoingMailer.name_for_followup(self.info_request, self.incoming_message_followup) else - ret = ret + self.info_request.public_body.name + return OutgoingMessage.default_salutation(self.info_request.public_body) end salutation = _("Dear {{public_body_name}},", :public_body_name => ret) end + def OutgoingMessage.default_salutation(public_body) + _("Dear {{public_body_name}},", :public_body_name => public_body.name) + end + + def OutgoingMessage.placeholder_salutation + _("Dear [Authority name],") + end + + def OutgoingMessage.fill_in_salutation(body, public_body) + body.gsub(placeholder_salutation, default_salutation(public_body)) + end + def get_signoff if self.message_type == 'followup' && !self.incoming_message_followup.nil? && !self.incoming_message_followup.safe_mail_from.nil? && self.incoming_message_followup.valid_to_reply_to? return _("Yours sincerely,") diff --git a/app/models/profile_photo.rb b/app/models/profile_photo.rb index 322ebe53c..6c3b2cfa0 100644 --- a/app/models/profile_photo.rb +++ b/app/models/profile_photo.rb @@ -70,21 +70,25 @@ class ProfilePhoto < ActiveRecord::Base def data_and_draft_checks if self.data.nil? - errors.add(:data, N_("Please choose a file containing your photo.")) + errors.add(:data, _("Please choose a file containing your photo.")) return end if self.image.nil? - errors.add(:data, N_("Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported.")) + errors.add(:data, _("Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported.")) return end if self.image.format != 'PNG' - errors.add(:data, N_("Failed to convert image to a PNG")) + errors.add(:data, _("Failed to convert image to a PNG")) end if !self.draft && (self.image.columns != WIDTH || self.image.rows != HEIGHT) - errors.add(:data, N_("Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}", :cols => self.image.columns, :rows => self.image.rows, :width => WIDTH, :height => HEIGHT)) + errors.add(:data, _("Failed to convert image to the correct size: at {{cols}}x{{rows}}, need {{width}}x{{height}}", + :cols => self.image.columns, + :rows => self.image.rows, + :width => WIDTH, + :height => HEIGHT)) end if self.draft && self.user_id diff --git a/app/models/public_body.rb b/app/models/public_body.rb index 933825d2a..7b1ded820 100644 --- a/app/models/public_body.rb +++ b/app/models/public_body.rb @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # == Schema Information +# Schema version: 20131024114346 # # Table name: public_bodies # @@ -346,22 +347,26 @@ class PublicBody < ActiveRecord::Base # The "internal admin" is a special body for internal use. def PublicBody.internal_admin_body - I18n.with_locale(I18n.default_locale) do - pb = PublicBody.find_by_url_name("internal_admin_authority") - if pb.nil? - pb = PublicBody.new( - :name => 'Internal admin authority', - :short_name => "", - :request_email => AlaveteliConfiguration::contact_email, - :home_page => "", - :notes => "", - :publication_scheme => "", - :last_edit_editor => "internal_admin", - :last_edit_comment => "Made by PublicBody.internal_admin_body" - ) - pb.save! + # Use find_by_sql to avoid the search being specific to a + # locale, since url_name is a translated field: + sql = "SELECT * FROM public_bodies WHERE url_name = 'internal_admin_authority'" + matching_pbs = PublicBody.find_by_sql sql + case + when matching_pbs.empty? then + I18n.with_locale(I18n.default_locale) do + PublicBody.create!(:name => 'Internal admin authority', + :short_name => "", + :request_email => AlaveteliConfiguration::contact_email, + :home_page => "", + :notes => "", + :publication_scheme => "", + :last_edit_editor => "internal_admin", + :last_edit_comment => "Made by PublicBody.internal_admin_body") end - return pb + when matching_pbs.length == 1 then + matching_pbs[0] + else + raise "Multiple public bodies (#{matching_pbs.length}) found with url_name 'internal_admin_authority'" end end diff --git a/app/models/public_body_change_request.rb b/app/models/public_body_change_request.rb new file mode 100644 index 000000000..0e59cbecc --- /dev/null +++ b/app/models/public_body_change_request.rb @@ -0,0 +1,131 @@ +# == Schema Information +# +# Table name: public_body_change_requests +# +# id :integer not null, primary key +# user_email :string(255) +# user_name :string(255) +# user_id :integer +# public_body_name :text +# public_body_id :integer +# public_body_email :string(255) +# source_url :text +# notes :text +# is_open :boolean default(TRUE), not null +# created_at :datetime not null +# updated_at :datetime not null +# + +class PublicBodyChangeRequest < ActiveRecord::Base + + belongs_to :user + belongs_to :public_body + validates_presence_of :public_body_name, :message => N_("Please enter the name of the authority"), + :unless => proc{ |change_request| change_request.public_body } + validates_presence_of :user_name, :message => N_("Please enter your name"), + :unless => proc{ |change_request| change_request.user } + validates_presence_of :user_email, :message => N_("Please enter your email address"), + :unless => proc{ |change_request| change_request.user } + validate :user_email_format, :unless => proc{ |change_request| change_request.user_email.blank? } + validate :body_email_format, :unless => proc{ |change_request| change_request.public_body_email.blank? } + + scope :new_body_requests, :conditions => ['public_body_id IS NULL'], :order => 'created_at' + scope :body_update_requests, :conditions => ['public_body_id IS NOT NULL'], :order => 'created_at' + scope :open, :conditions => ['is_open = ?', true] + + def self.from_params(params, user) + change_request = new + change_request.update_from_params(params, user) + end + + def update_from_params(params, user) + if user + self.user_id = user.id + else + self.user_name = params[:user_name] + self.user_email = params[:user_email] + end + self.public_body_name = params[:public_body_name] + self.public_body_id = params[:public_body_id] + self.public_body_email = params[:public_body_email] + self.source_url = params[:source_url] + self.notes = params[:notes] + self + end + + def get_user_name + user ? user.name : user_name + end + + def get_user_email + user ? user.email : user_email + end + + def get_public_body_name + public_body ? public_body.name : public_body_name + end + + def send_message + if public_body + ContactMailer.update_public_body_email(self).deliver + else + ContactMailer.add_public_body(self).deliver + end + end + + def thanks_notice + if self.public_body + _("Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon.", + :public_body_name => get_public_body_name) + else + _("Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon.") + end + end + + def send_response(subject, response) + ContactMailer.from_admin_message(get_user_name, + get_user_email, + subject, + response.strip.html_safe).deliver + end + + def comment_for_public_body + comments = ["Requested by: #{get_user_name} (#{get_user_email})"] + if !source_url.blank? + comments << "Source URL: #{source_url}" + end + if !notes.blank? + comments << "Notes: #{notes}" + end + comments.join("\n") + end + + def default_response_subject + if self.public_body + _("Your request to update {{public_body_name}} on {{site_name}}", :site_name => AlaveteliConfiguration::site_name, + :public_body_name => public_body.name) + else + _("Your request to add {{public_body_name}} to {{site_name}}", :site_name => AlaveteliConfiguration::site_name, + :public_body_name => public_body_name) + end + end + + def close! + self.is_open = false + self.save! + end + + private + + def body_email_format + unless MySociety::Validate.is_valid_email(self.public_body_email) + errors.add(:public_body_email, _("The authority email doesn't look like a valid address")) + end + end + + def user_email_format + unless MySociety::Validate.is_valid_email(self.user_email) + errors.add(:user_email, _("Your email doesn't look like a valid address")) + end + end +end diff --git a/app/models/track_thing.rb b/app/models/track_thing.rb index d5e1cdb75..d5dda7bb5 100644 --- a/app/models/track_thing.rb +++ b/app/models/track_thing.rb @@ -311,7 +311,7 @@ class TrackThing < ActiveRecord::Base end # When constructing a new track, use this to avoid duplicates / double posting - def TrackThing.find_by_existing_track(tracking_user, track) + def TrackThing.find_existing(tracking_user, track) if tracking_user.nil? return nil end diff --git a/app/models/user.rb b/app/models/user.rb index 2c4f87944..e63ce8129 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,4 +1,5 @@ # == Schema Information +# Schema version: 20131024114346 # # Table name: users # @@ -20,6 +21,7 @@ # email_bounce_message :text default(""), not null # no_limit :boolean default(FALSE), not null # receive_email_alerts :boolean default(TRUE), not null +# can_make_batch_requests :boolean default(FALSE), not null # require 'digest/sha1' @@ -40,6 +42,7 @@ class User < ActiveRecord::Base has_many :comments, :order => 'created_at desc' has_one :profile_photo has_many :censor_rules, :order => 'created_at desc' + has_many :info_request_batches, :order => 'created_at desc' attr_accessor :password_confirmation, :no_xapian_reindex validates_confirmation_of :password, :message => _("Please enter the same password twice") @@ -269,6 +272,9 @@ class User < ActiveRecord::Base # Some users have no limit return false if self.no_limit + # Batch request users don't have a limit + return false if self.can_make_batch_requests? + # Has the user issued as many as MAX_REQUESTS_PER_USER_PER_DAY requests in the past 24 hours? return false if AlaveteliConfiguration::max_requests_per_user_per_day.blank? recent_requests = InfoRequest.count(:conditions => ["user_id = ? and created_at > now() - '1 day'::interval", self.id]) diff --git a/app/views/admin_general/_change_request_summary.html.erb b/app/views/admin_general/_change_request_summary.html.erb new file mode 100644 index 000000000..bec49c12c --- /dev/null +++ b/app/views/admin_general/_change_request_summary.html.erb @@ -0,0 +1,60 @@ +<table class="table table-striped table-condensed"> + <tbody> + <tr> + <td> + <b>Authority</b> + </td> + <td> + <%= @change_request.get_public_body_name %> + </td> + </tr> + + <% if @change_request.public_body %> + <tr> + <td> + <b>Current address</b> + </td> + <td> + <%= @change_request.public_body.request_email %> + </td> + </tr> + <% end %> + + <tr> + <td> + <b>Suggested address</b> + </td> + <td> + <%= @change_request.public_body_email %> + </td> + </tr> + + <tr> + <td> + <b>Source</b> + </td> + <td> + <%= @change_request.source_url %> + </td> + </tr> + + <tr> + <td> + <b>Requested by</b> + </td> + <td> + <%= @change_request.get_user_name %> (<%= @change_request.get_user_email %>) + </td> + </tr> + + <tr> + <td> + <b>Requested on</b> + </td> + <td> + <%= I18n.l(@change_request.created_at, :format => "%e %B %Y %H:%M:%S") %> + (<%= "#{time_ago_in_words(@change_request.created_at)} ago" %>) + </td> + </tr> + </tbody> +</table> diff --git a/app/views/admin_general/index.html.erb b/app/views/admin_general/index.html.erb index 976860fa7..2202663be 100644 --- a/app/views/admin_general/index.html.erb +++ b/app/views/admin_general/index.html.erb @@ -174,9 +174,39 @@ </div> </div> <% end %> + + <% if @new_body_requests.size > 0 %> + <div class="accordion-group"> + <div class="accordion-heading"> + <a class="accordion-toggle" href="#new-authorities" data-toggle="collapse" data-parent="things-to-do"><span class="label label-important"><%= @new_body_requests.size %></span><%= chevron_right %> Add new authorities</a> + </div> + <div id="new-authorities" class="accordion-body collapse"> + <% for @change_request in @new_body_requests %> + <%= render :partial => 'change_request_summary'%> + <%= link_to("Close and respond", admin_change_request_edit_path(@change_request), :class => 'btn') %> + <%= link_to("Add authority", admin_body_new_path(:change_request_id => @change_request.id), :class => 'btn btn-primary') %> + <% end %> + </div> + </div> + <% end %> + + <% if @body_update_requests.size > 0 %> + <div class="accordion-group"> + <div class="accordion-heading"> + <a class="accordion-toggle" href="#update-authorities" data-toggle="collapse" data-parent="things-to-do"><span class="label label-important"><%= @body_update_requests.size %></span><%= chevron_right %> Update authorities</a> + </div> + <div id="update-authorities" class="accordion-body collapse"> + <% for @change_request in @body_update_requests %> + <%= render :partial => 'change_request_summary' %> + <%= link_to("Close and respond", admin_change_request_edit_path(@change_request), :class => 'btn') %> + <%= link_to("Make update", admin_body_edit_path(@change_request.public_body, :change_request_id => @change_request.id), :class => 'btn btn-primary') %> + <% end %> + </div> + </div> + <% end %> </div> -<% if @holding_pen_messages.size == 0 && @old_unclassified.size == 0 && @requires_admin_requests.size == 0 && @blank_contacts.size == 0 && @attention_requests.size == 0 %> +<% if @holding_pen_messages.size == 0 && @old_unclassified.size == 0 && @requires_admin_requests.size == 0 && @blank_contacts.size == 0 && @attention_requests.size == 0 && @new_body_requests.size == 0 && @body_update_requests.size == 0 %> <div class="row"> <div class="span12 alert alert-success"> No pending administration required. diff --git a/app/views/admin_public_body/_form.html.erb b/app/views/admin_public_body/_form.html.erb index 5a80386ec..2da13ab01 100644 --- a/app/views/admin_public_body/_form.html.erb +++ b/app/views/admin_public_body/_form.html.erb @@ -95,4 +95,8 @@ <p class="help-block">put URL or other source of new info</p> </div> </div> +<% if @change_request %> + <%= render :partial => 'admin_public_body_change_requests/response' %> + +<% end %> <!--[eoform:public_body]--> diff --git a/app/views/admin_public_body/new.html.erb b/app/views/admin_public_body/new.html.erb index 13e8238d6..24b27d7af 100644 --- a/app/views/admin_public_body/new.html.erb +++ b/app/views/admin_public_body/new.html.erb @@ -6,13 +6,15 @@ <div id="public_body_form"> <%= form_for @public_body, :as => :public_body, :url => admin_body_create_path, :html => {:class => "form form-horizontal"} do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> + + <div class="form-actions"> <%= f.submit "Create", :class => "btn btn-primary" %> </div> <% end %> <div class="row"> <div class="span8 well"> - <%= link_to _('List all'), 'list' %> + <%= link_to 'List all', admin_body_list_path, :class => "btn" %> </div> </div> </div> diff --git a/app/views/admin_public_body/show.html.erb b/app/views/admin_public_body/show.html.erb index 8262287d5..f8161db26 100644 --- a/app/views/admin_public_body/show.html.erb +++ b/app/views/admin_public_body/show.html.erb @@ -67,7 +67,10 @@ </div> <% if i == versions.length - 1 %> <div class="span6"> - <%=_("This is the first version.")%> + <p>“<%= h(historic_public_body.last_edit_comment) %>”</p> + <ul> + <li><%=_("This is the first version.")%></li> + </ul> </div> <% else %> <div class="span6"> diff --git a/app/views/admin_public_body_change_requests/_response.html.erb b/app/views/admin_public_body_change_requests/_response.html.erb new file mode 100644 index 000000000..7fda8b7f8 --- /dev/null +++ b/app/views/admin_public_body_change_requests/_response.html.erb @@ -0,0 +1,15 @@ +<h3>Response to change request (will be emailed to user):</h3> +<%= hidden_field_tag 'change_request_id', @change_request.id %> +<div class="control-group" id="change_request_user_subject"> + <label for="change_request_user_subject_field" class="control-label">Subject of email:</label> + <div class="controls"> + <%= text_field_tag "subject", (params[:subject] || @change_request.default_response_subject), {:id => "change_request_user_subject_field", :class => "span6"} %> + </div> +</div> + +<div class="control-group" id="change_request_user_response"> + <label for="change_request_user_response_field" class="control-label">Response</label> + <div class="controls"> + <%= text_area_tag "response", (params[:response] || h(@change_request_user_response)), {:id => "change_request_user_response_field", :rows => 10, :class => 'span6'} %> + </div> +</div> diff --git a/app/views/admin_public_body_change_requests/add_accepted.txt.erb b/app/views/admin_public_body_change_requests/add_accepted.txt.erb new file mode 100644 index 000000000..fb22466b0 --- /dev/null +++ b/app/views/admin_public_body_change_requests/add_accepted.txt.erb @@ -0,0 +1,9 @@ +<%= _("Dear {{user_name}},", :user_name => @change_request.get_user_name) %> + +<%= _("Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:", :public_body_name => @change_request.public_body_name) %> + +<%= _("[Authority URL will be inserted here]")%> + +<%= _("Yours,") %> + +<%= _("The {{site_name}} team.", :site_name => site_name) %> diff --git a/app/views/admin_public_body_change_requests/edit.html.erb b/app/views/admin_public_body_change_requests/edit.html.erb new file mode 100644 index 000000000..cc9c5b5d9 --- /dev/null +++ b/app/views/admin_public_body_change_requests/edit.html.erb @@ -0,0 +1,8 @@ +<h1><%=@title%></h1> + +<%= form_tag admin_change_request_update_path(@change_request), :class => "form form-horizontal" do %> + <%= render :partial => 'admin_public_body_change_requests/response'%> + <div class="form-actions"> + <%= submit_tag 'Close', :accesskey => 'c', :class => "btn btn-primary" %> + </div> +<% end %> diff --git a/app/views/admin_public_body_change_requests/update_accepted.txt.erb b/app/views/admin_public_body_change_requests/update_accepted.txt.erb new file mode 100644 index 000000000..9c29c959b --- /dev/null +++ b/app/views/admin_public_body_change_requests/update_accepted.txt.erb @@ -0,0 +1,7 @@ +<%= _("Dear {{user_name}},", :user_name => @change_request.get_user_name) %> + +<%= _("Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address.", :public_body_name => @change_request.public_body.name, :public_body_email => @change_request.public_body_email) %> + +<%= _("Yours,") %> + +<%= _("The {{site_name}} team.", :site_name => site_name) %> diff --git a/app/views/admin_request/_some_annotations.html.erb b/app/views/admin_request/_some_annotations.html.erb new file mode 100644 index 000000000..dfd46f828 --- /dev/null +++ b/app/views/admin_request/_some_annotations.html.erb @@ -0,0 +1,48 @@ +<% if comments.size > 0 %> + <div class="accordion" id="comments"> + <% for comment in comments %> + <div class="accordion-group"> + <div class="accordion-heading"> + <a href="#comment_<%=comment.id%>" data-toggle="collapse" data-parent="#comments"><%= chevron_right %></a> + <%= link_to admin_request_edit_comment_path(comment) do %> + #<%=comment.id%> + -- + <%=h(comment.user.name)%> + <%=admin_value(comment.created_at)%> + <% end %> + <blockquote class="incoming-message"> + <%= truncate(comment.body, :length => 400) %> + </blockquote> + </div> + <div id="comment_<%=comment.id%>" class="accordion-body collapse"> + <table class="table table-striped table-condensed"> + <tbody> + <tr> + <td colspan="2"> + By <%= user_both_links(comment.user) %> + </td> + </tr> + <% comment.for_admin_column do |name, value, type, column_name |%> + <tr> + <td> + <b><%=name%></b> + </td> + <td> + <% if column_name == 'body' && !comment.visible %> + <s><%=h comment.send(column_name) %></s> + <% else %> + <%=h comment.send(column_name) %> + <% end %> + </td> + </tr> + <% end %> + </tbody> + </table> + </div> + </div> + <% end %> + </div> +<% else %> + <p>None yet.</p> +<% end %> + diff --git a/app/views/admin_request/show.html.erb b/app/views/admin_request/show.html.erb index 83d9c3764..2589e52b4 100644 --- a/app/views/admin_request/show.html.erb +++ b/app/views/admin_request/show.html.erb @@ -325,53 +325,8 @@ <hr> <h2>Annotations</h2> -<% if @info_request.comments.size > 0 %> - <div class="accordion" id="comments"> - <% for comment in @info_request.comments %> - <div class="accordion-group"> - <div class="accordion-heading"> - <a href="#comment_<%=comment.id%>" data-toggle="collapse" data-parent="#comments"><%= chevron_right %></a> - <%= link_to admin_request_edit_comment_path(comment) do %> - #<%=comment.id%> - -- - <%=h(comment.user.name)%> - <%=admin_value(comment.created_at)%> - <% end %> - <blockquote class="incoming-message"> - <%= truncate(comment.body, :length => 400) %> - </blockquote> - </div> - <div id="comment_<%=comment.id%>" class="accordion-body collapse"> - <table class="table table-striped table-condensed"> - <tbody> - <tr> - <td colspan="2"> - By <%= user_both_links(comment.user) %> - </td> - </tr> - <% comment.for_admin_column do |name, value, type, column_name |%> - <tr> - <td> - <b><%=name%></b> - </td> - <td> - <% if column_name == 'body' && !comment.visible %> - <s><%=h comment.send(column_name) %></s> - <% else %> - <%=h comment.send(column_name) %> - <% end %> - </td> - </tr> - <% end %> - </tbody> - </table> - </div> - </div> - <% end %> - </div> -<% else %> - <p>None yet.</p> -<% end %> +<%= render :partial => 'admin_request/some_annotations' , :locals => { :comments => @info_request.comments } %> + <hr> <h2>Mail server delivery logs</h2> diff --git a/app/views/admin_user/_form.html.erb b/app/views/admin_user/_form.html.erb index e7175d09c..f1edc0927 100644 --- a/app/views/admin_user/_form.html.erb +++ b/app/views/admin_user/_form.html.erb @@ -64,3 +64,12 @@ </div> </div> </div> +<div class="control-group"> + <label for="admin_user_can_make_batch_requests" class="control-label">Can make batch requests</label> + <div class="controls"> + <%= check_box 'admin_user', 'can_make_batch_requests' %> + <div class="help-block"> + allows the user to send a request to multiple authorities at once + </div> + </div> +</div> diff --git a/app/views/admin_user/show.html.erb b/app/views/admin_user/show.html.erb index c93c08e50..6d12aeff5 100644 --- a/app/views/admin_user/show.html.erb +++ b/app/views/admin_user/show.html.erb @@ -91,6 +91,12 @@ <hr> +<h2>Annotations</h2> + +<%= render :partial => 'admin_request/some_annotations' , :locals => { :comments => @admin_user.comments } %> + +<hr> + <h2>Censor rules</h2> <%= render :partial => 'admin_censor_rule/show', :locals => { :censor_rules => @admin_user.censor_rules, :user => @admin_user } %> diff --git a/app/views/comment/_comment_form.html.erb b/app/views/comment/_comment_form.html.erb index b78532768..6ca3f4c9f 100644 --- a/app/views/comment/_comment_form.html.erb +++ b/app/views/comment/_comment_form.html.erb @@ -3,7 +3,7 @@ <%= f.text_area :body, :rows => 10, :cols => 55 %> </p> - <% if !TrackThing.find_by_existing_track(@user, track_thing) && (!@user || @info_request.user != @user) %> + <% if !TrackThing.find_existing(@user, track_thing) && (!@user || @info_request.user != @user) %> <p> <%= check_box_tag 'subscribe_to_request', "1", params[:subscribe_to_request] ? true : false %> <label for="subscribe_to_request"><%= _('Email me future updates to this request') %></label> </p> diff --git a/app/views/contact_mailer/add_public_body.text.erb b/app/views/contact_mailer/add_public_body.text.erb new file mode 100644 index 000000000..5baa1fa1a --- /dev/null +++ b/app/views/contact_mailer/add_public_body.text.erb @@ -0,0 +1,19 @@ +<%= _("{{user_name}} would like a new authority added to {{site_name}}", :user_name => @change_request.get_user_name, :site_name => site_name) %> + +<%= _("Authority:") %> +<%= @change_request.get_public_body_name %> + +<%= _("Email:") %> +<%= @change_request.public_body_email %> + +<%= _("Source:") %> +<%= @change_request.source_url %> + +<%= _("Notes:") %> +<%= @change_request.notes %> + +<%= _('Add the authority:') %> +<%= admin_body_new_url(:change_request_id => @change_request.id, :only_path => false ) %> + +<%= _('Close the request and respond:') %> +<%= admin_change_request_edit_url(:id => @change_request.id, :only_path => false ) %> diff --git a/app/views/contact_mailer/update_public_body_email.text.erb b/app/views/contact_mailer/update_public_body_email.text.erb new file mode 100644 index 000000000..7d5a3dae0 --- /dev/null +++ b/app/views/contact_mailer/update_public_body_email.text.erb @@ -0,0 +1,16 @@ +<%= _("{{user_name}} would like the email address for {{public_body_name}} to be updated", :user_name => @change_request.get_user_name, :public_body_name => @change_request.get_public_body_name) %> + +<%= _("Email:") %> +<%= @change_request.public_body_email %> + +<%= _("Source:") %> +<%= @change_request.source_url %> + +<%= _("Notes:") %> +<%= @change_request.notes %> + +<%= _('Update the address:') %> +<%= admin_body_edit_path(@change_request.public_body, :change_request_id => @change_request.id, :only_path => false) %> + +<%= _('Close the request and respond:') %> +<%= admin_change_request_edit_url(:id => @change_request.id, :only_path => false ) %> diff --git a/app/views/help/api.html.erb b/app/views/help/api.html.erb index df7bb30b6..c6488f93e 100644 --- a/app/views/help/api.html.erb +++ b/app/views/help/api.html.erb @@ -71,7 +71,15 @@ </p> </dd> - </dl> + + + <dt> 5. Write API </dt> + <dd> + <p> + The write API is designed to be used by authorities to create their own requests in the system. The API is currently used by mySociety's <a href="https://github.com/mysociety/foi-register">FOI Register software</a> to support using Alaveteli as a disclosure log for all FOI activity at a particular public body. More technical information about the write API is available on the <a href="https://github.com/mysociety/alaveteli/wiki/API#write-api">Alaveteli wiki</a>. + </p> + </dd> +</dl> <p>Please <a href="<%= help_contact_path %>">contact us</a> if you need an API feature that isn't there yet. It's very much a work in progress, and we do add things when people ask us to.</p> diff --git a/app/views/help/privacy.html.erb b/app/views/help/privacy.html.erb index 3e26907fd..f0e82ab13 100644 --- a/app/views/help/privacy.html.erb +++ b/app/views/help/privacy.html.erb @@ -84,6 +84,11 @@ ask a friend to. We don't have the resources to do this for everyone. </dd> +<dt id="anonymous">Why are there anonymous requests on the site? <a href="#anonymous">#</a> </dt> +<dd> +Some public authorities are using mySociety's <a href="https://github.com/mysociety/foi-register">FOI Register</a> software in order to use WhatDoTheyKnow as a disclosure log for all their FOI activity. When people make requests to the authority their names will usually be withheld from publication just as they would in an authority disclosure log on an authority website. +</dd> + <dt id="full_address">They've asked for my postal address! <a href="#full_address">#</a> </dt> <dd> diff --git a/app/views/help/requesting.html.erb b/app/views/help/requesting.html.erb index d9397d763..51358c6d9 100644 --- a/app/views/help/requesting.html.erb +++ b/app/views/help/requesting.html.erb @@ -30,7 +30,7 @@ <dt id="missing_body">You're missing the public authority that I want to request from! <a href="#missing_body">#</a> </dt> <dd> - <p>Please <a href="<%= help_contact_path %>">contact us</a> with the name of the public authority and, + <p>Please <a href="<%= new_change_request_path %>">contact us</a> with the name of the public authority and, if you can find it, their contact email address for Freedom of Information requests. </p> <p>If you'd like to help add a whole category of public authority to the site, we'd love diff --git a/app/views/info_request_batch/_info_request_batch.html.erb b/app/views/info_request_batch/_info_request_batch.html.erb new file mode 100644 index 000000000..86ef90654 --- /dev/null +++ b/app/views/info_request_batch/_info_request_batch.html.erb @@ -0,0 +1,15 @@ +<div class="request_listing"> + <div class="request_left"> + <span class="head"> + <%= link_to highlight_words(info_request_batch.title, @highlight_words), info_request_batch_path(info_request_batch) %> + </span> + <div class="requester"> + <%= _('Batch created by {{info_request_user}} on {{date}}.', :info_request_user => user_link_absolute(info_request_batch.user),:date=>simple_date(info_request_batch.created_at)) %> + </div> + </div> + <div class="request_right"> + <span class="desc"> + <%= excerpt(info_request_batch.body, '', :radius => 150) %> + </span> + </div> +</div> diff --git a/app/views/info_request_batch/show.html.erb b/app/views/info_request_batch/show.html.erb new file mode 100644 index 000000000..aaecdd45d --- /dev/null +++ b/app/views/info_request_batch/show.html.erb @@ -0,0 +1,25 @@ +<% @title = _("{{title}} - a batch request", :title => @info_request_batch.title) %> +<h1><%= @title %></h1> +<% if @info_request_batch.sent_at %> + <%= n_('Sent to one authority by {{info_request_user}} on {{date}}.', 'Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}.', @info_request_batch.info_requests.size, :authority_count=> @info_request_batch.info_requests.size, :info_request_user => user_link(@info_request_batch.user), :date => simple_date(@info_request_batch.sent_at)) %> + <div class="results_section"> + <div class="results_block"> + <% @info_requests.each do |info_request| %> + <%= render :partial => 'request/request_listing_via_event', :locals => { :event => info_request.last_event_forming_initial_request, :info_request => info_request } %> + <% end %> + </div> + <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @info_request_batch.info_requests.visible.count) %> + </div> + +<% else %> + <%= _('Created by {{info_request_user}} on {{date}}.', :info_request_user => user_link(@info_request_batch.user), :date => simple_date(@info_request_batch.created_at)) %> + <%= _('Requests will be sent to the following bodies:') %> + <div class="results_section"> + <div class="results_block"> + <%= render :partial => 'public_body/body_listing', :locals => { :public_bodies => @public_bodies } %> + </div> + <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @info_request_batch.public_bodies.count) %> + </div> + +<% end %> + diff --git a/app/views/info_request_batch_mailer/batch_sent.text.erb b/app/views/info_request_batch_mailer/batch_sent.text.erb new file mode 100644 index 000000000..25fb7d06a --- /dev/null +++ b/app/views/info_request_batch_mailer/batch_sent.text.erb @@ -0,0 +1,15 @@ +<%= _('Your batch request "{{title}}" has been sent', :title => @info_request_batch.title) %> + + +<%= _('Follow this link to see the requests:')%> + +<%= @url %> + +<% if !@unrequestable.empty? %> +<%= _('Unfortunately, we do not have a working address for {{public_body_names}}.', :public_body_names => @unrequestable.map{|body| body.name}.join(",")) %> +<%= _('You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:') %> + +<%= help_contact_url %> + +<% end %> +-- <%= _('the {{site_name}} team', :site_name => site_name) %> diff --git a/app/views/outgoing_mailer/initial_request.text.erb b/app/views/outgoing_mailer/initial_request.text.erb index 5c418ecc7..b0f1dc9e8 100644 --- a/app/views/outgoing_mailer/initial_request.text.erb +++ b/app/views/outgoing_mailer/initial_request.text.erb @@ -6,7 +6,7 @@ <%= @info_request.incoming_email %> <%= _('Is {{email_address}} the wrong address for {{type_of_request}} requests to {{public_body_name}}? If so, please contact us using this form:', :email_address => @info_request.public_body.request_email, :type_of_request => @info_request.law_used_full, :public_body_name => @info_request.public_body.name)%> -<%= help_contact_url %> +<%= new_change_request_url(:body => @info_request.public_body.url_name) %> <%= render :partial => 'followup_footer' %> diff --git a/app/views/public_body/show.html.erb b/app/views/public_body/show.html.erb index b35e29eea..c36396149 100644 --- a/app/views/public_body/show.html.erb +++ b/app/views/public_body/show.html.erb @@ -32,6 +32,7 @@ <% end %> <% end %> <%= link_to _('View FOI email address'), view_public_body_email_path(@public_body.url_name) %><br> + <%= link_to _("Ask us to update FOI email"), new_change_request_path(:body => @public_body.url_name) %><br> </div> <div id="header_left"> diff --git a/app/views/public_body/view_email.html.erb b/app/views/public_body/view_email.html.erb index 3f0a558c7..5f4bc95f4 100644 --- a/app/views/public_body/view_email.html.erb +++ b/app/views/public_body/view_email.html.erb @@ -1,4 +1,4 @@ -<% @title = "FOI email address for '" + h(@public_body.name) + "'" %> +<% @title = _("FOI email address for {{public_body}}", :public_body => h(@public_body.name)) %> <h1><%= _('FOI email address for {{public_body}}',:public_body=> public_body_link(@public_body))%></h1> @@ -35,9 +35,9 @@ <div id="stepwise_make_request_view_email"> <strong> <% if @public_body.eir_only? %> - <%= link_to "Make a new EIR request", new_request_to_body_path(:url_name => @public_body.url_name)%> + <%= link_to _("Make a new EIR request"), new_request_to_body_path(:url_name => @public_body.url_name)%> <% else %> - <%= link_to "Make a new FOI request", new_request_to_body_path(:url_name => @public_body.url_name)%> + <%= link_to _("Make a new FOI request"), new_request_to_body_path(:url_name => @public_body.url_name)%> <% end %> to <%= h(@public_body.name) %> </strong> diff --git a/app/views/public_body_change_requests/new.html.erb b/app/views/public_body_change_requests/new.html.erb new file mode 100644 index 000000000..7079cd868 --- /dev/null +++ b/app/views/public_body_change_requests/new.html.erb @@ -0,0 +1,61 @@ +<h1><%= @title %></h1> +<%= foi_error_messages_for :change_request %> + <%= form_for(@change_request, :url => change_request_path) do |f| %> +<% if not @user %> + <p> + <label class="form_label" for="user_name"> + <%= _("Your name:") %> + </label> + <%= f.text_field :user_name %> + <%= _('(or <a href="{{url}}">sign in</a>)', :url => signin_path(:r => request.fullpath)) %> + </p> + + <p> + <label class="form_label" for="user_email"> + <%= ("Your email:") %> + </label> + <%= f.text_field :user_email %> + </p> +<% end %> +<% if @change_request.public_body %> + <%= f.hidden_field :public_body_id %> +<% else %> + <p> + <label class="form_label" for="public_body_name"> + <%= _("Authority:") %> + </label> + <%= f.text_field :public_body_name %> + </p> +<% end %> + <p> + <label class="form_label" for="public_body_email"> + <%= _("Authority email:") %> + </label> + <%= f.text_field :public_body_email %> + <div class="form_item_note"> + <%= _("The contact email address for FOI requests to the authority.") %> + </div> + </p> + + <p> + <label class="form_label" for="source_url"> + <%= _("Source URL:") %> + </label> + <%= f.text_field :source_url %> + <div class="form_item_note"> + <%= _("The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check.") %> + </div> + </p> + + <p> + <label class="form_label" for="notes"> + <%= _("Notes:") %> + </label> + <%= f.text_area :notes, :rows => 10, :cols => 60 %> + </p> + + <div class="form_button"> + <%= submit_tag _("Submit request") %> + </div> + +<% end %> diff --git a/app/views/reports/new.html.erb b/app/views/reports/new.html.erb index 7d558ab4e..1197b2255 100644 --- a/app/views/reports/new.html.erb +++ b/app/views/reports/new.html.erb @@ -4,17 +4,17 @@ <p><%= _("This request has already been reported for administrator attention") %></p> <% else %> <p> - Reporting a request notifies the site administrators. They will respond as soon as possible. + <%= _("Reporting a request notifies the site administrators. They will respond as soon as possible.") %> </p> - <p>Why specifically do you consider this request unsuitable?</p> + <p><%= _("Why specifically do you consider this request unsuitable?") %></p> <%= form_tag request_report_path(:request_id => @info_request.url_title) do %> <p> <label class="form_label" for="reason">Reason:</label> - <%= select_tag :reason, options_for_select(@info_request.report_reasons, @reason), :prompt => "Choose a reason" %> + <%= select_tag :reason, options_for_select(@info_request.report_reasons, @reason), :prompt => _("Choose a reason") %> </p> <p> - <label class="form_label" for="message">Please tell us more:</label> + <label class="form_label" for="message"><%= _("Please tell us more:") %></label> <%= text_area_tag :message, @message, :rows => 10, :cols => 60 %> </p> diff --git a/app/views/request/_list_results.html.erb b/app/views/request/_list_results.html.erb new file mode 100644 index 000000000..4da042816 --- /dev/null +++ b/app/views/request/_list_results.html.erb @@ -0,0 +1,12 @@ + <% @results = InfoRequest.request_list(@filters, @page, @per_page, @max_results) %> + <% if @results[:results].empty? %> + <p> <%= _('No requests of this sort yet.')%></p> + <% else %> + <h2 class="foi_results"><%= _('{{count}} FOI requests found', :count => @results[:matches_estimated]) %></h2> + <div class="results_block"> + <% @results[:results].each do |result| %> + <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result, :info_request => result.info_request } %> + <% end %> + </div> + <% end %> + <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @results[:show_no_more_than]) %> diff --git a/app/views/request/batch_not_allowed.html.erb b/app/views/request/batch_not_allowed.html.erb new file mode 100644 index 000000000..156fa9ae1 --- /dev/null +++ b/app/views/request/batch_not_allowed.html.erb @@ -0,0 +1 @@ +<%= _('Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href="{{url}}">contact us</a> if you think you have good reason to send the same request to multiple authorities at once.', :url => help_contact_path.html_safe) %> diff --git a/app/views/request/list.html.erb b/app/views/request/list.html.erb index 062b77c3e..a465f03ba 100644 --- a/app/views/request/list.html.erb +++ b/app/views/request/list.html.erb @@ -14,21 +14,11 @@ <div style="clear:both"></div> <div class="results_section"> - <% # TODO: Cache for 5 minutes %> - <% if @list_results.empty? %> - <p> <%= _('No requests of this sort yet.')%></p> - <% else %> - <h2 class="foi_results"><%= _('{{count}} FOI requests found', :count => @matches_estimated) %></h2> - <div class="results_block"> - <% for result in @list_results%> - <% if result.class.to_s == 'InfoRequestEvent' %> - <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result, :info_request => result.info_request } %> - <% else %> - <p><strong><%= _('Unexpected search result type') %> <%=result.class.to_s%></strong></p> - <% end %> - <% end %> - </div> + <% if key = request_list_cache_key %> + <% cache_if_caching_fragments(key, :expires_in => 5.minutes) do %> + <%= render :partial => 'list_results' %> <% end %> - - <%= will_paginate WillPaginate::Collection.new(@page, @per_page, @show_no_more_than) %> + <% else %> + <%= render :partial => 'list_results' %> + <% end %> </div> diff --git a/app/views/request/new.html.erb b/app/views/request/new.html.erb index 849a94216..7f1332464 100644 --- a/app/views/request/new.html.erb +++ b/app/views/request/new.html.erb @@ -1,23 +1,27 @@ -<script type="text/javascript"> - $(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), function() { - // When following links in typeahead results, open new tab/window - $("#typeahead_response a").attr("target","_blank"); - - // Update the public body site search link - $("#body-site-search-link").attr("href", "http://www.google.com/#q="+encodeURI($("#typeahead_search").val())+ - "+site:<%= @info_request.public_body.calculated_home_page %>"); - }); - })); - - }); -</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)) %> - +<% unless @batch %> + <script type="text/javascript"> + $(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), function() { + // When following links in typeahead results, open new tab/window + $("#typeahead_response a").attr("target","_blank"); + + // Update the public body site search link + $("#body-site-search-link").attr("href", "http://www.google.com/#q="+encodeURI($("#typeahead_search").val())+ + "+site:<%= @info_request.public_body.calculated_home_page %>"); + }); + })); + + }); + </script> +<% end %> +<% if @batch %> + <% @title = _("Make an {{law_used_short}} request", :law_used_short=>h(@info_request.law_used_short)) %> +<% else %> + <% @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)) %> +<% end %> <h1><%= _('2. Ask for Information') %></h1> <% if @existing_request %> @@ -29,53 +33,82 @@ </li> </ul></div> <% end %> + <% if @existing_batch %> + <div class="errorExplanation" id="errorExplanation"><ul> + <li> + <%= _('You already created the same batch of requests on {{date}}. You can either view the <a href="{{existing_batch}}">existing batch</a>, or edit the details below to make a new but similar batch of requests.', :date=>simple_date(@existing_batch.created_at), :existing_batch=>info_request_batch_path(@existing_batch)) %> + </li> + </ul></div> + <% end %> <%= foi_error_messages_for :info_request, :outgoing_message %> - <%= form_for(@info_request, :url => new_request_path, :html => { :id => 'write_form' } ) do |f| %> + <%= form_for(@info_request, :url => (@batch ? new_batch_path : new_request_path), :html => { :id => 'write_form' } ) do |f| %> <div id="request_header"> <div id="request_header_body"> <label class="form_label"><%= _('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_path(@info_request.public_body)) %> - <% else %> - <%= _("Browse <a href='{{url}}'>other requests</a> for examples of how to word your request.", :url=>request_list_url) %> - <% end %> - </div> - <% if @info_request.public_body.has_notes? %> - <div id="request_header_text"> - <h3><%= _('Special note for this authority!') %></h3> - <p><%= @info_request.public_body.notes_as_html.html_safe %></p> - </div> + <% if @batch %> + <span id="to_public_body"> + <%= _("Your selected authorities") %> + <span class="batch_public_body_toggle" data-hidetext="<%= _("(hide)") %>" data-showtext="<%= _("(show)") %>"><a class="toggle-message"></a></span> + </span> + + <div class="batch_public_body_list"> + <ul> + <% @public_bodies.each do |public_body| %> + <li><%= public_body.name %></li> + <% end %> + </ul> + </div> + + <% else %> + <span id="to_public_body"> + <%=h(@info_request.public_body.name)%> + </span> <% end %> - <% if @info_request.public_body.eir_only? %> - <h3><%= _('Please ask for environmental information only') %></h3> + <% unless @batch %> + <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_path(@info_request.public_body)) %> + <% else %> + <%= _("Browse <a href='{{url}}'>other requests</a> for examples of how to word your request.", :url=>request_list_url) %> + <% end %> + </div> + + <% if @info_request.public_body.has_notes? %> + <div id="request_header_text"> + <h3><%= _('Special note for this authority!') %></h3> + <p><%= @info_request.public_body.notes_as_html.html_safe %></p> + </div> + <% end %> + + <% 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 + <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 + <%= _('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 + <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, + <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 + <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> + <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 + <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 %> + <% end %> + <% end %> </div> <div id="request_header_subject"> @@ -132,7 +165,13 @@ </p> <div class="form_button"> - <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> + <% if @batch %> + <% params[:public_body_ids].each do |public_body_id| %> + <%= hidden_field_tag("public_body_ids[]", public_body_id)%> + <% end %> + <% else %> + <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> + <% end %> <%= hidden_field_tag(:submitted_new_request, 1 ) %> <%= hidden_field_tag(:preview, 1 ) %> <%= submit_tag _("Preview your public request") %> @@ -150,5 +189,6 @@ </div> <% end %> - - +<% if @batch %> + <%= javascript_include_tag 'new-request.js' %> +<% end %> diff --git a/app/views/request/preview.html.erb b/app/views/request/preview.html.erb index 243dc90a9..0265d0328 100644 --- a/app/views/request/preview.html.erb +++ b/app/views/request/preview.html.erb @@ -1,6 +1,9 @@ -<% @title = "Preview new " + h(@info_request.law_used_short) + " request to '" + h(@info_request.public_body.name) + "'" %> - -<%= form_for(@info_request, :url => new_request_path, :html => { :id => 'preview_form' } ) do |f| %> +<% if @batch %> + <% @title = _("Preview new {{law_used_short}} request", :law_used_short => h(@info_request.law_used_short)) %> +<% else %> + <% @title = _("Preview new {{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)) %> +<% end %> +<%= form_for(@info_request, :url => (@batch ? new_batch_path : new_request_path), :html => { :id => 'preview_form' } ) do |f| %> <h1><%= _('3. Now check your request') %></h1> <ul> @@ -14,7 +17,12 @@ <div class="correspondence" id="outgoing-0"> <p class="preview_subject"> - <strong><%= _('To:') %></strong> <%=h @info_request.public_body.name %> + <strong><%= _('To:') %></strong> + <% if @batch %> + <%= _("Your selected authorities")%> + <% else %> + <%=h(@info_request.public_body.name)%> + <% end %> <br><strong><%= _('Subject:') %></strong> <%=h @info_request.email_subject_request %> </p> @@ -33,7 +41,13 @@ <p> <%= f.hidden_field(:title) %> - <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> + <% if @batch %> + <% params[:public_body_ids].each do |public_body_id| %> + <%= hidden_field_tag("public_body_ids[]", public_body_id)%> + <% end %> + <% else %> + <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> + <% end %> <%= f.hidden_field(:tag_string) %> <%= hidden_field_tag(:submitted_new_request, 1) %> <%= hidden_field_tag(:preview, 0 ) %> diff --git a/app/views/request/select_authorities.html.erb b/app/views/request/select_authorities.html.erb new file mode 100644 index 000000000..e16bcc191 --- /dev/null +++ b/app/views/request/select_authorities.html.erb @@ -0,0 +1,77 @@ +<% @title = _("Select the authorities to write to") %> +<h1><%= _('1. Select authorities') %></h1> + +<p> + <%= _("Search for the authorities you'd like information from:") %> +</p> + +<div> + <%= form_tag(select_authorities_path, {:method => 'get', :id => 'body_search_form', :remote => true, "data-type" => 'json'}) do %> + <%= text_field_tag 'public_body_query', params[:public_body_query], { :size => 30, :title => "type your search term here" } %> + <% if !@public_bodies.blank? %> + <%- @public_bodies.each do |public_body| %> + <%= hidden_field_tag "public_body_ids[]", public_body.id, {:id => nil} %> + <%- end %> + <% end %> + <% end %> +</div> + +<div id="body_selection"> + <div id="body_lists"> + <div id="body_candidates" class="body_list"> + <%= form_tag(select_authorities_path, {:id => "body_select_form"}) do %> + <%= submit_tag _(' >> '), :id => 'body_select_all_button', :class => 'select_all_button' %> + <%= submit_tag _(' > '), :id => 'body_select_button' %> + <%= hidden_field_tag "public_body_query", params[:public_body_query], { :id => 'public_body_select_query' } %> + <% if !@public_bodies.blank? %> + <% @public_bodies.each do |public_body| %> + <%= hidden_field_tag "public_body_ids[]", public_body.id, {:id => nil} %> + <% end %> + <% end %> + <select multiple name="public_body_ids[]" id="select_body_candidates" class="body_select" size="15"> + <% if @search_bodies %> + <% @search_bodies.results.each do |result| %> + <% unless (@public_bodies && @public_bodies.include?(result[:model])) %> + <option value="<%= result[:model].id %>"><%= result[:model].name %></option> + <% end %> + <% end %> + <% end %> + </select> + <% end %> + </div> + + <div id="body_selections" class="body_list"> + <%= form_tag(select_authorities_path, {:id => "body_deselect_form"}) do %> + + <%= submit_tag _(' < '), :id => 'body_deselect_button' %> + <%= submit_tag _(' << '), :id => 'body_deselect_all_button', :class => 'select_all_button' %> + <%= hidden_field_tag "public_body_query", params[:public_body_query], { :id => 'public_body_deselect_query' } %> + <% if @public_bodies %> + <% @public_bodies.each do |public_body| %> + <%= hidden_field_tag "public_body_ids[]", public_body.id, {:id => nil} %> + <% end %> + <% end %> + <select multiple name="remove_public_body_ids[]" id="select_body_selections" class="body_select" size="15"> + <% if @public_bodies %> + <% @public_bodies.each do |public_body| %> + <option value="<%= public_body.id %>"><%= public_body.name %></option> + <% end %> + <% end %> + </select> + <% end %> + + <div id="body_submission"> + <%= form_tag(new_batch_path, {:id => "body_submit_form"}) do %> + <% if @public_bodies %> + <% @public_bodies.each do |public_body| %> + <%= hidden_field_tag "public_body_ids[]", public_body.id , {:id => nil} %> + <% end %> + <% end %> + <%= submit_tag _('Make a request to these authorities'), :id => 'body_submit_button' %> + <% end %> + </div> + + </div> + </div> +</div> +<%= javascript_include_tag 'jquery_ujs.js', 'select-authorities.js' %> diff --git a/app/views/request/select_authority.html.erb b/app/views/request/select_authority.html.erb index 4f117ee75..83abdb184 100644 --- a/app/views/request/select_authority.html.erb +++ b/app/views/request/select_authority.html.erb @@ -40,6 +40,13 @@ <%= hidden_field_tag 'bodies', 1 %> <%= submit_tag _('Search') %> </div> + <% if AlaveteliConfiguration.allow_batch_requests && @user && @user.can_make_batch_requests? %> + <div id="batch_request_link"> + <p> + <%= _('Or make a <a href="{{url}}">batch request</a> to <strong>multiple authorities</strong> at once.', :url => select_authorities_path) %> + </p> + </div> + <% end %> <% end %> <div id="typeahead_response"> diff --git a/app/views/request/show.html.erb b/app/views/request/show.html.erb index c520ce40c..153b0b861 100644 --- a/app/views/request/show.html.erb +++ b/app/views/request/show.html.erb @@ -34,14 +34,16 @@ <p class="subtitle"> <% if !@user.nil? && @user.admin_page_links? %> <%= _('{{user}} ({{user_admin_link}}) made this {{law_used_full}} request (<a href="{{request_admin_url}}">admin</a>) to {{public_body_link}} (<a href="{{public_body_admin_url}}">admin</a>)', - :user => @info_request.is_external? ? (@info_request.user_name || _('An anonymous user')) : user_link(@info_request.user), + :user => request_user_link(@info_request, _('An anonymous user')), :law_used_full => h(@info_request.law_used_full), :user_admin_link => user_admin_link_for_request(@info_request, _('external'), _('admin')), :request_admin_url => admin_request_show_url(@info_request), :public_body_link => public_body_link(@info_request.public_body), :public_body_admin_url => admin_body_show_url(@info_request.public_body)) %> <% else %> - <%= _('{{user}} made this {{law_used_full}} request',:user=>@info_request.is_external? ? (@info_request.user_name || _('An anonymous user')) : user_link(@info_request.user), :law_used_full=>h(@info_request.law_used_full)) %> + <%= _('{{user}} made this {{law_used_full}} request', + :user=>request_user_link(@info_request, _('An anonymous user')), + :law_used_full=>h(@info_request.law_used_full)) %> <%= _('to {{public_body}}',:public_body=>public_body_link(@info_request.public_body)) %> <% end %> </p> diff --git a/app/views/track/_tracking_links.html.erb b/app/views/track/_tracking_links.html.erb index a3cd8fc60..5419ec605 100644 --- a/app/views/track/_tracking_links.html.erb +++ b/app/views/track/_tracking_links.html.erb @@ -1,6 +1,6 @@ <% if @user - existing_track = TrackThing.find_by_existing_track(@user, track_thing) + existing_track = TrackThing.find_existing(@user, track_thing) end %> diff --git a/app/views/user/show.html.erb b/app/views/user/show.html.erb index c9862effe..76ecdeda0 100644 --- a/app/views/user/show.html.erb +++ b/app/views/user/show.html.erb @@ -105,6 +105,17 @@ <div style="clear:both"></div> <% end %> +<% if @show_batches %> + + <% if @is_you && !@display_user.info_request_batches.empty? %> + <h2 class="batch_results" id="batch_requests"> + <%= n_('Your {{count}} batch requests', 'Your {{count}} batch requests', @display_user.info_request_batches.size, :count => @display_user.info_request_batches.size) %> + </h2> + <%= render :partial => 'info_request_batch/info_request_batch', :collection => @display_user.info_request_batches %> + <% end %> + +<% end %> + <% if @show_requests %> <div id="user_profile_search"> <%= form_tag(show_user_url, :method => "get", :id=>"search_form") do %> diff --git a/app/views/user/sign.html.erb b/app/views/user/sign.html.erb index 8291cdace..e8c5d5a58 100644 --- a/app/views/user/sign.html.erb +++ b/app/views/user/sign.html.erb @@ -13,7 +13,7 @@ </p> <% if @post_redirect.post_params["controller"] == "admin_general" %> <% unless AlaveteliConfiguration::disable_emergency_user %> - <p id="superuser_message">Don't have a superuser account yet? <%= link_to "Sign in as the emergency user", @post_redirect.uri + "?emergency=1" %></p> + <p id="superuser_message"><%= _("Don't have a superuser account yet?") %> <%= link_to _("Sign in as the emergency user"), @post_redirect.uri + "?emergency=1" %></p> <% end %> <% end %> diff --git a/app/views/user/wall.html.erb b/app/views/user/wall.html.erb index 190cc0a6d..6699c55fa 100644 --- a/app/views/user/wall.html.erb +++ b/app/views/user/wall.html.erb @@ -1,16 +1,19 @@ <% @title = h(@display_user.name) + _(" - wall") %> -<% if @is_you %> <div class="medium_column"> - <p><%= _('You can change the requests and users you are following on <a href="{{profile_url}}">your profile page</a>.', :profile_url => show_user_profile_path) %> - <%= render :partial => 'change_receive_email' %> + <% if @is_you %> + <h2><%= _("My wall") %></h2> + <p><%= _('You can change the requests and users you are following on <a href="{{profile_url}}">your profile page</a>.', :profile_url => show_user_profile_path) %></p> + <%= render :partial => 'change_receive_email' %> + <% else %> + <h2><%= _("This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall", :profile_url => show_user_profile_path, :user_name => h(@display_user.name)) %></h2> + <% end %> </div> -<% end %> <div id="user_profile_search"> - <% if !@feed_results.nil? %> - <% for result in @feed_results %> - <%= render :partial => 'request/wall_listing', :locals => { :event => result, :info_request => result.info_request } %> - <% end %> - <% end %> - - + <% if !@feed_results.nil? and !@feed_results.empty? %> + <% for result in @feed_results %> + <%= render :partial => 'request/wall_listing', :locals => { :event => result, :info_request => result.info_request } %> + <% end %> + <% else %> + <p><%= _("There is nothing to display yet.") %></p> + <% end %> </div> diff --git a/commonlib b/commonlib -Subproject ad27f5409ef3ed1b800aa08c1d70a018443dcfd +Subproject 438003985e1bfb90fb83f5bbc5dce3da3fb21ee diff --git a/config/application.rb b/config/application.rb index 3c749a531..6b7d1b976 100644 --- a/config/application.rb +++ b/config/application.rb @@ -77,6 +77,12 @@ module Alaveteli require "#{Rails.root}/lib/whatdotheyknow/strip_empty_sessions" config.middleware.insert_before ::ActionDispatch::Cookies, WhatDoTheyKnow::StripEmptySessions, :key => '_wdtk_cookie_session', :path => "/", :httponly => true + # Allow the generation of full URLs in emails + config.action_mailer.default_url_options = { :host => AlaveteliConfiguration::domain } + if AlaveteliConfiguration::force_ssl + config.action_mailer.default_url_options[:protocol] = "https" + end + # Enable the asset pipeline config.assets.enabled = true @@ -97,6 +103,9 @@ module Alaveteli 'jquery.fancybox-1.3.4.css', 'jquery.Jcrop.css', 'excanvas.min.js', + 'select-authorities.js', + 'jquery_ujs.js', + 'new-request.js', 'fonts.css', 'print.css', 'admin.css', diff --git a/config/crontab-example b/config/crontab-example index 366624998..64d0c45c9 100644 --- a/config/crontab-example +++ b/config/crontab-example @@ -12,6 +12,7 @@ MAILTO=cron-!!(*= $site *)!!@mysociety.org # Every 10 minutes 5,15,25,35,45,55 * * * * !!(*= $user *)!! /etc/init.d/foi-alert-tracks check 5,15,25,35,45,55 * * * * !!(*= $user *)!! /etc/init.d/foi-purge-varnish check +0,10,20,30,40,50 * * * * !!(*= $user *)!! run-with-lockfile -n /data/vhost/!!(*= $vhost *)!!/send-batch-requests.lock /data/vhost/!!(*= $vhost *)!!/!!(*= $vcspath *)!!/script/send-batch-requests || echo "stalled?" # Once an hour 09 * * * * !!(*= $user *)!! run-with-lockfile -n !!(*= $vhost_dir *)!!/alert-comment-on-request.lock !!(*= $vhost_dir *)!!/!!(*= $vcspath *)!!/script/alert-comment-on-request || echo "stalled?" diff --git a/config/general.yml-example b/config/general.yml-example index 01936e648..6140cfe73 100644 --- a/config/general.yml-example +++ b/config/general.yml-example @@ -172,10 +172,6 @@ VARNISH_HOST: localhost # Adding a value here will enable Google Analytics on all non-admin pages for non-admin users. GA_CODE: '' -# We need to add the WDTK survey variables here, or else the deployment -# system will cry. -SURVEY_SECRET: '' -SURVEY_URL: '' # If you want to override *all* the public body request emails with your own # email so that request emails that would normally go to the public body @@ -248,3 +244,9 @@ SHARED_DIRECTORIES: - lib/acts_as_xapian/xapiandbs/ - vendor/bundle - public/assets + +# Allow some users to make batch requests to multiple authorities. Once +# this is set to true, you can enable batch requests for an individual +# user via the user admin page. + +ALLOW_BATCH_REQUESTS: false diff --git a/config/initializers/alaveteli.rb b/config/initializers/alaveteli.rb index cabe96efa..c7672d05b 100644 --- a/config/initializers/alaveteli.rb +++ b/config/initializers/alaveteli.rb @@ -10,7 +10,7 @@ load "debug_helpers.rb" load "util.rb" # Application version -ALAVETELI_VERSION = '0.16' +ALAVETELI_VERSION = '0.17' # Add new inflection rules using the following format # (all these examples are active by default): @@ -51,6 +51,7 @@ require 'alaveteli_file_types' require 'alaveteli_localization' require 'message_prominence' require 'theme' +require 'xapian_queries' AlaveteliLocalization.set_locales(AlaveteliConfiguration::available_locales, AlaveteliConfiguration::default_locale) diff --git a/config/routes.rb b/config/routes.rb index cadb7ec54..87a62c0bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -35,9 +35,11 @@ Alaveteli::Application.routes.draw do match '/list' => 'request#list', :as => :request_list match '/select_authority' => 'request#select_authority', :as => :select_authority + match '/select_authorities' => 'request#select_authorities', :as => :select_authorities match '/new' => 'request#new', :as => :new_request match '/new/:url_name' => 'request#new', :as => :new_request_to_body + match '/new_batch' => 'request#new_batch', :as => :new_batch match '/request/search_ahead' => 'request#search_typeahead', :as => :search_ahead @@ -63,6 +65,8 @@ Alaveteli::Application.routes.draw do resource :report, :only => [:new, :create] end + resources :info_request_batch, :only => :show + #### User controller # Use /profile for things to do with the currently signed in user. # Use /user/XXXX for things that anyone can see about that user. @@ -108,6 +112,8 @@ Alaveteli::Application.routes.draw do match '/body_statistics' => 'public_body#statistics', :as => :public_bodies_statistics #### + resource :change_request, :only => [:new, :create], :controller => 'public_body_change_requests' + #### Comment controller match '/annotate/request/:url_title' => 'comment#new', :as => :new_comment, :type => 'request' #### @@ -172,6 +178,11 @@ Alaveteli::Application.routes.draw do match '/admin/body/mass_tag_add' => 'admin_public_body#mass_tag_add', :as => :admin_body_mass_tag_add #### + #### AdminPublicBodyChangeRequest controller + match '/admin/change_request/edit/:id' => 'admin_public_body_change_requests#edit', :as => :admin_change_request_edit + match '/admin/change_request/update/:id' => 'admin_public_body_change_requests#update', :as => :admin_change_request_update + #### + #### AdminGeneral controller match '/admin' => 'admin_general#index', :as => :admin_general_index match '/admin/timeline' => 'admin_general#timeline', :as => :admin_timeline diff --git a/db/migrate/20130919151140_add_can_make_batch_requests_to_user.rb b/db/migrate/20130919151140_add_can_make_batch_requests_to_user.rb new file mode 100644 index 000000000..cc9d8e76f --- /dev/null +++ b/db/migrate/20130919151140_add_can_make_batch_requests_to_user.rb @@ -0,0 +1,5 @@ +class AddCanMakeBatchRequestsToUser < ActiveRecord::Migration + def change + add_column :users, :can_make_batch_requests, :boolean, :default => false, :null => false + end +end diff --git a/db/migrate/20131024114346_create_info_request_batches.rb b/db/migrate/20131024114346_create_info_request_batches.rb new file mode 100644 index 000000000..09c6f467b --- /dev/null +++ b/db/migrate/20131024114346_create_info_request_batches.rb @@ -0,0 +1,22 @@ +class CreateInfoRequestBatches < ActiveRecord::Migration + def up + create_table :info_request_batches do |t| + t.column :title, :text, :null => false + t.column :user_id, :integer, :null => false + t.timestamps + end + add_column :info_requests, :info_request_batch_id, :integer, :null => true + if ActiveRecord::Base.connection.adapter_name == "PostgreSQL" + execute "ALTER TABLE info_requests + ADD CONSTRAINT fk_info_requests_info_request_batch + FOREIGN KEY (info_request_batch_id) REFERENCES info_request_batches(id)" + end + add_index :info_requests, :info_request_batch_id + add_index :info_request_batches, :user_id + end + + def down + remove_column :info_requests, :info_request_batch_id + drop_table :info_request_batches + end +end diff --git a/db/migrate/20131024152540_add_body_to_info_request_batches.rb b/db/migrate/20131024152540_add_body_to_info_request_batches.rb new file mode 100644 index 000000000..5f9b3af10 --- /dev/null +++ b/db/migrate/20131024152540_add_body_to_info_request_batches.rb @@ -0,0 +1,11 @@ +class AddBodyToInfoRequestBatches < ActiveRecord::Migration + def up + add_column :info_request_batches, :body, :text + add_index :info_request_batches, [:user_id, :body, :title] + end + + def down + remove_column :info_request_batches, :body + end + +end diff --git a/db/migrate/20131127105438_create_info_request_batch_public_bodies_join_table.rb b/db/migrate/20131127105438_create_info_request_batch_public_bodies_join_table.rb new file mode 100644 index 000000000..11a9c7066 --- /dev/null +++ b/db/migrate/20131127105438_create_info_request_batch_public_bodies_join_table.rb @@ -0,0 +1,8 @@ +class CreateInfoRequestBatchPublicBodiesJoinTable < ActiveRecord::Migration + def change + create_table :info_request_batches_public_bodies, :id => false do |t| + t.integer :info_request_batch_id + t.integer :public_body_id + end + end +end diff --git a/db/migrate/20131127135622_add_sent_at_to_info_request_batch.rb b/db/migrate/20131127135622_add_sent_at_to_info_request_batch.rb new file mode 100644 index 000000000..27d4aecee --- /dev/null +++ b/db/migrate/20131127135622_add_sent_at_to_info_request_batch.rb @@ -0,0 +1,5 @@ +class AddSentAtToInfoRequestBatch < ActiveRecord::Migration + def change + add_column :info_request_batches, :sent_at, :datetime + end +end diff --git a/db/migrate/20131211152641_create_public_body_change_requests.rb b/db/migrate/20131211152641_create_public_body_change_requests.rb new file mode 100644 index 000000000..e3fb560a6 --- /dev/null +++ b/db/migrate/20131211152641_create_public_body_change_requests.rb @@ -0,0 +1,20 @@ +class CreatePublicBodyChangeRequests < ActiveRecord::Migration + def up + create_table :public_body_change_requests do |t| + t.column :user_email, :string + t.column :user_name, :string + t.column :user_id, :integer + t.column :public_body_name, :text + t.column :public_body_id, :integer + t.column :public_body_email, :string + t.column :source_url, :text + t.column :notes, :text + t.column :is_open, :boolean, :null => false, :default => true + t.timestamps + end + end + + def down + drop_table :public_body_change_requests + end +end diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 8f86f1c3a..8940cd78b 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -1,3 +1,50 @@ +# Version 0.17 + +## Highlighted features + +* There is some initial support for making a request to multiple + authorities at once. +* There is a new form for users to request that a new authority should + be added, or to request an update to the contact email used for an + authority. Site admins are emailed about these requests, and can + resolve them from the admin interface. +* For attachments where we rely on Google Document Viewer to display the + HTML version, link to the HTTPS version where the Alaveteli site is + served over HTTPS to avoid mixed content warnings and non display in + some browsers (Matthew Somerville). +* The 'view requests' page now has some fragment caching backed by + memcached to speed up serving commonly used lists of requests - e.g + all successful requests. Like the caching introduced in release 0.16, + this is controlled by the `CACHE_FRAGMENTS` parameter in the config + file and will be on by default. +* A user's annotations can now be seen on their admin page (Andrew + Black) +* Better detection of the quoted text of a previous email in the HTML + parts of responses. +* Fixed bugs in the profile photos (György Peng), calendar translations + (Mark Longair), the use of external utilities (Ian Chard), the + internal admin authority locale handling (Mark Longair), badly formed + attachment handling (Rowan Crawford). + +## Upgrade notes + +* To use the batch request functionality, set the `ALLOW_BATCH_REQUESTS` + parameter to `true` in your config file. Once this is done, and the + install has been restarted, any user for whom 'Can make batch + requests' is checked in the admin interface should see a new link on + the 'Select an authority' page that allows them to make a batch + request. +* If your theme overrides the help/requesting template, you should + update the link in the section on requesting new authorities so the + link points to `<%= new_change_request_path %>` instead of `<%= + help_contact_path %>`. +* If your site runs over HTTPS, some cached attachments may still + contain links to Google Document Viewer with 'http', not 'https'. You + can clear the cached attachments after upgrade, and they will be + created with links that use the correct protocol. +* This release includes an update to the commonlib submodule - you + should be warned about this when running rails-post-deploy. + # Version 0.16 ## Highlighted features diff --git a/doc/INSTALL.md b/doc/INSTALL.md index 3decb53a3..04cdb1352 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -21,9 +21,9 @@ instances; you will need to use at least a Small instance, which Amazon will charge for. The AMI can be found in the EU West (Ireland) region, with the -ID ami-0f24c678 and name “Basic Alaveteli installation -2013-10-31”. You can launch an instance based on that AMI with -[this link](https://console.aws.amazon.com/ec2/home?region=eu-west-1#launchAmi=ami-0f24c678). +ID ami-8603f4f1 and name “Basic Alaveteli installation +2014-01-29”. You can launch an instance based on that AMI with +[this link](https://console.aws.amazon.com/ec2/home?region=eu-west-1#launchAmi=ami-8603f4f1). When you create an EC2 instance based on that AMI, make sure that you choose Security Groups that allows at least inbound diff --git a/lib/alaveteli_external_command.rb b/lib/alaveteli_external_command.rb index fbdee8a62..086a461c8 100644 --- a/lib/alaveteli_external_command.rb +++ b/lib/alaveteli_external_command.rb @@ -44,7 +44,11 @@ module AlaveteliExternalCommand end xc.run(opts[:stdin_string] || "", opts[:env] || {}) - if xc.status != 0 + if !xc.exited + # Crash or timeout + $stderr.puts("#{program_name} #{args.join(' ')}:exited abnormally") + return nil + elsif xc.status != 0 # Error $stderr.puts("Error from #{program_name} #{args.join(' ')}:") $stderr.print(xc.err) diff --git a/lib/configuration.rb b/lib/configuration.rb index 2192433f7..bd705b777 100644 --- a/lib/configuration.rb +++ b/lib/configuration.rb @@ -18,6 +18,7 @@ module AlaveteliConfiguration DEFAULTS = { :ADMIN_PASSWORD => '', :ADMIN_USERNAME => '', + :ALLOW_BATCH_REQUESTS => false, :AVAILABLE_LOCALES => '', :BLACKHOLE_PREFIX => 'do-not-reply-to-this-address', :BLOG_FEED => '', diff --git a/lib/tasks/translation.rake b/lib/tasks/translation.rake index 6458d9268..b1f9d0b71 100644 --- a/lib/tasks/translation.rake +++ b/lib/tasks/translation.rake @@ -66,9 +66,10 @@ namespace :translation do 'Hello!') write_email(user_contact_email, 'Contact email (user to user)', output_file) - admin_contact_email = ContactMailer.from_admin_message(info_request.user, - 'A test message', - 'Hello!') + admin_contact_email = ContactMailer.from_admin_message(info_request.user.name, + info_request.user.email, + 'A test message', + 'Hello!') write_email(admin_contact_email, 'Contact email (admin to user)', output_file) # request mailer diff --git a/lib/xapian_queries.rb b/lib/xapian_queries.rb new file mode 100644 index 000000000..b3599740a --- /dev/null +++ b/lib/xapian_queries.rb @@ -0,0 +1,85 @@ +module XapianQueries + + # These methods take some filter criteria expressed in a hash and convert them + # into a xapian query referencing the terms and values stored by InfoRequestEvent. + # Note that the params are request params and may contain irrelevant keys + + def get_request_variety_from_params(params) + query = "" + sortby = "newest" + varieties = [] + if params[:request_variety] && !(query =~ /variety:/) + if params[:request_variety].include? "sent" + varieties -= ['variety:sent', 'variety:followup_sent', 'variety:response', 'variety:comment'] + varieties << ['variety:sent', 'variety:followup_sent'] + end + if params[:request_variety].include? "response" + varieties << ['variety:response'] + end + if params[:request_variety].include? "comment" + varieties << ['variety:comment'] + end + end + if !varieties.empty? + query = " (#{varieties.join(' OR ')})" + end + return query + end + + def get_status_from_params(params) + query = "" + if params[:latest_status] + statuses = [] + if params[:latest_status].class == String + params[:latest_status] = [params[:latest_status]] + end + if params[:latest_status].include?("recent") || params[:latest_status].include?("all") + query += " (variety:sent OR variety:followup_sent OR variety:response OR variety:comment)" + end + if params[:latest_status].include? "successful" + statuses << ['latest_status:successful', 'latest_status:partially_successful'] + end + if params[:latest_status].include? "unsuccessful" + statuses << ['latest_status:rejected', 'latest_status:not_held'] + end + if params[:latest_status].include? "awaiting" + statuses << ['latest_status:waiting_response', 'latest_status:waiting_clarification', 'waiting_classification:true', 'latest_status:internal_review','latest_status:gone_postal', 'latest_status:error_message', 'latest_status:requires_admin'] + end + if params[:latest_status].include? "internal_review" + statuses << ['status:internal_review'] + end + if params[:latest_status].include? "other" + statuses << ['latest_status:gone_postal', 'latest_status:error_message', 'latest_status:requires_admin', 'latest_status:user_withdrawn'] + end + if params[:latest_status].include? "gone_postal" + statuses << ['latest_status:gone_postal'] + end + if !statuses.empty? + query = " (#{statuses.join(' OR ')})" + end + end + return query + end + + def get_date_range_from_params(params) + query = "" + if params.has_key?(:request_date_after) && !params.has_key?(:request_date_before) + params[:request_date_before] = Time.now.strftime("%d/%m/%Y") + query += " #{params[:request_date_after]}..#{params[:request_date_before]}" + elsif !params.has_key?(:request_date_after) && params.has_key?(:request_date_before) + params[:request_date_after] = "01/01/2001" + end + if params.has_key?(:request_date_after) + query = " #{params[:request_date_after]}..#{params[:request_date_before]}" + end + return query + end + + def make_query_from_params(params) + query = params[:query] || "" if query.nil? + query += get_date_range_from_params(params) + query += get_request_variety_from_params(params) + query += get_status_from_params(params) + return query + end +end diff --git a/locale/aln/app.po b/locale/aln/app.po index 64a58424c..aeb42da13 100644 --- a/locale/aln/app.po +++ b/locale/aln/app.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/alaveteli/language/aln/)\n" "Language: aln\n" "MIME-Version: 1.0\n" @@ -37,6 +37,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -46,6 +52,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -106,6 +118,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -118,6 +139,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -184,6 +208,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -316,6 +343,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -400,6 +433,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -409,6 +451,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -418,6 +466,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -505,6 +556,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -529,6 +583,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -562,7 +619,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -589,12 +646,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -607,12 +673,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -646,6 +718,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -688,6 +763,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -802,6 +880,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1104,9 +1185,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1209,9 +1302,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1260,15 +1350,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1389,9 +1494,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1449,12 +1560,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1590,6 +1707,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1647,6 +1767,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1713,6 +1836,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1767,6 +1896,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1776,6 +1908,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1890,6 +2043,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1899,6 +2055,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1932,6 +2091,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1983,6 +2145,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2015,6 +2180,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2042,6 +2210,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2063,6 +2236,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2111,6 +2287,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2135,6 +2317,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2198,6 +2383,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2213,12 +2404,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2231,6 +2428,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2315,6 +2515,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2375,6 +2578,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2428,6 +2634,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2591,6 +2800,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2681,15 +2893,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2702,6 +2914,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2729,6 +2947,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2738,6 +2959,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2777,6 +3001,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2882,6 +3109,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2906,6 +3136,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2975,6 +3208,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3038,12 +3274,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3092,6 +3334,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3104,6 +3358,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3117,6 +3374,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3129,6 +3391,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3478,6 +3743,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3502,6 +3770,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/app.pot b/locale/app.pot index 46114483a..c0ad2ecfc 100644 --- a/locale/app.pot +++ b/locale/app.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: version 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" "PO-Revision-Date: 2011-10-09 01:10+0200\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -34,6 +34,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -43,6 +49,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -103,6 +115,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -115,6 +136,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -181,6 +205,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -313,6 +340,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -397,6 +430,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -406,6 +448,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -415,6 +463,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -502,6 +553,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -526,6 +580,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -559,7 +616,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -586,12 +643,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -604,12 +670,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -643,6 +715,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -685,6 +760,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -799,6 +877,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1101,9 +1182,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1206,9 +1299,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1257,15 +1347,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1386,9 +1491,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1446,12 +1557,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1587,6 +1704,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1644,6 +1764,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1710,6 +1833,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1764,6 +1893,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1773,6 +1905,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1887,6 +2040,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1896,6 +2052,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1929,6 +2088,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1980,6 +2142,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2012,6 +2177,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2039,6 +2207,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2060,6 +2233,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2108,6 +2284,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2132,6 +2314,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2195,6 +2380,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2210,12 +2401,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2228,6 +2425,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2312,6 +2512,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2372,6 +2575,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2425,6 +2631,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2588,6 +2797,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2678,15 +2890,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2699,6 +2911,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2726,6 +2944,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2735,6 +2956,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2774,6 +2998,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2879,6 +3106,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2903,6 +3133,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2972,6 +3205,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3035,12 +3271,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3089,6 +3331,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3101,6 +3355,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3114,6 +3371,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3126,6 +3388,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3475,6 +3740,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3499,6 +3767,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/ar/app.po b/locale/ar/app.po index ad5adf8e8..768e82a66 100644 --- a/locale/ar/app.po +++ b/locale/ar/app.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/alaveteli/language/ar/)\n" "Language: ar\n" "MIME-Version: 1.0\n" @@ -42,6 +42,12 @@ msgstr "اطلع و قدم طلبات حق النفاذ إلى المعلومة" msgid " - wall" msgstr "حائط-" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>ملاحظة:</strong>\\n سوف نمدكم برسالة إلكترونية. قوموا باتباع الإرشادات الموجودة لتتمكنوا من تغير\\n كلمة السر." @@ -51,6 +57,12 @@ msgstr " <strong/> ملاحظة حول الخصوصية :<strong> عنوان ب msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>لخص </strong> مضمون أي معلومة تم إرجاعها. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Advise on how to <strong>best clarify</strong> the request." @@ -111,6 +123,15 @@ msgstr "'{{link_to_request}}', طلب" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', شخص" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -123,6 +144,9 @@ msgstr "-أو-" msgid "1. Select an authority" msgstr "1. حدد سلطة " +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. اطلبوا المعلومة" @@ -189,6 +213,9 @@ msgstr "<p>طلبك يحتوي على <strong>رمز بريدي</strong>.الر msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p> {{law_used_full}}وقع ارسال طلبك <strong> way</strong>!</p>\\n <p><strong>سنرسل لك رسالة الكترونية</strong> عندما يكون هناك رد, او بعد {{late_number_of_days}} يوم عمل ان لم تكن السلطة قد اجابت hasn't\\n الى ذلك الوفت .</p>\\n <p>اذا كتبت حول هذا الطلب (مثلا على منتدى او مدونة ) يرجى وضع رابط هذه الصفحة, و اضافة\\شرح اسفله يخبر الناس عن كنابتك.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} في صيانة حاليا.بامكانك الاطلاع على الطلبات الموجودة فقط.ليس بامكانك تقديم طلبات جدبدة, او ااضافة متابعات او ملاحظات, و الا تغيير قاعدة البيانات.</p> <p>{{read_only}}</p>" @@ -321,6 +348,12 @@ msgstr "إضافة تعليق توضيحي" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Add an annotation to your request with choice quotes, or \\n a <strong>summary of the response</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "أضيف في {{date}}" @@ -405,6 +438,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "اطلب <strong>محددة</strong> ملفات او معلومات, هذا الموقع لا يتلاءم مع البحوث العامة." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -414,6 +456,12 @@ msgstr "ملحق (اختياري) " msgid "Attachment:" msgstr "ملحق" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "في انتظار التّصنيف" @@ -423,6 +471,9 @@ msgstr "في انتظار مراجعة داخلية" msgid "Awaiting response." msgstr "في انتظار الرد" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "البدء ب" @@ -510,6 +561,9 @@ msgstr ".تحقق من عدم وجود أخطاء إذا كتبت أو نسخت msgid "Check you haven't included any <strong>personal information</strong>." msgstr "تأكد من عدم اضافتك أي <strong>معلومات شخصية</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "اختر صورتك الشخصية" @@ -534,6 +588,9 @@ msgstr "اضغط على الرابط اسفله لبعث رسالة الى {{pub msgid "Close" msgstr "إغلاق" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "تعليق" @@ -567,8 +624,8 @@ msgstr "تأكيد على الرغبة في متابعة المطالب المو msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "تأكيد رغبتك في متابعة الطلب'{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "أكد طلبك في حرية النفاذ للمعلومة" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirm your account on {{site_name}}" @@ -594,12 +651,21 @@ msgstr "اتصل ب {{recipient}}" msgid "Contact {{site_name}}" msgstr "اتصل ب {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "لا يمكن التعرف على الطلب من عنوان البريد الالكتروني" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "لم يقع التعرف على ملف الصور الذي حملته.و يقع اعتماد PNG, JPEG, GIF و اشكال معتادة اخرى لملفات الصور ." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "قص الصورة الشخصية" @@ -612,12 +678,18 @@ msgstr "بصدد <strong>انتظار اجابة</strong> من {{public_body_lin msgid "Date:" msgstr "التاريخ:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "عزيزي {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -651,6 +723,9 @@ msgstr "سجل الكشف" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "لا ترغب في توجيه رسالتك الى {{person_or_body}}? بامكانك ايضا ان تكتب ل:" @@ -693,6 +768,9 @@ msgstr "قد يكون البريد الإلكتروني غير صحيح" msgid "Email me future updates to this request" msgstr "ارسل لي بريدا الكترونيا بكل تحديث لهذا الطلب " +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "ادخل الكلمات التي تريد ايجادها منفصلة , e.g. <strong>تسلق ممر</strong>" @@ -807,6 +885,9 @@ msgstr "تابع السلطة " msgid "Follow this link to see the request:" msgstr "تابع الرابط لرؤية الطلب" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "تابع هذا الشخص" @@ -1113,9 +1194,21 @@ msgstr "المطالب الفردية" msgid "Info request" msgstr "طلب معلومة" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "طلب المعلومة" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "طلب المعلومة|الحالة المحسوبة" @@ -1218,9 +1311,6 @@ msgstr "اعلمنا ما كنت تفعل عندما ظهرت\\nهذه الرس msgid "Link to this" msgstr "اربط بهذا" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "قائمة السلط (CSV)" @@ -1269,15 +1359,30 @@ msgstr " الدخول لبريد الخادم|الخط" msgid "MailServerLog|Order" msgstr "الدخول لبريد الخادم|الترتيب" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "اضف<br/>\\n <strong>لحرية<span>of</span><br/>\\n النفاذ للمعلومة<br/>\\n طلبا جديدا</strong>" msgid "Make a request" msgstr "قدم مطلبا" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "قدم {{law_used_short}}مطلبا ل '{{public_body_name}}'" @@ -1398,9 +1503,15 @@ msgstr "لم يحدث شئ" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "لاحظ أن صاحب الطلب لن يستقبل اشعارا بخصوص ملاحظتك, لأن الطلب تم نشره من قبل {{public_body_name}} نيابة عنهم." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "تفقد بريدك الالكنروني" @@ -1458,12 +1569,18 @@ msgstr "السلطو فقط بامكانها الاجابة على هذا الط msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "السلطة فقط قادرة على الرد على هذا الطلب, ولكن لا يوجد اي عنوان وارد للرد عليه" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "أو قوموا بالبحث على هذه المعلومات على موقعهم ." msgid "Original request sent" msgstr "تمّ إرسال المطلب الأصلي" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "غيرها:" @@ -1599,6 +1716,9 @@ msgstr "الرجاء إدخال عنوان بريد إلكتروني صالح" msgid "Please enter the message you want to send" msgstr "الرجاء ادخال الرسالة التي تريد بعثها " +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "الرجاء إدخال كلمة المرور نفسها مرتين" @@ -1656,6 +1776,9 @@ msgstr "يرجى تسجيل الدخول ك" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "يرجى كتابة رسالة و / أو اختيار ملف يحتوي على ردكم." @@ -1722,6 +1845,12 @@ msgstr "الق نظرة على المتابعة ل" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "الق نظرة على الملاحظة الجديدة على '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "الق نظرة على ملاحظتك" @@ -1776,6 +1905,9 @@ msgstr "" msgid "Public body" msgstr "الهيكل العامّ" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1785,6 +1917,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "الهيكل العام|مفتاح واجهة مبرمج التطبيقات" @@ -1899,6 +2052,9 @@ msgstr "التقرير عن هذا المطلب" msgid "Reported for administrator attention." msgstr "تم التبليغ لادارة الموقع" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "طلب مراجعة داخلية" @@ -1908,6 +2064,9 @@ msgstr "اطلب مراجعة داخلية من {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "تمت إزالة المطلب" @@ -1941,6 +2100,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "الرد عبر البريد الإلكتروني" @@ -1992,6 +2154,9 @@ msgstr "ابحث عن مطالب حرية المعلومة و السلطات ا msgid "Search contributions by this person" msgstr "البحث عن مساهمات هذا الشخص" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "البحث عن كلمات في :" @@ -2028,6 +2193,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "اختر واحدا لرؤية معلومات اكثر على السلطة" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "تحديد المؤسسة التي يرجى مراسلتها" @@ -2055,6 +2223,15 @@ msgstr "ابعث رسالة ل" msgid "Send request" msgstr "إرسال المطلب" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + msgid "Set your profile photo" msgstr "ضع صورة لحسابك" @@ -2076,6 +2253,9 @@ msgstr "اظهار" msgid "Sign in" msgstr "سجل الدخول" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "سجل دخولك او افتح حسابا جديدا" @@ -2124,6 +2304,12 @@ msgstr "نأسف, كان هناك مشكلة في فتح هذه الصفحة." msgid "Sorry, we couldn't find that page" msgstr "المعذرة, لم نتمكن من ايجاد الصفحة " +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "ملاحظة خاصة بهذه السلطة." @@ -2148,6 +2334,9 @@ msgstr "موضوع" msgid "Submit" msgstr "اضف" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "اضف حالة" @@ -2211,6 +2400,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "شكرا على المساعدة - سيساعد عملك الجميع في ايجاد\\nردود ناجحة, وحتى في انجاز جداول احصاء..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "شكرا جزيلا - سيساعدهذا الاخرين في العثور على أشياء مفيدة. سوف\\n نمدك أيضا ان احتجت بنصائح حول ما يجب أن تفعل لاحقا بخصوص \\n طلباتك." @@ -2226,12 +2421,18 @@ msgstr "تم <strong>اتمام المراجعة</strong> بطريقة شامل msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "قانون حرية المعلومات <strong>لا ينطبق</strong> على" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "تم ترك كل حساب كما كان سابقا" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "السلطة <strong>لا تملك</strong> المعلومة <small>(ربما يقولون من يملكها)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "السلطة لا تملك سوى <strong>نسخة</strong> من المعلومة" @@ -2244,6 +2445,9 @@ msgstr "هذه السلطة ترغب في / قامت ب <strong>الرد عبر msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "البريد الالكتروني الذي, ارسلته عوضا عن {{public_body}} الى\\n{{user}} للرد على {{ law_used_short}}\\n لم يقع ارسال الطلب." @@ -2328,6 +2532,9 @@ msgstr "ثم يمكنك تنويل ملف مظغوط من{{info_request_title}}. msgid "Then you can log into the administrative interface" msgstr "ثم يمكنك تسجيل دخولك للمجال الاداري" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "ثم بامكانك ان تلعب لعبة تصنيف الطلب" @@ -2388,6 +2595,9 @@ msgstr "هنالك <strong>اكثر من شخص</strong> يستعمل هذا ا msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "عدد المطالب التي بامكانك تقديمها في اليوم الواحد محدود, لاننا لاننا لا تريد ان تكثر على السلطات العامة الطلبات الغير ملائمة. ان كان لديك سبب وجيه لتسألهم الترفيع في العدد المحدد للطلبات في حالتك, الرجاء <a href='{{help_contact_path}}'>الاتصال بنا</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2445,6 +2655,9 @@ msgstr "هذا يغطي مجالا واسعا من المعلومات حول ح msgid "This external request has been hidden" msgstr "تم اخفاء الطلب الخارجي" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr " هذه نسخة نص مجرد بخصوص حرية النفاذ للمعلومة \"{{request_title}}\". يمكنك الحصول على النسخة الأخيرة الكاملة على {{full_url}}" @@ -2616,6 +2829,9 @@ msgstr "لاعلام الجميع, اتبع الرابط ثم قم باختيا msgid "To log into the administrative interface" msgstr " لتسجيل الدخول في المجال الاداري" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "للعب لعبة تصنيف الطلب" @@ -2706,15 +2922,15 @@ msgstr "غير قادر على ارسال رد ل {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "غير قادر على بعث رسالة متابعة ل {{username}}" -msgid "Unexpected search result type" -msgstr "نوع نتيجة البحث غير متوقع" - msgid "Unexpected search result type " msgstr "نوع نتيجة البحث غير متوقع " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "للأسف, لا نملك{{info_request_law_used_full}}\\nعنوانا صالحا ل" @@ -2727,6 +2943,12 @@ msgstr "إلغاء الاشتراك" msgid "Unusual response." msgstr "اجابة غير مألوفة" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "حين حالة هذا الطلب" @@ -2754,6 +2976,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "التنبيه المرسل للمستخدم صاحب الطلب|نوع التنبيه" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "مستخدم|معلومات عني" @@ -2763,6 +2988,9 @@ msgstr "مستخدم|مستوى المشرف" msgid "User|Ban text" msgstr "مستخدم|منع النص" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "المستخدم|البريد الالكتروني" @@ -2802,6 +3030,9 @@ msgstr "المستخدم|Url name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "رؤية البريد الالكتروني لحرية النفاذ الى المعلومة" @@ -2907,6 +3138,9 @@ msgstr "أي من هذه يحدث الان؟" msgid "Who can I request information from?" msgstr "ممن يمكنني طلب المعلومة؟" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "وقع سحبها من قبل صاحب الطلب" @@ -2931,6 +3165,9 @@ msgstr "اكتب طلبك <strong>بلغة بسيطة ودقيقة</strong>." msgid "You" msgstr "انت" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "سبق لك أن بدأت متابعة طلبات جديدة" @@ -3000,6 +3237,9 @@ msgstr "انت تعرف سبب الخطأ, وتستطيع <strong>اقتراح 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 "بامكانك <strong>تضمين ملحقات</strong>. اذا كنت ترغب في الحاق \\n ملف كبير ليبعث على البريد الاكتروني, استعمل الصيغة اسفله." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3063,12 +3303,18 @@ msgstr "" msgid "Your annotations" msgstr "ملاحظاتك" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "لم يقع اعطاء المعلومات الخاصة بك , بما فيها, بريدك الالكتروني لأحد" msgid "Your e-mail:" msgstr "بريدك الالكتروني" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3117,6 +3363,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "تمت تسمية طلبك {{info_request}}. اعلام الجميع عما اذا تحصلت على المعلومات سيساعدنا في التبويب" @@ -3129,6 +3387,9 @@ msgstr "لم يقع ارسال ردك على طلب حرية النفاذ الى msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "رأيك بخصوص انسب طريقة {{site_name}} <strong>للمشرفين</strong> للاجابة على الطلب ." @@ -3150,6 +3411,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + msgid "Your {{site_name}} email alert" msgstr "اشارة تنبيه {{site_name}} بريدك الالكتروني" @@ -3162,6 +3432,9 @@ msgstr "تحياتي" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[حرية النفاذ للمعلومة #{{request}}البريد الالكتروني]" @@ -3527,6 +3800,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - طلب حرية النفاذ للمعلومة الى {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (حساب معلق)" @@ -3551,6 +3827,12 @@ msgstr "{{user_name}} بعث رسالة متابعة الى {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} أرسل طلبا الى {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} ترك ملاحظة:" diff --git a/locale/bg/app.po b/locale/bg/app.po index b859fad96..ab743bbf7 100644 --- a/locale/bg/app.po +++ b/locale/bg/app.po @@ -5,13 +5,14 @@ # Translators: # antitoxic <antitoxic@gmail.com>, 2013 # antitoxic <antitoxic@gmail.com>, 2013 +# louisecrow <louise@mysociety.org>, 2014 # Valentin Laskov <laskov@festa.bg>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2014-01-23 15:13+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-03-01 08:10+0000\n" "Last-Translator: Valentin Laskov <laskov@festa.bg>\n" "Language-Team: Bulgarian (http://www.transifex.com/projects/p/alaveteli/language/bg/)\n" "Language: bg\n" @@ -24,7 +25,7 @@ msgid " This will appear on your {{site_name}} profile, to make it\\n msgstr "Това ще се появи в профила Ви в {{site_name}}, за да\\n улесни останалите да се включат в това, което правите." msgid " (<strong>no ranty</strong> politics, read our <a href=\"{{url}}\">moderation policy</a>)" -msgstr "" +msgstr " (<strong>не се карайте</strong> на политиците, прочетете нашата <a href=\"{{url}}\">политика за модериране</a>)" msgid " (<strong>patience</strong>, especially for large files, it may take a while!)" msgstr " (<strong>търпение</strong>, особено за големи файлове, може да отнеме време!)" @@ -38,6 +39,12 @@ msgstr " - преглед и отправяне на заявления за д msgid " - wall" msgstr " - стена" +msgid " < " +msgstr " < " + +msgid " << " +msgstr " << " + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Бележка:</strong>\\n Ще Ви изпратим имейл. Следвайте инструкциите в него за да смените\\n Вашата парола." @@ -47,6 +54,12 @@ msgstr " <strong>Забележка за лични данни:</strong> Ваш msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Обобщете</strong> съдържанието на каквато и да е върната информация. " +msgid " > " +msgstr " > " + +msgid " >> " +msgstr " >> " + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Съветвайте как <strong>най-ясно да се състави</strong> заявлението." @@ -107,6 +120,15 @@ msgstr "'{{link_to_request}}', заявление" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', личност" +msgid "(hide)" +msgstr "(скрий)" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "(или <a href=\"{{url}}\">влезте</a>)" + +msgid "(show)" +msgstr "(покажи)" + msgid "*unknown*" msgstr "*неизвестен*" @@ -119,6 +141,9 @@ msgstr "- или -" msgid "1. Select an authority" msgstr "1. Изберете орган" +msgid "1. Select authorities" +msgstr "1. Изберете органи" + msgid "2. Ask for Information" msgstr "2. Поискайте информация" @@ -153,7 +178,7 @@ msgid "<p>Thank you! Your request is long overdue, by more than {{very_late_numb msgstr "<p>Благодарим Ви! Отговорът на Вашето заявление се забави повече от {{very_late_number_of_days}} работни дни. На повечето заявления се отговаря в рамките на {{late_number_of_days}} работни дни. Ако желаете да подадете оплакване за това, вижте надолу.</p>" msgid "<p>Thanks for changing the text about you on your profile.</p>\\n <p><strong>Next...</strong> You can upload a profile photograph too.</p>" -msgstr "<p>Благодарим Ви, че обновихте текста за Вас в профила Ви.</p>\\n <p><strong>Сега може...</strong> Да качите и снимка в профила Ви.</p>" +msgstr "<p>Благодарим Ви, че обновихте текста за Вас в профила Ви.</p>\\n <p><strong>Сега може...</strong> да качите и снимка в профила Ви.</p>" msgid "<p>Thanks for updating your profile photo.</p>\\n <p><strong>Next...</strong> You can put some text about you and your research on your profile.</p>" msgstr "<p>Благодарим Ви, че обновихте снимката в профила Ви.</p>\\n <p><strong>Сега може...</strong> да напишете текст за Вас и разследванията Ви.</p>" @@ -185,6 +210,9 @@ msgstr "<p>Вашето заявление съдържа <strong>пощенск msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Вашето заявление за {{law_used_full}} беше <strong>изпратено по пътя му</strong>!</p>\\n <p><strong>Ще Ви изпратим имейл,</strong> когато има отговор, или след {{late_number_of_days}} работни дни ако органът все още не е\\n отговорил дотогава.</p>\\n <p>Ако Вие пишете за това заявление (във форум или блог например), молим, поставете връзка към тази страница и добавете\\n коментар по-долу, информиращ читателите за написаното.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "<p>Вашите заявления за {{law_used_full}} ще бъдат <strong>изпратени</strong> скоро!</p>\\n <p><strong>Ще Ви изпратим имейл,</strong>\\nкогато това стане. Ние също ще Ви уведомяваме с имейл всеки път, когато някой от тях отговори, или след {{late_number_of_days}} работни дни, ако органите все още не са отговорили дотогава.</p>\\n <p>Ако Вие пишете за тези заявления (напр. във форум или блог), молим, поставете връзка към тази страница.</p>" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} в момента е в профилактика. Вие може само да разглеждате съществуващи заявления. Не можете да създавате нови, да добавяте последващи съобщения или коментари, иначе казано, да променяте базата данни.</p> <p>{{read_only}}</p>" @@ -317,6 +345,12 @@ msgstr "Добавяне на коментар" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Добавете коментар към Вашето Заявление с избрани цитати, или\\n <strong>обобщение на отговора</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "Добавяне на орган - {{public_body_name}}" + +msgid "Add the authority:" +msgstr "Добавяне на органа:" + msgid "Added on {{date}}" msgstr "Добавено на {{date}}" @@ -366,7 +400,7 @@ msgid "An <strong>error message</strong> has been received" msgstr "Беше получено <strong>съобщение за грешка</strong>" msgid "An Environmental Information Regulations request" -msgstr "" +msgstr "Заявление по Закона за опазване на околната среда" msgid "An anonymous user" msgstr "Анонимен потребител" @@ -401,6 +435,15 @@ msgstr "Притежавате ли Вие някакви авторски пр msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Питайте за <strong>конкретни</strong> документи или информация, този сайт не е подходящ за запитвания от общ характер." +msgid "Ask us to add an authority" +msgstr "Поискайте да добавим орган" + +msgid "Ask us to update FOI email" +msgstr "Поискайте да обновим имейла за ДдИ" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "Поискайте да обновим имейл адреса на {{public_body_name}}" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "В дъното на тази страница, им напишете отговор, като се опитате да ги убедите,\\n да го сканират (<a href=\"{{url}}\">по-детайлно</a>)." @@ -410,6 +453,12 @@ msgstr "Прикачени файлове (незадължително):" msgid "Attachment:" msgstr "Прикачени файлове:" +msgid "Authority email:" +msgstr "Имейл на органа:" + +msgid "Authority:" +msgstr "Орган:" + msgid "Awaiting classification." msgstr "Чака класифициране." @@ -419,6 +468,9 @@ msgstr "Чака вътрешно разглеждане." msgid "Awaiting response." msgstr "Чака отговор." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "Размножено заявление, създадено от {{info_request_user}} на {{date}}." + msgid "Beginning with" msgstr "Започващи с" @@ -498,7 +550,7 @@ msgid "Change your password {{site_name}}" msgstr "Промяна на паролата Ви {{site_name}}" msgid "Charity registration" -msgstr "" +msgstr "Регистрация на фондацията" msgid "Check for mistakes if you typed or copied the address." msgstr "Проверете за грешки ако сте написали или копирали адреса." @@ -506,6 +558,9 @@ msgstr "Проверете за грешки ако сте написали ил msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Уверете се, че не сте включили никакви <strong>лични данни</strong>." +msgid "Choose a reason" +msgstr "Изберете причина" + msgid "Choose your profile photo" msgstr "Изберете снимка за профила Ви" @@ -516,7 +571,7 @@ msgid "Clarify your FOI request - " msgstr "Пояснете Вашето Заявление за ДдИ - " msgid "Classify an FOI response from " -msgstr "" +msgstr "Класифициране на отговор за ДдИ от " msgid "Clear photo" msgstr "Премахни снимката" @@ -530,6 +585,9 @@ msgstr "Цъкнете върху връзката по-долу за да из msgid "Close" msgstr "Затвори" +msgid "Close the request and respond:" +msgstr "Затвори заявлението и отговори:" + msgid "Comment" msgstr "Коментар" @@ -563,8 +621,8 @@ msgstr "Потвърдете, че искате да следвате заявл msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Потвърдете, че искате да следвате заявлението '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Потвърдете Вашето заявление за ДдИ до " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "Потвърдете Вашето Заявление за ДдИ до {{public_body_name}}" msgid "Confirm your account on {{site_name}}" msgstr "Потвърдете Вашия акаунт в {{site_name}}" @@ -590,12 +648,21 @@ msgstr "Свържете се с {{recipient}}" msgid "Contact {{site_name}}" msgstr "Връзка с {{site_name}}" +msgid "Contains defamatory material" +msgstr "Съдържа клеветнически материал" + +msgid "Contains personal information" +msgstr "Съдържа лична информация" + msgid "Could not identify the request from the email address" msgstr "Не е възможно да се разпознае заявлението по имейл адреса " msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Не мога да определя файла с изображението, който качихте. Поддържат се PNG, JPEG, GIF и много други популярни файлови формати." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "Създадено от {{info_request_user}} на {{date}}." + msgid "Crop your profile photo" msgstr "Изрязване на снимката Ви в профила" @@ -608,17 +675,23 @@ msgstr "Към момента <strong>чака за отговор</strong> от msgid "Date:" msgstr "Дата:" +msgid "Dear [Authority name]," +msgstr "Уважаеми [Authority name]," + msgid "Dear {{name}}," msgstr "Уважаеми {{name}}," msgid "Dear {{public_body_name}}," msgstr "Уважаеми {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "Уважаеми {{user_name}}," + msgid "Default locale" msgstr "" msgid "Defunct." -msgstr "" +msgstr "Неработещ." msgid "Delayed response to your FOI request - " msgstr "Закъснява отговорът на Вашето заявление за ДдИ - " @@ -647,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "Все още нямате акаунт на суперпотребител?" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Не искате да адресирате Вашето писмо до {{person_or_body}}? Може да пишете също до:" @@ -689,6 +765,9 @@ msgstr "Имейлът не прилича на валиден адрес" msgid "Email me future updates to this request" msgstr "Пращай ми по имейл новите неща към това заявление" +msgid "Email:" +msgstr "Имейл:" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Въведете думите, които искате да търсите, разделени с интервали, напр. <strong>пътека за катерене</strong>" @@ -696,13 +775,13 @@ msgid "Enter your response below. You may attach one file (use email, or\\n <a msgstr "Въведете Вашия отговор по-долу. Можете да прикрепите един файл\\n (ползвайте имейл, или <a href=\"{{url}}\">се свържете с нас</a> ако е нужно да са повече)." msgid "Environmental Information Regulations" -msgstr "" +msgstr "Законодателство за информация за околната среда" msgid "Environmental Information Regulations requests made" -msgstr "" +msgstr "Заявлението по Закона за опазване на околната среда е направено" msgid "Environmental Information Regulations requests made using this site" -msgstr "" +msgstr "Заявления по Закона за опазване на околната среда, направени чрез този сайт" msgid "Event history" msgstr "История на събитията" @@ -803,6 +882,9 @@ msgstr "Следване на този орган" msgid "Follow this link to see the request:" msgstr "Последвайте тази връзка за да видите заявлението:" +msgid "Follow this link to see the requests:" +msgstr "Последвайте тази препратка, за да видите заявленията:" + msgid "Follow this person" msgstr "Следвай този потребител" @@ -944,7 +1026,7 @@ msgid "Home page of authority" msgstr "Сайт на публичния орган" msgid "However, you have the right to request environmental\\n information under a different law" -msgstr "" +msgstr "Впрочем, Вие имате правото да поискате информация за\\n околната среда съгласно друг закон" msgid "Human health and safety" msgstr "Здравеопазване и сигурност" @@ -1105,9 +1187,21 @@ msgstr "Индивидуални заявления" msgid "Info request" msgstr "Info Заявление" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1163,10 +1257,10 @@ msgid "InfoRequest|Url title" msgstr "" msgid "Information not held." -msgstr "" +msgstr "Органът не разполага с такава информация." msgid "Information on emissions and discharges (e.g. noise, energy,\\n radiation, waste materials)" -msgstr "" +msgstr "Информация за емисии и изтичания (напр. шум, енергии,\\n радиация, замърсяващи продукти)" msgid "Internal review request" msgstr "Заявление за вътрешно разглеждане" @@ -1210,9 +1304,6 @@ msgstr "Обяснете ни какво правите, когато това msgid "Link to this" msgstr "Връзка към това" -msgid "List all" -msgstr "Покажи всички" - msgid "List of all authorities (CSV)" msgstr "Списък на органите (CSV)" @@ -1244,10 +1335,10 @@ msgid "Made between" msgstr "Направено между" msgid "Mail server log" -msgstr "" +msgstr "Журнал на пощенския сървър" msgid "Mail server log done" -msgstr "" +msgstr "Журналът на пощенския сървър е готов" msgid "MailServerLogDone|Filename" msgstr "" @@ -1261,17 +1352,32 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "Направете размножено заявление" + +msgid "Make a new EIR request" +msgstr "Ново заявление за околната среда" + +msgid "Make a new FOI request" +msgstr "Ново заявление за ДдИ" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Създаване на ново<br/>\\n <strong>Заявление <span>за</span><br/>\\n Достъп до<br/>\\n Информация</strong>" msgid "Make a request" msgstr "Създаване на заявление" +msgid "Make a request to these authorities" +msgstr "Направете заявление до тези органи" + msgid "Make a request to this authority" msgstr "Направете заявление към този орган" +msgid "Make an {{law_used_short}} request" +msgstr "Направете заявление за {{law_used_short}}" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" -msgstr "Създаване на {{law_used_short}} заявление до '{{public_body_name}}'" +msgstr "Създаване на Заявление за {{law_used_short}} до '{{public_body_name}}'" msgid "Make and browse Freedom of Information (FOI) requests" msgstr "Създаване и разглеждане на заявления за Достъп до информация (ДдИ)" @@ -1352,7 +1458,7 @@ msgid "New response to your request" msgstr "Нов отговор на Вашето заявление" msgid "New response to {{law_used_short}} request" -msgstr "Нов отговор на {{law_used_short}} заявление" +msgstr "Нов отговор на заявление за {{law_used_short}}" msgid "New updates for the request '{{request_title}}'" msgstr "Новости по заявлението '{{request_title}}'" @@ -1376,7 +1482,7 @@ msgid "No similar requests found." msgstr "Няма намерени подобни резултати." msgid "No tracked things found." -msgstr "" +msgstr "Не са намерени следени неща." msgid "Nobody has made any Freedom of Information requests to {{public_body_name}} using this site yet." msgstr "До {{public_body_name}} все още никой не е отправил заявление за Достъп до информация чрез този сайт." @@ -1390,9 +1496,15 @@ msgstr "Няма създадени такива." msgid "Not a valid FOI request" msgstr "Не е валидно Заявление за ДдИ" +msgid "Not a valid request" +msgstr "Невалидно заявление" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Имайте предвид, че заявителят няма да бъде уведомен за коментара Ви, понеже заявлението бе публикувано от {{public_body_name}} от тяхно име." +msgid "Notes:" +msgstr "Бележки:" + msgid "Now check your email!" msgstr "Сега си проверете пощата!" @@ -1439,7 +1551,7 @@ msgid "One public authority found" msgstr "Един публичен орган е намерен" msgid "Only put in abbreviations which are really used, otherwise leave blank. Short or long name is used in the URL – don't worry about breaking URLs through renaming, as the history is used to redirect" -msgstr "" +msgstr "Поставете само реално използвана абревиатура или оставете празно. Късото или дълго име се ползват в URL-а – Не се притеснявайте, че с преименоването ще счупите URL-и, понеже за пренасочване се ползва историята" msgid "Only requests made using {{site_name}} are shown." msgstr "Показани са само заявленията, направени чрез {{site_name}}." @@ -1450,12 +1562,18 @@ msgstr "Само органът може да отговори на това з msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Само органът може да отговори на това заявление, но няма адрес на подателя, за да го проверя" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "Или направете <a href=\"{{url}}\">размножено заявление</a> до <strong>няколко органа</strong> наведнъж." + msgid "Or search in their website for this information." msgstr "Или потърсете в техния уеб сайт за тази информация." msgid "Original request sent" msgstr "Оригиналното заявление е изпратено" +msgid "Other" +msgstr "Друг" + msgid "Other:" msgstr "Друг:" @@ -1514,13 +1632,13 @@ msgid "Photo of you:" msgstr "Ваша снимка:" msgid "Plans and administrative measures that affect these matters" -msgstr "" +msgstr "Планове и административни мерки, които засягат тези въпроси" msgid "Play the request categorisation game" -msgstr "" +msgstr "Игра за категоризиране на заявления" msgid "Play the request categorisation game!" -msgstr "" +msgstr "Изиграйте едно категоризиране на заявления!" msgid "Please" msgstr "Молим" @@ -1591,6 +1709,9 @@ msgstr "Моля, въведете валиден имейл адрес" msgid "Please enter the message you want to send" msgstr "Моля, въведете съобщението, което искате да изпратите" +msgid "Please enter the name of the authority" +msgstr "Моля, въведете името на органа" + msgid "Please enter the same password twice" msgstr "Моля, въведете еднаква парола на двете места" @@ -1634,13 +1755,13 @@ msgid "Please only request information that comes under those categories, <stron msgstr "Молим, искайте само информация, която попада в тези категории, <strong>не си губете\\n времето</strong> или времето на публичния орган с искане на несвързана информация." msgid "Please pass this on to the person who conducts Freedom of Information reviews." -msgstr "" +msgstr "Моля, предайте това на този, който провежда прегледите по Достъп до Информация." msgid "Please select each of these requests in turn, and <strong>let everyone know</strong>\\nif they are successful yet or not." msgstr "Моля, влезте във всяко от тези заявления по ред и <strong>дайте мнението си</strong>\\nдали вече са успешни или не." msgid "Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature" -msgstr "" +msgstr "Моля, подпишете долу с Вашето име, или променете \"{{signoff}}\" подписа" msgid "Please sign in as " msgstr "Моля, влезте като " @@ -1648,6 +1769,9 @@ msgstr "Моля, влезте като " msgid "Please sign in or make a new account." msgstr "Моля, влезте или създайте нова регистрация." +msgid "Please tell us more:" +msgstr "Молим, кажете ни повече:" + msgid "Please type a message and/or choose a file containing your response." msgstr "Моля, напишете съобщение и/или посочете файл, съдържащ Вашия отговор." @@ -1714,6 +1838,12 @@ msgstr "Преглед на пояснително съобщение до '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Преглед на новия коментар към '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "Преглед на новото заявление за {{law_used_short}}" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "Преглед на новото Заявление за {{law_used_short}} до '{{public_body_name}}" + msgid "Preview your annotation" msgstr "Преглед на коментара Ви" @@ -1766,6 +1896,9 @@ msgid "Public bodies with the most successful requests" msgstr "Публични органи с най-много успешни заявления" msgid "Public body" +msgstr "Публичен орган" + +msgid "Public body change request" msgstr "" msgid "Public notes" @@ -1777,6 +1910,27 @@ msgstr "Публична страница" msgid "Public page not available" msgstr "Публичната страница не е достъпна" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1868,7 +2022,7 @@ msgid "Received an error message, such as delivery failure." msgstr "Получено е съобщение за грешка, подобно на грешка при доставяне." msgid "Recently described results first" -msgstr "" +msgstr "Първо последно описаните резултати" msgid "Refused." msgstr "Отказано." @@ -1891,6 +2045,9 @@ msgstr "Докладване на това заявление" msgid "Reported for administrator attention." msgstr "Докладвано на вниманието на администратор." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "Докладването на заявление уведомява администраторите на сайта. Те ще отговорят възможно най-скоро." + msgid "Request an internal review" msgstr "Искане на вътрешно разглеждане" @@ -1900,6 +2057,9 @@ msgstr "Искане на вътрешно разглеждане от {{person_ msgid "Request email" msgstr "Поискай имейл" +msgid "Request for personal information" +msgstr "Заявление за лична информация" + msgid "Request has been removed" msgstr "Заявлението беше премахнато" @@ -1933,6 +2093,9 @@ msgstr "Заявления, подобни на '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Заявления, подобни на '{{request_title}}' (стр. {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "Заявления ще бъдат изпратени до следните органи:" + msgid "Respond by email" msgstr "Отговорете с имейл" @@ -1984,6 +2147,9 @@ msgstr "Търсене на заявления за ДдИ, публични о msgid "Search contributions by this person" msgstr "Търсене в допринесеното от този потребител" +msgid "Search for the authorities you'd like information from:" +msgstr "Търсене на органите, от които ще искате информация:" + msgid "Search for words in:" msgstr "Търси думите в:" @@ -2011,11 +2177,14 @@ msgid "Search your contributions" msgstr "Търсене в допринесеното от Вас" msgid "See bounce message" -msgstr "" +msgstr "Вижте върнатото съобщение" msgid "Select one to see more information about the authority." msgstr "Изберете някой, за да видите повече информация за органа." +msgid "Select the authorities to write to" +msgstr "Изберете органите, на които ще пишете" + msgid "Select the authority to write to" msgstr "Изберете органа, на който ще пишете" @@ -2043,6 +2212,11 @@ msgstr "Изпращане на съобщение до " msgid "Send request" msgstr "Изпращане на заявление" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "Изпратено до един орган от {{info_request_user}} на {{date}}." +msgstr[1] "Изпратено до {{authority_count}} органа от {{info_request_user}} на {{date}}." + msgid "Set your profile photo" msgstr "Задайте снимка за профила Ви" @@ -2064,6 +2238,9 @@ msgstr "Търсене в" msgid "Sign in" msgstr "Влизане" +msgid "Sign in as the emergency user" +msgstr "Влизане като аварийния потребител" + msgid "Sign in or make a new account" msgstr "Вход или нова регистрация" @@ -2112,6 +2289,12 @@ msgstr "Съжаляваме, имаше се проблем в обработв msgid "Sorry, we couldn't find that page" msgstr "Съжаляваме, не можахме да намерим тази страница" +msgid "Source URL:" +msgstr "URL източник:" + +msgid "Source:" +msgstr "Източник:" + msgid "Special note for this authority!" msgstr "Специална забележка за този орган!" @@ -2136,6 +2319,9 @@ msgstr "Тема:" msgid "Submit" msgstr "Изпрати" +msgid "Submit request" +msgstr "Подаване на заявлението" + msgid "Submit status" msgstr "" @@ -2199,6 +2385,12 @@ msgstr "Благодарим Ви! Ще наблюдаваме какво се msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Благодарим за помощта - работата Ви ще улесни всички в намирането на успешните\\nотговори и ще ни помогне да поддържаме класациите..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "Благодарим за предложението Ви да добавим {{public_body_name}}. Ето къде в сайта беше добавен той:" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "Благодарим за предложението Ви да обновим имейл адреса за {{public_body_name}} на {{public_body_email}}. Това беше направено сега и всякакви нови заявления ще бъдат изпращани до новия адрес." + 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 "Благодарим Ви много - това ще помогне на всички в намирането на\\n полезно съдържание. Също, ако желаете, можем да Ви посъветваме за\\n следващата Ви стъпка с Вашето Заявление." @@ -2214,12 +2406,18 @@ msgstr "<strong>Вътрешното разглеждане завърши</stro msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Законът за Достъп до обществена информация <strong>не се прилага</strong> за" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "URL-ът, където сте намерили имейл адреса. Това поле не е задължително, но ще ни помогне много, ако може да ни предоставите конкретната страница в сайта на органа, където е посочен този адрес. Така най-лесно ще можем да го проверим." + msgid "The accounts have been left as they previously were." msgstr "Акаунтите бяха оставени както си бяха." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Органът <strong>не притежава</strong> информацията <small>(вероятно посочват кой я притежава)" +msgid "The authority email doesn't look like a valid address" +msgstr "Имейлът на органа не изглежда да е валиден адрес" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Органът притежава информацията само на <strong>хартиен носител</strong>." @@ -2232,6 +2430,9 @@ msgstr "Публичният орган би желал или вече е<stron msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "Класифицирането на заявления, (напр. дали са успешни или не) е направено от потребители и администратори на сайта, като те би могло да са сгрешили." +msgid "The contact email address for FOI requests to the authority." +msgstr "Имейл адресът за контакти на органа за заявления за ДдИ." + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Имейлът, който Вие изпратихте от името на {{public_body}}, до\\n{{user}} в отговор на заявление за {{law_used_short}}\\nне беше доставено." @@ -2293,7 +2494,7 @@ msgid "The search index is currently offline, so we can't show the Freedom of In msgstr "Търсачката ни не е достъпна в момента, поради което не можем да покажем Заявленията за Достъп до информация, направени от този потребител." msgid "The {{site_name}} team." -msgstr "" +msgstr "Екипът на {{site_name}}." msgid "Then you can cancel the alert." msgstr "След това ще можете да спрете известяването." @@ -2316,8 +2517,11 @@ msgstr "След това ще може да свалите {{info_request_title msgid "Then you can log into the administrative interface" msgstr "След това ще можете да влезете в административния интерфейс" +msgid "Then you can make a batch request" +msgstr "След това ще можете да направите размножено заявление" + msgid "Then you can play the request categorisation game." -msgstr "" +msgstr "След това ще можете да изиграете категоризирането на заявления." msgid "Then you can report the request '{{title}}'" msgstr "След това ще можете да докладвате заявлението '{{title}}'" @@ -2376,6 +2580,9 @@ msgstr "Има <strong>повече от един потребител</strong> msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Има ограничение на броя заявления на ден, които може да направите, понеже не желаем публичните органи да бъдат бомбардирани с голям брой неуместни заявления. Ако считате, че имате основателна причина да поискате вдигане на лимита във Вашия случай, молим, <a href='{{help_contact_path}}'>уведомете ни</a>." +msgid "There is nothing to display yet." +msgstr "Все още няма нищо за показване." + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Има {{count}} потребител, следящ това заявление" @@ -2424,11 +2631,14 @@ msgid "This authority no longer exists, so you cannot make a request to it." msgstr "Този орган вече не съществува, поради което не може да отправите заявление към него." msgid "This covers a very wide spectrum of information about the state of\\n the <strong>natural and built environment</strong>, such as:" -msgstr "" +msgstr "Това покрива широк спектър информация относно състоянието\\n на <strong>природната среда и строителството</strong>, като:" msgid "This external request has been hidden" msgstr "Външното заявление беше скрито" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "Това е стената на <a href=\"{{profile_url}}\">{{user_name}}</a>" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Това е текстова версия на Заявлението за Достъп до информация \"{{request_title}}\". Последната, пълна версия, може да видите на {{full_url}}" @@ -2466,7 +2676,7 @@ msgid "This page of public body statistics is currently experimental, so there a msgstr "Тази страница със статистики за Публичен Орган към момента е експериментална, така че, някои предварителни уговорки трябва да се имат предвид:" msgid "This particular request is finished:" -msgstr "" +msgstr "Това заявление е завършено:" msgid "This person has made no Freedom of Information requests using this site." msgstr "Този потребител не е отправял Заявления за Достъп до информация чрез този сайт." @@ -2592,8 +2802,11 @@ msgstr "За да научат всички, последвайте тази в msgid "To log into the administrative interface" msgstr "За да влезете в административния панел" +msgid "To make a batch request" +msgstr "За да създадете размножено заявление" + msgid "To play the request categorisation game" -msgstr "" +msgstr "За да играете играта по категоризиране на заявления" msgid "To post your annotation" msgstr "За да публикувате коментара си" @@ -2665,7 +2878,7 @@ msgid "Turn off email alerts" msgstr "Спри известията по имейл" msgid "Tweet this request" -msgstr "" +msgstr "Туитване на това заявление" msgid "Type <strong><code>01/01/2008..14/01/2008</code></strong> to only show things that happened in the first two weeks of January." msgstr "Напишете <strong><code>01/01/2013..14/01/2013</code></strong>, за да видите само случилото се през първите две седмици на януари." @@ -2682,15 +2895,15 @@ msgstr "Не е възможно изпращане на отговор до {{u msgid "Unable to send follow up message to {{username}}" msgstr "Не бе възможно да се изпрати пояснително съобщение до {{username}}" -msgid "Unexpected search result type" -msgstr "Неочакван тип резултат на търсене" - msgid "Unexpected search result type " msgstr "Неочакван тип резултат на търсене " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "За съжаление, не знаем имейл адреса\\nза ДдИ на този орган, така че, не можем да потвърдим това.\\nМолим <a href=\"{{url}}\">свържете се с нас</a> за да го оправим." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "За съжаление, ние не разполагаме с работещ адрес за {{public_body_names}}." + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "За съжаление, ние не разполагаме с работещ {{info_request_law_used_full}}\\nадрес за" @@ -2703,6 +2916,12 @@ msgstr "Отписване" msgid "Unusual response." msgstr "Необичаен отговор." +msgid "Update email address - {{public_body_name}}" +msgstr "Обновяване на имейл адрес - {{public_body_name}}" + +msgid "Update the address:" +msgstr "Обновете адреса:" + msgid "Update the status of this request" msgstr "Обновяване състоянието на това заявление" @@ -2730,6 +2949,9 @@ msgstr "Потребител – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "Нормално потребителите не могат да правят размножени заявления до множество органи, понеже не желаем публичните органи да бъдат бомбардирани с голям брой неуместни заявления. Ако считате, че имате основателна причина да изпратите размножено заявление до няколко органа наведнъж, молим, <a href=\"{{url}}\">свържете се с нас</a>." + msgid "User|About me" msgstr "" @@ -2739,6 +2961,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2778,8 +3003,11 @@ msgstr "" msgid "Version {{version}}" msgstr "Версия {{version}}" +msgid "Vexatious" +msgstr "Неоснователно" + msgid "View FOI email address" -msgstr "Виж ДдИ имейл адрес" +msgstr "Имейл адрес за ДдИ" msgid "View FOI email address for '{{public_body_name}}'" msgstr "Показване на ДдИ имейл адреса за '{{public_body_name}}'" @@ -2883,6 +3111,9 @@ msgstr "Кое от тези се случва?" msgid "Who can I request information from?" msgstr "От кого мога да поискам информация?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "Защо конкретно смятате това заявление за неподходящо?" + msgid "Withdrawn by the requester." msgstr "Оттеглено от заявителя." @@ -2907,6 +3138,9 @@ msgstr "Напишете заявлението си <strong>ясно и кон msgid "You" msgstr "Вие" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "Вие вече създадохте такова размножено заявление на {{date}}. Можете да разгледате <a href=\"{{existing_batch}}\">съществуващото Заявление</a>, или да редактирате детайлите по-долу, за да направите ново, подобно размножено Заявление." + msgid "You are already following new requests" msgstr "Вие вече следвате новите заявления" @@ -2976,6 +3210,9 @@ msgstr "Знаете кое е предизвикало грешката и мо msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "Можете <strong>да добавяте файлове</strong>. Ако искате да прикрепите\\nфайл, твърде голям за имейл, ползвайте формата по-долу." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "Вие може да откриете такъв на техния сайт, или като им позвъните и ги попитате. Ако успеете да откриете такъв, молим изпратете го и на нас:" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Вие може да откриете\\n такъв на техния сайт, или като им позвъните и ги попитате. Ако успеете\\n да откриете такъв, молим <a href=\"{{url}}\">изпратете го и на нас</a>." @@ -3039,12 +3276,18 @@ msgstr "Вашето <strong>име ще се показва публично</s msgid "Your annotations" msgstr "Вашите коментари" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "Вашето размножено заявление \"{{title}}\" беше изпратено" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Ваши данни, включително имейл адреса Ви, не са били дадени на никого." msgid "Your e-mail:" msgstr "Вашият имейл:" +msgid "Your email doesn't look like a valid address" +msgstr "Вашият имейл не изглежда да е валиден адрес" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Вашето пояснително съобщение не беше изпратено понеже това заявление беше спряно с цел предотвратяване на спам. Моля <a href=\"{{url}}\">свържете се с нас</a> ако действително искате да изпратите пояснително съобщение." @@ -3093,6 +3336,18 @@ msgstr "Вашето заявление '{{request}}' на {{url}} беше пр msgid "Your request on {{site_name}} hidden" msgstr "Вашето заявление на {{site_name}} е скрито" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "Вашата заявка за добавяне на орган беше изпратена. Благодарим Ви, че ни пишете! Ще се постараем да Ви отговорим скоро." + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "Вашата заявка за добавяне на {{public_body_name}} в {{site_name}}" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "Вашата заявка за обновяване адреса на {{public_body_name}} беше изпратена. Благодарим Ви, че ни пишете! Ще се постараем да Ви отговорим скоро." + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "Вашата заявка за обновление на {{public_body_name}} в {{site_name}}" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Вашето Заявление беше наречено {{info_request}}. Като уведомите всички, че сте получили исканата информация, ще ни помогнете да следим " @@ -3105,6 +3360,9 @@ msgstr "Вашият отговор на заявлението за ДдИ не msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Вашият отговор <strong>ще се появи в Интернет</strong>, <a href=\"{{url}}\">вижте защо</a> и ще отговори на други въпроси." +msgid "Your selected authorities" +msgstr "Вашите избрани органи" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Вашите мисли за това, какво {{site_name}} <strong>администраторите</strong> би трябвало да направят за Заявлението." @@ -3118,6 +3376,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "{{count}} Ваш коментар" msgstr[1] "{{count}} Ваши коментара" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "Вашето {{count}} размножено заявление" +msgstr[1] "Вашите {{count}} размножени заявления" + msgid "Your {{site_name}} email alert" msgstr "Вашето {{site_name}} имейл известие" @@ -3130,14 +3393,17 @@ msgstr "Искрено Ваш," msgid "Yours," msgstr "Ваш," +msgid "[Authority URL will be inserted here]" +msgstr "[Тук ще бъде вмъкнат URL-а на органа]" + msgid "[FOI #{{request}} email]" msgstr "[ДдИ #{{request}} имейл]" msgid "[{{public_body}} request email]" -msgstr "" +msgstr "[{{public_body}} имейл за заявления]" msgid "[{{site_name}} contact email]" -msgstr "" +msgstr "[{{site_name}} имейл за контакти]" msgid "\\n\\n[ {{site_name}} note: The above text was badly encoded, and has had strange characters removed. ]" msgstr "\\n\\n[ {{site_name}} съобщение: Горният текст е в непозволен формат. Някои странни символи бяха премахнати. ]" @@ -3149,7 +3415,7 @@ msgid "admin" msgstr "admin" msgid "alaveteli_foi:The software that runs {{site_name}}" -msgstr "" +msgstr "alaveteli_foi:Софтуерът, задвижващ {{site_name}}" msgid "all requests" msgstr "всички заявления" @@ -3296,7 +3562,7 @@ msgid "normally" msgstr "нормално" msgid "not requestable due to: {{reason}}" -msgstr "" +msgstr "не може да се иска поради: {{reason}}" msgid "please sign in as " msgstr "моля, влезте като " @@ -3479,8 +3745,11 @@ msgstr "{{thing_changed}} беше променен от <code>{{from_value}}</c msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - Заявление за Достъп до Обществена Информация до {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "{{title}} - размножено заявление" + msgid "{{user_name}} (Account suspended)" -msgstr "" +msgstr "{{user_name}} (Блокирана регистрация)" msgid "{{user_name}} - Freedom of Information requests" msgstr "{{user_name}} - Заявления за Достъп до Обществена Информация" @@ -3503,6 +3772,12 @@ msgstr "{{user_name}} изпрати пояснително съобщение msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} изпрати заявление до {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "{{user_name}} желае към {{site_name}} да бъде добавен нов орган" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "{{user_name}} желае имейл адреса за {{public_body_name}} да бъде обновен" + msgid "{{username}} left an annotation:" msgstr "{{username}} остави коментар:" diff --git a/locale/bs/app.po b/locale/bs/app.po index 014331a5f..5960788ac 100644 --- a/locale/bs/app.po +++ b/locale/bs/app.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/alaveteli/language/bs/)\n" "Language: bs\n" "MIME-Version: 1.0\n" @@ -43,6 +43,12 @@ msgstr " - pregledaj i napravi Zahtjeve o slobodnom pristupu informacijama " msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Note:</strong>\n" @@ -55,6 +61,12 @@ msgstr " <strong>Privacy note:</strong> Vaša e-mail adresa će biti proslijeđe msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Sažimati</strong> sadržaj svake vraćene informacije. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Savjetuj kako<strong>najbolje objasniti</strong> zahjev." @@ -120,6 +132,15 @@ msgstr "'{{link_to_request}}', zahtjev" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', osoba" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -139,6 +160,9 @@ msgstr "- ili -" msgid "1. Select an authority" msgstr "1. Odaberite ustanovu" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Tražite informacije" @@ -207,6 +231,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} je trenutno na održavanju. Možete samo pregledati postojeće zahtjeve. Ne možete odnositi nove, dodavati prateće poruke ili napomene, ili u suprotnom promijenite bazu podataka.</p> <p>{{read_only}}</p>" @@ -354,6 +381,12 @@ msgstr "" "Dodajte napomenu Vašem zahtjevu sa izabranim navodima, ili\n" " <strong>sažetak odgovora</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Dodato na datum {{date}}" @@ -444,6 +477,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Tražite <strong>konkretne</strong> dokumente ili informacije, ova stranica nije pogodna za opće pretrage." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Na dnu ove stranice, napišite im odgovor pokušavajući da ih ubjedite da ga pregledaju\n" @@ -455,6 +497,12 @@ msgstr "Prilog (neobavezno):" msgid "Attachment:" msgstr "Prilog" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Čeka klasifikaciju." @@ -464,6 +512,9 @@ msgstr "Čeka urgenciju" msgid "Awaiting response." msgstr "Čeka odgovor." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Počevši sa" @@ -551,6 +602,9 @@ msgstr "Provjerite ima li grešaka ako ste ukucali ili kopirali adresu." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Provjerite da niste uključili nikakve <strong>lične podatke</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Odaberite sliku na Vašem profilu" @@ -577,6 +631,9 @@ msgstr "Kliknite na link ispod da biste poslali poruku {{public_body}} koja će msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -610,8 +667,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Potvrdite Vaš Zahtjev za slobodan pristup informacijama za" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Potvrdite Vaš račun na {{site_name}}" @@ -637,12 +694,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Kontakt {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nismo mogli prepoznati zahtjev sa e-mail adrese" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Pogrešan format datoteke. Molimo Vas uploadirajte: PNG, JPEG, GIF, ili neke druge podržive formate." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Smanjite sliku na Vašem profilu" @@ -655,12 +721,18 @@ msgstr "Trenutno <strong>čeka odgovor</strong> od {{public_body_link}}, moraju msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Poštovani {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -694,6 +766,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -738,6 +813,9 @@ msgstr "E-mail ne izgleda kao validna adresa" msgid "Email me future updates to this request" msgstr "Buduća ažuriranja šaljite na moj e-mail" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Sa razmacima unesite riječi koje želite naći, npr. <strong>climbing lane</strong>" @@ -858,6 +936,9 @@ msgstr "Prati ovu ustanovu" msgid "Follow this link to see the request:" msgstr "Pratite ovaj link da biste vidjeli zahtjev:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1190,9 +1271,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1302,9 +1395,6 @@ msgstr "" msgid "Link to this" msgstr "Spojite sa ovim" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Popis svih ustanova (CSV)" @@ -1353,6 +1443,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Podnesi novi<br/>\n" @@ -1363,9 +1462,15 @@ msgstr "" msgid "Make a request" msgstr "Podnesi zahtjev" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Podnesi {{law_used_short}} zahtjev javnoj ustanovi '{{public_body_name}}'" @@ -1486,9 +1591,15 @@ msgstr "Ništa podneseno." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sada provjerite Vaš e-mail!" @@ -1546,12 +1657,18 @@ msgstr "Samo ustanova može odgovoriti na ovaj zahtjev, i ne prepoznajemo adresu msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Samo ustanova može odgovoriti na ovaj zahtjev, ali ne sadrži adresu pošiljaoca" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ili tražite ovu informaciju na njihovoj web stranici." msgid "Original request sent" msgstr "Originalni zahtjev poslan" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Drugo:" @@ -1696,6 +1813,9 @@ msgstr "Molimo unesite valjanu e-mail adresu" msgid "Please enter the message you want to send" msgstr "Molimo upišite poruku koju želite poslati" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Molimo unesite isti password dva puta" @@ -1755,6 +1875,9 @@ msgstr "Molimo prijavite se kao " msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Molimo ukucajte poruku i/ili odaberite fajl koji sadrži vaš odgovor." @@ -1821,6 +1944,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Pregledaj novu napomenu za '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Pregledajte Vašu napomenu" @@ -1875,6 +2004,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1884,6 +2016,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -2000,6 +2153,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Tražite " @@ -2009,6 +2165,9 @@ msgstr "Zatražiti urgenciju od strane {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Zahtjev je uklonjen" @@ -2042,6 +2201,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-mailom" @@ -2093,6 +2255,9 @@ msgstr "Pretraži Zahtjeve za slobodan pristup informacijama, javne ustanove i k msgid "Search contributions by this person" msgstr "Pretraži doprinose od strane ove osobe" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2126,6 +2291,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Odaberite jedan da biste vidjeli više informacija o ustanovi." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Odaberite ustanovu kojoj ćete pisati" @@ -2153,6 +2321,12 @@ msgstr "Pošalji poruku " msgid "Send request" msgstr "Pošalji zahtjev" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Podesiti sliku na Vašem profilu" @@ -2174,6 +2348,9 @@ msgstr "Prikazuje" msgid "Sign in" msgstr "Prijavite se" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Prijavite se ili napravite novi korisnički račun" @@ -2228,6 +2405,12 @@ msgstr "Žalimo, postoji problem u procesuiranju stranice" msgid "Sorry, we couldn't find that page" msgstr "Žalimo, nismo mogli pronaći tu stranicu" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Posebna napomena za ovu ustanovu!" @@ -2252,6 +2435,9 @@ msgstr "Tema:" msgid "Submit" msgstr "Predaj" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Pošalji status" @@ -2317,6 +2503,12 @@ msgstr "" "Hvala na pomoći - Vaš rad će svima olakšati pronalaženje pozitivnih\n" "odgovora, i možda čak dozvoliti nama da pravimo tabele zajednica..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Hvala - ovo će pomoći drugima da pronađu korisne stvari. Mi ćemoVas\n" @@ -2338,12 +2530,18 @@ msgstr "Pregled <strong>je završen</strong> i sveukupno:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Zakon o slobodnom pristupu informacijama <strong>se ne odnosi</strong> na" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički računi nisu mijenjani" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Ustanova <strong>ne posjeduje</strong> informacije <small>(možda mogu reći ko posjeduje)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Ustanova ima samo <strong>printanu kopiju</strong> informacije." @@ -2358,6 +2556,9 @@ msgstr "Ustanova bi željela / je <strong>odgovorila poštom</strong> na ovaj za msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2451,6 +2652,9 @@ msgstr "Tada možete preuzeti zipovano {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Tada možete igrati igru kategorizacije zatjeva." @@ -2511,6 +2715,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2567,6 +2774,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2742,6 +2952,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Da biste igrali igru kategorizacije zahtjeva" @@ -2832,9 +3045,6 @@ msgstr "Ne možemo poslati poruku za {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Ne možemo poslati popratnu pokuku za {{username}}" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" @@ -2844,6 +3054,9 @@ msgstr "" "te ustanove, tako da nismo u mogućnosti validirati ovo.\n" "Molimo <a href=\"{{url}}\">kontaktirajte nas</a> da to razjasnimo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "Nažalost, ne posjedujemo ispravnu {{info_request_law_used_full}}\n" @@ -2858,6 +3071,12 @@ msgstr "" msgid "Unusual response." msgstr "Neobičan odgovor." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Ažurirajte status ovog zahtjeva" @@ -2885,6 +3104,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Korisnik|O meni" @@ -2894,6 +3116,9 @@ msgstr "Korisnik|Administratorski nivo" msgid "User|Ban text" msgstr "Korisnik|tekst isključenja" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Korisnik|E-mail" @@ -2933,6 +3158,9 @@ msgstr "Korisnik|Url ime" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Vidjeti adresu za Zahtjeve za slobodan pristup informacijama." @@ -3054,6 +3282,9 @@ msgstr "Šta se od ovoga događa?" msgid "Who can I request information from?" msgstr "Od koga mogu tražiti informacije?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Povučeno od strane podnosioca zahtjeva." @@ -3078,6 +3309,9 @@ msgstr "Pišite Vaš zahtjev <strong>jednostavnim, preciznim jezikom</strong>." msgid "You" msgstr "Vi" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3152,6 +3386,9 @@ msgstr "Znate šta je uzrok greške i možete <strong>predložiti rješenje</str msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Moguće je da je nađete\n" @@ -3221,12 +3458,18 @@ msgstr "" msgid "Your annotations" msgstr "Vaše napomene" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Vaš e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3277,6 +3520,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Naziv Vašeg zahtjeva je {{info_request}}. Obavijest o tome da li ste dobili odgovor će nam pomoći da bolje pratimo." @@ -3289,6 +3544,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Vaš odgovor će se <strong>pojaviti na Internetu</strong>, <a href=\"{{url}}\">pročitajte zašto</a> i odgovore na druga pitanja." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vaše mišljenje o tome šta administratori {{site_name}} trebaju da rade po pitanju zahtjeva." @@ -3304,6 +3562,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "Vaše {{site_name}} e-mail upozorenje" @@ -3316,6 +3580,9 @@ msgstr "S poštovanjem," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3673,6 +3940,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3699,6 +3969,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} je poslao zahtjev za {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} je ostavio napomenu:" diff --git a/locale/ca/app.po b/locale/ca/app.po index 428cc60ef..1f105b4bc 100644 --- a/locale/ca/app.po +++ b/locale/ca/app.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2014-01-13 19:26+0000\n" -"Last-Translator: David Cabo <david.cabo@gmail.com>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/alaveteli/language/ca/)\n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -40,6 +40,12 @@ msgstr " - Envia i cerca entre sol·licituds d'accés a informació" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Nota::</strong>\n" @@ -51,6 +57,12 @@ msgstr " <strong>Nota sobre privacitat:</strong> La teva adreça de correu es do msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Resumeix</strong> el contingut de qualsevol informació obtinguda. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Consell sobre com <strong>aclarir el millor possible</strong> la sol•licitud." @@ -116,6 +128,15 @@ msgstr "'{{link_to_request}}', una sol·licitud" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', una persona" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -135,6 +156,9 @@ msgstr "- o -" msgid "1. Select an authority" msgstr "1. Esculli un organisme públic" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Sol·liciti informació" @@ -209,6 +233,9 @@ msgstr "<p>La teva sol•licitud inclou un <strong>codi postal</strong>. Excepte msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} està temporalment en manteniment. Només pot veure sol•licituds existents. No pot crear una nova, afegir comentari, enviar respostes o qualsevol altre operació que modifiqui la base de dades.</p> <p>{{read_only}}</p>" @@ -366,6 +393,12 @@ msgstr "" "Afegeix un comentari a la teva sol·licitud amb cites seleccionades, o\n" " un <strong>resum de la resposta</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Afegit el {{date}}" @@ -456,6 +489,15 @@ msgstr "Posseeix el copyright d'alguna informació d'aquesta pàgina?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Pide documentos o información <strong>específica</strong>, esta web no está pensada para resolver dudas generales." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Al final de esta página, escribe una respuesta intentando convencerles de que lo escaneen\n" @@ -467,6 +509,12 @@ msgstr "Adjuntos (opcional):" msgid "Attachment:" msgstr "Adjunto:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Esperando clasificación." @@ -476,6 +524,9 @@ msgstr "Esperando revisión interna." msgid "Awaiting response." msgstr "Esperando respuesta." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Comenzando por" @@ -563,6 +614,9 @@ msgstr "Busque erratas si ha copiado la dirección." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Compruebe que no ha incluído <strong>ninguna información personal</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Elegir mi foto de perfil" @@ -589,6 +643,9 @@ msgstr "Haz click en el siguiente enlace para enviar un mensaje a {{public_body} msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -622,8 +679,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Confirma tu solicitud a " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirma tu cuenta en {{site_name}}" @@ -649,12 +706,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Contacta con {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "No hemos podido identificar la solicitud a partir de la dirección de correo" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "No se pudo procesar la imagen subida. Puedes utilizar PNG, JPEG, GIF u otros formatos de imagen populares." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Recorta tu foto de perfil" @@ -669,12 +735,18 @@ msgstr "Actualmente <strong>esperando la respuesta</strong> de {{public_body_lin msgid "Date:" msgstr "Fecha:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Estimado {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -708,6 +780,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "¿Quieres mandar tu mensaje a {{person_or_body}}? También puedes escribir a:" @@ -752,6 +827,9 @@ msgstr "La dirección de correo no parece válida" msgid "Email me future updates to this request" msgstr "Quiero recibir emails con las actulizaciones de esta solicitud" +msgid "Email:" +msgstr "" + 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>" @@ -872,6 +950,9 @@ msgstr "Seguir a este organismo" msgid "Follow this link to see the request:" msgstr "Siga este enlace para ver la solicitud:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1209,9 +1290,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1322,9 +1415,6 @@ msgstr "" msgid "Link to this" msgstr "Enlace" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Lista de todos los organismos (CSV)" @@ -1373,6 +1463,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Envíe una nueva<br/>\n" @@ -1382,9 +1481,15 @@ msgstr "" msgid "Make a request" msgstr "Enviar solicitud" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Hacer una solicitud {{law_used_short}} a '{{public_body_name}}'" @@ -1505,9 +1610,15 @@ msgstr "Ninguno/a." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "¡Ahora comprueba tu correo!" @@ -1565,12 +1676,18 @@ msgstr "Sólo el organismo puede responder a esta solicitud, y no reconozco la d msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Sólo el organismo puede responder a esta solicitud, pero no hay un campo \"From\" contra el que comparar" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "O busque esta información en su web." msgid "Original request sent" msgstr "Solicitud original enviada" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Otros:" @@ -1715,6 +1832,9 @@ msgstr "Por favor, introduzca una dirección de correo válida" msgid "Please enter the message you want to send" msgstr "Por favor, introduzca el mensaje que quieres enviar" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Por favor, introduzca la misma contraseña dos veces" @@ -1774,6 +1894,9 @@ msgstr "Por favor abre una sesión como " msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Por favor escribe un mensaje y/o escoje un fichero conteniendo su respuesta." @@ -1840,6 +1963,12 @@ msgstr "Revisar mensaje a '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Revisar nuevo comentario a '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Revisa tu comentario" @@ -1894,6 +2023,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1903,6 +2035,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -2019,6 +2172,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Pida una revisión interna" @@ -2028,6 +2184,9 @@ msgstr "Pedir una revisión interna a {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "La solicitud ha sido eliminada" @@ -2061,6 +2220,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2112,6 +2274,9 @@ msgstr "Buscar solicitudes de información, organismos públicos y usuarios" msgid "Search contributions by this person" msgstr "Buscar aportaciones de esta persona" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Buscar palabras en:" @@ -2147,6 +2312,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Elija uno para ver más información sobre el organismo." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Elija el organismo al que escribir" @@ -2174,6 +2342,11 @@ msgstr "Enviar un mensaje a " msgid "Send request" msgstr "Enviar solicitud" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Cambiar foto de perfil" @@ -2195,6 +2368,9 @@ msgstr "Mostrando" msgid "Sign in" msgstr "Abrir sesión" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Abrir sesión o crear nueva cuenta" @@ -2249,6 +2425,12 @@ msgstr "Lo sentimos, hubo un problema procesando esta página" msgid "Sorry, we couldn't find that page" msgstr "Lo sentimos, no hemos podido encontrar esa página" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "¡Notas especiales sobre este organismo!" @@ -2273,6 +2455,9 @@ msgstr "Tema:" msgid "Submit" msgstr "Enviar" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Enviar estado" @@ -2338,6 +2523,12 @@ msgstr "" "Gracias por ayudar - tu trabajo hace más sencillo que otros encuentren solicitudes\n" "que han tenido éxito, e incluso nos permitirá hacer clasificaciones..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Muchas gracias - esto ayudará a otros a encontrar información útil.\n" @@ -2359,12 +2550,18 @@ msgstr "La <strong>revisión ha finalizado</strong> y en resumen:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "La ley de acceso a la información <strong>no es aplicable</strong> a" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "El organismo <strong>no tiene</strong> la información <small>(tal vez dicen quién la tiene)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "El organismo sólo tiene una <strong>copia en papel</strong> de la información." @@ -2379,6 +2576,9 @@ msgstr "El organismo querría / ha respondido <strong>por correo ordinario</stro msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "El correo envíado por usted, en nombre de {{public_body}}, enviado a\n" @@ -2475,6 +2675,9 @@ msgstr "Entonces podrá descargarse el fichero ZIP de {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Entonces podrá jugar al juego de clasificar solicitudes" @@ -2535,6 +2738,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Hay un límite en el número de solicitudes que puedes hacer en un día, porque no queremos que los organismos públicos reciban un número exagerado de solicitudes mal formuladas. Si necesitas que el límite no se aplique en tu caso, por favor <a href='{{help_contact_path}}'>contacta con nosotros</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Hay {{count}} persona siguiendo esta solicitud." @@ -2592,6 +2798,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Esta es la versión sólo-texto de la solicitud de información \"{{request_title}}\". La versión más actualizada y completa está disponible en {{full_url}}" @@ -2773,6 +2982,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Jugar al juego de recategorización de solicitudes" @@ -2863,9 +3075,6 @@ msgstr "No se pudo enviar la respuesta a {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "No se pudo enviar la respuesta a {{username}}" -msgid "Unexpected search result type" -msgstr "Se encontró un tipo de resultado inesperado" - msgid "Unexpected search result type " msgstr "Se encontró un tipo de resultado inesperado " @@ -2875,6 +3084,9 @@ msgstr "" "de correo para este organismo, así que no podemos validarlo.\n" "Por favor <a href=\"{{url}}\">contáctenos</a> para arreglarlo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Desgraciadamente, no tenemos una dirección de correo válida para" @@ -2887,6 +3099,12 @@ msgstr "" msgid "Unusual response." msgstr "Respuesta no habitual." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Actualizar el estado de esta solicitud" @@ -2914,6 +3132,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2923,6 +3144,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2962,6 +3186,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Ver dirección de correo" @@ -3085,6 +3312,9 @@ msgstr "¿Qué está pasando?" msgid "Who can I request information from?" msgstr "¿A quién puedo solicitar información?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Retirada por el autor." @@ -3109,6 +3339,9 @@ msgstr "Escribe tu solicitud en un <strong>lenguaje sencillo y claro</strong>." msgid "You" msgstr "Tú" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3185,6 +3418,9 @@ msgstr "Sabes lo que ha causado el error, y puedes <strong>sugerir una solución msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Puede que encuentres una\n" @@ -3264,12 +3500,18 @@ msgstr "" msgid "Your annotations" msgstr "Tus comentarios" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Tu correo:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Tu respuesta no ha sido enviada porque esta solicitud ha sido bloqueada para evitar spam. Por favor <a href=\"{{url}}\">contáctanos</a> si realmente quieres enviar una respuesta." @@ -3320,6 +3562,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Tu solicitud se llamaba {{info_request}}. Haznos saber si has recibido la información para ayudarnos a controlar a" @@ -3332,6 +3586,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Tu respuesta <strong>aparecerá en Internet</strong>, <a href=\"{{url}}\">lee por qué</a> y respuestas a otras preguntas." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Opine sobre lo que los <strong>administradores</strong> de {{site_name}} deberían hacer con la solicitud." @@ -3345,6 +3602,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Tu {{count}} comentario" msgstr[1] "Tus {{count}} comentarios" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Tu alerta en {{site_name}}" @@ -3357,6 +3619,9 @@ msgstr "Un saludo," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3719,6 +3984,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Expulsado)" @@ -3745,6 +4013,12 @@ msgstr "{{user_name}} envió un mensaje a {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} envió una solicitud a {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} dejó un comentario:" diff --git a/locale/cs/app.po b/locale/cs/app.po index 74d4e4544..877d3cd3f 100644 --- a/locale/cs/app.po +++ b/locale/cs/app.po @@ -4,7 +4,7 @@ # # Translators: # jui <appukonrad@gmail.com>, 2012 -# Hana Huntova <>, 2012-2013 +# Hana Huntova <>, 2012-2014 # Jana Kneschke <>, 2012-2013 # janakneschke <jana.kneschke@gmail.com>, 2013 # janakneschke <jana.kneschke@gmail.com>, 2012-2013 @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Czech (http://www.transifex.com/projects/p/alaveteli/language/cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -47,6 +47,12 @@ msgstr " - prohlížejte a vzneste dotaz" msgid " - wall" msgstr "- nástěnka" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Upozornění:</strong>\n" @@ -58,6 +64,12 @@ msgstr " <strong>Ochrana soukromí:</strong> Vaše e-mailová adresa bude před msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Shrňte</strong> obsah odpovědi na váš dotaz. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Poraďte, <strong>jak co nejlépe upřesnit</strong> tento dotaz." @@ -120,6 +132,15 @@ msgstr "'{{link_to_request}}', dotaz" msgid "'{{link_to_user}}', a person" msgstr "od uživatele '{{link_to_user}}'." +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*neznámá data*" @@ -139,6 +160,9 @@ msgstr "- nebo -" msgid "1. Select an authority" msgstr "1. Vyberte instituci" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Vzneste dotaz" @@ -215,6 +239,9 @@ msgstr "" "<p><strong>Odesláno!</strong></p>\n" "<p><strong>Pošleme vám e-mail </strong> až vám instituce odpoví nebo po {{late_number_of_days}} dní po vypršení lhůty na odpověď.</p>\\n <p>Pokud o svém dotazu budete dále psát (například na nějakém fóru či blogu), přiložte odkaz na stránky IPV a k dotazu přidejte komentář.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>Stránky {{site_name}} jsou právě v údržbě. Můžete si pouze prohlížet již vznesené dotazy. Nelze vznášet nové dotazy, přidávat poznámky či odpovědi, nebo jiným způsobem upravovat databázi</p> <p>{{read_only}}</p>" @@ -367,6 +394,12 @@ msgstr "" "Přidejte poznámku k vašemu dotazu s připravenými komentáři, nebo\n" " <strong>shrnutím odpovědi</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Vloženo {{date}}" @@ -455,6 +488,15 @@ msgstr "Jste vlastníkem nějakých autorských práv na této stránce?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Požádejte o <strong>konkrétní</strong> dokumenty nebo informace, tyto stránky nejsou určeny pro obecné dotazy." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Ve spodní části této stránky jim napište odpověď a požádejte je, aby požadované informace oskenovali\n" @@ -466,6 +508,12 @@ msgstr "Příloha (nepovinná):" msgid "Attachment:" msgstr "Příloha:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Čeká se zařazení." @@ -475,6 +523,9 @@ msgstr "Čeká se na doplnění dotazu." msgid "Awaiting response." msgstr "Čeká se na odpověď." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Začínající na" @@ -562,6 +613,9 @@ msgstr "Zkontrolujte chyby, pokud je adresa opisovaná či kopírovaná" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Zkontrolujte, zda jste neuvedli nějakou <strong>osobní informaci</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Vyberte své profilové foto:" @@ -586,6 +640,9 @@ msgstr "Pro poslání upomínky klikněte na níže uvedený odkaz instituce {{p msgid "Close" msgstr "Zavřít" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Komentář" @@ -619,8 +676,8 @@ msgstr "Potvrďte, že chcete být informováni o dotazech vznesených na instit msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Potvrďte, že chcete sledovat vznesený dotaz '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Potvrďte svůj dotaz vznesený na" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Potvďte svou registraci na stránkách {{site_name}}" @@ -646,12 +703,21 @@ msgstr "Kontaktovat příjemce sdělení {{recipient}}" msgid "Contact {{site_name}}" msgstr "Kontaktujte stránky {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Dotaz z této e-mailové adresy nemohl být identifikován" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Nahraný soubor nebyl rozeznán. Jsou podporovány soubory s koncovkou PNG, JPEG, GIF a další. " +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Upravte své profilové foto" @@ -666,6 +732,9 @@ msgstr "V současnosti <strong> se čeká na odpověď</strong> od instituce {{p msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Vážený/á {{name}}," @@ -677,6 +746,9 @@ msgstr "" "\n" "Vážená paní, vážený pane," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Původní nastavení" @@ -710,6 +782,9 @@ msgstr "Disclosure log" msgid "Disclosure log URL" msgstr "Disclosure log URL" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Nechcete svou zprávu adresovat na {{person_or_body}}? Můžete také napsat:" @@ -754,6 +829,9 @@ msgstr "Neplatná e-mailová adresa" msgid "Email me future updates to this request" msgstr "Pošlete mi budoucí aktualizace tohoto dotazu. " +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Slova, která chcete najít, musí být oddělena mezerou, například <strong>přechod pro chodce</strong>" @@ -875,6 +953,9 @@ msgstr "Sledovat tuto instituci" msgid "Follow this link to see the request:" msgstr "Pro úpravu statusu dotazu přejděte na tento odkaz:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Sledovat tohoto uživatele" @@ -1096,7 +1177,7 @@ msgid "If you are still having trouble, please <a href=\"{{url}}\">contact us</a msgstr "Pokud máte stále problémy <a href=\"{{url}}\">kontaktujte nás</a>." msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the message." -msgstr "" +msgstr "Pokud jste žadatel, můžete se <a href=\"{{url}}\">sign in</a> pro prohlížení zprávy. " msgid "If you are the requester, then you may <a href=\"{{url}}\">sign in</a> to view the request." msgstr "Pokud jste tazatel, můžete se <a href=\"{{url}}\">přihlásit</a> a podívat se na svůj dotaz." @@ -1196,9 +1277,21 @@ msgstr "Jednotlivé dotazy" msgid "Info request" msgstr "Dotaz na informaci" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Dotaz na informaci – akce ??" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent| V procesu" @@ -1306,9 +1399,6 @@ msgstr "" msgid "Link to this" msgstr "Odkaz" -msgid "List all" -msgstr "Vypsat vše" - msgid "List of all authorities (CSV)" msgstr "Vytvořit seznam všech institucí (CSV)" @@ -1357,6 +1447,15 @@ msgstr "MailServerLog|Řádek" msgid "MailServerLog|Order" msgstr "MailServerLog|Příkaz" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Vzneste nový <br/>\n" @@ -1367,9 +1466,15 @@ msgstr "" msgid "Make a request" msgstr "Vzneste dotaz" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Vzneste žádost na tuto instituci" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Vzneste {{law_used_short}} dotaz na '{{public_body_name}}'" @@ -1386,7 +1491,7 @@ msgid "Message" msgstr "Zpráva" msgid "Message has been removed" -msgstr "" +msgstr "Zpráva byla smazána" msgid "Message sent using {{site_name}} contact form, " msgstr "Zpráva zaslána pomocí kontaktního formuláře stránek {{site_name}}, " @@ -1490,9 +1595,15 @@ msgstr "Nic tu není" msgid "Not a valid FOI request" msgstr "Neplatné vznesení dotazu" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Rádi bychom vás upozornili, že tazatel nebude o vašem komentáři informován, jelikož tento dotaz byl zveřejněn na žádost instituce {{public_body_name}}." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Nyní zkontrolujte svou e-mailovou schránku!" @@ -1506,7 +1617,7 @@ msgid "Now preview your message asking for an internal review" msgstr "Nyní přejděte na náhled své zprávy žádající prozkoumání. " msgid "Number of requests" -msgstr "" +msgstr "Počet žádostí" msgid "OR remove the existing photo" msgstr "NEBO odstraňte existující foto" @@ -1550,12 +1661,18 @@ msgstr "Pouze oslovená instituce může odpovědět na tento dotaz. Adresa, ze msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Pouze instituce může odpovědět na váš dotaz, ale v políčku \"Od\" není žádná adresa " +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Nebo prohledejte tuto informaci na jejich internetových stránkách." msgid "Original request sent" msgstr "Původní dotaz odeslán" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Jiné:" @@ -1572,10 +1689,10 @@ msgid "OutgoingMessage|Message type" msgstr "Odchozí zpráva | Typ zprávy" msgid "OutgoingMessage|Prominence" -msgstr "" +msgstr "Odchozí zprávy|Výjimky" msgid "OutgoingMessage|Prominence reason" -msgstr "" +msgstr "Odchozí zprávy|Výjimky" msgid "OutgoingMessage|Status" msgstr "Odchozí zpráva | Status" @@ -1605,10 +1722,10 @@ msgid "People {{start_count}} to {{end_count}} of {{total_count}}" msgstr "Lidé od {{start_count}} do {{end_count}} z {{total_count}}" msgid "Percentage of requests that are overdue" -msgstr "" +msgstr "Procento zpožděných žádostí" msgid "Percentage of total requests" -msgstr "" +msgstr "Žádosti celkem" msgid "Photo of you:" msgstr "Vaše foto:" @@ -1626,7 +1743,7 @@ msgid "Please" msgstr "Prosíme" msgid "Please <a href=\"{{url}}\">contact us</a> if you have any questions." -msgstr "" +msgstr "Prosím <a href=\"{{url}}\">kontaktujte nás</a> pokud máte nějaké otázky." msgid "Please <a href=\"{{url}}\">get in touch</a> with us so we can fix it." msgstr "Prosíme <a href=\"{{url}}\">kontaktujte nás</a> abychom to mohli upravit." @@ -1696,6 +1813,9 @@ msgstr "Vložte platnou e-mailovou adresu. " msgid "Please enter the message you want to send" msgstr "Tady napište zprávu, kterou chcete poslat. " +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Vložte dvakrát heslo. " @@ -1755,6 +1875,9 @@ msgstr "Přihlašte se jako" msgid "Please sign in or make a new account." msgstr "Prosíme přihlašte se nebo se zaregistrujte." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Napište zprávu a/nebo vyberte soubor, který obsahuje vaši odpověď." @@ -1821,6 +1944,12 @@ msgstr "Náhled odpovědi pro" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Náhled nové anotace týkající se '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Náhled poznámky" @@ -1840,10 +1969,10 @@ msgid "ProfilePhoto|Draft" msgstr "Profilové foto | Koncept" msgid "Public Bodies" -msgstr "" +msgstr "Veřejné instituce" msgid "Public Body Statistics" -msgstr "" +msgstr "Statistika veřejných institucí" msgid "Public authorities" msgstr "Instituce" @@ -1858,23 +1987,26 @@ msgid "Public authority – {{name}}" msgstr "Veřejná instituce – {{name}}" msgid "Public bodies that most frequently replied with \"Not Held\"" -msgstr "" +msgstr "Veřejné instituce, s častou odpovědí: \"Nemohu poskytnout požadovanou informaci\"" msgid "Public bodies with most overdue requests" -msgstr "" +msgstr "Veřejné instituce s největším počtem žádostí po termínu" msgid "Public bodies with the fewest successful requests" -msgstr "" +msgstr "Veřejné instituce s nejmenším počtem úspěšných žádostí" msgid "Public bodies with the most requests" -msgstr "" +msgstr "Veřejné instituce s nejvíce žádostmi" msgid "Public bodies with the most successful requests" -msgstr "" +msgstr "Veřejné instituce s největším počtem úspěšných žádostí" msgid "Public body" msgstr "Instituce" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Poznámka (viditelná pro všechny)" @@ -1884,6 +2016,27 @@ msgstr "Stránka (viditelná pro všechny)" msgid "Public page not available" msgstr "Stránku nelze načíst" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody | Název ??" @@ -1900,13 +2053,13 @@ msgid "PublicBody|Info requests count" msgstr "Veřejný orgán | Info o počtu dotazů" msgid "PublicBody|Info requests not held count" -msgstr "" +msgstr "Veřejná Instituce|Počet žádostí nedržen" msgid "PublicBody|Info requests overdue count" -msgstr "" +msgstr "Veřejná instittuce|Zpožděné žádosti" msgid "PublicBody|Info requests successful count" -msgstr "" +msgstr "Veřejná instituce|Počet úspěšných žádostí" msgid "PublicBody|Info requests visible classified count" msgstr "" @@ -2000,6 +2153,9 @@ msgstr "Nahlásit tento dotaz" msgid "Reported for administrator attention." msgstr "Administrátor byl již upozorněn." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Požádat o doplnění dotazu" @@ -2009,6 +2165,9 @@ msgstr "Požádat o doplnění dotazu od instituce či jmenovitě jejím pracovn msgid "Request email" msgstr "E-mailová adresa dotazu" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Dotaz byl odstraněn" @@ -2025,10 +2184,10 @@ msgid "Requested on {{date}}" msgstr "Dotaz byl vznesen dne {{date}}" msgid "Requests are considered overdue if they are in the 'Overdue' or 'Very Overdue' states." -msgstr "" +msgstr "Žádosti jsou považovány za zpožděné pokud jejich status je označen jako \"Stále čekám na svou informaci\"." msgid "Requests are considered successful if they were classified as either 'Successful' or 'Partially Successful'." -msgstr "" +msgstr "Žádosti jsou považovány za úspěšné pokud byly zařazeny jako \"Obdržel jsem informace\" nebo \"Obdržel jsem nějaké informace\"." msgid "Requests for personal information and vexatious requests are not considered valid for FOI purposes (<a href=\"/help/about\">read more</a>)." msgstr "Požadavky na informace osobního charakteru a obsah odporující dobrým mravům odporují zákonu 106/1999 Sb., o svobodném přístupu k informacím (<a href=\"/help/about\">Více si přečtěte v nápovědě</a>)." @@ -2037,9 +2196,12 @@ msgid "Requests or responses matching your saved search" msgstr "Dotazy nebo odpovědi odpovídající vašemu uloženému hledání" msgid "Requests similar to '{{request_title}}'" -msgstr "" +msgstr "Žádosti podobné '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" +msgstr "Podobné žádosti '{{request_title}}' (page {{page}})" + +msgid "Requests will be sent to the following bodies:" msgstr "" msgid "Respond by email" @@ -2093,6 +2255,9 @@ msgstr "Vyhledávání v dotazech, institucích a uživatelích" msgid "Search contributions by this person" msgstr "Prohledávejte příspěvky od tohoto uživatele" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Vyhledat slova v " @@ -2129,6 +2294,9 @@ msgstr "Prohlédněte si odmítnutou zprávu" msgid "Select one to see more information about the authority." msgstr "Vyberte jednu instituci pro zobrazení podrobnějších informací" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Vyberte instituci, které chcete napsat" @@ -2156,6 +2324,12 @@ msgstr "Vznést dotaz na " msgid "Send request" msgstr "Vznést dotaz" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Nastavte své profilové foto" @@ -2177,6 +2351,9 @@ msgstr "Ukázat" msgid "Sign in" msgstr "Přihlásit" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Přihlašte se nebo vytvořte nový účet" @@ -2230,6 +2407,12 @@ msgstr "Omlouváme se, došlo k problému " msgid "Sorry, we couldn't find that page" msgstr "Pardon, tuto stránku se nepodařilo najít." +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Speciální poznámka k této instituci!" @@ -2254,6 +2437,9 @@ msgstr "Předmět:" msgid "Submit" msgstr "Odeslat" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Odešlete status" @@ -2319,6 +2505,12 @@ msgstr "" "Děkujeme za pomoc - vaše práce ulehčí všem hledání v úspěšných\n" "odpovědích a snad nám umožní vypracovat i žebříček úspěšnosti..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Moc děkujeme - pomohli jste ostatním najít užitečné informace.\n" @@ -2342,12 +2534,18 @@ msgstr "<strong>Kontrola byla provedena</strong> a celkem:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Zákon 106/1999 Sb. o svobodném přístupu informací <strong>se nedá aplikovat</strong> na" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Ůčty zůstaly v původním stavu. " msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Instituce <strong>nedisponuje</strong> požadovanými informacemi<small>(možná vám sdělili, kdo je může poskytnout)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Tyto informace existují pouze v <strong>papírové podobě</strong>." @@ -2358,6 +2556,9 @@ msgid "The authority would like to / has <strong>responded by post</strong> to t msgstr "Instituce by na tento dotaz ráda /nebo již odpověděla<strong>posláním odpovědi poštou</strong>." msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." +msgstr "Zařazení žádostí (např. zda byla žádost úspěšně zodpovězena nebo ne) provádí sami uživatelé, popřípadě adminsitrátor stránek. To znamená, že zde mohou být nepřesnosti. " + +msgid "The contact email address for FOI requests to the authority." msgstr "" msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." @@ -2453,6 +2654,9 @@ msgstr "Poté si můžete stáhnout komprimovaný soubor {{info_request_title}}. msgid "Then you can log into the administrative interface" msgstr "Poté se můžete přihlásit do administrátorské sekce." +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Poté si můžete zahrát hru na kategorizaci dotazů. " @@ -2513,6 +2717,9 @@ msgstr "Již existuje <strong>více než jedna další osoba</strong> která se msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Počet dotazů za jeden den je limitován. Nechceme, aby byly instituce bombardovány velkým množstvím nerelevantních dotazů. Pokud máte dobrý důvod, proč by měl být váš limit navýšen, prosíme<a href='{{help_contact_path}}'>kontaktujte nás</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] " {{count}} člověk sleduje tento dotaz" @@ -2571,6 +2778,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Tento dotaz byl skryt." +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Toto je neformátovaná textová verze dotazu \"{{request_title}}\". Poslední, formátovaná verze je k dispozici v elektronické formě na {{full_url}}" @@ -2599,7 +2809,7 @@ msgid "This message has prominence 'hidden'. {{reason}} You can only see it beca msgstr "" msgid "This message is hidden, so that only you, the requester, can see it. Please <a href=\"{{url}}\">contact us</a> if you are not sure why." -msgstr "" +msgstr "Tato zpráva je skryta, proto jen vy, žadatel, ji můžete vidět. Prosím <a href=\"{{url}}\">contact us</a> pokud si nejste jisti proč. " msgid "This message is hidden, so that only you, the requester, can see it. {{reason}}" msgstr "" @@ -2744,6 +2954,9 @@ msgstr "Stav svého dotazu můžete sdílet s ostatními na internetu – stač msgid "To log into the administrative interface" msgstr "Přihlásit se do administrace" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Zahrát si hru na kategorizaci dotazů" @@ -2834,9 +3047,6 @@ msgstr "Nelze poslat odpověď uživateli {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Nelze poslat odpověď uživateli {{username}}" -msgid "Unexpected search result type" -msgstr "Neočekávané výsledky vyhledávání" - msgid "Unexpected search result type " msgstr "Neočekávané výsledky vyhledávání " @@ -2846,6 +3056,9 @@ msgstr "" "pro vznášení dotazů, proto tento údaj nemůžeme ověřit.\n" "Prosíme <a href=\"{{url}}\">kontaktujte nás</a> abychom to vyřešili." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Bohužel nemáme funkční adresu pro zaslání {{info_request_law_used_full}}" @@ -2858,6 +3071,12 @@ msgstr "Odhlásit odběr" msgid "Unusual response." msgstr "Neobvyklá odpověď." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Aktualizovat stav tohoto dotazu" @@ -2885,6 +3104,9 @@ msgstr "Uživatel – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert| Typ upozornění" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User | O mně" @@ -2894,6 +3116,9 @@ msgstr "User | Úroveň admin" msgid "User|Ban text" msgstr "User | Zakázat text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User | E-mail" @@ -2933,6 +3158,9 @@ msgstr "User | Název URL" msgid "Version {{version}}" msgstr "Version {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Zobrazit e-mailovou adresu Informace pro všechny (????)" @@ -3053,6 +3281,9 @@ msgstr "Vyberte nejvhodnější popis z následujících možností." msgid "Who can I request information from?" msgstr "Od koho mohu tyto informace získat?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Dotaz stažen tazatelem." @@ -3080,6 +3311,9 @@ msgstr "" msgid "You" msgstr "Vy" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Nově vznesené dotazy již sledujete." @@ -3154,6 +3388,9 @@ msgstr "Víte, co způsobilo chybu a můžete <strong>navrhnout řešení</stron 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 "Můžete <strong>přiložit dokumenty</strong>. POkud je vaše příloha⏎ příliš velká pro poslání e-mailem, použíjte formulář níže." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Možná se vám podaří\n" @@ -3233,12 +3470,18 @@ msgstr "" msgid "Your annotations" msgstr "Vaše poznámky" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Nikomu jsme nepředali vaše osobní údaje, včetně vaší emailové adresy. " msgid "Your e-mail:" msgstr "Váš e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Vaše odpověď nebyla odeslána, protože tento dotaz byl identifikován jako nevyžádaná zpráva. Prosíme <a href=\"{{url}}\">kontaktujte nás</a> pokud svou zprávu chcete odeslat. " @@ -3289,6 +3532,18 @@ msgstr "Vaše žádost '{{request}}' v {{url}} byla upravena adminstrátorem." msgid "Your request on {{site_name}} hidden" msgstr "Vaše žádost na stránkách {{site_name}} je skryta" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Informace se týká vašeho dotazu {{info_request}}. Můžete všechny informovat, zda jste požadovanou informaci obdrželi a bude tak přehled o odpovědích této instituce" @@ -3301,6 +3556,9 @@ msgstr "Vaše odpověď na dotaz nebyla doručena" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Vaše odpověď <strong>bude uveřejněna na internetu</strong>, <a href=\"{{url}}\">čtěte proč</a> spolu s historií konverzace." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vaše doporučení co by <strong>administrátor</strong> stránek {{site_name}} měl udělat s tímto dotazem." @@ -3316,6 +3574,12 @@ msgstr[0] "Váš {{count}} poznámka" msgstr[1] "Vaše {{count}} poznámky" msgstr[2] "Vašich {{count}} poznámek" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "Upozornění ze stránek {{site_name}}" @@ -3328,6 +3592,9 @@ msgstr "S pozdravem," msgid "Yours," msgstr "S pozdravem," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} e-mail] ??" @@ -3687,6 +3954,9 @@ msgstr "{{thing_changed}} je změněno z <code>{{from_value}}</code> na <code>{{ msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - dotaz vznesený podle zákona 106/1999 Sb., o svobodném přístupu k informacím na instituci {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "Uživatel {{user_name}} (Účet pozastaven)" @@ -3713,6 +3983,12 @@ msgstr "Vážený uživateli {{user_name}}, pošlete odpověď instituci {{publi msgid "{{user_name}} sent a request to {{public_body}}" msgstr "Uživatel {{user_name}} vznesl dotaz na instituci {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} zanechal poznámku:" diff --git a/locale/cy/app.po b/locale/cy/app.po index 88f03a98c..ee1a95564 100644 --- a/locale/cy/app.po +++ b/locale/cy/app.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cymrodor <cymrodor@gmail.com>, 2014 # skenaja <alex@alexskene.com>, 2011-2012 # baragouiner <graham.craig@gmail.com>, 2013 # baragouiner <graham.craig@gmail.com>, 2013 @@ -19,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2014-01-27 11:01+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 10:11+0000\n" "Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Welsh (http://www.transifex.com/projects/p/alaveteli/language/cy/)\n" "Language: cy\n" @@ -47,6 +48,12 @@ msgstr "gweld a gwneud ceisiadau Rhyddid Gwybodaeth" msgid " - wall" msgstr " - Wal" +msgid " < " +msgstr " < " + +msgid " << " +msgstr " << " + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Sylwer:</strong> Byddwn yn anfon e-bost atoch. Dilynwch y cyfarwyddiadau ynddo i newid eich cyfrinair." @@ -56,6 +63,12 @@ msgstr " <strong>Nodyn Preifatrwydd:</strong> Bydd eich cyfeiriad e-bost yn cael msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Crynhoi</strong> cynnwys unrhyw wybodaeth a gafwyd. " +msgid " > " +msgstr " > " + +msgid " >> " +msgstr " >> " + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Rhoi cyngor ar sut <strong>orau i egluro</strong> y cais." @@ -116,6 +129,15 @@ msgstr "'{{link_to_request}}', cais" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', person" +msgid "(hide)" +msgstr "(cuddio)" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "(neu <a href=\"{{url}}\">mewngofnodwch</a>)" + +msgid "(show)" +msgstr "(dangos)" + msgid "*unknown*" msgstr "* Anhysbys *" @@ -128,6 +150,9 @@ msgstr "- neu -" msgid "1. Select an authority" msgstr "1. Dewis awdurdod" +msgid "1. Select authorities" +msgstr "1. Dewiswch awdurdodau" + msgid "2. Ask for Information" msgstr "2. Gofyn am wybodaeth" @@ -194,6 +219,9 @@ msgstr "<p>Mae'ch cais yn cynnwys <strong>cod post</strong>. Oni bai ei fod o'n msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Mae eich cais {{law_used_full}} wedi cael ei <strong>anfon</strong>!</p> <strong><p>Byddwn yn eich e-bostio</strong> pan fydd ymateb , neu ar ôl {{late_number_of_days}} diwrnod gwaith os yw'r awdurdod yn dal heb ateb erbyn hynny.</p> <p>Os ydych yn ysgrifennu am y cais hwn (er enghraifft, mewn fforwm neu flog) rhowch ddolen at y dudalen hon, ac ychwanegwch anodiad isod i ddweud wrth bobl am eich ysgrifennu.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "<p>Caiff eich ceisiadau {{law_used_full}} eu <strong>hanfon</strong> mewn ychydig!</p>\\n <p><strong>Byddwn yn anfon ebost atoch</strong> pan maent wedi eu hanfon.\\n Byddwn hefyd yn anfon ebost atoch pan fydd ymateb i unrhyw un ohonynt, neu ar ôl {{late_number_of_days}} diwrnod gwaith os nad yw'r awdurdod(au)\\n wedi ymateb erbyn hynny.</p>\\n <p>Os ydych yn ysgrifennu am y ceisiadau hyn (e.e. mewn fforwm neu blog) rhowch ddolen i'r tudalen hon, os gwelwch yn dda.</p>" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>Mae {{site_name}} ar hyn o bryd yn cael ei chynnal a chadw. Gweld y ceisiadau presennol yn unig y gallwch. Ni allwch wneud rhai newydd, ychwanegu straenon dilynol neu anodiadau, neu newid y gronfa ddata mewn ffordd arall.</p> <p>{{read_only}}</p>" @@ -326,6 +354,12 @@ msgstr "Ychwanegu anodiad" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Ychwanegu nodyn at eich cais gyda dyfyniadau dewis, neu <strong>crynodeb o'r ymateb</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "Ychwanegu awdurdod - {{public_body_name}}" + +msgid "Add the authority:" +msgstr "Ychwanegu'r awdurdod:" + msgid "Added on {{date}}" msgstr "Ychwanegwyd ar {{date}}" @@ -410,6 +444,15 @@ msgstr "Ai chi yw perchennog unrhyw hawlfraint masnachol ar y dudalen hon?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Gofynnwch am ddogfennau neu wybodaeth <strong>benodol</strong>. Nid yw'r wefan hon yn addas ar gyfer ymholiadau cyffredinol." +msgid "Ask us to add an authority" +msgstr "Gofyn i ni ychwanegu awdurdod" + +msgid "Ask us to update FOI email" +msgstr "Gofyn i ni ddiweddaru cyfeiriad ebost Rhyddid Wybodaeth" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "Gofyn i ni ddiweddaru cyfeiriad ebost ar gyfer {{public_body_name}}" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Ar waelod y dudalen hon, ysgrifennwch ateb iddynt i geisio eu perswadio i'w sganio (<a href=\"{{url}}\">mwy o fanylion</a>)." @@ -419,6 +462,12 @@ msgstr "Atodiad (dewisol)" msgid "Attachment:" msgstr "Atodiad:" +msgid "Authority email:" +msgstr "Ebost awdurdod:" + +msgid "Authority:" +msgstr "Awdurdod:" + msgid "Awaiting classification." msgstr "Yn aros am gael ei ddosbarthu." @@ -428,6 +477,9 @@ msgstr "Yn aros am adolygiad mewnol." msgid "Awaiting response." msgstr "Yn aros am ymateb." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Yn dechrau gyda" @@ -515,6 +567,9 @@ msgstr "Gwiriwch am gamgymeriadau os ydych wedi teipio neu wedi copïo y cyfeiri msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Gwiriwch nad ydych chi wedi cynnyws unrhyw <strong>wybodaeth bersonol</strong>." +msgid "Choose a reason" +msgstr "Dewiswch rheswm" + msgid "Choose your profile photo" msgstr "Dewiswch eich llun proffil" @@ -539,6 +594,9 @@ msgstr "Cliciwch ar y ddolen isod i anfon neges at {{public_body}} i'w atgoffa i msgid "Close" msgstr "Cau" +msgid "Close the request and respond:" +msgstr "Cau'r cais ac ymateb:" + msgid "Comment" msgstr "Sylw" @@ -572,8 +630,8 @@ msgstr "Cadarnhewch eich bod am ddilyn ceisiadau i '{{public_body_name}}'" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Cadarnhewch eich bod am ddilyn y cais '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Cadarnhewch eich cais Rh.G. i" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "Cadarnhewch eich cais rhyddid wybodaeth i {{public_body_name}}" msgid "Confirm your account on {{site_name}}" msgstr "Cadarnhewch eich cyfrif ar {{site_name}}" @@ -599,12 +657,21 @@ msgstr "Cysylltwch â {{recipient}}" msgid "Contact {{site_name}}" msgstr "Cysylltwch â {{site_name}}" +msgid "Contains defamatory material" +msgstr "Yn cynnwys deunydd difenwol" + +msgid "Contains personal information" +msgstr "Yn cynnwys gwybodaeth bersonol" + msgid "Could not identify the request from the email address" msgstr "Methwyd ag adnabod y cais o'r cyfeiriad e-bost" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Methwyd â deall y ffeil ddelwedd yr ydych yn llwytho i fyny. Cefnogir PNG, JPEG, GIF a llawer o fformatau ffeil delwedd cyffredin eraill." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "Crëwyd gan {{info_request_user}} ar {{date}}." + msgid "Crop your profile photo" msgstr "Tociwch lun eich proffil" @@ -617,12 +684,18 @@ msgstr "Ar hyn o bryd <strong>yn aros am ymateb</strong> gan {{public_body_link} msgid "Date:" msgstr "Dyddiad" +msgid "Dear [Authority name]," +msgstr "Annwyl [Authority name]," + msgid "Dear {{name}}," msgstr "Annwyl {{name}}," msgid "Dear {{public_body_name}}," msgstr "Annwyl {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "Annwyl {{user_name}}," + msgid "Default locale" msgstr "Locale diofyn" @@ -656,6 +729,9 @@ msgstr "Log datgelu" msgid "Disclosure log URL" msgstr "URL log datgelu" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Ddim eisiau cyfeirio'ch neges i {{person_or_body}}? Gallwch hefyd ysgrifennu at:" @@ -698,6 +774,9 @@ msgstr "Dydy'r cyfeiriad ebost ddim yn edrych yn ddilys" msgid "Email me future updates to this request" msgstr "E-bostiwch diweddariadau i'r cais hwn yn y dyfodol ataf" +msgid "Email:" +msgstr "Ebost:" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Rhowch eiriau yr ydych am ddod o hyd iddynt, wedi eu gwahanu gan fylchau, ee <strong>lôn ddringo</strong>" @@ -762,7 +841,7 @@ msgid "First, did your other requests succeed?" msgstr "Yn gyntaf, a lwyddodd eich ceisiadau eraill?" msgid "First, type in the <strong>name of the UK public authority</strong> you'd\\n like information from. <strong>By law, they have to respond</strong>\\n (<a href=\"{{url}}\">why?</a>)." -msgstr "Yn gyntaf, teipiwch <strong>enw awdurdod cyhoeddus yn y DU</strong> yr hoffech gael gwybodaeth ganddo. <strong>Yn ôl y gyfraith, mae'n rhaid iddynt ymateb</strong> (<a href=\"{{url}}\">pam?</a>)." +msgstr "Yn gyntaf, teipiwch <strong>enw awdurdod cyhoeddus yn y DU</strong> yr hoffech gael gwybodaeth ganddo. (Yn anffodus, nid yw'r enw Cymraeg yn ein system ar gyfer pob awdurdod.)<strong>Yn ôl y gyfraith, mae'n rhaid iddynt ymateb</strong> (<a href=\"{{url}}\">pam?</a>)." msgid "Foi attachment" msgstr "Atodiad FoI" @@ -812,6 +891,9 @@ msgstr "Dilynwch yr awdurdod hwn" msgid "Follow this link to see the request:" msgstr "Dilynwch y ddolen hon i weld y cais:" +msgid "Follow this link to see the requests:" +msgstr "Dilynwch y ddolen hon i weld y ceisiadau:" + msgid "Follow this person" msgstr "Dilynwch y person hwn" @@ -1116,9 +1198,21 @@ msgstr "Ceisiadau unigol" msgid "Info request" msgstr "Cais Gwybodaeth" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Digwyddiad Cais Gwybodaeth" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Cyflwr a gyfrifwyd" @@ -1221,9 +1315,6 @@ msgstr "Gadewch i ni wybod beth oeddech yn ei wneud pan ymddangosodd y neges hon msgid "Link to this" msgstr "Cysylltwch â hwn" -msgid "List all" -msgstr "Rhestrwch y cyfan" - msgid "List of all authorities (CSV)" msgstr "Rhestr o'r holl awdurdodau (CSV)" @@ -1272,15 +1363,30 @@ msgstr "MailServerLog|Llinell" msgid "MailServerLog|Order" msgstr "MailServerLog|Archeb" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Gwnewch <strong>Cais<br/>Rhyddid<br/>Gwybodaeth</strong><br/>newydd" msgid "Make a request" msgstr "Gwneud cais" +msgid "Make a request to these authorities" +msgstr "Gwneud cais i'r awdurdodau hyn" + msgid "Make a request to this authority" msgstr "Gwnewch cais i'r awdurdod hwn" +msgid "Make an {{law_used_short}} request" +msgstr "Gwneud cais {{law_used_short}}" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Gwnewch gais {{law_used_short}} i '{{public_body_name}}'" @@ -1401,9 +1507,15 @@ msgstr "Dim wedi eu gwneud." msgid "Not a valid FOI request" msgstr "Ddim yn gais Rhyddid Gwybodaeth dilys" +msgid "Not a valid request" +msgstr "Dim yn gais dilys" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Noder na fydd y ceisydd yn cael gwybod am eich anodi, oherwydd i'r cais gael ei gyhoeddi gan {{public_body_name}} ar eu rhan." +msgid "Notes:" +msgstr "Nodiadau:" + msgid "Now check your email!" msgstr "Nawr sieciwch eich ebost!" @@ -1461,12 +1573,18 @@ msgstr "Dim ond yr awdurdod a all ymateb i'r cais hwn, ac nid wyf yn adnabod y c msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Dim ond yr awdurdod a all ymateb i'r cais hwn, ond nid oes cyfeiriad \"O\" i wirio yn ei erbyn" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Neu chwilio yn eu gwefan am y wybodaeth hon." msgid "Original request sent" msgstr " Anfonwyd y cais gwreiddiol" +msgid "Other" +msgstr "Arall" + msgid "Other:" msgstr "Arall:" @@ -1602,6 +1720,9 @@ msgstr "Rhowch gyfeiriad e-bost dilys" msgid "Please enter the message you want to send" msgstr "Rhowch y neges rydych am ei hanfon" +msgid "Please enter the name of the authority" +msgstr "Rhowch enw'r awdurdod" + msgid "Please enter the same password twice" msgstr "Rhowch yr un cyfrinair ddwywaith os gwelwch yn dda, " @@ -1659,6 +1780,9 @@ msgstr "Mewngofnodwch fel " msgid "Please sign in or make a new account." msgstr "Mewngofnodwch neu agorwch gyfrif newydd." +msgid "Please tell us more:" +msgstr "Dywedwch mwy wrthym:" + msgid "Please type a message and/or choose a file containing your response." msgstr "Teipiwch neges a/neu ddewis ffeil sy'n cynnwys eich ymateb." @@ -1725,6 +1849,12 @@ msgstr "Rhagolwg dilyniant i '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Rhagolwg ar anodiad newydd ar '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "Rhagolwg cais {{law_used_short}} newydd" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "Rhagolwg cais {{law_used_short}} newydd at '{{public_body_name}}" + msgid "Preview your annotation" msgstr "Bwriwch ragolwg ar eich anodi" @@ -1779,6 +1909,9 @@ msgstr "Cyrff cyhoeddus â'r nifer fwyaf o geisiadau llwyddiannus" msgid "Public body" msgstr "Corff cyhoeddus" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Nodiadau cyhoeddus" @@ -1788,6 +1921,27 @@ msgstr "Tudalen gyhoeddus" msgid "Public page not available" msgstr "Tudalen gyhoeddus ddim ar gael" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Allwedd api" @@ -1902,6 +2056,9 @@ msgstr "Rhoi gwybod am y cais hwn" msgid "Reported for administrator attention." msgstr "Adroddwyd am sylw gweinyddwr." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Gofyn am adolygiad mewnol" @@ -1911,6 +2068,9 @@ msgstr "Gofyn am adolygiad mewnol o {{person_or_body}}" msgid "Request email" msgstr "Ceisiwch ebost" +msgid "Request for personal information" +msgstr "Cais am wybodaeth bersonol" + msgid "Request has been removed" msgstr "Cais wedi cael ei dynnu" @@ -1944,6 +2104,9 @@ msgstr "Ceisiadau tebyg i '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Ceisiadau tebyg i '{{request_title}}' (page{{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "Ceir ceisiadau eu hanfon i'r cyrff canlynol:" + msgid "Respond by email" msgstr "Ymateb drwy e-bost" @@ -1995,6 +2158,9 @@ msgstr "Chwilio ceisiadau Rhyddid Gwybodaeth, awdurdodau cyhoeddus a defnyddwyr" msgid "Search contributions by this person" msgstr "Chwilio cyfraniadau gan y person hwn" +msgid "Search for the authorities you'd like information from:" +msgstr "Chwiliwch am yr awdurdodau hoffech gael wybodaeth ganddynt:" + msgid "Search for words in:" msgstr "Chwilio am eiriau yn:" @@ -2029,6 +2195,9 @@ msgstr "Gweler neges bownsio" msgid "Select one to see more information about the authority." msgstr "Dewiswch un i weld rhagor o wybodaeth am yr awdurdod." +msgid "Select the authorities to write to" +msgstr "Dewiswch yr awdurdodau i ysgrifennu atynt" + msgid "Select the authority to write to" msgstr "Dewiswch yr awdurdod i ysgrifennu ato" @@ -2056,6 +2225,13 @@ msgstr "Anfon neges i" msgid "Send request" msgstr "Anfon cais" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "Anfonwyd at un awdurdod gan {{info_request_user}} ar {{date}}." +msgstr[1] "Anfonwyd at ddau awdurdod gan {{info_request_user}} ar {{date}}." +msgstr[2] "Anfonwyd at {{authority_count}} awdurdod gan {{info_request_user}} ar {{date}}." +msgstr[3] "Anfonwyd at {{authority_count}} awdurdod gan {{info_request_user}} ar {{date}}." + msgid "Set your profile photo" msgstr "Gosodwch lun eich proffil" @@ -2077,6 +2253,9 @@ msgstr "Yn dangos" msgid "Sign in" msgstr "Mewngofnodi" +msgid "Sign in as the emergency user" +msgstr "Mewngofnodi fel y defnyddiwr argyfwng" + msgid "Sign in or make a new account" msgstr "Mewngofnodi neu agor cyfrif newydd" @@ -2125,6 +2304,12 @@ msgstr "Mae'n ddrwg gennym, roedd problem wrth brosesu'r dudalen hon" msgid "Sorry, we couldn't find that page" msgstr "Mae'n ddrwg gennym, ni allem ddod o hyd i'r dudalen honno" +msgid "Source URL:" +msgstr "URL y Ffynhonnell:" + +msgid "Source:" +msgstr "Ffynhonell:" + msgid "Special note for this authority!" msgstr "Nodyn arbennig ar gyfer yr awdurdod hwn!" @@ -2149,6 +2334,9 @@ msgstr "Pwnc:" msgid "Submit" msgstr "Cyflwyno" +msgid "Submit request" +msgstr "Cyflwyno'r cais" + msgid "Submit status" msgstr "Cyflwyno statws" @@ -2212,6 +2400,12 @@ msgstr "Diolch yn fawr! Byddwn yn ymchwilio i beth ddigwyddodd ac yn ceisio ei d msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Diolch am helpu - bydd eich gwaith yn ei wneud yn haws i bawb ddod o hyd i geisiadau llwyddiannus, ac efallai hyd yn oed yn gadael i ni lunio tablau cynghrair ..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "Diolch am eich awgrymiad i ychwanegu {{public_body_name}}. Mae wedi ei ychwanegu i'r gwefan yma:" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "Diolch am eich awgrymiad i ddiweddaru'r cyfeiriad ebost ar gyfer {{public_body_name}} i {{public_body_email}}. Mae hyn nawr wedi ei gwneud a chaiff ceisiadau newydd eu hanfon i'r cyfeiriad newydd." + 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 "Diolch yn fawr iawn - bydd hyn yn helpu eraill i ddod o hyd i bethau defnyddiol. Byddwn hefyd, os bydd ei angen arnoch, yn rhoi cyngor ar beth i'w wneud nesaf am eich ceisiadau." @@ -2227,12 +2421,18 @@ msgstr "Mae'r <strong>adolygiad wedi gorffen</ strong> ac yn gyffredinol:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "<strong>Nid</strong> yw'r Ddeddf Rhyddid Gwybodaeth yn gymwys i" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "Y cyfeiriad URL ble'r darganfyddoch y cyfeiriad ebost. Mae hyn yn ddewisol, ond mae'n ein helpu'n fawr iawn gan ei wneud yn haws i'w gwirio os gallech gynnwys ddolen i dudalen penodol ar wefan yr awdurdod ble mae'r cyfeiriad hwn yn ymddangos." + msgid "The accounts have been left as they previously were." msgstr "Mae'r cyfrifon wedi cael eu gadael fel yr oeddent o'r blaen." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "<strong>Nid</strong> yw'r wybodaeth gan yr awdurdod<small>(efallai eu bod yn dweud pwy gan bwy y mae)" +msgid "The authority email doesn't look like a valid address" +msgstr "Nid yw ebost yr awdurdod yn edrych fel cyfeiriad dilys." + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Dim ond <strong>copi papur</strong> o'r wybodaeth sydd gan yr awdurdod." @@ -2245,6 +2445,9 @@ msgstr "Byddai'r awdurdod yn hoffi / wedi ymateb <strong> drwy'r post</strong> i msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "Mae dosbarthiad y ceisiadau (ee i ddweud a oeddent yn llwyddiannus neu beidio) yn cael ei wneud â llaw gan ddefnyddwyr a gweinyddwyr y safle, sy'n golygu eu bod yn agored i gamgymeriadau." +msgid "The contact email address for FOI requests to the authority." +msgstr "Cyfeiriad ebost y cyswllt ar gyfer ceisiadau Rhyddid Wybodaeth i'r awdurdod." + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Nid yw'r e-bost anfonoch, ar ran {{public_body}}, at {{user}} i ymateb i gais {{law_used_short}} wedi cael ei gyflwyno." @@ -2329,6 +2532,9 @@ msgstr "Yna gallwch lawrlwytho ffeil zip o {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Yna gallwch logio i mewn i'r rhyngwyneb gweinyddol" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Yna gallwch chi chwarae y gêm categoreiddio cais." @@ -2389,6 +2595,9 @@ msgstr "Mae gan <strong>fwy nag un person</strong> sy'n defnyddio'r safle hwn yr msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Mae cyfyngiad ar y nifer o geisiadau y gallwch eu gwneud mewn diwrnod, oherwydd nid ydym am i awdurdodau cyhoeddus gael eu peledu gyda nifer fawr o geisiadau amhriodol. Os ydych yn teimlo bod gennych reswm da dros ofyn i'r terfyn gael ei godi yn eich achos chi, <a href='{{help_contact_path}}'>cysylltwch â ni</a>." +msgid "There is nothing to display yet." +msgstr "Does dim i'w ddangos eto." + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Mae {{count}} person yn dilyn y cais hwn" @@ -2444,6 +2653,9 @@ msgstr "Mae hyn yn cwmpasu sbectrwm eang iawn o wybodaeth am gyflwr yr <strong> msgid "This external request has been hidden" msgstr "Mae'r cais allanol wedi cael ei guddio" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "Dyma wal <a href=\"{{profile_url}}\">{{user_name}}</a>" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Mae hwn yn fersiwn destun plaen y cais Rhyddid Gwybodaeth \"{{request_title}}\". Mae'r fersiwn lawn ddiweddaraf ar gael ar-lein yn {{full_url}} " @@ -2611,6 +2823,9 @@ msgstr "I adael i bawb wybod, dilynwch y ddolen hon ac yna dewiswch y blwch prio msgid "To log into the administrative interface" msgstr "I fewngofnodi i'r rhyngwyneb gweinyddol" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "I chwarae'r gêm categoreiddio cais" @@ -2701,15 +2916,15 @@ msgstr "Yn methu anfon ateb i {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Yn methu anfon neges ddilynol i {{username}}" -msgid "Unexpected search result type" -msgstr "Canlyniad chwiliad o fath annisgwyl" - msgid "Unexpected search result type " msgstr "Canlyniad chwiliad o fath annisgwyl " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Yn anffodus, nid ydym yn gwybod y cyfeiriad ebost Rhyddid Gwybodaeth i'r awdurdod hwnnw, felly ni allwn ddilysu hwn. <a href=\"{{url}}\">cysylltwch â ni</a> os gwelwch yn dda i'w ddatrys." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "Yn anffodus, nid oes gennym cyfeiriad cywir ar gyfer {{public_body_names}}." + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Yn anffodus, nid oes gennym cyfeiriad {{info_request_law_used_full}} sy'n gweithio ar gyfer" @@ -2722,6 +2937,12 @@ msgstr "Dad-danysgrifio" msgid "Unusual response." msgstr "Ymateb anarferol." +msgid "Update email address - {{public_body_name}}" +msgstr "Diweddaru cyfeiriad ebost - {{public_body_name}}" + +msgid "Update the address:" +msgstr "Diweddaru'r cyfeiriad:" + msgid "Update the status of this request" msgstr "Diweddaru statws y cais hwn" @@ -2749,6 +2970,9 @@ msgstr "Defnyddiwr - {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Math o rybudd" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|Amdanaf i" @@ -2758,6 +2982,9 @@ msgstr "User|Lefel weinyddu" msgid "User|Ban text" msgstr "User|Gwahardd testun" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|E-bost" @@ -2797,6 +3024,9 @@ msgstr "User|Enw Url" msgid "Version {{version}}" msgstr "Fersiwn {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Gweld cyfeiriad e-bost i gais Rhyddid Gwybodaeth " @@ -2902,6 +3132,9 @@ msgstr "Pa un o'r rhain sy'n digwydd?" msgid "Who can I request information from?" msgstr "Gan bwy y gallaf ofyn cael y wybodaeth?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "Am ba reswm penodol ydych yn ystyried y cais yn anaddas?" + msgid "Withdrawn by the requester." msgstr "Fe'i tynnwyd yn ôl gan y ceisydd." @@ -2926,6 +3159,9 @@ msgstr "Ysgrifennwch eich cais mewn <strong>iaith syml, gryno</strong>." msgid "You" msgstr "Chi" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Rydych eisoes yn dilyn ceisiadau newydd" @@ -2995,6 +3231,9 @@ msgstr "Rydych yn gwybod beth achosodd y gwall, a gallwch <strong>awgrymu datrys 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 "Gallwch <strong>gynnwys atodiadau</ strong>. Os hoffech chi atodi ffeil sy'n rhy fawr ar gyfer e-bost, defnyddiwch y ffurflen isod." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Efallai y byddwch yn gallu dod o hyd i un ar eu gwefan, neu drwy eu ffonio nhw a gofyn. Os llwyddwch i ddod o hyd i un, <a href=\"{{url}}\"> anfonwch e atom</a>." @@ -3058,12 +3297,18 @@ msgstr "Bydd eich <strong>enw yn ymddangos yn gyhoeddus</strong> (<a href=\"{{wh msgid "Your annotations" msgstr "Eich anodiadau" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Nid yw eich manylion, gan gynnwys eich cyfeiriad e-bost, wedi cael eu rhoi i neb." msgid "Your e-mail:" msgstr "Eich cyfeiriad e-bost:" +msgid "Your email doesn't look like a valid address" +msgstr "Dyw'ch ebost ddim yn edrych fel cyfeiriad cywir." + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Nid yw eich neges ddilynol wedi cael ei hanfon gan fod y cais hwn wedi cael ei stopio i atal spam. <a href=\"{{url}}\"> Cysylltwch â ni </a> os ydych wir eisiau anfon neges ddilynol." @@ -3112,6 +3357,18 @@ msgstr "Mae eich cais '{{request}}' yn {{url}} wedi cael ei adolygu gan safonwyr msgid "Your request on {{site_name}} hidden" msgstr "Mae eich cais ar {{site_name}} ynghudd" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "Mae'ch cais i ychwanegu awdurdod wedi ei anfon. Diolch am gysylltu. Byddwn mewn cysylltiad â chi'n fuan." + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "Eich cais i ychwanegu {{public_body_name}} at {{site_name}}" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "Mae'ch cais i ddiweddaru'r cyfeiriad ar gyfer {{public_body_name}} wedi ei anfon. Diolch am gysylltu! Byddwn yn eich ateb yn fuan." + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "Eich cais i ddiweddaru {{public_body_name}} ar {{site_name}}" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Cafodd eich cais ei alw'n {{info_request}}. Bydd gadael i bawb wybod a gawsoch y wybodaeth yn ein helpu i gadw golwg" @@ -3124,6 +3381,9 @@ msgstr "Ni chafodd eich ymateb i gais Rhyddid Gwybodaeth ei gyflwyno" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Bydd eich ymateb <strong>yn ymddangos ar y Rhyngrwyd</strong>, <a href=\"{{url}}\"> darllenwch pam</a> ac atebion i gwestiynau eraill." +msgid "Your selected authorities" +msgstr "Eich awdurdodau dewisedig" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Eich barn ar beth ddylai <strong>gweinyddwyr</strong> {{site_name}} ei wneud am y cais." @@ -3141,6 +3401,13 @@ msgstr[1] "Eich {{count}} anodiad" msgstr[2] "Eich {{count}} anodiad" msgstr[3] "Eich {{count}} anodiad" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + msgid "Your {{site_name}} email alert" msgstr "Rhybudd e-bost {{site_name}} i chi" @@ -3153,6 +3420,9 @@ msgstr "Yr eiddoch yn gywir," msgid "Yours," msgstr "Yr eiddoch," +msgid "[Authority URL will be inserted here]" +msgstr "[Bydd cyfeiriad URL yr awdurdod yn ymddangos yma]" + msgid "[FOI #{{request}} email]" msgstr "[Cais Rhyddid Gwybodaeth e-bost #{{request}} ]" @@ -3510,6 +3780,9 @@ msgstr "Newidiwyd {{thing_changed}} o <code>{{from_value}}" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - cais Rhyddid Gwybodaeth i {{public_body}} " +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Ataliwyd y cyfrif)" @@ -3534,6 +3807,12 @@ msgstr "Anfonodd {{user_name}} neges ddilynol i {{public_body}} " msgid "{{user_name}} sent a request to {{public_body}}" msgstr "Anfonodd {{user_name}} gais i {{public_body}} " +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "Hoffai {{user_name}} ychwanegu awdurdod newydd at {{site_name}}." + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "Hoffai {{user_name}} ddiweddaru'r cyfeiriad ebost ar gyfer {{public_body_name}}." + msgid "{{username}} left an annotation:" msgstr "Gadawodd {{user_name}} anodiad:" diff --git a/locale/de/app.po b/locale/de/app.po index 71fdfefad..700dd4065 100644 --- a/locale/de/app.po +++ b/locale/de/app.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: German (http://www.transifex.com/projects/p/alaveteli/language/de/)\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -40,6 +40,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n 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." @@ -49,6 +55,12 @@ msgstr " <strong>Datenschutzerklärung:</strong> Ihre Emailadresse wird weiterge msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "Fassen Sie den Inhalt jeglicher erhaltenen Information zusammen. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Hilfe zur Erstellung einer guten Informationsanfrage. " @@ -111,6 +123,15 @@ msgstr "'{{link_to_request}}', eine Anfrage" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', eine Person" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -130,6 +151,9 @@ msgstr "" msgid "1. Select an authority" msgstr "1. Behörde auswählen" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Informationen anfragen" @@ -202,6 +226,9 @@ msgstr "<p>Ihre Anfrage enthält eine <strong>Postleitzahl</strong>. Sollte dies msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} wird gerade überarbeitet. Sie können ausschließlich existierende Anfragen ansehen. Sie können keine neuen Anfragen stellen, Follow-ups oder Anmerkungen hinzufügen oder andere Änderungen an der Datenbank vornehmen.</p> <p>{{read_only}}</p>" @@ -345,6 +372,12 @@ msgstr "Fügen Sie einee Anmerkung bei" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Fügen Sie Ihrer Anfrage einen Kommentar mit Wahlzitat oder, eine<strong>Zusammenfassung Ihrer Antwort</strong>hinzu. " +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Hinzugefügt am {{date}}" @@ -431,6 +464,15 @@ msgstr "Halten Sie die Urheberrechte dieser Seite?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Fragen Sie nach <strong>spezifischen</strong> Dokumenten oder Informationen. Diese Seite ist nicht für generelle Anfragen vorgesehen. " +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Am Ende der Seite können Sie eine Antwort mit der Aufforderung das Dokument einzuscannen senden\n" @@ -442,6 +484,12 @@ msgstr "Anhang (freiwillig)" msgid "Attachment:" msgstr "Anhang:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Zuordnung wird erwartet. " @@ -451,6 +499,9 @@ msgstr "Interne Prüfung ausstehend." msgid "Awaiting response." msgstr "Antwort ausstehend. " +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Mit Anfangsbuchstabe" @@ -538,6 +589,9 @@ msgstr "Sollten Sie die Adresse eingegeben oder kopiert haben, überprüfen Sie msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Stellen Sie sicher, dass Sie keine <strong> persönlichen Informationen </strong> verwendet haben." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Wählen Sie Ihr Profilbild" @@ -562,6 +616,9 @@ msgstr "Klicken Sie auf den unten aufgeführten Link an {{public_body}}, um eine msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -595,8 +652,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Bestätigen Sie Ihre IFG-Anfrage " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Bestätigen Sie Ihr Nutzerkonto auf {{site_name}}" @@ -622,12 +679,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Kontaktieren Sie {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Die Email-Adresse der Anfragen konnte nicht identifiziert werden" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Konnte die hochgeladene Bilddatei nicht verarbeiten. PNG, JPEG, GIF und viele andere gängige Bildformate werden unterstützt." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Bearbeiten Sie Ihr Profilbild" @@ -640,12 +706,18 @@ msgstr "<strong>Antwort</strong> von {{public_body_link}} wird erwartet. Sie sol msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Sehr geehrte / Sehr geehrter {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -681,6 +753,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Möchten Sie Ihre Nachricht nicht an {{person_or_body}} senden? Schreiben Sie alternativ an:" @@ -725,6 +800,9 @@ msgstr "Dies sieht nicht nach einer gültigen Email-Adresse aus" msgid "Email me future updates to this request" msgstr "Informieren Sie mich über zukünftige Aktualisierungen zu dieser Anfrage" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Trennen Sie Ihre Suchbegriffen durch Leerzeichen" @@ -843,6 +921,9 @@ msgstr "Dieser Behörde folgen" msgid "Follow this link to see the request:" msgstr "Folgen Sie diesem Link, um die Anfrage anzusehen:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1153,9 +1234,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1260,9 +1353,6 @@ msgstr "Teilen Sie uns mit bei welchem Vorgang diese Nachricht angezeigt wurde, msgid "Link to this" msgstr "Link erstellen" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Liste aller Behörden (CSV)" @@ -1311,6 +1401,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Stellen Sie eine neue<br/>\n" @@ -1319,9 +1418,15 @@ msgstr "" msgid "Make a request" msgstr "Anfrage stellen" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Stellen Sie einen {{law_used_short}} Antrag an '{{public_body_name}}'" @@ -1442,9 +1547,15 @@ msgstr "Keine gestellt." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Rufen Sie nun Ihre Emails ab. " @@ -1502,12 +1613,18 @@ msgstr "Die Beantwortung dieser Anfrage ist ausschliesslich der Behörde gewähr msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Diese Anfrage kann ausschliesslich von der Behörde beantwortet werden, jedoch besteht keine ´von´ Adresse zum Vergleich. " +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Oder suchen Sie auf deren Internetseite nach Informationen" msgid "Original request sent" msgstr "Ursprüngliche Anfrage gesendet" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Andere/s:" @@ -1646,6 +1763,9 @@ msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein" msgid "Please enter the message you want to send" msgstr "Bitte geben Sie die Nachricht ein, die Sie senden wollen" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Bitte geben Sie das gleiche Passwort zweimal ein" @@ -1703,6 +1823,9 @@ msgstr "Anmelden als" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Bitte geben Sie eine Nachricht ein und / oder wählen Sie eine Datei aus, welche Ihre Antwort enthält" @@ -1769,6 +1892,12 @@ msgstr "Überprüfen Sie die Nachfrage an" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Sehen Sie den neuen Kommentar zu '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Überprüfen Sie Ihren Kommentar" @@ -1823,6 +1952,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1832,6 +1964,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1946,6 +2099,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Interne Prüfung anfragen" @@ -1955,6 +2111,9 @@ msgstr "Interne Prüfung von {{person_or_body}} anfragen" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Anfrage wurde verweigert" @@ -1988,6 +2147,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Email-Antwort senden" @@ -2039,6 +2201,9 @@ msgstr "Suchen Sie nach Informationsfreiheitsanfragen, Behörden und Nutzern" msgid "Search contributions by this person" msgstr "Suchen Sie Beiträge dieser Person" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Suchen Sie nach Begriffen in:" @@ -2074,6 +2239,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Wählen Sie eine aus, um mehr Informationen über diese Behörde sehen zu können. " +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Wählen Sie die zu kontaktierende Behörde" @@ -2101,6 +2269,11 @@ msgstr "Nachricht senden an" msgid "Send request" msgstr "Anfrage senden" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Profilbild wählen" @@ -2122,6 +2295,9 @@ msgstr "Anzeigen" msgid "Sign in" msgstr "Anmelden" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Anmelden oder neues Benutzerkonto erstellen" @@ -2172,6 +2348,12 @@ msgstr "Sorry, bei der Übermittlung dieser Seite sind Probleme aufgetreten" msgid "Sorry, we couldn't find that page" msgstr "Diese Seite wurde leider nicht gefunden" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Spezielle Nachricht and diese Behörde!" @@ -2196,6 +2378,9 @@ msgstr "Betreff:" msgid "Submit" msgstr "Senden" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Status senden" @@ -2259,6 +2444,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Vielen Dank für die Hilfe - Ihre Arbeit wird es für jeden leichter machen erfolgreiche Antworten zu finden und es uns eventuell sogar ermöglichen Ranglisten zu erstellen..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Vielen herzlichen Dank - dass hilft anderen auch Nützliches zu finden. Gerne beraten wir Sie auch bei den nächsten Schritten Ihrer Anfragen, falls Sie dies wünschen. " @@ -2274,12 +2465,18 @@ msgstr "Die <strong>Prüfung wurde abgeschlossen</strong> und insgesamt:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Das Informationsfreiheitsgesetz <strong>trifft nicht zu</strong> auf" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Die Nutzerkonten wurden in Ihrem ursprünglichen Zustand belassen." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Die Informationen <strong>liegen der Behörde nicht vor</strong> the information <small>(vielleicht können sie Ihnen mitteilen von wem Sie die Informationen erhalten können)" +msgid "The authority email doesn't look like a valid address" +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. " @@ -2292,6 +2489,9 @@ msgstr "Dhe Behörde würde gerne / hat <strong>postalisch</strong> auf diese An msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "Ihre im Namen von {{public_body}} an\n" @@ -2381,6 +2581,9 @@ msgstr "Dann können Sie eine Zip-Datei von {{info_request_title}} herunterladen msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Dann können Sie die helden einige Anfraggen zuzuordnen. " @@ -2441,6 +2644,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] " {{count}} Person verfolgen diese Anfrage" @@ -2494,6 +2700,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Dies ist eine Klartext-Version der IFG-Anfrage \"{{request_title}}\". Die aktuellste, vollständige Version ist auf {{full_url}} erhältlich" @@ -2663,6 +2872,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Um uns mit der Kategorisierung von Anfragen zu unterstützen" @@ -2753,9 +2965,6 @@ msgstr "Antwort an {{username}} kann nicht gesendet werden" msgid "Unable to send follow up message to {{username}}" msgstr "Nachfrage an {{username}} kann nicht gesendet werden" -msgid "Unexpected search result type" -msgstr "Unerwartetes Suchergebnis" - msgid "Unexpected search result type " msgstr "Unerwartetes Suchergebnis" @@ -2764,6 +2973,9 @@ msgstr "" "Leider ist uns die IFG-Emailadresse dieser Behörde nicht bekannt, somit können wir dies nicht bestätigen.\n" "Bitte <a href=\"{{url}}\">kontaktieren Sie uns</a> zur Klärung der Angelegenheit." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Wir haben leider keine funktionierende Email-Adresse für {{info_request_law_used_full}}" @@ -2776,6 +2988,12 @@ msgstr "" msgid "Unusual response." msgstr "Ungewöhnliche Antwort." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Status der Anfrage aktualisieren" @@ -2803,6 +3021,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "BenutzerIÜber mich" @@ -2812,6 +3033,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "BenutzerIEmail" @@ -2851,6 +3075,9 @@ msgstr "Benutzer|URL Name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "IFG-Emailadressen ansehen" @@ -2959,6 +3186,9 @@ msgstr "Welcher dieser Aspekte ist zutreffend?" msgid "Who can I request information from?" msgstr "Von wem kann ich Informationen anfragen?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Vom Antragsteller zurückgezogen" @@ -2983,6 +3213,9 @@ msgstr "Formulieren Sie Ihre Anfrage in <strong>schlicht und präzise </strong>. msgid "You" msgstr "Sie" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3054,6 +3287,9 @@ msgstr "Sie kennen die Ursache des Fehlers und können eine <strong>Lösung anbi msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Es ist mögliche eine auf deren Internetseite zu finden oder sie telefonisch zu erfragen. Sollten Sie sie herausfinden, <a href=\"{{url}}\">senden sie sie uns bitte zu</a>." @@ -3121,12 +3357,18 @@ msgstr "" msgid "Your annotations" msgstr "Ihre Anmerkungen" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Ihre Email:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Ihre Nachfrage wurde nicht gesendet, da Sie durch unseren Spamfilter gestoppt wurde. Bitte <a href=\"{{url}}\">kontaktieren Sie uns</a> wenn Sie wirklich eine Nachfrage senden möchten. " @@ -3177,6 +3419,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Ihre Anfrage hat den folgenden Titel: {{info_request}}. Bitte informieren Sie uns, ob Sie die gewünschte Information erhalten. Dies hilft uns die Seite aktuell zu halten." @@ -3189,6 +3443,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Ihre Antwort, sowie Antworten auf andere Anfragen wierden <strong>im Internet erscheinen</strong>, <a href=\"{{url}}\">Lesen Sie warum</a>" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Ihre Meinung zu empfehlenswerten Schritte von {{site_name}} durch die <strong>Administratoren</strong> bzgl. der Anfrage." @@ -3202,6 +3459,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Ihre {{count}} Anmerkunge" msgstr[1] "Ihre {{count}} Anmerkungen" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Ihr {{site_name}} Email Alarm" @@ -3214,6 +3476,9 @@ msgstr "Mit freundlichem Gruß, " msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3572,6 +3837,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Account suspended)" @@ -3598,6 +3866,12 @@ msgstr "{{user_name}} hat eine Nachfrage an {{public_body}} gesendet" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} ´hat eine Anfrage an {{public_body}} gesendet" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} hat eine Nachricht hinterlassen" diff --git a/locale/en/app.po b/locale/en/app.po index 43e01727a..d0ff88842 100644 --- a/locale/en/app.po +++ b/locale/en/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" "PO-Revision-Date: 2011-02-24 07:11-0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,6 +35,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -44,6 +50,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -104,6 +116,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -116,6 +137,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -182,6 +206,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -314,6 +341,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -398,6 +431,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -407,6 +449,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -416,6 +464,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -503,6 +554,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -527,6 +581,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -560,7 +617,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -587,12 +644,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -605,12 +671,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -644,6 +716,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -686,6 +761,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -800,6 +878,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1183,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1300,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1258,15 +1348,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1492,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1558,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1705,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1765,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1834,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1894,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1906,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2041,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2053,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2089,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2143,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2013,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2040,6 +2208,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2061,6 +2234,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2109,6 +2285,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2133,6 +2315,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2196,6 +2381,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2211,12 +2402,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2229,6 +2426,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2313,6 +2513,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2373,6 +2576,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2426,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2589,6 +2798,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2679,15 +2891,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2700,6 +2912,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2727,6 +2945,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2736,6 +2957,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2775,6 +2999,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2880,6 +3107,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2904,6 +3134,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2973,6 +3206,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3036,12 +3272,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3090,6 +3332,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3102,6 +3356,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3115,6 +3372,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3127,6 +3389,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3476,6 +3741,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3500,6 +3768,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/en_IE/app.po b/locale/en_IE/app.po index ec48993f5..25fd8b92f 100644 --- a/locale/en_IE/app.po +++ b/locale/en_IE/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: English (Ireland) (http://www.transifex.com/projects/p/alaveteli/language/en_IE/)\n" "Language: en_IE\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr "- view and make Freedom of Information requests" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -48,6 +54,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -108,6 +120,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -120,6 +141,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -186,6 +210,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -318,6 +345,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -420,6 +468,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -507,6 +558,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -531,6 +585,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -564,7 +621,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -609,12 +675,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -690,6 +765,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -804,6 +882,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1106,9 +1187,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1211,9 +1304,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1262,15 +1352,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1391,9 +1496,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1451,12 +1562,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1592,6 +1709,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1649,6 +1769,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1715,6 +1838,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1769,6 +1898,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1778,6 +1910,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1892,6 +2045,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1901,6 +2057,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1934,6 +2093,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1985,6 +2147,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2017,6 +2182,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2044,6 +2212,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2065,6 +2238,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2113,6 +2289,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2137,6 +2319,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2200,6 +2385,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2215,12 +2406,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2233,6 +2430,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2317,6 +2517,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2377,6 +2580,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2430,6 +2636,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2593,6 +2802,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2683,15 +2895,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2704,6 +2916,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2731,6 +2949,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2740,6 +2961,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2779,6 +3003,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2884,6 +3111,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2908,6 +3138,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2977,6 +3210,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3040,12 +3276,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3094,6 +3336,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3106,6 +3360,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3119,6 +3376,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3131,6 +3393,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3480,6 +3745,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3504,6 +3772,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/en_UG/app.po b/locale/en_UG/app.po index c304dccf0..4a553743a 100644 --- a/locale/en_UG/app.po +++ b/locale/en_UG/app.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-12-05 15:18-0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-01-31 09:14+0000\n" "Last-Translator: Louise Crow <louise@mysociety.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: en_UG\n" @@ -35,6 +35,12 @@ msgstr " - view and make Access to Information requests" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -44,6 +50,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -104,6 +116,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -116,6 +137,9 @@ msgstr "" msgid "1. Select an authority" msgstr "1. Select an agency" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -182,6 +206,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the agency 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>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -314,6 +341,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -398,6 +431,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -407,6 +449,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -416,6 +464,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -503,6 +554,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -527,6 +581,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -560,8 +617,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Confirm your ATI request to " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "" @@ -587,12 +644,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -605,12 +671,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -644,6 +716,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -686,6 +761,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -800,6 +878,9 @@ msgstr "Follow this agency" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1183,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1300,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "List of all agencies (CSV)" @@ -1258,15 +1348,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "Make a new ATI request" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Make a new<br/>\\n <strong>Access <span>to</span><br/>\\n Information<br/>\\n request</strong>" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Make a request to this agency" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1492,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "Not a valid ATI request" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1558,18 @@ msgstr "Only the agency can reply to this request, and I don't recognise the add msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Only the agency can reply to this request, but there is no \"From\" address to check against" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1705,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1765,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1834,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1894,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1906,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2041,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2053,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2089,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2143,9 @@ msgstr "Search Access to Information requests, public agencies and users" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2013,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Select one to see more information about the agency." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Select the agency to write to" @@ -2040,6 +2208,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2061,6 +2234,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2109,6 +2285,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Special note for this agency!" @@ -2133,6 +2315,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2196,6 +2381,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2211,12 +2402,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "The Access to Information Act <strong>does not apply</strong> to" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "The agency do <strong>not have</strong> the information <small>(maybe they say who does)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "The agency only has a <strong>paper copy</strong> of the information." @@ -2229,6 +2426,9 @@ msgstr "The agency would like to / has <strong>responded by post</strong> to thi msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2313,6 +2513,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2373,6 +2576,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "There is a limit on the number of requests you can make in a day, because we don’t want public agencies to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2426,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "This is a plain-text version of the Access to Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" @@ -2589,6 +2798,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2679,15 +2891,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Unfortunately we don't know the ATI\\nemail address for that agency, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2700,6 +2912,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2727,6 +2945,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2736,6 +2957,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2775,6 +2999,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "View ATI email address" @@ -2880,6 +3107,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2904,6 +3134,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2973,6 +3206,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3036,12 +3272,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3090,6 +3332,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3102,6 +3356,9 @@ msgstr "Your response to an ATI request was not delivered" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3115,6 +3372,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3127,6 +3389,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[ATI #{{request}} email]" @@ -3476,6 +3741,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - a Access to Information request to {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3500,6 +3768,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/es/app.po b/locale/es/app.po index 7ec55180b..8c92f571b 100644 --- a/locale/es/app.po +++ b/locale/es/app.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/alaveteli/language/es/)\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -45,6 +45,12 @@ msgstr " - Envía y busca entre solicitudes de acceso a información" msgid " - wall" msgstr "- muro" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Nota::</strong>\n" @@ -57,6 +63,12 @@ msgstr " <strong>Nota sobre privacidad:</strong> Tu dirección de correo será d msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Resume</strong> el contenido de cualquier información obtenida. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Consejo sobre cómo <strong>aclarar lo mejor posible</strong> la solicitud." @@ -122,6 +134,15 @@ msgstr "'{{link_to_request}}', una solicitud" msgid "'{{link_to_user}}', a person" msgstr "Para ver la respuesta, usa el siguiente enlace." +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*desconocido*" @@ -141,6 +162,9 @@ msgstr "- o -" msgid "1. Select an authority" msgstr "1. Elija un organismo público" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Solicite información" @@ -230,6 +254,9 @@ msgstr "" "\n" "<p>Si escribes sobre tu solicitud en alguna página web o blog, por favor enlaza a esta página, y añade un comentario explicándole a la gente porque realizas esta solicitud.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} está en mantenimiento temporalmente. Sólo puede ver solicitudes existentes. No puede crear una nueva, añadir comentarios, enviar respuestas, o realizar otras operaciones que alteren la base de datos.</p> <p>{{read_only}}</p>" @@ -388,6 +415,12 @@ msgstr "" "Añade un comentario a tu solicitud con citas seleccionadas, o\n" " un <strong>resumen de la respuesta</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Añadido el {{date}}" @@ -478,6 +511,15 @@ msgstr "¿Posee el copyright de alguna información de esta página?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Pide documentos o información <strong>específica</strong>, esta web no está pensada para resolver dudas generales." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Al final de esta página, escribe una respuesta intentando convencerles de que lo escaneen\n" @@ -489,6 +531,12 @@ msgstr "Adjuntos (opcional):" msgid "Attachment:" msgstr "Adjunto:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Esperando clasificación." @@ -498,6 +546,9 @@ msgstr "Esperando revisión interna." msgid "Awaiting response." msgstr "Esperando respuesta." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Comenzando por" @@ -585,6 +636,9 @@ msgstr "Busque erratas si ha copiado la dirección." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Compruebe que no ha incluído <strong>ninguna información personal</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Elegir mi foto de perfil" @@ -611,6 +665,9 @@ msgstr "Haz click en el siguiente enlace para enviar un mensaje a {{public_body} msgid "Close" msgstr "Cerrar" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Comentario" @@ -644,8 +701,8 @@ msgstr " Confirmar que deseas seguir las solicitudes hechas a '{{public_body_nam msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Confirmar que deseas seguir la solicitud '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Confirma tu solicitud a " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirma tu cuenta en {{site_name}}" @@ -671,12 +728,21 @@ msgstr "Contactar con {{recipient}}" msgid "Contact {{site_name}}" msgstr "Contacta con {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "No hemos podido identificar la solicitud a partir de la dirección de correo" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "No se pudo procesar la imagen subida. Puedes utilizar PNG, JPEG, GIF u otros formatos de imagen populares." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Recorta tu foto de perfil" @@ -691,12 +757,18 @@ msgstr "Actualmente <strong>esperando la respuesta</strong> de {{public_body_lin msgid "Date:" msgstr "Fecha:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Estimado {{name}}," msgid "Dear {{public_body_name}}," msgstr "Estimado {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Locale por defecto" @@ -730,6 +802,9 @@ msgstr "Registro de declaraciones" msgid "Disclosure log URL" msgstr "URL del registro de declaraciones" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "¿Quieres mandar tu mensaje a {{person_or_body}}? También puedes escribir a:" @@ -774,6 +849,9 @@ msgstr "La dirección de correo no parece válida" msgid "Email me future updates to this request" msgstr "Quiero recibir emails con las actualizaciones de esta solicitud" +msgid "Email:" +msgstr "" + 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>" @@ -894,6 +972,9 @@ msgstr "Seguir a este organismo" msgid "Follow this link to see the request:" msgstr "Siga este enlace para ver la solicitud:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Seguir a esta persona" @@ -1231,9 +1312,21 @@ msgstr "Solicitudes individuales" msgid "Info request" msgstr "Solicitud de informacion" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Acontecimiento en la solicitud" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1344,9 +1437,6 @@ msgstr "" msgid "Link to this" msgstr "Enlace" -msgid "List all" -msgstr "Mostrar todo" - msgid "List of all authorities (CSV)" msgstr "Lista de todos los organismos (CSV)" @@ -1395,6 +1485,15 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Envíe una nueva<br/>\n" @@ -1404,9 +1503,15 @@ msgstr "" msgid "Make a request" msgstr "Enviar solicitud" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Enviar una solicitud a este organismo" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Hacer una solicitud {{law_used_short}} a '{{public_body_name}}'" @@ -1527,9 +1632,15 @@ msgstr "Ninguno/a." msgid "Not a valid FOI request" msgstr "Solicitud de información inválida" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Ten en cuenta que el solicitante no será notificado de tu comentario, porque la solicitud fue publicada por {{public_body_name}} en su nombre." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "¡Ahora comprueba tu correo!" @@ -1587,12 +1698,18 @@ msgstr "Sólo el organismo puede responder a esta solicitud, y no reconozco la d msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Sólo el organismo puede responder a esta solicitud, pero no hay un campo \"From\" contra el que comparar" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "O busque esta información en su web." msgid "Original request sent" msgstr "Solicitud original enviada" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Otros:" @@ -1737,6 +1854,9 @@ msgstr "Por favor, introduzca una dirección de correo válida" msgid "Please enter the message you want to send" msgstr "Por favor, introduzca el mensaje que quieres enviar" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Por favor, introduzca la misma contraseña dos veces" @@ -1796,6 +1916,9 @@ msgstr "Por favor abre una sesión como " msgid "Please sign in or make a new account." msgstr "Por favor abre sesión, o crea una nueva cuenta." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Por favor escribe un mensaje y/o escoje un fichero conteniendo su respuesta." @@ -1862,6 +1985,12 @@ msgstr "Revisar mensaje a '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Revisar nuevo comentario a '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Revisa tu comentario" @@ -1916,6 +2045,9 @@ msgstr "" msgid "Public body" msgstr "Autoridad/Organismo Publico" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Notas públicas" @@ -1925,6 +2057,27 @@ msgstr "Página pública" msgid "Public page not available" msgstr "Página pública no disponible" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -2041,6 +2194,9 @@ msgstr "Denunciar este pedido" msgid "Reported for administrator attention." msgstr "Reportar al administrador" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Pida una revisión interna" @@ -2050,6 +2206,9 @@ msgstr "Pedir una revisión interna a {{person_or_body}}" msgid "Request email" msgstr "Email para solicitudes" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "La solicitud ha sido eliminada" @@ -2083,6 +2242,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2134,6 +2296,9 @@ msgstr "Buscar solicitudes de información, organismos públicos y usuarios" msgid "Search contributions by this person" msgstr "Buscar aportaciones de esta persona" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Buscar palabras en:" @@ -2169,6 +2334,9 @@ msgstr "Ver mensaje rebotado" msgid "Select one to see more information about the authority." msgstr "Elija uno para ver más información sobre el organismo." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Elije el organismo al que escribir" @@ -2196,6 +2364,11 @@ msgstr "Enviar un mensaje a " msgid "Send request" msgstr "Enviar solicitud" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Cambiar foto de perfil" @@ -2217,6 +2390,9 @@ msgstr "Mostrando" msgid "Sign in" msgstr "Abrir sesión" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Abrir sesión o crear nueva cuenta" @@ -2271,6 +2447,12 @@ msgstr "Lo sentimos, hubo un problema procesando esta página" msgid "Sorry, we couldn't find that page" msgstr "Lo sentimos, no hemos podido encontrar esa página" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "¡Notas especiales sobre este organismo!" @@ -2295,6 +2477,9 @@ msgstr "Tema:" msgid "Submit" msgstr "Enviar" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Enviar estado" @@ -2360,6 +2545,12 @@ msgstr "" "Gracias por ayudar - tu trabajo hace más sencillo que otros encuentren solicitudes\n" "que han tenido éxito, e incluso nos permitirá hacer clasificaciones..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Muchas gracias - esto ayudará a otros a encontrar información útil.\n" @@ -2381,12 +2572,18 @@ msgstr "La <strong>revisión ha finalizado</strong> y en resumen:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "La ley de acceso a la información <strong>no es aplicable</strong> a" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "El organismo <strong>no tiene</strong> la información <small>(tal vez dicen quién la tiene)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "El organismo sólo tiene una <strong>copia en papel</strong> de la información." @@ -2401,6 +2598,9 @@ msgstr "El organismo querría / ha respondido <strong>por correo ordinario</stro msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "El correo envíado por usted, en nombre de {{public_body}}, enviado a\n" @@ -2497,6 +2697,9 @@ msgstr "Entonces podrás descargarte el fichero ZIP de {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Ahorap uedes registrarte en la interfase administrativa" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Entonces podrá jugar al juego de clasificar solicitudes" @@ -2557,6 +2760,9 @@ msgstr "Hay <strong>más de una persona</strong> que utiliza esta web y tiene es msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Hay un límite en el número de solicitudes que puedes hacer en un día, porque no queremos que los organismos públicos reciban un número exagerado de solicitudes mal formuladas. Si necesitas que el límite no se aplique en tu caso, por favor <a href='{{help_contact_path}}'>contacta con nosotros</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Hay {{count}} persona siguiendo esta solicitud." @@ -2614,6 +2820,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Esta solicitud externa ha sido ocultada" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Esta es la versión sólo-texto de la solicitud de información \"{{request_title}}\". La versión más actualizada y completa está disponible en {{full_url}}" @@ -2795,6 +3004,9 @@ msgstr "Para que todo el mundo lo sepa, sigue este enlace y elige la opción ade msgid "To log into the administrative interface" msgstr " Ingresar como administrador" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Jugar al juego de recategorización de solicitudes" @@ -2885,9 +3097,6 @@ msgstr "No se pudo enviar la respuesta a {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "No se pudo enviar la respuesta a {{username}}" -msgid "Unexpected search result type" -msgstr "Se encontró un tipo de resultado inesperado" - msgid "Unexpected search result type " msgstr "Se encontró un tipo de resultado inesperado " @@ -2897,6 +3106,9 @@ msgstr "" "de correo para este organismo, así que no podemos validarlo.\n" "Por favor <a href=\"{{url}}\">contáctenos</a> para arreglarlo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Desgraciadamente, no tenemos una dirección de correo válida para" @@ -2909,6 +3121,12 @@ msgstr "Cancelar suscripción" msgid "Unusual response." msgstr "Respuesta no habitual." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Actualiza el estado de esta solicitud" @@ -2936,6 +3154,9 @@ msgstr "Usuario - {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2945,6 +3166,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2984,6 +3208,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "Versión {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Ver dirección de correo" @@ -3107,6 +3334,9 @@ msgstr "¿Qué está pasando?" msgid "Who can I request information from?" msgstr "¿A quién puedo solicitar información?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Retirada por el autor." @@ -3131,6 +3361,9 @@ msgstr "Escribe tu solicitud en un <strong>lenguaje sencillo y claro</strong>." msgid "You" msgstr "Tú" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Tu ya estas siguiendo nuevos pedidos" @@ -3207,6 +3440,9 @@ msgstr "Sabes lo que ha causado el error, y puedes <strong>sugerir una solución 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 "Puede <strong>adjuntar ficheros</strong>. Si quiere adjuntar un fichero demasiado grande para el correo, puede utilizar el siguiente formulario." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Puede que encuentres una\n" @@ -3288,12 +3524,18 @@ msgstr "" msgid "Your annotations" msgstr "Tus comentarios" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Tus datos personales, incluyendo tu dirección de correo, no han sido compartido con nadie." msgid "Your e-mail:" msgstr "Tu correo:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Tu respuesta no ha sido enviada porque esta solicitud ha sido bloqueada para evitar spam. Por favor <a href=\"{{url}}\">contáctanos</a> si realmente quieres enviar una respuesta." @@ -3344,6 +3586,18 @@ msgstr "Tu solicitud '{{request}}' en {{url}} ha sido revisada por los moderador msgid "Your request on {{site_name}} hidden" msgstr "Tu solicitud en {{site_name}} oculta" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Tu solicitud se llamaba {{info_request}}. Haznos saber si has recibido la información para ayudarnos a controlar a" @@ -3356,6 +3610,9 @@ msgstr "Tú respuesta a la solicitud de información no ha sido entregada" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Tu respuesta <strong>aparecerá en Internet</strong>, <a href=\"{{url}}\">lee por qué</a> y respuestas a otras preguntas." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Opine sobre lo que los <strong>administradores</strong> de {{site_name}} deberían hacer con la solicitud." @@ -3369,6 +3626,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Tu {{count}} comentario" msgstr[1] "Tus {{count}} comentarios" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Tu alerta en {{site_name}}" @@ -3381,6 +3643,9 @@ msgstr "Un saludo," msgid "Yours," msgstr "Un saludo," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[Dirección de correo de la solicitud #{{request}}]" @@ -3743,6 +4008,9 @@ msgstr "{{thing_changed}} ha pasado de <code>{{from_value}}</code> a <code>{{to_ msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - una solicitud de información a {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Expulsado)" @@ -3769,6 +4037,12 @@ msgstr "{{user_name}} envió un mensaje a {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} envió una solicitud a {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} dejó un comentario:" diff --git a/locale/eu/app.po b/locale/eu/app.po index 4bbc76246..04f018172 100644 --- a/locale/eu/app.po +++ b/locale/eu/app.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/alaveteli/language/eu/)\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -38,6 +38,12 @@ msgstr " - Bilatu informaziorako sarbidearen eskabideen artean eta bidali ezazu. msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Oharra::</strong>\n" @@ -49,6 +55,12 @@ msgstr " <strong>Pribatutasun inguruko oharra:</strong> Zure helbide elektroniko msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " Jasotako edozein informazioren <strong>laburpena</strong> egiten du. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Eskabidea <strong>ahalik eta hoberen</strong> argitzeko aholkua." @@ -111,6 +123,15 @@ msgstr "'{{link_to_request}}', eskabide bat" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', pertsona bat" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -130,6 +151,9 @@ msgstr "- edo -" msgid "1. Select an authority" msgstr "1. Aukera ezazu erakunde publiko bat" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Eskatu informazioa" @@ -204,6 +228,9 @@ msgstr "<p>Zure eskabideak <strong>posta kodea</strong> dakar. Eskabidearekin ze msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} mantenuan ari da. Dauden eskabideak soilik ikus daitezke. Ezin da eskabide berria sortu, iruzkinak gehitu, erantzunak bidali edo data basea eraldatuko duten beste eragiketarik egin.</p> <p>{{read_only}}</p>" @@ -344,6 +371,12 @@ msgstr "Gehitu iruzkina" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Gehitu zure eskabideari buruzko iruzkina, aipamen aukeratuekin edo <strong>erantzunaren laburpenarekin</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr " {{date}} egunean gehituta" @@ -430,6 +463,15 @@ msgstr "Orrialde honetako infomazioaren eskubideak dituzu zuk?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Eska itzatzu agiriak edo informazio <strong>zehatza</strong>, web orrialde hau ez dago zalantza orokorrak argitzeko pentsatuta." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Orrialde honen amaieran, idatz ezazu erantzuna, eskanea dezaten konbentzitzeko (<a href=\"{{url}}\">xehetasun gehiago</a>)." @@ -439,6 +481,12 @@ msgstr "Gehigarriak (aukerakoa):" msgid "Attachment:" msgstr "Gehigarria:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Sailkatzeko zain." @@ -448,6 +496,9 @@ msgstr "Barneko berrikusketaren zain." msgid "Awaiting response." msgstr "Erantzunaren zain." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "___-ekin hasita" @@ -535,6 +586,9 @@ msgstr "Helbidea kopiatu baldin baduzu, bila ezazu akatsak." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Egiazta ezazu ez duzula <strong>inolako informazio pertsonalik</strong> sartu." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Aukeratu nire profilaren argazkia" @@ -559,6 +613,9 @@ msgstr "Egin klik ondoko estekan {{public_body}}-ri mezu bat bidaltzeko, gogorat msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -592,8 +649,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Berretsi _____-ri egindako eskabidea " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Berretsi {{site_name}}-ean daukazun kontua" @@ -619,12 +676,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Jar zaitez {{site_name}}-rekin harremanetan" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Ezin izan dugu eskabidea zehaztu helbide elektronikoaren arabera" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Ezin dugu prozesatu igo duzun irudia. PNG, JPEG, GIF edo beste irudi formatu orokorrak erabil ditzakezu." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Moztu zure profilaren argazkia" @@ -637,12 +703,18 @@ msgstr "Orain {{public_body_link}}-eko <strong>erantzunaren zain</strong> gaude, msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "{{public_body_name}} agurgarria," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -676,6 +748,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Mezu bat bidali nahi diozu {{person_or_body}}-ri? Hona ere idatzi ahal diozu:" @@ -718,6 +793,9 @@ msgstr "Badirudi helbide elektronikoa ez dela zuzena" msgid "Email me future updates to this request" msgstr "Eskabide honen gaurkotzeak emailez jaso nahi ditut" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Sartu nahi dituzun hitzak, espazio batez bananduta, hau da <strong>parlamentua gastua</strong>" @@ -835,6 +913,9 @@ msgstr "Jarraitu erakunde honi" msgid "Follow this link to see the request:" msgstr "Jarraitu esteka honi eskabidea ikusteko:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1144,9 +1225,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1249,9 +1342,6 @@ msgstr "Jakinaraz iezaguzu zer egiten ari zinen mezu hau agertu zenean, baita zu msgid "Link to this" msgstr "Esteka" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Erakunde guztien zerrenda (CSV)" @@ -1300,6 +1390,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Bidali ezazu<br/>\n" @@ -1309,9 +1408,15 @@ msgstr "" msgid "Make a request" msgstr "Bidali eskabidea" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Egin eizaiozu {{law_used_short}} eskabidea '{{public_body_name}}'-ri" @@ -1432,9 +1537,15 @@ msgstr "Ez da honelakorik egin." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Orain, begira ezazu zure emailan!" @@ -1492,12 +1603,18 @@ msgstr "Erakundeak bakarrik erantzun diezaioke eskabide honi, eta ezin dut jakin msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Erakundeak bakarrik erantzun diezaioke eskabide honi, baina ez dago \"From\" helbiderik konparaketa egiteko" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "EDO bila ezazu informazio hau haren web orrialdean." msgid "Original request sent" msgstr "Eskabide originala bidalita" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Beste batzuk:" @@ -1635,6 +1752,9 @@ msgstr "Mesedez, jar ezazu email baliagarri bat" msgid "Please enter the message you want to send" msgstr "Mesedez, sar ezazu bidali nahi duzun mezua" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Mesedez, sar ezazu pasahitz bera bi aldiz" @@ -1692,6 +1812,9 @@ msgstr "Mesedez, ireki saioa ___________ bezala" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Mesedez, idatz ezazu mezua edota aukera ezazu erantzuna dakarren fitxategia." @@ -1758,6 +1881,12 @@ msgstr "_____'-ren mezua berrikusi" msgid "Preview new annotation on '{{info_request_title}}'" msgstr " '{{info_request_title}}'-ren iruzkin berria berrikusi" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Berrikusi zure iruzkina" @@ -1812,6 +1941,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1821,6 +1953,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1937,6 +2090,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Eskatu barneko berrikusketa" @@ -1946,6 +2102,9 @@ msgstr "{{person_or_body}}-ri barneko berrikusketa eskatu." msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Eskabidea ezabatuta dago" @@ -1979,6 +2138,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Emailez erantzun" @@ -2030,6 +2192,9 @@ msgstr "Informazio eskabideak, erakunde publikoak eta erabiltzaileak bilatu" msgid "Search contributions by this person" msgstr "Pertsona honen ekarpenak bilatu" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Bilatu hitzak hemen:" @@ -2065,6 +2230,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Aukera ezazu bat erakunde honi buruzko informazio gehiago ikusteko" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Aukera ezazu idatziko diozun erakundea" @@ -2092,6 +2260,11 @@ msgstr "Bidali _____-ri mezua" msgid "Send request" msgstr "Bidali eskabidea" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Aldatu profilaren argazkia" @@ -2113,6 +2286,9 @@ msgstr "Erakusten" msgid "Sign in" msgstr "Ireki saioa" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Ireki saioa edo sortu kontu berria" @@ -2163,6 +2339,12 @@ msgstr "Barkatu, orrialdea prozesatzean arazo bat egon da" msgid "Sorry, we couldn't find that page" msgstr "Barkatu, ezin izan dugu orrialde hori aurkitu" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Erakunde horri buruzko ohar berezia!" @@ -2187,6 +2369,9 @@ msgstr "Gaia:" msgid "Submit" msgstr "Bidali" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Bidali egoera" @@ -2250,6 +2435,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Eskerrik asko zure laguntzagatik, zure lanak arrakasta izan duten beste eskabideak aurkitzeko ahalegina arintzen du, sailkatzeko aukera ere ematen digu..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Eskerrik asko, honek lagunduko die besteei informazio baliagarria aurkitzen. Guk, behar izanez gero, jarraian zure eskabideekin zer egin aholkatu ahal dizugu." @@ -2267,12 +2458,18 @@ msgstr "<strong>Berrikusketa amaitu da</strong> eta laburki:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Informaziorako sarbidearen legea ez zaio ______-ri <strong> aplikatzen</strong>" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontuak lehen zeuden bezalaxe utzi dira." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Erakundeak <strong>ez dauka</strong> informazioa <small>(agian esan dezakete nork daukan)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Erakundeak informazioaren <strong>paperezko kopia</strong> baino ez dauka." @@ -2287,6 +2484,9 @@ msgstr "Erakundeak eskabide honi erantzun dio / nahi izango luke <strong>posta a msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "Zuk bidalitako emaila, {{public_body}}-ren izenean, enviado a\n" @@ -2377,6 +2577,9 @@ msgstr "Orduan {{info_request_title}}-tik deskargatu ahal izango duzu ZIP fitxat msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Orduan eskabideak sailkatzeko jolasean jokatu ahal izango duzu." @@ -2437,6 +2640,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Badago egunean egin ditzakezun eskabide kopuru mugatua, ez dugulako nahi erakunde publikoek gaizki idatzitako eskabide gehiegizkoak jaso ditzaten. Zure kasuan muga hau aplika ez dadin behar izanez gero, mesedez jar zaitez gurekin <a href='{{help_contact_path}}'>harremanetan</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Badago eskabide honi jarraitzen dion pertsona {{count}}." @@ -2492,6 +2698,9 @@ msgstr "Honek <strong>ingurune naturala eta hiritartuaren</strong> egoerari buru msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Hau \"{{request_title}}\" informazio eskabidearen testua-soilik bertsioa da. Bertsio gaurkotuena eta osotuena eskuragarri duzu hemen: {{full_url}}" @@ -2657,6 +2866,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Eskabideak bersailkatzeko jolasean aritu" @@ -2747,15 +2959,15 @@ msgstr "Ezin izan zaio {{username}}-ri erantzuna bidali." msgid "Unable to send follow up message to {{username}}" msgstr "Ezin izan zaio {{username}}-ri erantzuna bidali." -msgid "Unexpected search result type" -msgstr "Ustegabeko emaitza aurkitu da" - msgid "Unexpected search result type " msgstr "Ustegabeko emaitza aurkitu da " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Zoritxarrez ez dugu erakunde honetako posta helbidea, beraz ezin izan dugu balioztatu. Mesedez, jar zaitez gurekin <a href=\"{{url}}\">harremanetan</a> hau konpontzeko." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Zoritxarrez ez dugu posta helbide baliagarria honentzat: {{info_request_law_used_full}}" @@ -2768,6 +2980,12 @@ msgstr "" msgid "Unusual response." msgstr "Ez-ohiko erantzuna." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Gaurkotu eskabide honen egoera" @@ -2795,6 +3013,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2804,6 +3025,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2843,6 +3067,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Ikusi posta helbidea" @@ -2951,6 +3178,9 @@ msgstr "Zer gertatzen ari da?" msgid "Who can I request information from?" msgstr "Nori eska diezaioket informazioa?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Eskatzaileak kendu du." @@ -2975,6 +3205,9 @@ msgstr "Idatz ezazu zure eskabidea <strong>hizkera erraz eta argi</strong> batez msgid "You" msgstr "Zu" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3047,6 +3280,9 @@ msgstr "Badakizu zerk eragin duen errorea eta <strong>irtenbidea iradoki</a> aha msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Agian aurkitu ahal duzu haien web orrialdean edo telefonoz galdetzen. Lortuz gero, mesedez <a href=\"{{url}}\">bidal iezaguzu</a>." @@ -3116,12 +3352,18 @@ msgstr "" msgid "Your annotations" msgstr "Zure iruzkinak" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Zure helbide elektronikoa:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Zure erantzuna ez da bidali, eskabide hau blokeatuta dagoelako, spama ekidetzearren. Benetan erantzuna bidali nahi baldin baduzu, mesedez, jar zaitez gurekin <a href=\"{{url}}\">harremanetan</a>." @@ -3172,6 +3414,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Zure eskabidearen izenburua {{info_request}} zen. Jakinarazi informazioa jaso duzun, kontrolatzen laguntzearren." @@ -3184,6 +3438,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Zure erantzuna eta beste galderen erantzunak <strong>Interneten agertuko dira</strong>, <a href=\"{{url}}\">irakurri zergatik</a>." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Emaiguzu zure iritzia, {{site_name}}-ko <strong>administratzaileek</strong> zer egin behar dute eskabidearekin?" @@ -3197,6 +3454,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Zure iruzkin {{count}} " msgstr[1] "Zure {{count}} iruzkinak" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Zure alerta {{site_name}}-ean" @@ -3209,6 +3471,9 @@ msgstr "Agur bero bat," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3564,6 +3829,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Kontua baliogabetuta dago)" @@ -3590,6 +3858,12 @@ msgstr "{{user_name}}-k {{public_body}}-ri bidali dio mezu bat" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}}-k {{public_body}}-ri bidali dio eskabide bat" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}}-k iruzkin bat utzi du:" diff --git a/locale/fi/app.po b/locale/fi/app.po index b6353d309..b7de58014 100644 --- a/locale/fi/app.po +++ b/locale/fi/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/alaveteli/language/fi/)\n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr " - katsele ja tee julkisuuslain mukaisia tietopyyntöjä" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -48,6 +54,12 @@ msgstr " <strong>Huomio:</strong> Sinun sähköpostiosoitteesi annetaan" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Tiivistä</strong> saamasi vastauksen sisältö. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Neuvoja siihen, miten tietopyynnöstä voi tehdä <strong>mahdollisimman selkeän</strong>." @@ -108,6 +120,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -120,6 +141,9 @@ msgstr "- tai -" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Pyydä tietoja" @@ -186,6 +210,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -318,6 +345,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -420,6 +468,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -507,6 +558,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -531,6 +585,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -564,7 +621,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -609,12 +675,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -690,6 +765,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -804,6 +882,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1106,9 +1187,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1211,9 +1304,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1262,15 +1352,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1391,9 +1496,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1451,12 +1562,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1592,6 +1709,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1649,6 +1769,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1715,6 +1838,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1769,6 +1898,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1778,6 +1910,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1892,6 +2045,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1901,6 +2057,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1934,6 +2093,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1985,6 +2147,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2017,6 +2182,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2044,6 +2212,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2065,6 +2238,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2113,6 +2289,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2137,6 +2319,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2200,6 +2385,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2215,12 +2406,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2233,6 +2430,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2317,6 +2517,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2377,6 +2580,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2430,6 +2636,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2593,6 +2802,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2683,15 +2895,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2704,6 +2916,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2731,6 +2949,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2740,6 +2961,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2779,6 +3003,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2884,6 +3111,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2908,6 +3138,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2977,6 +3210,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3040,12 +3276,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3094,6 +3336,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3106,6 +3360,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3119,6 +3376,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3131,6 +3393,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3480,6 +3745,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3504,6 +3772,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/fr/app.po b/locale/fr/app.po index a3aac5896..6eb586941 100644 --- a/locale/fr/app.po +++ b/locale/fr/app.po @@ -14,6 +14,7 @@ # cegall, 2013 # David Cabo <david.cabo@gmail.com>, 2013 # louisecrow <louise@mysociety.org>, 2013 +# louisecrow <louise@mysociety.org>, 2013 # pchrzanowski <pierre.chrzanowski@gmail.com>, 2013 # pchrzanowski <pierre.chrzanowski@gmail.com>, 2013 # radproject <radhouanef@gmail.com>, 2013 @@ -32,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-12-16 12:59+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" "Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: French (http://www.transifex.com/projects/p/alaveteli/language/fr/)\n" "Language: fr\n" @@ -60,6 +61,12 @@ msgstr "- voir et créer des demandes d'accès aux informations " msgid " - wall" msgstr "-mur" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>A savoir :</strong>\n" @@ -71,6 +78,12 @@ msgstr " <strong>Note de confidentialité :</strong> Votre adresse e-mail sera c msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Résumez</strong>le contenu de toute information transmise. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Conseils pour rendre la demande <strong>plus claire</strong>." @@ -133,6 +146,15 @@ msgstr "'{{link_to_request}}', une demande" msgid "'{{link_to_user}}', a person" msgstr "{{link_to_user}}', une personne" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*unknown*" @@ -145,6 +167,9 @@ msgstr "- ou -" msgid "1. Select an authority" msgstr "1. Choisissez une administration" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Demandez une information publique" @@ -211,6 +236,9 @@ msgstr "<p>Vous avez demandé un certain <strong>code postal</strong>. Sauf s'il msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Votre demande {{law_used_full}} a été <strong>envoyée</strong>!</p>\\n <p><strong>On va vous envoyer un email </strong>dès qu'il ya une réponse ou apres {{late_number_of_days}} jours ouvrables si l'autorité n'a toujours pas \\n répondu .</p>\\n <p>Si vous écrivez à propos de cette demande (par exemple dans un forum ou un blog) veuillez mettre un lien vers cette page et ajoutez une \\n remarque en dessous pour partager avec les autres citoyens. </p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} est actuellement en maintenance. Vous pouvez uniquement afficher les demandes existantes. Vous ne pouvez pas faire de nouveaux, ajouter des suivis ou des annotations, ou par ailleurs changer la base de données .</p> <p>{{read_only}}</p>" @@ -343,6 +371,12 @@ msgstr "Ajouter une remarque" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Ajouter une annotation à votre demande avec des citations de choix, ou \\n un <strong> résumé de réponse</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Ajouté le {{date}}" @@ -427,6 +461,15 @@ msgstr "Êtes-vous le propriétaire d'un droit d'auteur commercial sur cette pag msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Demandez des documents ou des <strong>informations spécifiques</strong>, ce site ne convient pas pour des renseignements d'ordre général." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Au bas de cette page, écrire une réponse à leur essayant de les persuader de le numériser (<a href=\"{{url}}\">plus de détails</a>)." @@ -436,6 +479,12 @@ msgstr "Pièce jointe (optionnel):" msgid "Attachment:" msgstr "Pièce jointe" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "En attente de classement." @@ -445,6 +494,9 @@ msgstr "En attente d'examen interne." msgid "Awaiting response." msgstr "Réponse en attente" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Commence par" @@ -532,6 +584,9 @@ msgstr "Vérifier les erreurs si vous avez tapé ou copié l'adresse." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Vérifier que vous n'avez pas inclus d'informations personnelles" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Choisissez votre photo de profil" @@ -556,6 +611,9 @@ msgstr "Cliquer sur le lien ci-dessous pour envoyer un message à {{public_body} msgid "Close" msgstr "Fermer" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Commentaire" @@ -589,8 +647,8 @@ msgstr "Confirmez que vous voulez suivre les demandes à '{{public_body_name}}'" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Confirmez que vous voulez suivre la demande '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Confirmer votre demande d'accès pour" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirmer votre compte sur {{site_name}}" @@ -616,12 +674,21 @@ msgstr "Contacter {{recipient}}" msgid "Contact {{site_name}}" msgstr "Contact {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Impossible d'identifier la demande à partir de l'adresse e-mail" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Nous ne pouvons utiliser le fichier image que vous nous avez soumis. Nous acceptons les fichiers PNG, JPEG et GIF, ainsi qu'un grand nombre d'autres formats communément utilisés." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Recadrer votre photo de profil" @@ -634,12 +701,18 @@ msgstr "Acutuellement <strong>en attente d'une réponse</strong> de {{public_bod msgid "Date:" msgstr "Date:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Cher {{name}}," msgid "Dear {{public_body_name}}," msgstr "Cher {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Langue par défaut" @@ -673,6 +746,9 @@ msgstr "Journal d'information" msgid "Disclosure log URL" msgstr "adresse du journal d'information" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Vous ne voulez pas envoyer votre message à {{person_or_body}}? Vous pouvez aussi écrire à : " @@ -715,6 +791,9 @@ msgstr "Le courriel ne ressemble pas à une adresse valide" msgid "Email me future updates to this request" msgstr "Me prévenir par e-mail quand cette demande évolue" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Entrez les mots que vous voulez trouver séparés avec des espaces. ex. : <strong>voie rapide</strong>" @@ -829,6 +908,9 @@ msgstr "Suivre cette autorité administrative" msgid "Follow this link to see the request:" msgstr "Suivez ce lien pour voir la demande:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Suivre cette personne " @@ -1131,9 +1213,21 @@ msgstr "Les demandes individuelles" msgid "Info request" msgstr "Info request" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Info request event" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1236,9 +1330,6 @@ msgstr "Dites-nous ce que vous faisiez lorsque ce message est apparu ainsi que v msgid "Link to this" msgstr "Créer un lien vers" -msgid "List all" -msgstr "Lister tout " - msgid "List of all authorities (CSV)" msgstr "Liste de toutes les intitutions (CSV)" @@ -1287,15 +1378,30 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Faire une<br/>\\n <strong>Nouvelle <span>demande</span><br/>\\n d'accès<br/>\\n à l'information</strong>" msgid "Make a request" msgstr "Demander l'accès à une information" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Faire une demande d'information à cette institution" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Faire une {{law_used_short}} demande à '{{public_body_name}}'" @@ -1416,9 +1522,15 @@ msgstr "Aucune demande." msgid "Not a valid FOI request" msgstr "Pas une demande d'accès a l'information valide" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Notez que le demandeur ne sera pas informé de votre annotation, parce que la demande a été publié par {{public_body_name}} en leur nom" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Maintenant, allez voir vos emails !" @@ -1476,12 +1588,18 @@ msgstr "Seule l'autorité peut répondre à cette demande, et je ne reconnais pa msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Seule l'autorité peut répondre à cette demande, mais il n'y a pas d'adresse \"From\" pour vérifier " +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ou rechercher sur leur site Internet pour obtenir cette information." msgid "Original request sent" msgstr "Demande originale envoyée" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Autre:" @@ -1617,6 +1735,9 @@ msgstr "Merci d'entrer une adresse e-mail valide" msgid "Please enter the message you want to send" msgstr "Merci de rédiger le message que vous voulez envoyer" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Merci d'entrer le même mot de passe deux fois" @@ -1674,6 +1795,9 @@ msgstr "Veuillez vous connecter en tant que " msgid "Please sign in or make a new account." msgstr "Veuillez vous connecter ou créer un compte." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Veuillez écrire un message et/ou choisir un fichier contenant votre réponse." @@ -1740,6 +1864,12 @@ msgstr "Prévisualiser le suivi à '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Prévisualiser la nouvelle remarque sur '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Prévisualiser votre remarque" @@ -1794,6 +1924,9 @@ msgstr "Organismes publics ayant le plus de requêtes réussies" msgid "Public body" msgstr "Organisme public" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Notes publiques" @@ -1803,6 +1936,27 @@ msgstr "Paque publique " msgid "Public page not available" msgstr "Page publique indisponible" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -1917,6 +2071,9 @@ msgstr "Signaler cette demande" msgid "Reported for administrator attention." msgstr "Rapporté à l'attention de l'administrateur." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Solliciter une révision interne " @@ -1926,6 +2083,9 @@ msgstr "Solliciter une révision interne de {{person_or_body}}" msgid "Request email" msgstr "Adresse mail" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "La demande a été supprimée" @@ -1959,6 +2119,9 @@ msgstr "Demandes similaires à '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Demandes similaires à '{{request_title}}' (page {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Répondre par e-mail " @@ -2010,6 +2173,9 @@ msgstr "Chercher des demandes d'accès à l'information, des institutions publiq msgid "Search contributions by this person" msgstr "Rechercher les contributions de cette personne" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Rechercher des mots dans" @@ -2042,6 +2208,9 @@ msgstr "Voir le message de rebond" msgid "Select one to see more information about the authority." msgstr "Sélectionnez pour obtenir plus d'informations sur l'autorité." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Sélectionner une autorité pour lui écrire " @@ -2069,6 +2238,11 @@ msgstr "Envoyer un message à" msgid "Send request" msgstr "Envoyer une demande " +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Définir vôtre photo de profil" @@ -2090,6 +2264,9 @@ msgstr "Vue" msgid "Sign in" msgstr "Connexion" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Se connecter ou créer un nouveau compte" @@ -2138,6 +2315,12 @@ msgstr "Désolés, il y a eu un problème durant le traitement de la page." msgid "Sorry, we couldn't find that page" msgstr "Page introuvable." +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Remarque spéciale pour cette autorité!" @@ -2162,6 +2345,9 @@ msgstr "Sujet:" msgid "Submit" msgstr "Envoyer" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "État d'envoi" @@ -2225,6 +2411,12 @@ msgstr "Merci! Nous allons examiner ce qui s'est passé et essayer de le corrige msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Merci de nous aider - avec votre travail il sera plus facile pour tout le monde de trouver avec succès \\ n des réponses." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Merci beaucoup - cela aidera les autres à trouver des choses utiles. Nous allons \\n aussi, si vous en avez besoin, donner des conseils sur ce qu'il faut faire au sujet de vos \\n demandes." @@ -2240,12 +2432,18 @@ msgstr "La <strong>révision est terminée</strong> et dans l'ensemble:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Le droit d'accès à l'information <strong>ne s'applique pas </strong> à" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels qu'ils étaient auparavant. " msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "L'autorité <strong>ne détient pas </strong> les informations <small>(peut-être qu'ils indiquent qui les a )</small>" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "L'autorité a uniquement <strong>la version en papier </strong> de cette information." @@ -2258,6 +2456,9 @@ msgstr "L'autorité aimerait répondre, ou a répondu, <strong> par la Poste </s msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "La classification des requêtes (e.g. si elles sont réussies ou non) étant effectuée manuellement par les utilisateurs et administrateurs du site, des erreurs peuvent apparaître." +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Le message que vous , au nom de {{public_body}}, avez envoyé à \\n{{user}} en réponse à la demande {{law_used_short}}\\n n'a pas été delivré" @@ -2342,6 +2543,9 @@ msgstr "Vous pouvez télécharger un fichier zip de {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Ensuite, vous pouvez vous connecter à l'interface d'administration" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Ensuite vous pouvez jouer le jeu de catégorisation de demande." @@ -2402,6 +2606,9 @@ msgstr "Il ya plus <strong> d'une personne </strong> qui utilise ce site et qui msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Il y a une limite sur le nombre de demandes que vous pouvez faire en une journée, parce que nous ne voulons pas que les autorités publiques soient bombardées avec un grand nombre de demandes inappropriées. Si vous sentez que vous avez une bonne raison de demander que la limite soit levée pour vous, veuillez <a href='{{help_contact_path}}'>nous contacter</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Il ya une personne suivant cette demande " @@ -2455,6 +2662,9 @@ msgstr "Cela couvre un très large spectre d'informations sur l'état de <strong msgid "This external request has been hidden" msgstr "Demande externe cachée" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ceci est une version textuelle de la demande d'accès à l'information \"{{request_title}}\". La dernière version complète est disponible en ligne à l'adresse suivante {{full_url}}" @@ -2618,6 +2828,9 @@ msgstr "Pour faire savoira tout le monde , suivez ce lien et sélectionnez ensu msgid "To log into the administrative interface" msgstr "Pour vous connecter à l'interface Admin" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Pour jouer au jeu de catégorisation de demande" @@ -2708,15 +2921,15 @@ msgstr "Impossible d'envoyer une réponse à {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Impossible d'envoyer un message de suivi à {{username}}" -msgid "Unexpected search result type" -msgstr "Type de résultat de recherche inattendu" - msgid "Unexpected search result type " msgstr "Type de résultat de recherche inattendu" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Malheureusement, nous ne connaissons pas l'adresse email pour cette autorité, nous ne pouvons pas valider ça. \\n Veuillez {{url}}\">Nous contacter</a> pour règler ça." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Malheureusement, nous n'avons pas d'adresse {{info_request_law_used_full}} pour" @@ -2729,6 +2942,12 @@ msgstr "désabonner" msgid "Unusual response." msgstr "Réponse inattendue." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Mettre à jour le statut de cette demande" @@ -2756,6 +2975,9 @@ msgstr "Utilisateur– {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2765,6 +2987,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2804,6 +3029,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "Version {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Voir les adresses mail des demandes d'accès à l'information " @@ -2909,6 +3137,9 @@ msgstr "Lequel se passe " msgid "Who can I request information from?" msgstr "A qui puis-je faire une demande d'information ?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "retirée par le demandeur " @@ -2933,6 +3164,9 @@ msgstr "Formulez votre demande en langage <strong>simple et precis </strong>." msgid "You" msgstr "Vous" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Vous suivez déjà de nouvelles demandes" @@ -3002,6 +3236,9 @@ msgstr "Vous savez ce qui a causé l'erreur et pouvez <strong>recommender une so 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 "Vous pouvez <strong> inclure des pièces jointes </ strong>. Si vous souhaitez joindre un fichier \\n trop volumineux pour le courrier électronique, utiliser le formulaire ci-dessous." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Vous pourrez peut-être trouver \\n un sur leur site Web ou en leur téléphonant et demander. Si vous parvenez \\n en trouver un, alors s'il vous plaît <a href=\"{{url}}\">contactez nous </a>." @@ -3065,12 +3302,18 @@ msgstr "Votre <strong>nom va apparaître publiquement</strong>\\n (<a hre msgid "Your annotations" msgstr "Vos commentaires " +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Vos coordonnées, y compris votre adresse e-mail, n'ont été données à personne." msgid "Your e-mail:" msgstr "Votre e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Votre suivi n'a pas été envoyé parce que cette demande a été arrêté afin de prévenir le spam. Veuillez <a href=\"{{url}}\">nous contacter</a>si vous voulez vraiment envoyer un message de suivi." @@ -3119,6 +3362,18 @@ msgstr "Votre demande '{{request}}' sur {{url}} a été étudiée par les modér msgid "Your request on {{site_name}} hidden" msgstr "Votre demande sur {{site_name}} cachée" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Votre demande est appelée {{info_request}} . En laissant tout le monde savoir si vous avez obtenu l'information nous aidera a suivre " @@ -3131,6 +3386,9 @@ msgstr "Votre réponse n'a pas été délivrée" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Votre réponse va <strong>apparaître sur l'internet </strong>, <a href=\"{{url}}\">lire pourquoi</a> et répondre aux autres questions." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vos idées sur ce que les <strong>administrateurs</strong> de {{site_name}} devraient faire a propos de la demande." @@ -3144,6 +3402,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Votre {{count}} remarque" msgstr[1] "Vos {{count}} remarques" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Votre alerte mail de {{site_name}}" @@ -3156,6 +3419,9 @@ msgstr "Je vous prie de croire, Monsieur/Madame, à l'assurance de mes salutatio msgid "Yours," msgstr "Sincèrement," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} email]" @@ -3505,6 +3771,9 @@ msgstr "{{thing_changed}} was changed from <code>{{from_value}}</code> to <code> msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - Une demande d'accès à l'information à {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Compte suspondu)" @@ -3529,6 +3798,12 @@ msgstr "{{user_name}} a envoyé un message de relance à {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} a envoyé une demande à {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} a laissé une remarque:" diff --git a/locale/fr_CA/app.po b/locale/fr_CA/app.po index 0477869b5..8d052801b 100644 --- a/locale/fr_CA/app.po +++ b/locale/fr_CA/app.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/alaveteli/language/fr_CA/)\n" "Language: fr_CA\n" "MIME-Version: 1.0\n" @@ -46,6 +46,12 @@ msgstr "- consulter et formuler des demandes d'accès aux documents" msgid " - wall" msgstr "- mur" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Note:</strong>\n" @@ -57,6 +63,12 @@ msgstr " <strong>Avis de confidentialité :</strong> Votre adresse courriel sera msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Résumez</strong> le contenu de toute information transmise. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Indiquez comment rendre la demande <strong>plus claire</strong>." @@ -117,6 +129,15 @@ msgstr "'{{link_to_request}}', une demande " msgid "'{{link_to_user}}', a person" msgstr "{{link_to_user}}', une personne " +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*inconnu*" @@ -129,6 +150,9 @@ msgstr "- ou -" msgid "1. Select an authority" msgstr "1. Choisissez un organisme gouvernemental" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Demandez une information" @@ -195,6 +219,9 @@ msgstr "<p>Votre demande contient un <strong> code postal</strong>. À moins que msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Votre demande a été <strong>envoyée</strong>!</p>\\n<p><strong>Nous vous enverrons un courriel</strong> lorsque nous recevrons une réponse ou lorsque le délai de {{late_number_of_days}} jours calendriers sera \\n écoulé.</p>\\nSi vous souhaitez écrire au sujet de cette demande (par exemple dans un forum ou un blog), veuillez ajouter un lien vers cette page et ajouter une \\n annotation (voir ci-dessous) pour en informer les autres utilisateurs.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p> {{site_name}} est en maintenance pour le moment. Vous pouvez seulement voir les demandes existantes. Vous ne pouvez en formuler de nouvelles, ajouter un suivi, des commentaires, ou changer de toute autre façon la base de données.</p> <p>{{read_only}}</p>" @@ -327,6 +354,12 @@ msgstr "Ajouter une annotation" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Ajouter une annotation à votre demande avec des citations ou \\n un <strong> résumé de la réponse</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Ajouté le {{date}}" @@ -411,6 +444,15 @@ msgstr "Des questions sur la propriété intellectuelle et le droit d'auteur rel msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Demandez des documents ou des <strong>informations spécifiques</strong>, ce site ne convient pas pour des demandes de renseignements d'ordre général." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Au bas de cette page, écrivez une réponse afin de les persuader de la numériser. (<a href=\"{{url}}\">Plus de détails ici</a>)." @@ -420,6 +462,12 @@ msgstr "Pièce jointe (facultatif):" msgid "Attachment:" msgstr "Pièce jointe:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "En attente de classement." @@ -429,6 +477,9 @@ msgstr "En attente de révision interne." msgid "Awaiting response." msgstr "En attente d'une réponse." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Commence avec" @@ -516,6 +567,9 @@ msgstr "Vérifiez s'il y a des erreurs si vous avez tapé ou copié l'adresse." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Vérifiez que vous n'avez pas inclus d'<strong>informations personnelles</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Choisissez votre photo de profil" @@ -540,6 +594,9 @@ msgstr "Cliquez sur le lien ci-dessous pour envoyer un message à {{public_body} msgid "Close" msgstr "Fermer" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Comment" @@ -573,8 +630,8 @@ msgstr "Confirmez que vous voulez suivre les demandes à '{{public_body_name}}'" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Confirmez que vous voulez suivre la demande '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Confirmer votre demande d'accès aux documents à" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirmer votre compte sur {{site_name}}" @@ -600,12 +657,21 @@ msgstr "Contacter {{recipient}}" msgid "Contact {{site_name}}" msgstr "Contacter {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Impossible d'identifier la demande à partir de l'adresse courriel" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Nous ne pouvons utiliser le fichier image que vous nous avez soumis. Nous acceptons les fichiers PNG, JPEG et GIF, ainsi qu'un grand nombre d'autres formats communément utilisés." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Rogner votre photo de profil" @@ -618,12 +684,18 @@ msgstr "<strong>Demande en attente d'une réponse</strong> de {{public_body_link msgid "Date:" msgstr "Date:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Cher/Chère {name}}," msgid "Dear {{public_body_name}}," msgstr "Cher {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Localisation par défaut" @@ -657,6 +729,9 @@ msgstr "Disclosure log" msgid "Disclosure log URL" msgstr "Disclosure log URL" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Vous ne voulez pas envoyer votre message au {{person_or_body}}? Vous pouvez aussi écrire à: " @@ -699,6 +774,9 @@ msgstr "Le courriel ne ressemble pas à une adresse valide" msgid "Email me future updates to this request" msgstr "Me prévenir par courriel quand cette demande évolue" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Séparez les mots que vous recherchez par des espaces. ex. : <strong>voie rapide</strong>" @@ -813,6 +891,9 @@ msgstr "Suivre cet organisme gouvernemental" msgid "Follow this link to see the request:" msgstr "Suivez ce lien pour voir la demande:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Suivre cette personne " @@ -1115,9 +1196,21 @@ msgstr "Les demandes individuelles" msgid "Info request" msgstr "Info request" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Info request event" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1220,9 +1313,6 @@ msgstr "Dites-nous ce que vous faisiez lorsque ce message est apparu, votre navi msgid "Link to this" msgstr "Créer un lien vers" -msgid "List all" -msgstr "Lister tout " - msgid "List of all authorities (CSV)" msgstr "Liste de tous les organismes" @@ -1271,15 +1361,30 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Faire une nouvelle<br/>\\n <strong>demande <span>d'accès</span><br/>\\n aux documents<br/>\\n</strong>" msgid "Make a request" msgstr "Faire une demande" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Faire une demande à cet organisme" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Faire une {{law_used_short}} demande à '{{public_body_name}}'" @@ -1400,9 +1505,15 @@ msgstr "Aucun." msgid "Not a valid FOI request" msgstr "Pas une demande valide d'accès aux documents" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Notez que le demandeur ne sera pas informé de votre annotation parce que la demande a été publiée par {{public_body_name}} en leur nom." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Maintenant, vérifiez votre courriel!" @@ -1460,12 +1571,18 @@ msgstr "Seul l'organisme peut répondre à cette demande, et je ne reconnais pas msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Seul l'organisme peut répondre à cette demande, mais il n'y a pas d'adresse \"De:\" pour faire la vérification" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ou faites une recherche sur leur site web pour obtenir cette information." msgid "Original request sent" msgstr "Demande originale envoyée" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Autre:" @@ -1601,6 +1718,9 @@ msgstr "Merci d'entrer une adresse courriel valide" msgid "Please enter the message you want to send" msgstr "Merci de rédiger le message que vous voulez envoyer" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Merci d'entrer le même mot de passe deux fois" @@ -1658,6 +1778,9 @@ msgstr "Veuillez vous connecter en tant que " msgid "Please sign in or make a new account." msgstr "Veuillez vous connecter ou créer un compte." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Veuillez écrire un message et/ou choisir un fichier contenant votre réponse." @@ -1724,6 +1847,12 @@ msgstr "Prévisualiser le suivi à '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Prévisualiser la nouvelle annotation sur '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Prévisualiser votre annotation" @@ -1778,6 +1907,9 @@ msgstr "Organismes publics avec les plus de réponses positives" msgid "Public body" msgstr "Public body" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Public notes" @@ -1787,6 +1919,27 @@ msgstr "Public page" msgid "Public page not available" msgstr "Public page not available" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -1901,6 +2054,9 @@ msgstr "Signaler cette demande" msgid "Reported for administrator attention." msgstr "Signalé à l'administrateur." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Solliciter une révision interne " @@ -1910,6 +2066,9 @@ msgstr "Solliciter une révision interne de {{person_or_body}}" msgid "Request email" msgstr "Demander le courriel" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Demande supprimée" @@ -1943,6 +2102,9 @@ msgstr "Autre demandes similaires à '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Demandes similaires à '{{request_title}}' (page {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Répondre par courriel" @@ -1994,6 +2156,9 @@ msgstr "Chercher des demandes d'accès aux documents, des organismes et des util msgid "Search contributions by this person" msgstr "Rechercher les contributions de cette personne" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Rechercher des mots dans:" @@ -2026,6 +2191,9 @@ msgstr "Voir le message de rebond" msgid "Select one to see more information about the authority." msgstr "Cliquez sur un des organismes pour obtenir plus de détails." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Sélectionner un organisme pour lui écrire " @@ -2053,6 +2221,11 @@ msgstr "Envoyer un message à " msgid "Send request" msgstr "Envoyer une demande " +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Définir votre photo de profil" @@ -2074,6 +2247,9 @@ msgstr "Montrer: " msgid "Sign in" msgstr "Connexion" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Se connecter ou créer un nouveau compte" @@ -2122,6 +2298,12 @@ msgstr "Désolé, il y a eu un problème durant le traitement de la page" msgid "Sorry, we couldn't find that page" msgstr "Page introuvable." +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Remarque spéciale pour cet organisme!" @@ -2146,6 +2328,9 @@ msgstr "Sujet:" msgid "Submit" msgstr "Envoyer" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Soumettre un statut" @@ -2209,6 +2394,12 @@ msgstr "Merci! Nous allons examiner ce qui s'est passé et essayer de corriger l msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Merci de nous aider! Grâce à votre travail, il sera plus facile pour tout le monde de trouver avec succès \\ n des réponses à leurs questions." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Merci beaucoup - cela aidera les autres à trouver des choses utiles. Nous allons \\n aussi donner des conseils, si vous en avez besoin, sur ce qu'il faut faire ensuite au sujet de vos \\n demandes." @@ -2224,12 +2415,18 @@ msgstr "La <strong>révision est terminée</strong>:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Le droit d'accès aux documents <strong>ne s'applique pas </strong> à" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels quels." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "L'organisme <strong>ne détient pas </strong> l'information <small>(peut-être précise-t-il qui la détient)</small>" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "L'organisme a uniquement <strong>la version papier </strong> de ce document." @@ -2242,6 +2439,9 @@ msgstr "L'organisme aimerait répondre ou a répondu <strong> par la poste </str msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "La classification des demandes (c'est-à-dore si un demande a été répondue positivement ou non) est faite manuellement par les utilisateurs et les administrateurs du site. En d'autres termes, il se peut que des erreurs se glissent dans cette classification." +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Le message que vous avez envoyé au nom de {{public_body}} à \\n{{user}} en réponse à la demande {{law_used_short}}\\n n'a pas été livré." @@ -2326,6 +2526,9 @@ msgstr "Vous pourrez ensuite télécharger un fichier zip de {{info_request_titl msgid "Then you can log into the administrative interface" msgstr "Vous pourrez ensuite vous connecter à l'interface d'administration" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Vous pourrez ensuite jouer le jeu de catégorisation des demandes." @@ -2386,6 +2589,9 @@ msgstr "Il y a <strong> plus d'une personne </strong> qui utilise ce site et qui msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Il y a un nombre limite de demandes pouvant être formulées par jour (nous voulons éviter que les organismes soient bombardés de demandes inappropriées). Si vous croyez que vous devriez être exempté de cette limite, veuillez <a href='{{help_contact_path}}'>nous contacter</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Il y a {{count}} personne qui suit cette demande " @@ -2439,6 +2645,9 @@ msgstr "Cela couvre un très large spectre d'informations sur l'état de\\n <str msgid "This external request has been hidden" msgstr "Cette demande externe a été masquée" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ceci est une version en texte brut de la demande d'accès à l'information \"{{request_title}}\". La version complète la plus récente est disponible en ligne à {{full_url}}" @@ -2602,6 +2811,9 @@ msgstr "Pour le faire savoir à tous, suivez ce lien et sélectionnez ensuite la msgid "To log into the administrative interface" msgstr "Pour vous connecter à l'interface d'administration" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Pour jouer à catégoriser les demandes" @@ -2692,15 +2904,15 @@ msgstr "Impossible d'envoyer une réponse à {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Impossible d'envoyer un message de suivi à {{username}}" -msgid "Unexpected search result type" -msgstr "Type de résultat de recherche inattendu" - msgid "Unexpected search result type " msgstr "Type de résultat de recherche inattendu" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Malheureusement, nous ne connaissons pas l'adresse courriel pour cet organisme, nous ne pouvons donc pas valider cela. \\n Veuillez {{url}}\"> Merci de nous contacter</a> afin de régler ce problème." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Malheureusement, nous n'avons pas d'adresse {{info_request_law_used_full}} pour" @@ -2713,6 +2925,12 @@ msgstr "Vous désabonner" msgid "Unusual response." msgstr "Réponse inhabituelle." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Mettre à jour l'état de cette demande" @@ -2740,6 +2958,9 @@ msgstr "Utilisateur– {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2749,6 +2970,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2788,6 +3012,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "Version {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Voir les adresses courriel" @@ -2893,6 +3120,9 @@ msgstr "Dans quelle situation êtes-vous?" msgid "Who can I request information from?" msgstr "À qui puis-je faire une demande d'information ?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Retirée par le demandeur." @@ -2917,6 +3147,9 @@ msgstr "Formulez votre demande en langage <strong>simple et précis </strong>." msgid "You" msgstr "Vous" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Vous suivez déjà les nouvelles demandes" @@ -2986,6 +3219,9 @@ msgstr "Vous savez ce qui a causé l'erreur et pouvez <strong>conseiller une sol 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 "Vous pouvez <strong> inclure des pièces jointes </ strong>. Si vous souhaitez joindre un fichier \\n trop volumineux pour le courriel, veuillez utiliser le formulaire ci-dessous." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Vous pourrez peut-être en trouver \\n un sur leur site web ou en leur téléphonant. Si vous parvenez à \\n en trouver un, veuillez <a href=\"{{help_url}}\">nous contacter</a>." @@ -3049,12 +3285,18 @@ msgstr "Votre <strong>nom apparaîtra publiquement</strong>\\n (<a href=\ msgid "Your annotations" msgstr "Vos commentaires " +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Vos coordonnées, y compris votre adresse courriel, n'ont été données à personne." msgid "Your e-mail:" msgstr "Votre adresse courriel:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Votre message de suivi n'a pas été envoyé parce que cette demande a été interrompue afin de prévenir le spam. Veuillez <a href=\"{{url}}\">nous contacter</a>si vous voulez vraiment envoyer un message de suivi." @@ -3103,6 +3345,18 @@ msgstr "Votre demande '{{request}}' à {{url}} a été révisée par les modéra msgid "Your request on {{site_name}} hidden" msgstr "Votre demande sur {{site_name}} est masquée." +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Votre demande est intitulée {{info_request}}. En laissant les autres utilisateurs savoir si vous avez obtenu l'information, vous nous aidez à faire le suivi" @@ -3115,6 +3369,9 @@ msgstr "Votre réponse n'a pas été délivrée" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Votre réponse va <strong>apparaître sur Internet </strong>. <a href=\"{{url}}\">Lisez pourquoi</a> et les réponses aux autres questions." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vos idées sur ce que les <strong>administrateurs</strong> de {{site_name}} devraient faire à propos de la demande." @@ -3128,6 +3385,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Votre {{count}} annotation" msgstr[1] "Vos {{count}} annotations" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Votre alerte courriel de {{site_name}}" @@ -3143,6 +3405,9 @@ msgstr "Cordialement," msgid "Yours," msgstr "Sincèrement," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} email]" @@ -3492,6 +3757,9 @@ msgstr "{{thing_changed}} a été modifié de <code>{{from_value}}</code> à <co msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - Une demande d'accès à l'information à {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Compte suspend)" @@ -3516,6 +3784,12 @@ msgstr "{{user_name}} a envoyé un message de suivi à {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} a envoyé une demande à {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} a laissé une remarque:" diff --git a/locale/gl/app.po b/locale/gl/app.po index d2bb6197e..70a0f8de4 100644 --- a/locale/gl/app.po +++ b/locale/gl/app.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/alaveteli/language/gl/)\n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -38,6 +38,12 @@ msgstr " - Envía y busca entre solicitudes de acceso a información" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Nota::</strong>\n" @@ -50,6 +56,12 @@ msgstr " <strong>Nota sobre privacidad:</strong> Tu dirección de correo será d msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Resume</strong> el contenido de cualquier información obtenida. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Consejo sobre cómo <strong>aclarar lo mejor posible</strong> la solicitud." @@ -115,6 +127,15 @@ msgstr "'{{link_to_request}}', una solicitud" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', una persona" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -134,6 +155,9 @@ msgstr "- o -" msgid "1. Select an authority" msgstr "1. Elija un organismo público" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Solicite información" @@ -208,6 +232,9 @@ msgstr "<p>Tu solicitud incluye un <strong>código postal</strong>. Salvo que es msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} está en mantenimiento temporalmente. Sólo puede ver solicitudes existentes. No puede crear una nueva, añadir comentarios, enviar respuestas, o realizar otras operaciones que alteren la base de datos.</p> <p>{{read_only}}</p>" @@ -366,6 +393,12 @@ msgstr "" "Añade un comentario a tu solicitud con citas seleccionadas, o\n" " un <strong>resumen de la respuesta</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Añadido el {{date}}" @@ -456,6 +489,15 @@ msgstr "¿Posee el copyright de alguna información de esta página?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Pide documentos o información <strong>específica</strong>, esta web no está pensada para resolver dudas generales." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Al final de esta página, escribe una respuesta intentando convencerles de que lo escaneen\n" @@ -467,6 +509,12 @@ msgstr "Adjuntos (opcional):" msgid "Attachment:" msgstr "Adjunto:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Esperando clasificación." @@ -476,6 +524,9 @@ msgstr "Esperando revisión interna." msgid "Awaiting response." msgstr "Esperando respuesta." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Comenzando por" @@ -563,6 +614,9 @@ msgstr "Busque erratas si ha copiado la dirección." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Compruebe que no ha incluído <strong>ninguna información personal</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Elegir mi foto de perfil" @@ -589,6 +643,9 @@ msgstr "Haz click en el siguiente enlace para enviar un mensaje a {{public_body} msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -622,8 +679,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Confirma tu solicitud a " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirma tu cuenta en {{site_name}}" @@ -649,12 +706,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Contacta con {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "No hemos podido identificar la solicitud a partir de la dirección de correo" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "No se pudo procesar la imagen subida. Puedes utilizar PNG, JPEG, GIF u otros formatos de imagen populares." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Recorta tu foto de perfil" @@ -669,12 +735,18 @@ msgstr "Actualmente <strong>esperando la respuesta</strong> de {{public_body_lin msgid "Date:" msgstr "Fecha:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Estimado {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -708,6 +780,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "¿Quieres mandar tu mensaje a {{person_or_body}}? También puedes escribir a:" @@ -752,6 +827,9 @@ msgstr "La dirección de correo no parece válida" msgid "Email me future updates to this request" msgstr "Quiero recibir emails con las actulizaciones de esta solicitud" +msgid "Email:" +msgstr "" + 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>" @@ -872,6 +950,9 @@ msgstr "Seguir a este organismo" msgid "Follow this link to see the request:" msgstr "Siga este enlace para ver la solicitud:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1209,9 +1290,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1322,9 +1415,6 @@ msgstr "" msgid "Link to this" msgstr "Enlace" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Lista de todos los organismos (CSV)" @@ -1373,6 +1463,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Envíe una nueva<br/>\n" @@ -1382,9 +1481,15 @@ msgstr "" msgid "Make a request" msgstr "Enviar solicitud" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Hacer una solicitud {{law_used_short}} a '{{public_body_name}}'" @@ -1505,9 +1610,15 @@ msgstr "Ninguno/a." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "¡Ahora comprueba tu correo!" @@ -1565,12 +1676,18 @@ msgstr "Sólo el organismo puede responder a esta solicitud, y no reconozco la d msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Sólo el organismo puede responder a esta solicitud, pero no hay un campo \"From\" contra el que comparar" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "O busque esta información en su web." msgid "Original request sent" msgstr "Solicitud original enviada" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Otros:" @@ -1715,6 +1832,9 @@ msgstr "Por favor, introduzca una dirección de correo válida" msgid "Please enter the message you want to send" msgstr "Por favor, introduzca el mensaje que quieres enviar" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Por favor, introduzca la misma contraseña dos veces" @@ -1774,6 +1894,9 @@ msgstr "Por favor abre una sesión como " msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Por favor escribe un mensaje y/o escoje un fichero conteniendo su respuesta." @@ -1840,6 +1963,12 @@ msgstr "Revisar mensaje a '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Revisar nuevo comentario a '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Revisa tu comentario" @@ -1894,6 +2023,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1903,6 +2035,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -2019,6 +2172,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Pida una revisión interna" @@ -2028,6 +2184,9 @@ msgstr "Pedir una revisión interna a {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "La solicitud ha sido eliminada" @@ -2061,6 +2220,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2112,6 +2274,9 @@ msgstr "Buscar solicitudes de información, organismos públicos y usuarios" msgid "Search contributions by this person" msgstr "Buscar aportaciones de esta persona" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Buscar palabras en:" @@ -2147,6 +2312,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Elija uno para ver más información sobre el organismo." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Elija el organismo al que escribir" @@ -2174,6 +2342,11 @@ msgstr "Enviar un mensaje a " msgid "Send request" msgstr "Enviar solicitud" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Cambiar foto de perfil" @@ -2195,6 +2368,9 @@ msgstr "Mostrando" msgid "Sign in" msgstr "Abrir sesión" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Abrir sesión o crear nueva cuenta" @@ -2249,6 +2425,12 @@ msgstr "Lo sentimos, hubo un problema procesando esta página" msgid "Sorry, we couldn't find that page" msgstr "Lo sentimos, no hemos podido encontrar esa página" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "¡Notas especiales sobre este organismo!" @@ -2273,6 +2455,9 @@ msgstr "Tema:" msgid "Submit" msgstr "Enviar" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Enviar estado" @@ -2338,6 +2523,12 @@ msgstr "" "Gracias por ayudar - tu trabajo hace más sencillo que otros encuentren solicitudes\n" "que han tenido éxito, e incluso nos permitirá hacer clasificaciones..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Muchas gracias - esto ayudará a otros a encontrar información útil.\n" @@ -2359,12 +2550,18 @@ msgstr "La <strong>revisión ha finalizado</strong> y en resumen:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "La ley de acceso a la información <strong>no es aplicable</strong> a" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "El organismo <strong>no tiene</strong> la información <small>(tal vez dicen quién la tiene)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "El organismo sólo tiene una <strong>copia en papel</strong> de la información." @@ -2379,6 +2576,9 @@ msgstr "El organismo querría / ha respondido <strong>por correo ordinario</stro msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "El correo envíado por usted, en nombre de {{public_body}}, enviado a\n" @@ -2475,6 +2675,9 @@ msgstr "Entonces podrá descargarse el fichero ZIP de {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Entonces podrá jugar al juego de clasificar solicitudes" @@ -2535,6 +2738,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Hay un límite en el número de solicitudes que puedes hacer en un día, porque no queremos que los organismos públicos reciban un número exagerado de solicitudes mal formuladas. Si necesitas que el límite no se aplique en tu caso, por favor <a href='{{help_contact_path}}'>contacta con nosotros</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Hay {{count}} persona siguiendo esta solicitud." @@ -2592,6 +2798,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Esta es la versión sólo-texto de la solicitud de información \"{{request_title}}\". La versión más actualizada y completa está disponible en {{full_url}}" @@ -2773,6 +2982,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Jugar al juego de recategorización de solicitudes" @@ -2863,9 +3075,6 @@ msgstr "No se pudo enviar la respuesta a {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "No se pudo enviar la respuesta a {{username}}" -msgid "Unexpected search result type" -msgstr "Se encontró un tipo de resultado inesperado" - msgid "Unexpected search result type " msgstr "Se encontró un tipo de resultado inesperado " @@ -2875,6 +3084,9 @@ msgstr "" "de correo para este organismo, así que no podemos validarlo.\n" "Por favor <a href=\"{{url}}\">contáctenos</a> para arreglarlo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Desgraciadamente, no tenemos una dirección de correo válida para" @@ -2887,6 +3099,12 @@ msgstr "" msgid "Unusual response." msgstr "Respuesta no habitual." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Actualizar el estado de esta solicitud" @@ -2914,6 +3132,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2923,6 +3144,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2962,6 +3186,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Ver dirección de correo" @@ -3085,6 +3312,9 @@ msgstr "¿Qué está pasando?" msgid "Who can I request information from?" msgstr "¿A quién puedo solicitar información?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Retirada por el autor." @@ -3109,6 +3339,9 @@ msgstr "Escribe tu solicitud en un <strong>lenguaje sencillo y claro</strong>." msgid "You" msgstr "Tú" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3185,6 +3418,9 @@ msgstr "Sabes lo que ha causado el error, y puedes <strong>sugerir una solución msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Puede que encuentres una\n" @@ -3264,12 +3500,18 @@ msgstr "" msgid "Your annotations" msgstr "Tus comentarios" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Tu correo:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Tu respuesta no ha sido enviada porque esta solicitud ha sido bloqueada para evitar spam. Por favor <a href=\"{{url}}\">contáctanos</a> si realmente quieres enviar una respuesta." @@ -3320,6 +3562,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Tu solicitud se llamaba {{info_request}}. Haznos saber si has recibido la información para ayudarnos a controlar a" @@ -3332,6 +3586,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Tu respuesta <strong>aparecerá en Internet</strong>, <a href=\"{{url}}\">lee por qué</a> y respuestas a otras preguntas." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Opine sobre lo que los <strong>administradores</strong> de {{site_name}} deberían hacer con la solicitud." @@ -3345,6 +3602,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Tu {{count}} comentario" msgstr[1] "Tus {{count}} comentarios" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Tu alerta en {{site_name}}" @@ -3357,6 +3619,9 @@ msgstr "Un saludo," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3719,6 +3984,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Expulsado)" @@ -3745,6 +4013,12 @@ msgstr "{{user_name}} envió un mensaje a {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} envió una solicitud a {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} dejó un comentario:" diff --git a/locale/he_IL/app.po b/locale/he_IL/app.po index 1497ac25f..1458eb384 100644 --- a/locale/he_IL/app.po +++ b/locale/he_IL/app.po @@ -8,7 +8,7 @@ # Ram Ezrach <ram.ezrach@gmail.com>, 2013 # rshlo <r@roishlomi.com>, 2013 # rshlo <r@roishlomi.com>, 2013 -# yauzi <yair.uziel@gmail.com>, 2013 +# yauzi <yair.uziel@gmail.com>, 2013-2014 # yauzi <yair.uziel@gmail.com>, 2013 # yehuda <yehudab@gmail.com>, 2013 # yehuda <yehudab@gmail.com>, 2013 @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-03-03 17:37+0000\n" +"Last-Translator: yauzi <yair.uziel@gmail.com>\n" "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/alaveteli/language/he_IL/)\n" "Language: he_IL\n" "MIME-Version: 1.0\n" @@ -48,6 +48,12 @@ msgstr "– צפו והגישו בקשות למידע" msgid " - wall" msgstr " - קיר" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>הערה:<strong/> בקרוב יישלח אליכם דואר אלקטרוני. עקוב אחר ההוראות המצויות בו על מנת לשנות את הסיסמא." @@ -57,6 +63,12 @@ msgstr " <strong>הערת פרטיות:</strong> כתובת הדוא\"ל שלכ msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>סכמו</strong> תוכן של כל מידע מוחזר" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "הסברים כיצד <strong>לנסח בצורה בהירה</strong> את הבקשה." @@ -117,6 +129,15 @@ msgstr "'{{link_to_request}}', בקשה" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', משתמש" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "\"לא ידוע\"" @@ -129,6 +150,9 @@ msgstr "- או -" msgid "1. Select an authority" msgstr "1. בחרו רשות" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. בקשו מידע" @@ -195,6 +219,9 @@ msgstr "<p>הבקשה כוללת <strong>מיקוד דואר</strong>. אם המ msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>בקשת {{law_used_full}} שלך <strong>יצאה לדרכה</strong>!</p><p><strong>אנחנו נשלח לך דוא\"ל</strong> כאשר תגיע תגובה, או אחרי {{late_number_of_days}} ימי עבודה אם הרשות עדיין לא תענה.</p><p>אם אתם כותבים על הבקשה הזאת (למשל בפורום או בבלוג) אנא הוסיפו קישור לדף הזה, והוסיפו הערה על כך למטה.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} נמצא כעת בתחזוקה. ניתן לצפות בבקשות בלבד. לא ניתן להגיש בקשות חדשות, לעקוב, להוסיף הערות, או לעשות כל שינוי במידע שבאתר.</p> <p>{{read_only}}</p>" @@ -329,6 +356,12 @@ msgstr "הוסיפו הערה" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "הוסיפו הערה לבקשה שלכם במרכאות, או \\n <strong>סיכום התגובה</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "התווסף בתאריך {{date}}" @@ -413,6 +446,15 @@ msgstr "האם אתם הבעלים של\\n זכויות יוצרים msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "בקשו מסמכים או מידע <strong>מסוימים</strong>. אתר זה אינו מיועד לבקשות כלליות." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "רשמו את התגובה שלכם בתחתית עמוד זה, ונסו לשכנע אותם לסרוק את זה \\n (<a href=\"{{url}}\">more details</a>)." @@ -422,6 +464,12 @@ msgstr "קובץ מצורף (לא חובה):" msgid "Attachment:" msgstr "קובץ מצורף: " +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "ממתין לסיווג." @@ -431,6 +479,9 @@ msgstr "ממתין לביקורת פנימית." msgid "Awaiting response." msgstr "ממתין לתשובה." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "חיפוש על-פי אות ראשונה" @@ -518,6 +569,9 @@ msgstr "אם הקלדתם או העתקתם את הכתובת תוכלו לבד msgid "Check you haven't included any <strong>personal information</strong>." msgstr "בדקו שלא כללתם כל <strong>מידע אישי</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "בחרו את תמונת הפרופיל שלכם" @@ -542,6 +596,9 @@ msgstr "הקליקו על הלינק כדי לשלוח הודעה אל {{public_ msgid "Close" msgstr "סגור" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "הערות" @@ -575,8 +632,8 @@ msgstr "אשרו שאתם רוצים לעקוב אחר בקשות עבור '{{pu msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "אשרו שאתם רוצים לעקוב אחר הבקשות '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "אשרו את הבקשה שלכם עבור" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "אשרו את החשבון שלכם באתר {{site_name}}" @@ -602,12 +659,21 @@ msgstr "צרו קשר עם {{recipient}}" msgid "Contact {{site_name}}" msgstr "צרו קשר עם {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "לא ניתן היה לזהות את הבקשה מכתובת הדואר האלקטרוני" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "קובץ התמונה שהעלתם לא נתמך. ניתן להעלות קבצים בפורמט PNG, JPEG, GIF ועוד." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "חתכו את תמונת הפרופיל שלכם" @@ -620,11 +686,20 @@ msgstr "כרגע <strong>ממתין לתגובה</strong> מ{{public_body_link}} msgid "Date:" msgstr "תאריך:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "{{name}} יקר," msgid "Dear {{public_body_name}}," -msgstr "{{public_body_name}} נכבד, " +msgstr "" +"לכבוד הממונה על חוק חופש המידע ב{{public_body_name}},\n" +"\n" +"בהתאם לסעיף 7 לחוק חופש המידע, התשנ\"ח-1998 הריני לפנות אליכם כדלקמן:" + +msgid "Dear {{user_name}}," +msgstr "" msgid "Default locale" msgstr "ברירת מחדל של הגדרות מקומיות" @@ -659,6 +734,9 @@ msgstr "יומן גילוי נאות" msgid "Disclosure log URL" msgstr "כתובת יומן גילוי נאות" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "לא מעוניינים להפנות את ההודעה ל- {{person_or_body}}? תוכלו לכתוב ל:" @@ -701,6 +779,9 @@ msgstr "כתובת הדואר האלקטרוני היא לא כתובת חוקי msgid "Email me future updates to this request" msgstr "שלחו לי עדכונים בדואר אלקטרוני לגבי הבקשה" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "הכניסו את מילות החיפוש עם רווח ביניהן. לדוגמה, e.g. <strong>נתיב עליה</strong>" @@ -815,6 +896,9 @@ msgstr "עקבו אחר הרשות הזו" msgid "Follow this link to see the request:" msgstr "עקבו אחר הקישור הזה בשביל לראות את הבקשה:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "עקוב אחר האדם הזה" @@ -1117,9 +1201,21 @@ msgstr "דרישות נפרדות" msgid "Info request" msgstr "בקשת מידע" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "אירוע בקשת מידע" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated מצב" @@ -1222,9 +1318,6 @@ msgstr "ספרו לנו מה עשיתם כשהודעה זו\\nהופיעה, וכ msgid "Link to this" msgstr "קישור לכאן" -msgid "List all" -msgstr "רשימת הכל" - msgid "List of all authorities (CSV)" msgstr "רשימת כל הרשויות (CSV)" @@ -1273,15 +1366,30 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "הגישו<br><strong>בקשה</strong><br><span>לפתיחת</span> <br><strong>מאגר מידע</strong>" msgid "Make a request" msgstr "בקשה חדשה" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "הגישו בקשה לרשות זו" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "יצירת בקשת {{law_used_short}} ל '{{public_body_name}}'" @@ -1402,9 +1510,15 @@ msgstr "לא בוצע שינוי." msgid "Not a valid FOI request" msgstr "בקשת מידע לא תקפה" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "שימו לב כי לא נודיע למבקש על הערתכם, מכיוון שהבקשה פורסמה ע\"י {{public_body_name}} ובשמם." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "עכשיו בידקו את האימייל שלכם!" @@ -1462,12 +1576,18 @@ msgstr "רק הרשות יכולה להשיב לבקשה זו, וכתובת הד msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "רק הרשות יכולה להשיב לבקשה זו, אבל לא קיימת כתובת דוא\"ל בשדה \"מאת\", שניתן לבדוק אותה" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "או חפשו באתר שלהם למידע הזה." msgid "Original request sent" msgstr "בקשה מקורית נשלחה" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "אחר:" @@ -1603,6 +1723,9 @@ msgstr "בבקשה הקלד כתובת דואר אלקטרוני נכונה" msgid "Please enter the message you want to send" msgstr "הכניסו את ההודעה שאתם רוצים לשלוח" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "בבקשה הקלידו את הסיסמה שוב" @@ -1660,6 +1783,9 @@ msgstr "נא התחברו כ" msgid "Please sign in or make a new account." msgstr "תוכלו להתחבר או ליצור חשבון חדש." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "כתבו את ההודעה ו/או בחרו בקובץ הבקשה שלכם" @@ -1726,6 +1852,12 @@ msgstr "צפייה מוקדמת של המשך של" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "צפייה מוקדמת בהערה על '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "תצוגה מקדימה של ההערה" @@ -1780,6 +1912,9 @@ msgstr "" msgid "Public body" msgstr "גוף ציבורי" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "רשימות ציבוריות" @@ -1789,6 +1924,27 @@ msgstr "דף ציבורי" msgid "Public page not available" msgstr "הדף הציבורי לא זמין" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -1903,6 +2059,9 @@ msgstr "דווחו על בקשה זו" msgid "Reported for administrator attention." msgstr "דווח לטיפול מנהל." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "לבקש בדיקה פנימית" @@ -1912,6 +2071,9 @@ msgstr "בקשה לבדיקה פנימית מ- {{person_or_body}}" msgid "Request email" msgstr "בקשת דוא\"ל" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "הבקשה הוסרה" @@ -1945,6 +2107,9 @@ msgstr "בקשות דומות ל - '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "בקשות דומות ל - '{{request_title}}' (עמוד {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "הגיבו בדוא\"ל" @@ -1996,6 +2161,9 @@ msgstr "חפש בקשות, רשויות ציבוריות ומשתמשים" msgid "Search contributions by this person" msgstr "חפש תוספות של אדם זה" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "חיפוש אחר המילים ב:" @@ -2028,6 +2196,9 @@ msgstr "ראו הודעת תגובה" msgid "Select one to see more information about the authority." msgstr "בחרו את אחד הגופים מן הרשימה על מנת לקבל עליו מידע נוסף." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "בחרו את הרשות שתרצו לכתוב אליה" @@ -2055,6 +2226,11 @@ msgstr "שלחו הודעה" msgid "Send request" msgstr "שלחו בקשה" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "הגדירו תמונת פרופיל" @@ -2076,6 +2252,9 @@ msgstr "תצוגה" msgid "Sign in" msgstr "התחברו" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "התחברו או צרו חשבון חדש" @@ -2124,6 +2303,12 @@ msgstr "מצטערים, היתה בעיה בהצעת הדף הזה" msgid "Sorry, we couldn't find that page" msgstr "מצטערים, אנחנו לא יכולים למצוא את הדף המבוקש" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "הערה מיוחדת לרשות זו" @@ -2148,6 +2333,9 @@ msgstr "נושא:" msgid "Submit" msgstr "שלח" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "הצג סטטוס" @@ -2211,6 +2399,12 @@ msgstr "תודה רבה! נבדוק מה קרה וננסה לתקן זאת" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "תודה על העזרה - העזרה שלך תסייע לכולם למצוא בקשות שנענו." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "תודה רבה, זה יעזור לאחרים למצוא מידע בצורה יעילה יותר.\\n נוכל גם לתת לכם טיפים, מה לעשות בשלב הבא של הגשת הבקשות\\n שלכם." @@ -2226,12 +2420,18 @@ msgstr "<strong>הבחינה הסתיימה</strong> ובסך הכל:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "החלטת הממשלה <strong>אינה חלה</strong> על" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "החשבונות נשארו ללא שינוי." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "לרשות <strong>אין</strong> את המידע <small>(אולי הם אומרים למי כן יש)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "לרשות יש רק <strong>עותק קשיח</strong> של המידע." @@ -2244,6 +2444,9 @@ msgstr "הרשות רוצה להגיב / כבר הגיבה <strong>בדואר ר msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "הדוא\"ל ששלחתם בשם {{public_body}}, ל-{{user}} כדי להגיב על בקשת {{law_used_short}} לא נשלח." @@ -2328,6 +2531,9 @@ msgstr "אז תוכלו להוריד קובץ ZIP של {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "לאחר מכן תוכלו להתחבר לממשק הניהול" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "אז תוכלו לשחק במשחק סיווג הבקשות" @@ -2388,6 +2594,9 @@ msgstr "יש <strong>יותר מאדם אחד</strong> המשתמש במערכת msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "מספר הבקשות שניתן להגיש ביום מוגבל, כי אנו לא רוצים להציף את הרשויות הציבוריות בבקשות שווא. אם אתם רוצים להגדיל את המספר המותר, <a href='{{help_contact_path}}'>צרו קשר</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "עוקב אחר הבקשה הזו אדם אחד" @@ -2441,6 +2650,9 @@ msgstr "דבר זה מכסה מנעד רחב של מידע על מצב\\n <stron msgid "This external request has been hidden" msgstr "בקשה חיצונית זו הוסתרה" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "זוהי גרסת טקסט של בקשת המידע \"{{request_title}}\". הגרסה האחרונה, המלאה, זמינה ברשת בכתובת {{full_url}}" @@ -2604,6 +2816,9 @@ msgstr "כדי לשתף, ליחצו על הלינק וסמנו את התיבה msgid "To log into the administrative interface" msgstr "להתחברות לממשק הניהול" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "כדי לשחק במשחק סיווג הקטגוריות" @@ -2694,15 +2909,15 @@ msgstr "לא ניתן לשלוח תגובה ל- {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "לא ניתן לשלוח הודעת מעקב ל- {{username}}" -msgid "Unexpected search result type" -msgstr "תוצאת חיפוש לא צפויה" - msgid "Unexpected search result type " msgstr "תוצאת חיפוש לא צפויה" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "לצערנו, איננו מכירים את FOI\\nכתובת הדוא\"ל של רשות זו, ולכן איננו יכולים לאמת אותה.\\nאנא <a href=\"{{url}}\">צרו איתנו קשר</a> כדי לטפל בכך." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "לצערנו, אין לנו כתובת פעילה לחוק {{info_request_law_used_full}}\\n עבור" @@ -2715,6 +2930,12 @@ msgstr "בטל הרשמה" msgid "Unusual response." msgstr "תגובה מוזרה" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "לעדכן את הסטטוס של הבקשה" @@ -2742,6 +2963,9 @@ msgstr "משתמש – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2751,6 +2975,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2790,6 +3017,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "גירסה {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "צפו בדוא\"ל של בקשות מידע" @@ -2895,6 +3125,9 @@ msgstr "מה מהדברים הללו קורה?" msgid "Who can I request information from?" msgstr "ממי ניתן לבקש מידע?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "בוטל על-ידי מגיש הבקשה" @@ -2919,6 +3152,9 @@ msgstr "כתבו את בקשתכם <strong>בשפה פשוטה ומדויקת</s msgid "You" msgstr "אתם" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "אתם כבר עוקבים אחר בקשות חדשות" @@ -2988,6 +3224,9 @@ msgstr "בהכירכם את הסיבה לתקלה, תוכלו <strong>להציע 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 "אתם יכולים <strong>לצרף קבצים</strong>. אם ברצונכם לצרף \\n קובץ שהוא גדול מדי לדוא\"ל, אנא השתמשו בטופס למטה." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "תוכלו אולי לברר זאת\\nבאתר שלהם, או ע\"י התקשרות עימם בטלפון. אם תצליחו בבירור זה, \\nאנא <a href=\"{{url}}\">עדכנו אותנו</a>." @@ -3053,12 +3292,18 @@ msgstr "" msgid "Your annotations" msgstr "ההערות שלכם" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "הפרטים שלכם, כולל כתובת הדואר האלקטרוני, לא ניתנו לאף אחד." msgid "Your e-mail:" msgstr "הדוא\"ל שלכם:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "הודעת המעקב שלכם לא נשלחה, כי היא זוהתה כדואר זבל. <a href=\"{{url}}\">נא צרו איתנו קשר</a>אם אתם באמת מעוניינים לשלוח אותה." @@ -3107,6 +3352,18 @@ msgstr "מנהל בחן את הבקשה שלך '{{request}}' בכתובת {{url msgid "Your request on {{site_name}} hidden" msgstr "הבקשה שלך ב{{site_name}} הינה מוסתרת" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "הבקשה שלכם נקראת {{info_request}}. אם תודיעו זאת לאחרים נוכל לעדכן את התווית" @@ -3119,6 +3376,9 @@ msgstr "התגובה שלך לבקשה לא נשלחה" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "תגובתכם <strong>תופיע באינטרנט</strong>, <a href=\"{{url}}\">קראו מדוע</a> and וצפו בתשובות לשאלות נוספות." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "דעתכם על מה {{site_name}} <strong>שמנהלי האתר</strong> צרכים לעשות בקשר לבקשה." @@ -3132,18 +3392,26 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "הערה {{count}} שלכם" msgstr[1] "{{count}} ההערות שלכם" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "התרעת הדוא\"ל שלכם מאתר {{site_name}} " msgid "Yours faithfully," -msgstr "שלכם במסירות," +msgstr "בתודה מראש על טיפולכם המסור בבקשה זו," msgid "Yours sincerely," -msgstr "שלכם בכנות," +msgstr "בתודה מראש על טיפולכם המסור בבקשה זו," msgid "Yours," msgstr "בהוקרה," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} email]" @@ -3493,6 +3761,9 @@ msgstr "{{thing_changed}} השתנה מ- <code>{{from_value}}</code> אל <code> msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - בקשת מידע עבור {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (חשבון הושעה)" @@ -3517,6 +3788,12 @@ msgstr "{{user_name}} שלח בקשת מעקב ל- {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} שלח בקשה ל- {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} הוסיף הערה:" diff --git a/locale/hr/app.po b/locale/hr/app.po index 3716d41a9..28e49f3e2 100644 --- a/locale/hr/app.po +++ b/locale/hr/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/alaveteli/language/hr/)\n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -41,6 +41,12 @@ msgstr " - pregledaj i napravi Zahtjeve o slobodnom pristupu informacijama " msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Note:</strong>\n" @@ -53,6 +59,12 @@ msgstr " <strong>Privacy note:</strong> Vaša e-mail adresa će biti proslijeđe msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Sažimati</strong> sadržaj svake vraćene informacije. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Savjetuj kako<strong>najbolje objasniti</strong> zahjev." @@ -118,6 +130,15 @@ msgstr "'{{link_to_request}}', zahtjev" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', osoba" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -137,6 +158,9 @@ msgstr "- ili -" msgid "1. Select an authority" msgstr "1. Odaberite ustanovu" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Tražite informacije" @@ -205,6 +229,9 @@ msgstr "<p>Vaš zahtjev sadrži <strong>poštanski broj</strong>. Ako poštanski msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} je trenutno na održavanju. Možete samo pregledati postojeće zahtjeve. Ne možete odnositi nove, dodavati prateće poruke ili napomene, ili u suprotnom promijenite bazu podataka.</p> <p>{{read_only}}</p>" @@ -352,6 +379,12 @@ msgstr "" "Dodajte napomenu Vašem zahtjevu sa izabranim navodima, ili\n" " <strong>sažetak odgovora</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Dodato na datum {{date}}" @@ -442,6 +475,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Tražite <strong>konkretne</strong> dokumente ili informacije, ova stranica nije pogodna za opće pretrage." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Na dnu ove stranice, napišite im odgovor pokušavajući da ih ubjedite da ga pregledaju\n" @@ -453,6 +495,12 @@ msgstr "Prilog (neobavezno):" msgid "Attachment:" msgstr "Prilog" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Čeka klasifikaciju." @@ -462,6 +510,9 @@ msgstr "Čeka urgenciju" msgid "Awaiting response." msgstr "Čeka odgovor." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Počevši sa" @@ -549,6 +600,9 @@ msgstr "Provjerite ima li grešaka ako ste ukucali ili kopirali adresu." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Provjerite da niste uključili nikakve <strong>lične podatke</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Odaberite sliku na Vašem profilu" @@ -575,6 +629,9 @@ msgstr "Kliknite na link ispod da biste poslali poruku {{public_body}} koja će msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -608,8 +665,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Potvrdite Vaš Zahtjev za slobodan pristup informacijama za" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Potvrdite Vaš račun na {{site_name}}" @@ -635,12 +692,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Kontakt {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nismo mogli prepoznati zahtjev sa e-mail adrese" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Pogrešan format datoteke. Molimo Vas uploadirajte: PNG, JPEG, GIF, ili neke druge podržive formate." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Smanjite sliku na Vašem profilu" @@ -653,12 +719,18 @@ msgstr "Trenutno <strong>čeka odgovor</strong> od {{public_body_link}}, moraju msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Poštovani {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -692,6 +764,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -736,6 +811,9 @@ msgstr "E-mail ne izgleda kao validna adresa" msgid "Email me future updates to this request" msgstr "Buduća ažuriranja šaljite na moj e-mail" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Sa razmacima unesite riječi koje želite naći, npr. <strong>climbing lane</strong>" @@ -856,6 +934,9 @@ msgstr "Prati ovu ustanovu" msgid "Follow this link to see the request:" msgstr "Pratite ovaj link da biste vidjeli zahtjev:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1188,9 +1269,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1300,9 +1393,6 @@ msgstr "" msgid "Link to this" msgstr "Spojite sa ovim" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Popis svih ustanova (CSV)" @@ -1351,6 +1441,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Podnesi novi<br/>\n" @@ -1361,9 +1460,15 @@ msgstr "" msgid "Make a request" msgstr "Podnesi zahtjev" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Podnesi {{law_used_short}} zahtjev javnoj ustanovi '{{public_body_name}}'" @@ -1484,9 +1589,15 @@ msgstr "Ništa podneseno." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sada provjerite Vaš e-mail!" @@ -1544,12 +1655,18 @@ msgstr "Samo ustanova može odgovoriti na ovaj zahtjev, i ne prepoznajemo adresu msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Samo ustanova može odgovoriti na ovaj zahtjev, ali ne sadrži adresu pošiljaoca" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ili tražite ovu informaciju na njihovoj web stranici." msgid "Original request sent" msgstr "Originalni zahtjev poslan" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Drugo:" @@ -1694,6 +1811,9 @@ msgstr "Molimo unesite valjanu e-mail adresu" msgid "Please enter the message you want to send" msgstr "Molimo upišite poruku koju želite poslati" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Molimo unesite isti password dva puta" @@ -1753,6 +1873,9 @@ msgstr "Molimo prijavite se kao " msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Molimo ukucajte poruku i/ili odaberite fajl koji sadrži vaš odgovor." @@ -1819,6 +1942,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Pregledaj novu napomenu za '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Pregledajte Vašu napomenu" @@ -1873,6 +2002,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1882,6 +2014,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1998,6 +2151,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Tražite " @@ -2007,6 +2163,9 @@ msgstr "Zatražiti urgenciju od strane {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Zahtjev je uklonjen" @@ -2040,6 +2199,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-mailom" @@ -2091,6 +2253,9 @@ msgstr "Pretraži Zahtjeve za slobodan pristup informacijama, javne ustanove i k msgid "Search contributions by this person" msgstr "Pretraži doprinose od strane ove osobe" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2124,6 +2289,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Odaberite jedan da biste vidjeli više informacija o ustanovi." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Odaberite ustanovu kojoj ćete pisati" @@ -2151,6 +2319,12 @@ msgstr "Pošalji poruku " msgid "Send request" msgstr "Pošalji zahtjev" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Podesiti sliku na Vašem profilu" @@ -2172,6 +2346,9 @@ msgstr "Prikazuje" msgid "Sign in" msgstr "Prijavite se" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Prijavite se ili napravite novi korisnički račun" @@ -2226,6 +2403,12 @@ msgstr "Žalimo, postoji problem u procesuiranju stranice" msgid "Sorry, we couldn't find that page" msgstr "Žalimo, nismo mogli pronaći tu stranicu" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Posebna napomena za ovu ustanovu!" @@ -2250,6 +2433,9 @@ msgstr "Tema:" msgid "Submit" msgstr "Predaj" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Pošalji status" @@ -2315,6 +2501,12 @@ msgstr "" "Hvala na pomoći - Vaš rad će svima olakšati pronalaženje pozitivnih\n" "odgovora, i možda čak dozvoliti nama da pravimo tabele zajednica..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Hvala - ovo će pomoći drugima da pronađu korisne stvari. Mi ćemoVas\n" @@ -2336,12 +2528,18 @@ msgstr "Pregled <strong>je završen</strong> i sveukupno:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Zakon o slobodnom pristupu informacijama <strong>se ne odnosi</strong> na" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički računi nisu mijenjani" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Ustanova <strong>ne posjeduje</strong> informacije <small>(možda mogu reći ko posjeduje)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Ustanova ima samo <strong>printanu kopiju</strong> informacije." @@ -2356,6 +2554,9 @@ msgstr "Ustanova bi željela / je <strong>odgovorila poštom</strong> na ovaj za msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2449,6 +2650,9 @@ msgstr "Tada možete preuzeti zipovano {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Tada možete igrati igru kategorizacije zatjeva." @@ -2509,6 +2713,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2565,6 +2772,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2740,6 +2950,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Da biste igrali igru kategorizacije zahtjeva" @@ -2830,9 +3043,6 @@ msgstr "Ne možemo poslati poruku za {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Ne možemo poslati popratnu pokuku za {{username}}" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" @@ -2842,6 +3052,9 @@ msgstr "" "te ustanove, tako da nismo u mogućnosti validirati ovo.\n" "Molimo <a href=\"{{url}}\">kontaktirajte nas</a> da to razjasnimo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "Nažalost, ne posjedujemo ispravnu {{info_request_law_used_full}}\n" @@ -2856,6 +3069,12 @@ msgstr "" msgid "Unusual response." msgstr "Neobičan odgovor." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Ažurirajte status ovog zahtjeva" @@ -2883,6 +3102,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Korisnik|O meni" @@ -2892,6 +3114,9 @@ msgstr "Korisnik|Administratorski nivo" msgid "User|Ban text" msgstr "Korisnik|tekst isključenja" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Korisnik|E-mail" @@ -2931,6 +3156,9 @@ msgstr "Korisnik|Url ime" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Vidjeti adresu za Zahtjeve za slobodan pristup informacijama." @@ -3052,6 +3280,9 @@ msgstr "Šta se od ovoga događa?" msgid "Who can I request information from?" msgstr "Od koga mogu tražiti informacije?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Povučeno od strane podnosioca zahtjeva." @@ -3076,6 +3307,9 @@ msgstr "Pišite Vaš zahtjev <strong>jednostavnim, preciznim jezikom</strong>." msgid "You" msgstr "Vi" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -3150,6 +3384,9 @@ msgstr "Znate šta je uzrok greške i možete <strong>predložiti rješenje</str msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Moguće je da je nađete\n" @@ -3219,12 +3456,18 @@ msgstr "" msgid "Your annotations" msgstr "Vaše napomene" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Vaš e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3275,6 +3518,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Naziv Vašeg zahtjeva je {{info_request}}. Obavijest o tome da li ste dobili odgovor će nam pomoći da bolje pratimo." @@ -3287,6 +3542,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Vaš odgovor će se <strong>pojaviti na Internetu</strong>, <a href=\"{{url}}\">pročitajte zašto</a> i odgovore na druga pitanja." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vaše mišljenje o tome šta administratori {{site_name}} trebaju da rade po pitanju zahtjeva." @@ -3302,6 +3560,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "Vaše {{site_name}} e-mail upozorenje" @@ -3314,6 +3578,9 @@ msgstr "S poštovanjem," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3671,6 +3938,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3697,6 +3967,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} je poslao zahtjev za {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} je ostavio napomenu:" diff --git a/locale/hr_HR/app.po b/locale/hr_HR/app.po index 635379c4d..4a19af2ce 100644 --- a/locale/hr_HR/app.po +++ b/locale/hr_HR/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/alaveteli/language/hr_HR/)\n" "Language: hr_HR\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -48,6 +54,12 @@ msgstr "<strong>Privatnost:</strong> Vaša e-mail adresa će biti poslana" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -108,6 +120,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -120,6 +141,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -186,6 +210,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -318,6 +345,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -420,6 +468,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -507,6 +558,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -531,6 +585,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -564,7 +621,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -609,12 +675,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -690,6 +765,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -804,6 +882,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1107,9 +1188,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1212,9 +1305,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1263,15 +1353,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Napravite novi <br/>\\n <strong>Sloboda><br/> informacije<br/>\\n zahtijevati</strong>" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1392,9 +1497,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1452,12 +1563,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1593,6 +1710,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1650,6 +1770,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1716,6 +1839,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1770,6 +1899,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1779,6 +1911,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1893,6 +2046,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1902,6 +2058,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1935,6 +2094,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1986,6 +2148,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2019,6 +2184,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2046,6 +2214,12 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "" @@ -2067,6 +2241,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2115,6 +2292,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2139,6 +2322,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2202,6 +2388,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2217,12 +2409,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2235,6 +2433,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2319,6 +2520,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2379,6 +2583,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2433,6 +2640,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2598,6 +2808,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2688,15 +2901,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2709,6 +2922,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2736,6 +2955,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2745,6 +2967,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2784,6 +3009,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2889,6 +3117,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2913,6 +3144,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2982,6 +3216,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3045,12 +3282,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3099,6 +3342,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3111,6 +3366,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3126,6 +3384,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3138,6 +3402,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3491,6 +3758,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3515,6 +3785,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/hu_HU/app.po b/locale/hu_HU/app.po index 2819e699d..139605acc 100644 --- a/locale/hu_HU/app.po +++ b/locale/hu_HU/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/alaveteli/language/hu_HU/)\n" "Language: hu_HU\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr " - közérdekű adat igénylések megtekintése és benyújtása" msgid " - wall" msgstr " - fal" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Megjegyzés:</strong>\n" @@ -50,6 +56,12 @@ msgstr " <strong>Adatvédelmi megjegyzés:</strong> Az üzenet az ön email cí msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Foglalja össze</strong> a kapott információkat. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Adjon tanácsot, hogy hogyan lehet <strong>pontosítani</strong> az adatigénylést. " @@ -114,6 +126,15 @@ msgstr "'{{link_to_request}}', igénylés " msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', személy " +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*ismeretlen*" @@ -133,6 +154,9 @@ msgstr "- vagy - " msgid "1. Select an authority" msgstr "1. Az adatgazda kiválasztása " +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Az adatigénylés összeállítása" @@ -207,6 +231,9 @@ msgstr "<p>Igénylésében szerepel <strong>irányítószám</strong>. Amennyibe msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>{{law_used_full}} igénylését <strong>elküldtük</strong>.</p>\\nA válasz érkeztéről <p><strong>e-mailben értesítjük önt</strong>. Ha az adatgazda {{late_number_of_days}} munkanap elteltével sem válaszol, a határidő lejártakor emlékeztetőt\\n küldünk önnek.</p>\\n <p>Amennyiben adatigénylését máshol is megemlíti (például: internetes fórumon vagy blogbejegyzésben), kérjük, helyezzen el ott egy erre a KiMitTud oldalra mutató hivatkozást.\\n Az ilyen megosztásokról tegyen itt is említést hozzászólás formájában.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>A {{site_name}} jelenleg karbantartás alatt áll. Csak a meglevő igényléseket tudja megtekinteni. Nem vehet fel új igénylést, fejleményt, hozzászólást és egyéb módon sem módosíthatja az adatbázist.</p> <p>{{read_only}}</p> " @@ -360,6 +387,12 @@ msgstr "Hozzászólás" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "<strong>Foglalja össze a választ</strong> egy hozzászólásban. Idézeteket, hivatkozásokat is használhat." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Hozzáadva: {{date}} -n" @@ -448,6 +481,15 @@ msgstr "Tulajdonosa az oldalon található bármely kereskedelmi célú szerzői msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Kérése irányulhat <strong>konkrét</strong> dokumentumokra vagy információkra, de az oldal általános tudakozódásra nem alkalmas. " +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Az oldal alsó részén írjon választ, amiben kéri a dokumentum szkennelését\n" @@ -459,6 +501,12 @@ msgstr "Melléklet (opcionális): " msgid "Attachment:" msgstr "Melléklet: " +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Besorolásra vár" @@ -468,6 +516,9 @@ msgstr "Belső felülvizsgálatra vár" msgid "Awaiting response." msgstr "Válaszra vár" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Kezdőbetű" @@ -555,6 +606,9 @@ msgstr "Ha beírta vagy másolta a címet, ellenőrizze, hogy helyes-e. " msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Ellenőrizze, hogy nem maradt-e az igénylésben <strong>személyes adat</strong>!" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Profilkép feltöltése" @@ -581,6 +635,9 @@ msgstr "Az alábbi hivatkozásra kattintva üzenetet küldhet a(z) {{public_body msgid "Close" msgstr "Bezárás" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Megjegyzés" @@ -614,8 +671,8 @@ msgstr "Erősítse meg, hogy követni kívánja a(z) '{{public_body_name}}' rés msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Erősítse meg, hogy követni kívánja a(z) '{{request_title}}' adatigénylést" -msgid "Confirm your FOI request to " -msgstr "{{public_body_name}} számára küldött közérdekűadat-igénylés megerősítése. " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Regisztráció megerősítése a {{site_name}} weboldalon " @@ -641,12 +698,21 @@ msgstr "Kapcsolatfelvétel a(z) {{recipient}} képviselőjével" msgid "Contact {{site_name}}" msgstr "Kapcsolatfelvétel a {{site_name}} üzemeltetőjével" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nem azonosítható az e-mail címről érkező igénylés " msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Nem értelmezhető az ön által feltöltött képfájl. A PNG, JPEG, GIF és sok más általános képfájlformátumot támogat a rendszer. " +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Profilkép kivágása " @@ -661,12 +727,18 @@ msgstr "Jelenleg a(z) {{public_body_link}} <strong>válaszát</strong> várjuk. msgid "Date:" msgstr "Dátum: " +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Tisztelt {{public_body_name}}! " +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -700,6 +772,9 @@ msgstr "Közzétételi napló" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Nem kívánja üzenetét {{person_or_body}} számára elküldeni? A következőnek is írhat: " @@ -744,6 +819,9 @@ msgstr "Az e-mail cím nem tűnik érvényes címnek " msgid "Email me future updates to this request" msgstr "E-mailben kérek értesítést az igényléssel kapcsolatos jövőbeli fejleményekről " +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Írja be azokat a szavakat, amelyeket szóközzel elválasztva kíván megjeleníteni, pl. <strong>kapaszkodó sáv</strong> " @@ -867,6 +945,9 @@ msgstr "Kísérje figyelemmel ezt az adatgazdát!" msgid "Follow this link to see the request:" msgstr "Ezen a hivatkozáson tekinthető meg az igénylés:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Ezen felhasználó követése" @@ -1207,9 +1288,21 @@ msgstr "Egyéni igénylések" msgid "Info request" msgstr "Információ kérése " +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Információkérési esemény " +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1319,9 +1412,6 @@ msgstr "" msgid "Link to this" msgstr "Hivatkozása ide " -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Az rendszerünkben található adatgazdák listája (CSV) " @@ -1370,6 +1460,15 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Új<br/><br/>\n" @@ -1381,9 +1480,15 @@ msgstr "" msgid "Make a request" msgstr "Új igénylés" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "{{law_used_short}} igénylés létrehozása a(z) '{{public_body_name}}' részére " @@ -1504,9 +1609,15 @@ msgstr "Még nincs." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Az adatigénylő nem kap értesítést a hozzászólásról, mert az igénylést maga a(z) {{public_body_name}} hozta nyilvánosságra." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Kérjük, ellenőrizze postafiókját! " @@ -1564,12 +1675,18 @@ msgstr "Csak az adatgazda válaszolhat erre az igénylésre. Sajnos nem tudjuk b msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Csak az adatgazda válaszolhat erre az igénylésre, de nem található \"Feladó\", amely alapján ellenőrizni lehetne a címet " +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ide kattintva rákereshet a szükséges információra az adatgazda weboldalán." msgid "Original request sent" msgstr "Eredeti igénylés elküldve " +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Egyéb: " @@ -1714,6 +1831,9 @@ msgstr "Adjon meg érvényes e-mail címet " msgid "Please enter the message you want to send" msgstr "Írja be az elküldeni kívánt üzenetet " +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Kérjük ugyanazt a jelszót adja meg mindkét beviteli mezőben " @@ -1775,6 +1895,9 @@ msgstr "Jelentkezzen be mint " msgid "Please sign in or make a new account." msgstr "Jelentkezzen be vagy hozzon létre új fiókot." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Írja be üzenetét és/vagy válassza ki a válaszát tartalmazó fájlt. " @@ -1841,6 +1964,12 @@ msgstr "Nyomon követés előnézetének megtekintése" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "'{{info_request_title}}' tárgyú igénylésre vonatkozó hozzászólás előnézetének megtekintése" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Hozzászólása előnézetének megtekintése " @@ -1895,6 +2024,9 @@ msgstr "" msgid "Public body" msgstr "Adatgazda" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1904,6 +2036,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -2020,6 +2173,9 @@ msgstr "Igénylés jelentése" msgid "Reported for administrator attention." msgstr "Bejelentve az adminisztrátornak." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Belső felülvizsgálat kérése" @@ -2029,6 +2185,9 @@ msgstr "Belső felülvizsgálat kérése {{person_or_body}}-tól/-től " msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Igénylés el lett távolítva " @@ -2062,6 +2221,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Válasz küldése e-mailben " @@ -2113,6 +2275,9 @@ msgstr "Keresés közérdekű adatok igénylései, adatgazdák és felhasználó msgid "Search contributions by this person" msgstr "Keresés a felhasználó igényléseiben, hozzászólásaiban" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Szavak keresése a következőben: " @@ -2148,6 +2313,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Válassza ki a keresett adatgazdát az alábbi listából!" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Válassza ki azt az adatgazdát, amelynek írni szeretne " @@ -2175,6 +2343,11 @@ msgstr "Üzenet küldése a következőnek: " msgid "Send request" msgstr "Igénylés küldése " +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Profilkép beállítása " @@ -2196,6 +2369,9 @@ msgstr "<p>A találatok szűkítése az alábbiak alapján:</p>" msgid "Sign in" msgstr "Bejelentkezés" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Bejelentkezés vagy új fiók létrehozása " @@ -2250,6 +2426,12 @@ msgstr "Probléma merült fel az oldal feldolgozása közben " msgid "Sorry, we couldn't find that page" msgstr "Nem található az oldal " +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Egyéb megállapítások az adatgazdával kapcsolatban:" @@ -2274,6 +2456,9 @@ msgstr "Tárgy: " msgid "Submit" msgstr "Mehet" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Az igénylés státuszának beállítása " @@ -2339,6 +2524,12 @@ msgstr "" "Köszönjük segítségét - munkájának köszönhetően bárki egyszerűbben találhatja meg a sikeres\n" "válaszokat, ami alapján esetleg rangsor táblázatokat is összeállíthatunk..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Köszönjük. Segítségével mások is hasznos dolgokat találhatnak. Ha\n" @@ -2360,12 +2551,18 @@ msgstr "A <strong>felülvizsgálat lezárult</strong>, és a következő eredmé msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Az információ szabadságáról szóló törvény <strong>nem vonatkozik</strong> a következőre: " +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "A fiókok úgy lettek hagyva, ahogyan voltak. " msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Az adatgazda <strong>nem rendelkezik</strong> az információval <small>(de lehet, hogy megmondják, hogy kihez lehet fordulni) " +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Az adatgazda az információval csak <strong>papíron</strong> rendelkezik. " @@ -2380,6 +2577,9 @@ msgstr "Az adatgazda <strong>postai úton</strong> szeretne válaszolni / válas msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "Az az e-mail, amelyet ön a(z) {{public_body}} adatgazda nevében\n" @@ -2476,6 +2676,9 @@ msgstr "Ezután letöltheti a(z) {{info_request_title}} igénylést zip-fájlban msgid "Then you can log into the administrative interface" msgstr "Ezután bejelentkezhet az adminisztrátori interfészre" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Ezután elvégezheti az igénylés besorolását. " @@ -2536,6 +2739,9 @@ msgstr "A weboldal felhasználói között <strong>több</strong> ilyen nevű sz msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Ennek a korlátozásnak az az oka hogy nem szeretnénk ha nagy mennyiségű inadekvát adatigényléssel árasztaná el az adatgazdákat valaki. Ha úgy érzi hogy nyomós oka van ennél több adatigénylést kezdeményezni rövid időn belül, kérjük, <a href='{{help_contact_path}}'>lépjen kapcsolatba</a> velünk." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Ezt az igénylést {{count}} felhasználó kíséri figyelemmel." @@ -2593,6 +2799,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "A külső igénylés el van rejtve" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ez a közérdekűadat-igénylés egyszerű szöveges változata \"{{request_title}}\". A legutóbbi, teljes változatot itt találja: {{full_url}} " @@ -2774,6 +2983,9 @@ msgstr "Ha tájékoztatni szeretne mindenkit, kattintson a hivatkozásra, majd j msgid "To log into the administrative interface" msgstr "Bejelentkezés az adminisztrátori interfészre" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Ha osztályozni szeretné az igénylést " @@ -2864,9 +3076,6 @@ msgstr "Nem sikerült választ küldeni {{username}} részére " msgid "Unable to send follow up message to {{username}}" msgstr "Nem sikerült nyomon követési üzenetet küldeni {{username}} részére " -msgid "Unexpected search result type" -msgstr "Váratlan keresésieredmény-típus " - msgid "Unexpected search result type " msgstr "Váratlan keresésieredmény-típus " @@ -2876,6 +3085,9 @@ msgstr "" "közérdekű adatigényléshez használt e-mail címét, így ezt nem tudjuk hitelesíteni.\n" "Kérjük, <a href=\"{{url}}\">lépjen velünk kapcsolatba</a>, hogy megoldjuk a problémát. " +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "Sajnos nem ismerjük a következő adatgazda működő {{info_request_law_used_full}}\n" @@ -2890,6 +3102,12 @@ msgstr "Leiratkozás" msgid "Unusual response." msgstr "Szokatlan válasz" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Az adatigénylés státuszának frissítése" @@ -2917,6 +3135,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2926,6 +3147,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2965,6 +3189,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Az adatgazda e-mail címe (amelyre a közérdekűadat-igényléseket elküldjük)" @@ -3086,6 +3313,9 @@ msgstr "Az alábbiak közül mi történik most? " msgid "Who can I request information from?" msgstr "Kitől igényelhetek információt? " +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Az igénylő visszavonta. " @@ -3110,6 +3340,9 @@ msgstr "Igénylését <strong>egyszerűen és pontosan fogalmazza meg</strong>!" msgid "You" msgstr "ön" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Ön már követi az új igényléseket" @@ -3186,6 +3419,9 @@ msgstr "ön tudja, hogy mi okozta a hibát, és tud <strong>megoldást javasolni 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 "<strong>Mellékleteket is csatolhat</strong>. Ha olyan fájlt szeretne csatolni, amely\\n e-mailben történő küldéshez túl nagy, használja az alábbi űrlapot. " +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Előfordulhat, hogy\n" @@ -3263,12 +3499,18 @@ msgstr "" msgid "Your annotations" msgstr "Hozzászólásaim" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Adatait (beleértve az e-mail címét) senkinek nem továbítottuk." msgid "Your e-mail:" msgstr "Az ön e-mail címe: " +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Nyomon követési üzenete nem lett továbbítva, mert az igénylést a levélszemét megakadályozása érdekében leállították. <a href=\"{{url}}\">Lépjen velünk kapcsolatba</a>, ha tényleg szeretne nyomon követési üzenetet küldeni. " @@ -3319,6 +3561,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Igénylésének címe: {{info_request}}. Ha megkapta az információt, és ezt közzéteszi, azzal segít nekünk is, hogy követni tudjuk az eseményeket " @@ -3331,6 +3585,9 @@ msgstr "Közérdekűadat-igénylésre adott válaszát nem lehet továbbítani" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Válasza <strong>megjelenik az interneten</strong>, <a href=\"{{url}}\">olvassa el, miért</a> az egyéb kérdésekre adott válaszokhoz hasonlóan. " +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Az ön gondolatai arra vonatkozóan, hogy a {{site_name}} <strong>adminisztrátorainak</strong> mit kellene tenniük az igényléssel kapcsolatosan. " @@ -3344,6 +3601,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Az ön {{count}} hozzászólása" msgstr[1] "Az ön {{count}} hozzászólása" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "{{site_name}} hírlevél" @@ -3356,6 +3618,9 @@ msgstr "Üdvözlettel: " msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3716,6 +3981,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - közérdekűadat-igénylés {{public_body}} részére" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Fiók felfüggesztve) " @@ -3742,6 +4010,12 @@ msgstr "{{user_name}} adatigénylése felől érdeklődött a(z) {{public_body}} msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} igénylést küldött a(z) {{public_body}} részére " +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} hozzászólt:" diff --git a/locale/id/app.po b/locale/id/app.po index be8301454..7d8ae4a99 100644 --- a/locale/id/app.po +++ b/locale/id/app.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/alaveteli/language/id/)\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -44,6 +44,12 @@ msgstr "- tampilkan dan buat permintaan Freedom of Information" msgid " - wall" msgstr " - wall" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Catatan:</strong>\n" @@ -56,6 +62,12 @@ msgstr " <strong>Catatan privasi:</strong> Alamat email Anda akan diberikan untu msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Merangkum</strong> isi dari informasi apapun yang dikembalikan." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Beritahukan tentang bagaimana <strong>cara terbaik untuk mengklarifikasi</strong> permintaan tersebut." @@ -121,6 +133,15 @@ msgstr "'{{link_to_request}}', sebuah permintaan" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', seseorang" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*Tidak diketahui*" @@ -140,6 +161,9 @@ msgstr "- atau -" msgid "1. Select an authority" msgstr "1. Pilih otoritas" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Minta informasi" @@ -229,6 +253,9 @@ msgstr "" " <p>Jika Anda menulis tentang permintaan ini (misalnya di forum atau blog) silakan tautkan ke halaman ini, dan tambahkan\n" " anotasi dibawahnya untuk memberitahu semua orang tentang tulisan Anda.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} sedang dalam pemeliharaan. Anda hanya dapat menampilkan permintaan-permintaan yang sudah ada. Anda tidak dapat membuat permintaan baru, menambahkan tindak lanjut atau anotasi, atau mengubah basis data.</p> <p>{{read_only}}</p>" @@ -386,6 +413,12 @@ msgstr "" "Tambahkan anotasi ke permintaan Anda dengan kutipan pilihan, atau\n" " sebuah <strong>ringkasan dari respon tersebut </strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Ditambahkan pada{{date}}" @@ -476,6 +509,15 @@ msgstr "Apakah Anda pemilik dari hak cipta komersial di halaman ini?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Meminta <strong>dokumen atau informasi</strong> spesifik, situs ini tidak cocok untuk pertanyaan umum." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Di bagian bawah halaman ini, tulislah balasan kepada mereka berusaha membujuk mereka untuk memindainya \n" @@ -487,6 +529,12 @@ msgstr "Lampiran (opsional):" msgid "Attachment:" msgstr "Lampiran:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Menunggu klasifikasi." @@ -496,6 +544,9 @@ msgstr "Menunggu kajian internal." msgid "Awaiting response." msgstr "Menunggu respon." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Dimulai dengan" @@ -583,6 +634,9 @@ msgstr "Memeriksa kesalahan jika Anda mengetikkan atau menyalin alamat tersebut. msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Memeriksa jika Anda tidak mencantumkan <strong>informasi pribadi apapun</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Memilih foto profil Anda" @@ -609,6 +663,9 @@ msgstr "Klik tautan di bawah untuk mengirimkan pesan kepada{{public_body}} mengi msgid "Close" msgstr "Tutup" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Komentar" @@ -642,8 +699,8 @@ msgstr "Konfirmasi yang Anda inginkan untuk mengikuti permintaan kepada '{{publi msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Konfirmasi yang Anda inginkan untuk mengikuti permintaan '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Konfirmasi permintaan FOI Anda ke" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Konfirmasi akun Anda pada {{site_name}}" @@ -669,12 +726,21 @@ msgstr "Kontak {{recipient}}" msgid "Contact {{site_name}}" msgstr "Kontak {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Tidak dapat mengidentifikasi permintaan dari alamat email" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Tidak dapat membaca file gambar yang Anda muat. PNG, JPEG, GIF dan berbagai format file umum lainnya yang didukung." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Memotong foto profil Anda" @@ -689,12 +755,18 @@ msgstr "Saat ini<strong>sedang menunggu respon</strong> dari{{public_body_link}} msgid "Date:" msgstr "Tanggal:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Yang terhormat {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Locale default" @@ -728,6 +800,9 @@ msgstr "Pembukaan log" msgid "Disclosure log URL" msgstr "Pembukaan riwayat URL" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Tidak mau mengalamatkan pesan Anda kepada {{person_or_body}}? Anda dapat juga menulis kepada:" @@ -772,6 +847,9 @@ msgstr "Email tidak terlihat seperti alamat yang valid" msgid "Email me future updates to this request" msgstr "Email saya update dari permintaan ini" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Masukkan kata-kata yang ingin Anda cari dipisahkan dengan spasi, contoh <strong>jalur pendakian</strong>" @@ -895,6 +973,9 @@ msgstr "Ikuti otoritas ini" msgid "Follow this link to see the request:" msgstr "Ikuti tautan ini untuk pelihat permintaan:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Ikuti orang ini" @@ -1233,9 +1314,21 @@ msgstr "Permintaan individu" msgid "Info request" msgstr "Info permintaan" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Event info permintaan" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1345,9 +1438,6 @@ msgstr "" msgid "Link to this" msgstr "Tautan kepada ini" -msgid "List all" -msgstr "Daftar keseluruhan" - msgid "List of all authorities (CSV)" msgstr "Daftar dari semua otoritas (CSV)" @@ -1396,6 +1486,15 @@ msgstr "MailServerLog | Line" msgid "MailServerLog|Order" msgstr "MailServerLog | Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Buat permintaan <br/>\n" @@ -1406,9 +1505,15 @@ msgstr "" msgid "Make a request" msgstr "Buat permintaan" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Buat {{law_used_short}} permintaan kepada '{{public_body_name}}'" @@ -1529,9 +1634,15 @@ msgstr "Tidak ada yang dibuat." msgid "Not a valid FOI request" msgstr "Permintaan FOI tidak valid" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Catat bahwa peminta informasi tidak akan mendapat pemberitahuan tentang notasi Anda, karena permintaan ditampilkan oleh {{public_body_name}} atas nama mereka." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sekarang periksa email Anda!" @@ -1589,12 +1700,18 @@ msgstr "Hanya otoritas yang dapat menjawab permintaan ini, dan saya tidak mengen msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Hanya otoritas yang dapat menjawab permintaan ini, tapi tidak ada alamat \"Dari\" untuk diperiksa" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Atau cari di website mereka untuk informasi ini." msgid "Original request sent" msgstr "Permintaan asli sudah dikirim" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Yang lain:" @@ -1737,6 +1854,9 @@ msgstr "Mohon masukkan alamat email yang valid" msgid "Please enter the message you want to send" msgstr "Silakan masukkan pesan yang ingin Anda kirimkan" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Mohon masukkan kode sandi yang sama dua kali" @@ -1798,6 +1918,9 @@ msgstr "Silakan masuk sebagai" msgid "Please sign in or make a new account." msgstr "Silakan masuk atau membuat akun baru" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Slakan ketik pesan dan/atau pilih file yang berisi respon Anda." @@ -1864,6 +1987,12 @@ msgstr "Tampilkan tindak lanjut kepada '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Melihat dulu anotasi baru pada '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Melihat dulu Anotasi Anda" @@ -1918,6 +2047,9 @@ msgstr "" msgid "Public body" msgstr "Badan publik" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Catatan publik" @@ -1927,6 +2059,27 @@ msgstr "Halaman publik" msgid "Public page not available" msgstr "Halaman publik tidak ada" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody | Api key" @@ -2043,6 +2196,9 @@ msgstr "Laporkan permintaan ini" msgid "Reported for administrator attention." msgstr "Dilaporkan untuk perhatian administrator." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Minta kajian internal" @@ -2052,6 +2208,9 @@ msgstr "Minta kajian internal dari {{person_or_body}}" msgid "Request email" msgstr "Email permintaan" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Permintaan telah dihapus" @@ -2085,6 +2244,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Merespon lewat email" @@ -2136,6 +2298,9 @@ msgstr "Cari permintaan Freedom of Information, otoritas publik dan pengguna" msgid "Search contributions by this person" msgstr "Cari kontribusi oleh orang ini" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Cari kata dalam:" @@ -2170,6 +2335,9 @@ msgstr "Lihan pesan kembali" msgid "Select one to see more information about the authority." msgstr "Pilih satu untuk melihat lebih banyak informasi tentang otoritas terkait." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Pilih otoritas untuk menulis kepadanya" @@ -2197,6 +2365,10 @@ msgstr "Kirim pesan kepada" msgid "Send request" msgstr "Kirim permintaan" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" + msgid "Set your profile photo" msgstr "Mengatur foto profil Anda" @@ -2218,6 +2390,9 @@ msgstr "Menunjukkan" msgid "Sign in" msgstr "Masuk" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Masuk atau buat akun baru" @@ -2272,6 +2447,12 @@ msgstr "Maaf, ada masalah dalam memproses halaman ini" msgid "Sorry, we couldn't find that page" msgstr "Maaf, kami tidak dapat menemukan halaman tersebut" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Catatan khusus untuk otoritas ini!" @@ -2296,6 +2477,9 @@ msgstr "Subyek:" msgid "Submit" msgstr "Masukkan" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Kirim status" @@ -2361,6 +2545,12 @@ msgstr "" "Terima kasih sudah membantu - karya Anda akan mempermudah semua orang untuk mendapatkan \n" "respon yang berhasil, dan mungkin bahkan mengiznkan kami membuat tabel liga..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Terima kasih banyak – ini akan membantu yang lain untuk menemukan hal-hal yang berguna. Kami \n" @@ -2382,12 +2572,18 @@ msgstr "Kajian <strong> sudah selesai</strong> dan keseluruhan:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Undang-undang Freedom of Information <strong>tidak berlaku</strong> kepada" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Akun-akun yang ditinggalkan sebagaimana mereka sebelumnya." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Otoritas<strong>tidak memiliki</strong> informasi tersebut <small>(mungkin mereka mengatakan siapa yang memilikinya)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Otoritas hanya memiliki <strong>salinan kertas</strong> dari informasi tersebut." @@ -2402,6 +2598,9 @@ msgstr "Otoritas hendak /sudah <strong>merespon lewat pos</strong> terhadap perm msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" "Email yang Anda, atas nama {{public_body}}, dikirimkan kepada\n" @@ -2498,6 +2697,9 @@ msgstr "Maka Anda dapat mengunduh file zip dari {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Kemudian Anda dapat masuk ke tampilan administrasi" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Maka Anda dapat memainkan permainan kategorisasi permintaan." @@ -2558,6 +2760,9 @@ msgstr "Ada <strong>lebih dari satu orang</strong> yang menggunakan situs ini da msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Ada batas jumlah permintaan yang dapat Anda buat dalam sehari, karena kami tidak mau otoritas publik dibombardir dengan sejumlah besar permintaan yang tidak sesuai. Jika Anda merasa Anda memiliki alasan yang bagus untuk meminta batasan ini dicabut dalam kasus Anda, silakan <a href='{{help_contact_path}}'>berhubungan</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Ada {{count}} orang mengikuti permintaan ini" @@ -2614,6 +2819,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Permintaan luar ini telah disembunyikan" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ini merupakan versi teks biasa dari permintaan Freedom of Information \"{{request_title}}\". Yang terbaru, versi lengkap tersedia online di {{full_url}}" @@ -2793,6 +3001,9 @@ msgstr "Agar semua orang tahu, ikuti tautanini dan kemudian pilih kotak yang ses msgid "To log into the administrative interface" msgstr "Untuk masuk ke tampilan administrasi" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Untuk memainkan permainan kategorisasi permintaan" @@ -2883,9 +3094,6 @@ msgstr "Tidak dapat mengirimkan balasan kepada {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Tidak dapat mengirimkan pesan tindak lanjut kepada {{username}}" -msgid "Unexpected search result type" -msgstr "Jenis hasil pencarian yang tidak terduga" - msgid "Unexpected search result type " msgstr "Jenis hasil pencarian yang tidak terduga " @@ -2895,6 +3103,9 @@ msgstr "" "alamat email untuk otoritas tersebut, sehingga kami tidak dapat memvalidasi ini.\n" "Silakan <a href=\"{{url}}\">hubungi kami</a> untuk mengatasinya." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "Sayangnya, kami tidak memiliki alamat {{info_request_law_used_full}}\n" @@ -2909,6 +3120,12 @@ msgstr "Berhenti langganan" msgid "Unusual response." msgstr "Respon yang tidak biasa." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Memperbarui status untuk permintaan ini" @@ -2936,6 +3153,9 @@ msgstr "Pengguna - {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2945,6 +3165,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2984,6 +3207,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "Versi {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Tampilkan alamat email FOI" @@ -3107,6 +3333,9 @@ msgstr "Yang mana di antara hal-hal ini yang terjadi?" msgid "Who can I request information from?" msgstr "Dari siapa saya dapat meminta informasi?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Ditarik oleh pemohon." @@ -3131,6 +3360,9 @@ msgstr "Tulis permintaan Anda dalam <strong>bahasa yang sederhana, tepat</strong msgid "You" msgstr "Anda" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Anda telah mengikuti permintaan baru" @@ -3207,6 +3439,9 @@ msgstr "Anda tahu apa yang menyebabkan kesalahan tersebut, dan dapat <strong>men 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 "Anda dapat <strong>mengikutsertakan lampiran</strong>. Jika Anda hendak melampirkan sebuah\\n file yang terlalu besar untuk email, gunakan formulir di bawah." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Anda mungkin dapat menemukan\n" @@ -3286,12 +3521,18 @@ msgstr "" msgid "Your annotations" msgstr "anotasi Anda" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Rincian Anda, termasuk alamat email Anda, tidak akan diberikan ke siapapun." msgid "Your e-mail:" msgstr "Email Anda:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Tindak lanjut Anda belum dikirimkan karena permintaan ini telah dihentikan untuk mencegah spam. Silakan <a href=\"{{url}}\">hubungi kami</a> jika Anda benar-benar ingin mengirimkan pesan tindak lanjut." @@ -3342,6 +3583,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Permintaan Anda disebut {{info_request}}. Memberitahukan semua orang apakah Anda memperoleh informasi tersebut akan membantu kami mengawasi" @@ -3354,6 +3607,9 @@ msgstr "Respon Anda ke permintaan FOI tidak terkirim" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Respon Anda akan <strong>tampil di Internet</strong>, <a href=\"{{url}}\">baca mengapa</a> dan jawaban-jawaban atas pertanyaan-pertanyaan lain." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Pendapat Anda tentang apa yang{{site_name}} <strong>administrator</strong> harus lakukan tentang permintaan ini." @@ -3365,6 +3621,10 @@ msgid "Your {{count}} annotation" msgid_plural "Your {{count}} annotations" msgstr[0] "Anotasi {{count}} Anda" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" + msgid "Your {{site_name}} email alert" msgstr "tanda notifikasi email {{site_name}} Anda" @@ -3377,6 +3637,9 @@ msgstr "Hormat saya," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} email]" @@ -3735,6 +3998,9 @@ msgstr "{{thing_changed}} telah diubah dari <code>{{from_value}}</code> ke <code msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - sebuah permintaan Keterbukaan Informasi kepada {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Akun ditangguhkan)" @@ -3761,6 +4027,12 @@ msgstr "{{user_name}} mengirimkan pesan tindak lanjut kepada {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} mengirimkan permintaan kepada {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} meninggalkan anotasi:" diff --git a/locale/it/app.po b/locale/it/app.po index 4c9d1a684..fd70bcd36 100644 --- a/locale/it/app.po +++ b/locale/it/app.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/alaveteli/language/it/)\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -37,6 +37,12 @@ msgstr " - vedi e crea richieste " msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Nota:</strong>\\n Ti invieremo una email. Segui le istruzioni contenute nella email per cambiare\\n la tua password." @@ -46,6 +52,12 @@ msgstr " <strong>Nota Privacy:</strong> Il tuo indirizzo di email sarà dato a" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Sommarizza</strong> il contenuto di ogni informazione di risposta. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Consiglia come <strong>chiarire meglio</strong> la richiesta." @@ -106,6 +118,15 @@ msgstr "'{{link_to_request}}', una richiesta" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', una persona" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -118,6 +139,9 @@ msgstr "- o -" msgid "1. Select an authority" msgstr "1. Seleziona una autorità" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Chiedi una informazione" @@ -184,6 +208,9 @@ msgstr "<p>La tua richiesta contiene un <strong>CAP</strong>. Sebbene esso sia c msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} è attualmente in manutenzione. Possono essere viste solo le richieste esistenti ma non possono esserne inserite di nuove, nè aggiunti followups o annotazioni, che vadano a modificare il database.</p> <p>{{read_only}}</p>" @@ -316,6 +343,12 @@ msgstr "Aggiungi una annotazione" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Aggiunto il {{date}}" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Devi chiedere <strong>specifici</strong> documenti o informazioni, non fare richieste generiche." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "Allegato (opzionale):" msgid "Attachment:" msgstr "Allegato:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "In attesa di classificazione." @@ -420,6 +468,9 @@ msgstr "In attesa di approvazione interna." msgid "Awaiting response." msgstr "In attesa di risposta." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "che iniziano con " @@ -507,6 +558,9 @@ msgstr "Verifica gli errori se hai digitato o copiato l'indirizzo." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Verifica di non aver incluso nessuna <strong>informazione personale</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Scegli una foto" @@ -531,6 +585,9 @@ msgstr "Clicca sul link qui sotto per inviare un messaggio all'autorità pubblic msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -564,8 +621,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Conferma la tua richiesta a" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Conferma il tuo account su {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Contatta {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Potresti non identificare la richiesta dall'indirizzo email" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Il formato del file uploadato non è stato riconosciuto. Sono supportati i formati PNG, JPEG, GIF ed altri comuni formati." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Ritaglia la foto" @@ -609,12 +675,18 @@ msgstr "Attualmente stiamo <strong>attendendo una risposta</strong> da {{public_ msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Salve {{name}}," msgid "Dear {{public_body_name}}," msgstr "Salve {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Non vuoi inviare il tuo messaggio a {{person_or_body}}? Puoi anche scrivere a:" @@ -690,6 +765,9 @@ msgstr "L'indirizzo email inserito non ha un formato valido" msgid "Email me future updates to this request" msgstr "Inviami per email futuri aggiornamenti su questa richiesta" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Inserisci le parole che vuoi cercare separate da spazi, per es. <strong>via nazionale</strong>" @@ -804,6 +882,9 @@ msgstr "Segui questa autorità" msgid "Follow this link to see the request:" msgstr "Vai a questo link per vedere la richiesta:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1106,9 +1187,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1211,9 +1304,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Lista di tutte le autorità (CSV)" @@ -1262,15 +1352,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "Inserisci richiesta" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Fai una richiesta a questa autorità" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Scrivi una richiesta di informazioni {{law_used_short}} a '{{public_body_name}}'" @@ -1391,9 +1496,15 @@ msgstr "Nessuna." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Ora guarda la tua email!" @@ -1451,12 +1562,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1592,6 +1709,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1649,6 +1769,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "Accedi o registrati al sito" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1715,6 +1838,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1769,6 +1898,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1778,6 +1910,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1892,6 +2045,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1901,6 +2057,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1934,6 +2093,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Rispondi via email" @@ -1985,6 +2147,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2017,6 +2182,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Seleziona una autorità pubblica a cui scrivere" @@ -2044,6 +2212,11 @@ msgstr "Invia messaggio a " msgid "Send request" msgstr "Invia richiesta" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Imposta la foto del tuo profilo" @@ -2065,6 +2238,9 @@ msgstr "Mostra" msgid "Sign in" msgstr "Accesso" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Accedi o registrati" @@ -2113,6 +2289,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2137,6 +2319,9 @@ msgstr "Oggetto:" msgid "Submit" msgstr "Invia" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2200,6 +2385,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2215,12 +2406,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2233,6 +2430,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2317,6 +2517,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2377,6 +2580,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2430,6 +2636,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2593,6 +2802,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2683,15 +2895,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2704,6 +2916,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2731,6 +2949,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2740,6 +2961,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2779,6 +3003,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2884,6 +3111,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2908,6 +3138,9 @@ msgstr "Devi scrivere la tua richiesta in un <strong>linguaggio semplice e preci msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2977,6 +3210,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3040,12 +3276,18 @@ msgstr "Il tuo <strong>nome sarà reso pubblico</strong>\\n (<a href=\"{{ msgid "Your annotations" msgstr "Le tue annotazioni" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "Email:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3094,6 +3336,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3106,6 +3360,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3119,6 +3376,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3131,6 +3393,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3480,6 +3745,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3504,6 +3772,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/mk_MK/app.po b/locale/mk_MK/app.po index d6fc877d6..b4dfaa5dd 100644 --- a/locale/mk_MK/app.po +++ b/locale/mk_MK/app.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-12-08 21:16+0000\n" -"Last-Translator: slobodenpristap\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Macedonian (Macedonia) (http://www.transifex.com/projects/p/alaveteli/language/mk_MK/)\n" "Language: mk_MK\n" "MIME-Version: 1.0\n" @@ -35,6 +35,12 @@ msgstr " - погледнете и креирајте барање за слоб msgid " - wall" msgstr " - ѕид" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Забелешка:</strong>\\n Ќе ви испратиме е-пошта. Следете ги инструкциите од пораката за да ја промените\\n вашата лозинка." @@ -44,6 +50,12 @@ msgstr " <strong>Забелешка за приватност:</strong> Ваша msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Резимирајте</strong> ја содржината од вратената информација. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Препорачајте како <strong>најдобро да се објасни</strong> барањето." @@ -104,6 +116,15 @@ msgstr "'{{link_to_request}}', барање" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', личност" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*непознат*" @@ -116,6 +137,9 @@ msgstr "- или -" msgid "1. Select an authority" msgstr "1. Изберете имател на информација" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Побарајте информација" @@ -182,6 +206,9 @@ msgstr "<p>Вашето барање содржи <strong>поштенски б msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Вашето {{law_used_full}} барање е <strong>испратено</strong>!</p>\\n <p><strong>Ќе ви испратиме е-пошта</strong> кога ќе има одговор или после {{late_number_of_days}} работни дена доколку имателот се уште нема\\n одговорено до тогаш.</p>\\n <p>Ако пишувате за ова барање (на пример на форум или блог) ве молам направете врска со оваа страница и додадете\\n белешка подолу каде што ќе кажете на корисниците за што пишувате. </p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} во моментов се ажурира. Можете да ги прегледате само постоечките барања. Не може да креирате нови барања, да реплицирате или да додавате белешки или на било кој начин да ја менувате базата на податоци.</p> <p>{{read_only}}</p>" @@ -314,6 +341,12 @@ msgstr "Додадете белешка" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Додадете белешка на вашето барање со избрани цитати, или\\n <strong>резиме на одговорот</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Додадено на {{date}}" @@ -398,6 +431,15 @@ msgstr "Дали сте сопственик на било кои комерци msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Побарајте <strong>специфични</strong> документи или информации, оваа страна не е соодветна за општи побарувања." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "На дното од оваа страница, напишете одговор до нив со што ќе се обидете да ги убедите да го скенираат со\\n (<a href=\"{{url}}\">повеќе детали</a>)." @@ -407,6 +449,12 @@ msgstr "Прилог (необврзувачко):" msgid "Attachment:" msgstr "Прилог:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Се чека класифицирање." @@ -416,6 +464,9 @@ msgstr "Се чека внатрешна ревизија." msgid "Awaiting response." msgstr "Се чека одговор." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Започнувајќи со" @@ -503,6 +554,9 @@ msgstr "Проверете за грешки доколку ја впишавт msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Проверете дали вклучивте <strong>лични информации</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Изберете фотографија за профил" @@ -527,6 +581,9 @@ msgstr "Кликнете на линкот подолу за да испрати msgid "Close" msgstr "Затворете" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Коментирајте" @@ -560,8 +617,8 @@ msgstr "Потврдете дека сакате да ги следите бар msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Потврдете дека сакате да го следите барањето '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Потврдете го вашето барање за слободен пристап до " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Потврдете го вашиот профил на {{site_name}}" @@ -587,12 +644,21 @@ msgstr "Контакт {{recipient}}" msgid "Contact {{site_name}}" msgstr "Контакт {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Не може да се идентификува барањето од адресата за е-пошта" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Форматот на фотографијата е непознат. Поддржани се PNG, JPEG, GIF и многу други чести формати за фотографија." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Исечете ја вашата фотографија за профил" @@ -605,12 +671,18 @@ msgstr "Во моментов <strong>се чека на одговор</strong> msgid "Date:" msgstr "Дата:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Драг {{name}},\\n\\nВрз основа на член 4 и член 12 од Законот за слободен пристап до информации од јавен карактер (“Службен весник на Република Македонија бр. 13/ 1.2.2006 год.), ја барам следната информација од јавен карактер:" msgid "Dear {{public_body_name}}," msgstr "Драг {{public_body_name}},\\n\\nВрз основа на член 4 и член 12 од Законот за слободен пристап до информации од јавен карактер (“Службен весник на Република Македонија бр. 13/ 1.2.2006 год.), ја барам следната информација од јавен карактер:" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Зададено место" @@ -644,6 +716,9 @@ msgstr "Дневник на објави" msgid "Disclosure log URL" msgstr "URL на дневник на објави" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Не сакате да ја упатите вашата порака до {{person_or_body}}? Можете да пишете и до:" @@ -686,6 +761,9 @@ msgstr "Адресата за е-пошта не е валидна" msgid "Email me future updates to this request" msgstr "Сакам да добивам е-пошта со новости за ова барање" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Внесете зборови кои сакате да ги најдете, одвоени со празно место, на пр. <strong>искачување јаже</strong>" @@ -800,6 +878,9 @@ msgstr "Следете го овој надлежен орган" msgid "Follow this link to see the request:" msgstr "Следете ја оваа врска за да го видите барањето:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Следете ја оваа личност" @@ -1102,9 +1183,21 @@ msgstr "Индивидуално барање" msgid "Info request" msgstr "Инфо барање" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Настан за инфо барање" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1207,9 +1300,6 @@ msgstr "Известете не што правевте кога оваа пор msgid "Link to this" msgstr "Врска до ова" -msgid "List all" -msgstr "Излистај ги сите" - msgid "List of all authorities (CSV)" msgstr "Листа од сите иматели (CSV)" @@ -1258,15 +1348,30 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Направи ново<br/>\\n <strong>Барање за Слободен <span>пристап до</span><br/>\\n информации</strong>" msgid "Make a request" msgstr "Поднесете барање" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Поднесете барање до овој имател" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Поднесете {{law_used_short}} барање до '{{public_body_name}}'" @@ -1387,9 +1492,15 @@ msgstr "Ништо не е направено." msgid "Not a valid FOI request" msgstr "Не е валидно барање за слободен пристап" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Имајте на ум дека барателот нема да биде известен за вашата белешка, бидејќи барањето беше објавено од име на {{public_body_name}}." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Проверете ја вашата е-пошта!" @@ -1447,12 +1558,18 @@ msgstr "Само имателот може да одговори на ова б msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Само имателот може да одговори на ова барање, ама нема \"From\" адреса со која треба да се провери" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Или пребарајте ја нивната веб-страна за овие информации." msgid "Original request sent" msgstr "Оригиналното барање е испратено" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Друго:" @@ -1588,6 +1705,9 @@ msgstr "Ве молиме внесете валидна адреса за е-п msgid "Please enter the message you want to send" msgstr "Ве молиме внесете ја пораката која сакате да ја испратите" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Ве молиме внесете ја истата лозинка два пати" @@ -1645,6 +1765,9 @@ msgstr "Ве молиме најавете се како " msgid "Please sign in or make a new account." msgstr "Ве молиме најавете се или креирајте нова лозинка." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Ве молиме напишете порака и/или изберете датотека која го содржи вашиот одговор." @@ -1711,6 +1834,12 @@ msgstr "Прегледајте реакција до '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Прегледајте нови белешки од '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Прегледајте ги своите белешки" @@ -1765,6 +1894,9 @@ msgstr "Јавни институции со најмногу успешни б msgid "Public body" msgstr "Јавна институција" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Јавни белешки" @@ -1774,6 +1906,27 @@ msgstr "Јавна страна" msgid "Public page not available" msgstr "Јавната страна не е достапна" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api клуч" @@ -1888,6 +2041,9 @@ msgstr "Пријавете го ова барање" msgid "Reported for administrator attention." msgstr "Пријавете кај администратор." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Побарајте внатрешна ревизија" @@ -1897,6 +2053,9 @@ msgstr "Побарајте внатрешна ревизија од {{person_or_ msgid "Request email" msgstr "Побарајте е-пошта" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Барањето е отстрането" @@ -1930,6 +2089,9 @@ msgstr "Барања слични на '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Барања слични на '{{request_title}}' (страна {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Одговорете по е-пошта" @@ -1981,6 +2143,9 @@ msgstr "Пребарајте барања за слободен пристап msgid "Search contributions by this person" msgstr "Пребарајте придонеси од оваа личност" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Пребарајте зборови во:" @@ -2013,6 +2178,9 @@ msgstr "Видете ја одбиената порака" msgid "Select one to see more information about the authority." msgstr "Изберете имател за да видите повеќе информации." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Изберете имател до кој ќе пишете" @@ -2040,6 +2208,11 @@ msgstr "Испратете порака до" msgid "Send request" msgstr "Испратете барање" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Поставете фотографија за профилот" @@ -2061,6 +2234,9 @@ msgstr "Прикажани се" msgid "Sign in" msgstr "Најавете се" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Најавете се или креирајте нов профил" @@ -2109,6 +2285,12 @@ msgstr "Се извинуваме, настана проблем при проц msgid "Sorry, we couldn't find that page" msgstr "Се извинуваме, не можевме да ја најдеме таа страница" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Специјална белешка за овој имател!" @@ -2133,6 +2315,9 @@ msgstr "Наслов:" msgid "Submit" msgstr "Испратете" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Испратете статус" @@ -2196,6 +2381,12 @@ msgstr "Ви благодариме! Ќе погледнеме што се сл msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Благодариме за помошта - вашиот придонес ќе помогне сите да може лесно да најдат успешни\\nодговори." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Многу ви благодариме - ова ќе помогне другите да најдат корисни работи. Ние исто така\\n ќе ви дадеме совет, доколку ви треба, што да напрвите следно со вашите\\n барања." @@ -2211,12 +2402,18 @@ msgstr "<strong>Ревизијата заврши</strong> и севкупно:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Законот за слободен пристап до информации <strong>не важи</strong> на" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Сметките се оставени во првобитната состојба." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Имателот ги<strong>нема</strong> информациите <small>(можеби имаат кажано кој може да ги има)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Имателот поседува само <strong>печатена копија</strong> од информациите." @@ -2229,6 +2426,9 @@ msgstr "Имателот би сакал да/има <strong>одговорен msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "Класификацијата на барањата (на пр. да се каже дали се успешни или не) се направени рачно од страна на корисниците и администраторите на сајтот, што значи дека можно е да постои грешка." +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Е-поштата која вие, во име на {{public_body}}, ја испративте до\\n{{user}} за да одговорите на барањето {{law_used_short}}\\n не беше доставена." @@ -2313,6 +2513,9 @@ msgstr "Тогаш можете да преземете zip датотека о msgid "Then you can log into the administrative interface" msgstr "Тогаш можете да се најавите на интерфејсот за администрирање " +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Тогаш можете да ја играте играта за категоризација на барањата." @@ -2373,6 +2576,9 @@ msgstr "Постои <strong>повеќе од еден корисник</strong msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Постои ограничување за бројот на барања кои може да ги направите во еден ден, бидејќи не сакаме имателите да бидат „бомбардирани“ со голем број на барања. Доколку сметате дека имате јака причина зошто ова ограничување не треба да важи за вас, ве молиме <a href='{{help_contact_path}}'>стапете во контакт</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Постои {{count}} корисник кој го следи ова барање" @@ -2426,6 +2632,9 @@ msgstr "Ова покрива широк спектар од информаци msgid "This external request has been hidden" msgstr "Надворешното барање беше сокриено" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ова е верзија од барањето за слободен пристап до информации \"{{request_title}}\", во која е прикажано само текст. Последната, целосна верзија е достапна онлајн на {{full_url}}" @@ -2589,6 +2798,9 @@ msgstr "За да ги известите сите, следете ја оваа msgid "To log into the administrative interface" msgstr "За да се најавите на администраторскиот интерфејс" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "За да ја играте играта за категоризација на барања" @@ -2679,9 +2891,6 @@ msgstr "Не може да се испрати одговор на {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Не може да се испрати порака за реакција до {{username}}" -msgid "Unexpected search result type" -msgstr "Неочекуван тип на резултат од пребарување" - msgid "Unexpected search result type " msgstr "Неочекуван тип на резултат од пребарување " @@ -2691,6 +2900,9 @@ msgstr "" "за тој имател, така што не можеме да го потврдиме ова.\n" "Ве молиме <a href=\"{{url}}\">контактирајте не</a> за да ја разјасниме ситуацијава." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "За жал, немаме исправна {{info_request_law_used_full}}\n" @@ -2705,6 +2917,12 @@ msgstr "Откажи претплата" msgid "Unusual response." msgstr "Невообичаен одговор." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Ажурирајте го статусот за ова барање" @@ -2732,6 +2950,9 @@ msgstr "Корисник – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Тип на предупредување" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|За мене" @@ -2741,6 +2962,9 @@ msgstr "User|Администраторско ниво" msgid "User|Ban text" msgstr "User|Текст за исклучување" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Е-пошта" @@ -2780,6 +3004,9 @@ msgstr "User|Url име" msgid "Version {{version}}" msgstr "Верзија {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Видете ја адресата за е-пошта за слободен пристап до информации од јавен карактер" @@ -2889,6 +3116,9 @@ msgstr "Што од следново се случува?" msgid "Who can I request information from?" msgstr "Од кого може да побарам информации?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Повлечено од страна на барателот." @@ -2913,6 +3143,9 @@ msgstr "Напишете го вашето барање со <strong>еднос msgid "You" msgstr "Вие" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Веќе ги следите новите барања" @@ -2987,6 +3220,9 @@ msgstr "Знаете што ја предизвика оваа грешка и msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "Можете да <strong>вклучите прилози</strong>. Ако сакате да прикачите\\n датотека која е голема за е-пошта, тогаш користете ја формата подолу." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Можеби ќе можете да најдете\n" @@ -3056,12 +3292,18 @@ msgstr "Вашето <strong>име ќе биде јавно прикажано< msgid "Your annotations" msgstr "Вашите белешки" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Вашите детали, вклучително и вашата адреса за е-пошта, не се дадени никому." msgid "Your e-mail:" msgstr "Вашата е-пошта:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Вашето надоврзување не е испратено бидејќи барањето е стопирано за да се спречи spam. Ве молиме <a href=\"{{url}}\">контактирајте не</a> доколку навистина сакате да се надоврзете." @@ -3112,6 +3354,18 @@ msgstr "Вашето барање '{{request}}' на {{url}} беше прегл msgid "Your request on {{site_name}} hidden" msgstr "Вашето барање на {{site_name}} е сокриено" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Вашето барање беше наречено {{info_request}}. Со ажурирање на податокот за тоа дали сте добиле одговор, ни помагате да подобро го следиме однесувањето" @@ -3124,6 +3378,9 @@ msgstr "Вашиот одговор на барањето не е доставе msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Вашиот одговор ќе се <strong>појави на интернет</strong>, <a href=\"{{url}}\">прочитајте зошто</a> и одговорете на други прашања." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Вашето мислење за што треба {{site_name}} <strong>администраторите</strong> да направат за барањето." @@ -3137,6 +3394,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Вашата {{count}} белешка" msgstr[1] "Вашите {{count}} белешки" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Вашите предупредувања по е-пошта за {{site_name}}" @@ -3149,6 +3411,9 @@ msgstr "Со почит," msgid "Yours," msgstr "Со почит," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} е-пошта]" @@ -3500,6 +3765,9 @@ msgstr "{{thing_changed}} се променети од <code>{{from_value}}</cod msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - барање за слободен пристап до информации од јавен карактер за {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (профилот е блокиран)" @@ -3526,6 +3794,12 @@ msgstr "{{user_name}} испрати реакција до {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} испрати барање до {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} остави белешка:" diff --git a/locale/model_attributes.rb b/locale/model_attributes.rb index fc7bfd7d0..838fcc048 100644 --- a/locale/model_attributes.rb +++ b/locale/model_attributes.rb @@ -54,6 +54,10 @@ _('InfoRequest|Law used') _('InfoRequest|Prominence') _('InfoRequest|Title') _('InfoRequest|Url title') +_('Info request batch') +_('InfoRequestBatch|Body') +_('InfoRequestBatch|Sent at') +_('InfoRequestBatch|Title') _('Info request event') _('InfoRequestEvent|Calculated state') _('InfoRequestEvent|Described state') @@ -103,6 +107,14 @@ _('PublicBody|Request email') _('PublicBody|Short name') _('PublicBody|Url name') _('PublicBody|Version') +_('Public body change request') +_('PublicBodyChangeRequest|Is open') +_('PublicBodyChangeRequest|Notes') +_('PublicBodyChangeRequest|Public body email') +_('PublicBodyChangeRequest|Public body name') +_('PublicBodyChangeRequest|Source url') +_('PublicBodyChangeRequest|User email') +_('PublicBodyChangeRequest|User name') _('Purge request') _('PurgeRequest|Model') _('PurgeRequest|Url') @@ -114,6 +126,7 @@ _('User') _('User|About me') _('User|Admin level') _('User|Ban text') +_('User|Can make batch requests') _('User|Email') _('User|Email bounce message') _('User|Email bounced at') diff --git a/locale/nb_NO/app.po b/locale/nb_NO/app.po index 044add1f1..84626a448 100644 --- a/locale/nb_NO/app.po +++ b/locale/nb_NO/app.po @@ -4,6 +4,7 @@ # # Translators: # andreli <andre@lindhjem.net>, 2013 +# andreli <andre@lindhjem.net>, 2013 # gorm <gormer@gmail.com>, 2013-2014 # gorm <gormer@gmail.com>, 2013 # pere <pere-transifex@hungry.com>, 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2014-01-16 21:28+0000\n" -"Last-Translator: gorm <gormer@gmail.com>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/alaveteli/language/nb_NO/)\n" "Language: nb_NO\n" "MIME-Version: 1.0\n" @@ -40,6 +41,12 @@ msgstr " - se og lag innsynsbegjeringer" msgid " - wall" msgstr " - vegg" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Merk:</strong>\\n Vi kommer til å sende deg en e-post. følg instruksjonene i den for å bytte\\n passordet ditt." @@ -49,6 +56,12 @@ msgstr "<strong>Personvern Obs:</strong>Epost adressen din vil bli gitt til" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "<stong>Oppsummer</strong> innholdet av informasjon som ble returnert." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Råd om hvordan <strong>best klargjøre</strong> forespørselen." @@ -111,6 +124,15 @@ msgstr "'{{link_to_request}}', en henvendelse" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', en person" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*ukjent*" @@ -123,6 +145,9 @@ msgstr "- eller -" msgid "1. Select an authority" msgstr "1. Velg en myndighet" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Spør om dokumentene" @@ -192,6 +217,9 @@ msgstr "" "<p><strong>Vi vil kontakte deg med e-post</strong> når det kommer et svar, eller etter {{late_number_of_days}} arbeidsdager, om myndigheten ikke har svart innen da.</p>\\n\n" "<p>Hvis du skriver om denne forespørselen (for eksempel i et forum eller en blogg), så er det fint om du lenker til denne siden, og legger til en kommentar under som forteller folk om det du har skrevet." +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>Det utføres vedlikehold på {{site_name}}. Du kan bare se på eksisterende forespørsler. Du kan ikke opprette nye, legge til oppfølgingsforespørsler, notater eller endre på data.</p> <p>{{read_only}}</p>" @@ -324,6 +352,12 @@ msgstr "Legg til en merknad" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Lagt til {{date}}" @@ -408,6 +442,15 @@ msgstr "Er du eier av kommersielle åndsverksrettigheter på denne siden?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Spør om <strong>spesifikke</strong> dokumenter, informasjon eller veiledning om noe som angår deg." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -417,6 +460,12 @@ msgstr "Vedlegg (valgfritt):" msgid "Attachment:" msgstr "Vedlegg:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Venter på kategorisering." @@ -426,6 +475,9 @@ msgstr "Vemter på behandling av klage." msgid "Awaiting response." msgstr "Venter på svar." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Begynner med" @@ -513,6 +565,9 @@ msgstr "Sjekk at det ikke er skrivefeil dersom du skrev inn eller kopierte adres msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Sjekk at du ikke har inkludert noe <strong>personlig informasjon</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Velg ditt profil-bilde" @@ -537,6 +592,9 @@ msgstr "Klikk på lenken under for å sende en melding til {{public_body}} og m msgid "Close" msgstr "Lukk" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -570,8 +628,8 @@ msgstr "Bekreft at du ønsker å følge begjæringer til '{{public_body_name}}'" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Bekreft at du ønsker å følge begjæringen '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Bekreft din innsynsforespørsel til" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Bekreft din konto på {{site_name}}" @@ -597,12 +655,21 @@ msgstr "Kontakt " msgid "Contact {{site_name}}" msgstr "Kontakt " +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Kunne ikke finne henvendelsen ut fra epost-adressen" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Klarer ikke å lese inn bilde-filen du lastet opp. Vi støtter PNG, JPEG, GIF og mange andre vanlige bilde-formater." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Beskjær ditt profilbilde" @@ -615,12 +682,18 @@ msgstr "<strong>Venter på svar</strong> fra {{public_body_link}}, de må svare msgid "Date:" msgstr "Dato:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Kjære {{name}}," msgid "Dear {{public_body_name}}," msgstr "Kjære {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -654,6 +727,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Om du vil sette mottaker til en annen person enn {{person_or_body}}, kan du også skrive til:" @@ -696,6 +772,9 @@ msgstr "Epost ser ikke gyldig ut" msgid "Email me future updates to this request" msgstr "Send meg e-post om fremtidige oppdateringer på denne henvendelsen" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Skriv inn ord som du leter etter separert med mellomrom, f.eks. <strong>klatre linje</strong>" @@ -810,6 +889,9 @@ msgstr "Følg myndighet" msgid "Follow this link to see the request:" msgstr "Følg denne lenken for å se forespørselen:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Følg denne personen" @@ -1112,9 +1194,21 @@ msgstr "Enkelte begjæringer" msgid "Info request" msgstr "Informasjonshenvendelse" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1217,9 +1311,6 @@ msgstr "" msgid "Link to this" msgstr "Lenke til denne" -msgid "List all" -msgstr "List alle" - msgid "List of all authorities (CSV)" msgstr "Liste over alle registrerte myndigheter (CSV)" @@ -1268,15 +1359,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Lag en ny<br/>\\n <strong>Forespørsel <span>om</span><br/>\\n innsyn</strong>" msgid "Make a request" msgstr "Lag henvendelse" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Lag en henvendelse til denne myndigheten" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Lag en {{law_used_short}} henvendelse til '{{public_body_name}}'" @@ -1397,9 +1503,15 @@ msgstr "Ingen laget." msgid "Not a valid FOI request" msgstr "Ikke en gyldig innsynsbegjæring" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Merk at personen som står bak begjæringen ikke vil få beskjed om din annotering, fordi begjæringen var publisert av {{public_body_name}} på deres vegne." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sjekk eposten din nå!" @@ -1457,12 +1569,18 @@ msgstr "Kun myndigheten kan svare på denne henvendelsen, og jeg kjenner ikke ig msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Kun myndigheten kan svare på denne henvendelsen, men det er ikke noen \"From\"-adresse å sjekke mot" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Eller søk på nettsiden deres etter denne informasjonen." msgid "Original request sent" msgstr "Opprinnelig henvendelse sendt" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Andre:" @@ -1598,6 +1716,9 @@ msgstr "Skriv inn en gyldig e-post adresse" msgid "Please enter the message you want to send" msgstr "Skriv inn meldingen du ønsker å sende" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Skriv inn det samme passordet to ganger" @@ -1655,6 +1776,9 @@ msgstr "Logg deg inn som " msgid "Please sign in or make a new account." msgstr "Logg inn eller lag en ny konto." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Vennligst skriv inn en beskjed og/eller velg en fil som inneholder ditt svar." @@ -1721,6 +1845,12 @@ msgstr "Forhåndsvis oppfølging til '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Forhåndsvis ny merknad om '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Forhåndsvis din merknad" @@ -1775,6 +1905,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1784,6 +1917,27 @@ msgstr "Offentlig side" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1898,6 +2052,9 @@ msgstr "Rapporter henvendelsen" msgid "Reported for administrator attention." msgstr "Rapportert til admininstrator" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Skriv klage" @@ -1907,6 +2064,9 @@ msgstr "Klag på vedtaket fra {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Forespørsel er blitt fjernet" @@ -1940,6 +2100,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Svar med epost" @@ -1991,6 +2154,9 @@ msgstr "Søk i innsynsbegjæringer, myndigheter og brukere" msgid "Search contributions by this person" msgstr "Søk bidrag fra denne personen" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Søk for ord i:" @@ -2023,6 +2189,9 @@ msgstr "See sprett (bounce) melding" msgid "Select one to see more information about the authority." msgstr "Velg en for å se mer informasjon om myndigheten" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Velg myndighet å skrive til" @@ -2050,6 +2219,11 @@ msgstr "Send melding til " msgid "Send request" msgstr "Send henvendelse" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Velg ditt profil-bilde" @@ -2071,6 +2245,9 @@ msgstr "Viser" msgid "Sign in" msgstr "Logg inn" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Logg inn eller lag en ny konto" @@ -2119,6 +2296,12 @@ msgstr "Beklager, det er et problem med å klargjøre denne siden" msgid "Sorry, we couldn't find that page" msgstr "Bekla,ger vi fant ikke den siden" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Spesiell merknad for denne myndigheten!" @@ -2143,6 +2326,9 @@ msgstr "Tittel:" msgid "Submit" msgstr "Send inn" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Oppdater status" @@ -2206,6 +2392,12 @@ msgstr "Takk! Vi skal sjekke hva som skjedde, og forsøke å fikse set." msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Takk for at du hjelper - det vil gjøre det enklere for alle å finne vellykkede\\nsvar, og kanskje til og med la oss lage en konkurranse ut av det..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2221,12 +2413,18 @@ msgstr "Klagen er ferdigbehandlet og:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Offentlighetsloven <strong>er ikke gjeldende</strong> for" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontoene er etterlatt slik de tidligere var." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Myndigheten <strong>har ikke</strong> denne informasjonen <small>(kanskje de sier hvem som har)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Myndigheten har kun <strong>papireksemplar</strong> av informasjonen." @@ -2239,6 +2437,9 @@ msgstr "Myndigheten ønsker å / har <strong>svart på post</strong> på denne b msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2323,6 +2524,9 @@ msgstr "Deretter kan du laste ned en zip-fil med {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Så kan du logge deg på det admininstrative grensesnittet" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2383,6 +2587,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Det er en grense på antall begjæringer du kan lage på én dag, fordi vi ikke ønsker at offentlige myndigheter skal bli oversvømt med et stort antall upassende henvendelser. Dersom du synes du har en god grunn til at grensen skal økes i ditt tilfelle, vennligst <a href='{{help_contact_path}}'>ta kontakt</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "{{count}} person følger denne henvendelsen" @@ -2436,6 +2643,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Den eksterne begjæringen har blitt skjult" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Det er en tekst-versjon av innsynsbegjæringen \"{{request_title}}\". Den siste, komplette versjonen er tilgjengelig på nett {{full_url}}" @@ -2599,6 +2809,9 @@ msgstr "For å orientere alle, følg denne linken og velg den aktuelle boksen." msgid "To log into the administrative interface" msgstr "For å logge deg på admin grensesnittet" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2689,15 +2902,15 @@ msgstr "Klarte ikke sende svar til {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Klarte ikke sende oppfølgningsmelding til {{username}}" -msgid "Unexpected search result type" -msgstr "Uventet type søke resultat" - msgid "Unexpected search result type " msgstr "Uventet type søke resultat " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2710,6 +2923,12 @@ msgstr "Meld av" msgid "Unusual response." msgstr "Uvanlig svar." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Oppdater status på denne henvendelsen" @@ -2737,6 +2956,9 @@ msgstr "Bruker – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Bruker|Om meg" @@ -2746,6 +2968,9 @@ msgstr "Bruker|Admin nivå" msgid "User|Ban text" msgstr "Bruker|Ban tekst" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Bruker|E-post" @@ -2785,6 +3010,9 @@ msgstr "Bruker|Url navn" msgid "Version {{version}}" msgstr "Versjon {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Vis e-post adresse for innsyn" @@ -2893,6 +3121,9 @@ msgstr "Hva av dette er det som skjer?" msgid "Who can I request information from?" msgstr "Hvem kan jeg be om informasjon fra?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Trukket tilbake av henvenderen" @@ -2917,6 +3148,9 @@ msgstr "Skriv henvendelsen i <strong>enkelt, nøyaktig språk</strong>." msgid "You" msgstr "Du" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Du følger allerede nye henvendelser" @@ -2986,6 +3220,9 @@ msgstr "Du vet hva som forårsaket feilen, og kan <strong>foreslå en løsning</ 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 "Du kan velge å <strong>legge med vedlegg</strong>. Om du vil legge med en\\nfil som er for stor for epost, kan du bruke skjema under." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3049,12 +3286,18 @@ msgstr "<strong>Navnet ditt vil vises offentlig</strong>\\n (<a href=\"{{ msgid "Your annotations" msgstr "Dine merknader" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Din informasjon, inkludert din epostadresse, har ikke blitt gitt til noen." msgid "Your e-mail:" msgstr "Din e-post:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3103,6 +3346,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3115,6 +3370,9 @@ msgstr "Ditt svar til en innsynsbegjæring ble ikke levert" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Svaret ditt vil <strong>publiseres på Internettet<strong>, <a href=\"{{url}}\">les hvorfor</a>, og få svar på andre spørsmål." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Dine tanker rundt hva {{site_name}} <strong>administratorene</strong> burde gjøre med henvendelsen." @@ -3128,6 +3386,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Din {{count}} merknad" msgstr[1] "Dine {{count}} merknader" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3140,6 +3403,9 @@ msgstr "Med vennlig hilsen," msgid "Yours," msgstr "Med vennlig hilsen," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3489,6 +3755,9 @@ msgstr "{{thing_changed}} ble forandret fra <code>{{from_value}}</code> til <cod msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - en innsynsbegjæring etter Offentleglova til {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Konto er stengt)" @@ -3513,6 +3782,12 @@ msgstr "{{user_name}} sendte en oppfølgningsmelding til {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} sendte en innsynshenvendelse til {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} la igjen en merknad:" diff --git a/locale/nl/app.po b/locale/nl/app.po index 976acf088..00e81eafe 100644 --- a/locale/nl/app.po +++ b/locale/nl/app.po @@ -5,13 +5,14 @@ # Translators: # Edwin Bosveld <edwin@inwy.nl>, 2013 # Infwolf <infwolf@gmail.com>, 2014 +# Infwolf <infwolf@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2014-01-16 20:59+0000\n" -"Last-Translator: Infwolf <infwolf@gmail.com>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/alaveteli/language/nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -37,6 +38,12 @@ msgstr "- bekijk en maak Wet openbaarheid van bestuur (Wob) verzoeken" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -46,6 +53,12 @@ msgstr " <strong>Privacy opmerking:</strong> Jouw e-mailadres zal worden gegeven msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Vat</strong> de tekst van elke informatie teruggestuurd <strong>samen</strong>. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Advisier hoe het verzoek <strong>verduidelijkt</strong> kan worden." @@ -106,6 +119,15 @@ msgstr "'{{link_to_request}}', een verzoek" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', een persoon" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -118,6 +140,9 @@ msgstr "- of -" msgid "1. Select an authority" msgstr "1. Selecteer een instantie" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Vraag om informatie" @@ -184,6 +209,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -316,6 +344,12 @@ msgstr "Voeg een aantekening toe" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Toegevoegd op {{date}}" @@ -400,6 +434,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -409,6 +452,12 @@ msgstr "Bijlage (optioneel):" msgid "Attachment:" msgstr "Bijlage:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "In afwachting van classificatie." @@ -418,6 +467,9 @@ msgstr "In afwachting van interne beoordeling." msgid "Awaiting response." msgstr "In afwachting van antwoord,\\." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Te beginnen met" @@ -505,6 +557,9 @@ msgstr "Controleer het adres op fouten." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Kies uw profiel foto" @@ -529,6 +584,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -562,8 +620,8 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " -msgstr "Bevestig uw WOB verzoek aan" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Bevestig uw account op {{site_name}}" @@ -589,12 +647,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Contact {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -607,12 +674,18 @@ msgstr "" msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Geachte {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -646,6 +719,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -688,6 +764,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -802,6 +881,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1104,9 +1186,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1209,9 +1303,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1260,15 +1351,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1389,9 +1495,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1449,12 +1561,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1590,6 +1708,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1647,6 +1768,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1713,6 +1837,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1767,6 +1897,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1776,6 +1909,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1890,6 +2044,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1899,6 +2056,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1932,6 +2092,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1983,6 +2146,9 @@ msgstr "Zoek door Wet Openbaarheid Bestuur verzoeken, overheden en gebruikers" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2015,6 +2181,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2042,6 +2211,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2063,6 +2237,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2111,6 +2288,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2135,6 +2318,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2198,6 +2384,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2213,12 +2405,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "De Wet Openbaarheid Bestuur <strong> is niet van toepassing </ strong> op" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2231,6 +2429,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2315,6 +2516,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2375,6 +2579,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2428,6 +2635,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2591,6 +2801,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2681,15 +2894,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2702,6 +2915,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2729,6 +2948,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2738,6 +2960,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2777,6 +3002,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2882,6 +3110,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2906,6 +3137,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2975,6 +3209,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3038,12 +3275,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3092,6 +3335,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3104,6 +3359,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3117,6 +3375,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3129,6 +3392,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3478,6 +3744,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - een Wet Openbaarheid Bestuur verzoek aan {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3502,6 +3771,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/nn/app.po b/locale/nn/app.po index 5901e6836..d21e6e026 100644 --- a/locale/nn/app.po +++ b/locale/nn/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-12-19 10:17+0000\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" "Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/alaveteli/language/nn/)\n" "Language: nn\n" @@ -35,6 +35,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -44,6 +50,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -104,6 +116,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -116,6 +137,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -182,6 +206,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -314,6 +341,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -398,6 +431,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -407,6 +449,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -416,6 +464,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -503,6 +554,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -527,6 +581,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -560,7 +617,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -587,12 +644,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -605,12 +671,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -644,6 +716,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -686,6 +761,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -800,6 +878,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1183,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1300,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1258,15 +1348,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1492,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1558,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1705,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1765,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1834,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1894,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1906,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2041,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2053,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2089,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2143,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2013,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2040,6 +2208,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2061,6 +2234,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2109,6 +2285,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2133,6 +2315,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2196,6 +2381,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2211,12 +2402,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2229,6 +2426,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2313,6 +2513,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2373,6 +2576,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2426,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2589,6 +2798,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2679,15 +2891,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2700,6 +2912,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2727,6 +2945,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2736,6 +2957,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2775,6 +2999,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2880,6 +3107,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2904,6 +3134,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2973,6 +3206,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3036,12 +3272,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3090,6 +3332,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3102,6 +3356,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3115,6 +3372,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3127,6 +3389,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3476,6 +3741,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3500,6 +3768,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/pl/app.po b/locale/pl/app.po index 8c4bfc90c..1f6f04cc5 100644 --- a/locale/pl/app.po +++ b/locale/pl/app.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/alaveteli/language/pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -37,6 +37,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -46,6 +52,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -106,6 +118,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -118,6 +139,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -184,6 +208,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -316,6 +343,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -400,6 +433,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -409,6 +451,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -418,6 +466,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -505,6 +556,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -529,6 +583,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -562,7 +619,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -589,12 +646,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -607,12 +673,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -646,6 +718,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -688,6 +763,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -802,6 +880,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1105,9 +1186,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1210,9 +1303,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1261,15 +1351,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1390,9 +1495,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sprawdź swoją pocztę!" @@ -1450,12 +1561,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1591,6 +1708,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1648,6 +1768,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1714,6 +1837,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1768,6 +1897,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1777,6 +1909,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1891,6 +2044,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1900,6 +2056,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1933,6 +2092,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1984,6 +2146,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2017,6 +2182,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2044,6 +2212,12 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "" @@ -2065,6 +2239,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2113,6 +2290,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2137,6 +2320,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2200,6 +2386,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2215,12 +2407,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2233,6 +2431,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2317,6 +2518,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2377,6 +2581,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2431,6 +2638,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2596,6 +2806,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2686,15 +2899,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2707,6 +2920,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2734,6 +2953,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2743,6 +2965,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2782,6 +3007,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2887,6 +3115,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2911,6 +3142,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2980,6 +3214,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3043,12 +3280,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3097,6 +3340,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3109,6 +3364,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3124,6 +3382,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3136,6 +3400,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3489,6 +3756,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3513,6 +3783,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/pt_BR/app.po b/locale/pt_BR/app.po index 21e124083..619c617cf 100644 --- a/locale/pt_BR/app.po +++ b/locale/pt_BR/app.po @@ -32,8 +32,8 @@ # patriciacornils <patriciacornils@gmail.com>, 2011 # patriciacornils <patriciacornils@gmail.com>, 2011 # markun <pedro@esfera.mobi>, 2011-2012 -# Rafael Moretti <rafael.moretti@gmail.com>, 2012 -# Rafael Moretti <rafael.moretti@gmail.com>, 2012 +# Rafael H L Moretti <rafael.moretti@gmail.com>, 2012 +# Rafael H L Moretti <rafael.moretti@gmail.com>, 2012 # serramassuda <a.serramassuda@gmail.com>, 2012 # vitorbaptista <vitor@vitorbaptista.com>, 2013 # vitorbaptista <vitor@vitorbaptista.com>, 2013 @@ -42,9 +42,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/alaveteli/language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -70,6 +70,12 @@ msgstr "- veja e envie Pedidos de Acesso à Informação" msgid " - wall" msgstr "- muro" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "<strong>Atenção:</strong> Enviaremos um e-mail para você. Siga as instruções para alterar sua senha." @@ -79,6 +85,12 @@ msgstr "<strong>Nota de privacidade:</strong> Seu endereço de email será forne msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "<strong>Resuma</strong> o conteúdo de qualquer informação recebida." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Recomendações sobre como <strong>tornar mais claro</strong> o pedido." @@ -139,6 +151,15 @@ msgstr "'{{link_to_request}}', um pedido" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', uma pessoa" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -158,6 +179,9 @@ msgstr "- ou -" msgid "1. Select an authority" msgstr "1. Selecione um<br />órgão público" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Solicite uma informação" @@ -230,6 +254,9 @@ msgstr "<p>Seu pedido contém um <strong>endereço físico</strong>. A menos que msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Seu Pedido de Acesso à Informação foi <strong>enviado</strong>!</p>\\n <p><strong>Vamos enviar-lhe um email</strong> quando houver uma resposta, ou depois de {{late_number_of_days}} dias úteis se o órgão público ainda não tiver \\n respondido.</p>\\n <p>Se você escrever sobre este pedido (em um fórum ou blog, por exemplo), por favor, crie um link para esta página e adicione \\n comentários avisando as pessoas sobre seu pedido.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} está em manutenção. Você pode apenas visualizar pedidos de informação existentes. Você não pode criar novos, adicionar acompanhamentos ou comentários, ou ainda fazer mudanças na base de dados.</p> <p>{{read_only}}</p>" @@ -367,6 +394,12 @@ msgstr "Adicionar um comentário" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Adicionar um comentário à sua solicitação com citações à sua escolha, ou com um <strong>resumo da resposta</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Adicionado em {{date}}" @@ -451,6 +484,15 @@ msgstr "Você é o dono dos direitos autorais dessa página?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Solicite apenas documentos ou informações <strong>específicas,</strong>, este site não é adequado para requisições gerais ao governo." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Na parte inferior da página, escrever uma resposta, tentando persuadir o órgão a escanear o documento ( <a href=\"{{url}}\">mais detalhes</a> )." @@ -460,6 +502,12 @@ msgstr "Anexo (opcional):" msgid "Attachment:" msgstr "Anexo:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Aguardando classificação." @@ -469,6 +517,9 @@ msgstr "Aguardando revisão." msgid "Awaiting response." msgstr "Aguardando resposta." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Começar com" @@ -556,6 +607,9 @@ msgstr "Verifique se há erros se você digitou ou copiou o endereço." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Verifique se você não incluiu alguma <strong>informação pessoal.</strong>" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Escolha sua foto do perfil" @@ -580,6 +634,9 @@ msgstr "Clique no link abaixo para lembrar o {{public_body}} desses prazos." msgid "Close" msgstr "Fechar" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Comentário" @@ -613,8 +670,8 @@ msgstr "Confirme que você deseja acompanhar pedidos para '{{public_body_name}}' msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Confirme que você deseja acompanhar o pedido '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Confirme o seu pedido de acesso a informação para" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirme sua conta no {{site_name}}" @@ -640,12 +697,21 @@ msgstr "Contato {{recipient}}" msgid "Contact {{site_name}}" msgstr "Contato {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Não foi possível identificar o pedido a partir do endereço de e-mail" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Não podemos entender o arquivo da imagem que você enviou. PNG, JPEG, GIF e muitos outros formatos comuns de imagem são compatíveis com este site." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Cortar sua imagem do perfil" @@ -658,12 +724,18 @@ msgstr "Atualmente <strong>aguardando uma resposta</strong> de {{public_body_lin msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Prezado(a) {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -697,6 +769,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Você não quer enviar sua mensagem para {{person_or_body}}? Você também pode escrever para:" @@ -739,6 +814,9 @@ msgstr "O e-mail informado não parece um endereço válido" msgid "Email me future updates to this request" msgstr "Envie-me atualizações deste pedido por e-mail" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Informe palavras que você deseja procurar separadas por espaços, por exemplo <strong>gastos educação</strong>" @@ -855,6 +933,9 @@ msgstr "Acompanhar este órgão de govern" msgid "Follow this link to see the request:" msgstr "Clique neste link para ver o pedido:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Seguir esta pessoa" @@ -1163,9 +1244,21 @@ msgstr "Pedidos individuais" msgid "Info request" msgstr "Pedido de informação" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Evento de pedido de acesso" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent | estado Calculado" @@ -1268,9 +1361,6 @@ msgstr "Conte para nós o que você estava fazendo quando apareceu esta mensagem msgid "Link to this" msgstr "Link para cá" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Lista de todos os órgãos públicos (formato CSV)" @@ -1319,6 +1409,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Faça um novo<br/>\n" @@ -1328,9 +1427,15 @@ msgstr "" msgid "Make a request" msgstr "Criar uma solicitação" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Faça um pedido de informação pela {{law_used_short}} para '{{public_body_name}}'" @@ -1451,9 +1556,15 @@ msgstr "Nenhum." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Repare que o requerente não sera notificado sobre suas anotações porque a requisição foi publicada por {{public_body_name}} em outro nome." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Agora, cheque seu email!" @@ -1511,12 +1622,18 @@ msgstr "Apenas a autoridade pública pode responder a esse pedido, e eu não rec msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Apenas a autoridade pública pode responder a esse pedido, mas não há endereço na área \"De\" para confirmação" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ou faça uma busca no site do órgão para obter essa informação." msgid "Original request sent" msgstr "Pedido original enviado" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Outro:" @@ -1652,6 +1769,9 @@ msgstr "Informe um e-mail válido" msgid "Please enter the message you want to send" msgstr "Digite a mensagem que deseja enviar" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Informe sua senha novamente" @@ -1709,6 +1829,9 @@ msgstr "Faça o login como " msgid "Please sign in or make a new account." msgstr "Por favor entre ou crie uma nova conta." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Escreva por favor uma mensagem e/ou selecione um arquivo contendo sua resposta." @@ -1775,6 +1898,12 @@ msgstr "Visualizar acompanhamento \"" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Pré-visualizar nova anotação em '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Visualize seu comentário" @@ -1829,6 +1958,9 @@ msgstr "" msgid "Public body" msgstr "Órgão público" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1838,6 +1970,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1952,6 +2105,9 @@ msgstr "Denunciar este pedido" msgid "Reported for administrator attention." msgstr "Denunciado aos administradores." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Apresentar recurso" @@ -1961,6 +2117,9 @@ msgstr "Enviar um recurso para {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Pedido removido com sucesso" @@ -1994,6 +2153,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Resposta por e-mail" @@ -2045,6 +2207,9 @@ msgstr "Procurar pedidos de acesso à informação, órgãos públicos e usuári msgid "Search contributions by this person" msgstr "Busque contribuições feitas por esta pessoa" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Busca por palavras em:" @@ -2077,6 +2242,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Selecionar para ver mais informações sobre este órgão público." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Selecione o órgão ao qual você quer escrever" @@ -2104,6 +2272,11 @@ msgstr "Enviar mensagem para " msgid "Send request" msgstr "Enviar pedido" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Definir sua foto do perfil" @@ -2125,6 +2298,9 @@ msgstr "Exibindo" msgid "Sign in" msgstr "Entrar" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Entrar ou criar uma nova conta" @@ -2173,6 +2349,12 @@ msgstr "Desculpe, houve um problema de processamento desta página" msgid "Sorry, we couldn't find that page" msgstr "Desculpe, não foi possível encontrar essa página" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Recado especial para esta autoridade!" @@ -2197,6 +2379,9 @@ msgstr "Assunto:" msgid "Submit" msgstr "Enviar" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Enviar situação" @@ -2260,6 +2445,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Obrigado por ajudar, seu trabalho tornará mais fácil para todo mundo achar respostas com sucesso, e talvez até mesmo permitir que nos façamos tabelas classificativas..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Muito obrigado - isto ajudará outros a achar coisas úteis. Se você precisar, nós também recomendaremos sobre o que fazer em seguida com suas requisições." @@ -2277,12 +2468,18 @@ msgstr "A <strong>revisão terminou</strong> e em geral:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "A lei de acesso à informação <strong>não se aplica</strong> a" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "As contas foram deixadas como estavam anteriormente." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "A autoridade <strong>não possui</strong> a informação <small>(talvez tenham dito quem a tenha)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Esse orgão tem apenas uma <strong>cópia impressa</strong> desta informação." @@ -2295,6 +2492,9 @@ msgstr "A autoridade gostaria de responder/respondeu </strong>por correio</stron msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "O email que você, em nome de {{public_body}}, enviou para {{user}} para responder a um Pedido de Informação não foi entregue." @@ -2381,6 +2581,9 @@ msgstr "Você pode baixar um arquivo compactado de {{info_request_title}}" msgid "Then you can log into the administrative interface" msgstr "Então você pode entrar na interface administrativa" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Então você pode jogar o jogo de categorização do pedido." @@ -2441,6 +2644,9 @@ msgstr "Há <strong>mais de uma pessoa</strong> que utiliza este site e possui e msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Há um limite de pedidos de informação que você pode fazer em um dia, porque não queremos que as autoridades públicas sejam bombardeadas por um número grande de pedidos inapropriados. Se você considera ter uma boa razão para seu limite ser ampliado, por favor <a href='{{help_contact_path}}'>nos contate</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Há {{count}} pessoa acompanhando este pedido" @@ -2496,6 +2702,9 @@ msgstr "Este pedido abrange um espectro muito amplo de informações sobre o est msgid "This external request has been hidden" msgstr "Esse pedido externo foi escondido" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Esta é uma versão somente de texto de seu Pedido de Acesso à Informação \"{{request_title}}\". A versão completa mais recente está disponível online em {{full_url}} " @@ -2661,6 +2870,9 @@ msgstr "Para permitir que todos saibam, siga este link e selecione a opção apr msgid "To log into the administrative interface" msgstr "Logar na interface administrativa" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Para jogar o jogo de categorização do pedido" @@ -2751,9 +2963,6 @@ msgstr "Não foi possível enviar uma mensagem para {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Não foi possível mandar uma mensagem de acompanhamento para {{username}}" -msgid "Unexpected search result type" -msgstr "Tipo inesperado de resultado da busca" - msgid "Unexpected search result type " msgstr "Tipo inesperado de resultado da busca " @@ -2762,6 +2971,9 @@ msgstr "" "Infelizmente nós não sabemos o email de contato para esse orgão, então não podemos validar isso.\n" "Por favor <a href=\"{{url}}\">entre em contato</a> para corrigirmos isso." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Infelizmente, nós não temos um email válido de " @@ -2774,6 +2986,12 @@ msgstr "Desinscrever-se" msgid "Unusual response." msgstr "Outra resposta." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Alterar a situação deste pedido" @@ -2801,6 +3019,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert | Tipo de alerta" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Usuário | Sobre mim" @@ -2810,6 +3031,9 @@ msgstr "Usuário | Nível de administrador" msgid "User|Ban text" msgstr "Usuário | Banir texto" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Usuário | E-mail" @@ -2849,6 +3073,9 @@ msgstr "Usuário | Url" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Ver o endereço de email do pedido de informação" @@ -2954,6 +3181,9 @@ msgstr "Qual desses está ocorrendo?" msgid "Who can I request information from?" msgstr "De que órgãos públicos posso solicitar informações?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Removida pelo solicitante." @@ -2978,6 +3208,9 @@ msgstr "Escreva seu pedido de <strong>forma simples</strong>." msgid "You" msgstr "Você" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Você já acompanha novas solicitações" @@ -3050,6 +3283,9 @@ msgstr "Você sabe o que causou o erro e pode <strong>sugerir uma solução</str 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 "Você pode<strong>incluir anexos</strong>. Se preferir adicionar um arquivo \\nmuito grande para emails, use o formulário abaixo." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Talvez você consiga achar um email no site deles ou telefonando e perguntando. Se você conseguir encontrar, por favor <a href=\"{{url}}\">envie para nós</a>." @@ -3118,12 +3354,18 @@ msgstr "" msgid "Your annotations" msgstr "Seus comentários" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Seus dados, incluindo endereço de email (não foram fornecidos a ninguém)" msgid "Your e-mail:" msgstr "Seu e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Sua mensagem não foi enviada por que esse pedido foi interrompido para impedir spam. Por favor <a href=\"{{url}}\">entre em contato</a> se você realmente quer enviar essa mensagem." @@ -3174,6 +3416,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Sua requisição foi nomeada {{info_request}}. Permitir que todos saibam onde você obteve a informação irá nos ajudar a manter as abas" @@ -3186,6 +3440,9 @@ msgstr "Sua resposta a um PAI não foi enviada" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Sua resposta irá <strong>aparecer na Internet</strong>, <a href=\"{{url}}\">leia por que</a> e respostas para outras perguntas." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Sua opnião sobre o que os <strong>administradores</strong> do {{site_name}} deveriam fazer com o pedido." @@ -3199,6 +3456,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "Seu {{count}} comentário" msgstr[1] "Seus {{count}} comentários" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Seu alerta de mensagem do {{site_name}}" @@ -3211,6 +3473,9 @@ msgstr "Grato(a)," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3560,6 +3825,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - um pedido de acesso à informação para {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Conta suspensa)" @@ -3584,6 +3852,12 @@ msgstr "{{user_name}} enviou uma mensagem de acompanhamento para {{public_body}} msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} enviou um pedido para {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} escreveu um comentário:" diff --git a/locale/pt_PT/app.po b/locale/pt_PT/app.po index 0abd50ab6..2e9193811 100644 --- a/locale/pt_PT/app.po +++ b/locale/pt_PT/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: luispaisbernardo <luispaisbernardo@gmail.com>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/alaveteli/language/pt_PT/)\n" "Language: pt_PT\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr "- veja e faça pedidos de acesso à informação" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -48,6 +54,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -108,6 +120,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -120,6 +141,9 @@ msgstr "- ou -" msgid "1. Select an authority" msgstr "1. Seleccione uma entidade" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Peça informação" @@ -186,6 +210,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -318,6 +345,12 @@ msgstr "Adicione uma nota" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "Anexo (opcional)" msgid "Attachment:" msgstr "Anexo" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Classificação pendente" @@ -420,6 +468,9 @@ msgstr "Revisão interna pendente" msgid "Awaiting response." msgstr "Resposta pendente" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -507,6 +558,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -531,6 +585,9 @@ msgstr "" msgid "Close" msgstr "Fechar" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Comentário" @@ -564,7 +621,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -609,12 +675,18 @@ msgstr "" msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -690,6 +765,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -804,6 +882,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1106,9 +1187,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1211,9 +1304,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1262,15 +1352,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1391,9 +1496,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1451,12 +1562,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1592,6 +1709,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1649,6 +1769,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1715,6 +1838,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1769,6 +1898,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1778,6 +1910,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1892,6 +2045,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1901,6 +2057,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1934,6 +2093,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1985,6 +2147,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2017,6 +2182,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2044,6 +2212,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2065,6 +2238,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2113,6 +2289,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2137,6 +2319,9 @@ msgstr "Assunto:" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2200,6 +2385,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2215,12 +2406,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2233,6 +2430,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2317,6 +2517,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2377,6 +2580,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2430,6 +2636,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2593,6 +2802,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2683,15 +2895,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2704,6 +2916,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2731,6 +2949,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2740,6 +2961,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2779,6 +3003,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2884,6 +3111,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2908,6 +3138,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2977,6 +3210,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3040,12 +3276,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "E-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3094,6 +3336,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3106,6 +3360,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3119,6 +3376,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3131,6 +3393,9 @@ msgstr "Com os melhores cumprimentos," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3480,6 +3745,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3504,6 +3772,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/ro_RO/app.po b/locale/ro_RO/app.po index 892058b0e..670e6d9d9 100644 --- a/locale/ro_RO/app.po +++ b/locale/ro_RO/app.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/alaveteli/language/ro_RO/)\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" @@ -49,6 +49,12 @@ msgstr "- vezi cum arată şi trimite o solicitare de acces la informaţii" msgid " - wall" msgstr " - perete" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr " <strong>Notă:</strong>\\n Îți vom trimite un email. Urmează instrucţiunile din acesta pentru a modifica \\n parola ta." @@ -58,6 +64,12 @@ msgstr " <strong>Notă de confidenţialitate:</strong> Adresa ta de email va fi msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Rezumă</strong> conţinutul oricărei informaţii returnate. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Sfătuieşte-ne cum să <strong>facem solicitarea cât mai clară </strong>." @@ -118,6 +130,15 @@ msgstr "'{{link_to_request}}', o solicitare" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', o persoană" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*necunoscut*" @@ -130,6 +151,9 @@ msgstr "- sau -" msgid "1. Select an authority" msgstr "1. Selectează o autoritate" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Solicită o informație" @@ -196,6 +220,9 @@ msgstr "<p>Solicitarea ta conţine un <strong>cod poştal</strong>. Dacă nu e msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Solicitarea ta {{law_used_full}} a fost <strong>transmisă</strong>!</p>\\n <p><strong>Vei primi un email</strong> când există un răspuns sau după {{late_number_of_days}} zile lucrătoare dacă autoritatea \\n încă nu a răspuns până atunci.</p>\\n <p>Dacă scrii despre această solicitare (de exemplu pe un forum sau pe un blog) te rugăm să faci referință către această pagină și adaugă o\\n adnotare mai jos pentru a spune oamenilor despre ce ai scris.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} este momentan în mentenanţă. Poţi vedea numai solicitările deja existente. Nu poţi adăuga solicitări noi, nici comentarii, adnotări sau alte modificări asupra bazei de date.</p> <p>{{read_only}}</p>" @@ -328,6 +355,12 @@ msgstr "Adaugă o adnotare." msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Adaugă o adnotaţie la solicitarea ta cu citatele alese de tine sau \\n un <strong>rezumat al răspunsului</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Adăugat la {{date}}" @@ -412,6 +445,15 @@ msgstr "Ai un drept de Proprietate Intelectuală asupra vreunei mărci de pe pag msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Cere documente sau informaţii <strong>precise</strong>, acest site nu este potrivit pentru solicitări generale." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "În josul acestei pagini, scrie un răspuns către aceștia, prin care să îi convingi să scaneze (<a href=\"{{url}}\">mai multe detalii</a>)." @@ -421,6 +463,12 @@ msgstr "Ataşamente (optional):" msgid "Attachment:" msgstr "Ataşament:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Aşteaptă clasificarea." @@ -430,6 +478,9 @@ msgstr "Aşteaptă revizuirea interna." msgid "Awaiting response." msgstr "Aşteaptă răspunsul." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Începând cu" @@ -517,6 +568,9 @@ msgstr "Verificaţi greşeli, dacă aţi tastat sau aţi copiat adresa." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Verificaţ că nu aţi inclus nici un fel de <strong> informaţii personale</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Alegeti poza de profil" @@ -541,6 +595,9 @@ msgstr "Faceţi click pe link-ul de mai jos pentru a trimite un mesaj către {{p msgid "Close" msgstr "Închide" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Comentariu" @@ -574,8 +631,8 @@ msgstr "Confirmă că dorești să urmărești solicitările către '{{public_b msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Confirmă că dorești să urmărești solicitarea '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Confirmă solicitarea ta de acces la informații" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Confirmă-ți contul pe {{site_name}}" @@ -601,12 +658,21 @@ msgstr "Contactaţi {{recipient}}" msgid "Contact {{site_name}}" msgstr "Contact {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nu se poate identifica cererea de la această adresă de email" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Nu se poate prelua imaginea pe care aţi încarcat-o. PNG, JPEG, GIF și multe alte formate de imagini sunt acceptate." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Decupează poza ta de profil" @@ -619,12 +685,18 @@ msgstr "În acest moment <strong>asteptăm un răspuns</strong> de la {{public_b msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Stimată {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Default locale" @@ -658,6 +730,9 @@ msgstr "Disclosure log" msgid "Disclosure log URL" msgstr "Disclosure log URL" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Nu dorești să adresezi mesajul către {{person_or_body}}? Poți de asemenea să scrii la:" @@ -700,6 +775,9 @@ msgstr "Emailul nu este o adresă valabilă" msgid "Email me future updates to this request" msgstr "Trimiteţi-mi un email cu privire la actualizări ale acestei cereri." +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Introduceţi cuvintele pe care doriti să le găsiţi separate de spaţii, de ex. <strong>pista de urcare</strong>" @@ -814,6 +892,9 @@ msgstr "Urmăriţi această autoritate" msgid "Follow this link to see the request:" msgstr "Urmăriţi acest link pentru a vedea cererea:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Urmăriţi această persoană" @@ -1119,9 +1200,21 @@ msgstr "Cereri individuale" msgid "Info request" msgstr "Cerere info" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Eveniment cerere info" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "EvenimentCerereInfo | Stare calculat" @@ -1224,9 +1317,6 @@ msgstr "Spune-ne ce făceai atunci când ți-a apărut\\nacest mesaj și ce tip msgid "Link to this" msgstr "Link către aceasta" -msgid "List all" -msgstr "Listează tot" - msgid "List of all authorities (CSV)" msgstr "Lista tuturor autorităţilor (CSV)" @@ -1275,15 +1365,30 @@ msgstr "MailServerLog|Line" msgid "MailServerLog|Order" msgstr "MailServerLog|Order" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Faceți o nouă<br/>\\n <strong>solicitare <span>de</span><br/>\\n informații<br/>\\de interes public</strong>" msgid "Make a request" msgstr "Faceţi o cerere" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Faceţi o nouă cerere {{law_used_short}} către '{{public_body_name}}'" @@ -1404,9 +1509,15 @@ msgstr "Nimic făcut." msgid "Not a valid FOI request" msgstr "Nu este o solicitare de informații validă" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Reţine că solicitantul nu va fi notificat cu privire la adnotarea ta deoarece solicitare a fost publicată de către {{public_body_name}} în numele lor." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Verificati-vă email-ul !" @@ -1464,12 +1575,18 @@ msgstr "Numai autoritatea poate să răspundă la această cerere. Nu recunoașt msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Numai autoritatea poate să răspundă la această cerere. Nu există o adresă \"de la\" pentru verificare." +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Sau căutaţi în site-ul lor această informaţie." msgid "Original request sent" msgstr "Cererea originală trimisă" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Altele:" @@ -1605,6 +1722,9 @@ msgstr "Vă rugăm introduceţi o adresă de email validă" msgid "Please enter the message you want to send" msgstr "Vă rugăm introduceţi mesajul pe care vreţi să îl transmiteţi" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Vă rugăm introduceţi aceeaşi parolă de două ori" @@ -1662,6 +1782,9 @@ msgstr "Vă rugăm înscrieţi-vă ca" msgid "Please sign in or make a new account." msgstr "Te rugăm să te autentifici sau să te înregistrezi." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Te rugăm să scrii un mesaj şi/sau să alegi un fişier care conţine răspunsul tău." @@ -1728,6 +1851,12 @@ msgstr "Previzualizaţi urmare la " msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Previzualizaţi noi adnotări la '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Previzualizează adnotarea ta" @@ -1782,6 +1911,9 @@ msgstr "" msgid "Public body" msgstr "Autoritate publică" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Note publice" @@ -1791,6 +1923,27 @@ msgstr "Pagina publică" msgid "Public page not available" msgstr "Pagină publica indisponibilă" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "InstituţiePublică|Api key" @@ -1905,6 +2058,9 @@ msgstr "Raportaţi această cerere" msgid "Reported for administrator attention." msgstr "Raportaţi în atenţia administratorului" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Solicitați o evaluare internă" @@ -1914,6 +2070,9 @@ msgstr "Solicitați o evaluare internă de la {{person_or_body}}" msgid "Request email" msgstr "Cere email" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Cererea a fost ştearsă" @@ -1947,6 +2106,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Răspuns prin email" @@ -1998,6 +2160,9 @@ msgstr "Caută solicitări de acces la informații, autorităţi publice și uti msgid "Search contributions by this person" msgstr "Caută contribuţii de la această persoană" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Caută cuvinte în:" @@ -2031,6 +2196,9 @@ msgstr "Vezi mesajul întors" msgid "Select one to see more information about the authority." msgstr "Selectaţi una pentru a vedea informaţii despre această autoritate" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Selectaţi autoritatea căreia să îi scrieţi" @@ -2058,6 +2226,12 @@ msgstr "Trimite un mesaj către" msgid "Send request" msgstr "Trimite cerere" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Alege poza de profil" @@ -2079,6 +2253,9 @@ msgstr "Afşare" msgid "Sign in" msgstr "Intrare in cont" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Intrare in cont sau creare un cont nou" @@ -2127,6 +2304,12 @@ msgstr "Scuze, este o problemă cu accesarea acestei pagini." msgid "Sorry, we couldn't find that page" msgstr "Scuze, nu am găsit pagina" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "O notă specială pentru această autoritate!" @@ -2151,6 +2334,9 @@ msgstr "Subiect:" msgid "Submit" msgstr "Trimite" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Trimite starea" @@ -2214,6 +2400,12 @@ msgstr "Mulțumim! Vom verifica ce s-a întâmplat și vom încerca să reparăm msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Îți mulțumim pentru ajutor - acțiunile tale vor ușura obținerea unor răspunsuri bune pentru toată lumea" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Mulțumim - asta îi va ajuta și pe alții să găsească informații utile. De \\nasemenea, daca ai nevoie, te putem sfătui cu privire la ce poți face în continuare legat de solicitarea ta." @@ -2229,12 +2421,18 @@ msgstr "<strong>Revizia s-a finalizat</strong> şi per ansamblu:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Legea liberului acces la informaţii <strong>nu se aplică</strong> la" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Contuile au rămas aşa cum erau înainte." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Autoritatea <strong>nu are</strong> informatiile <small>(probabil vor spune cine le are)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Autoritatea are doar <strong>o copie tipărită</strong> a informaţiilor." @@ -2247,6 +2445,9 @@ msgstr "Autoritatea ar <strong>vrea să răspundă / a răspuns prin postarea</ msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Email-ul trimis din partea {{public_body}}, către\\n{{user}} ca răspuns la {{law_used_short}}\\nsolicitare nu a fost transmis." @@ -2331,6 +2532,9 @@ msgstr "Apoi puteţi descărca un fişier zip cu {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Apoi vă puteţi conecta la interfaţa administrativă" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Apoi puteţi să jucaţi jocul de categorisire a cererii." @@ -2391,6 +2595,9 @@ msgstr "Există <strong>mai mult de o persoană</strong> care utilizează acest msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Există o limită a numărului de cereri pe care le puteţi face într-o zi, deoarece nu dorim ca autorităţile publice să fie bombardate cu un mare număr de cereri inadecvate. Dacă consideraţi că aveţi un motiv întemeiat pentru a cere mărirea acestei limite, vă rugăm <a href='{{help_contact_path}}'>contactaţi</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Sunt {{count}} persoane care urmăresc această cerere." @@ -2445,6 +2652,9 @@ msgstr "Aceasta acoperă un spectru foarte larg de informaţii despre stadiul\\n msgid "This external request has been hidden" msgstr "Această cerere externăa fost ascunsă" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Aceasta este o versiune text-simplu a solicitării \"{{request_title}}\". Ultima versiune, completă, este disponibila online la {{full_url}}" @@ -2610,6 +2820,9 @@ msgstr "Pentru a afla orişicine, urmaţi acest link şi selectaţi căsuţa cor msgid "To log into the administrative interface" msgstr "Pentru a vă conecta la interfaţa administrativă" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Pentru a juca jocu categorisirea cererii" @@ -2700,15 +2913,15 @@ msgstr "Nu se poate trimite un răspuns către {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Nu se poate trimite un mesaj de urmărire către {{username}}" -msgid "Unexpected search result type" -msgstr "Tip neaşteptat de rezultat la căutare" - msgid "Unexpected search result type " msgstr "Tip neaşteptat de rezultat la căutare" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Din păcate, nu ştim adresa de email pentru solicitări de acces la informaţii pentru respectiva autoritate, deci nu putem valida această solicitare. \\nTe rugăm <a href=\"{{url}}\">să ne contactezi</a> pentru a vedea cum putem rezolva situaţia." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Din păcate, nu avem o adresă funcţională {{info_request_law_used_full}}\\npentru" @@ -2721,6 +2934,12 @@ msgstr "Dezabonare" msgid "Unusual response." msgstr "Răspuns neobişnuit." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Actualizaţi starea acestei cereri" @@ -2748,6 +2967,9 @@ msgstr "Utilizator– {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Tip Alerta" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Utilizator|Despre mine" @@ -2757,6 +2979,9 @@ msgstr "Utilizator|Nivel administrator" msgid "User|Ban text" msgstr "Utilizator|Text interzis" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Utilizator|Email" @@ -2796,6 +3021,9 @@ msgstr "Utilizator|Nume URL" msgid "Version {{version}}" msgstr "Versiunea {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Vezi adresa de email pentru solicitări" @@ -2901,6 +3129,9 @@ msgstr "Care dintre acestea se întâmplă?" msgid "Who can I request information from?" msgstr "De la cine aş puea cere informaţiile ?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Retras de către solicitant." @@ -2925,6 +3156,9 @@ msgstr "Formulează solicitarea ta într-un <strong>limbaj precis, simplu</stron msgid "You" msgstr "Tu" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Deja urmărești solicitările noi" @@ -2994,6 +3228,9 @@ msgstr "Ştiţi ce a cauzat eroarea şi puteţi <strong>sugera o soluţie</stron 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 "Poți <strong>include atașamente</strong>. Dacă vrei să atașezi un\\n fișier prea mare pentru email, utilizează formularul de mai jos." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "S-ar putea să găsești\\nunul pe website-ul lor sau telefonându-le și întrebând. Dacă reușești\\nsă găsești unul, atunci te rugăm<a href=\"{{url}}\">să ni-l trimiți și nouă</a>." @@ -3057,12 +3294,18 @@ msgstr "Numele tău <strong>va apărea public</strong> \\n (<a href=\"{{why_url} msgid "Your annotations" msgstr "Adnotările tale" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Detaliile tale, inclusv adresa de email, nu au fost oferite nimănui." msgid "Your e-mail:" msgstr "Emailul tău:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Follow up-ul tău nu a fost trimis deoarece acest mesaj a fost stopat de protecţia anti-spam. Te rugăm <a href=\"{{url}}\">să ne contactezi</a> dacă dorești cu adevărat să trimiţi un mesaj de follow up." @@ -3111,6 +3354,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Solicitarea ta a fost numită {{info_request}}. Permiţând tuturor să afle dacă ai obţinut informaţiile, ne ajuţi să menţinem o evidenţă" @@ -3123,6 +3378,9 @@ msgstr "Răspunsul tău la o solicitare de acces la informații nu a fost livrat msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Răspunsul tău <strong>va apărea pe Internet</strong>, <a href=\"{{url}}\">read why</a> şi răspunde la alte întrebări." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Consideraţiile tale cu privire la ceea ce <strong>administratorii</strong> {{site_name}} ar trebui să facă în legătură cu cererea." @@ -3138,6 +3396,12 @@ msgstr[0] "A {{count}} -a adnotare a dvs." msgstr[1] "A {{count}} -a adnotare a dvs." msgstr[2] "A {{count}} -a adnotare a ta" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "Alerta ta prin email de la {{site_name}}" @@ -3150,6 +3414,9 @@ msgstr "Cu stimă," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[FOI #{{request}} email]" @@ -3503,6 +3770,9 @@ msgstr "{{thing_changed}} a fost schimbat din <code>{{from_value}}</code> în <c msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - o solicitare de acces la informații către {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Cont suspendat)" @@ -3527,6 +3797,12 @@ msgstr "{{user_name}} a trimis un mesaj de urmărire către{{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} a trimis o cerere către {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} a lăsat o adnotare:" diff --git a/locale/sl/app.po b/locale/sl/app.po index 1ab4d822f..e5c49684e 100644 --- a/locale/sl/app.po +++ b/locale/sl/app.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/alaveteli/language/sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -37,6 +37,12 @@ msgstr "- preglejte in ustvarite zahtevke za informacije javnega značaja" msgid " - wall" msgstr "- zid" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "<strong>Opomba:</strong>\\n Poslali vam bomo e-pošto. Sledite navodilom v njej, da spremenite\\n vaše geslo." @@ -46,6 +52,12 @@ msgstr "<strong>Opomba:</strong> Vaš e-poštni naslov bo poslan " msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "<strong>Povzemite</strong> vsebino morebitnih prejetih informacij." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "Svetujte kako <strong>najbolje razjasniti</strong> zahtevek." @@ -106,6 +118,15 @@ msgstr "'{{link_to_request}}', zahtevek" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', oseba" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*neznano*" @@ -118,6 +139,9 @@ msgstr "- ali -" msgid "1. Select an authority" msgstr "1. Izberite organ" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Zahtevajte informacije" @@ -184,6 +208,9 @@ msgstr "<p>Vaš zahtevek vsebuje <strong>poštno številko</strong>. V kolikor s msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Vaš zahtevek {{law_used_full}} je bil <strong>odposlan</strong>!</p>\\n <p><strong>Poslali vam bomo e-pošto</strong> ko bo prispel odgovor ali po {{late_number_of_days}}, ko se izteče rok za odgovor.</p><p>Če boste pisali o tem zahtevku (na primer na spletnem forumu ali na blogu), prosimo dodajte povezavo na to stran in dodajte zaznamek, da bodo obiskovalci opazili vaše pisanje.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} je trenutno v vzdrževanju, zato lahko zgolj pregledujete zahtevke. Ne morete ustvarjati novih zahtevkov, dodajati odgovorov ali zaznamkov ali kako drugače spreminjati vsebin.</p><p>{{read_only}}</p>" @@ -316,6 +343,12 @@ msgstr "Dodajte zaznamek" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Dodajte zaznamek k vašemu zahtevku z ? ali s <strong>povzetkom odgovora</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Dodano {{date}}" @@ -400,6 +433,15 @@ msgstr "Ali ste lastnik katere od avtorskih vsebin na tej strani?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Sprašujte za <strong>konkretne</strong> dokumente ali informacije, ta stran ni primerna za splošna vprašanja." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Lahko odgovorite na dnu te strani in jih poskusite pregovoriti, da dokumente skenirajo \\n(<a href=\"{{url}}\">več o tem</a>)." @@ -409,6 +451,12 @@ msgstr "Priloga (neobvezno):" msgid "Attachment:" msgstr "Priloga:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Čaka na klasifikacijo." @@ -418,6 +466,9 @@ msgstr "Čaka na interno revizijo." msgid "Awaiting response." msgstr "Čaka odgovor." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Začenši z" @@ -505,6 +556,9 @@ msgstr "Če ste naslov prekopirali ali vtipkali, ga preglejte za tipkarske napak msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Preverite, da niste slučajno vključili <strong>osebnih podatkov</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Izberite vašo profilno sliko" @@ -529,6 +583,9 @@ msgstr "Kliknite na spodnjo povezavo, da pošljete sporočilo {{public_body}} in msgid "Close" msgstr "Zapri" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Komentar" @@ -562,8 +619,8 @@ msgstr "Potrdite, da želite spremljati zahteve na '{{public_body_name}}'" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Potrdite, da želite spremljati zahtevek '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Potrdite vaš zahtevek k " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Potrdite vaš račun na {{site_name}}" @@ -589,12 +646,21 @@ msgstr "Kontaktiraj {{recipient}}" msgid "Contact {{site_name}}" msgstr "Kontaktirajte {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Zahtevka z e-poštnega naslova ni bilo možno identificirati" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Slika, ki ste jo naložili, ni prepoznana. Podprti so zapisi PNG, JPEG, GIF in drugi pogosti zapisi slik." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Obrežite vašo profilno sliko" @@ -607,12 +673,18 @@ msgstr "Trenutno <strong>čaka na odgovor</strong> od {{public_body_link}}, odgo msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Dragi {{name}}," msgid "Dear {{public_body_name}}," msgstr "Dragi {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Privzete jezikovne nastavitve" @@ -646,6 +718,9 @@ msgstr "Dnevnik razkritij" msgid "Disclosure log URL" msgstr "URL za dnevnik razkritij" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Ne želite sporočila nasloviti na {{person_or_body}}? Pišete lahko tudi:" @@ -688,6 +763,9 @@ msgstr "E-poštni naslov ne izgleda veljaven" msgid "Email me future updates to this request" msgstr "Obveščajte me o spremembah" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Vnesite besede, ki jih iščete, ločene s presledki, npr. <strong>planinska pot</strong>" @@ -802,6 +880,9 @@ msgstr "Sledite temu organu" msgid "Follow this link to see the request:" msgstr "Sledite tej povezavi, da si ogledate zahtevek:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Spremljaj to osebo" @@ -1106,9 +1187,21 @@ msgstr "Posamezni zahtevki" msgid "Info request" msgstr "Zahtevek za informacije" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Dogodek zahtevka za informacije" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoZahtevekDogodek|Izračunano stanje" @@ -1211,9 +1304,6 @@ msgstr "Povejte nam, kaj ste počeli, ko se je prikazalo to sporočilo,\\n ter k msgid "Link to this" msgstr "Trajna povezava" -msgid "List all" -msgstr "Prikaži vse" - msgid "List of all authorities (CSV)" msgstr "Seznam organov (zapis CSV)" @@ -1262,15 +1352,30 @@ msgstr "MailServerLog|Vrstica" msgid "MailServerLog|Order" msgstr "MailServerLog|Vrstni red" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Ustvarite nov<br/>\\n <strong>Zahtevek <span>za</span><br/>\\n informacije<br/>\\n javnega značaja</strong>" msgid "Make a request" msgstr "Naredite zahtevek" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Naredite nov zahtevek za ta organ" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Naredite {{law_used_short}} zahtevek za '{{public_body_name}}'" @@ -1391,9 +1496,15 @@ msgstr "Ni narejeno." msgid "Not a valid FOI request" msgstr "Ni veljaven zahtevek za IJZ" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Vedite, da prosilec ne bo obveščen o vašem zaznamku, ker je bil zahtevek objavljen na lastno željo {{public_body_name}}." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Preverite vašo e-pošto!" @@ -1451,12 +1562,18 @@ msgstr "Na ta zahtevek lahko odgovori zgolj organ, e-poštni naslov, s katerega msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Na ta zahtevek lahko odgovori zgolj organ, a sporočilo ne vsebuje polja pošiljatelja, da bi ga primerjali" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ali iščite po njihovi spletni strani za te informacije" msgid "Original request sent" msgstr "Izvirno poslani zahtevek" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Drugo:" @@ -1592,6 +1709,9 @@ msgstr "Vnesite veljaven e-poštni naslov" msgid "Please enter the message you want to send" msgstr "Vnesite sporočilo, ki ga želite poslati" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Vnesite isto geslo obakrat" @@ -1649,6 +1769,9 @@ msgstr "Prijavite se kot" msgid "Please sign in or make a new account." msgstr "Prosimo, prijavite se ali ustvarite nov račun." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Napišite sporočilo in/ali izberite datoteko z vašim odzivom." @@ -1715,6 +1838,12 @@ msgstr "Predogled odziva na '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Predogled zaznamka na '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Predogled zaznamka" @@ -1769,6 +1898,9 @@ msgstr "" msgid "Public body" msgstr "Javni organ" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Javne opombe" @@ -1778,6 +1910,27 @@ msgstr "Javna stran" msgid "Public page not available" msgstr "Javna stran ni na voljo" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|Api key" @@ -1892,6 +2045,9 @@ msgstr "Prijavite ta zahtevek" msgid "Reported for administrator attention." msgstr "Prijavljeno administratorjem." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Zahtevajte interno revizijo" @@ -1901,6 +2057,9 @@ msgstr "Zahtevajte interno revizijo od {{person_or_body}}" msgid "Request email" msgstr "Zahtevajte e-pošto" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Zahtevek je bil odstranjen" @@ -1934,6 +2093,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Odgovorite prek e-pošte" @@ -1985,6 +2147,9 @@ msgstr "Iščite po zahtevkih IJZ, javnih organih in uporabnikih" msgid "Search contributions by this person" msgstr "Iščite prispevke te osebe" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Iščite za besedami v:" @@ -2019,6 +2184,9 @@ msgstr "Poglejte sporočilo o nedostavi" msgid "Select one to see more information about the authority." msgstr "Izberite en javni organ, da bi dobili več informacij o njem." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Izberite organ za dopis" @@ -2046,6 +2214,13 @@ msgstr "Pošlji sporočilo " msgid "Send request" msgstr "Pošlji zahtevek" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + msgid "Set your profile photo" msgstr "Nastavi profilno fotografijo" @@ -2067,6 +2242,9 @@ msgstr "Prikazujem" msgid "Sign in" msgstr "Prijava" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Prijava ali ustvarjanje novega računa" @@ -2115,6 +2293,12 @@ msgstr "Oprostite, pri procesiranju je prišlo do napake." msgid "Sorry, we couldn't find that page" msgstr "Oprostite, te strani ni mogoče najti" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Posebna opomba za ta organ!" @@ -2139,6 +2323,9 @@ msgstr "Zadeva:" msgid "Submit" msgstr "Pošlji" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Pošlji stanje" @@ -2202,6 +2389,12 @@ msgstr "Hvala! Pogledali bomo kaj se je zgodilo in poskusili odpraviti napako." msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "Hvala za pomoč - vaš trud omogoča, da lahko vsi najdejo uspešne zahtevke in nam morda celo omogočajo narediti lestvice ..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "Hvala - to bo omogočilo, da najdemo uporabne zadeve. Prav tako\\n vam bomo, če boste potrebovali, svetovali kaj storiti\\n naprej z vašimi zahtevki." @@ -2217,12 +2410,18 @@ msgstr "<strong>Revizija je končana</strong>, izsledki:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Zakon o dostopu do informacij javnega značaja <strong>ne velja</strong> za" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Računi so ostali nedotaknjeni." msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Organ <strong>nima</strong> zahtevanih informacij <small>(mogoče povedo, kdo pa jih ima)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Organ ima zahtevane informacije zgolj <strong>v papirnati obliki</strong>." @@ -2235,6 +2434,9 @@ msgstr "Organ bi želel oziroma je na ta zahtevek <strong>odgovoril preko pošte msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "E-pošta, ki ste jo v imenu {{public_body}} poslali {{user}} \\nkot odgovor na zahtevek za {{law_used_short}} ni bila dostavljena." @@ -2319,6 +2521,9 @@ msgstr "Zatem lahko preneset arhiv ZIP zahtevka {{info_request_title}}" msgid "Then you can log into the administrative interface" msgstr "Zatem se lahko prijavite v administrativni vmesnik" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Zatem lahko igrate igro kategorizacije zahtevkov." @@ -2379,6 +2584,9 @@ msgstr "Obstaja <strong>več ljudi</strong> s tem imenom, ki uporabljajo to stra msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Obstaja omejitev na število dnevnih zahtevkov, ki jih lahko naredite, ker ne želimo javnih organov zasuti z veliko količino zahtevkov z neprimernimi zahtevami. Če se vam zdi, da imate upravičen razlog za dvig omejitve, nas <a href='{{help_contact_path}}'>kontaktirajte</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "{{count}} oseba sledi temu zahtevku" @@ -2434,6 +2642,9 @@ msgstr "To pokriva zelo širok spekter informacij o stanju <strong>narave in oko msgid "This external request has been hidden" msgstr "Ta zunanji zahtevek je bil skrit" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "To je tekstovna različica zahtevka za informacije javnega značaja \"{{request_title}}\". Zadnja in polna različica je na voljo na spletu na {{full_url}}" @@ -2601,6 +2812,9 @@ msgstr "Da bi obvestili vse, kliknite na to povezavo in izberite ustrezne okvirj msgid "To log into the administrative interface" msgstr "Da se prijavite v administrativni vmesnik" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Za igranje igre razvrščanja zahtevkov" @@ -2691,15 +2905,15 @@ msgstr "Ni bilo možno poslati odgovora osebi {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Ni bilo možno poslati odziva osebi {{username}}" -msgid "Unexpected search result type" -msgstr "Nepričakovan tip rezultata pri iskanju" - msgid "Unexpected search result type " msgstr "Nepričakovan tip rezultata pri iskanju" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Žal ne poznamo e-poštnega naslova od tega organa, zato tega ne moremo preveriti. Prosimo, <a href=\"{{url}}\">kontaktirajte nas</a>, da to rešimo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Žal v bazi nimamo veljavnega naslova za zahtevke {{info_request_law_used_full}} za " @@ -2712,6 +2926,12 @@ msgstr "Ne spremljaj več" msgid "Unusual response." msgstr "Neobičajen odgovor." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Posodobite stanje tega zahtevka" @@ -2739,6 +2959,9 @@ msgstr "User - {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|About me" @@ -2748,6 +2971,9 @@ msgstr "User|Admin level" msgid "User|Ban text" msgstr "User|Ban text" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|Email" @@ -2787,6 +3013,9 @@ msgstr "User|Url name" msgid "Version {{version}}" msgstr "Različica {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Preglejte e-poštni naslov za zahtevke za IJZ" @@ -2892,6 +3121,9 @@ msgstr "Kaj od tega se dogaja?" msgid "Who can I request information from?" msgstr "Od koga lahko zahtevam informacije?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Prosilec je umaknil zahtevo." @@ -2916,6 +3148,9 @@ msgstr "Zapišite vaš zahtevek v <strong>enostavnem in nedvoumnem jeziku</stron msgid "You" msgstr "Vi" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Že spremljate nove zahtevke" @@ -2985,6 +3220,9 @@ msgstr "Če veste kaj je povzročilo napako, lahko <strong>predlagate rešitev</ 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 "<strong>Dodate lahko priponke.</strong> Če želite pripeti datoteko, ki je prevelika za pošiljanje po e-pošti, uporabite spodnji obrazec." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Morda ga lahko poiščete na njihovi spletni strani ali pa jih povprašate po telefonu. Če ga najdete, nam ga prosim <a href=\"{{help_url}}\">pošljite</a>." @@ -3048,12 +3286,18 @@ msgstr "Vaše <strong>ime bo prikazano javno</strong> na tej strani in v spletni msgid "Your annotations" msgstr "Vaši zaznamki" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Vaši podatki, vključno z e-poštnim naslovom, se ne posredujejo." msgid "Your e-mail:" msgstr "Vaš e-poštni naslov:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Vaš odziv ni bil poslan, ker je bil ta zahtevek ustavljen, da se prepreči nezaželena pošta. Prosimo, <a href=\"{{url}}\">stopite v stik</a>, če res želite poslati sporočilo." @@ -3102,6 +3346,18 @@ msgstr "Moderatorji so pregledali vaš zahtevek '{{request}}' na naslovu {{url}} msgid "Your request on {{site_name}} hidden" msgstr "Vaš skriti zahtevek na {{site_name}}" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Vaš zahtevek je bil poimenovan {{info_request}}. Če boste razjasnili, če ste prejeli informacije, nam bo pomagalo vrednotiti" @@ -3114,6 +3370,9 @@ msgstr "Vaš odgovor na zahtevek za IJZ ni bil dostavljen" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Vaš odgovor <strong>bo prikazan na internetu</strong>, <a href=\"{{url}}\">preberite si zakaj</a> in druge odgovore na vprašanje." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vaša priporočila glede tega kaj naj <strong>administratorji</strong> {{site_name}} storijo glede zahtevka." @@ -3131,6 +3390,13 @@ msgstr[1] "Vaša {{count}} zaznamka" msgstr[2] "Vaši {{count}} zaznamki" msgstr[3] "Vaših {{count}} zaznamkov" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + msgid "Your {{site_name}} email alert" msgstr "Vaša {{site_name}} opozorila" @@ -3143,6 +3409,9 @@ msgstr "S spoštovanjem," msgid "Yours," msgstr "S spoštovanjem," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[IJZ epošta #{{request}}]" @@ -3500,6 +3769,9 @@ msgstr "{{thing_changed}} je bilo spremenjeno iz <code>{{from_value}}</code> v < msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - zahtevek za IJZ za {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Račun zamrznjen)" @@ -3524,6 +3796,12 @@ msgstr "{{user_name}} je poslal odziv na sporočilo za {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} je poslal zahtevek za {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} je dodal zaznamek:" diff --git a/locale/sq/app.po b/locale/sq/app.po index 11cc8148e..cf347408e 100644 --- a/locale/sq/app.po +++ b/locale/sq/app.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/alaveteli/language/sq/)\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -47,6 +47,12 @@ msgstr "- shfleto dhe bëj kërkesa për informata zyrtare" msgid " - wall" msgstr "- muri" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Shënim:</strong>\n" @@ -59,6 +65,12 @@ msgstr " <strong>Shënim privatësie:</strong> Adresa e emailit do t'i jepet" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Përmbledh</strong> përmbajtjen e informacioneve të kthyera (përgjigura)." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Këshillo se si <strong>më së miri të sqarohet</strong> një kërkesë." @@ -124,6 +136,15 @@ msgstr "'{{link_to_request}}', një kërkesë" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', një person" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -143,6 +164,9 @@ msgstr "- apo -" msgid "1. Select an authority" msgstr "1. Zgjedh një autoritet" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Kërko informata" @@ -213,6 +237,9 @@ msgstr "<p> Kërkesa yte përmban <strong>kodin postar</strong>. Nëse nuk lidhe msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} është aktualisht në mirëmbajtje teknike. Ti vetëm mund të shikosh kërkesat ekzistuese. Ti nuk mund të bësh kërkesa të reja, të shton mesazhe vazhduese apo të bësh ndonjë ndryshim në bazën e të dhënave. </p><p>{{read_only}}</p>" @@ -364,6 +391,12 @@ msgstr "" "Shto shënim në kërkesën tënde me citate të zgjedhura, apo\n" " me <strong>përmbledhje të përgjigjes</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Shtuar më {{date}}" @@ -452,6 +485,15 @@ msgstr "A je pronar i ndonjë të drejte autoriale komerciale në këtë faqe?" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Kërko dokumente apo informata <strong>specifike</strong>, kjo faqe nuk është e përshtatshme për pyetje të përgjithshme." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Në fund të kësaj faqeje, shkruaji atyre për të kërkuar nga ata që t'i scannojnë\n" @@ -463,6 +505,12 @@ msgstr "Shtojca - attachment (opcionale):" msgid "Attachment:" msgstr "Shtojca (attachment):" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Në pritje të klasifikimit." @@ -472,6 +520,9 @@ msgstr "Në pritje për rishqyrtim intern." msgid "Awaiting response." msgstr "Në pritje të përgjigjes" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Duke filluar me" @@ -559,6 +610,9 @@ msgstr "Kontrollo për gabime, nëse ke shtypur ose kopjuar adresën." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Kontrollo që nuk ke përfshi asnjë <strong>informacion personal.</strong>" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Zgjedh fotografinë për profilin tënd" @@ -583,6 +637,9 @@ msgstr "Kliko në vegzën e mëposhtme për t'i dërguar mesazh {{public_body}} msgid "Close" msgstr "Mbyll" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Komenti" @@ -616,8 +673,8 @@ msgstr "Konfirmo që doni të merrni email për kërkesat e reja të '{{public_b msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Konfirmo që dëshiron të përcjellësh kërkesën '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Konfirmo kërkesën tënde për " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Konfirmo llogarinë tënde në {{site_name}}" @@ -643,12 +700,21 @@ msgstr "Kontakto {{recipient}}" msgid "Contact {{site_name}}" msgstr "Kontakto {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nuk mund ta identifikoj kërkesën nga email adresa" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Fajlli i imazhit të cilin e ngarkove nuk u kuptua. Llojet që përkrahen nga sistemi janë: PNG, JPEG, GIF si dhe shumë formate tjera të zakonshme." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Preje fotografinë e profilit tënd" @@ -661,12 +727,18 @@ msgstr "Momentalisht <strong>duke pritur përgjigje</strong> nga {{public_body_l msgid "Date:" msgstr "Data:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Të nderuar {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -700,6 +772,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Nuk dëshiron t'ja adresosh mesazhin tënd {{person_or_body}}? Ti gjithashtu mund ti shkruash:" @@ -744,6 +819,9 @@ msgstr "Email adresa nuk duket si një adresë e vlefshme" msgid "Email me future updates to this request" msgstr "Dërgom aktualizime me email në lidhje me këtë kërkesë" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Shkuraj fjalët që do t'i gjesh të ndara me hapësirë, psh. <strong>asfaltim rruge</strong>" @@ -867,6 +945,9 @@ msgstr "Përcjell aktivitetin e këtij autoriteti" msgid "Follow this link to see the request:" msgstr "Kliko këtë vegzë për të parë kërkesën:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Ndiq këtë person" @@ -1194,9 +1275,21 @@ msgstr "kërkesa individuale" msgid "Info request" msgstr "Kërkesë për informacion" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1299,9 +1392,6 @@ msgstr "Na trego se çfarë ke qenë duke bërë kur ky mesazh u shfaq si dhe em msgid "Link to this" msgstr "Vegza e kësaj kërkese" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Listo të gjitha autoritetet (CSV)" @@ -1350,6 +1440,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Bëj një<br/>\n" @@ -1360,9 +1459,15 @@ msgstr "" msgid "Make a request" msgstr "Bëj një kërkesë" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Bëj një kërkesë për '{{public_body_name}}'" @@ -1483,9 +1588,15 @@ msgstr "Asnjë e bërë." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Kontrollo emailin tënd!" @@ -1543,12 +1654,18 @@ msgstr "Vetëm autoriteti mund të përgjigjet në këtë kërkesë, dhe unë nu msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Vetëm autoriteti mund të përgjigjet në këtë kërkesë, por nuk kishte \"Prej: (From:)\" adresë për ta verifikuar dërguesin" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ose kërko në ueb faqen e tyre për këtë informacion." msgid "Original request sent" msgstr "Kërkesa origjinale dërguar nga" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Tjera:" @@ -1689,6 +1806,9 @@ msgstr "Të lutem shkruaj adresën korrekte të emailit" msgid "Please enter the message you want to send" msgstr "Të lutem shkruaj mesazhin që dëshiron ta dërgosh" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Të lutem shkruaj fjalëkalimin e njëjtë dy herë" @@ -1750,6 +1870,9 @@ msgstr "Të lutem kyçu si " msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Të lutem shkruaj një mesazh dhe/ose zgjedh një fajll që përmban përgjigjen tënde." @@ -1816,6 +1939,12 @@ msgstr "Shiko vazhdimësinë e komunikimit për '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Shiko shënimin e ri në '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Shiko shënimin tënd" @@ -1870,6 +1999,9 @@ msgstr "" msgid "Public body" msgstr "Institucion publik" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1879,6 +2011,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1995,6 +2148,9 @@ msgstr "Raporto këtë kërkesë" msgid "Reported for administrator attention." msgstr "Raportuar për vëmendjen e administratorit." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Kërko një rishqyrtim intern" @@ -2004,6 +2160,9 @@ msgstr "Kërko një rishikim intern nga {{person_or_body}}" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Kërkesa është larguar (fshirë)" @@ -2037,6 +2196,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Përgjigju me email" @@ -2088,6 +2250,9 @@ msgstr "Kërko në kërkesat e informatave zyrtare, autoritet publike dhe përdo msgid "Search contributions by this person" msgstr "Kërko për kontribute të bëra nga ky person" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Kërko fjalë në:" @@ -2123,6 +2288,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Zgjedh një për të parë më shumë informacion në lidhje me autoritetin." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Përzgjedh autoritetin" @@ -2150,6 +2318,11 @@ msgstr "Dërgo mesazh te " msgid "Send request" msgstr "Dërgo kërkesën" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "Vendos fotografinë e profilit tënd" @@ -2171,6 +2344,9 @@ msgstr "Duke paraqitur" msgid "Sign in" msgstr "Kyçu" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Kyçu ose krijo një llogari të re" @@ -2221,6 +2397,12 @@ msgstr "Na vjen keq, ka pasur një problem gjatë përpunimit të kësaj faqe" msgid "Sorry, we couldn't find that page" msgstr "Na vjen keq, nuk munda ta gjej këtë faqe" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Shënim i veçantë për këtë autoritet!" @@ -2245,6 +2427,9 @@ msgstr "Lënda:" msgid "Submit" msgstr "Dërgo" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Dërgo statusin" @@ -2310,6 +2495,12 @@ msgstr "" "Faleminderit për ndihmë - ndihma yte do ta bëjë më të lehtë që të tjerët të gjejnë kërkesat e suksesshme, \n" "e ndoshta edhe të na mundesojë krijim e ranglistave..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Shumë faleminderit - kjo do të ndihmojë të tjerët të gjejnë gjëra të dobishme. \n" @@ -2327,12 +2518,18 @@ msgstr "<strong>Rishqyrtimi ka përfunduar</strong> dhe përfundimi është:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Kërkesa për <strong>Informata Zyrtare</strong> nuk aplikohet te:" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Llogaritë janë lënë siq kanë qenë më përpara." 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 dijnë kush e ka)</small>" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Autoriteti ka vetëm kopje në letër të këtij informacioni" @@ -2345,6 +2542,9 @@ msgstr "Autoriteti do të / është <strong>përgjigjur me postë</strong> në k msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Emaili që ju, në emër të {{public_body}}, keni dërguar te {{user}} për t'iu përgjigjur një kërkese nuk është dorëzuar." @@ -2435,6 +2635,9 @@ msgstr "Pastaj ti mund të shkarkosh zip fajllin e {{info_request_title}}." msgid "Then you can log into the administrative interface" msgstr "Pastaj mund të kyçeni në ndërfaqen e administratorit" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Pastaj ti mund të luash lojën për kategorizim të kërkesave." @@ -2495,6 +2698,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Një person {{count}} është duke e përcjell këtë kërkesë" @@ -2548,6 +2754,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Kjo kërkesë e jashtme është fshehur" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ky është versioni tekstual (plain text) i kërkesës për informata zyrtare \"{{request_title}}\". Versioni i fundit dhe i plotë është në {{full_url}}" @@ -2721,6 +2930,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "Për t'u kyçur në ndërfaqen administrative" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Për të luajtur në lojën e kategorizimit të kërkesave" @@ -2811,15 +3023,15 @@ msgstr "Nuk munda të dërgoj përgjigje te {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Nuk munda të dërgoj një përcjellje te {{username}}" -msgid "Unexpected search result type" -msgstr "Lloji i papritur i rezultatit të kërkuar" - msgid "Unexpected search result type " msgstr "Lloji i papritur i rezultatit të kërkuar " msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "Për fat të keq ne nuk e dimë adresën emailit për kërkesa zyrtare për këtë autoritet, kështu që ne nuk mund ta vërtetojmë këtë. Të lutem të <a href=\"{{url}}\">na kontakton</a> për ta rregulluar atë." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "Për fat të keq, ne nuk kemi një adresë funksionale {{info_request_law_used_full}} për" @@ -2832,6 +3044,12 @@ msgstr "Çregjistrohu" msgid "Unusual response." msgstr "përgjigje e pazakonshme." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Aktualizo statusin e kësaj kërkese" @@ -2859,6 +3077,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert type" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Përdoruesi|Rreth meje" @@ -2868,6 +3089,9 @@ msgstr "Përdoruesi | Niveli i Administrimit" msgid "User|Ban text" msgstr "Përdoruesi|Tekst i ndaluar" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Përdoruesi |Email" @@ -2907,6 +3131,9 @@ msgstr "Përdoruesi | Emri Url" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Shiko adresën e emailit për Informata Zyrtare" @@ -3020,6 +3247,9 @@ msgstr "Cila nga këto po ndodh?" msgid "Who can I request information from?" msgstr "Nga kush mund të kërkoj informata?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "E tërhequr nga kërkuesi." @@ -3044,6 +3274,9 @@ msgstr "Shkruaje kërkesën tënde me <strong>gjuhë të thjeshtë, dhe të sakt msgid "You" msgstr "Ti" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Tashmë je duke përcjell kërkesat e reja" @@ -3119,6 +3352,9 @@ msgstr "Ti e di se çfarë e shkaktoi gabim, dhe mund të <strong>sugjerosh një msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Ti ke mundësi të gjejsh atë\n" @@ -3195,12 +3431,18 @@ msgstr "" msgid "Your annotations" msgstr "Shënimet tua" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Të dhënat tuaja, duke përfshirë adresën tuaj të e-mailit, nuk janë ndarë me askë." msgid "Your e-mail:" msgstr "Emaili yt:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Mesazhi yt vazhdues nuk është dërguar përshkak se kërkesa ështe stopuar për të parandaluar spam emailat. Të lutem <a href=\"{{url}}\">na kontakto</a> nëse vërtet dëshiron të dërgosh mesazh vazhdues." @@ -3251,6 +3493,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Kërkesa yte qe emëruar {{info_request}}. Nëse i lejoni të tjerër ta dijnë a i keni marrë informatat në pergjigje, do të na mundësoni ta mbikqyrim " @@ -3263,6 +3517,9 @@ msgstr "Përgjigja juaj në kërkesën për QDP nuk është dorëzuar" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Përgjigja yte do të <strong>shfaqet në internet,</strong> <a href=\"{{url}}\">lexoni pse</a> dhe përgjigjet për pyetje të tjera." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" "Mendimet tua se çfare duhet <strong>administratorët e</strong> \n" @@ -3278,6 +3535,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "{{count}} shënim i yti" msgstr[1] "{{count}} shënimet e tua" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "Njoftimet tuaja me email në {{site_name}}" @@ -3290,6 +3552,9 @@ msgstr "Sinqerisht," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3650,6 +3915,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - një kërkesë për qasje në dokument publik nga {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (Përjashtuar)" @@ -3674,6 +3942,12 @@ msgstr "{{user_name}} dërgoi mesazh vazhdues për {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} dërgoi një kërkesë për {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} ka lënë një shënim:" diff --git a/locale/sr@latin/app.po b/locale/sr@latin/app.po index fca017238..6eb95c043 100644 --- a/locale/sr@latin/app.po +++ b/locale/sr@latin/app.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/alaveteli/language/sr@latin/)\n" "Language: sr@latin\n" "MIME-Version: 1.0\n" @@ -43,6 +43,12 @@ msgstr " - pregledaj i podnesi Zahteve za slobodan pristup informacijama od javn msgid " - wall" msgstr "- zid" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" " <strong>Napomena:</strong>\n" @@ -54,6 +60,12 @@ msgstr " <strong>Napomena o privatnosti:</strong> Biće prosleđena vaša adresa msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Sažmi</strong> sadržaj svake vraćene informacije. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Savet kako<strong>najbolje objasniti</strong> zahtev." @@ -116,6 +128,15 @@ msgstr "'{{link_to_request}}', zahtev" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}', osoba" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "*nepoznat*" @@ -128,6 +149,9 @@ msgstr "- ili -" msgid "1. Select an authority" msgstr "1. Odaberite organ javne vlasti" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Tražite informacije" @@ -194,6 +218,9 @@ msgstr "<p>Vaš zahtev sadrži <strong>poštanski broj</strong>. Ako se ovaj po msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "<p>Vaš zahtev vezan za {{law_used_full}} je <strong>poslat</strong>!</p>\\n <p><strong>Obavestićemo Vas e-mailom</strong> kada dođe odgovor, ili nakon {{late_number_of_days}} radnih dana, ako ustanova još nije\\n odgovorila.</p>\\n <p>Ako pišete o ovom zahtevu (npr. na nekom forumu ili blogu) molimo Vas da dodate link na ovu stranicu, i \\n komentar ispod, da informišete zainteresovane o Vašem pisanju.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} je trenutno u režimu održavanja. Možete samo pregledati postojeće zahteve. Ne možete unositi nove, dodavati prateće poruke ili napomene ili na bilo koji način menjati bazu podataka.</p> <p>{{read_only}}</p>" @@ -330,6 +357,12 @@ msgstr "Dodaj napomenu" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Dodajte napomenu Vašem zahtevu sa izabranim citatima iz odgovora, ili\\n<strong>sažetak odgovora</strong>." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Dodato {{date}}" @@ -414,6 +447,15 @@ msgstr "Da li ste vlasnik autorskih prava (kopirajta) na bilo šta na ovoj stran msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Tražite <strong>konkretne</strong> dokumente ili informacije, ovaj sistem namenjen za opšte upite." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" "Na dnu ove stranice napišite im odgovor da probate da ih ubedite da ga skeniraju i pošalju\n" @@ -425,6 +467,12 @@ msgstr "Prilog (neobavezno):" msgid "Attachment:" msgstr "Prilog:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Čeka na klasifikaciju." @@ -434,6 +482,9 @@ msgstr "Čeka urgenciju." msgid "Awaiting response." msgstr "Čeka odgovor." +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Počevši sa" @@ -521,6 +572,9 @@ msgstr "Proverite ima li grešaka ako ste ukucali ili kopirali adresu." msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Proverite da niste uključili nikakve <strong>lične podatke</strong>." +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Odaberite sliku na Vašem profilu" @@ -545,6 +599,9 @@ msgstr "Kliknite na link ispod da biste poslali poruku koja će podsetiti {{publ msgid "Close" msgstr "Zatvori" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "Komentar" @@ -578,8 +635,8 @@ msgstr "Potvrdite da želite da pratite zahteve podnete za ustanovu '{{user_name msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Potvrdite da želite da pratite zahtev '{{request_title}}' pomoću e-mail biltena " -msgid "Confirm your FOI request to " -msgstr "Potvrdite Vaš ZOSPIOJ zahtev za" +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Potvrdite Vaš profil na {{site_name}}" @@ -605,12 +662,21 @@ msgstr "Kontaktiraj: {{recipient}}" msgid "Contact {{site_name}}" msgstr "Kontaktirajte {{site_name}}" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Nismo mogli prepoznati zahtev sa e-mail adrese" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Format datoteke sa slikom nije prepoznat. Podržani su PNG, JPEG, GIF i dosta drugih uobičajenih formata." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Smanjite sliku za Vaš profil - odsecite ivice" @@ -623,12 +689,18 @@ msgstr "Trenutno <strong>čeka odgovor</strong> od {{public_body_link}}, oni mor msgid "Date:" msgstr "Datum:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "Poštovani {{name}}," msgid "Dear {{public_body_name}}," msgstr "Poštovani {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "Podrazumevani jezik" @@ -662,6 +734,9 @@ msgstr "Dnevnik objava" msgid "Disclosure log URL" msgstr "URL za dnevnik objava" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Ne želite da pošaljete Vašu poruku na {{person_or_body}}? Možete takođe pisati:" @@ -704,6 +779,9 @@ msgstr "E-mail ne izgleda kao ispravna adresa" msgid "Email me future updates to this request" msgstr "Šaljite mi buduće izmene ovog zahteva emailom" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Unesite reči koje želite naći odvojene razmacima, npr. <strong>jonizujućeg zračenja</strong>" @@ -824,6 +902,9 @@ msgstr "Prati ovu ustanovu" msgid "Follow this link to see the request:" msgstr "Pratite ovaj link da biste videli zahtev:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Prati ovog korisnika" @@ -1132,9 +1213,21 @@ msgstr "Pojedinačni zahtevi" msgid "Info request" msgstr "Zahtev za informacije" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "Događaj u vezi zahteva za informacije" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Sračunato stanje" @@ -1237,9 +1330,6 @@ msgstr "Obavestite nas šta ste radili kada se pojavila ova poruka\\ni takođe k msgid "Link to this" msgstr "Spojite sa ovim" -msgid "List all" -msgstr "Prikaži sve" - msgid "List of all authorities (CSV)" msgstr "Popis svih ustanova (CSV)" @@ -1288,15 +1378,30 @@ msgstr "MailServerLog|Linija" msgid "MailServerLog|Order" msgstr "MailServerLog|Redosled" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "Podnesi novi<br/>\\n<strong>Zahtev<span> za</span><br/>\\nslobodan<br/>\\npristup informacijama od javnog značaja</strong>" msgid "Make a request" msgstr "Podnesi zahtev" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "Podnesite zahtev ovoj instituciji" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Podnesi {{law_used_short}} zahtev javnoj ustanovi '{{public_body_name}}'" @@ -1417,9 +1522,15 @@ msgstr "Nije podnet nijedan." msgid "Not a valid FOI request" msgstr "Neispravan zahtev" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "Imajte u vidu da podnosilac zahteva neće biti obavešten o Vašem komentaru, zato što je zahtev objavljen od strane ustanove {{public_body_name}} u njegovo/njeno ime." +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Sada proverite Vaš e-mail!" @@ -1477,12 +1588,18 @@ msgstr "Samo ustanova kojoj je zahtev podnet može odgovoriti na ovaj zahtev - a msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Samo ustanova kojoj je zahtev podnet može odgovoriti na ovaj zahtev - ali poruka ne sadrži adresu pošiljaoca - \"From\"" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Ili tražite ovu informaciju na njihovom web sajtu." msgid "Original request sent" msgstr "Originalni zahtev poslat" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Ostalo:" @@ -1627,6 +1744,9 @@ msgstr "Molimo unesite ispravnu e-mail adresu" msgid "Please enter the message you want to send" msgstr "Molimo unesite poruku koju želite da pošaljete" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Molimo unesite istu lozinku dva puta" @@ -1686,6 +1806,9 @@ msgstr "Molimo prijavite se kao " msgid "Please sign in or make a new account." msgstr "Molimo prijavite se na sistem ili se registrujte." +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Molimo upišite poruku i/ili odaberite fajl koji sadrži vaš odgovor." @@ -1752,6 +1875,12 @@ msgstr "Pregledajte reakcije do '" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Pregledajte novu napomenu o '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Pregledajte Vašu napomenu" @@ -1806,6 +1935,9 @@ msgstr "Javne ustanove sa najviše uspešnih zahteva" msgid "Public body" msgstr "Javna ustanova" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "Javne beleške" @@ -1815,6 +1947,27 @@ msgstr "Javna strana" msgid "Public page not available" msgstr "Javna strana nije raspoloživa" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "PublicBody|API ključ" @@ -1931,6 +2084,9 @@ msgstr "Prijavite ova zahtev" msgid "Reported for administrator attention." msgstr "Prijavljeno administratorima." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Zatražite urgenciju" @@ -1940,6 +2096,9 @@ msgstr "Zatražite urgenciju od strane {{person_or_body}}" msgid "Request email" msgstr "Zahtevajte email" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Zahtev je uklonjen" @@ -1973,6 +2132,9 @@ msgstr "Zahtevi slični '{{request_title}}'" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "Zahtevi slični '{{request_title}}' (strana {{page}})" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-mailom" @@ -2024,6 +2186,9 @@ msgstr "Pretraži Zahteve za slobodan pristup informacijama od javnog značaja, msgid "Search contributions by this person" msgstr "Pretraži doprinose od strane ove osobe" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "Traži reči u:" @@ -2057,6 +2222,9 @@ msgstr "Postavite poruku u slučaju odbijanja" msgid "Select one to see more information about the authority." msgstr "Odaberite jedan da biste videli više informacija o ustanovi." +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Odaberite ustanovu kojoj ćete pisati" @@ -2084,6 +2252,12 @@ msgstr "Pošalji poruku za" msgid "Send request" msgstr "Pošalji zahtev" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Podesite sliku na Vašem profilu" @@ -2105,6 +2279,9 @@ msgstr "Prikazuje" msgid "Sign in" msgstr "Prijavite se" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Prijavite se ili napravite novi korisnički profil" @@ -2159,6 +2336,12 @@ msgstr "Žalimo, došlo je do problema u obradi ove stranice" msgid "Sorry, we couldn't find that page" msgstr "Žalimo, nismo mogli pronaći tu stranicu" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Posebna napomena za ovu ustanovu!" @@ -2183,6 +2366,9 @@ msgstr "Predmet:" msgid "Submit" msgstr "Pošalji" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Pošalji status" @@ -2248,6 +2434,12 @@ msgstr "" "Hvala na pomoći - Vaš rad će svima olakšati pronalaženje pozitivnih\n" "odgovora - i možda čak dozvoliti nama da pravimo rangliste institucija..." +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" "Hvala - ovo će pomoći drugima da pronađu korisne stvari. Mi ćemo Vas\n" @@ -2269,12 +2461,18 @@ msgstr "Pregled <strong>je završen</strong> i sve u svemu:" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Zakon o slobodnom pristupu informacijama od javnog značaja <strong>se ne odnosi</strong> na" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički profili nisu menjani" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "Ustanova <strong>ne poseduje</strong> informacije <small>(ali oni možda mogu reći ko ih poseduje)" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "Ustanova ima samo <strong>štampani oblik</strong> informacije." @@ -2290,6 +2488,9 @@ msgstr "Ustanova bi htela da odgovori / je odgovorila <strong>poštom</strong> n msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "Klasifikaciju zahteva (npr. da li je uspešan ili ne) rade korisnici i administratori sistma, što znači da je podložna greškama" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "Poruka koju ste, u ime ustanove '{{public_body}}', poslali podnosiocu\\n'{{user}}' da odgovorite na zahtev vezan za {{law_used_short}}\\n nije isporučena." @@ -2383,6 +2584,9 @@ msgstr "Tada možete preuzeti {{info_request_title}} u formi zip arhive." msgid "Then you can log into the administrative interface" msgstr "Onda se možete prijaviti na administrativnu aplikaciju" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "Tada možete igrati igru kategorizacije zatjeva." @@ -2443,6 +2647,9 @@ msgstr "Postoji <strong>više od jedne osobe</strong> koja koristi ovaj sistem i msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Postoji ograničenje broja zahteva koje možete podneti u jednom danu, pošto želimo da izbegnemo da javne ustanove budu bombardovane velikim brojem neprikladnih zahteva. Ako mislite da u Vašem slučaju ovo ograničenje treba ukloniti, molimo <a href='{{help_contact_path}}'>da nam se javite</a>." +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Trenutno {{count}} korisnik prati ovaj zahtev" @@ -2499,6 +2706,9 @@ msgstr "Ovo pokriva veoma širok spektar informacija u vezi stanja\\n <strong>pr msgid "This external request has been hidden" msgstr "Ovaj spoljni zahtev je sakriven" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "Ovo je \"plain-text\" verzija Zahteva za slobodan pristup informacijama od javnog značaja \"{{request_title}}\". Najnovija, puna verzija je raspoloživa online na {{full_url}}" @@ -2672,6 +2882,9 @@ msgstr "Da svima objavite, molimo pratite ovaj link i onda odaberite odgovaraju msgid "To log into the administrative interface" msgstr "Da se prijavite na administrativnu aplikaciju" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "Da biste igrali igru kategorizacije zahteva" @@ -2762,9 +2975,6 @@ msgstr "Ne možemo poslati odgovor za {{username}}" msgid "Unable to send follow up message to {{username}}" msgstr "Ne možemo poslati reakciju za {{username}}" -msgid "Unexpected search result type" -msgstr "Neočekivani tip rezultata pretrage" - msgid "Unexpected search result type " msgstr "Neočekivani tip rezultata pretrage" @@ -2774,6 +2984,9 @@ msgstr "" "te ustanove, tako da ne možemo da ovo validiramo.\n" "Molimo <a href=\"{{url}}\">kontaktirajte nas</a> da to razjasnimo." +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" "Nažalost, ne posedujemo ispravnu \n" @@ -2788,6 +3001,12 @@ msgstr "Otkaži praćenje" msgid "Unusual response." msgstr "Neobičan odgovor." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Ažurirajte status ovog zahteva" @@ -2815,6 +3034,9 @@ msgstr "Korisnik – {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "UserInfoRequestSentAlert|Alert događaja" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "User|O meni" @@ -2824,6 +3046,9 @@ msgstr "User|Administratorski nivo" msgid "User|Ban text" msgstr "User|Tekst isključenja" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "User|E-mail" @@ -2863,6 +3088,9 @@ msgstr "User|Url ime" msgid "Version {{version}}" msgstr "Verzija {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "Videti email adresu za Zahteve za slobodan pristup informacijama od javnog značaja." @@ -2978,6 +3206,9 @@ msgstr "Šta se od ovoga događa?" msgid "Who can I request information from?" msgstr "Od koga mogu tražiti informacije?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Povučeno od strane podnosioca zahteva." @@ -3002,6 +3233,9 @@ msgstr "Pišite Vaš zahtev <strong>jednostavnim, preciznim jezikom</strong>." msgid "You" msgstr "Vi" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Već pratite nove zahteve" @@ -3076,6 +3310,9 @@ msgstr "Znate šta je uzrok ove greške i možete <strong>predložiti rešenje</ 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 "Možete <strong>ubaciti priloge</strong>. Ako želite ubaciti datoteku\\n preveliku za e-mail poruke, koristite obrazac ispod." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" "Moguće je da je nađete\n" @@ -3145,12 +3382,18 @@ msgstr "Vaše <strong>ime će biti javno prikazano</strong>\\n (<a href=\"{{why_ msgid "Your annotations" msgstr "Vaše napomene" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Vaši lični podaci, uključujući Vašu email adresu, nisu dati nikome." msgid "Your e-mail:" msgstr "Vaš e-mail:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Vaša reakcija nije poslata zato što je ovaj zahtev blokiran da se spreči spam. Molimo <a href=\"{{url}}\">kontaktirajte nas</a> ako stvarno želite da pošaljete ovu reakciju." @@ -3201,6 +3444,18 @@ msgstr "Vaš zahtev '{{request}}' na {{url}} je bio pregledan od strane moderato msgid "Your request on {{site_name}} hidden" msgstr "Vaš zahtev na sistemu {{site_name}} je sakriven" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "Naziv Vašeg zahteva je {{info_request}}. Ažuriranjem informacije o tome da li ste dobili odgovor ćete nam pomoći da bolje pratimo ponašanje " @@ -3213,6 +3468,9 @@ msgstr "Vaš odgovor na Zahtev za slobodan pristup informacijama od javnog znač msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Vaš odgovor će se <strong>pojaviti na Internetu</strong>, <a href=\"{{url}}\">pročitajte zašto</a> i odgovore na druga pitanja." +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Vaše mišljenje o tome šta administratori sistema {{site_name}} treba da rade po pitanju ovog zahteva." @@ -3228,6 +3486,12 @@ msgstr[0] "Vaš {{count}} komentar" msgstr[1] "Vaša {{count}} komentara" msgstr[2] "Vaših {{count}} komentara" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "Vaš e-mail bilten od {{site_name}} " @@ -3240,6 +3504,9 @@ msgstr "S poštovanjem," msgid "Yours," msgstr "S poštovanjem," +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "[E-mail za zahtev #{{request}}]" @@ -3595,6 +3862,9 @@ msgstr "{{thing_changed}} je promenjeno sa <code>{{from_value}}</code> na <code> msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - Zahtev za slobodan pristup informacijama od javnog značaja upućen ustanovi {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (blokiran profil)" @@ -3621,6 +3891,12 @@ msgstr "{{user_name}} je poslao/la reakciju za {{public_body}}" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} je poslao/la zahtev za {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} je ostavio/la napomenu:" diff --git a/locale/sv/app.po b/locale/sv/app.po index b820de7b9..813d6dec2 100644 --- a/locale/sv/app.po +++ b/locale/sv/app.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/alaveteli/language/sv/)\n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -35,6 +35,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -44,6 +50,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -104,6 +116,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -116,6 +137,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -182,6 +206,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -314,6 +341,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -398,6 +431,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -407,6 +449,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -416,6 +464,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -503,6 +554,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -527,6 +581,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -560,7 +617,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -587,12 +644,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -605,12 +671,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -644,6 +716,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -686,6 +761,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -800,6 +878,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1183,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1300,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1258,15 +1348,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1492,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1558,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1705,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1765,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1834,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1894,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1906,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2041,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2053,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2089,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2143,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2013,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2040,6 +2208,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2061,6 +2234,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2109,6 +2285,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2133,6 +2315,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2196,6 +2381,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2211,12 +2402,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2229,6 +2426,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2313,6 +2513,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2373,6 +2576,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2426,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2589,6 +2798,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2679,15 +2891,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2700,6 +2912,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2727,6 +2945,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2736,6 +2957,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2775,6 +2999,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2880,6 +3107,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2904,6 +3134,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2973,6 +3206,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3036,12 +3272,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3090,6 +3332,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3102,6 +3356,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3115,6 +3372,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3127,6 +3389,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3476,6 +3741,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3500,6 +3768,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/sw_KE/app.po b/locale/sw_KE/app.po index ad9610194..93288ff21 100644 --- a/locale/sw_KE/app.po +++ b/locale/sw_KE/app.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-25 09:13+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/alaveteli/language/sw_KE/)\n" "Language: sw_KE\n" "MIME-Version: 1.0\n" @@ -35,6 +35,12 @@ msgstr "" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -44,6 +50,12 @@ msgstr "" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -104,6 +116,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -116,6 +137,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -182,6 +206,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -314,6 +341,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -398,6 +431,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -407,6 +449,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -416,6 +464,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -503,6 +554,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -527,6 +581,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -560,7 +617,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -587,12 +644,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -605,12 +671,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -644,6 +716,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -686,6 +761,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -800,6 +878,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1183,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1300,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1258,15 +1348,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1492,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1558,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1705,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1765,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1834,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1894,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1906,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2041,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2053,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2089,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2143,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2013,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2040,6 +2208,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2061,6 +2234,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2109,6 +2285,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2133,6 +2315,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2196,6 +2381,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2211,12 +2402,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2229,6 +2426,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2313,6 +2513,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2373,6 +2576,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2426,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2589,6 +2798,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2679,15 +2891,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2700,6 +2912,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2727,6 +2945,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2736,6 +2957,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2775,6 +2999,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2880,6 +3107,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2904,6 +3134,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2973,6 +3206,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3036,12 +3272,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3090,6 +3332,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3102,6 +3356,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3115,6 +3372,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3127,6 +3389,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3476,6 +3741,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3500,6 +3768,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/tr/app.po b/locale/tr/app.po index 56ac010da..a7279c404 100644 --- a/locale/tr/app.po +++ b/locale/tr/app.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/alaveteli/language/tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -37,6 +37,12 @@ msgstr "- Bilgi Edinme isteklerini görüntüleyin/oluşturun" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -46,6 +52,12 @@ msgstr "<strong>Gizlilik notu:</strong> Şifrenizin verileceği kimseler" msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "<strong>Özetle</strong> gönderilen bilginin içeriğini verin." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -106,6 +118,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -118,6 +139,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -184,6 +208,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -316,6 +343,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -400,6 +433,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -409,6 +451,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -418,6 +466,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -505,6 +556,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -529,6 +583,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -562,7 +619,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -589,12 +646,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -607,12 +673,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -646,6 +718,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -688,6 +763,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -802,6 +880,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1104,9 +1185,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1209,9 +1302,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1260,15 +1350,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1389,9 +1494,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1449,12 +1560,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1590,6 +1707,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1647,6 +1767,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1713,6 +1836,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1767,6 +1896,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1776,6 +1908,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1890,6 +2043,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1899,6 +2055,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1932,6 +2091,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1983,6 +2145,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2015,6 +2180,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2042,6 +2210,11 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Set your profile photo" msgstr "" @@ -2063,6 +2236,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2111,6 +2287,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2135,6 +2317,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2198,6 +2383,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2213,12 +2404,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2231,6 +2428,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2315,6 +2515,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2375,6 +2578,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2428,6 +2634,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2591,6 +2800,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2681,15 +2893,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2702,6 +2914,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2729,6 +2947,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2738,6 +2959,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2777,6 +3001,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2882,6 +3109,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2906,6 +3136,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2975,6 +3208,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3038,12 +3274,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3092,6 +3334,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3104,6 +3358,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3117,6 +3374,11 @@ msgid_plural "Your {{count}} annotations" msgstr[0] "" msgstr[1] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3129,6 +3391,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3478,6 +3743,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3502,6 +3770,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/uk/app.po b/locale/uk/app.po index 2cc14351c..4ee92d9c1 100644 --- a/locale/uk/app.po +++ b/locale/uk/app.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/alaveteli/language/uk/)\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -42,6 +42,12 @@ msgstr " - Запитай у чиновника!" msgid " - wall" msgstr " - стіна" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "Ми надішлемо вам листа з інструкціями щодо зміни паролю." @@ -51,6 +57,12 @@ msgstr "<strong>Зверніть увагу:</strong> ваша електрон msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Підсумуйте</strong> зміст отриманої інформації." +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Порадьте, як зробити запит <strong>більш зрозумілим</strong>." @@ -113,6 +125,15 @@ msgstr "'{{link_to_request}}', запит" msgid "'{{link_to_user}}', a person" msgstr "'{{link_to_user}}'" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -132,6 +153,9 @@ msgstr "- або -" msgid "1. Select an authority" msgstr "1. Оберіть розпорядника інформації" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. Зробіть інформаційний запит" @@ -219,6 +243,9 @@ msgstr "" "<p><strong>Ми повідомимо вам</strong> коли з’явиться відповідь або якщо розпорядник інформації не надасть її в межах {{late_number_of_days}} робочих днів.</p>\n" "<p>Якщо ви збираєтесь написати про цей запит (наприклад, у форумі або в блозі), будь ласка, дайте посилання на цю сторінку та додайте коментар про це внизу.</p>" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "<p>{{site_name}} знаходиться на обслуговуванні. Ви можете переглядати зроблені раніше запити, але не можете робити нові, додавати коментарі чи будь-яким іншим чином змінювати базу даних.</p> <p>{{read_only}}</p>" @@ -369,6 +396,12 @@ msgstr "Додайте коментар" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "Додайте коментар до свого запиту або короткий виклад відповіді." +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "Дата додання: {{date}}" @@ -457,6 +490,15 @@ msgstr "Вам належить авторське право на будь-що msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "Запитуйте про <strong>конкретні</strong> документи або інформацію, цей сайт не призначений для загальних питань." +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "Внизу сторінки напишіть відповідь зі спробою переконати їх відсканувати її." @@ -466,6 +508,12 @@ msgstr "Додаток (необов’язково)" msgid "Attachment:" msgstr "Додаток:" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "Статус не визначено." @@ -475,6 +523,9 @@ msgstr "Очікує на внутрішню перевірку." msgid "Awaiting response." msgstr "Очікує на відповідь" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "Ті, що починаються з" @@ -562,6 +613,9 @@ msgstr "Перевірте на наявність помилок, якщо ви msgid "Check you haven't included any <strong>personal information</strong>." msgstr "Перевірте, чи не включили ви якоїсь особистої інформації" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "Оберіть фото в профілі" @@ -588,6 +642,9 @@ msgstr "Натисніть на посилання внизу, щоб відпр msgid "Close" msgstr "Закрити" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -621,8 +678,8 @@ msgstr "Підтвердіть, що хочете відслідковувати msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "Підтвердіть, що хочете відслідковувати запит '{{request_title}}'" -msgid "Confirm your FOI request to " -msgstr "Підтвердіть ваш запит до " +msgid "Confirm your FOI request to {{public_body_name}}" +msgstr "" msgid "Confirm your account on {{site_name}}" msgstr "Підтвердіть ваш акаунт" @@ -648,12 +705,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "Контакти" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "Не вдалося визначити запит" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "Неможливо завантажити файл. Підтримються PNG, JPEG, GIF та багато інших поширених форматів." +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "Обріжте ваше фото" @@ -668,12 +734,18 @@ msgstr "На даний момент відповідь від {{public_body_lin msgid "Date:" msgstr "Дата:" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "Шановний {{public_body_name}}," +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -707,6 +779,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "Не хочете надсилати повідомлення на адресу {{person_or_body}}? Ви можете також написати за цією адресою:" @@ -751,6 +826,9 @@ msgstr "Електронна адреса не схожа на справжню" msgid "Email me future updates to this request" msgstr "Надішліть мені майбутні оновлення щодо цього запиту" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "Введіть слова, які хочете знайти, розділені пробілами" @@ -876,6 +954,9 @@ msgstr "Відслідковувати цього розпорядника ін msgid "Follow this link to see the request:" msgstr "Пройдіть за посиланням, щоб побачити запит:" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "Відслідковувати цю людину" @@ -1205,9 +1286,21 @@ msgstr "Individual requests" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "InfoRequestEvent|Calculated state" @@ -1317,9 +1410,6 @@ msgstr "" msgid "Link to this" msgstr "Посилання" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "Повний перелік розпорядників (CSV)" @@ -1368,6 +1458,15 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" "Зробити<br/>\n" @@ -1376,9 +1475,15 @@ msgstr "" msgid "Make a request" msgstr "Зробити запит" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "Зробіть новий запит до: '{{public_body_name}}'" @@ -1499,9 +1604,15 @@ msgstr "Не зроблено жодного." msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "Тепер перевірте вашу пошту!" @@ -1559,12 +1670,18 @@ msgstr "Тільки владний орган може відповісти н msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "Тільки владний орган може відповісти на цей запит, але адресант не вказаний, тож перевірити неможливо " +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "Або пошукайте цю інформацію не їхньому вебсайті" msgid "Original request sent" msgstr "Запит надіслано" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "Інше:" @@ -1703,6 +1820,9 @@ msgstr "Будь ласка, введіть чинну електронну ад msgid "Please enter the message you want to send" msgstr "Будь ласка, введіть повідомлення, яке ви хочете відправити" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "Будь ласка, введіть один і той же пароль двічі" @@ -1760,6 +1880,9 @@ msgstr "Будь ласка, увійдіть як " msgid "Please sign in or make a new account." msgstr "Будь ласка, увійдіть або зареєструйтесь" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "Будь ласка, введіть повідомлення або оберіть файл, що містить вашу відповідь." @@ -1826,6 +1949,12 @@ msgstr "Попередній перегляд уточнення щодо зап msgid "Preview new annotation on '{{info_request_title}}'" msgstr "Попередній перегляд коментаря на запит '{{info_request_title}}'" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "Попередній перегляд коментаря" @@ -1880,6 +2009,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1889,6 +2021,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -2005,6 +2158,9 @@ msgstr "Повідомити" msgid "Reported for administrator attention." msgstr "Адміністратора повідомлено." +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "Зробити запит на внутрішню перевірку" @@ -2014,6 +2170,9 @@ msgstr "Зробити запит на внутрішню перевірку в msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "Запит було видалено" @@ -2047,6 +2206,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "Відповісти електронною поштою" @@ -2098,6 +2260,9 @@ msgstr "Пошук запитів, розпорядників інформаці msgid "Search contributions by this person" msgstr "Пошук серед написаного цим користувачем" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2131,6 +2296,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "Оберіть щоб дізнатися більше про розпорядника інформації" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "Оберіть розпорядника інформації, якому хочете написати" @@ -2158,6 +2326,12 @@ msgstr "Надіслати повідомлення до " msgid "Send request" msgstr "Надіслати запит" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Set your profile photo" msgstr "Встановити фото в профілі" @@ -2179,6 +2353,9 @@ msgstr "Показати" msgid "Sign in" msgstr "Увійти" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "Увійти або зареєструвати новий акаунт" @@ -2227,6 +2404,12 @@ msgstr "Перепрошуємо, виникла проблема" msgid "Sorry, we couldn't find that page" msgstr "Ми не можемо знайти цю сторінку" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "Примітка:" @@ -2251,6 +2434,9 @@ msgstr "Тема:" msgid "Submit" msgstr "Відправити" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "Оновити статус" @@ -2314,6 +2500,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2329,12 +2521,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "Законодавство про доступ до інформації не може бути застосоване до" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2347,6 +2545,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2433,6 +2634,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2493,6 +2697,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "Ми встановили обмеження на кількість запитів, які можна відправитипротягом одного дня. Ви можете попросити про зняття цього обмеження, <a href='{{help_contact_path}}'>написавши нам</a>. Ваше прохання має бути обґрунтованим" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "Цей запит ніхто не відслідковує" @@ -2549,6 +2756,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "Цей зовнішній запит було приховано" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2718,6 +2928,9 @@ msgstr "Щоб повідомити всіх, пройдіть за цим по msgid "To log into the administrative interface" msgstr "Щоб залогінитись в адміністративний інтерфейс" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2808,15 +3021,15 @@ msgstr "Неможливо надіслати відповідь користу msgid "Unable to send follow up message to {{username}}" msgstr "Неможливо надіслати повідомленя користувачу {{username}}" -msgid "Unexpected search result type" -msgstr "Неочікуваний результат пошуку" - msgid "Unexpected search result type " msgstr "Неочікуваний результат пошуку" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "На жаль, ми не маємо адреси " @@ -2829,6 +3042,12 @@ msgstr "Відписатися" msgid "Unusual response." msgstr "Незвичайна відповідь." +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "Оновіть статус цього запиту" @@ -2856,6 +3075,9 @@ msgstr "Користувач - {{name}}" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "Користувач|Про мене" @@ -2865,6 +3087,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "Користувач|Мейл" @@ -2904,6 +3129,9 @@ msgstr "" msgid "Version {{version}}" msgstr "Версія {{version}}" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -3017,6 +3245,9 @@ msgstr "Що відбувається?" msgid "Who can I request information from?" msgstr "Кому я можу надіслати інформаційний запит?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "Автор запиту відмовився від нього." @@ -3041,6 +3272,9 @@ msgstr "Використовуйте в запиті просту, зрозум msgid "You" msgstr "Ви" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "Ви вже відслідковуєте нові запити" @@ -3117,6 +3351,9 @@ msgstr "" "Ви можете прикріпити до листа файл. Якщо він надто великий для електронної пошти,\n" " скористайтеся формою нижче." +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "Якщо вона вам відома, <a href=\"{{url}}\">повідомте її нам</a>, будь ласка." @@ -3193,12 +3430,18 @@ msgstr "" msgid "Your annotations" msgstr "Ваші коментарі" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "Інформація про вас не була передана нікому." msgid "Your e-mail:" msgstr "Електронна адреса:" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "Ваше повідомлення не було надіслано, тому що цей запит не пройшов спам-фільтр." @@ -3249,6 +3492,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3261,6 +3516,9 @@ msgstr "Ваша відповідь на запит не була доставл msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "Ваша відповідь <strong>з’явиться в інтернеті</strong> <a href=\"{{url}}\">(чому?)</a>" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "Ваші міркування щодо того, що адміністратори сайту мають зробити з цим запитом." @@ -3276,6 +3534,12 @@ msgstr[0] "Ваш коментар" msgstr[1] "Ваші {{count}} коментарі" msgstr[2] "Ваші {{count}} коментарів" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3288,6 +3552,9 @@ msgstr "З повагою," msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3643,6 +3910,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "{{title}} - запит до: {{public_body}}" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "{{user_name}} (дію акаунта припинено)" @@ -3669,6 +3939,12 @@ msgstr "{{user_name}} відправив додаткового листа до: msgid "{{user_name}} sent a request to {{public_body}}" msgstr "{{user_name}} відправив запит до: {{public_body}}" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "{{username}} залишив коментар:" diff --git a/locale/vi/app.po b/locale/vi/app.po index 2389b351d..938ca2e17 100644 --- a/locale/vi/app.po +++ b/locale/vi/app.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-11-20 10:14+0000\n" -"Last-Translator: mysociety <transifex@mysociety.org>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/alaveteli/language/vi/)\n" "Language: vi\n" "MIME-Version: 1.0\n" @@ -39,6 +39,12 @@ msgstr " - xem và tạo các yêu cầu về Tự Do Thông Tin" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -48,6 +54,12 @@ msgstr " <strong>Ghi chú về quyền riêng tư:</strong> Địa chỉ email c msgid " <strong>Summarise</strong> the content of any information returned. " msgstr " <strong>Tóm tắt</strong> nội dung của bất kỳ thông tin nào được trả về. " +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr " Quảng cáo về cách <strong>xác định rõ ràng nhất</strong> đối với yêu cầu." @@ -108,6 +120,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -120,6 +141,9 @@ msgstr "" msgid "1. Select an authority" msgstr "" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "" @@ -186,6 +210,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -318,6 +345,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -402,6 +435,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -411,6 +453,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -420,6 +468,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -507,6 +558,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -531,6 +585,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -564,7 +621,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -591,12 +648,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -609,12 +675,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -648,6 +720,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -690,6 +765,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -804,6 +882,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1105,9 +1186,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1210,9 +1303,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1261,15 +1351,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1390,9 +1495,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1450,12 +1561,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1591,6 +1708,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1648,6 +1768,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1714,6 +1837,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1768,6 +1897,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1777,6 +1909,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1891,6 +2044,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1900,6 +2056,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1933,6 +2092,9 @@ msgstr "" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1984,6 +2146,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2015,6 +2180,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2042,6 +2210,10 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" + msgid "Set your profile photo" msgstr "" @@ -2063,6 +2235,9 @@ msgstr "" msgid "Sign in" msgstr "" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "" @@ -2111,6 +2286,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2135,6 +2316,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2198,6 +2382,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2213,12 +2403,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2231,6 +2427,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2315,6 +2514,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2375,6 +2577,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2427,6 +2632,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2588,6 +2796,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2678,15 +2889,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2699,6 +2910,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2726,6 +2943,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2735,6 +2955,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2774,6 +2997,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2879,6 +3105,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2903,6 +3132,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2972,6 +3204,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3035,12 +3270,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3089,6 +3330,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3101,6 +3354,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3112,6 +3368,10 @@ msgid "Your {{count}} annotation" msgid_plural "Your {{count}} annotations" msgstr[0] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3124,6 +3384,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3469,6 +3732,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3493,6 +3759,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/locale/zh_HK/app.po b/locale/zh_HK/app.po index 6abb86e08..1fde7369d 100644 --- a/locale/zh_HK/app.po +++ b/locale/zh_HK/app.po @@ -4,13 +4,14 @@ # # Translators: # caxekis <caxekis@gmail.com>, 2013 +# caxekis <caxekis@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-08 12:10+0000\n" -"PO-Revision-Date: 2013-12-14 08:17+0000\n" -"Last-Translator: caxekis <caxekis@gmail.com>\n" +"POT-Creation-Date: 2014-02-27 09:52+0000\n" +"PO-Revision-Date: 2014-02-27 09:59+0000\n" +"Last-Translator: louisecrow <louise@mysociety.org>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/alaveteli/language/zh_HK/)\n" "Language: zh_HK\n" "MIME-Version: 1.0\n" @@ -36,6 +37,12 @@ msgstr "— 檢視及索取資料" msgid " - wall" msgstr "" +msgid " < " +msgstr "" + +msgid " << " +msgstr "" + msgid " <strong>Note:</strong>\\n We will send you an email. Follow the instructions in it to change\\n your password." msgstr "" @@ -45,6 +52,12 @@ msgstr "<strong>私隱聲明:</strong> 以下人士將得悉你的電郵地址 msgid " <strong>Summarise</strong> the content of any information returned. " msgstr "<strong>撮寫</strong>已取得之資訊的內容。" +msgid " > " +msgstr "" + +msgid " >> " +msgstr "" + msgid " Advise on how to <strong>best clarify</strong> the request." msgstr "" @@ -105,6 +118,15 @@ msgstr "" msgid "'{{link_to_user}}', a person" msgstr "" +msgid "(hide)" +msgstr "" + +msgid "(or <a href=\"{{url}}\">sign in</a>)" +msgstr "" + +msgid "(show)" +msgstr "" + msgid "*unknown*" msgstr "" @@ -117,6 +139,9 @@ msgstr "- 或 -" msgid "1. Select an authority" msgstr "1. 選擇部門及機構" +msgid "1. Select authorities" +msgstr "" + msgid "2. Ask for Information" msgstr "2. 索取資料" @@ -183,6 +208,9 @@ msgstr "" msgid "<p>Your {{law_used_full}} request has been <strong>sent on its way</strong>!</p>\\n <p><strong>We will email you</strong> when there is a response, or after {{late_number_of_days}} working days if the authority still hasn't\\n replied by then.</p>\\n <p>If you write about this request (for example in a forum or a blog) please link to this page, and add an\\n annotation below telling people about your writing.</p>" msgstr "" +msgid "<p>Your {{law_used_full}} requests will be <strong>sent</strong> shortly!</p>\\n <p><strong>We will email you</strong> when they have been sent.\\n We will also email you when there is a response to any of them, or after {{late_number_of_days}} working days if the authorities still haven't\\n replied by then.</p>\\n <p>If you write about these requests (for example in a forum or a blog) please link to this page.</p>" +msgstr "" + msgid "<p>{{site_name}} is currently in maintenance. You can only view existing requests. You cannot make new ones, add followups or annotations, or otherwise change the database.</p> <p>{{read_only}}</p>" msgstr "" @@ -315,6 +343,12 @@ msgstr "" msgid "Add an annotation to your request with choice quotes, or\\n a <strong>summary of the response</strong>." msgstr "" +msgid "Add authority - {{public_body_name}}" +msgstr "" + +msgid "Add the authority:" +msgstr "" + msgid "Added on {{date}}" msgstr "" @@ -399,6 +433,15 @@ msgstr "" msgid "Ask for <strong>specific</strong> documents or information, this site is not suitable for general enquiries." msgstr "" +msgid "Ask us to add an authority" +msgstr "" + +msgid "Ask us to update FOI email" +msgstr "" + +msgid "Ask us to update the email address for {{public_body_name}}" +msgstr "" + msgid "At the bottom of this page, write a reply to them trying to persuade them to scan it in\\n (<a href=\"{{url}}\">more details</a>)." msgstr "" @@ -408,6 +451,12 @@ msgstr "" msgid "Attachment:" msgstr "" +msgid "Authority email:" +msgstr "" + +msgid "Authority:" +msgstr "" + msgid "Awaiting classification." msgstr "" @@ -417,6 +466,9 @@ msgstr "" msgid "Awaiting response." msgstr "" +msgid "Batch created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Beginning with" msgstr "" @@ -504,6 +556,9 @@ msgstr "" msgid "Check you haven't included any <strong>personal information</strong>." msgstr "" +msgid "Choose a reason" +msgstr "" + msgid "Choose your profile photo" msgstr "" @@ -528,6 +583,9 @@ msgstr "" msgid "Close" msgstr "" +msgid "Close the request and respond:" +msgstr "" + msgid "Comment" msgstr "" @@ -561,7 +619,7 @@ msgstr "" msgid "Confirm you want to follow the request '{{request_title}}'" msgstr "" -msgid "Confirm your FOI request to " +msgid "Confirm your FOI request to {{public_body_name}}" msgstr "" msgid "Confirm your account on {{site_name}}" @@ -588,12 +646,21 @@ msgstr "" msgid "Contact {{site_name}}" msgstr "" +msgid "Contains defamatory material" +msgstr "" + +msgid "Contains personal information" +msgstr "" + msgid "Could not identify the request from the email address" msgstr "" msgid "Couldn't understand the image file that you uploaded. PNG, JPEG, GIF and many other common image file formats are supported." msgstr "" +msgid "Created by {{info_request_user}} on {{date}}." +msgstr "" + msgid "Crop your profile photo" msgstr "" @@ -606,12 +673,18 @@ msgstr "" msgid "Date:" msgstr "" +msgid "Dear [Authority name]," +msgstr "" + msgid "Dear {{name}}," msgstr "" msgid "Dear {{public_body_name}}," msgstr "" +msgid "Dear {{user_name}}," +msgstr "" + msgid "Default locale" msgstr "" @@ -645,6 +718,9 @@ msgstr "" msgid "Disclosure log URL" msgstr "" +msgid "Don't have a superuser account yet?" +msgstr "" + msgid "Don't want to address your message to {{person_or_body}}? You can also write to:" msgstr "" @@ -687,6 +763,9 @@ msgstr "" msgid "Email me future updates to this request" msgstr "以電郵通知我此要求的未來更新" +msgid "Email:" +msgstr "" + msgid "Enter words that you want to find separated by spaces, e.g. <strong>climbing lane</strong>" msgstr "" @@ -801,6 +880,9 @@ msgstr "" msgid "Follow this link to see the request:" msgstr "" +msgid "Follow this link to see the requests:" +msgstr "" + msgid "Follow this person" msgstr "" @@ -1102,9 +1184,21 @@ msgstr "" msgid "Info request" msgstr "" +msgid "Info request batch" +msgstr "" + msgid "Info request event" msgstr "" +msgid "InfoRequestBatch|Body" +msgstr "" + +msgid "InfoRequestBatch|Sent at" +msgstr "" + +msgid "InfoRequestBatch|Title" +msgstr "" + msgid "InfoRequestEvent|Calculated state" msgstr "" @@ -1207,9 +1301,6 @@ msgstr "" msgid "Link to this" msgstr "" -msgid "List all" -msgstr "" - msgid "List of all authorities (CSV)" msgstr "" @@ -1258,15 +1349,30 @@ msgstr "" msgid "MailServerLog|Order" msgstr "" +msgid "Make a batch request" +msgstr "" + +msgid "Make a new EIR request" +msgstr "" + +msgid "Make a new FOI request" +msgstr "" + msgid "Make a new<br/>\\n <strong>Freedom <span>of</span><br/>\\n Information<br/>\\n request</strong>" msgstr "" msgid "Make a request" msgstr "" +msgid "Make a request to these authorities" +msgstr "" + msgid "Make a request to this authority" msgstr "向此部門或機構提出要求" +msgid "Make an {{law_used_short}} request" +msgstr "" + msgid "Make an {{law_used_short}} request to '{{public_body_name}}'" msgstr "" @@ -1387,9 +1493,15 @@ msgstr "" msgid "Not a valid FOI request" msgstr "" +msgid "Not a valid request" +msgstr "" + msgid "Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf." msgstr "" +msgid "Notes:" +msgstr "" + msgid "Now check your email!" msgstr "" @@ -1447,12 +1559,18 @@ msgstr "" msgid "Only the authority can reply to this request, but there is no \"From\" address to check against" msgstr "" +msgid "Or make a <a href=\"{{url}}\">batch request</a> to <strong>multiple authorities</strong> at once." +msgstr "" + msgid "Or search in their website for this information." msgstr "" msgid "Original request sent" msgstr "" +msgid "Other" +msgstr "" + msgid "Other:" msgstr "" @@ -1588,6 +1706,9 @@ msgstr "" msgid "Please enter the message you want to send" msgstr "" +msgid "Please enter the name of the authority" +msgstr "" + msgid "Please enter the same password twice" msgstr "" @@ -1645,6 +1766,9 @@ msgstr "" msgid "Please sign in or make a new account." msgstr "" +msgid "Please tell us more:" +msgstr "" + msgid "Please type a message and/or choose a file containing your response." msgstr "" @@ -1711,6 +1835,12 @@ msgstr "" msgid "Preview new annotation on '{{info_request_title}}'" msgstr "" +msgid "Preview new {{law_used_short}} request" +msgstr "" + +msgid "Preview new {{law_used_short}} request to '{{public_body_name}}" +msgstr "" + msgid "Preview your annotation" msgstr "" @@ -1765,6 +1895,9 @@ msgstr "" msgid "Public body" msgstr "" +msgid "Public body change request" +msgstr "" + msgid "Public notes" msgstr "" @@ -1774,6 +1907,27 @@ msgstr "" msgid "Public page not available" msgstr "" +msgid "PublicBodyChangeRequest|Is open" +msgstr "" + +msgid "PublicBodyChangeRequest|Notes" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body email" +msgstr "" + +msgid "PublicBodyChangeRequest|Public body name" +msgstr "" + +msgid "PublicBodyChangeRequest|Source url" +msgstr "" + +msgid "PublicBodyChangeRequest|User email" +msgstr "" + +msgid "PublicBodyChangeRequest|User name" +msgstr "" + msgid "PublicBody|Api key" msgstr "" @@ -1888,6 +2042,9 @@ msgstr "" msgid "Reported for administrator attention." msgstr "" +msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." +msgstr "" + msgid "Request an internal review" msgstr "" @@ -1897,6 +2054,9 @@ msgstr "" msgid "Request email" msgstr "" +msgid "Request for personal information" +msgstr "" + msgid "Request has been removed" msgstr "" @@ -1930,6 +2090,9 @@ msgstr "與 {{request_title}} 相似的要求" msgid "Requests similar to '{{request_title}}' (page {{page}})" msgstr "與 {{request_title}} 第{{page}}頁相似的要求" +msgid "Requests will be sent to the following bodies:" +msgstr "" + msgid "Respond by email" msgstr "" @@ -1981,6 +2144,9 @@ msgstr "" msgid "Search contributions by this person" msgstr "" +msgid "Search for the authorities you'd like information from:" +msgstr "" + msgid "Search for words in:" msgstr "" @@ -2012,6 +2178,9 @@ msgstr "" msgid "Select one to see more information about the authority." msgstr "" +msgid "Select the authorities to write to" +msgstr "" + msgid "Select the authority to write to" msgstr "" @@ -2039,6 +2208,10 @@ msgstr "" msgid "Send request" msgstr "" +msgid "Sent to one authority by {{info_request_user}} on {{date}}." +msgid_plural "Sent to {{authority_count}} authorities by {{info_request_user}} on {{date}}." +msgstr[0] "" + msgid "Set your profile photo" msgstr "" @@ -2060,6 +2233,9 @@ msgstr "" msgid "Sign in" msgstr "登入" +msgid "Sign in as the emergency user" +msgstr "" + msgid "Sign in or make a new account" msgstr "登入或註冊" @@ -2108,6 +2284,12 @@ msgstr "" msgid "Sorry, we couldn't find that page" msgstr "" +msgid "Source URL:" +msgstr "" + +msgid "Source:" +msgstr "" + msgid "Special note for this authority!" msgstr "" @@ -2132,6 +2314,9 @@ msgstr "" msgid "Submit" msgstr "" +msgid "Submit request" +msgstr "" + msgid "Submit status" msgstr "" @@ -2195,6 +2380,12 @@ msgstr "" msgid "Thanks for helping - your work will make it easier for everyone to find successful\\nresponses, and maybe even let us make league tables..." msgstr "" +msgid "Thanks for your suggestion to add {{public_body_name}}. It's been added to the site here:" +msgstr "" + +msgid "Thanks for your suggestion to update the email address for {{public_body_name}} to {{public_body_email}}. This has now been done and any new requests will be sent to the new address." +msgstr "" + msgid "Thanks very much - this will help others find useful stuff. We'll\\n also, if you need it, give advice on what to do next about your\\n requests." msgstr "" @@ -2210,12 +2401,18 @@ msgstr "" msgid "The Freedom of Information Act <strong>does not apply</strong> to" msgstr "" +msgid "The URL where you found the email address. This field is optional, but it would help us a lot if you can provide a link to a specific page on the authority's website that gives this address, as it will make it much easier for us to check." +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" msgid "The authority do <strong>not have</strong> the information <small>(maybe they say who does)" msgstr "" +msgid "The authority email doesn't look like a valid address" +msgstr "" + msgid "The authority only has a <strong>paper copy</strong> of the information." msgstr "" @@ -2228,6 +2425,9 @@ msgstr "" msgid "The classification of requests (e.g. to say whether they were successful or not) is done manually by users and administrators of the site, which means that they are subject to error." msgstr "" +msgid "The contact email address for FOI requests to the authority." +msgstr "" + msgid "The email that you, on behalf of {{public_body}}, sent to\\n{{user}} to reply to an {{law_used_short}}\\nrequest has not been delivered." msgstr "" @@ -2312,6 +2512,9 @@ msgstr "" msgid "Then you can log into the administrative interface" msgstr "" +msgid "Then you can make a batch request" +msgstr "" + msgid "Then you can play the request categorisation game." msgstr "" @@ -2372,6 +2575,9 @@ msgstr "" msgid "There is a limit on the number of requests you can make in a day, because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. If you feel you have a good reason to ask for the limit to be lifted in your case, please <a href='{{help_contact_path}}'>get in touch</a>." msgstr "" +msgid "There is nothing to display yet." +msgstr "" + msgid "There is {{count}} person following this request" msgid_plural "There are {{count}} people following this request" msgstr[0] "" @@ -2424,6 +2630,9 @@ msgstr "" msgid "This external request has been hidden" msgstr "" +msgid "This is <a href=\"{{profile_url}}\">{{user_name}}'s</a> wall" +msgstr "" + msgid "This is a plain-text version of the Freedom of Information request \"{{request_title}}\". The latest, full version is available online at {{full_url}}" msgstr "" @@ -2585,6 +2794,9 @@ msgstr "" msgid "To log into the administrative interface" msgstr "" +msgid "To make a batch request" +msgstr "" + msgid "To play the request categorisation game" msgstr "" @@ -2675,15 +2887,15 @@ msgstr "" msgid "Unable to send follow up message to {{username}}" msgstr "" -msgid "Unexpected search result type" -msgstr "" - msgid "Unexpected search result type " msgstr "" msgid "Unfortunately we don't know the FOI\\nemail address for that authority, so we can't validate this.\\nPlease <a href=\"{{url}}\">contact us</a> to sort it out." msgstr "" +msgid "Unfortunately, we do not have a working address for {{public_body_names}}." +msgstr "" + msgid "Unfortunately, we do not have a working {{info_request_law_used_full}}\\naddress for" msgstr "" @@ -2696,6 +2908,12 @@ msgstr "" msgid "Unusual response." msgstr "" +msgid "Update email address - {{public_body_name}}" +msgstr "" + +msgid "Update the address:" +msgstr "" + msgid "Update the status of this request" msgstr "" @@ -2723,6 +2941,9 @@ msgstr "" msgid "UserInfoRequestSentAlert|Alert type" msgstr "" +msgid "Users cannot usually make batch requests to multiple authorities at once because we don’t want public authorities to be bombarded with large numbers of inappropriate requests. Please <a href=\"{{url}}\">contact us</a> if you think you have good reason to send the same request to multiple authorities at once." +msgstr "" + msgid "User|About me" msgstr "" @@ -2732,6 +2953,9 @@ msgstr "" msgid "User|Ban text" msgstr "" +msgid "User|Can make batch requests" +msgstr "" + msgid "User|Email" msgstr "" @@ -2771,6 +2995,9 @@ msgstr "" msgid "Version {{version}}" msgstr "" +msgid "Vexatious" +msgstr "" + msgid "View FOI email address" msgstr "" @@ -2876,6 +3103,9 @@ msgstr "" msgid "Who can I request information from?" msgstr "我可以向哪些部門及機構查閱資料?" +msgid "Why specifically do you consider this request unsuitable?" +msgstr "" + msgid "Withdrawn by the requester." msgstr "" @@ -2900,6 +3130,9 @@ msgstr "" msgid "You" msgstr "" +msgid "You already created the same batch of requests on {{date}}. You can either view the <a href=\"{{existing_batch}}\">existing batch</a>, or edit the details below to make a new but similar batch of requests." +msgstr "" + msgid "You are already following new requests" msgstr "" @@ -2969,6 +3202,9 @@ msgstr "" msgid "You may <strong>include attachments</strong>. If you would like to attach a\\n file too large for email, use the form below." msgstr "" +msgid "You may be able to find one on their website, or by phoning them up and asking. If you manage to find one, then please send it to us:" +msgstr "" + msgid "You may be able to find\\n one on their website, or by phoning them up and asking. If you manage\\n to find one, then please <a href=\"{{url}}\">send it to us</a>." msgstr "" @@ -3032,12 +3268,18 @@ msgstr "" msgid "Your annotations" msgstr "" +msgid "Your batch request \"{{title}}\" has been sent" +msgstr "" + msgid "Your details, including your email address, have not been given to anyone." msgstr "" msgid "Your e-mail:" msgstr "" +msgid "Your email doesn't look like a valid address" +msgstr "" + msgid "Your follow up has not been sent because this request has been stopped to prevent spam. Please <a href=\"{{url}}\">contact us</a> if you really want to send a follow up message." msgstr "" @@ -3086,6 +3328,18 @@ msgstr "" msgid "Your request on {{site_name}} hidden" msgstr "" +msgid "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to add {{public_body_name}} to {{site_name}}" +msgstr "" + +msgid "Your request to update the address for {{public_body_name}} has been sent. Thank you for getting in touch! We'll get back to you soon." +msgstr "" + +msgid "Your request to update {{public_body_name}} on {{site_name}}" +msgstr "" + msgid "Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on" msgstr "" @@ -3098,6 +3352,9 @@ msgstr "" msgid "Your response will <strong>appear on the Internet</strong>, <a href=\"{{url}}\">read why</a> and answers to other questions." msgstr "" +msgid "Your selected authorities" +msgstr "" + msgid "Your thoughts on what the {{site_name}} <strong>administrators</strong> should do about the request." msgstr "" @@ -3109,6 +3366,10 @@ msgid "Your {{count}} annotation" msgid_plural "Your {{count}} annotations" msgstr[0] "" +msgid "Your {{count}} batch requests" +msgid_plural "Your {{count}} batch requests" +msgstr[0] "" + msgid "Your {{site_name}} email alert" msgstr "" @@ -3121,6 +3382,9 @@ msgstr "" msgid "Yours," msgstr "" +msgid "[Authority URL will be inserted here]" +msgstr "" + msgid "[FOI #{{request}} email]" msgstr "" @@ -3466,6 +3730,9 @@ msgstr "" msgid "{{title}} - a Freedom of Information request to {{public_body}}" msgstr "" +msgid "{{title}} - a batch request" +msgstr "" + msgid "{{user_name}} (Account suspended)" msgstr "" @@ -3490,6 +3757,12 @@ msgstr "" msgid "{{user_name}} sent a request to {{public_body}}" msgstr "" +msgid "{{user_name}} would like a new authority added to {{site_name}}" +msgstr "" + +msgid "{{user_name}} would like the email address for {{public_body_name}} to be updated" +msgstr "" + msgid "{{username}} left an annotation:" msgstr "" diff --git a/script/send-batch-requests b/script/send-batch-requests new file mode 100755 index 000000000..794bab11f --- /dev/null +++ b/script/send-batch-requests @@ -0,0 +1,4 @@ +#!/bin/bash +TOP_DIR="$(dirname "$BASH_SOURCE")/.." +cd "$TOP_DIR" +bundle exec rails runner 'InfoRequestBatch.send_batches' diff --git a/script/site-specific-install.sh b/script/site-specific-install.sh index 8917fd577..7d47a5990 100755 --- a/script/site-specific-install.sh +++ b/script/site-specific-install.sh @@ -66,6 +66,11 @@ ensure_line_present \ /etc/postfix/main.cf 644 ensure_line_present \ + "^ *myhostname *=" \ + "myhostname = $(hostname --fqdn)" \ + /etc/postfix/main.cf 644 + +ensure_line_present \ "^do-not-reply" \ "do-not-reply-to-this-address: :blackhole:" \ /etc/aliases 644 diff --git a/spec/controllers/admin_public_body_change_requests_controller_spec.rb b/spec/controllers/admin_public_body_change_requests_controller_spec.rb new file mode 100644 index 000000000..b478e851d --- /dev/null +++ b/spec/controllers/admin_public_body_change_requests_controller_spec.rb @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe AdminPublicBodyChangeRequestsController, "editing a change request" do + + it "should render the edit template" do + change_request = FactoryGirl.create(:add_body_request) + get :edit, :id => change_request.id + response.should render_template("edit") + end + +end + +describe AdminPublicBodyChangeRequestsController, 'updating a change request' do + + before do + @change_request = FactoryGirl.create(:add_body_request) + post :update, { :id => @change_request.id, + :response => 'Thanks but no', + :subject => 'Your request' } + end + + it 'should close the change request' do + PublicBodyChangeRequest.find(@change_request.id).is_open.should == false + end + + it 'should send a response email to the user who requested the change' do + deliveries = ActionMailer::Base.deliveries + deliveries.size.should == 1 + mail = deliveries[0] + mail.subject.should == 'Your request' + mail.to.should == [@change_request.get_user_email] + mail.body.should =~ /Thanks but no/ + end +end diff --git a/spec/controllers/admin_public_body_controller_spec.rb b/spec/controllers/admin_public_body_controller_spec.rb index fe5087d7c..095d23245 100644 --- a/spec/controllers/admin_public_body_controller_spec.rb +++ b/spec/controllers/admin_public_body_controller_spec.rb @@ -1,6 +1,6 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') -describe AdminPublicBodyController, "when administering public bodies" do +describe AdminPublicBodyController, "when showing the index of public bodies" do render_views it "shows the index page" do @@ -12,28 +12,255 @@ describe AdminPublicBodyController, "when administering public bodies" do assigns[:public_bodies].should == [ public_bodies(:humpadink_public_body) ] end + it "searches for 'humpa' in another locale" do + get :index, {:query => "humpa", :locale => "es"} + assigns[:public_bodies].should == [ public_bodies(:humpadink_public_body) ] + end + +end + +describe AdminPublicBodyController, "when showing a public body" do + render_views + it "shows a public body" do get :show, :id => 2 end - it "creates a new public body" do + it "sets a using_admin flag" do + get :show, :id => 2 + session[:using_admin].should == 1 + end + + it "shows a public body in another locale" do + get :show, {:id => 2, :locale => "es" } + end + +end + +describe AdminPublicBodyController, 'when showing the form for a new public body' do + + it 'should assign a new public body to the view' do + get :new + assigns[:public_body].should be_a(PublicBody) + end + + context 'when passed a change request id as a param' do + render_views + + it 'should populate the name, email address and last edit comment on the public body' do + change_request = FactoryGirl.create(:add_body_request) + get :new, :change_request_id => change_request.id + assigns[:public_body].name.should == change_request.public_body_name + assigns[:public_body].request_email.should == change_request.public_body_email + assigns[:public_body].last_edit_comment.should match('Notes: Please') + end + + it 'should assign a default response text to the view' do + change_request = FactoryGirl.create(:add_body_request) + get :new, :change_request_id => change_request.id + assigns[:change_request_user_response].should match("Thanks for your suggestion to add A New Body") + end + end + +end + +describe AdminPublicBodyController, "when creating a public body" do + render_views + + it "creates a new public body in one locale" do + n = PublicBody.count + post :create, { :public_body => { :name => "New Quango", + :short_name => "", + :tag_string => "blah", + :request_email => 'newquango@localhost', + :last_edit_comment => 'From test code' } } + PublicBody.count.should == n + 1 + + body = PublicBody.find_by_name("New Quango") + response.should redirect_to(:controller=>'admin_public_body', :action=>'show', :id=>body.id) + end + + it "creates a new public body with multiple locales" do n = PublicBody.count - post :create, { :public_body => { :name => "New Quango", :short_name => "", :tag_string => "blah", :request_email => 'newquango@localhost', :last_edit_comment => 'From test code' } } + post :create, { + :public_body => { :name => "New Quango", + :short_name => "", + :tag_string => "blah", + :request_email => 'newquango@localhost', + :last_edit_comment => 'From test code', + :translated_versions => [{ :locale => "es", + :name => "Mi Nuevo Quango", + :short_name => "", + :request_email => 'newquango@localhost' }] + } + } PublicBody.count.should == n + 1 + + body = PublicBody.find_by_name("New Quango") + body.translations.map {|t| t.locale.to_s}.sort.should == ["en", "es"] + I18n.with_locale(:en) do + body.name.should == "New Quango" + body.url_name.should == "new_quango" + body.first_letter.should == "N" + end + I18n.with_locale(:es) do + body.name.should == "Mi Nuevo Quango" + body.url_name.should == "mi_nuevo_quango" + body.first_letter.should == "M" + end + + response.should redirect_to(:controller=>'admin_public_body', :action=>'show', :id=>body.id) + end + + context 'when the body is being created as a result of a change request' do + + before do + @change_request = FactoryGirl.create(:add_body_request) + post :create, { :public_body => { :name => "New Quango", + :short_name => "", + :tag_string => "blah", + :request_email => 'newquango@localhost', + :last_edit_comment => 'From test code' }, + :change_request_id => @change_request.id, + :subject => 'Adding a new body', + :response => 'The URL will be [Authority URL will be inserted here]'} + end + + it 'should send a response to the requesting user' do + deliveries = ActionMailer::Base.deliveries + deliveries.size.should == 1 + mail = deliveries[0] + mail.subject.should == 'Adding a new body' + mail.to.should == [@change_request.get_user_email] + mail.body.should =~ /The URL will be http:\/\/test.host\/body\/new_quango/ + end + + it 'should mark the change request as closed' do + PublicBodyChangeRequest.find(@change_request.id).is_open.should be_false + end + end +end + +describe AdminPublicBodyController, "when editing a public body" do + render_views + it "edits a public body" do get :edit, :id => 2 end + it "edits a public body in another locale" do + get :edit, {:id => 3, :locale => :en} + + # When editing a body, the controller returns all available translations + assigns[:public_body].find_translation_by_locale("es").name.should == 'El Department for Humpadinking' + assigns[:public_body].name.should == 'Department for Humpadinking' + response.should render_template('edit') + end + + context 'when passed a change request id as a param' do + render_views + + before do + @change_request = FactoryGirl.create(:update_body_request) + get :edit, :id => @change_request.public_body_id, :change_request_id => @change_request.id + end + + it 'should populate the email address and last edit comment on the public body' do + change_request = FactoryGirl.create(:update_body_request) + get :edit, :id => change_request.public_body_id, :change_request_id => change_request.id + assigns[:public_body].request_email.should == @change_request.public_body_email + assigns[:public_body].last_edit_comment.should match('Notes: Please') + end + + it 'should assign a default response text to the view' do + assigns[:change_request_user_response].should match("Thanks for your suggestion to update the email address") + end + end + +end + +describe AdminPublicBodyController, "when updating a public body" do + render_views + it "saves edits to a public body" do public_bodies(:humpadink_public_body).name.should == "Department for Humpadinking" - post :update, { :id => 3, :public_body => { :name => "Renamed", :short_name => "", :tag_string => "some tags", :request_email => 'edited@localhost', :last_edit_comment => 'From test code' } } + post :update, { :id => 3, :public_body => { :name => "Renamed", + :short_name => "", + :tag_string => "some tags", + :request_email => 'edited@localhost', + :last_edit_comment => 'From test code' } } request.flash[:notice].should include('successful') pb = PublicBody.find(public_bodies(:humpadink_public_body).id) pb.name.should == "Renamed" end + it "saves edits to a public body in another locale" do + I18n.with_locale(:es) do + pb = PublicBody.find(id=3) + pb.name.should == "El Department for Humpadinking" + post :update, { + :id => 3, + :public_body => { + :name => "Department for Humpadinking", + :short_name => "", + :tag_string => "some tags", + :request_email => 'edited@localhost', + :last_edit_comment => 'From test code', + :translated_versions => { + 3 => {:locale => "es", + :name => "Renamed", + :short_name => "", + :request_email => 'edited@localhost'} + } + } + } + request.flash[:notice].should include('successful') + end + + pb = PublicBody.find(public_bodies(:humpadink_public_body).id) + I18n.with_locale(:es) do + pb.name.should == "Renamed" + end + I18n.with_locale(:en) do + pb.name.should == "Department for Humpadinking" + end + end + + context 'when the body is being updated as a result of a change request' do + + before do + @change_request = FactoryGirl.create(:update_body_request) + post :update, { :id => @change_request.public_body_id, + :public_body => { :name => "New Quango", + :short_name => "", + :request_email => 'newquango@localhost', + :last_edit_comment => 'From test code' }, + :change_request_id => @change_request.id, + :subject => 'Body update', + :response => 'Done.'} + end + + it 'should send a response to the requesting user' do + deliveries = ActionMailer::Base.deliveries + deliveries.size.should == 1 + mail = deliveries[0] + mail.subject.should == 'Body update' + mail.to.should == [@change_request.get_user_email] + mail.body.should =~ /Done./ + end + + it 'should mark the change request as closed' do + PublicBodyChangeRequest.find(@change_request.id).is_open.should be_false + end + + end +end + +describe AdminPublicBodyController, "when destroying a public body" do + render_views + it "does not destroy a public body that has associated requests" do id = public_bodies(:humpadink_public_body).id n = PublicBody.count @@ -49,10 +276,10 @@ describe AdminPublicBodyController, "when administering public bodies" do PublicBody.count.should == n - 1 end - it "sets a using_admin flag" do - get :show, :id => 2 - session[:using_admin].should == 1 - end +end + +describe AdminPublicBodyController, "when assigning public body tags" do + render_views it "mass assigns tags" do condition = "public_body_translations.locale = ?" @@ -62,81 +289,81 @@ describe AdminPublicBodyController, "when administering public bodies" do response.should redirect_to(:action=>'list') PublicBody.find_by_tag("department").count.should == n end +end - describe 'import_csv' do +describe AdminPublicBodyController, "when importing a csv" do + render_views - describe 'when handling a GET request' do + describe 'when handling a GET request' do - it 'should get the page successfully' do - get :import_csv - response.should be_success - end + it 'should get the page successfully' do + get :import_csv + response.should be_success + end + end + + describe 'when handling a POST request' do + + before do + PublicBody.stub!(:import_csv).and_return([[],[]]) + @file_object = fixture_file_upload('/files/fake-authority-type.csv') end - describe 'when handling a POST request' do + it 'should handle a nil csv file param' do + post :import_csv, { :commit => 'Dry run' } + response.should be_success + end - before do - PublicBody.stub!(:import_csv).and_return([[],[]]) - @file_object = fixture_file_upload('/files/fake-authority-type.csv') + describe 'if there is a csv file param' do + + it 'should try to get the contents and original name of a csv file param' do + @file_object.should_receive(:read).and_return('some contents') + post :import_csv, { :csv_file => @file_object, + :commit => 'Dry run'} end - it 'should handle a nil csv file param' do - post :import_csv, { :commit => 'Dry run' } - response.should be_success + it 'should assign the original filename to the view' do + post :import_csv, { :csv_file => @file_object, + :commit => 'Dry run'} + assigns[:original_csv_file].should == 'fake-authority-type.csv' end - describe 'if there is a csv file param' do + end - it 'should try to get the contents and original name of a csv file param' do - @file_object.should_receive(:read).and_return('some contents') - post :import_csv, { :csv_file => @file_object, - :commit => 'Dry run'} - end + describe 'if there is no csv file param, but there are temporary_csv_file and + original_csv_file params' do - it 'should assign the original filename to the view' do - post :import_csv, { :csv_file => @file_object, - :commit => 'Dry run'} - assigns[:original_csv_file].should == 'fake-authority-type.csv' - end + it 'should try and get the file contents from a temporary file whose name + is passed as a param' do + @controller.should_receive(:retrieve_csv_data).with('csv_upload-2046-12-31-394') + post :import_csv, { :temporary_csv_file => 'csv_upload-2046-12-31-394', + :original_csv_file => 'original_contents.txt', + :commit => 'Dry run'} + end + it 'should raise an error on an invalid temp file name' do + params = { :temporary_csv_file => 'bad_name', + :original_csv_file => 'original_contents.txt', + :commit => 'Dry run'} + expected_error = "Invalid filename in upload_csv: bad_name" + lambda{ post :import_csv, params }.should raise_error(expected_error) end - describe 'if there is no csv file param, but there are temporary_csv_file and - original_csv_file params' do - - it 'should try and get the file contents from a temporary file whose name - is passed as a param' do - @controller.should_receive(:retrieve_csv_data).with('csv_upload-2046-12-31-394') - post :import_csv, { :temporary_csv_file => 'csv_upload-2046-12-31-394', - :original_csv_file => 'original_contents.txt', - :commit => 'Dry run'} - end - - it 'should raise an error on an invalid temp file name' do - params = { :temporary_csv_file => 'bad_name', - :original_csv_file => 'original_contents.txt', - :commit => 'Dry run'} - expected_error = "Invalid filename in upload_csv: bad_name" - lambda{ post :import_csv, params }.should raise_error(expected_error) - end - - it 'should raise an error if the temp file does not exist' do - temp_name = "csv_upload-20461231-394" - params = { :temporary_csv_file => temp_name, - :original_csv_file => 'original_contents.txt', - :commit => 'Dry run'} - expected_error = "Missing file in upload_csv: csv_upload-20461231-394" - lambda{ post :import_csv, params }.should raise_error(expected_error) - end - - it 'should assign the temporary filename to the view' do - post :import_csv, { :csv_file => @file_object, - :commit => 'Dry run'} - temporary_filename = assigns[:temporary_csv_file] - temporary_filename.should match(/csv_upload-#{Time.now.strftime("%Y%m%d")}-\d{1,5}/) - end + it 'should raise an error if the temp file does not exist' do + temp_name = "csv_upload-20461231-394" + params = { :temporary_csv_file => temp_name, + :original_csv_file => 'original_contents.txt', + :commit => 'Dry run'} + expected_error = "Missing file in upload_csv: csv_upload-20461231-394" + lambda{ post :import_csv, params }.should raise_error(expected_error) + end + it 'should assign the temporary filename to the view' do + post :import_csv, { :csv_file => @file_object, + :commit => 'Dry run'} + temporary_filename = assigns[:temporary_csv_file] + temporary_filename.should match(/csv_upload-#{Time.now.strftime("%Y%m%d")}-\d{1,5}/) end end @@ -266,103 +493,3 @@ describe AdminPublicBodyController, "when administering public bodies and paying end end -describe AdminPublicBodyController, "when administering public bodies with i18n" do - render_views - - it "shows the index page" do - get :index - end - - it "searches for 'humpa'" do - get :index, {:query => "humpa", :locale => "es"} - assigns[:public_bodies].should == [ public_bodies(:humpadink_public_body) ] - end - - it "shows a public body" do - get :show, {:id => 2, :locale => "es" } - end - - it "edits a public body" do - get :edit, {:id => 3, :locale => :en} - - # When editing a body, the controller returns all available translations - assigns[:public_body].find_translation_by_locale("es").name.should == 'El Department for Humpadinking' - assigns[:public_body].name.should == 'Department for Humpadinking' - response.should render_template('edit') - end - - it "saves edits to a public body" do - I18n.with_locale(:es) do - pb = PublicBody.find(id=3) - pb.name.should == "El Department for Humpadinking" - post :update, { - :id => 3, - :public_body => { - :name => "Department for Humpadinking", - :short_name => "", - :tag_string => "some tags", - :request_email => 'edited@localhost', - :last_edit_comment => 'From test code', - :translated_versions => { - 3 => {:locale => "es", :name => "Renamed",:short_name => "", :request_email => 'edited@localhost'} - } - } - } - request.flash[:notice].should include('successful') - end - - pb = PublicBody.find(public_bodies(:humpadink_public_body).id) - I18n.with_locale(:es) do - pb.name.should == "Renamed" - end - I18n.with_locale(:en) do - pb.name.should == "Department for Humpadinking" - end - end - - it "destroy a public body" do - n = PublicBody.count - post :destroy, { :id => public_bodies(:forlorn_public_body).id } - PublicBody.count.should == n - 1 - end - -end - -describe AdminPublicBodyController, "when creating public bodies with i18n" do - render_views - - it "creates a new public body in one locale" do - n = PublicBody.count - post :create, { :public_body => { :name => "New Quango", :short_name => "", :tag_string => "blah", :request_email => 'newquango@localhost', :last_edit_comment => 'From test code' } } - PublicBody.count.should == n + 1 - - body = PublicBody.find_by_name("New Quango") - response.should redirect_to(:controller=>'admin_public_body', :action=>'show', :id=>body.id) - end - - it "creates a new public body with multiple locales" do - n = PublicBody.count - post :create, { - :public_body => { - :name => "New Quango", :short_name => "", :tag_string => "blah", :request_email => 'newquango@localhost', :last_edit_comment => 'From test code', - :translated_versions => [{ :locale => "es", :name => "Mi Nuevo Quango", :short_name => "", :request_email => 'newquango@localhost' }] - } - } - PublicBody.count.should == n + 1 - - body = PublicBody.find_by_name("New Quango") - body.translations.map {|t| t.locale.to_s}.sort.should == ["en", "es"] - I18n.with_locale(:en) do - body.name.should == "New Quango" - body.url_name.should == "new_quango" - body.first_letter.should == "N" - end - I18n.with_locale(:es) do - body.name.should == "Mi Nuevo Quango" - body.url_name.should == "mi_nuevo_quango" - body.first_letter.should == "M" - end - - response.should redirect_to(:controller=>'admin_public_body', :action=>'show', :id=>body.id) - end -end diff --git a/spec/controllers/admin_user_controller_spec.rb b/spec/controllers/admin_user_controller_spec.rb index a6e5a0d7e..99894a414 100644 --- a/spec/controllers/admin_user_controller_spec.rb +++ b/spec/controllers/admin_user_controller_spec.rb @@ -15,13 +15,32 @@ describe AdminUserController, "when administering users" do it "shows a user" do get :show, :id => users(:bob_smith_user) end - + it "logs in as another user" do get :login_as, :id => users(:bob_smith_user).id post_redirect = PostRedirect.get_last_post_redirect response.should redirect_to(:controller => 'user', :action => 'confirm', :email_token => post_redirect.email_token) end - + # See also "allows an admin to log in as another user" in spec/integration/admin_spec.rb end +describe AdminUserController, "when updating a user" do + + it "saves a change to 'can_make_batch_requests'" do + user = FactoryGirl.create(:user) + user.can_make_batch_requests?.should be_false + post :update, {:id => user.id, :admin_user => {:can_make_batch_requests => '1', + :name => user.name, + :email => user.email, + :admin_level => user.admin_level, + :ban_text => user.ban_text, + :about_me => user.about_me, + :no_limit => user.no_limit}} + flash[:notice].should == 'User successfully updated.' + response.should be_redirect + user = User.find(user.id) + user.can_make_batch_requests?.should be_true + end + +end diff --git a/spec/controllers/api_controller_spec.rb b/spec/controllers/api_controller_spec.rb index 2b1c515f7..6b02bd5b4 100644 --- a/spec/controllers/api_controller_spec.rb +++ b/spec/controllers/api_controller_spec.rb @@ -1,18 +1,6 @@ # coding: utf-8 require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') -def normalise_whitespace(s) - s = s.gsub(/\A\s+|\s+\Z/, "") - s = s.gsub(/\s+/, " ") - return s -end - -RSpec::Matchers.define :be_equal_modulo_whitespace_to do |expected| - match do |actual| - normalise_whitespace(actual) == normalise_whitespace(expected) - end -end - describe ApiController, "when using the API" do describe 'checking API keys' do diff --git a/spec/controllers/info_request_batch_controller_spec.rb b/spec/controllers/info_request_batch_controller_spec.rb new file mode 100644 index 000000000..d08f02e10 --- /dev/null +++ b/spec/controllers/info_request_batch_controller_spec.rb @@ -0,0 +1,53 @@ +# coding: utf-8 +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe InfoRequestBatchController, "when showing a request" do + + before do + @first_public_body = FactoryGirl.create(:public_body) + @second_public_body = FactoryGirl.create(:public_body) + @info_request_batch = FactoryGirl.create(:info_request_batch, :title => 'Matched title', + :body => 'Matched body', + :public_bodies => [@first_public_body, + @second_public_body]) + @first_request = FactoryGirl.create(:info_request, :info_request_batch => @info_request_batch, + :public_body => @first_public_body) + @second_request = FactoryGirl.create(:info_request, :info_request_batch => @info_request_batch, + :public_body => @second_public_body) + @default_params = {:id => @info_request_batch.id} + end + + def make_request(params=@default_params) + get :show, params + end + + it 'should be successful' do + make_request + response.should be_success + end + + it 'should assign an info_request_batch to the view' do + make_request + assigns[:info_request_batch].should == @info_request_batch + end + + context 'when the batch has not been sent' do + + it 'should assign public_bodies to the view' do + make_request + assigns[:public_bodies].should == [@first_public_body, @second_public_body] + end + end + + context 'when the batch has been sent' do + + it 'should assign info_requests to the view' do + @info_request_batch.sent_at = Time.now + @info_request_batch.save! + make_request + assigns[:info_requests].sort.should == [@first_request, @second_request] + end + + end + +end diff --git a/spec/controllers/public_body_change_requests_controller_spec.rb b/spec/controllers/public_body_change_requests_controller_spec.rb new file mode 100644 index 000000000..7b878b893 --- /dev/null +++ b/spec/controllers/public_body_change_requests_controller_spec.rb @@ -0,0 +1,99 @@ +# -*- coding: utf-8 -*- +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe PublicBodyChangeRequestsController, "making a new change request" do + + it "should show the form" do + get :new + response.should render_template("new") + end + +end + +describe PublicBodyChangeRequestsController, "creating a change request" do + + context 'when handling a request for a new authority' do + + before do + @email = "test@example.com" + name = "Test User" + @change_request_params = {:user_email => @email, + :user_name => name, + :public_body_name => 'New Body', + :public_body_email => 'new_body@example.com', + :notes => 'Please', + :source => 'http://www.example.com'} + end + + it "should send an email to the site contact address" do + post :create, {:public_body_change_request => @change_request_params} + deliveries = ActionMailer::Base.deliveries + deliveries.size.should == 1 + mail = deliveries[0] + mail.subject.should =~ /Add authority - New Body/ + mail.from.should include(@email) + mail.to.should include('postmaster@localhost') + mail.body.should include('new_body@example.com') + mail.body.should include('New Body') + mail.body.should include("Please") + mail.body.should include('http://test.host/admin/body/new?change_request_id=') + mail.body.should include('http://test.host/admin/change_request/edit/') + end + + it 'should show a notice' do + post :create, {:public_body_change_request => @change_request_params} + expected_text = "Your request to add an authority has been sent. Thank you for getting in touch! We'll get back to you soon." + flash[:notice].should == expected_text + end + + it 'should redirect to the frontpage' do + post :create, {:public_body_change_request => @change_request_params} + response.should redirect_to frontpage_url + end + + end + + context 'when handling a request for an update to an existing authority' do + + before do + @email = "test@example.com" + name = "Test User" + @public_body = FactoryGirl.create(:public_body) + @change_request_params = {:user_email => @email, + :user_name => name, + :public_body_id => @public_body.id, + :public_body_email => 'new_body@example.com', + :notes => 'Please', + :source => 'http://www.example.com'} + end + + it 'should send an email to the site contact address' do + post :create, {:public_body_change_request => @change_request_params} + deliveries = ActionMailer::Base.deliveries + deliveries.size.should == 1 + mail = deliveries[0] + mail.subject.should =~ /Update email address - #{@public_body.name}/ + mail.from.should include(@email) + mail.to.should include('postmaster@localhost') + mail.body.should include('new_body@example.com') + mail.body.should include(@public_body.name) + mail.body.should include("Please") + mail.body.should include("http://test.host/admin/body/edit/#{@public_body.id}?change_request_id=") + mail.body.should include('http://test.host/admin/change_request/edit/') + end + + it 'should show a notice' do + post :create, {:public_body_change_request => @change_request_params} + expected_text = "Your request to update the address for #{@public_body.name} has been sent. Thank you for getting in touch! We'll get back to you soon." + flash[:notice].should == expected_text + end + + it 'should redirect to the frontpage' do + post :create, {:public_body_change_request => @change_request_params} + response.should redirect_to frontpage_url + end + + end + + +end diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index def9dfc7e..1e7df4536 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -17,92 +17,6 @@ describe RequestController, "when listing recent requests" do response.should render_template('list') end - it "should filter requests" do - get :list, :view => 'all' - assigns[:list_results].map(&:info_request).should =~ InfoRequest.all - - # default sort order is the request with the most recently created event first - assigns[:list_results].map(&:info_request).should == InfoRequest.all( - :order => "(select max(info_request_events.created_at) from info_request_events where info_request_events.info_request_id = info_requests.id) DESC") - - get :list, :view => 'successful' - assigns[:list_results].map(&:info_request).should =~ InfoRequest.all( - :conditions => "id in ( - select info_request_id - from info_request_events - where not exists ( - select * - from info_request_events later_events - where later_events.created_at > info_request_events.created_at - and later_events.info_request_id = info_request_events.info_request_id - and later_events.described_state is not null - ) - and info_request_events.described_state in ('successful', 'partially_successful') - )") - end - - it "should filter requests by date" do - # The semantics of the search are that it finds any InfoRequest - # that has any InfoRequestEvent created in the specified range - - get :list, :view => 'all', :request_date_before => '13/10/2007' - assigns[:list_results].map(&:info_request).should =~ InfoRequest.all( - :conditions => "id in (select info_request_id from info_request_events where created_at < '2007-10-13'::date)") - - get :list, :view => 'all', :request_date_after => '13/10/2007' - assigns[:list_results].map(&:info_request).should =~ InfoRequest.all( - :conditions => "id in (select info_request_id from info_request_events where created_at > '2007-10-13'::date)") - - get :list, :view => 'all', :request_date_after => '13/10/2007', :request_date_before => '01/11/2007' - assigns[:list_results].map(&:info_request).should =~ InfoRequest.all( - :conditions => "id in (select info_request_id from info_request_events where created_at between '2007-10-13'::date and '2007-11-01'::date)") - end - - it "should list internal_review requests as unresolved ones" do - get :list, :view => 'awaiting' - - # This doesn’t precisely duplicate the logic of the actual - # query, but it is close enough to give the same result with - # the current set of test data. - assigns[:list_results].should =~ InfoRequestEvent.all( - :conditions => "described_state in ( - 'waiting_response', 'waiting_clarification', - 'internal_review', 'gone_postal', 'error_message', 'requires_admin' - ) and not exists ( - select * - from info_request_events later_events - where later_events.created_at > info_request_events.created_at - and later_events.info_request_id = info_request_events.info_request_id - )") - - - get :list, :view => 'awaiting' - assigns[:list_results].map(&:info_request).include?(info_requests(:fancy_dog_request)).should == false - - event = info_request_events(:useless_incoming_message_event) - event.described_state = event.calculated_state = "internal_review" - event.save! - rebuild_xapian_index - - get :list, :view => 'awaiting' - assigns[:list_results].map(&:info_request).include?(info_requests(:fancy_dog_request)).should == true - end - - it "should assign the first page of results" do - xap_results = mock(ActsAsXapian::Search, - :results => (1..25).to_a.map { |m| { :model => m } }, - :matches_estimated => 1000000) - - ActsAsXapian::Search.should_receive(:new). - with([InfoRequestEvent]," (variety:sent OR variety:followup_sent OR variety:response OR variety:comment)", - :sort_by_prefix => "created_at", :offset => 0, :limit => 25, :sort_by_ascending => true, - :collapse_by_prefix => "request_collapse"). - and_return(xap_results) - get :list, :view => 'all' - assigns[:list_results].size.should == 25 - assigns[:show_no_more_than].should == RequestController::MAX_RESULTS - end - it "should return 404 for pages we don't want to serve up" do xap_results = mock(ActsAsXapian::Search, :results => (1..25).to_a.map { |m| { :model => m } }, @@ -897,7 +811,7 @@ describe RequestController, "when handling prominence" do expect_hidden('request/hidden_correspondence') end - it 'should download attachments for an admin user', :focus => true do + it 'should download attachments for an admin user' do session[:user_id] = FactoryGirl.create(:admin_user).id get :get_attachment, :incoming_message_id => @incoming_message.id, :id => @info_request.id, @@ -959,7 +873,7 @@ describe RequestController, "when handling prominence" do response.should be_success end - it 'should download attachments for an admin user', :focus => true do + it 'should download attachments for an admin user' do session[:user_id] = FactoryGirl.create(:admin_user).id get :get_attachment, :incoming_message_id => @incoming_message.id, :id => @info_request.id, @@ -2509,3 +2423,268 @@ describe RequestController, "when caching fragments" do end +describe RequestController, "#new_batch" do + + context "when batch requests is enabled" do + + before do + AlaveteliConfiguration.stub!(:allow_batch_requests).and_return(true) + end + + context "when the current user can make batch requests" do + + before do + @user = FactoryGirl.create(:user, :can_make_batch_requests => true) + @public_body = FactoryGirl.create(:public_body) + @other_public_body = FactoryGirl.create(:public_body) + @public_body_ids = [@public_body.id, @other_public_body.id] + @default_post_params = { :info_request => { :title => "What does it all mean?", + :tag_string => "" }, + :public_body_ids => @public_body_ids, + :outgoing_message => { :body => "This is a silly letter." }, + :submitted_new_request => 1, + :preview => 1 } + end + + it 'should be successful' do + get :new_batch, {:public_body_ids => @public_body_ids}, {:user_id => @user.id} + response.should be_success + end + + it 'should render the "new" template' do + get :new_batch, {:public_body_ids => @public_body_ids}, {:user_id => @user.id} + response.should render_template('request/new') + end + + it 'should redirect to "select_authorities" if no public_body_ids param is passed' do + get :new_batch, {}, {:user_id => @user.id} + response.should redirect_to select_authorities_path + end + + it "should render 'preview' when given a good title and body" do + post :new_batch, @default_post_params, { :user_id => @user.id } + response.should render_template('preview') + end + + it "should give an error and render 'new' template when a summary isn't given" do + @default_post_params[:info_request].delete(:title) + post :new_batch, @default_post_params, { :user_id => @user.id } + assigns[:info_request].errors[:title].should == ['Please enter a summary of your request'] + response.should render_template('new') + end + + it "should allow re-editing of a request" do + params = @default_post_params.merge(:preview => 0, :reedit => 1) + post :new_batch, params, { :user_id => @user.id } + response.should render_template('new') + end + + context "on success" do + + def make_request + @params = @default_post_params.merge(:preview => 0) + post :new_batch, @params, { :user_id => @user.id } + end + + it 'should create an info request batch and redirect to the new batch on success' do + make_request + new_info_request_batch = assigns[:info_request_batch] + new_info_request_batch.should_not be_nil + response.should redirect_to(info_request_batch_path(new_info_request_batch)) + end + + it 'should prevent double submission of a batch request' do + make_request + post :new_batch, @params, { :user_id => @user.id } + response.should render_template('new') + assigns[:existing_batch].should_not be_nil + end + + it 'should display a success notice' do + make_request + notice_text = "<p>Your Freedom of Information requests will be <strong>sent</strong> shortly!" + flash[:notice].should match notice_text + end + + end + + context "when the user is banned" do + + before do + @user.ban_text = "bad behaviour" + @user.save! + end + + it 'should show the "banned" template' do + post :new_batch, @default_post_params, { :user_id => @user.id } + response.should render_template('user/banned') + assigns[:details].should == 'bad behaviour' + end + + end + + end + + context "when the current user can't make batch requests" do + + render_views + + before do + @user = FactoryGirl.create(:user) + end + + it 'should return a 403 with an appropriate message' do + get :new_batch, {}, {:user_id => @user.id} + response.code.should == '403' + response.body.should match("Users cannot usually make batch requests to multiple authorities at once") + end + + end + + context 'when there is no logged-in user' do + + it 'should return a redirect to the login page' do + get :new_batch + post_redirect = PostRedirect.get_last_post_redirect + response.should redirect_to(:controller => 'user', :action => 'signin', :token => post_redirect.token) + end + end + + + end + + context "when batch requests is not enabled" do + + it 'should return a 404' do + Rails.application.config.stub!(:consider_all_requests_local).and_return(false) + get :new_batch + response.code.should == '404' + end + + end + +end + +describe RequestController, "#select_authorities" do + + context "when batch requests is enabled" do + + before do + get_fixtures_xapian_index + load_raw_emails_data + AlaveteliConfiguration.stub!(:allow_batch_requests).and_return(true) + end + + context "when the current user can make batch requests" do + + before do + @user = FactoryGirl.create(:user, :can_make_batch_requests => true) + end + + context 'when asked for HTML' do + + it 'should be successful' do + get :select_authorities, {}, {:user_id => @user.id} + response.should be_success + end + + it 'should render the "select_authorities" template' do + get :select_authorities, {}, {:user_id => @user.id} + response.should render_template('request/select_authorities') + end + + it 'should assign a list of search results to the view if passed a query' do + get :select_authorities, {:public_body_query => "Quango"}, {:user_id => @user.id} + assigns[:search_bodies].results.size.should == 1 + assigns[:search_bodies].results[0][:model].name.should == public_bodies(:geraldine_public_body).name + end + + it 'should assign a list of public bodies to the view if passed a list of ids' do + get :select_authorities, {:public_body_ids => [public_bodies(:humpadink_public_body).id]}, + {:user_id => @user.id} + assigns[:public_bodies].size.should == 1 + assigns[:public_bodies][0].name.should == public_bodies(:humpadink_public_body).name + end + + it 'should subtract a list of public bodies to remove from the list of bodies assigned to + the view' do + get :select_authorities, {:public_body_ids => [public_bodies(:humpadink_public_body).id, + public_bodies(:geraldine_public_body).id], + :remove_public_body_ids => [public_bodies(:geraldine_public_body).id]}, + {:user_id => @user.id} + assigns[:public_bodies].size.should == 1 + assigns[:public_bodies][0].name.should == public_bodies(:humpadink_public_body).name + end + + end + + context 'when asked for JSON', :focus => true do + + it 'should be successful' do + get :select_authorities, {:public_body_query => "Quan", :format => 'json'}, {:user_id => @user.id} + response.should be_success + end + + it 'should return a list of public body names and ids' do + get :select_authorities, {:public_body_query => "Quan", :format => 'json'}, + {:user_id => @user.id} + + JSON(response.body).should == [{ 'id' => public_bodies(:geraldine_public_body).id, + 'name' => public_bodies(:geraldine_public_body).name }] + end + + it 'should return an empty list if no search is passed' do + get :select_authorities, {:format => 'json' },{:user_id => @user.id} + JSON(response.body).should == [] + end + + it 'should return an empty list if there are no bodies' do + get :select_authorities, {:public_body_query => 'fknkskalnr', :format => 'json' }, + {:user_id => @user.id} + JSON(response.body).should == [] + end + + end + + end + + context "when the current user can't make batch requests" do + + render_views + + before do + @user = FactoryGirl.create(:user) + end + + it 'should return a 403 with an appropriate message' do + get :select_authorities, {}, {:user_id => @user.id} + response.code.should == '403' + response.body.should match("Users cannot usually make batch requests to multiple authorities at once") + end + + end + + context 'when there is no logged-in user' do + + it 'should return a redirect to the login page' do + get :select_authorities + post_redirect = PostRedirect.get_last_post_redirect + response.should redirect_to(:controller => 'user', :action => 'signin', :token => post_redirect.token) + end + end + + + end + + context "when batch requests is not enabled" do + + it 'should return a 404' do + Rails.application.config.stub!(:consider_all_requests_local).and_return(false) + get :select_authorities + response.code.should == '404' + end + + end + +end + diff --git a/spec/controllers/track_controller_spec.rb b/spec/controllers/track_controller_spec.rb index 57d084f6b..40865d2b9 100644 --- a/spec/controllers/track_controller_spec.rb +++ b/spec/controllers/track_controller_spec.rb @@ -10,7 +10,7 @@ describe TrackController, "when making a new track on a request" do :tracking_user_id= => nil) TrackThing.stub!(:create_track_for_request).and_return(@track_thing) TrackThing.stub!(:create_track_for_search_query).and_return(@track_thing) - TrackThing.stub!(:find_by_existing_track).and_return(nil) + TrackThing.stub!(:find_existing).and_return(nil) InfoRequest.stub!(:find_by_url_title!) do |url_title| if url_title == "myrequest" @ir diff --git a/spec/controllers/user_controller_spec.rb b/spec/controllers/user_controller_spec.rb index 0033309a5..cf361d898 100644 --- a/spec/controllers/user_controller_spec.rb +++ b/spec/controllers/user_controller_spec.rb @@ -30,55 +30,90 @@ describe UserController, "when redirecting a show request to a canonical url" do end describe UserController, "when showing a user" do - render_views + before(:each) do - load_raw_emails_data - get_fixtures_xapian_index + @user = FactoryGirl.create(:user) end it "should be successful" do - get :show, :url_name => "bob_smith" + get :show, :url_name => @user.url_name response.should be_success end it "should render with 'show' template" do - get :show, :url_name => "bob_smith" + get :show, :url_name => @user.url_name response.should render_template('show') end - it "should distinguish between 'my profile' and 'my requests' for logged in users" do - session[:user_id] = users(:bob_smith_user).id - get :show, :url_name => "bob_smith", :view => 'requests' - response.body.should_not include("Change your password") - response.body.should match(/Your [0-9]+ Freedom of Information requests/) - get :show, :url_name => "bob_smith", :view => 'profile' - response.body.should include("Change your password") - response.body.should_not match(/Your [0-9]+ Freedom of Information requests/) + it "should assign the user" do + get :show, :url_name => @user.url_name + assigns[:display_user].should == @user end - it "should assign the user" do - get :show, :url_name => "bob_smith" - assigns[:display_user].should == users(:bob_smith_user) + context "when viewing the user's own profile" do + + render_views + + def make_request + get :show, {:url_name => @user.url_name, :view => 'profile'}, {:user_id => @user.id} + end + + it 'should not show requests, or batch requests, but should show account options' do + make_request + response.body.should_not match(/Freedom of Information requests made by you/) + assigns[:show_batches].should be_false + response.body.should include("Change your password") + end + end - it "should search the user's contributions" do - get :show, :url_name => "bob_smith" - assigns[:xapian_requests].results.map{|x|x[:model].info_request}.should =~ InfoRequest.all( - :conditions => "user_id = #{users(:bob_smith_user).id}") + context "when viewing a user's own requests" do + + render_views + + def make_request + get :show, {:url_name => @user.url_name, :view => 'requests'}, {:user_id => @user.id} + end + + it 'should show requests, batch requests, but no account options' do + make_request + response.body.should match(/Freedom of Information requests made by you/) + assigns[:show_batches].should be_true + response.body.should_not include("Change your password") + end - get :show, :url_name => "bob_smith", :user_query => "money" - assigns[:xapian_requests].results.map{|x|x[:model].info_request}.should =~ [ - info_requests(:naughty_chicken_request), - info_requests(:another_boring_request), - ] end - it "should not show unconfirmed users" do - begin - get :show, :url_name => "unconfirmed_user" - rescue => e +end + +describe UserController, "when showing a user" do + + context 'when using fixture data' do + + before do + load_raw_emails_data + get_fixtures_xapian_index end - e.should be_an_instance_of(ActiveRecord::RecordNotFound) + + it "should search the user's contributions" do + get :show, :url_name => "bob_smith" + assigns[:xapian_requests].results.map{|x|x[:model].info_request}.should =~ InfoRequest.all( + :conditions => "user_id = #{users(:bob_smith_user).id}") + + get :show, :url_name => "bob_smith", :user_query => "money" + assigns[:xapian_requests].results.map{|x|x[:model].info_request}.should =~ [ + info_requests(:naughty_chicken_request), + info_requests(:another_boring_request), + ] + end + + it "should not show unconfirmed users" do + begin + get :show, :url_name => "unconfirmed_user" + rescue => e + end + e.should be_an_instance_of(ActiveRecord::RecordNotFound) + end end end diff --git a/spec/factories.rb b/spec/factories.rb index 7d8f94ac1..8efc53033 100644 --- a/spec/factories.rb +++ b/spec/factories.rb @@ -123,6 +123,7 @@ FactoryGirl.define do salt "-6116981980.392287733335677" hashed_password '6b7cd45a5f35fd83febc0452a799530398bfb6e8' # jonespassword email_confirmed true + ban_text "" factory :admin_user do name 'Admin User' admin_level 'super' @@ -144,4 +145,21 @@ FactoryGirl.define do track_query 'Example Query' end + factory :public_body_change_request do + user + source_url 'http://www.example.com' + notes 'Please' + public_body_email 'new@example.com' + factory :add_body_request do + public_body_name 'A New Body' + end + factory :update_body_request do + public_body + end + end + factory :info_request_batch do + title "Example title" + user + body "Some text" + end end diff --git a/spec/fixtures/files/email-folding-example-1.txt.expected b/spec/fixtures/files/email-folding-example-1.txt.expected index 801542288..45dabf156 100644 --- a/spec/fixtures/files/email-folding-example-1.txt.expected +++ b/spec/fixtures/files/email-folding-example-1.txt.expected @@ -8,3 +8,10 @@ On behalf of James Hall, Chief Executive Identity and Passport Service <<9032 C Pollard final response.doc>> +FOLDED_QUOTED_SECTION + +FOLDED_QUOTED_SECTION + + +FOLDED_QUOTED_SECTION + diff --git a/spec/fixtures/files/email-folding-example-10.txt b/spec/fixtures/files/email-folding-example-10.txt index 0fabb7f9c..a0773e6ff 100644 --- a/spec/fixtures/files/email-folding-example-10.txt +++ b/spec/fixtures/files/email-folding-example-10.txt @@ -3,13 +3,13 @@ Department of Health, please visit the 'Contact us' page on the Department’s website. ----------------------------------------------------------------------------------------- - - Apologies that you were not able to read our previous response of 4 - October. Please find the text of that email below. - + + Apologies that you were not able to read our previous response of 4 + October. Please find the text of that email below. + Our ref: DE00000642471 -Dear Ms Peters Rock, +Dear Ms Peters Rock, You requested your correspondence to be treated under the Freedom of Information Act. However, as your correspondence asked for general @@ -19,7 +19,7 @@ correspondence under the provisions of the Act. I am sorry I cannot be more helpful. -Yours sincerely, +Yours sincerely, Simon Dove Customer Service Centre Department of Health diff --git a/spec/fixtures/files/email-folding-example-10.txt.expected b/spec/fixtures/files/email-folding-example-10.txt.expected index e4f704c0e..5b609dc12 100644 --- a/spec/fixtures/files/email-folding-example-10.txt.expected +++ b/spec/fixtures/files/email-folding-example-10.txt.expected @@ -3,13 +3,13 @@ Department of Health, please visit the 'Contact us' page on the Department’s website. ----------------------------------------------------------------------------------------- - - Apologies that you were not able to read our previous response of 4 - October. Please find the text of that email below. - + + Apologies that you were not able to read our previous response of 4 + October. Please find the text of that email below. + Our ref: DE00000642471 -Dear Ms Peters Rock, +Dear Ms Peters Rock, You requested your correspondence to be treated under the Freedom of Information Act. However, as your correspondence asked for general @@ -19,7 +19,8 @@ correspondence under the provisions of the Act. I am sorry I cannot be more helpful. -Yours sincerely, +Yours sincerely, Simon Dove Customer Service Centre Department of Health +FOLDED_QUOTED_SECTION diff --git a/spec/fixtures/files/email-folding-example-11.txt b/spec/fixtures/files/email-folding-example-11.txt new file mode 100644 index 000000000..635d7aa4f --- /dev/null +++ b/spec/fixtures/files/email-folding-example-11.txt @@ -0,0 +1,45 @@ + Hello Example, + + This is a reply to your test request Nov 28. + + Regards. + + On Thu, Nov 28, 2013 at 9:08 AM, Example User + <[1]request-x-xxx@xxx.com> wrote: + + Dear Test Authority, + + This is the request body. + + Yours faithfully, + + Example User + + ------------------------------------------------------------------- + + Please use this email address for all replies to this request: + [2]request-x-xxx@xxx.com + + Is [3]testauthority@example.com the wrong address for Freedom of + Information requests to AYG Test Authority? If so, please contact us + using this form: + [4]http://example.com/help/contact + + Disclaimer: This message and any reply that you make will be published + on the internet. Our privacy and copyright policies: + [5]http://example.com/help/officers + + 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. + + ------------------------------------------------------------------- + +References + + Visible links + 1. mailto:request-x-xxx@xxx.com + 2. mailto:request-x-xxx@xxx.com + 3. mailto:testauthority@example.com + 4. http://example.com/help/contact + 5. http://example.com/help/officers + diff --git a/spec/fixtures/files/email-folding-example-11.txt.expected b/spec/fixtures/files/email-folding-example-11.txt.expected new file mode 100644 index 000000000..e336062c7 --- /dev/null +++ b/spec/fixtures/files/email-folding-example-11.txt.expected @@ -0,0 +1,8 @@ + Hello Example, + + This is a reply to your test request Nov 28. + + Regards. + + +FOLDED_QUOTED_SECTION diff --git a/spec/fixtures/files/email-folding-example-2.txt.expected b/spec/fixtures/files/email-folding-example-2.txt.expected index e52fbe443..df578390d 100644 --- a/spec/fixtures/files/email-folding-example-2.txt.expected +++ b/spec/fixtures/files/email-folding-example-2.txt.expected @@ -2,3 +2,4 @@ Preface to the message which we are not interested in ----------------------------------------------------------------------------------------- Important message about cheese +FOLDED_QUOTED_SECTION diff --git a/spec/fixtures/files/email-folding-example-3.txt.expected b/spec/fixtures/files/email-folding-example-3.txt.expected index e2cca4933..accb40150 100644 --- a/spec/fixtures/files/email-folding-example-3.txt.expected +++ b/spec/fixtures/files/email-folding-example-3.txt.expected @@ -3,3 +3,10 @@ Reference : T3241/8 Thank you for your e-mail enquiry of 12th February. A reply is attached. +FOLDED_QUOTED_SECTION + +FOLDED_QUOTED_SECTION + + +FOLDED_QUOTED_SECTION + diff --git a/spec/fixtures/files/email-folding-example-5.txt.expected b/spec/fixtures/files/email-folding-example-5.txt.expected index fbb0f0f50..46d7f731a 100644 --- a/spec/fixtures/files/email-folding-example-5.txt.expected +++ b/spec/fixtures/files/email-folding-example-5.txt.expected @@ -1,11 +1,11 @@ Hi Simon -My apologies for timescale of response. The data forwarded is a public -register, and is updated on a frequent and regular basis; your request -unfortunately coincided with annual leave and a monthly update of the -spreadsheet. As the definition of an HMO under the Housing Act 2004 -differs to that under planning legislation, I have forwarded this and -your original request on to Andy England, Development Control Manager to +My apologies for timescale of response. The data forwarded is a public +register, and is updated on a frequent and regular basis; your request +unfortunately coincided with annual leave and a monthly update of the +spreadsheet. As the definition of an HMO under the Housing Act 2004 +differs to that under planning legislation, I have forwarded this and +your original request on to Andy England, Development Control Manager to respond independantly. If I can be of further assistance please contact me diff --git a/spec/fixtures/files/email-folding-example-7.txt.expected b/spec/fixtures/files/email-folding-example-7.txt.expected index 0ef8fd82b..cb6961038 100644 --- a/spec/fixtures/files/email-folding-example-7.txt.expected +++ b/spec/fixtures/files/email-folding-example-7.txt.expected @@ -13,4 +13,5 @@ Telephone +44 (0) 116 2222222 Extn 5221 VM No. 8035 Fax + 44 (0) 116 2485217 -<<0001_00035908_Resp_12RESPONSE LETTER_20080408_112311_01.TIF>>
\ No newline at end of file +<<0001_00035908_Resp_12RESPONSE LETTER_20080408_112311_01.TIF>> +FOLDED_QUOTED_SECTION diff --git a/spec/fixtures/files/email-folding-example-8.txt.expected b/spec/fixtures/files/email-folding-example-8.txt.expected index b5dc10c0d..e8c08f4ca 100644 --- a/spec/fixtures/files/email-folding-example-8.txt.expected +++ b/spec/fixtures/files/email-folding-example-8.txt.expected @@ -3,4 +3,5 @@ I will be out of the office starting 11/04/2008 and will not return until I will respond to your message when I return. If you have any urgent queries please ring 02085419088 for Legal Business Support queries or -contact Eileen Perren for FOI or DP queries
\ No newline at end of file +contact Eileen Perren for FOI or DP queries +FOLDED_QUOTED_SECTION diff --git a/spec/fixtures/files/email-folding-example-9.txt.expected b/spec/fixtures/files/email-folding-example-9.txt.expected index 2d2381a34..d222e9438 100644 --- a/spec/fixtures/files/email-folding-example-9.txt.expected +++ b/spec/fixtures/files/email-folding-example-9.txt.expected @@ -7,3 +7,9 @@ Yours sincerely MICHAEL HEGARTY FOI Officer +FOLDED_QUOTED_SECTION + +FOLDED_QUOTED_SECTION + + +FOLDED_QUOTED_SECTION diff --git a/spec/helpers/link_to_helper_spec.rb b/spec/helpers/link_to_helper_spec.rb index b29419ef3..2259db6c2 100644 --- a/spec/helpers/link_to_helper_spec.rb +++ b/spec/helpers/link_to_helper_spec.rb @@ -20,6 +20,45 @@ describe LinkToHelper do end + describe 'when displaying a user link for a request' do + + context "for external requests" do + before do + @info_request = mock_model(InfoRequest, :external_user_name => nil, + :is_external? => true) + end + + it 'should return the text "Anonymous user" with a link to the privacy help pages when there is no external username' do + request_user_link(@info_request).should == '<a href="/help/privacy#anonymous">Anonymous user</a>' + end + + it 'should return a link with an alternative text if requested' do + request_user_link(@info_request, 'other text').should == '<a href="/help/privacy#anonymous">other text</a>' + end + + it 'should display an absolute link if requested' do + request_user_link_absolute(@info_request).should == '<a href="http://test.host/help/privacy#anonymous">Anonymous user</a>' + end + end + + context "for normal requests" do + + before do + @info_request = FactoryGirl.build(:info_request) + end + + it 'should display a relative link by default' do + request_user_link(@info_request).should == '<a href="/user/example_user">Example User</a>' + end + + it 'should display an absolute link if requested' do + request_user_link_absolute(@info_request).should == '<a href="http://test.host/user/example_user">Example User</a>' + end + + end + + end + describe 'when displaying a user admin link for a request' do it 'should return the text "An anonymous user (external)" in the case where there is no external username' do diff --git a/spec/lib/alaveteli_external_command.rb b/spec/lib/alaveteli_external_command.rb new file mode 100644 index 000000000..18afeda33 --- /dev/null +++ b/spec/lib/alaveteli_external_command.rb @@ -0,0 +1,23 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +require 'alaveteli_external_command' + +script_dir = File.join(File.dirname(__FILE__), 'alaveteli_external_command_scripts') +segfault_script = File.join(script_dir, 'segfault.sh') +error_script = File.join(script_dir, 'error.sh') + +describe "when running external commands" do + + it "should detect a non-zero exit status" do + $stderr.should_receive(:puts).with(/Error from/) + t = AlaveteliExternalCommand.run(error_script) + assert_nil t + end + + it "should detect when an external command crashes" do + $stderr.should_receive(:puts).with(/exited abnormally/) + t = AlaveteliExternalCommand.run(segfault_script) + assert_nil t + end + +end diff --git a/spec/lib/alaveteli_external_command_scripts/error.sh b/spec/lib/alaveteli_external_command_scripts/error.sh new file mode 100755 index 000000000..65e74b3c6 --- /dev/null +++ b/spec/lib/alaveteli_external_command_scripts/error.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "this is my error message" >&1 +exit 1 diff --git a/spec/lib/alaveteli_external_command_scripts/segfault.sh b/spec/lib/alaveteli_external_command_scripts/segfault.sh new file mode 100755 index 000000000..f96ba5be8 --- /dev/null +++ b/spec/lib/alaveteli_external_command_scripts/segfault.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +kill -11 $$ diff --git a/spec/mailers/info_request_batch_mailer.rb b/spec/mailers/info_request_batch_mailer.rb new file mode 100644 index 000000000..19791e163 --- /dev/null +++ b/spec/mailers/info_request_batch_mailer.rb @@ -0,0 +1,35 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe InfoRequestBatchMailer do + + describe 'when sending batch sent notification' do + + before do + @user = FactoryGirl.create(:user) + @info_request_batch = FactoryGirl.create(:info_request_batch) + @public_body = FactoryGirl.create(:public_body) + @unrequestable = [@public_body] + @mail = InfoRequestBatchMailer.batch_sent(@info_request_batch, @unrequestable, @user) + end + + it 'renders the subject' do + @mail.subject.should == 'Your batch request "Example title" has been sent' + end + + it 'renders the receiver email' do + @mail.to.should == [@user.email] + end + + it 'renders the sender email' do + @mail.from.should == ['postmaster@localhost'] + end + + it 'assigns @unrequestable' do + @mail.body.encoded.should match(@public_body.name) + end + + it 'assigns @url' do + @mail.body.encoded.should match("http://test.host/en/c/") + end + end +end diff --git a/spec/models/incoming_message_spec.rb b/spec/models/incoming_message_spec.rb index c0a7e5340..f06dcbeeb 100644 --- a/spec/models/incoming_message_spec.rb +++ b/spec/models/incoming_message_spec.rb @@ -165,7 +165,7 @@ describe IncomingMessage, " when dealing with incoming mail" do message = File.read(file) parsed = IncomingMessage.remove_quoted_sections(message) expected = File.read("#{file}.expected") - parsed.should include(expected) + parsed.should be_equal_modulo_whitespace_to expected end end @@ -462,7 +462,7 @@ describe IncomingMessage, " when censoring data" do data.should == "His email was x\000x\000x\000@\000x\000x\000x\000.\000x\000x\000x\000, indeed" end - it 'should handle multibyte characters correctly', :focus => true do + it 'should handle multibyte characters correctly' do orig_data = 'á' data = orig_data.dup @regex_censor_rule = CensorRule.new() @@ -742,5 +742,13 @@ describe IncomingMessage, "when extracting attachments" do attachments.first.body.should == 'No way!' end -end + it 'makes invalid utf-8 encoded attachment text valid when string responds to encode' do + if String.method_defined?(:encode) + im = incoming_messages(:useless_incoming_message) + im.stub!(:extract_text).and_return("\xBF") + + im._get_attachment_text_internal.valid_encoding?.should be_true + end + end +end diff --git a/spec/models/info_request_batch_spec.rb b/spec/models/info_request_batch_spec.rb new file mode 100644 index 000000000..53158ebe2 --- /dev/null +++ b/spec/models/info_request_batch_spec.rb @@ -0,0 +1,150 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe InfoRequestBatch, "when validating" do + + before do + @info_request_batch = FactoryGirl.build(:info_request_batch) + end + + it 'should require a user' do + @info_request_batch.user = nil + @info_request_batch.valid?.should be_false + @info_request_batch.errors.full_messages.should == ["User can't be blank"] + end + + it 'should require a title' do + @info_request_batch.title = nil + @info_request_batch.valid?.should be_false + @info_request_batch.errors.full_messages.should == ["Title can't be blank"] + end + + it 'should require a body' do + @info_request_batch.body = nil + @info_request_batch.valid?.should be_false + @info_request_batch.errors.full_messages.should == ["Body can't be blank"] + end + +end + +describe InfoRequestBatch, "when finding an existing batch" do + + before do + @first_body = FactoryGirl.create(:public_body) + @second_body = FactoryGirl.create(:public_body) + @info_request_batch = FactoryGirl.create(:info_request_batch, :title => 'Matched title', + :body => 'Matched body', + :public_bodies => [@first_body, + @second_body]) + end + + it 'should return a batch with the same user, title and body sent to one of the same public bodies' do + InfoRequestBatch.find_existing(@info_request_batch.user, + @info_request_batch.title, + @info_request_batch.body, + [@first_body]).should_not be_nil + end + + it 'should not return a batch with the same title and body sent to another public body' do + InfoRequestBatch.find_existing(@info_request_batch.user, + @info_request_batch.title, + @info_request_batch.body, + [FactoryGirl.create(:public_body)]).should be_nil + end + + it 'should not return a batch sent the same public bodies with a different title and body' do + InfoRequestBatch.find_existing(@info_request_batch.user, + 'Other title', + 'Other body', + [@first_body]).should be_nil + end + + it 'should not return a batch sent to one of the same public bodies with the same title and body by + a different user' do + InfoRequestBatch.find_existing(FactoryGirl.create(:user), + @info_request_batch.title, + @info_request_batch.body, + [@first_body]).should be_nil + end +end + +describe InfoRequestBatch, "when creating a batch", :focus => true do + + before do + @title = 'A test title' + @body = "Dear [Authority name],\nA message\nYours faithfully,\nRequester" + @first_public_body = FactoryGirl.create(:public_body) + @second_public_body = FactoryGirl.create(:public_body) + @user = FactoryGirl.create(:user) + @info_request_batch = InfoRequestBatch.create!({:title => @title, + :body => @body, + :public_bodies => [@first_public_body, + @second_public_body], + :user => @user}) + end + + it 'should substitute authority name for the placeholder in each request' do + unrequestable = @info_request_batch.create_batch! + [@first_public_body, @second_public_body].each do |public_body| + request = @info_request_batch.info_requests.detect do |info_request| + info_request.public_body == public_body + end + expected = "Dear #{public_body.name},\nA message\nYours faithfully,\nRequester" + request.outgoing_messages.first.body.should == expected + end + end + + it 'should send requests to requestable public bodies, and return a list of unrequestable ones' do + @first_public_body.stub(:is_requestable?).and_return(false) + unrequestable = @info_request_batch.create_batch! + unrequestable.should == [@first_public_body] + @info_request_batch.info_requests.size.should == 1 + request = @info_request_batch.info_requests.first + request.outgoing_messages.first.status.should == 'sent' + end + + it 'should set the sent_at value of the info request batch' do + @info_request_batch.create_batch! + @info_request_batch.sent_at.should_not be_nil + end + +end + +describe InfoRequestBatch, "when sending batches" do + + before do + @title = 'A test title' + @body = "Dear [Authority name],\nA message\nYours faithfully,\nRequester" + @first_public_body = FactoryGirl.create(:public_body) + @second_public_body = FactoryGirl.create(:public_body) + @user = FactoryGirl.create(:user) + @info_request_batch = InfoRequestBatch.create!({:title => @title, + :body => @body, + :public_bodies => [@first_public_body, + @second_public_body], + :user => @user}) + @sent_batch = InfoRequestBatch.create!({:title => @title, + :body => @body, + :public_bodies => [@first_public_body, + @second_public_body], + :user => @user, + :sent_at => Time.now}) + end + + it 'should send requests and notifications for only unsent batch requests' do + InfoRequestBatch.send_batches + ActionMailer::Base.deliveries.size.should == 3 + first_email = ActionMailer::Base.deliveries.first + first_email.to.should == [@first_public_body.request_email] + first_email.subject.should == 'Freedom of Information request - A test title' + + second_email = ActionMailer::Base.deliveries.second + second_email.to.should == [@second_public_body.request_email] + second_email.subject.should == 'Freedom of Information request - A test title' + + third_email = ActionMailer::Base.deliveries.third + third_email.to.should == [@user.email] + third_email.subject.should == 'Your batch request "A test title" has been sent' + end + +end + diff --git a/spec/models/info_request_spec.rb b/spec/models/info_request_spec.rb index dcc94e967..9766f928f 100644 --- a/spec/models/info_request_spec.rb +++ b/spec/models/info_request_spec.rb @@ -46,6 +46,19 @@ describe InfoRequest do info_request.valid? info_request.errors[:title].should_not be_empty end + + it 'should require a public body id by default' do + info_request = InfoRequest.new + info_request.valid? + info_request.errors[:public_body_id].should_not be_empty + end + + it 'should not require a public body id if it is a batch request template' do + info_request = InfoRequest.new + info_request.is_batch_request_template = true + info_request.valid? + info_request.errors[:public_body_id].should be_empty + end end describe 'when generating a user name slug' do @@ -600,6 +613,12 @@ describe InfoRequest do @info_request.apply_censor_rules_to_text!(@text) end + it 'should not raise an error if the request is a batch request template' do + @info_request.stub!(:public_body).and_return(nil) + @info_request.is_batch_request_template = true + lambda{ @info_request.apply_censor_rules_to_text!(@text) }.should_not raise_error + end + end context 'when applying censor rules to binary files' do @@ -1177,4 +1196,100 @@ describe InfoRequest do request_events.map(&:info_request).select{|x|x.url_title =~ /^spam/}.length.should == 1 end end + + describe InfoRequest, "when constructing a list of requests by query" do + + before(:each) do + get_fixtures_xapian_index + end + + def apply_filters(filters) + results = InfoRequest.request_list(filters, page=1, per_page=100, max_results=100) + results[:results].map(&:info_request) + end + + it "should filter requests" do + apply_filters(:latest_status => 'all').should =~ InfoRequest.all + + # default sort order is the request with the most recently created event first + apply_filters(:latest_status => 'all').should == InfoRequest.all( + :order => "(SELECT max(info_request_events.created_at) + FROM info_request_events + WHERE info_request_events.info_request_id = info_requests.id) + DESC") + + apply_filters(:latest_status => 'successful').should =~ InfoRequest.all( + :conditions => "id in ( + SELECT info_request_id + FROM info_request_events + WHERE NOT EXISTS ( + SELECT * + FROM info_request_events later_events + WHERE later_events.created_at > info_request_events.created_at + AND later_events.info_request_id = info_request_events.info_request_id + AND later_events.described_state IS NOT null + ) + AND info_request_events.described_state IN ('successful', 'partially_successful') + )") + + end + + it "should filter requests by date" do + # The semantics of the search are that it finds any InfoRequest + # that has any InfoRequestEvent created in the specified range + filters = {:latest_status => 'all', :request_date_before => '13/10/2007'} + apply_filters(filters).should =~ InfoRequest.all( + :conditions => "id IN (SELECT info_request_id + FROM info_request_events + WHERE created_at < '2007-10-13'::date)") + + filters = {:latest_status => 'all', :request_date_after => '13/10/2007'} + apply_filters(filters).should =~ InfoRequest.all( + :conditions => "id IN (SELECT info_request_id + FROM info_request_events + WHERE created_at > '2007-10-13'::date)") + + filters = {:latest_status => 'all', + :request_date_after => '13/10/2007', + :request_date_before => '01/11/2007'} + apply_filters(filters).should =~ InfoRequest.all( + :conditions => "id IN (SELECT info_request_id + FROM info_request_events + WHERE created_at BETWEEN '2007-10-13'::date + AND '2007-11-01'::date)") + end + + + it "should list internal_review requests as unresolved ones" do + + # This doesn’t precisely duplicate the logic of the actual + # query, but it is close enough to give the same result with + # the current set of test data. + results = apply_filters(:latest_status => 'awaiting') + results.should =~ InfoRequest.all( + :conditions => "id IN (SELECT info_request_id + FROM info_request_events + WHERE described_state in ( + 'waiting_response', 'waiting_clarification', + 'internal_review', 'gone_postal', 'error_message', 'requires_admin' + ) and not exists ( + select * + from info_request_events later_events + where later_events.created_at > info_request_events.created_at + and later_events.info_request_id = info_request_events.info_request_id + ))") + + + results.include?(info_requests(:fancy_dog_request)).should == false + + event = info_request_events(:useless_incoming_message_event) + event.described_state = event.calculated_state = "internal_review" + event.save! + rebuild_xapian_index + results = apply_filters(:latest_status => 'awaiting') + results.include?(info_requests(:fancy_dog_request)).should == true + end + + + end end diff --git a/spec/models/outgoing_message_spec.rb b/spec/models/outgoing_message_spec.rb index bb270ca16..a3e2d1c68 100644 --- a/spec/models/outgoing_message_spec.rb +++ b/spec/models/outgoing_message_spec.rb @@ -57,7 +57,8 @@ describe OutgoingMessage, " when making an outgoing message" do info_request = mock_model(InfoRequest, :public_body => public_body, :url_title => 'a_test_title', :title => 'A test title', - :apply_censor_rules_to_text! => nil) + :apply_censor_rules_to_text! => nil, + :is_batch_request_template? => false) outgoing_message = OutgoingMessage.new({ :status => 'ready', :message_type => 'followup', @@ -68,6 +69,15 @@ describe OutgoingMessage, " when making an outgoing message" do outgoing_message.body.should include(expected_text) end + context "when associated with a batch template request" do + + it 'should produce a salutation with a placeholder' do + @om.info_request.is_batch_request_template = true + @om.get_salutation.should == 'Dear [Authority name],' + end + end + + describe 'when asked if a user can view it' do before do @@ -166,7 +176,7 @@ describe OutgoingMessage, " when censoring data" do end end -describe OutgoingMessage, "when validating the format of the message body", :focus => true do +describe OutgoingMessage, "when validating the format of the message body" do it 'should handle a salutation with a bracket in it' do outgoing_message = FactoryGirl.build(:initial_request) diff --git a/spec/models/profile_photo_spec.rb b/spec/models/profile_photo_spec.rb index 0e157e2c5..e70f474a0 100644 --- a/spec/models/profile_photo_spec.rb +++ b/spec/models/profile_photo_spec.rb @@ -10,12 +10,12 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') -describe ProfilePhoto, "when constructing a new photo" do +describe ProfilePhoto, "when constructing a new photo" do - before do + before do @mock_user = mock_model(User) end - + it 'should take no image as invalid' do profile_photo = ProfilePhoto.new(:data => nil, :user => @mock_user) profile_photo.valid?.should == false @@ -26,7 +26,15 @@ describe ProfilePhoto, "when constructing a new photo" do profile_photo.valid?.should == false end - it 'should accept and convert a PNG to right size' do + it 'should translate a no image error message' do + I18n.with_locale(:es) do + profile_photo = ProfilePhoto.new(:data => nil, :user => @mock_user) + profile_photo.valid?.should == false + profile_photo.errors[:data].should == ['Por favor elige el fichero que contiene tu foto'] + end + end + + it 'should accept and convert a PNG to right size' do data = load_file_fixture("parrot.png") profile_photo = ProfilePhoto.new(:data => data, :user => @mock_user) profile_photo.valid?.should == true @@ -35,7 +43,7 @@ describe ProfilePhoto, "when constructing a new photo" do profile_photo.image.rows.should == 96 end - it 'should accept and convert a JPEG to right format and size' do + it 'should accept and convert a JPEG to right format and size' do data = load_file_fixture("parrot.jpg") profile_photo = ProfilePhoto.new(:data => data, :user => @mock_user) profile_photo.valid?.should == true @@ -44,7 +52,7 @@ describe ProfilePhoto, "when constructing a new photo" do profile_photo.image.rows.should == 96 end - it 'should accept a draft PNG and not resize it' do + it 'should accept a draft PNG and not resize it' do data = load_file_fixture("parrot.png") profile_photo = ProfilePhoto.new(:data => data, :draft => true) profile_photo.valid?.should == true @@ -53,6 +61,6 @@ describe ProfilePhoto, "when constructing a new photo" do profile_photo.image.rows.should == 289 end - + end diff --git a/spec/models/public_body_change_request_spec.rb b/spec/models/public_body_change_request_spec.rb new file mode 100644 index 000000000..0c4cea67b --- /dev/null +++ b/spec/models/public_body_change_request_spec.rb @@ -0,0 +1,139 @@ +# == Schema Information +# +# Table name: public_body_change_requests +# +# id :integer not null, primary key +# user_email :string(255) +# user_name :string(255) +# user_id :integer +# public_body_name :text +# public_body_id :integer +# public_body_email :string(255) +# source_url :text +# notes :text +# is_open :boolean default(TRUE), not null +# created_at :datetime not null +# updated_at :datetime not null +# + +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe PublicBodyChangeRequest, 'when validating' do + + it 'should not be valid without a public body name' do + change_request = PublicBodyChangeRequest.new() + change_request.valid?.should be_false + change_request.errors[:public_body_name].should == ['Please enter the name of the authority'] + end + + it 'should not be valid without a user name if there is no user' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'New Body') + change_request.valid?.should be_false + change_request.errors[:user_name].should == ['Please enter your name'] + end + + it 'should not be valid without a user email address if there is no user' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'New Body') + change_request.valid?.should be_false + change_request.errors[:user_email].should == ['Please enter your email address'] + end + + it 'should be valid with a user and no name or email address' do + user = FactoryGirl.build(:user) + change_request = PublicBodyChangeRequest.new(:user => user, + :public_body_name => 'New Body') + change_request.valid?.should be_true + end + + it 'should validate the format of a user email address entered' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'New Body', + :user_email => '@example.com') + change_request.valid?.should be_false + change_request.errors[:user_email].should == ["Your email doesn't look like a valid address"] + end + + it 'should validate the format of a public body email address entered' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'New Body', + :public_body_email => '@example.com') + change_request.valid?.should be_false + change_request.errors[:public_body_email].should == ["The authority email doesn't look like a valid address"] + end + +end + +describe PublicBodyChangeRequest, 'get_user_name' do + + it 'should return the user_name field if there is no user association' do + change_request = PublicBodyChangeRequest.new(:user_name => 'Test User') + change_request.get_user_name.should == 'Test User' + end + + it 'should return the name of the associated user if there is one' do + user = FactoryGirl.build(:user) + change_request = PublicBodyChangeRequest.new(:user => user) + change_request.get_user_name.should == user.name + end + +end + + +describe PublicBodyChangeRequest, 'get_user_email' do + + it 'should return the user_email field if there is no user association' do + change_request = PublicBodyChangeRequest.new(:user_email => 'user@example.com') + change_request.get_user_email.should == 'user@example.com' + end + + it 'should return the email of the associated user if there is one' do + user = FactoryGirl.build(:user) + change_request = PublicBodyChangeRequest.new(:user => user) + change_request.get_user_email.should == user.email + end + +end + + +describe PublicBodyChangeRequest, 'get_public_body_name' do + + it 'should return the public_body_name field if there is no public body association' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'Test Authority') + change_request.get_public_body_name.should == 'Test Authority' + end + + it 'should return the name of the associated public body if there is one' do + public_body = FactoryGirl.build(:public_body) + change_request = PublicBodyChangeRequest.new(:public_body => public_body) + change_request.get_public_body_name.should == public_body.name + end + +end + +describe PublicBodyChangeRequest, 'when creating a comment for the associated public body' do + + it 'should include requesting user, source_url and notes' do + change_request = PublicBodyChangeRequest.new(:user_name => 'Test User', + :user_email => 'test@example.com', + :source_url => 'http://www.example.com', + :notes => 'Some notes') + expected = "Requested by: Test User (test@example.com)\nSource URL: http://www.example.com\nNotes: Some notes" + change_request.comment_for_public_body.should == expected + end + +end + +describe PublicBodyChangeRequest, 'when creating a default subject for a response email' do + + it 'should create an appropriate subject for a request to add a body' do + change_request = PublicBodyChangeRequest.new(:public_body_name => 'Test Body') + change_request.default_response_subject.should == 'Your request to add Test Body to Alaveteli' + end + + it 'should create an appropriate subject for a request to update an email address' do + public_body = FactoryGirl.build(:public_body) + change_request = PublicBodyChangeRequest.new(:public_body => public_body) + change_request.default_response_subject.should == "Your request to update #{public_body.name} on Alaveteli" + + end + +end + diff --git a/spec/models/public_body_spec.rb b/spec/models/public_body_spec.rb index ed24ced52..dc09bdfa6 100644 --- a/spec/models/public_body_spec.rb +++ b/spec/models/public_body_spec.rb @@ -300,6 +300,37 @@ describe PublicBody, "when searching" do end end +describe PublicBody, "when asked for the internal_admin_body" do + before(:each) do + # Make sure that there's no internal_admin_body before each of + # these tests: + PublicBody.connection.delete("DELETE FROM public_bodies WHERE url_name = 'internal_admin_body'") + PublicBody.connection.delete("DELETE FROM public_body_translations WHERE url_name = 'internal_admin_body'") + end + + it "should create the internal_admin_body if it didn't exist" do + iab = PublicBody.internal_admin_body + iab.should_not be_nil + end + + it "should find the internal_admin_body even if the default locale has changed since it was created" do + with_default_locale("en") do + I18n.with_locale(:en) do + iab = PublicBody.internal_admin_body + iab.should_not be_nil + end + end + with_default_locale("es") do + I18n.with_locale(:es) do + iab = PublicBody.internal_admin_body + iab.should_not be_nil + end + end + end + +end + + describe PublicBody, " when dealing public body locales" do it "shouldn't fail if it internal_admin_body was created in a locale other than the default" do # first time, do it with the non-default locale diff --git a/spec/models/track_thing_spec.rb b/spec/models/track_thing_spec.rb index 86d3c0cda..1c582564b 100644 --- a/spec/models/track_thing_spec.rb +++ b/spec/models/track_thing_spec.rb @@ -39,7 +39,7 @@ describe TrackThing, "when tracking changes" do it "will find existing tracks which are the same" do track_thing = TrackThing.create_track_for_search_query('fancy dog') - found_track = TrackThing.find_by_existing_track(users(:silly_name_user), track_thing) + found_track = TrackThing.find_existing(users(:silly_name_user), track_thing) found_track.should == @track_thing end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index cbbf4b5ce..b6f48dad3 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -337,3 +337,34 @@ describe User, "when emails have bounced" do user.email_bounce_message.should == "The reason we think the email bounced (e.g. a bounce message)" end end + +describe User, "when calculating if a user has exceeded the request limit" do + + before do + @info_request = FactoryGirl.create(:info_request) + @user = @info_request.user + end + + it 'should return false if no request limit is set' do + AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return nil + @user.exceeded_limit?.should be_false + end + + it 'should return false if the user has not submitted more than the limit' do + AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(2) + @user.exceeded_limit?.should be_false + end + + it 'should return true if the user has submitted more than the limit' do + AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(0) + @user.exceeded_limit?.should be_true + end + + it 'should return false if the user is allowed to make batch requests' do + @user.can_make_batch_requests = true + AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(0) + @user.exceeded_limit?.should be_false + end + + +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 1eeb8603b..dc5a0d6eb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -187,11 +187,16 @@ Spork.prefork do end end + # Reset the default locale, making sure that the previous default locale + # is also cleared from the fallbacks def with_default_locale(locale) original_default_locale = I18n.default_locale + original_fallbacks = I18n.fallbacks + I18n.fallbacks = nil I18n.default_locale = locale yield ensure + I18n.fallbacks = original_fallbacks I18n.default_locale = original_default_locale end @@ -215,3 +220,16 @@ Spork.each_run do FactoryGirl.reload # This code will be run each time you run your specs. end + +def normalise_whitespace(s) + s = s.gsub(/\A\s+|\s+\Z/, "") + s = s.gsub(/\s+/, " ") + return s +end + +RSpec::Matchers.define :be_equal_modulo_whitespace_to do |expected| + match do |actual| + normalise_whitespace(actual) == normalise_whitespace(expected) + end +end + diff --git a/spec/views/request/list.html.erb_spec.rb b/spec/views/request/list.html.erb_spec.rb deleted file mode 100644 index 521d946bc..000000000 --- a/spec/views/request/list.html.erb_spec.rb +++ /dev/null @@ -1,49 +0,0 @@ -require File.expand_path(File.join('..', '..', '..', 'spec_helper'), __FILE__) - -describe "request/list" do - - before do - assign :page, 1 - assign :per_page, 10 - end - - def make_mock_event - return mock_model(InfoRequestEvent, - :info_request => mock_model(InfoRequest, - :title => 'Title', - :url_title => 'title', - :display_status => 'awaiting_response', - :calculate_status => 'awaiting_response', - :public_body => mock_model(PublicBody, :name => 'Test Quango', :url_name => 'testquango'), - :user => mock_model(User, :name => 'Test User', :url_name => 'testuser'), - :is_external? => false - ), - :incoming_message => nil, :is_incoming_message? => false, - :outgoing_message => nil, :is_outgoing_message? => false, - :comment => nil, :is_comment? => false, - :event_type => 'sent', - :created_at => Time.now - 4.days, - :search_text_main => '' - ) - end - - it "should be successful" do - assign :list_results, [ make_mock_event, make_mock_event ] - assign :matches_estimated, 2 - assign :show_no_more_than, 100 - render - response.should have_selector("div.request_listing") - response.should_not have_selector("p", :content => "No requests of this sort yet") - end - - it "should cope with no results" do - assign :list_results, [ ] - assign :matches_estimated, 0 - assign :show_no_more_than, 0 - render - response.should have_selector("p", :content => "No requests of this sort yet") - response.should_not have_selector("div.request_listing") - end - -end - |