From fa5e6086ad38b205689a6e266987cdc7dd74aa3d Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Tue, 17 Dec 2024 11:22:06 +0000 Subject: [PATCH 1/4] Update changelog - Add db:migrate note - Add changed templates --- doc/CHANGES.md | 106 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 0567ae0c20..63887779ac 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -103,6 +103,10 @@ * _Required:_ This upgrade requires upgrading Ruby from 3.0 to 3.1 or later. We recommend upgrading to the Ruby 3.2. +* _Required:_ There are some database structure updates so remember to run: + + bin/rails db:migrate + * _Required:_ To migrate to the new `Category` feature, please run: bin/rails temp:migrate_public_body_categories @@ -155,6 +159,108 @@ example annual pricing. For new prices you need to configure `STRIPE_PRICES` in `config/general.yml`. +### Changed Templates + +The following templates have been changed. Please update overrides in your theme +to match the new templates. + + app/views/admin/citations/_list.html.erb + app/views/admin/foi_attachments/edit.html.erb + app/views/admin/info_request_batches/_admin_columns.html.erb + app/views/admin/notes/_form.html.erb + app/views/admin/notes/_locale_fields.html.erb + app/views/admin/notes/_note.html.erb + app/views/admin/notes/_show.html.erb + app/views/admin/notes/edit.html.erb + app/views/admin/notes/new.html.erb + app/views/admin/outgoing_messages/snippets/_form.html.erb + app/views/admin/outgoing_messages/snippets/_locale_fields.html.erb + app/views/admin_announcements/_form.html.erb + app/views/admin_announcements/_locale_fields.html.erb + app/views/admin_announcements/edit.html.erb + app/views/admin_announcements/new.html.erb + app/views/admin_comment/edit.html.erb + app/views/admin_general/_admin_navbar.html.erb + app/views/admin_general/_edit_outgoing.html.erb + app/views/admin_public_body/_form.html.erb + app/views/admin_public_body/_locale_fields.html.erb + app/views/admin_public_body/_tag_help.html.erb + app/views/admin_public_body/edit.html.erb + app/views/admin_public_body/import_csv.html.erb + app/views/admin_public_body/new.html.erb + app/views/admin_public_body_categories/_category_list_item.html.erb + app/views/admin_public_body_categories/_form.html.erb + app/views/admin_public_body_categories/_heading_list.html.erb + app/views/admin_public_body_categories/_locale_fields.html.erb + app/views/admin_public_body_categories/edit.html.erb + app/views/admin_public_body_categories/index.html.erb + app/views/admin_public_body_categories/new.html.erb + app/views/admin_public_body_headings/_form.html.erb + app/views/admin_public_body_headings/_locale_fields.html.erb + app/views/admin_public_body_headings/edit.html.erb + app/views/admin_public_body_headings/new.html.erb + app/views/admin_raw_email/_holding_pen.html.erb + app/views/admin_request/hidden_user_explanation.text.erb + app/views/admin_request/show.html.erb + app/views/admin_track/_some_tracks.html.erb + app/views/admin_user/_user_table.html.erb + app/views/alaveteli_pro/batch_request_authority_searches/_browse.html.erb + app/views/alaveteli_pro/batch_request_authority_searches/_public_bodies.html.erb + app/views/alaveteli_pro/dashboard/_sidebar.html.erb + app/views/alaveteli_pro/dashboard/index.html.erb + app/views/alaveteli_pro/general/_nav_items.html.erb + app/views/alaveteli_pro/info_request_batches/_info_request_batch.html.erb + app/views/alaveteli_pro/info_requests/_after_actions.html.erb + app/views/alaveteli_pro/info_requests/index.html.erb + app/views/alaveteli_pro/invoices/_invoice.html.erb + app/views/alaveteli_pro/plans/_pricing_tiers.html.erb + app/views/alaveteli_pro/plans/index.html.erb + app/views/alaveteli_pro/plans/show.html.erb + app/views/alaveteli_pro/subscriptions/_cancel_subscription.html.erb + app/views/alaveteli_pro/subscriptions/_subscription.html.erb + app/views/alaveteli_pro/subscriptions/index.html.erb + app/views/citations/new.html.erb + app/views/comment/_single_comment.html.erb + app/views/comment/_suggestions.html.erb + app/views/followups/_choose_recipient.html.erb + app/views/followups/_followup.html.erb + app/views/general/_frontpage_requests_list.html.erb + app/views/general/_nav_items.html.erb + app/views/general/_responsive_topnav.html.erb + app/views/general/_search_latest.html.erb + app/views/general/blog.html.erb + app/views/info_request_batch/_batch_sent.html.erb + app/views/info_request_batch/_downloads.html.erb + app/views/info_request_batch/show.html.erb + app/views/layouts/admin.html.erb + app/views/layouts/default.html.erb + app/views/one_time_passwords/show.html.erb + app/views/projects/projects/show.html.erb + app/views/public_body/_more_info.html.erb + app/views/public_body/list.html.erb + app/views/public_body/view_email.html.erb + app/views/public_body/view_email_captcha.html.erb + app/views/reports/new.html.erb + app/views/request/_act.html.erb + app/views/request/_after_actions.html.erb + app/views/request/_attachments.html.erb + app/views/request/_citations.html.erb + app/views/request/_incoming_correspondence.html.erb + app/views/request/_list_results.html.erb + app/views/request/_outgoing_correspondence.html.erb + app/views/request/_request_filter_form.html.erb + app/views/request/_request_listing_single.html.erb + app/views/request/_request_sent.html.erb + app/views/request/_sidebar_request_listing.html.erb + app/views/request/_wall_listing.html.erb + app/views/request/details.html.erb + app/views/request/list.html.erb + app/views/request/new.html.erb + app/views/request/show.text.erb + app/views/request_game/play.html.erb + app/views/widgets/new.html.erb + app/views/widgets/show.html.erb + # 0.44.0.2 ## Highlighted Features From 25f5701e617948c9975979f883e7fb5eba3493e5 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Tue, 17 Dec 2024 11:20:59 +0000 Subject: [PATCH 2/4] Update commonlib --- commonlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commonlib b/commonlib index caadeeb06b..10fbd9ae0d 160000 --- a/commonlib +++ b/commonlib @@ -1 +1 @@ -Subproject commit caadeeb06b5588786efc3370b7c36b81aa56c222 +Subproject commit 10fbd9ae0da0de25413a2523b2588bbf9d620cd4 From f4cbade7c8d01571ebaba4550a00a234e03e5b28 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Tue, 17 Dec 2024 12:50:54 +0000 Subject: [PATCH 3/4] Generate translations --- locale/af_ZA/app.po | 272 ++++++++++++---------- locale/aln/app.po | 270 ++++++++++++---------- locale/app.pot | 270 ++++++++++++---------- locale/ar/app.po | 298 +++++++++++++----------- locale/bg/app.po | 302 ++++++++++++++----------- locale/bs/app.po | 296 +++++++++++++----------- locale/ca/app.po | 296 +++++++++++++----------- locale/ckb/app.po | 270 ++++++++++++---------- locale/cs/app.po | 325 +++++++++++++++------------ locale/cy/app.po | 308 ++++++++++++++----------- locale/de/app.po | 300 ++++++++++++++----------- locale/el/app.po | 316 ++++++++++++++------------ locale/en/app.po | 316 ++++++++++++++------------ locale/en_HK/app.po | 270 ++++++++++++---------- locale/en_IE/app.po | 270 ++++++++++++---------- locale/en_RW/app.po | 272 ++++++++++++---------- locale/en_UG/app.po | 272 ++++++++++++---------- locale/en_US/app.po | 270 ++++++++++++---------- locale/es/app.po | 311 +++++++++++++------------ locale/es_AR/app.po | 311 +++++++++++++------------ locale/es_NI/app.po | 311 +++++++++++++------------ locale/es_PA/app.po | 307 ++++++++++++++----------- locale/es_PY/app.po | 302 ++++++++++++++----------- locale/eu/app.po | 296 +++++++++++++----------- locale/fa/app.po | 270 ++++++++++++---------- locale/fi/app.po | 270 ++++++++++++---------- locale/fr/app.po | 307 ++++++++++++++----------- locale/fr_BE/app.po | 313 ++++++++++++++------------ locale/fr_CA/app.po | 302 ++++++++++++++----------- locale/fr_FR/app.po | 319 ++++++++++++++------------ locale/ga_IE/app.po | 270 ++++++++++++---------- locale/gl/app.po | 296 +++++++++++++----------- locale/he_IL/app.po | 302 ++++++++++++++----------- locale/hr/app.po | 317 ++++++++++++++------------ locale/hu_HU/app.po | 324 ++++++++++++++------------ locale/id/app.po | 302 ++++++++++++++----------- locale/is/app.po | 310 +++++++++++++------------ locale/is_IS/app.po | 310 +++++++++++++------------ locale/it/app.po | 311 +++++++++++++------------ locale/it_IT/app.po | 307 ++++++++++++++----------- locale/ka/app.po | 316 ++++++++++++++------------ locale/mk/app.po | 270 ++++++++++++---------- locale/mk_MK/app.po | 302 ++++++++++++++----------- locale/nb/app.po | 308 ++++++++++++++----------- locale/ne/app.po | 308 ++++++++++++++----------- locale/ne_NP/app.po | 270 ++++++++++++---------- locale/nl/app.po | 322 ++++++++++++++------------ locale/nl_BE/app.po | 310 +++++++++++++------------ locale/nn/app.po | 300 ++++++++++++++----------- locale/pap/app.po | 274 ++++++++++++---------- locale/pl/app.po | 272 ++++++++++++---------- locale/pl_PL/app.po | 270 ++++++++++++---------- locale/pt_BR/app.po | 298 +++++++++++++----------- locale/pt_PT/app.po | 300 ++++++++++++++----------- locale/ro_RO/app.po | 307 ++++++++++++++----------- locale/rw/app.po | 310 +++++++++++++------------ locale/se/app.po | 270 ++++++++++++---------- locale/si/app.po | 270 ++++++++++++---------- locale/sk/app.po | 270 ++++++++++++---------- locale/sl/app.po | 320 ++++++++++++++------------ locale/sq/app.po | 316 ++++++++++++++------------ locale/sr/app.po | 270 ++++++++++++---------- locale/sr@latin/app.po | 302 ++++++++++++++----------- locale/sv/app.po | 321 ++++++++++++++------------ locale/sw_KE/app.po | 270 ++++++++++++---------- locale/tr/app.po | 306 ++++++++++++++----------- locale/tr_TR/app.po | 276 +++++++++++++---------- locale/uk/app.po | 310 +++++++++++++------------ locale/vi/app.po | 270 ++++++++++++---------- locale/yue/app.po | 270 ++++++++++++---------- locale/zh_CN/app.po | 270 ++++++++++++---------- locale/zh_HK/app.po | 315 ++++++++++++++------------ locale_alaveteli_pro/af_ZA/app.po | 129 +++++++++-- locale_alaveteli_pro/aln/app.po | 129 +++++++++-- locale_alaveteli_pro/app.pot | 129 +++++++++-- locale_alaveteli_pro/ar/app.po | 129 +++++++++-- locale_alaveteli_pro/bg/app.po | 129 +++++++++-- locale_alaveteli_pro/bs/app.po | 129 +++++++++-- locale_alaveteli_pro/ca/app.po | 129 +++++++++-- locale_alaveteli_pro/ckb/app.po | 129 +++++++++-- locale_alaveteli_pro/cs/app.po | 135 +++++++++-- locale_alaveteli_pro/cy/app.po | 129 +++++++++-- locale_alaveteli_pro/de/app.po | 129 +++++++++-- locale_alaveteli_pro/el/app.po | 133 +++++++++-- locale_alaveteli_pro/en/app.po | 133 +++++++++-- locale_alaveteli_pro/en_HK/app.po | 129 +++++++++-- locale_alaveteli_pro/en_IE/app.po | 129 +++++++++-- locale_alaveteli_pro/en_UG/app.po | 129 +++++++++-- locale_alaveteli_pro/en_US/app.po | 129 +++++++++-- locale_alaveteli_pro/es/app.po | 129 +++++++++-- locale_alaveteli_pro/es_AR/app.po | 129 +++++++++-- locale_alaveteli_pro/es_NI/app.po | 129 +++++++++-- locale_alaveteli_pro/es_PA/app.po | 129 +++++++++-- locale_alaveteli_pro/es_PY/app.po | 129 +++++++++-- locale_alaveteli_pro/eu/app.po | 129 +++++++++-- locale_alaveteli_pro/fa/app.po | 129 +++++++++-- locale_alaveteli_pro/fi/app.po | 129 +++++++++-- locale_alaveteli_pro/fr/app.po | 129 +++++++++-- locale_alaveteli_pro/fr_BE/app.po | 134 +++++++++-- locale_alaveteli_pro/fr_CA/app.po | 129 +++++++++-- locale_alaveteli_pro/fr_FR/app.po | 135 +++++++++-- locale_alaveteli_pro/ga_IE/app.po | 129 +++++++++-- locale_alaveteli_pro/gl/app.po | 129 +++++++++-- locale_alaveteli_pro/he_IL/app.po | 129 +++++++++-- locale_alaveteli_pro/hr/app.po | 134 +++++++++-- locale_alaveteli_pro/hu_HU/app.po | 133 +++++++++-- locale_alaveteli_pro/id/app.po | 129 +++++++++-- locale_alaveteli_pro/is/app.po | 129 +++++++++-- locale_alaveteli_pro/is_IS/app.po | 129 +++++++++-- locale_alaveteli_pro/it/app.po | 129 +++++++++-- locale_alaveteli_pro/it_IT/app.po | 129 +++++++++-- locale_alaveteli_pro/ka/app.po | 129 +++++++++-- locale_alaveteli_pro/mk/app.po | 129 +++++++++-- locale_alaveteli_pro/mk_MK/app.po | 129 +++++++++-- locale_alaveteli_pro/nb/app.po | 129 +++++++++-- locale_alaveteli_pro/ne/app.po | 129 +++++++++-- locale_alaveteli_pro/ne_NP/app.po | 129 +++++++++-- locale_alaveteli_pro/nl/app.po | 133 +++++++++-- locale_alaveteli_pro/nl_BE/app.po | 133 +++++++++-- locale_alaveteli_pro/nn/app.po | 129 +++++++++-- locale_alaveteli_pro/pap/app.po | 129 +++++++++-- locale_alaveteli_pro/pl/app.po | 129 +++++++++-- locale_alaveteli_pro/pl_PL/app.po | 129 +++++++++-- locale_alaveteli_pro/pt_BR/app.po | 129 +++++++++-- locale_alaveteli_pro/pt_PT/app.po | 129 +++++++++-- locale_alaveteli_pro/ro_RO/app.po | 129 +++++++++-- locale_alaveteli_pro/rw/app.po | 129 +++++++++-- locale_alaveteli_pro/se/app.po | 129 +++++++++-- locale_alaveteli_pro/si/app.po | 129 +++++++++-- locale_alaveteli_pro/sk/app.po | 129 +++++++++-- locale_alaveteli_pro/sl/app.po | 129 +++++++++-- locale_alaveteli_pro/sq/app.po | 129 +++++++++-- locale_alaveteli_pro/sr/app.po | 129 +++++++++-- locale_alaveteli_pro/sr@latin/app.po | 129 +++++++++-- locale_alaveteli_pro/sv/app.po | 133 +++++++++-- locale_alaveteli_pro/sw_KE/app.po | 129 +++++++++-- locale_alaveteli_pro/tr/app.po | 129 +++++++++-- locale_alaveteli_pro/tr_TR/app.po | 129 +++++++++-- locale_alaveteli_pro/uk/app.po | 135 +++++++++-- locale_alaveteli_pro/vi/app.po | 129 +++++++++-- locale_alaveteli_pro/yue/app.po | 129 +++++++++-- locale_alaveteli_pro/zh_CN/app.po | 129 +++++++++-- locale_alaveteli_pro/zh_HK/app.po | 132 +++++++++-- 143 files changed, 19775 insertions(+), 10663 deletions(-) diff --git a/locale/af_ZA/app.po b/locale/af_ZA/app.po index 94ed12ef22..9361200f0f 100644 --- a/locale/af_ZA/app.po +++ b/locale/af_ZA/app.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: FOI Monkey, 2022\n" "Language-Team: Afrikaans (South Africa) (http://app.transifex.com/mysociety/al" @@ -177,10 +177,10 @@ msgstr "60 minute+" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -260,7 +260,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -296,6 +296,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -341,7 +344,7 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -386,9 +389,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -419,6 +419,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -587,22 +593,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -641,10 +641,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -653,7 +650,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -674,6 +671,12 @@ msgstr "" msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -746,6 +749,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -812,10 +818,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -884,6 +890,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -911,15 +920,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -956,10 +965,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -968,6 +974,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -980,9 +989,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Wysig versoek" @@ -1043,6 +1070,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1055,7 +1085,7 @@ msgstr "" msgid "FOI" msgstr "PAIA" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1097,6 +1127,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1145,9 +1178,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1160,8 +1190,8 @@ msgstr "" msgid "Follow us on Facebook" msgstr "Volg ons op Facebook" -msgid "Follow us on twitter" -msgstr "Volg ons op Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1182,8 +1212,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1192,6 +1222,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1204,9 +1239,6 @@ msgstr "Wet op die Bevordering van Toegang tot Inligting" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1255,13 +1287,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1285,6 +1314,9 @@ msgstr "" msgid "Help" msgstr "Hulp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1375,9 +1407,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1435,9 +1464,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1471,9 +1497,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1486,9 +1509,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1513,6 +1533,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1534,10 +1557,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1582,6 +1605,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1603,9 +1629,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1702,9 +1725,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1738,9 +1758,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Volgende" @@ -1822,6 +1839,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1885,9 +1905,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2157,6 +2174,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2166,6 +2186,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Openbare liggaame" @@ -2247,9 +2270,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2289,7 +2309,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2304,6 +2324,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2361,6 +2384,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2436,6 +2462,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2451,6 +2483,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2499,6 +2537,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2522,6 +2565,9 @@ msgstr "" msgid "Share on Facebook" msgstr "Deel op Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2735,9 +2781,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2765,6 +2808,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2828,6 +2874,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2888,12 +2940,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3071,7 +3117,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3453,12 +3499,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "Tweet dit" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3525,7 +3565,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3564,22 +3604,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3588,10 +3619,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3624,9 +3661,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3730,6 +3764,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3754,7 +3791,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3781,6 +3818,9 @@ msgstr "" msgid "Yes" msgstr "Ja" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4409,9 +4449,6 @@ msgstr "" msgid "unknown" msgstr "onbekend" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4448,9 +4485,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4461,6 +4495,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4605,7 +4644,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4619,9 +4658,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/aln/app.po b/locale/aln/app.po index 065afc5c94..8d202ae181 100644 --- a/locale/aln/app.po +++ b/locale/aln/app.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Valon , 2011\n" "Language-Team: Albanian Gheg (http://app.transifex.com/mysociety/alaveteli/lan" @@ -170,10 +170,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -253,7 +253,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -289,6 +289,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -334,7 +337,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -379,9 +382,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -412,6 +412,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -580,22 +586,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -634,10 +634,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -646,7 +643,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -667,6 +664,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -739,6 +742,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -805,10 +811,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -877,6 +883,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -904,15 +913,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -949,10 +958,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -961,6 +967,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -973,9 +982,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1036,6 +1063,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1048,7 +1078,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1090,6 +1120,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1138,9 +1171,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1153,7 +1183,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1175,8 +1205,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1185,6 +1215,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1197,9 +1232,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1248,13 +1280,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1278,6 +1307,9 @@ msgstr "" msgid "Help" msgstr "Ndihmë" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1368,9 +1400,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1428,9 +1457,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1464,9 +1490,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1479,9 +1502,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1506,6 +1526,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1527,10 +1550,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1575,6 +1598,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1596,9 +1622,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1695,9 +1718,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1731,9 +1751,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1815,6 +1832,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1878,9 +1898,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2150,6 +2167,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2159,6 +2179,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2240,9 +2263,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2282,7 +2302,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2297,6 +2317,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2354,6 +2377,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2429,6 +2455,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2444,6 +2476,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2492,6 +2530,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2515,6 +2558,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2728,9 +2774,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2758,6 +2801,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2821,6 +2867,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2881,12 +2933,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3064,7 +3110,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3446,12 +3492,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3518,7 +3558,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3557,22 +3597,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3581,10 +3612,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3617,9 +3654,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3723,6 +3757,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3747,7 +3784,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3774,6 +3811,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4402,9 +4442,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4441,9 +4478,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4454,6 +4488,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4598,7 +4637,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4612,9 +4651,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/app.pot b/locale/app.pot index 85c70dc171..5d8c982b64 100644 --- a/locale/app.pot +++ b/locale/app.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-10-09 01:10+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -137,10 +137,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -220,7 +220,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -256,6 +256,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -301,7 +304,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -346,9 +349,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -379,6 +379,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -547,22 +553,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -601,10 +601,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -613,7 +610,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -634,6 +631,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -706,6 +709,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -772,10 +778,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -844,6 +850,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -871,15 +880,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -916,10 +925,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -928,6 +934,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -940,9 +949,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1003,6 +1030,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1015,7 +1045,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1057,6 +1087,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1105,9 +1138,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1120,7 +1150,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1142,8 +1172,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1152,6 +1182,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1164,9 +1199,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1215,13 +1247,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1245,6 +1274,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1335,9 +1367,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1395,9 +1424,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1431,9 +1457,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1446,9 +1469,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1473,6 +1493,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1494,10 +1517,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1542,6 +1565,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1563,9 +1589,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1662,9 +1685,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1698,9 +1718,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1782,6 +1799,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1845,9 +1865,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2117,6 +2134,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2126,6 +2146,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2207,9 +2230,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2249,7 +2269,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2264,6 +2284,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2321,6 +2344,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2396,6 +2422,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2411,6 +2443,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2459,6 +2497,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2482,6 +2525,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2695,9 +2741,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2725,6 +2768,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2788,6 +2834,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2848,12 +2900,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3031,7 +3077,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3413,12 +3459,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3485,7 +3525,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3524,22 +3564,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3548,10 +3579,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3584,9 +3621,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3690,6 +3724,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3714,7 +3751,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3741,6 +3778,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4369,9 +4409,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4408,9 +4445,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4421,6 +4455,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4565,7 +4604,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4579,9 +4618,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ar/app.po b/locale/ar/app.po index 2aff22d356..6ab1678c65 100644 --- a/locale/ar/app.po +++ b/locale/ar/app.po @@ -51,7 +51,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: , 2013\n" "Language-Team: Arabic (http://app.transifex.com/mysociety/alaveteli/language/a" @@ -191,10 +191,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -283,8 +283,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: لاختيار موضوع البحث , انظر لائحة الاختيارات اسفله." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "نصيحةحول كيفية تمكين صاحب الطلب من إجابةٍ شافية. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "كل المعلوماتقد تم ارسالها" @@ -325,6 +325,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "لم يقع تلقي اي طلب \n" @@ -379,8 +382,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A المتابعة الى {{request_title}} وقع ارسالها {{public_body_name}} من قبل {{info_request_user}} بتاريخ {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr " هل تملك الحقوق التجارية " +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -426,9 +429,6 @@ msgstr "معلومات عنك:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -461,6 +461,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -635,24 +641,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "في انتظار التّصنيف" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "في انتظار مراجعة داخلية" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "في انتظار الرد" - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -689,11 +689,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "عرض والبحث عن الطلبات" - -msgid "Browse and search requests (page {{count}})" -msgstr "عرض والبحث عن الطلبات (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -701,8 +698,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "عرض الطلبات" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -722,6 +719,12 @@ msgstr "حسب مايمليه القانون من المفروض أن يكون { msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -794,6 +797,9 @@ msgstr "قم بتوضيح مطلب حرية النفاذ الى المعلومة msgid "Classify an FOI response from {{authority_name}}" msgstr "صنف اجابة لحرية النفاذ للمعلومة من {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -862,10 +868,10 @@ msgstr "تأكيد عنوان بريدك الالكتروني" msgid "Confirm your new email address on {{site_name}}" msgstr "تأكيد عنوان بريدك الإلكتروني الجديد على {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -936,6 +942,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "التاريخ:" @@ -963,15 +972,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "تاخر الاجابة على طلب حرية النفاذ الى المعلومة - {{request_title}}" -msgid "Delayed." -msgstr "مؤجل" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "خطأ ارسال" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -1008,10 +1017,7 @@ msgstr "منجز" msgid "Done >>" msgstr "تم >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1020,6 +1026,9 @@ msgstr "تحميل ملف مضغوط لجميع المراسلات" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "تحميل الملحقات الأصلية" @@ -1034,9 +1043,27 @@ msgstr "" "حذف و اضف اتفاصيل اكثرللرسالةاعلاه,\n" " لتفسير اسباب عدم رضاك على الرد." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "تعديل النص الخاص بك" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "تعديل هذا الطلب" @@ -1097,6 +1124,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1109,8 +1139,8 @@ msgstr "" msgid "FOI" msgstr "حرية النفاذ الى المعلومة" -msgid "FOI email address for {{public_body}}" -msgstr "عنوان البريد الالكتروني لحرية المعلومة ل {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1151,6 +1181,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1199,9 +1232,6 @@ msgstr "تابع" msgid "Follow up message sent by requester" msgstr "تابع الرسالة المرسلة من صاحب الطلب" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1214,8 +1244,8 @@ msgstr "المتابعات و الردود الجدبدة على هذا الم msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "تابعنا على التويتر" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1236,8 +1266,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1246,6 +1276,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1260,9 +1295,6 @@ msgstr "" "قانون حرية المعلومات لا ينطبق على هذه السلطة ,لذلك ليس بامكانك تقديم مطلب لها\n" "." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1311,13 +1343,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1341,6 +1370,9 @@ msgstr "" msgid "Help" msgstr "المساعدة" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1437,9 +1469,6 @@ msgstr "نلقيت رسالة خطأ" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1502,9 +1531,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "ان لم يسبق لك ان فعلت ذلك،الرجاء كتابة رسالة أسفله لاخبار السلطات أنك قد سحبت طلبك والا لن يعرفوا بذلك." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "اذا تجيب على هذا السؤال سيذهب مباشرة الى {{user_name}}, الذي\n" @@ -1548,9 +1574,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "تضمين روابط ذات صلة مثل صفحة الحملة،المدوّنةأو صفحة التّويتر. تصبح هذه الروابط متاحة للجميع." @@ -1563,9 +1586,6 @@ msgstr "المطالب الفردية" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "معلومة غير معتمدة." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "معلومات عن الارسال والتصريف (مثل. ضجيج, طاقة,\n" @@ -1592,6 +1612,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "هل عنوان هذا البريد الالكتروني {{email_address}} خاطئ بالنسبة ل{{law_used_full}} الطلبات ل {{public_body_name}}?في هذه الحالة الرجاء الاتصال بنا باستعمال الصيغة التالية:" @@ -1613,10 +1636,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1661,6 +1684,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1684,9 +1710,6 @@ msgstr "سجل دخولك في مجال المشرف" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "تأخير مطول" - msgid "Made between" msgstr "تم بين" @@ -1783,9 +1806,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "مطالب جديدة لحرية النفاذ الى المعلومة" @@ -1819,9 +1839,6 @@ msgstr "مستجدات حديثة عن المطلب '{{request_title}}'" msgid "Newest results first" msgstr "النتائج الأحدث أوّلاً" -msgid "News story" -msgstr "" - msgid "Next" msgstr "التالي" @@ -1903,6 +1920,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "أو أزل الصورة الحالية" @@ -1966,9 +1986,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "ناجحة جزئيا." - msgid "Password is not correct" msgstr "كلمة العبور خاطئة" @@ -2249,6 +2266,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2258,6 +2278,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2339,9 +2362,6 @@ msgstr "اظهار أحدث النتائج أولا" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "مرفوض." - msgid "Regenerate one time passcode" msgstr "" @@ -2381,8 +2401,8 @@ msgstr "التقرير عن هذا المطلب" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "تم التبليغ لادارة الموقع" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2396,6 +2416,9 @@ msgstr "طلب مراجعة داخلية" msgid "Request an internal review from {{person_or_body}}" msgstr "اطلب مراجعة داخلية من {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2453,6 +2476,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "الرد عبر البريد الإلكتروني" @@ -2531,6 +2557,12 @@ msgstr "" msgid "Search queries" msgstr "استفسارات البحث" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "نتائج البحث" @@ -2546,6 +2578,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "ابعث متابعة " @@ -2594,6 +2632,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2617,6 +2660,9 @@ msgstr "ضع صورة لحسابك" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2836,9 +2882,6 @@ msgstr "مطالب حرية النفاذ للمعلومة ناجحة" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "ناجح" - msgid "Suggest how the requester can find the rest of the information." msgstr "اقترح الطريقة التي يستطيع من خلالها صاحب الطلب ايجاد بقية المعلومات." @@ -2866,6 +2909,9 @@ msgstr "اشارات" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "شكرا على مساعدتنا على ابقاء الموقع مرتبا!" @@ -2937,6 +2983,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "تم ترك كل حساب كما كان سابقا" @@ -2999,12 +3051,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "هذه الصفحة غير موجودة. الاشياء التي لمكن ان تجربها:" @@ -3182,8 +3228,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "كان هنالك خطأ في التسلبم او ما شابه ذلك, و يحتاج اصلاحه من قبل {{site_name}} الفريق." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3579,12 +3625,6 @@ msgstr "" msgid "Turn off email alerts" msgstr " اطفئ اشارات تنبيه البريد الالكتروني" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "ضع هذا الطلب على التويتر" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3653,8 +3693,8 @@ msgstr "إلغاء الاشتراك" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "اجابة غير مألوفة" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3692,23 +3732,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "رؤية البريد الالكتروني لحرية النفاذ الى المعلومة" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "رؤية البريد الالكتروني لحرية النفاذ الى المعلومة ل '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "رؤية البريد الالكتروني لحرية النفاذ الى المعلومة {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "الاطلاع على طلبات حرية النفاذ الى المعلومة المقدمة من قبل {{user_name}}:" msgid "View authorities" msgstr "عرض السلطات" -msgid "View email" -msgstr "عرض البريد الالكتروني" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3716,11 +3747,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "انتظار التوضيحات" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "بانتظار مراجعة داخلية من طرف {{public_body_link}} عن كيفية التعامل مع هذا الطلب." @@ -3752,9 +3789,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "لا نملك طلب عنوان بريد الكتروني صالح لهذه السلطة" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "لا نملك {{law_used_full}} عنوان بريد الكتروني صالح ل{{public_body_name}}." @@ -3874,6 +3908,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "عندما تصل هناك, الرجاء تحيين الحالة لاخبارنا ان كان الرد يحتوي\n" @@ -3902,8 +3939,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "وقع سحبها من قبل صاحب الطلب" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3929,6 +3966,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4577,9 +4617,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "سبب مجهول" - msgid "unknown reason " msgstr "سبب مجهول" @@ -4616,9 +4653,6 @@ msgstr "{{authority_name}} لم تكن لديناالمعلوم msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} في انتظار توضيحك." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4629,6 +4663,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4776,8 +4815,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} يتوافق مع '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} مدونة و تغريدات" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4790,9 +4829,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} ارسل طلبات جديدة ل {{request_email}} بخصوص هذه السلطة." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/bg/app.po b/locale/bg/app.po index 949d38de85..4ed80c7898 100644 --- a/locale/bg/app.po +++ b/locale/bg/app.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: louisecrow , 2014\n" "Language-Team: Bulgarian (http://app.transifex.com/mysociety/alaveteli/languag" @@ -184,10 +184,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Разгледайте всички или поискайте да добавим някой." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -278,8 +278,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: за да зададете тип на нещо за търсене, вижте таблицата със свойства по-долу." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Съвет как да се получи отговор, който да удовлетвори питащия. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Цялата информация беше изпратена" @@ -316,6 +316,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Не беше получен отговор\n" @@ -372,8 +375,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Пояснително съобщение към {{request_title}} беше изпратено до {{public_body_name}} от {{info_request_user}} на {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Към {{request_title}} беше изпратен отговор от {{public_body_name}} до {{info_request_user}} на {{date}}. Състоянието на заявлението е: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -419,9 +422,6 @@ msgstr "За Вас:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -454,6 +454,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Добавяне на орган - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Добавяне на органа:" @@ -630,24 +636,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Чака класифициране." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Чака вътрешно разглеждане." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Чака отговор." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -684,11 +684,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Преглед и търсене на заявления" - -msgid "Browse and search requests (page {{count}})" -msgstr "Преглед и търсене на заявления (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -696,8 +693,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Преглед на заявления" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -717,6 +714,12 @@ msgstr "По закон, {{public_body_link}} нормално следва да msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Не намирате това, което искате?" @@ -789,6 +792,9 @@ msgstr "Пояснете Вашето Заявление за ДдИ - {{request msgid "Classify an FOI response from {{authority_name}}" msgstr "Класифициране на отговор за ДдИ от {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -857,10 +863,10 @@ msgstr "Потвърдете Вашия имейл адрес" msgid "Confirm your new email address on {{site_name}}" msgstr "Потвърдете Вашия нов имейл адрес в {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -929,6 +935,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Дата:" @@ -956,15 +965,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Закъснява отговорът на Вашето заявление за ДдИ - {{request_title}}" -msgid "Delayed." -msgstr "Закъснялo." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Грешка при доставка" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -1001,10 +1010,7 @@ msgstr "Готово" msgid "Done >>" msgstr "Готово >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1013,6 +1019,9 @@ msgstr "Сваляне на zip файл с цялата кореспонден msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Сваляне на оригиналното приложение" @@ -1027,9 +1036,27 @@ msgstr "" "Редактирайте и добавете повече детайли към горното съобщение,\n" " обяснявайки защо сте недоволни от техния отговор." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Редактиране на текста за Вас" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Редактиране на това заявление" @@ -1095,6 +1122,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1107,8 +1137,8 @@ msgstr "" msgid "FOI" msgstr "ДдИ" -msgid "FOI email address for {{public_body}}" -msgstr "Имейл адрес за ДдИ за {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1149,6 +1179,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "Изберете органите, на които ще пишете" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Първо, успешни ли бяга другите Ви заявления?" @@ -1197,9 +1230,6 @@ msgstr "Пояснително съобщение" msgid "Follow up message sent by requester" msgstr "Пояснително съобщение, изпратено от заявителя" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1212,8 +1242,8 @@ msgstr "Пояснителни съобщения от заявителя и н msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Последвайте ни в twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1234,8 +1264,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1244,6 +1274,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1258,9 +1293,6 @@ msgstr "" "Законът за Достъп до Обществена Информация не е приложим за този орган,\n" " така че, Вие не може да направите заявление към него." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1312,13 +1344,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1342,6 +1371,9 @@ msgstr "" msgid "Help" msgstr "Помощ" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1440,9 +1472,6 @@ msgstr "Аз получих съобщение за грешкаcontact us." -msgstr "Ако адресът е грешен, или знаете по-добър адрес, моля пишете ни." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ако това е грешка при доставката и Вие можете да посочите актуален имейл адрес за органа, молим, уведомете ни чрез формата по-долу." @@ -1508,11 +1537,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ако все още не сте го направили, моля, напишете по-долу съобщение, уведомяващо органа, че Вие сте оттеглили заявлението си. Иначе, те няма да узнаят, че заявлението е оттеглено." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Ако знаете нужния адрес, молим, изпратете ни го.\n" -" Бихте могли да намерите адреса на техния сайт, или като им се обадите по телефона и ги попитате." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ако отговорите на това съобщение, то ще е директно до {{user_name}},\n" @@ -1554,9 +1578,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Поставете препратки към материали по темата като страници на кампании,\n" @@ -1572,9 +1593,6 @@ msgstr "Индивидуални заявления" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Органът не разполага с такава информация." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Информация за емисии и изтичания (напр. шум, енергии,\n" @@ -1601,6 +1619,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Грешен ли е адресът {{email_address}} за {{law_used_full}} заявления към {{public_body_name}}? Ако да, моля свържете се с нас, използвайки тази форма:" @@ -1625,12 +1646,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Само още едно нещо" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1673,6 +1694,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1696,9 +1720,6 @@ msgstr "Влезте в административния панел" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Значително пресрочено." - msgid "Made between" msgstr "Направено между" @@ -1795,9 +1816,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Нови заявления за Достъп до информация" @@ -1831,9 +1849,6 @@ msgstr "Новости по заявлението '{{request_title}}'" msgid "Newest results first" msgstr "Първо най-новите резултати" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Следващ" @@ -1915,6 +1930,9 @@ msgstr "" msgid "Number of requests" msgstr "Брой заявления" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ИЛИ премахнете съществуващата снимка" @@ -1978,9 +1996,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Частично успешно." - msgid "Password is not correct" msgstr "Паролата не е правилната" @@ -2263,6 +2278,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2272,6 +2290,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Публични органи" @@ -2353,9 +2374,6 @@ msgstr "Първо последно описаните резултати" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Отказано." - msgid "Regenerate one time passcode" msgstr "" @@ -2395,8 +2413,8 @@ msgstr "Докладване на това заявление" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Докладвано на вниманието на администратор." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Докладването на заявление уведомява администраторите на сайта. Те ще отговорят възможно най-скоро." @@ -2410,6 +2428,9 @@ msgstr "Искане на вътрешно разглеждане" msgid "Request an internal review from {{person_or_body}}" msgstr "Искане на вътрешно разглеждане от {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2467,6 +2488,9 @@ msgstr "Заявления ще бъдат изпратени до следни msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Отговорете с имейл" @@ -2545,6 +2569,12 @@ msgstr "" msgid "Search queries" msgstr "Заявки за търсене" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Резултати от търсенето" @@ -2560,6 +2590,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Изпращане на пояснително съобщение" @@ -2608,6 +2644,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2631,6 +2672,9 @@ msgstr "Задайте снимка за профила Ви" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2850,9 +2894,6 @@ msgstr "Успешни Заявления за Достъп до информа msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Успешно." - msgid "Suggest how the requester can find the rest of the information." msgstr "Предложете как питащия може да намери останалата част от информацията." @@ -2880,6 +2921,9 @@ msgstr "Маркери:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Благодарим Ви, че ни помагате да поддържаме сайта спретнат!" @@ -2951,6 +2995,12 @@ 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 "URL-ът, където сте намерили имейл адреса. Това поле не е задължително, но ще ни помогне много, ако може да ни предоставите конкретната страница в сайта на органа, където е посочен този адрес. Така най-лесно ще можем да го проверим." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Акаунтите бяха оставени както си бяха." @@ -3013,12 +3063,6 @@ msgstr "Последният потребител е бил създаден п msgid "The last user was created over a day ago" msgstr "Последният потребител е бил създаден преди повече от един ден" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Страницата не съществува. Това, което може да опитате сега:" @@ -3202,8 +3246,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Все още няма нищо за показване." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Получи се някаква грешка при обработката, която се нуждае от вниманието на екипа на {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3600,12 +3644,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Спри известията по имейл" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Туитване на това заявление" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3674,8 +3712,8 @@ msgstr "Отписване" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Необичаен отговор." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Обновяване на имейл адрес - {{public_body_name}}" @@ -3713,23 +3751,14 @@ msgstr "Неоснователно" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Имейл адрес за ДдИ" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Показване на ДдИ имейл адреса за '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Показване ДдИ имейл адрес за {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Преглед на Заявленията за Достъп до информация, направени от {{user_name}}:" msgid "View authorities" msgstr "Преглед на органите" -msgid "View email" -msgstr "Преглед на имейл" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3737,11 +3766,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Очаква пояснение." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Очаква вътрешно разглеждане от {{public_body_link}} на тяхната работа по това заявление." @@ -3773,9 +3808,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ние нямаме работещ имейл адрес за заявления към този орган." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Не разполагаме с работещ адрес за Заявления за {{law_used_full}} на {{public_body_name}}." @@ -3893,6 +3925,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Когато отидете там, молим, обновете състоянието, за да е ясно дали\n" @@ -3921,8 +3956,8 @@ msgstr "Защо конкретно смятате това заявление msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Оттеглено от заявителя." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "" @@ -3948,6 +3983,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4602,9 +4640,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "непозната причина" - msgid "unknown reason " msgstr "непозната причина " @@ -4641,9 +4676,6 @@ msgstr "{{authority_name}} не са имали исканат msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} очаква Вашето пояснение." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4654,6 +4686,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4804,8 +4841,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} съвпада с '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} блог и туитове" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4818,9 +4855,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} изпраща новите заявления до {{request_email}} за този орган." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/bs/app.po b/locale/bs/app.po index 9726bfe1c3..c6ebc111b0 100644 --- a/locale/bs/app.po +++ b/locale/bs/app.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: vedad , 2011\n" "Language-Team: Bosnian (http://app.transifex.com/mysociety/alaveteli/language/" @@ -185,10 +185,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Pretraži sve ili zamolite nas da dodamo ." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -272,8 +272,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Savjet o tome kako dobiti odgovor koji će zadovoljiti podnosioca zahtjeva. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Sve informacije su poslane" @@ -310,6 +310,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Nema odgovora je primljeno\n" @@ -362,7 +365,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -409,9 +412,6 @@ msgstr "O Vama:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -444,6 +444,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -620,24 +626,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Čeka klasifikaciju." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Čeka urgenciju" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Čeka odgovor." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -674,11 +674,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Pregledaj i pretraži zahtjeve" - -msgid "Browse and search requests (page {{count}})" -msgstr "Pregledaj i pretraži zahtjeve (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -686,8 +683,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Vidjeti zahtjeve" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -707,6 +704,12 @@ msgstr "Po zakonu, {{public_body_link}} je trebala odgovoriti brzoviše detalja na poruku iznad,\n" " objašnjavajući zašto niste zadovoljni njihovim odgovorom." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Uredite tekst o Vama" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Uredi ovaj zahtjev" @@ -1083,6 +1110,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1095,8 +1125,8 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" -msgstr "ZOSPI e-mail adresa za {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1137,6 +1167,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1185,9 +1218,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "Prateća poruka poslana od strane podnosioca zahtjeva" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1200,8 +1230,8 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Pratite nas na twitter-u" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1222,8 +1252,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1232,6 +1262,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1244,9 +1279,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1295,13 +1327,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1325,6 +1354,9 @@ msgstr "" msgid "Help" msgstr "Pomoć" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1423,9 +1455,6 @@ msgstr "Dobio/la sam poruku o pogrešci" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ako je adresa pogrešna, ili znate bolju adresu, molimo Vas da nas kontaktirate." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1491,11 +1520,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ako niste već, molimo napišite poruku ispod u kojoj napominjete ustanovu da ste povukli Vaš zahtjev. U protivnom neće znati da je zahtjev povučen." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Ako znate koju adresu treba koristiti, molimo Vas pošaljite je nama.\n" -" Moguće je da možete naći adresu na njihovoj web stranici, ili putem telefona." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1535,9 +1559,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" " Uključite relevantne linkove, poput stranice kampanje, Vašeg bloga ili \n" @@ -1553,9 +1574,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Ne posjedujemo informacije." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informacije o emisijama i otpadima (npr. buka, energija,\n" @@ -1582,6 +1600,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Da li je {{email_address}} pogrešna adresa za {{law_used_full}} zahtjeve za {{public_body_name}}?Ako da, molimo kontaktirajte nas koristeći ovaj formular:" @@ -1606,10 +1627,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1654,6 +1675,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1677,9 +1701,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "Napravljen između" @@ -1776,9 +1797,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Novi Zahtjevi za slobodan pristup informacijama" @@ -1812,9 +1830,6 @@ msgstr "Nova ažuriranja za zahtjev '{{request_title}}'" msgid "Newest results first" msgstr "Najnoviji rezultati " -msgid "News story" -msgstr "" - msgid "Next" msgstr "Slijedeći" @@ -1896,6 +1911,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ILI odstrani postojeću sliku" @@ -1959,9 +1977,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Djelimično uspješan." - msgid "Password is not correct" msgstr "Password nije ispravan" @@ -2242,6 +2257,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2251,6 +2269,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2332,9 +2353,6 @@ msgstr "Nedavno opisani rezultati " msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Odbijen." - msgid "Regenerate one time passcode" msgstr "" @@ -2374,7 +2392,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2389,6 +2407,9 @@ msgstr "Tražite " msgid "Request an internal review from {{person_or_body}}" msgstr "Zatražiti urgenciju od strane {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2446,6 +2467,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-mailom" @@ -2521,6 +2545,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultati pretrage" @@ -2536,6 +2566,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2584,6 +2620,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2607,6 +2648,9 @@ msgstr "Podesiti sliku na Vašem profilu" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2826,9 +2870,6 @@ msgstr "Uspješni Zahtjevi za slobodan pristup informacijama" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Uspješan." - msgid "Suggest how the requester can find the rest of the information." msgstr "Predložite kako ponosioc zahtjeva može pronaći ostatak informacije." @@ -2856,6 +2897,9 @@ msgstr "Označeni:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Hvala što nam pomažete da održavamo ovu web stranicu urednom!" @@ -2927,6 +2971,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički računi nisu mijenjani" @@ -2989,12 +3039,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Stranica ne postoji. Stvari koje možete probati sada:" @@ -3178,8 +3222,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Došlo je do greške u isporuci ili nečega sličnog što treba popravku od strane {{site_name}} tima." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3568,12 +3612,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Tweetuj ovaj zahtjev" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3642,8 +3680,8 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Neobičan odgovor." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3681,23 +3719,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Vidjeti adresu za Zahtjeve za slobodan pristup informacijama." - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Vidjeti ZOSPI e-mail za '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Pogledati ZOSPI e-mail adrese za {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Pegledati Zahjeve za slobodan pristup informacijama napravljene od strane {{user_name}}:" msgid "View authorities" msgstr "Vidjeti ustanove" -msgid "View email" -msgstr "Pogledati e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3705,11 +3734,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Čekamo na objašnjenje." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "" @@ -3741,9 +3776,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ne posjedujemo ispravnu e-mail adresu za zahtjeve ove ustanove." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nemamo ispravnu {{law_used_full}} adresu za {{public_body_name}}." @@ -3861,6 +3893,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Kada dođete do toga, molimo ažurirajte status da nam kažete da li \n" @@ -3889,8 +3924,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Povučeno od strane podnosioca zahtjeva." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "" @@ -3916,6 +3951,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4554,9 +4592,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "nepoznat razlog" - msgid "unknown reason " msgstr "nepoznat razlog " @@ -4593,9 +4628,6 @@ msgstr "{{authority_name}} nije sadržavao traženu informaciju msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} čeka na Vaše objašnjenje." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4606,6 +4638,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4753,8 +4790,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogovi i tweet-ovi" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4767,9 +4804,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} šalje nove zahtjeve {{request_email}} za ovu javnu ustanovu." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ca/app.po b/locale/ca/app.po index 2f7f3128cd..145c4ff67d 100644 --- a/locale/ca/app.po +++ b/locale/ca/app.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: mmtarres , 2012\n" "Language-Team: Catalan (http://app.transifex.com/mysociety/alaveteli/language/" @@ -186,10 +186,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Veure totes o demana'ns que n'afegim una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -280,8 +280,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -325,6 +325,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No s'ha rebut cap resposta\n" @@ -377,7 +380,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -424,9 +427,6 @@ msgstr "Sobre mi:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -459,6 +459,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -635,24 +641,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Esperant classificació." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Esperando revisión interna." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Esperant resposta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -689,11 +689,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -701,8 +698,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -722,6 +719,12 @@ msgstr "Por ley, {{public_body_link}} debería haber respondido prontomore details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edita el text sobre tu" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1098,6 +1125,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1110,8 +1140,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "Adreça de correu de {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1152,6 +1182,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1200,9 +1233,6 @@ msgstr "Seguimiento" msgid "Follow up message sent by requester" msgstr "Respuesta enviada por el creador de la solicitud" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1215,8 +1245,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1237,8 +1267,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1247,6 +1277,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1259,9 +1294,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La Ley de Acceso a la Información no es aplicable a este organismo, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1313,13 +1345,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1343,6 +1372,9 @@ msgstr "" msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1444,9 +1476,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si l'adreça és incorrecta, o en coneix una de més actualitzada, sisplau contacta'ns." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1512,11 +1541,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando al organismo público de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Si coneixes la direcció a utilitzar, si us plau envia'ns-la.\n" -" Pot ser que la trobis a la seva pàgina web, o trucant-los per telèfon i preguntant." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1554,9 +1578,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" " Inclou enllaços rellevants, com a una pàgina informativa, el teu bloc o\n" @@ -1572,9 +1593,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Informació no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1601,6 +1619,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctenos usando el siguiente formulario:" @@ -1625,10 +1646,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1673,6 +1694,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1697,9 +1721,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Molt endarrerida." - msgid "Made between" msgstr "Realitzades entre" @@ -1796,9 +1817,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1832,9 +1850,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultats recents primer" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1916,6 +1931,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borre la foto actual" @@ -1979,9 +1997,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Èxit parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2262,6 +2277,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2271,6 +2289,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2352,9 +2373,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "" @@ -2394,7 +2412,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2409,6 +2427,9 @@ msgstr "Pida una revisión interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Pedir una revisión interna a {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2466,6 +2487,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2544,6 +2568,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultats de la cerca" @@ -2559,6 +2589,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Enviar una resposta" @@ -2607,6 +2643,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2630,6 +2671,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2849,9 +2893,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2879,6 +2920,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2950,6 +2994,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3012,12 +3062,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3200,8 +3244,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "S'ha produït un error en el lliurament o quelcom similar, i necessita ser arreglat per l'equip de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3596,12 +3640,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Piular aquesta sol·licitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3668,8 +3706,8 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3707,23 +3745,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Veure l'adreça de correu" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Veure l'adreça de correu de '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Veure l'adreça de correu de '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver organismos públicos" -msgid "View email" -msgstr "Veure el correu" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3731,11 +3760,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando una revisión interna por parte de {{public_body_link}} de cómo han respondido a esta solicitud." @@ -3767,9 +3802,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para este organismo." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3885,6 +3917,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualice el estado para indicar si la respuesta \n" @@ -3913,8 +3948,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3940,6 +3975,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4588,9 +4626,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4627,9 +4662,6 @@ msgstr "{{authority_name}} no tenia la informació sol·licitad msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4640,6 +4672,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4790,8 +4827,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4804,9 +4841,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envia noves sol·licituds a {{request_email}} per aquest organisme." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ckb/app.po b/locale/ckb/app.po index 1db57be6b0..f214579b62 100644 --- a/locale/ckb/app.po +++ b/locale/ckb/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Central Kurdish (http://app.transifex.com/mysociety/alaveteli/l" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/cs/app.po b/locale/cs/app.po index 1f825a57f8..b181c8f022 100644 --- a/locale/cs/app.po +++ b/locale/cs/app.po @@ -35,6 +35,7 @@ # Appukonrad , 2012 # Appukonrad , 2012 # Daniela Reischlová, 2024 +# Daniela Reischlová, 2024 # Graeme Porteous , 2021 # Hana Hunt , 2016-2018,2020-2021,2023-2024 # Hana Huntova <>, 2012-2015 @@ -45,7 +46,7 @@ # janakneschke , 2012-2013 # janakneschke , 2013 # Jiří Podhorecký, 2021 -# Jiří Podhorecký , 2024 +# Jiří Podhorecký , 2021,2024 # Appukonrad , 2012,2015-2017 # Jiří Podhorecký , 2021-2022 # josefpospisil , 2012 @@ -62,9 +63,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Jiří Podhorecký , 2024\n" +"Last-Translator: Jiří Podhorecký , 2021,2024\n" "Language-Team: Czech (http://app.transifex.com/mysociety/alaveteli/language/cs" "/)\n" "MIME-Version: 1.0\n" @@ -205,11 +206,11 @@ msgstr "60 minut +" msgid "Browse all or ask us to add one." msgstr "Prohlížet vše nebo požádat o přidání kontaktu." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Vzneste nový EIR dotaz na {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Vzneste nový dotaz na {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Přihlašte se abyste dostávali aktualizace záležitostí, které sledujete nebo znovu-obnovili e-mailové upomínky. " @@ -294,8 +295,8 @@ msgstr "Tagujte:charity umožní vám najít insti msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "možnsti: pro výběr možností vyhledávání navštivteTabulku možností below." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Doporučení: jak získat odpověď, která splní požadavky tazatele. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Veškeré informace byly odeslány" @@ -334,6 +335,9 @@ msgstr "Pokud změníte jméno, jméno se ve starých dotazech se nezmě msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Jste novinář nebo vědec? {{pro_site_link}} je komplexní profesionální nástroj pro ty, kteří používají sílu zákona o svobodném přístupu k informacím k pokročilé práci s informacemi z veřejného sektoru." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Bez odpovědi \n" @@ -386,8 +390,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Odpověď v konverzaci týkající se {{request_title}} byla odeslána instituci {{public_body_name}} uživatelem {{info_request_user}} dne {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Instituce {{public_body_name}} odeslala uživateli {{info_request_user}} dne {{date}} odpověď na dotaz {{request_title}}. Stav dotazu je nyní: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "A shrnutí odpovědi, pokud jste ji dostali dopisem poštou." @@ -431,9 +435,6 @@ msgstr "O vás:" msgid "About {{count}} FOI requests found" msgstr "Bylo nalezeno přibližně {{count}} dotazů" -msgid "Academic paper" -msgstr "Vědecká práce" - msgid "Account closed at user request" msgstr "Účet uzavřen podle požadavku uživatele" @@ -466,6 +467,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Přidejte instituci- {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Přidejte instituci:" @@ -638,24 +645,18 @@ msgstr "Čeká se na upřesnění" msgid "Awaiting classification" msgstr "Čeká se na zařazení" -msgid "Awaiting classification." -msgstr "Čeká se zařazení." - msgid "Awaiting internal review" msgstr "Čeká se na interní kontrolu" -msgid "Awaiting internal review." -msgstr "Čeká se na doplnění dotazu." - msgid "Awaiting response" msgstr "Čeká se na odpověď" -msgid "Awaiting response." -msgstr "Čeká se na odpověď." - msgid "Back to content" msgstr "Zpět na obsah" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Zabanován za vyhýbání se dalšímu banu" @@ -692,11 +693,8 @@ msgstr "Procházejte všechny instituce →" msgid "Browse all requests →" msgstr "Zobrazit dotazy →" -msgid "Browse and search requests" -msgstr "Hledejte dotaz" - -msgid "Browse and search requests (page {{count}})" -msgstr "Hledejte dotazy (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Procházet nejnovější dotazy" @@ -704,8 +702,8 @@ msgstr "Procházet nejnovější dotazy" msgid "Browse latest responses" msgstr "Procházet nejnovější odpovědi" -msgid "Browse requests" -msgstr "Zobrazit dotazy" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Podle zákona musí odpovědět" @@ -725,6 +723,12 @@ msgstr "Podle zákona by měla instituce {{public_body_link}} odpovědět okamž msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Nemůžete najít to, co hledáte?" @@ -797,6 +801,9 @@ msgstr "Upřesněte svůj dotaz – {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Zařaďte dotaz od {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Klasifikovat odpovědi" @@ -863,11 +870,11 @@ msgstr "Potvrďte svou e-mailovou adresu" msgid "Confirm your new email address on {{site_name}}" msgstr "Potvrďte novou e-mailovou adresu na stránkách {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Administrátoři IPV toto nepovažují za dotaz podle zákona o svobodném přístupu k informacím." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Tento dotaz odporoval dobrým mravům." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Kontaktujte nás" @@ -937,6 +944,9 @@ msgstr "V současnosti se čeká na odpověď od instituce {{p msgid "Data interpretation" msgstr "Interpretace dat" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -972,15 +982,15 @@ msgstr "Zpoždění" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Zpožděná odpověď na váš dotaz – {{request_title}}" -msgid "Delayed." -msgstr "Zpoždění." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Stav doručení odcházející zprávy #{{id}}" msgid "Delivery error" msgstr "Chyba při doručení" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Podrobnosti dotazu “{{request_title}}”" @@ -1017,10 +1027,7 @@ msgstr "Hotovo" msgid "Done >>" msgstr "Hotovo >>" -msgid "Download Data" -msgstr "Stažená data" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1029,6 +1036,9 @@ msgstr "Stáhnout zazipovaný soubor celé korespondence" msgid "Download attachment" msgstr "Stáhnout přílohu" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Stáhnout původní přílohu" @@ -1043,9 +1053,27 @@ msgstr "" "Upravte a přidejte více informací do této zprávy\n" " s vysvětlením, proč není odpověď uspokojující." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Upravit text o sobě" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Upravit tento dotaz" @@ -1106,6 +1134,9 @@ msgstr "Veškeré informace, které vložíte na tuto stránku, včetně {{authority_email}}." -msgstr "Další zprávy týkající se existující žádosti obdrží {{authority_email}}" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Uživatel {{info_request_user}} odeslal odpověď {{public_body_name}} dne {{date}}." @@ -1223,8 +1254,8 @@ msgstr "Přidávání odpovědí a komentářů u tohoto dotazu bylo ukončeno k msgid "Follow us on Facebook" msgstr "Sledujte nás na Facebooku" -msgid "Follow us on twitter" -msgstr "Sledujte Informace pro všechny na Twitteru" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Sledování " @@ -1249,12 +1280,10 @@ msgstr[1] "Nalezeny {{count}} veřejné instituce začínajících na písmeno msgstr[2] "Nalezeno {{count}} veřejných institucí začínajících na písmeno ‘{{first_letter}}’" msgstr[3] "Nalezeno {{count}} veřejných institucí začínajících na písmeno ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Nalezena {{count}} veřejná instituce v kategorii ‘{{category_name}}’" -msgstr[1] "Nalezeny {{count}} veřejné instituce v kategorii ‘{{category_name}}’" -msgstr[2] "Nalezeno {{count}} veřejných institucí v kategorii ‘{{category_name}}’" -msgstr[3] "Nalezeno {{count}} veřejných institucí v kategorii ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1263,6 +1292,11 @@ msgstr[1] "Nalezeny {{count}} veřejné instituce s klíčovým slovem ‘{{tag_ msgstr[2] "Nalezeno {{count}} veřejných institucí s klíčovým slovem ‘{{tag_name}}’" msgstr[3] "Nalezeno {{count}} veřejných institucí s klíčovým slovem ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Před čtyřmi týdny jste vznesl/a dotaz podle Zákona o svobodném přístupu k informacím na {{public_body_name}} pomocí {{site_name}}." @@ -1275,9 +1309,6 @@ msgstr "zákona č. 106/1999 Sb. o svobodném přístupu k informacím" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Zákon o svobodném přístupu k informacím se na tuto instituci nevztahuje, proto na ni nelze vznést dotaz." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Zákon o svobodném přístupu k informacím se na tuto instituci již nevztahuje. Odpovědi na již existující dotazy jsou odesílány na {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Zákon o svobodném přístupu k informacím se již na {{public_body_name}} nevztahuje. " @@ -1326,14 +1357,11 @@ msgstr "Máte účet?" msgid "Handled by postal mail" msgstr "Vyřízeno poštou" -msgid "Handled by postal mail." -msgstr "Vyřízeno poštou." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Byla tento dotaz zmíněn ve zpravodajském článku nebo vědecké práci?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Byl tento dotaz zmíněn ve zpravodajském článku nebo vědecké práci? Dejte nám vědět:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Dobrý den, pokud nejste z {{country_name}} máme pro vás důležitou zprávu. " @@ -1356,6 +1384,9 @@ msgstr "Dobrý den. Dotaz o svobodném přístupu k informacím můžete vznést msgid "Help" msgstr "Nápověda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Pomozte nám zařadit neaktualizované dotazy" @@ -1451,9 +1482,6 @@ msgstr "Obdržel jsem chybovou zprávu" msgid "I've received an error message" msgstr "Obdržel/a jsem chybovou zprávu" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Pokud je adresa nesprávná, nebo víte o lepší adrese, prosíme kontaktujte nás." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Pokud zpráva nebyla doručena a podaří se vám vyhledat správnou e-mailovou adresu dané instituce, prosím napište nám ji. " @@ -1513,11 +1541,6 @@ msgstr "Pokud jste e-mail obdrželi před více než dvěma měsícisend it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Pokud víte, jakou adresu použít pošlete nám ji.\n" -" Adresu můžete najít na stránkách instituce, nebo můžete zavolat do podatelny a zjistit ji. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Pokud odpovíte na tuto zprávu, bude díky unikátní e-mailové adrese tohoto dotazu odeslána přímo {{user_name}}, která/ý uvidí i vaši e-mailovou adresu. " @@ -1554,9 +1577,6 @@ msgstr "Vylepšete bezpečnost svého účtu" msgid "In progress" msgstr "Pracuje se na tom" -msgid "In the News" -msgstr "Ve zprávách" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Vložte i konkrétní odkazy vztahující se k dotazu, například k vaší kampani, blogu, nebo k účtu Twitter. Bude na ně možné kliknout, např. " @@ -1569,9 +1589,6 @@ msgstr "Jednotlivé dotazy" msgid "Information not held" msgstr "Informace není k dispozici" -msgid "Information not held." -msgstr "Informace není k dispozici." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informace o vypouštění imisí a emisí (např. energie, hluk, radiace, odpady)" @@ -1596,6 +1613,9 @@ msgstr "Neplatné jednorázové heslo" msgid "Invalid token" msgstr "Neplatný symbol" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Je {{email_address}} chybná adresa pro {{law_used_full}} dotazy vznesené na instituci {{public_body_name}}? Pokud ano, prosíme kontaktujte nás vyplněním tohoto formuláře:" @@ -1620,12 +1640,12 @@ msgstr "Registrován/a od {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Registrován/a na {{site_name}} v {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Popište stručně co se stalo" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Svůj přístupový kód pečlivě uschovejte. Budete jej potřebovat pro potvrzení změny hesla svého účtu. Přístupový kód můžete uložit ve správci hesel nebo vytisknout a uložit si je na bezpečném místě. " - msgid "Keep your request up to date" msgstr "Aktualizujte svůj dotaz" @@ -1668,6 +1688,9 @@ msgstr "Opustit projekt" msgid "Let us know" msgstr "Dejte nám vědět" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Dejte nám vědět a my vám s tím pomůžeme." @@ -1691,9 +1714,6 @@ msgstr "Přihlásit jako admin" msgid "Long overdue" msgstr "Velké zpoždění" -msgid "Long overdue." -msgstr "Velké zpoždění." - msgid "Made between" msgstr "Vloženo mezi" @@ -1790,9 +1810,6 @@ msgstr "Vyžaduje pozornost administrátora" msgid "Needs status update" msgstr "Je potřeba aktualizovat status" -msgid "New Citation" -msgstr "Nová citace" - msgid "New Freedom of Information requests" msgstr "Nové dotazy " @@ -1826,9 +1843,6 @@ msgstr "Nové aktualizace u dotazu '{{request_title}}'" msgid "Newest results first" msgstr "Nejnovější výsledky jako první" -msgid "News story" -msgstr "Reportáž" - msgid "Next" msgstr "Další" @@ -1910,6 +1924,9 @@ msgstr "?" msgid "Number of requests" msgstr "Počet dotazů" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "NEBO odstraňte existující foto" @@ -1973,9 +1990,6 @@ msgstr "Částečně úspěšné." msgid "Partially successful" msgstr "Částečně úspěšné." -msgid "Partially successful." -msgstr "Částečně úspěšné." - msgid "Password is not correct" msgstr "Heslo není správné" @@ -2254,6 +2268,9 @@ msgstr "Vytiskněte si jednorázový přístupový kód." msgid "Privacy and cookies" msgstr "Soukromí a cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profilový obrázek pro {{user_name}}" @@ -2263,6 +2280,9 @@ msgstr "Vlastník projektu " msgid "Proposed Email:" msgstr "Navržený e-mail:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Veřejné instituce" @@ -2344,9 +2364,6 @@ msgstr "Jako první naposled aktualizované výsledky" msgid "Refused" msgstr "Odmítnuto." -msgid "Refused." -msgstr "Odmítnuto." - msgid "Regenerate one time passcode" msgstr "Znovu vytvořte jednorázový přístupový kód." @@ -2386,8 +2403,8 @@ msgstr "Nahlásit tento dotaz" msgid "Reported" msgstr "Nahlášeno" -msgid "Reported for administrator attention." -msgstr "Administrátor byl již upozorněn." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Nahlášení dotazu obdrží administrátor. Odpoví, jakmile to bude možné. " @@ -2401,6 +2418,9 @@ msgstr "Požádat o doplnění dotazu" msgid "Request an internal review from {{person_or_body}}" msgstr "Požádat o doplnění dotazu od instituce či jmenovitě jejím pracovníkem {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "E-mailová adresa dotazu nemůže zůstat prázdná" @@ -2458,6 +2478,9 @@ msgstr "Dotazy budou odeslány následujícím institucím:" msgid "Requires admin attention" msgstr "Vyžaduje zásah administrátora" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Odpovězte e-mailem" @@ -2536,6 +2559,12 @@ msgstr "" msgid "Search queries" msgstr "Prohledávejte dotazy" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Výsledky vyhledávání" @@ -2551,6 +2580,12 @@ msgstr "Sekce" msgid "See all →" msgstr "Zobrazit vše →" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Odpovědět" @@ -2599,6 +2634,11 @@ msgstr "Znovu odeslána následná zpráva na adresu {{public_body_name}} s pou msgid "Sent a follow up to {{public_body_name}} again." msgstr "Znovu odeslána následná zpráva na adresu {{public_body_name}}." +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "Znovu odeslán dotaz na {{public_body_link}} s použitím nové kontaktní adresy." @@ -2624,6 +2664,9 @@ msgstr "Nastavte své profilové foto" msgid "Share on Facebook" msgstr "Sdílet na Facebooku" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Sdílení pomocí soukromého odkazu" @@ -2842,9 +2885,6 @@ msgstr "Kompletně zodpovězený dotaz" msgid "Successful requests" msgstr "úspěšně zodpovězené dotazy" -msgid "Successful." -msgstr "Úspěch." - msgid "Suggest how the requester can find the rest of the information." msgstr "Doporučte, jak tazatel může najít úplné informace." @@ -2872,6 +2912,9 @@ msgstr "Tagy:" msgid "Tasks" msgstr "Úkoly" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Děkujeme vám, že nám pomáhate udržovat tyto stránky přehledné!" @@ -2945,6 +2988,12 @@ msgstr "URL, na které jste nalezli článek" 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 "Odkaz (URL), kde jste novou e-mailovou adresu našli. Toto pole je nepovinné, ale pokud nám dáte konkrétní odkaz na internetové stránky dané instituce, kde se příslušná adresa zobrazuje, bude ověřování pro nás mnohem jednodušší. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Ůčty zůstaly v původním stavu. " @@ -3005,12 +3054,6 @@ msgstr "Poslední uživatelský účet byl vytvořen během posledních 24 hodin msgid "The last user was created over a day ago" msgstr "Poslední uživatelský účet byl vytvořen před více než 24 hodinami" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "Nejstarší úloha indexu Xapian je nečinná déle než 1 hodinu" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "Nejstarší úloha indexu Xapian, není nečinná déle než 1 hodinu" - msgid "The page doesn't exist. Things you can try now:" msgstr "Stránka neexistuje. Zkuste toto:" @@ -3190,8 +3233,8 @@ msgstr "Rychlost vytváření anotací je také omezena. Pokud jste nedosáhli d msgid "There is nothing to display yet." msgstr "Zatím tu nic není" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Vyskytla se chyba při doručení nebo něco podobného, co potřebuje pozornost týmu stránek {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Nastala chyba, prosíme zkuste to znovu." @@ -3586,12 +3629,6 @@ msgstr "Zkuste otevřít záznamy v novém okně. " msgid "Turn off email alerts" msgstr "Nezasílat e-mailová upozornění" -msgid "Tweet it" -msgstr "Tweetujte tento dotaz" - -msgid "Tweet this request" -msgstr "Tweetujte tento dotaz" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Dvoufaktorové ověření zlepší bezpečnost vašeho účtu, pro obnovení vašeho hesla bude třeba více informací. " @@ -3658,8 +3695,8 @@ msgstr "Odhlásit odběr" msgid "Unusual response" msgstr "Neobvyklá odpověď" -msgid "Unusual response." -msgstr "Neobvyklá odpověď." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Aktualizujte e-mailovou adresu - {{public_body_name}}" @@ -3697,23 +3734,14 @@ msgstr "Nevhodný" msgid "Vexatious annotation" msgstr "Nevhodná poznámka" -msgid "View FOI email address" -msgstr "Zobrazit e-mailovou adresu pro zasílání žádostí podle zákona o svobodném přístupu k informacím. " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Adresa pro dotazy vznesené na '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Zobrazit e-mailovou adresu pro dotazy vznesené na {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Prohlédněte si dotazy vznesené uživatelem {{user_name}}:" msgid "View authorities" msgstr "Zobrazit instituce" -msgid "View email" -msgstr "Zobrazit e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Histore případu, detaily" @@ -3721,11 +3749,17 @@ msgstr "Histore případu, detaily" msgid "View other requests to {{public_body}}" msgstr "Prohlížejte další dotazy vnesené na {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Zobrazte své jednorázovvý přístupový kód k dvoufaktorovému ověření" -msgid "Waiting clarification." -msgstr "Čeká se na vysvětlení. " +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Stále čekám na doplnění dotazu institucí či jmenovitě jejím pracovníkem {{public_body_link}}." @@ -3757,9 +3791,6 @@ msgstr "Pro tuto zprávu jsme nemohli stáhnout žádné záznamy ze serveru. " msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Dotazy na informace o vašich osobních poměrech prostřednictvím {{site_name}} nepovolujeme. Váš dotaz jsme proto ostatním uživatelům skryli." -msgid "We do not have a working request email address for this authority." -msgstr "Nemáme funkční e-mailovou adresu pro tuto instituci." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Ještě nemáme {{law_used_full}} adresu pro {{public_body_name}}." @@ -3877,6 +3908,9 @@ msgstr "" msgid "What's happened:" msgstr "Co se stalo:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Přihlašte se na stránky IPV, přečtěte si odpověď a aktualizujte status tohoto dotazu s ohledem na poskytnutou odpověď. Status aktualizujete jednoduše zaškrtnutím jedné z možností.\n" @@ -3906,8 +3940,8 @@ msgstr "Z jakých konkrétních důvodů považujete tuto žádost za nevhodnou? msgid "Withdrawn" msgstr "Dotaz byl odvolán" -msgid "Withdrawn by the requester." -msgstr "Dotaz stažen tazatelem." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk ??" @@ -3936,6 +3970,9 @@ msgstr "" msgid "Yes" msgstr "Ano" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Stejný hromadný dotaz byl již vytvořen dne {{date}}. Zobrazte si existing batch, nebo upravte parametry k položení nového podobného hromadného dotazu." @@ -4597,9 +4634,6 @@ msgstr "zadejte hledaný termín" msgid "unknown" msgstr "neznámé" -msgid "unknown reason" -msgstr "neznámé důvody" - msgid "unknown reason " msgstr "neznámé důvody" @@ -4636,9 +4670,6 @@ msgstr "{{authority_name}} neměli požadované informace." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} čeká na vaše vysvětlení." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} přispivatelů" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} příloha" @@ -4653,6 +4684,11 @@ msgstr[1] "poznámek" msgstr[2] "Bylo vytvořeno {{count}} poznámek." msgstr[3] "Bylo vytvořeno {{count}} poznámek." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} sledující" @@ -4828,8 +4864,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} odpovídající '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "Blog a tweety stránek {{site_name}}" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4844,9 +4880,6 @@ msgstr "{{site_name}} zjistil, že {{authority_name}} mohl zamítnout celý vá msgid "{{site_name}} login link" msgstr "{{site_name}} odkaz na přihlášení" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "Pomocí stránek {{site_name}} vznesete nové dotazy na instituci s touto e-mailovou adresou: {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Uživatelé {{site_name}} vznesli {{number_of_requests}} dotaz, včetně:" diff --git a/locale/cy/app.po b/locale/cy/app.po index 5a05a4867e..dd3a18798a 100644 --- a/locale/cy/app.po +++ b/locale/cy/app.po @@ -56,9 +56,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Graeme Porteous , 2024\n" +"Last-Translator: PerryX , 2013\n" "Language-Team: Welsh (http://app.transifex.com/mysociety/alaveteli/language/cy" "/)\n" "MIME-Version: 1.0\n" @@ -196,10 +196,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Porwch y cyfan neu ofyn i ni ychwanegu un." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -279,8 +279,8 @@ msgstr "tag:charity i ddod o hyd i bob awdurdod cy msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: i ddewis y math o beth i chwilio amdano, gweler y tabl tabl o fathau isod." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Cyngor ar sut i gael ymateb a fydd yn bodloni'r ceisydd." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Mae'r holl wybodaeth wedi cael ei hanfon." @@ -315,6 +315,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Does dim ymateb wedi cael ei dderbyn (efallai nad oes dim ond cydnabyddiaeth)" @@ -360,8 +363,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Mae cais dilynol i {{request_title}} wedi ei anfon i {{public_body_name}} gan {{info_request_user}} ar {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "A ymateb i {{request_title}} ei anfon gan {{public_body_name}} i {{info_request_user}} ar {{date}}. Mae statws cais yw: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -405,9 +408,6 @@ msgstr "Amdanoch chi:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -438,6 +438,12 @@ msgstr "Ychwanegu nodyn at eich cais gyda dyfyniadau dewis, neu crynodeb msgid "Add authority - {{public_body_name}}" msgstr "Ychwanegu awdurdod - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Ychwanegu'r awdurdod:" @@ -606,24 +612,18 @@ msgstr "Yn disgwyl cadarnhad" msgid "Awaiting classification" msgstr "Yn disgwyl dosbarthiad" -msgid "Awaiting classification." -msgstr "Yn aros am gael ei ddosbarthu." - msgid "Awaiting internal review" msgstr "Yn disgwyl am adolygiad mewnol" -msgid "Awaiting internal review." -msgstr "Yn aros am adolygiad mewnol." - msgid "Awaiting response" msgstr "Yn disgwyl am ateb" -msgid "Awaiting response." -msgstr "Yn aros am ymateb." - msgid "Back to content" msgstr "Nôl i'r cynnwys" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -660,11 +660,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Pori pob cais →" -msgid "Browse and search requests" -msgstr "Gweld a chwilio ceisiadau" - -msgid "Browse and search requests (page {{count}})" -msgstr "Gweld a chwilio ceisiadau (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -672,8 +669,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Gweld ceisiadau" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Yn gyfreithiol, mae'n rhaid iddynt ymateb." @@ -693,6 +690,12 @@ msgstr "Yn ôl y gyfraith, dylai {{public_body_link}} fel arfer wedi ymateb >" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -987,6 +993,9 @@ msgstr "Lawrlwytho ffeil zip o bob gohebiaeth" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Lawrlwytho'r atodiad gwreiddiol" @@ -999,9 +1008,27 @@ msgstr "Rheoliadau Gwybodaeth Amgylcheddol" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Golygu ac ychwanegu mwy o fanylion at y neges uchod, yn esbonio pam eich bod yn anfodlon ar eu hymateb." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Golygu testun amdanoch chi" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Golygu'r cais hwn" @@ -1062,6 +1089,9 @@ msgstr "Dangosir popeth yr ydych yn rhoi i mewn ar y dudalen hon, gan gynnwys {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Dilynol a anfonwyd at {{public_body_name}} gan {{info_request_user}} ar {{date}}." @@ -1179,8 +1209,8 @@ msgstr "Rhwystrwyd dilyniannau ac ymatebion newydd i'r cais hwn i atal spam. {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1282,13 +1312,10 @@ msgstr "Gyda chyfrif?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1312,6 +1339,9 @@ msgstr "" msgid "Help" msgstr "Help" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1402,9 +1432,6 @@ msgstr "Rwyf wedi derbyn neges gwall" msgid "I've received an error message" msgstr "Rwyf wedi derbyn neges gwall" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Os yw'r cyfeiriad yn anghywir, neu os ydych yn gwybod am gyfeiriad gwell, cysylltwch â ni os gwelwch yn dda." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Os methiant dosbarthu oedd y gwall, ac rydych chi'n gallu dod o hyd i cyfeiriad e-bost Rhyddid Gwybodaeth cyfoes ar gyfer yr awdurdod, rhowch wybod i ni gan ddefnyddio'r ffurflen isod." @@ -1462,9 +1489,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Os nad ydych wedi gwneud hynny'n barod, ysgrifennwch neges isod gan ddweud wrth yr awdurdod eich bod wedi tynnu eich cais yn ôl. Fel arall, ni fyddant yn gwybod ei fod wedi cael ei dynnu'n ôl." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr " Os ydych yn gwybod pa gyfeiriad i'w ddefnyddio, yna os gwelwch yn dda anfonwch ef atom. Efallai y byddwch yn gallu dod o hyd i'r cyfeiriad ar eu gwefan, neu drwy eu ffonio nhw a gofyn." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Os byddwch yn ymateb i'r neges hon, bydd yn mynd yn uniongyrchol i {{user_name}}, a fydd yn dysgu eich cyfeiriad e-bost. Dim ond os yw hynny'n iawn y dylech ymateb." @@ -1498,9 +1522,6 @@ msgstr "" msgid "In progress" msgstr "Ar y gweill" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr " Cynhwyswch gysylltiadau perthnasol, megis i dudalen yr ymgyrch, eich blog neu gyfrif Twitter. Byddant yn cael eu gwneud yn gliciadwy. ee" @@ -1513,9 +1534,6 @@ msgstr "Ceisiadau unigol" msgid "Information not held" msgstr "Gwybodaeth ddim yn cael ei gadw" -msgid "Information not held." -msgstr "Gwybodaeth heb ei gadw." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Gwybodaeth am allyriadau a gollyngiadau (ee sŵn, ynni, ymbelydredd, deunyddiau gwastraff)" @@ -1540,6 +1558,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "A yw {{email_address}} y cyfeiriad anghywir ar gyfer ceisiadau {{law_used_full}} i {{public_body_name}}? Os felly, cysylltwch â ni gan ddefnyddio'r ffurflen hon:" @@ -1561,12 +1582,12 @@ msgstr "Ymunodd yn {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Ymunodd â(g) {{site_name}} yn {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Dim ond un peth arall" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1609,6 +1630,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1630,9 +1654,6 @@ msgstr "Logio i mewn i'r rhyngwyneb gweinyddu" msgid "Long overdue" msgstr "Yn hwyr ofnadwy" -msgid "Long overdue." -msgstr "Yn hwyr iawn" - msgid "Made between" msgstr "A wnaed rhwng" @@ -1729,9 +1750,6 @@ msgstr "Angen sylw gweinyddwr" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Ceisiadau Rhyddid Gwybodaeth newydd" @@ -1765,9 +1783,6 @@ msgstr "Diweddariadau newydd i'r cais '{{request_title}}'" msgid "Newest results first" msgstr "Canlyniadau diweddaraf yn gyntaf" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Nesaf" @@ -1849,6 +1864,9 @@ msgstr "" msgid "Number of requests" msgstr "Nifer y ceisiadau" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "NEU tynnwch y llun presennol" @@ -1912,9 +1930,6 @@ msgstr "Llwyddiant rhannol" msgid "Partially successful" msgstr "Rhannol lwyddiannus" -msgid "Partially successful." -msgstr "Rhannol lwyddiannus." - msgid "Password is not correct" msgstr "Nid yw'r cyfrinair yn gywir" @@ -2184,6 +2199,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "Preifatrwydd a chwcis" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2193,6 +2211,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Cyrff Cyhoeddus" @@ -2274,9 +2295,6 @@ msgstr "Canlyniadau a ddisgrifiwyd yn ddiweddar yn gyntaf" msgid "Refused" msgstr "Gwrthodwyd" -msgid "Refused." -msgstr "Gwrthodwyd." - msgid "Regenerate one time passcode" msgstr "" @@ -2316,8 +2334,8 @@ msgstr "Rhoi gwybod am y cais hwn" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Adroddwyd am sylw gweinyddwr." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Rhoi gwybod cais hysbysu'r gweinyddwyr safle. Byddant yn ymateb cyn gynted ag y bo modd." @@ -2331,6 +2349,9 @@ msgstr "Gofyn am adolygiad mewnol" msgid "Request an internal review from {{person_or_body}}" msgstr "Gofyn am adolygiad mewnol o {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2388,6 +2409,9 @@ msgstr "Ceir ceisiadau eu hanfon i'r cyrff canlynol:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Ymateb drwy e-bost" @@ -2463,6 +2487,12 @@ msgstr "Chwilio dros {{number_of_requests}} cais a {{nu msgid "Search queries" msgstr "Chwilio ymholiadau " +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Chwilio canlyniadau" @@ -2478,6 +2508,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Anfon neges ddilynol" @@ -2526,6 +2562,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2551,6 +2592,9 @@ msgstr "Gosodwch lun eich proffil" msgid "Share on Facebook" msgstr "Rhannu ar Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2764,9 +2808,6 @@ msgstr "Ceisiadau Rhyddid Gwybodaeth llwyddiannus" msgid "Successful requests" msgstr "Ceisiadau llwyddiannus" -msgid "Successful." -msgstr "Llwyddiannus." - msgid "Suggest how the requester can find the rest of the information." msgstr "Awgrymwch sut y gall y ceisydd ddod o hyd i weddill y wybodaeth ." @@ -2794,6 +2835,9 @@ msgstr "Tagiau:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Diolch i chi am ein helpu ni i gadw'r safle'n daclus!" @@ -2857,6 +2901,12 @@ 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 "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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Mae'r cyfrifon wedi cael eu gadael fel yr oeddent o'r blaen." @@ -2917,12 +2967,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Nid yw'r dudalen yn bodoli. Pethau y gallwch roi cynnig arnynt yn awr:" @@ -3100,8 +3144,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Does dim i'w ddangos eto." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Roedd gwall cyflenwi neu rywbeth tebyg, sy angen ei drwsio gan dîm {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3484,12 +3528,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Diffoddwch rybuddion e-bost" -msgid "Tweet it" -msgstr "Trydar hwn" - -msgid "Tweet this request" -msgstr "Trydarwch y cais hwn" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3556,8 +3594,8 @@ msgstr "Dad-danysgrifio" msgid "Unusual response" msgstr "Ymateb anarferol" -msgid "Unusual response." -msgstr "Ymateb anarferol." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Diweddaru cyfeiriad ebost - {{public_body_name}}" @@ -3595,23 +3633,14 @@ msgstr "Blinderus" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Gweld cyfeiriad e-bost i gais Rhyddid Gwybodaeth " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Gweld cyfeiriad e-bost Rhyddid Gwybodaeth ar gyfer '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Gweld cyfeiriad e-bost Rhyddid Gwybodaeth ar gyfer '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Gweld ceisiadau Rhyddid Gwybodaeth a wnaed gan {{user_name}}:" msgid "View authorities" msgstr "Gweld yr awdurdodau" -msgid "View email" -msgstr "Gweld e-bost" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3619,11 +3648,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Yn disgwyl eglurhad." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Yn disgwyl am adolygiad mewnol gan {{public_body_link}} o'u triniaeth o'r cais hwn." @@ -3655,9 +3690,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nid oes gennym gyfeiriad e-bost sy'n gweithio i wneud cais i'r awdurdod hwn." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nid oes gennym gyfeiriad {{law_used_full}} sy'n gweithio ar gyfer {{public_body_name}}." @@ -3761,6 +3793,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Pan fyddwch yn cyrraedd yno, diweddarwch y statws i ddweud a yw'r ymateb yn cynnwys unrhyw wybodaeth ddefnyddiol." @@ -3785,8 +3820,8 @@ msgstr "Am ba reswm penodol ydych yn ystyried y cais yn anaddas?" msgid "Withdrawn" msgstr "Wedi ei dynnu nôl" -msgid "Withdrawn by the requester." -msgstr "Fe'i tynnwyd yn ôl gan y ceisydd." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wythnos" @@ -3812,6 +3847,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4444,9 +4482,6 @@ msgstr "" msgid "unknown" msgstr "anhysbys" -msgid "unknown reason" -msgstr "rheswm anhysbys" - msgid "unknown reason " msgstr "rheswm anhysbys " @@ -4483,9 +4518,6 @@ msgstr "{{authority_name}} Nid oedd gan y wybodaeth y gofynnwyd amdani." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} yn aros am eich eglurhad." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Atodiad" @@ -4498,6 +4530,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} dilynwr" @@ -4654,8 +4691,8 @@ msgstr "{{reason}}. Yn anffodus, nid ydym yn gwybod y cyfeiriad ebost Rhyddid Gw msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} sy'n matsio '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "blogiadau a thrydariadau {{site_name}}" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4668,9 +4705,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "Mae {{site_name}} yn anfon ceisiadau newydd i {{request_email}} ar gyfer yr awdurdod hwn." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/de/app.po b/locale/de/app.po index 1dc00a6f5d..69700efed2 100644 --- a/locale/de/app.po +++ b/locale/de/app.po @@ -49,7 +49,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: stefanw , 2011\n" "Language-Team: German (http://app.transifex.com/mysociety/alaveteli/language/d" @@ -191,11 +191,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Alle durchsuchen or bitten Sie uns eine hinzuzufügen." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Einen neuen IFG-Antrag stellen an {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -283,8 +283,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: um Mögliche Suchoptionen zu wählen, gehen Sie zur unten angezeigten Auswahlansich ." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Ratschlag bzgl. Antworten, welche den Anfragesteller zufriedenstellen. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Informationen wurden vollständig gesendet" @@ -323,6 +323,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Es wurde Keine Antwort empfangen\n" @@ -372,7 +375,7 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Eine Nachfrage zu {{request_title}} wurde am {{date}} durch{{info_request_user}} an {{public_body_name}} gestellt . " -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -419,9 +422,6 @@ msgstr "Zu Ihrer Person:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -452,6 +452,12 @@ msgstr "Fügen Sie Ihrer Anfrage einen Kommentar mit Wahlzitat oder, eineumgehe msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Gewünschte Behörde nicht gefunden?" @@ -783,6 +786,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "Klassifizieren Sie eine IFG-Anfrage von {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -849,10 +855,10 @@ msgstr "Bestätigen Sie Ihre Email-Adresse" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirm your new email address on {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -921,6 +927,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -948,15 +957,15 @@ msgstr "Verspätet" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "Verzögert." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Übertragungsfehler" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Details der Anfrage “{{request_title}}”" @@ -995,10 +1004,7 @@ msgstr "Erledigt" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1007,6 +1013,9 @@ msgstr "Laden Sie eine Zip-Datei des gesamten Schriftverkehrs herunter." msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Originalanhang herunterladen" @@ -1021,9 +1030,27 @@ msgstr "" "Bearbeiten Sie Ihre Anfrage und fügen Sie weitere Details hinzu,\n" " explaining why you are dissatisfied with their response." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Profiltext ändern" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Anfrage bearbeiten" @@ -1086,6 +1113,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1098,8 +1128,8 @@ msgstr "" msgid "FOI" msgstr "IFG" -msgid "FOI email address for {{public_body}}" -msgstr "IFG-Emailadresse für {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1140,6 +1170,9 @@ msgstr "Behörden finden" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1188,9 +1221,6 @@ msgstr "Follow-up" msgid "Follow up message sent by requester" msgstr "Nachfrage durch Anfragensteller gesendet" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1203,8 +1233,8 @@ msgstr "Nachfragen und Antworten auf diese Anfrage wurden gestoppt, um Spam vorz msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Folgen Sie uns auf Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Folgende" @@ -1225,8 +1255,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1235,6 +1265,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1247,9 +1282,6 @@ msgstr "Informationsfreiheitsgesetz" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Informationsfreiheitsgesetz ist nicht länger gültig für {{public_body_name}}." @@ -1298,13 +1330,10 @@ msgstr "Haben Sie einen Account?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1328,6 +1357,9 @@ msgstr "Hallo! IFG-Anfragen innerhalb von {{country_name}} können Sie hier stel msgid "Help" msgstr "Hilfe" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1420,9 +1452,6 @@ msgstr "Fehlerhafte Information erhalten" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Sollte die Adresse falsch sein oder sollten Sie eine bessere Adresse kennen, so kontaktieren Sie unsbitte." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1480,11 +1509,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Falls noch nicht geschehen, senden Sie bitte eine Nachricht, um die Behörde zu informieren, dass Sie Ihre Anfrage zurückgezogen haben. Anderenfalls weiss diese nicht, dass dies geschehen ist. " -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Sollten Sie die korrekte Adresse kennen, senden Sie sie uns.\n" -" Sie können die Adresse wahrscheinlich auf der Webseite oder durch einen Anruf bei der Behörde herausfinden. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1520,9 +1544,6 @@ msgstr "Verbessern Sie Ihre Account-Sicherheit" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Fügen Sie relevante Links ein, z.B. zu einer Kampagnenseite, Ihrem Blog oder Twitterkonto. Die Links werden anklickbar sein. z.B." @@ -1535,9 +1556,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Information nicht verfügbr" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informationen bzg. Emissionen und Ablagerungen (e.g. Lärm, Energie,\n" @@ -1564,6 +1582,9 @@ msgstr "Ungültiges einmaliges Passwort" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Ist {{email_address}} die falsche Email-Adresse für {{law_used_full}} Anfragen an {{public_body_name}}? Sollte dies der Fall sein, so kontaktieren Sie uns bitte über dieses Formular:" @@ -1585,12 +1606,12 @@ msgstr "Beigetreten {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Nur noch eine Sache" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1633,6 +1654,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1654,9 +1678,6 @@ msgstr "In den Admin-Bereich einloggen" msgid "Long overdue" msgstr "Lange überfällig" -msgid "Long overdue." -msgstr "Stark verspätet." - msgid "Made between" msgstr "Gestellt zwischen" @@ -1753,9 +1774,6 @@ msgstr "Braucht Admin-Aufmerksamkeit" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Neue IFG-Anfragen" @@ -1789,9 +1807,6 @@ msgstr "Neue Aktualisierungen der Anfrage '{{request_title}}'" msgid "Newest results first" msgstr "Aktuellste Ergebnisse zuerst anzeigen" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Folgende/r" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Number of requests" msgstr "Anzahl der Anfragen" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OR entfernen Sie das bestehende Photo" @@ -1936,9 +1954,6 @@ msgstr "Teilweise erfolgreich. " msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Teilweise erfolgreich. " - msgid "Password is not correct" msgstr "falsches Passwort" @@ -2211,6 +2226,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "Datenschutz und Cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2220,6 +2238,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Behörden" @@ -2301,9 +2322,6 @@ msgstr "Kürzlich widergegebene Ergebnisse zuerst" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Abgelehnt." - msgid "Regenerate one time passcode" msgstr "" @@ -2343,7 +2361,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2358,6 +2376,9 @@ msgstr "Interne Prüfung anfragen" msgid "Request an internal review from {{person_or_body}}" msgstr "Interne Prüfung von {{person_or_body}} anfragen" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2415,6 +2436,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Email-Antwort senden" @@ -2493,6 +2517,12 @@ msgstr "" msgid "Search queries" msgstr "Suchbegriffe" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Suchergebnisse" @@ -2508,6 +2538,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Nachfrage senden" @@ -2556,6 +2592,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2579,6 +2620,9 @@ msgstr "Profilbild wählen" msgid "Share on Facebook" msgstr "Auf Facebook teilen" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2794,9 +2838,6 @@ msgstr "Erfolgreiche Informationsfreiheitsanfrage" msgid "Successful requests" msgstr "Erfolgreiche Anfragen" -msgid "Successful." -msgstr "Erfolgreich." - msgid "Suggest how the requester can find the rest of the information." msgstr "Schlagen Sie vor, wie der Anfragensteller den Rest der Information finden kann." @@ -2824,6 +2865,9 @@ msgstr "Links:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "vielen Dank für die Ihre Mithilfe die Seite aktuell zu halten. " @@ -2887,6 +2931,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Die Nutzerkonten wurden in Ihrem ursprünglichen Zustand belassen." @@ -2947,12 +2997,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Die Seite existiert nicht. Was Sie nun versuchen können:" @@ -3130,8 +3174,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Es ist ein Übermittlungsfehleroder ähnliches aufgetreten, welcher von unserem {{site_name}} Team repariert werden muss. " +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3516,12 +3560,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "E-Mail-Benachrichtungen abmelden" -msgid "Tweet it" -msgstr "Tweeten" - -msgid "Tweet this request" -msgstr "Tweet diese Anfrage" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3588,8 +3626,8 @@ msgstr "Abbestellen" msgid "Unusual response" msgstr "Ungewöhnliche Antwort" -msgid "Unusual response." -msgstr "Ungewöhnliche Antwort." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3627,23 +3665,14 @@ msgstr "Missbräuchlich" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "IFG-Emailadressen ansehen" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "IFG-Emailadresse für {{public_body_name}} ansehen" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "IFG-Emailadresse für {{public_body_name}} ansehen" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Sehen Sie die durch {{user_name}} gestellten IFG-Anfragen an:" msgid "View authorities" msgstr "Behörden ansehen" -msgid "View email" -msgstr "Email ansehen" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3651,11 +3680,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Andere Anfrage an {{public_body}} ansehen" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Klärung wird erwartet. " +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Interne Prüfung durch {{public_body_link}} wird erwartet." @@ -3687,9 +3722,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Für diese Behörde ist keine funktionierende Emailadresse zur Anfragenstellung verfügbar. " - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Wir haben keine funktionierende {{law_used_full}} Adresse für {{public_body_name}}." @@ -3796,6 +3828,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Wenn Sie dort hinkommen, aktualisieren Sie bitte den Status indem Sie uns wissen lassen, ob die Antwort nützliche Informationen enthält. " @@ -3820,8 +3855,8 @@ msgstr "" msgid "Withdrawn" msgstr "Zurückgezogen" -msgid "Withdrawn by the requester." -msgstr "Vom Antragsteller zurückgezogen" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3847,6 +3882,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4481,9 +4519,6 @@ msgstr "Geben Sie hier Ihren Suchbegriff ein" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "unbekannte Ursache" - msgid "unknown reason " msgstr "unbekannte Ursache" @@ -4520,9 +4555,6 @@ msgstr "{{authority_name}} Die angefragten Informationen waren nicht vor msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} Ihre Erläuterung wird erwartet." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4533,6 +4565,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4682,8 +4719,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} passen zu '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} Blog und Tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4696,9 +4733,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/el/app.po b/locale/el/app.po index 76a7179f7e..67bb00b313 100644 --- a/locale/el/app.po +++ b/locale/el/app.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: ΜΑΡΙΑ ΝΑΘΑΝΑΗΛ , 2021\n" "Language-Team: Greek (http://app.transifex.com/mysociety/alaveteli/language/el" @@ -185,11 +185,11 @@ msgstr "60 λεπτά+" msgid "Browse all or ask us to add one." msgstr "Δείτε τα όλα ή ζητήστε μας να προσθέσουμε ένα." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Κάντε μία νέα EIR αίτηση στο {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Κάντε ένα νέο Αίτημα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία στο {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Συνδεθείτε για να λάβετε ενημερώσεις σχετικά με τα θέματα που ακολουθείτε ή να ενεργοποιήσετε ξανά τις ειδοποιήσεις ηλεκτρονικού ταχυδρομείου." @@ -268,8 +268,8 @@ msgstr "tag:charity για να βρείτε όλ msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "ποικιλία:για να επιλέξετε τύπο πραγμάτων για αναζήτηση, δείτε τον πίνακα των καταστάσεων παρακάτω." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Συμβουλές για το πώς να ζητηθεί μια απάντηση που θα ικανοποιήσει τον/την αιτούντα/-ούσα. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Όλες οι πληροφορίες έχουν σταλεί" @@ -304,6 +304,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Δημοσιογράφος, Πανεπιστημιακός ή Έμπειρος Χρήστης;Το {{pro_site_link}} είναι μια ολοκληρωμένη εργαλειοθήκη FOI που περιλαμβάνει όλα όσα χρειάζεστε για να έχετε το πάνω χέρι σε περίπλοκες αναζητήσεις σχετικά με τα αιτήματα κατάθεσης εγγράφων και πρόσβασης στη δημόσια πληροφορία" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Καμία απάντηση δεν έχει ληφθεί (ίσως να είναι απλά μια γνωστοποίηση)" @@ -349,8 +352,8 @@ msgstr ";" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ένα follow up στο {{request_title}} έχει σταλεί στο {{public_body_name}} από {{info_request_user}} στις {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Μία απάντηση στο {{request_title}} έχει σταλεί από {{public_body_name}} σε {{info_request_user}} στις {{date}}. Η κατάσταση του αιτήματος είναι: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Μια περίληψη της απάντησης εάν την έχετε λάβει μέσω ταχυδρομείου." @@ -394,9 +397,6 @@ msgstr "Πληροφορίες για εσάς:" msgid "About {{count}} FOI requests found" msgstr "Σχετικά με {{count}} αιτήματα κατάθεσης εγγράφων και πρόσβασης στη δημόσια πληροφορία" -msgid "Academic paper" -msgstr "Ακαδημαϊκό έγγραφο" - msgid "Account closed at user request" msgstr "Ο λογαριασμός έκλεισε κατόπιν αιτήματος του χρήστη" @@ -427,6 +427,12 @@ msgstr "Προσθέστε μια σημείωση στην αίτησή σας msgid "Add authority - {{public_body_name}}" msgstr "Προσθέστε μια δημόσια αρχή - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Δείτε την δημόσια αρχή:" @@ -595,24 +601,18 @@ msgstr "Αναμένεται διεκρίνηση" msgid "Awaiting classification" msgstr "Αναμένεται ταξινόμηση" -msgid "Awaiting classification." -msgstr "Αναμένεται ταξινόμηση." - msgid "Awaiting internal review" msgstr "Αναμένεται εσωτερική διερεύνηση" -msgid "Awaiting internal review." -msgstr "Αναμένεται εσωτερική διερεύνηση." - msgid "Awaiting response" msgstr "Αναμένεται απάντηση" -msgid "Awaiting response." -msgstr "Αναμένεται απάντηση." - msgid "Back to content" msgstr "Πίσω στο περιεχόμενο" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -649,11 +649,8 @@ msgstr "Περιήγηση σε όλες τις αρχές →" msgid "Browse all requests →" msgstr "Δείτε όλα τα αιτήματα →" -msgid "Browse and search requests" -msgstr "Δείτε και αναζητήστε αιτήσεις" - -msgid "Browse and search requests (page {{count}})" -msgstr "Περιηγηθείτε και αναζητήστε αιτήματα (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -661,8 +658,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Δείτε τις αιτήσεις" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Σύμφωνα με τον νόμο, οφείλουν να απαντήσουν." @@ -682,6 +679,12 @@ msgstr "Βάσει νόμου, {{public_body_link}} θα έπρεπε να εί msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Δεν μπορείτε να βρείτε αυτό που ζητάτε;" @@ -754,6 +757,9 @@ msgstr "Ξεκαθαρίστε το αίτημά σας για κατάθεση msgid "Classify an FOI response from {{authority_name}}" msgstr "Ταξινομήστε το αίτημά σας για κατάθεση εγγράφων και πρόσβαση στη δημόσια πληροφορία - {{request_title}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Ταξινόμηση απαντήσεων" @@ -820,11 +826,11 @@ msgstr "Επιβεβαιώστε τη διεύθυνση email σας" msgid "Confirm your new email address on {{site_name}}" msgstr "Επιβεβαιώστε τη νέα διεύθυνση email σας στο {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Η ομάδα διαχείρισης θεωρεί ότι δεν πρόκειται για Αίτημα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Θεωρείται από τους διαχειριστές ως δυσφημιστικό." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Επικοινωνήστε μαζί μας" @@ -892,6 +898,9 @@ msgstr "Σε κατάσταση αναμονής για απάντηση msgid "Data interpretation" msgstr "Ερμηνεία δεδομένων" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Ημερομηνία:" @@ -919,15 +928,15 @@ msgstr "Καθυστερημένο" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Καθυστερημένη απάντηση στο αίτημά σας για κατάθεση εγγράφων και πρόσβαση στη δημόσια πληροφορία - {{request_title}}" -msgid "Delayed." -msgstr "Καθυστερημένο." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Κατάσταση παράδοσης για Εξερχόμενο Μήνυμα #{{id}}" msgid "Delivery error" msgstr "Σφάλμα παραλαβής" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Λεπτομέρειες αίτησης “{{request_title}}”" @@ -964,10 +973,7 @@ msgstr "Ολοκληρώθηκε" msgid "Done >>" msgstr "Ολοκληρώθηκε >>" -msgid "Download Data" -msgstr "Κατεβάστε δεδομένα" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -976,6 +982,9 @@ msgstr "Κατεβάστε ένα αρχείο zip με όλη την αλληλ msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Κατεβάστε την αρχική επισύναψη" @@ -988,9 +997,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Επεξεργαστείτε και προσθέστε επιπλέον λεπτομέρειες στο παραπάνω μήνυμα, εξηγώντας γιατί είστε δυσαρεστημένος με την απάντησή τους." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Επεξεργαστείτε το κείμενο για εσάς" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Επεξεργαστείτε την αίτηση σας" @@ -1051,6 +1078,9 @@ msgstr "Οτιδήποτε εισάγετε σε αυτή την σελίδα, msgid "Expand all correspondence" msgstr "Επέκταση όλης της αλληλογραφίας" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "Εξαγάγετε δεδομένα" @@ -1063,8 +1093,8 @@ msgstr "Η εξαγωγή δεν μπορούσε να σωθεί. " msgid "FOI" msgstr "Δικαίωμα Πρόσβασης στη Δημόσια Πληροφορία " -msgid "FOI email address for {{public_body}}" -msgstr "Διεύθυνση email για Αίτημα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Ο νόμος ΑΚΕ και πρόσβαση στη ΔΠ δεν καλύπτει αυτή την αρχή." @@ -1105,6 +1135,9 @@ msgstr "Βρείτε τους οργανισμούς" msgid "Find the authorities to write to" msgstr "Βρείτε τους οργανισμούς να απευθυνθείτε" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Αρχικά, πέτυχαν τα υπόλοιπα αιτήματά σας;" @@ -1153,9 +1186,6 @@ msgstr "Ανταπαντήστε" msgid "Follow up message sent by requester" msgstr "Απαντήστε στο μήνυμα που εστάλη από τον/την αιτούντα/-ούσα" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Επιπλέον μηνύματα σε υπάρχουσες αιτήσεις έχουν σταλεί στο {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Follow up έχει σταλεί στο {{public_body_name}} από τον/την {{info_request_user}} στις {{date}}." @@ -1168,8 +1198,8 @@ msgstr "Ανταπαντήσεις και νέες απαντήσεις σε α msgid "Follow us on Facebook" msgstr "Ακολουθήστε μας στο Facebook" -msgid "Follow us on twitter" -msgstr "Ακολουθήστε μας στο twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Ακολουθείτε" @@ -1190,16 +1220,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Βρέθηκαν {{count}} δημόσιες αρχές που αρχίζουν με το γράμμα {{first_letter}}'" msgstr[1] "Βρέθηκαν {{count}} δημόσιες αρχές που αρχίζουν με το γράμμα {{first_letter}}'" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Βρέθηκαν {{count}} δημόσιες αρχές που αρχίζουν στην κατηγορία ‘{{category_name}}’" -msgstr[1] "Βρέθηκαν {{count}} δημόσιες αρχές στην κατηγορία ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Βρέθηκαν {{count}} δημόσιες αρχές που ταιριάζουν στην ετικέτα ‘{{tag_name}}’" msgstr[1] "Βρέθηκαν {{count}} δημόσιες αρχές που ταιριάζουν στην ετικέτα ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Πριν από τέσσερεις εβδομάδες υποβάλλατε ένα Αίτημα Κατάθεσης Εγγράφου στ@ {{public_body_name}} μέσω του {{site_name}}." @@ -1212,9 +1247,6 @@ msgstr "Νόμος περί του Δικαιώματος Πρόσβασης σ msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Ο νόμος για τα Αιτήματα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία δεν καλύπτει αυτή την υπηρεσία, οπότε δεν μπορείτε να υποβάλετε αίτημα σε αυτήν." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Ο νόμος για το Δικαίωμα Πρόσβασης στη Δημόσια Πληροφορία δεν ισχύει πλέον για αυτή την αρχή. Ακολουθείστε τα μηνύματα στα υπάρχοντα αιτήματα που έχουν σταλεί στο {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Ο νόμος περί ελευθερίας της πληροφόρησης δεν ισχύει πλέον για {{public_body_name}}." @@ -1263,14 +1295,11 @@ msgstr "Έχετε λογαριασμό;" msgid "Handled by postal mail" msgstr "Η διαχείριση γίνεται μέσω ταχυδρομείου" -msgid "Handled by postal mail." -msgstr "Χειρισμός μέσω ταχυδρομείου." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Αυτό το αίτημα, έχει αναφερθεί σε κάποιο ειδησεογραφικό ή ακαδημαϊκό άρθρο;" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Αυτό το αίτημα, έχει αναφερθεί σε κάποιο ειδησεογραφικό ή ακαδημαϊκό άρθρο; Ενημερώστε μας:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Καλησπέρα! Έχουμε ένα σημαντικό μήνυμα για τους επισκέπτες εκτός {{country_name}}" @@ -1293,6 +1322,9 @@ msgstr "Καλησπέρα! Μπορείτε να υποβάλετε Αιτήμ msgid "Help" msgstr "Βοήθεια" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Βοηθήστε μας να ταξινομήσουμε αιτήσεις που δεν έχουν ενημερωθεί ακόμα" @@ -1383,9 +1415,6 @@ msgstr "Έχω λάβει μήνυμα σφάλματος" msgid "I've received an error message" msgstr "Έχω λάβει ένα μήνυμα λάθους" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Εάν η διεύθυνση είναι λάθος, ή γνωρίζετε μια καλύτερη διεύθυνση, παρακαλούμε επικοινωνήστε μαζί μας." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Εάν το σφάλμα ήταν σφάλμα παράδοσης, και μπορείτε να βρείτε πιο σύγχρονο email για το Αίτημα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία, παρακαλούμε ενημερώστε μας στην παρακάτω φόρμα." @@ -1443,9 +1472,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Αν δεν το έχετε κάνει ήδη, τότε αφήστε μας ένα μήνυμα εδώ, για να ενημερώσετε την αρχή ότι αποσύρατε το αίτημά σας. Διαφορετικά δεν θα είναι σε θέση να γνωρίζουν ότι έχει αποσυρθεί. " -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Εάν ξέρετε τη διεύθυνση που θα χρησιμοποιήσετε, τότε παρακαλούμε να μας την στείλετε . Μπορεί να είστε σε θέση να βρείτε τη διεύθυνση στην ιστοσελίδα τους ή τηλεφωνώντας τους και ζητώντας την." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Εάν απαντήσετε σε αυτό το μήνυμα, θα μεταβείτε απευθείας στον/ην {{user_name}}, ο οποίος/α θα μάθει τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας. Απαντήστε μόνο αν αυτό είναι εντάξει." @@ -1479,9 +1505,6 @@ msgstr "Βελτιώστε την ασφάλεια του λογαριασμού msgid "In progress" msgstr "Σε εξέλιξη" -msgid "In the News" -msgstr "Στις ειδήσεις" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Συμπεριλάβετε σχετικά λινκ, όπως σελίδα καμπάνιας, το blog σας ή ένα \n" @@ -1497,9 +1520,6 @@ msgstr "Ατομικά αιτήματα" msgid "Information not held" msgstr "Πληροφορίες μη διαθέσιμες" -msgid "Information not held." -msgstr "Πληροφορίες μη διαθέσιμες." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Πληροφορίες για καυσαέρια και ρύπανση (π.χ. θόρυβος, ενέργεια, \n" @@ -1526,6 +1546,9 @@ msgstr "Μη έγκυρος κωδικός μιας χρήσης" msgid "Invalid token" msgstr "Μη έγκυρο κουπόνι" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Είναι το {{email_address}} η σωστή ηλεκτρονική διεύθυνση για {{law_used_full}} στο {{public_body_name}}; Αν δεν είναι, επικοινωνήστε μαζί μας χρησιμοποιώντας αυτήν τη φόρμα: " @@ -1547,12 +1570,12 @@ msgstr "Έγινε μέλος το {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Έγινε μέλος του {{site_name}} το {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Κάτι ακόμα" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Φυλάξτε αυτόν τον κωδικό. Θα πρέπει να επιβεβαιώσετε τον λογαριασμό σας αν αλλάξετε το password σας. Μπορείτε να το προσθέσετε σε ένα password manager ή να το τυπώσετε και να το αποθηκεύσετε σε ένα ασφαλές μέρος. " - msgid "Keep your request up to date" msgstr "Διατηρήστε την αίτησή σας ενημερωμένη" @@ -1595,6 +1618,9 @@ msgstr "Εγκαταλείψετε το έργο" msgid "Let us know" msgstr "Ενημερώστε μας" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1616,9 +1642,6 @@ msgstr "Διασυνδεθείτε με τον διαχειριστή" msgid "Long overdue" msgstr "Πολύ εκπρόθεσμο" -msgid "Long overdue." -msgstr "Πολύ εκπρόθεσμο" - msgid "Made between" msgstr "Έγινε μεταξύ" @@ -1715,9 +1738,6 @@ msgstr "Χρειάζεται προσοχή από διαχειριστή" msgid "Needs status update" msgstr "Απαιτείται επικαιροποίηση κατάστασης" -msgid "New Citation" -msgstr "Νέα Παραπομπή" - msgid "New Freedom of Information requests" msgstr "Νέα Αιτήματα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία " @@ -1751,9 +1771,6 @@ msgstr "Νέες ενημερώσεις για το αίτημα '{{request_titl msgid "Newest results first" msgstr "Νεότερα αποτελέσματα πρώτα" -msgid "News story" -msgstr "Είδηση" - msgid "Next" msgstr "Επόμενο" @@ -1835,6 +1852,9 @@ msgstr "Αριθμός αιτήματος απόκρυψης γεγονότων msgid "Number of requests" msgstr "Αριθμός αιτημάτων" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "Ή αφαιρέστε την υπάρχουσα φωτογραφία" @@ -1898,9 +1918,6 @@ msgstr "Μερική επιτυχία" msgid "Partially successful" msgstr "Μερικώς επιτυχημένο" -msgid "Partially successful." -msgstr "Μερικώς επιτυχημένο." - msgid "Password is not correct" msgstr "Ο κωδικός δεν είναι σωστός" @@ -2170,6 +2187,9 @@ msgstr "Τυπώστε τον κωδικό μιας χρήσης" msgid "Privacy and cookies" msgstr "Προσωπικό απόρρητο και cookies " +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Φωτογραφία προφίλ για {{user_name}}" @@ -2179,6 +2199,9 @@ msgstr "Ιδιοκτήτης έργου" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Δημόσιες υπηρεσίες" @@ -2260,9 +2283,6 @@ msgstr "Πρώτα να εμφανιστούν τα αποτελέσματα π msgid "Refused" msgstr "Έχει αρνηθεί" -msgid "Refused." -msgstr "Έχει αρνηθεί" - msgid "Regenerate one time passcode" msgstr "Επαναδημιουργήστε κωδικό μιας χρήσης" @@ -2302,8 +2322,8 @@ msgstr "Αναφέρετε αυτό το αίτημα" msgid "Reported" msgstr "Έχει γίνει αναφορά" -msgid "Reported for administrator attention." -msgstr "Έχει γίνει αναφορά στους διαχειριστές." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Η αναφορά ενός αιτήματος ειδοποιεί τους διαχειριστές του ιστότοπου. Θα απαντήσουν το συντομότερο δυνατό." @@ -2317,6 +2337,9 @@ msgstr "Αίτημα εσωτερικής διερεύνησης" msgid "Request an internal review from {{person_or_body}}" msgstr "Αίτημα εσωτερικής διερεύνησης από {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "Το πεδίο email δεν μπορεί να είναι κενό" @@ -2374,6 +2397,9 @@ msgstr "Οι αιτήσεις θα αποσταλούν στους ακόλου msgid "Requires admin attention" msgstr "Απαιτείται έλεγχος από διαχειριστή" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Απάντηση μέσω email" @@ -2449,6 +2475,12 @@ msgstr "Αναζητήστε περισσότερα από
{{number msgid "Search queries" msgstr "Αναζητήσεις" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Αποτελέσματα αναζήτησης" @@ -2464,6 +2496,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Στείλτε ένα followup" @@ -2512,6 +2550,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2535,6 +2578,9 @@ msgstr "Καταχωρήστε φωτογραφία προφίλ" msgid "Share on Facebook" msgstr "Μοιραστείτε στο Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2748,9 +2794,6 @@ msgstr "Περιπτώσεις επιτυχών Αιτημάτων Κατάθε msgid "Successful requests" msgstr "Επιτυχημένα αιτήματα" -msgid "Successful." -msgstr "Επιτυχημένο." - msgid "Suggest how the requester can find the rest of the information." msgstr "Προτείνετε πώς ο/η αιτών/-ούσα μπορεί να βρει υπόλοιπες πληροφορίες ." @@ -2778,6 +2821,9 @@ msgstr "Ταμπέλες:" msgid "Tasks" msgstr "Εργασίες" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Ευχαριστούμε που μας βοηθάτε να κρατήσουμε το site καθαρό!" @@ -2841,6 +2887,12 @@ msgstr "Το URL απ' όπου βρήκατε το άρθρο." 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Οι λογαριασμοί έχουν παραμείνει όπως ήταν πριν." @@ -2901,12 +2953,6 @@ msgstr "Ο τελευταίος χρήστης δημιουργήθηκε την msgid "The last user was created over a day ago" msgstr "Ο τελευταίος χρήστης δημιουργήθηκε πριν από μία ημέρα" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Η σελίδα δεν υπάρχει. Τι μπορείτε να δοκιμάσετε τώρα: " @@ -3084,8 +3130,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Δεν υπάρχει τίποτα για να εμφανιστεί ακόμα." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Σφάμα αποστολής η παρόμοιο, χρειάζεται διόρθωση από την ομάδα του {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Σφάλμα με το reCAPTCHA. Παρακαλούμε προσπαθήστε ξανά." @@ -3466,12 +3512,6 @@ msgstr "Προσπαθήστε να ανοίξετε τις καταγραφές msgid "Turn off email alerts" msgstr "Απενεργοποιήστε τις ειδοποιήσεις email" -msgid "Tweet it" -msgstr "Κάντε το tweet" - -msgid "Tweet this request" -msgstr "Κάντε tweet αυτό το αίτημα" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Η διπλή ταυτοποίηση προσθέτει επιπλέον ασφάλεια στον λογαριασμό σας καθώς απαιτεί περισσότερες πληροφορίες για να επανακαθορίσετε τον κωδικό σας. " @@ -3538,8 +3578,8 @@ msgstr "Καταργήστε την εγγραφή" msgid "Unusual response" msgstr "Ασυνήθιστη απάντηση" -msgid "Unusual response." -msgstr "Ασυνήθιστη απάντηση" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Ενημέρωση διεύθυνσης ηλεκτρονικού ταχυδρομείου - {{public_body_name}}" @@ -3577,23 +3617,14 @@ msgstr "Ενοχλητικό" msgid "Vexatious annotation" msgstr "Κακόβουλος σχολιασμός" -msgid "View FOI email address" -msgstr "Δείτε την ηλεκτρονική διεύθυνση του αιτήματος κατάθεσης εγγράφων και πρόσβασης στη δημόσια πληροφορία" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Δείτε την ηλεκτρονική διεύθυνση του αιτήματος κατάθεσης εγγράφων και πρόσβασης στη δημόσια πληροφορία για '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Δείτε την ηλεκτρονική διεύθυνση για Αιτήματα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία για το '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Δείτε τα Αιτήματα Κατάθεσης Εγγράφων και Πρόσβασης στη Δημόσια Πληροφορία από {{user_name}}" msgid "View authorities" msgstr "Δείτε τις δημόσιες αρχές" -msgid "View email" -msgstr "Δείτε την ηλεκτρονική διεύθυνση " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Επισκόπηση λεπτομερειών ιστορικού συμβάντος" @@ -3601,11 +3632,17 @@ msgstr "Επισκόπηση λεπτομερειών ιστορικού συμ msgid "View other requests to {{public_body}}" msgstr "Δείτε άλλα αιτήματα στο {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Δείτε τον κωδικό μιας χρήσης για διπλή ταυτοποίηση." -msgid "Waiting clarification." -msgstr "Περιμένετε για διευκρινίσεις " +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Περιμένετε για εσωτερική αναθεώρηση από {{public_body_link}} για την διαχείριση αυτού του αιτήματος " @@ -3637,9 +3674,6 @@ msgstr "Τα αρχεία καταγραφής του εξυπηρετητή η msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Το e-mail αυτής της δημόσιας αρχής που υπάρχει στη διάθεσή μας δεν είναι έγκυρο." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Δεν διαθέτουμε έγκυρη {{law_used_full}} διεύθυνση για {{public_body_name}}." @@ -3743,6 +3777,9 @@ msgstr "" msgid "What's happened:" msgstr "Τι συνέβη:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Όταν φτάσετε εκεί, ενημερώστε την κατάσταση για να πείτε εάν η απάντηση που λάβατε περιείχε χρήσιμες πληροφορίες." @@ -3767,8 +3804,8 @@ msgstr "Γιατί συγκεκριμένα θεωρείτε ακατάλληλ msgid "Withdrawn" msgstr "Αποσύρθηκε" -msgid "Withdrawn by the requester." -msgstr "Έχει αποσυρθεί από τον/την αιτούντα/-ούσα. " +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk " @@ -3794,6 +3831,9 @@ msgstr "" msgid "Yes" msgstr "Ναι" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Έχετε ήδη δημιουργήσει την ίδια δέσμη αιτημάτων στις {{date}}. Μπορείτε είτε να δείτε την υπάρχουσα δεσμίδα , ή να επεξεργαστείτε τις πληροφορίες παρακάτω για μια παρόμοια δεσμίδα αιτημάτων. " @@ -4422,9 +4462,6 @@ msgstr "πληκτρολογήστε τον όρο της αναζήτησής msgid "unknown" msgstr "άγνωστο" -msgid "unknown reason" -msgstr "άγνωστη αιτία" - msgid "unknown reason " msgstr "άγνωστη αιτία" @@ -4461,9 +4498,6 @@ msgstr "{{authority_name}} δεν είχε τις πληροφ msgid "{{authority_name}} is waiting for your clarification." msgstr "ο/η {{authority_name}} είναι σε αναμονή για τη διευκρίνιση σας ." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} συντελεστές" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Επισύναψη" @@ -4474,6 +4508,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} σημείωση." msgstr[1] "{{count}} σημειώσεις." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} ακόλουθος" @@ -4618,8 +4657,8 @@ msgstr "{{reason}}. Δυστυχώς δεν γνωρίζουμε το email γ msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} που ταιριάζουν στην '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog και tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4632,9 +4671,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "Το {{site_name}} στέλνει νέο αίτημα στο {{request_email}}για αυτή την αρχή." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Οι χρήστες του {{site_name}} έχουν υποβάλλει {{number_of_requests}} αίτημα, το οποίο συμπεριλαμβάνει:" diff --git a/locale/en/app.po b/locale/en/app.po index 07fec6f9c2..6f4edb0efd 100644 --- a/locale/en/app.po +++ b/locale/en/app.po @@ -35,7 +35,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: English (http://www.transifex.com/mysociety/alaveteli/language/" @@ -177,11 +177,11 @@ msgstr "60 minutes+" msgid "Browse all or ask us to add one." msgstr "Browse all or ask us to add one." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Sign in to get updates on things you follow or re-enable email alerts." @@ -260,8 +260,8 @@ msgstr "tag:charity to find all public authorities msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: to select type of thing to search for, see the table of varieties below." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "All the information has been sent" @@ -296,6 +296,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "No response has been received (maybe there's just an acknowledgement)" @@ -341,8 +344,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "A summary of the response if you have received it by postal mail. " @@ -386,9 +389,6 @@ msgstr "About you:" msgid "About {{count}} FOI requests found" msgstr "About {{count}} FOI requests found" -msgid "Academic paper" -msgstr "Academic paper" - msgid "Account closed at user request" msgstr "Account closed at user request" @@ -419,6 +419,12 @@ msgstr "Add an annotation to your request with choice quotes, or a summa msgid "Add authority - {{public_body_name}}" msgstr "Add authority - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Add the authority:" @@ -587,24 +593,18 @@ msgstr "Awaiting clarification" msgid "Awaiting classification" msgstr "Awaiting classification" -msgid "Awaiting classification." -msgstr "Awaiting classification." - msgid "Awaiting internal review" msgstr "Awaiting internal review" -msgid "Awaiting internal review." -msgstr "Awaiting internal review." - msgid "Awaiting response" msgstr "Awaiting response" -msgid "Awaiting response." -msgstr "Awaiting response." - msgid "Back to content" msgstr "Back to content" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Banned for evading another ban" @@ -641,11 +641,8 @@ msgstr "Browse all authorities →" msgid "Browse all requests →" msgstr "Browse all requests →" -msgid "Browse and search requests" -msgstr "Browse and search requests" - -msgid "Browse and search requests (page {{count}})" -msgstr "Browse and search requests (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Browse latest requests" @@ -653,8 +650,8 @@ msgstr "Browse latest requests" msgid "Browse latest responses" msgstr "Browse latest responses" -msgid "Browse requests" -msgstr "Browse requests" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "By law, they have to respond." @@ -674,6 +671,12 @@ msgstr "By law, {{public_body_link}} should normally have responded prom msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Can't find the one you want?" @@ -746,6 +749,9 @@ msgstr "Clarify your FOI request - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classify an FOI response from {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Classify responses" @@ -812,11 +818,11 @@ msgstr "Confirm your email address" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirm your new email address on {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Contact us" @@ -884,6 +890,9 @@ msgstr "Currently waiting for a response from {{public_body_lin msgid "Data interpretation" msgstr "Data interpretation" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Date:" @@ -911,15 +920,15 @@ msgstr "Delayed" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Delayed response to your FOI request - {{request_title}}" -msgid "Delayed." -msgstr "Delayed." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Delivery Status for Outgoing Message #{{id}}" msgid "Delivery error" msgstr "Delivery error" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Details of request “{{request_title}}”" @@ -956,10 +965,7 @@ msgstr "Done" msgid "Done >>" msgstr "Done >>" -msgid "Download Data" -msgstr "Download Data" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -968,6 +974,9 @@ msgstr "Download a zip file of all correspondence" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Download original attachment" @@ -980,9 +989,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Edit and add more details to the message above, explaining why you are dissatisfied with their response." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edit text about you" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Edit your request" @@ -1043,6 +1070,9 @@ msgstr "Everything that you enter on this page, including your name{{authority_email}}." -msgstr "Follow up messages to existing requests are sent to {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." @@ -1160,8 +1190,8 @@ msgstr "Follow ups and new responses to this request have been stopped to preven msgid "Follow us on Facebook" msgstr "Follow us on Facebook" -msgid "Follow us on twitter" -msgstr "Follow us on twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Following" @@ -1182,16 +1212,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Found {{count}} public authority beginning with ‘{{first_letter}}’" msgstr[1] "Found {{count}} public authorities beginning with ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Found {{count}} public authority in the category ‘{{category_name}}’" -msgstr[1] "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgstr[1] "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." @@ -1204,9 +1239,6 @@ msgstr "Freedom of Information Act" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Freedom of Information law does not apply to this authority, so you cannot make a request to it." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Freedom of Information law no longer applies to {{public_body_name}}." @@ -1255,14 +1287,11 @@ msgstr "Got an account?" msgid "Handled by postal mail" msgstr "Handled by postal mail" -msgid "Handled by postal mail." -msgstr "Handled by postal mail." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Hello! We have an important message for visitors outside {{country_name}}" @@ -1285,6 +1314,9 @@ msgstr "Hello! You can make Freedom of Information requests within {{country_nam msgid "Help" msgstr "Help" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Help us classify requests that haven't been updated" @@ -1375,9 +1407,6 @@ msgstr "I've received an error message" msgid "I've received an error message" msgstr "I've received an error message" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "If the address is wrong, or you know a better address, please contact us." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." @@ -1435,9 +1464,6 @@ msgstr "If you got the email more than two months ago or send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." @@ -1471,9 +1497,6 @@ msgstr "Improve your account security" msgid "In progress" msgstr "In progress" -msgid "In the News" -msgstr "In the News" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." @@ -1486,9 +1509,6 @@ msgstr "Individual requests" msgid "Information not held" msgstr "Information not held" -msgid "Information not held." -msgstr "Information not held." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" @@ -1513,6 +1533,9 @@ msgstr "Invalid one time password" msgid "Invalid token" msgstr "Invalid token" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" @@ -1534,12 +1557,12 @@ msgstr "Joined in {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Joined {{site_name}} in {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Just one more thing" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." - msgid "Keep your request up to date" msgstr "Keep your request up to date" @@ -1582,6 +1605,9 @@ msgstr "Leave project" msgid "Let us know" msgstr "Let us know" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Let us know and we’ll help you challenge it." @@ -1603,9 +1629,6 @@ msgstr "Log into the admin interface" msgid "Long overdue" msgstr "Long overdue" -msgid "Long overdue." -msgstr "Long overdue." - msgid "Made between" msgstr "Made between" @@ -1702,9 +1725,6 @@ msgstr "Needs admin attention" msgid "Needs status update" msgstr "Needs status update" -msgid "New Citation" -msgstr "New Citation" - msgid "New Freedom of Information requests" msgstr "New Freedom of Information requests" @@ -1738,9 +1758,6 @@ msgstr "New updates for the request '{{request_title}}'" msgid "Newest results first" msgstr "Newest results first" -msgid "News story" -msgstr "News story" - msgid "Next" msgstr "Next" @@ -1822,6 +1839,9 @@ msgstr "Number of request hide events over time" msgid "Number of requests" msgstr "Number of requests" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OR remove the existing photo" @@ -1885,9 +1905,6 @@ msgstr "Partial success" msgid "Partially successful" msgstr "Partially successful" -msgid "Partially successful." -msgstr "Partially successful." - msgid "Password is not correct" msgstr "Password is not correct" @@ -2157,6 +2174,9 @@ msgstr "Print your one time passcode" msgid "Privacy and cookies" msgstr "Privacy and cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profile image for {{user_name}}" @@ -2166,6 +2186,9 @@ msgstr "Project owner" msgid "Proposed Email:" msgstr "Proposed Email:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Public Bodies" @@ -2247,9 +2270,6 @@ msgstr "Recently described results first" msgid "Refused" msgstr "Refused" -msgid "Refused." -msgstr "Refused." - msgid "Regenerate one time passcode" msgstr "Regenerate one time passcode" @@ -2289,8 +2309,8 @@ msgstr "Report this request" msgid "Reported" msgstr "Reported" -msgid "Reported for administrator attention." -msgstr "Reported for administrator attention." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2304,6 +2324,9 @@ msgstr "Request an internal review" msgid "Request an internal review from {{person_or_body}}" msgstr "Request an internal review from {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "Request email can't be nil" @@ -2361,6 +2384,9 @@ msgstr "Requests will be sent to the following bodies:" msgid "Requires admin attention" msgstr "Requires admin attention" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Respond by email" @@ -2436,6 +2462,12 @@ msgstr "Search over
{{number_of_requests}} requests a msgid "Search queries" msgstr "Search queries" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Search results" @@ -2451,6 +2483,12 @@ msgstr "Section" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Send a followup" @@ -2499,6 +2537,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2522,6 +2565,9 @@ msgstr "Set your profile photo" msgid "Share on Facebook" msgstr "Share on Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Share with private link" @@ -2735,9 +2781,6 @@ msgstr "Successful Freedom of Information requests" msgid "Successful requests" msgstr "Successful requests" -msgid "Successful." -msgstr "Successful." - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggest how the requester can find the rest of the information." @@ -2765,6 +2808,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "Tasks" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Thank you for helping us keep the site tidy!" @@ -2828,6 +2874,12 @@ msgstr "The URL where you found the article." 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 "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." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "The accounts have been left as they previously were." @@ -2888,12 +2940,6 @@ msgstr "The last user was created in the last day" msgid "The last user was created over a day ago" msgstr "The last user was created over a day ago" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "The oldest Xapian index job, has been idle for more than 1 hour" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "The oldest Xapian index job, hasn't been idle for more than 1 hour" - msgid "The page doesn't exist. Things you can try now:" msgstr "The page doesn't exist. Things you can try now:" @@ -3071,8 +3117,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "There is nothing to display yet." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "There was an error with the reCAPTCHA. Please try again." @@ -3453,12 +3499,6 @@ msgstr "Try opening the logs in a new window." msgid "Turn off email alerts" msgstr "Turn off email alerts" -msgid "Tweet it" -msgstr "Tweet it" - -msgid "Tweet this request" -msgstr "Tweet this request" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Two factor authentication adds extra security to your account by requiring more information to reset your password." @@ -3525,8 +3565,8 @@ msgstr "Unsubscribe" msgid "Unusual response" msgstr "Unusual response" -msgid "Unusual response." -msgstr "Unusual response." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Update email address - {{public_body_name}}" @@ -3564,23 +3604,14 @@ msgstr "Vexatious" msgid "Vexatious annotation" msgstr "Vexatious annotation" -msgid "View FOI email address" -msgstr "View FOI email address" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "View FOI email address for '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "View FOI email address for {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "View Freedom of Information requests made by {{user_name}}:" msgid "View authorities" msgstr "View authorities" -msgid "View email" -msgstr "View email" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "View event history details" @@ -3588,11 +3619,17 @@ msgstr "View event history details" msgid "View other requests to {{public_body}}" msgstr "View other requests to {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "View your two factor authentication one time passcode" -msgid "Waiting clarification." -msgstr "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3624,9 +3661,6 @@ msgstr "We couldn’t load the mail server logs for this message." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." -msgid "We do not have a working request email address for this authority." -msgstr "We do not have a working request email address for this authority." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "We do not have a working {{law_used_full}} address for {{public_body_name}}." @@ -3730,6 +3764,9 @@ msgstr "What would you like to do?" msgid "What's happened:" msgstr "What's happened:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "When you get there, please update the status to say if the response contains any useful information." @@ -3754,8 +3791,8 @@ msgstr "Why specifically do you consider this request unsuitable?" msgid "Withdrawn" msgstr "Withdrawn" -msgid "Withdrawn by the requester." -msgstr "Withdrawn by the requester." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3781,6 +3818,9 @@ msgstr "" msgid "Yes" msgstr "Yes" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." @@ -4409,9 +4449,6 @@ msgstr "type your search term here" msgid "unknown" msgstr "unknown" -msgid "unknown reason" -msgstr "unknown reason" - msgid "unknown reason " msgstr "unknown reason " @@ -4448,9 +4485,6 @@ msgstr "{{authority_name}} did not have the information request msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} is waiting for your clarification." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} contributors" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Attachment" @@ -4461,6 +4495,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} annotation made." msgstr[1] "{{count}} annotations made." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} follower" @@ -4605,8 +4644,8 @@ msgstr "{{reason}}. Unfortunately we don't know the FOI email address for that a msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} matching '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4619,9 +4658,6 @@ msgstr "{{site_name}} has identified {{authority_name}} may have refused all or msgid "{{site_name}} login link" msgstr "{{site_name}} login link" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sends new requests to {{request_email}} for this authority." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} users have made {{number_of_requests}} request, including:" diff --git a/locale/en_HK/app.po b/locale/en_HK/app.po index ebf0d2c7bc..c487ea7e6e 100644 --- a/locale/en_HK/app.po +++ b/locale/en_HK/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: English (Hong Kong) (http://app.transifex.com/mysociety/alavete" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/en_IE/app.po b/locale/en_IE/app.po index 1eddca981f..da40cf95e1 100644 --- a/locale/en_IE/app.po +++ b/locale/en_IE/app.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: John Cross , 2012\n" "Language-Team: English (Ireland) (http://app.transifex.com/mysociety/alaveteli" @@ -173,10 +173,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -256,7 +256,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -292,6 +292,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -337,7 +340,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -382,9 +385,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -415,6 +415,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -583,22 +589,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -637,10 +637,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -649,7 +646,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -670,6 +667,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -742,6 +745,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -808,10 +814,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -880,6 +886,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -907,15 +916,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -952,10 +961,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -964,6 +970,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -976,9 +985,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1039,6 +1066,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1051,7 +1081,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1093,6 +1123,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1141,9 +1174,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1156,7 +1186,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1178,8 +1208,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1188,6 +1218,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1200,9 +1235,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1251,13 +1283,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1281,6 +1310,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1371,9 +1403,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1431,9 +1460,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1467,9 +1493,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1482,9 +1505,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1509,6 +1529,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1530,10 +1553,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1578,6 +1601,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1599,9 +1625,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1698,9 +1721,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1734,9 +1754,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1818,6 +1835,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1881,9 +1901,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2153,6 +2170,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2162,6 +2182,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2243,9 +2266,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2285,7 +2305,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2300,6 +2320,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2357,6 +2380,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2432,6 +2458,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2447,6 +2479,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2495,6 +2533,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2518,6 +2561,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2731,9 +2777,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2761,6 +2804,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2824,6 +2870,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2884,12 +2936,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3067,7 +3113,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3449,12 +3495,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3521,7 +3561,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3560,22 +3600,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3584,10 +3615,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3620,9 +3657,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3726,6 +3760,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3750,7 +3787,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3777,6 +3814,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4405,9 +4445,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4444,9 +4481,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4457,6 +4491,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4601,7 +4640,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4615,9 +4654,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/en_RW/app.po b/locale/en_RW/app.po index 83e401bd6f..2897a45ea8 100644 --- a/locale/en_RW/app.po +++ b/locale/en_RW/app.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2018-12-21 12:21+0000\n" "Last-Translator: Liz Conlan \n" "Language-Team: LANGUAGE \n" @@ -138,10 +138,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -226,7 +226,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -268,6 +268,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -313,7 +316,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -358,9 +361,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -391,6 +391,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -559,22 +565,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -613,10 +613,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -625,7 +622,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -646,6 +643,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -718,6 +721,9 @@ msgstr "Clarify your ATI request - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classify an ATI response from {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -784,10 +790,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -856,6 +862,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -883,15 +892,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Delayed response to your ATI request - {{request_title}}" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -928,10 +937,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -940,6 +946,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -952,9 +961,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1015,6 +1042,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1027,8 +1057,8 @@ msgstr "" msgid "FOI" msgstr "ATI" -msgid "FOI email address for {{public_body}}" -msgstr "ATI email address for {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "ATI law does not apply to this agency." @@ -1069,6 +1099,9 @@ msgstr "Find the agencies" msgid "Find the authorities to write to" msgstr "Find the agencies to write to" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1119,9 +1152,6 @@ msgstr "Follow up" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1134,7 +1164,7 @@ msgstr "Follow ups and new responses to this request have been stopped to preven msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1156,8 +1186,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1166,6 +1196,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1180,9 +1215,6 @@ msgstr "" "Access to Information law does not apply to this agency, so you cannot make\n" " a request to it." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Access to Information law no longer applies to {{public_body_name}}." @@ -1231,13 +1263,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1261,6 +1290,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1351,9 +1383,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "If the error was a delivery failure, and you can find an up to date ATI email address for the agency, please tell us using the form below." @@ -1414,9 +1443,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "If you have not done so already, please write a message below telling the agency that you have withdrawn your request. Otherwise they will not know it has been withdrawn." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1452,9 +1478,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1467,9 +1490,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1494,6 +1514,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1515,10 +1538,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1563,6 +1586,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1584,9 +1610,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1683,9 +1706,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "New Access to Information requests" @@ -1719,9 +1739,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1803,6 +1820,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1866,9 +1886,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2138,6 +2155,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2147,6 +2167,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2228,9 +2251,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2270,7 +2290,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2285,6 +2305,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2342,6 +2365,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2420,6 +2446,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2435,6 +2467,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2483,6 +2521,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2506,6 +2549,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2719,9 +2765,6 @@ msgstr "Successful Access to Information requests" msgid "Successful requests" msgstr "Successful requests" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2749,6 +2792,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2812,6 +2858,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2874,12 +2926,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3060,7 +3106,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3446,12 +3492,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3518,7 +3558,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3557,22 +3597,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "View ATI email address" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "View ATI email address for '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "View ATI email address for {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "View Access to Information requests made by {{user_name}}:" msgid "View authorities" msgstr "View agencies" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3581,10 +3612,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3617,9 +3654,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "We do not have a working request email address for this agency." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3723,6 +3757,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3747,7 +3784,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3774,6 +3811,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4402,9 +4442,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4441,9 +4478,6 @@ msgstr "{{authority_name}} does not have the information reques msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4454,6 +4488,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4601,7 +4640,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4615,9 +4654,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sends new requests to {{request_email}} for this agency." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/en_UG/app.po b/locale/en_UG/app.po index bab0bbd20e..96c8ba741a 100644 --- a/locale/en_UG/app.po +++ b/locale/en_UG/app.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Liz Conlan , 2018\n" "Language-Team: English (Uganda) (http://app.transifex.com/mysociety/alaveteli/" @@ -169,10 +169,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -257,7 +257,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -299,6 +299,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -344,7 +347,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -389,9 +392,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -422,6 +422,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -590,22 +596,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -644,10 +644,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -656,7 +653,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -677,6 +674,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -749,6 +752,9 @@ msgstr "Clarify your ATI request - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classify an ATI response from {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -815,10 +821,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -887,6 +893,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -914,15 +923,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Delayed response to your ATI request - {{request_title}}" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -959,10 +968,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -971,6 +977,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -983,9 +992,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1046,6 +1073,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1058,8 +1088,8 @@ msgstr "" msgid "FOI" msgstr "ATI" -msgid "FOI email address for {{public_body}}" -msgstr "ATI email address for {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "ATI law does not apply to this agency." @@ -1100,6 +1130,9 @@ msgstr "Find the agencies" msgid "Find the authorities to write to" msgstr "Find the agencies to write to" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1150,9 +1183,6 @@ msgstr "Follow up" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1165,7 +1195,7 @@ msgstr "Follow ups and new responses to this request have been stopped to preven msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1187,8 +1217,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1197,6 +1227,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1211,9 +1246,6 @@ msgstr "" "Access to Information law does not apply to this agency, so you cannot make\n" " a request to it." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Access to Information law no longer applies to {{public_body_name}}." @@ -1262,13 +1294,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1292,6 +1321,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1382,9 +1414,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "If the error was a delivery failure, and you can find an up to date ATI email address for the agency, please tell us using the form below." @@ -1445,9 +1474,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "If you have not done so already, please write a message below telling the agency that you have withdrawn your request. Otherwise they will not know it has been withdrawn." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1483,9 +1509,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1498,9 +1521,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1525,6 +1545,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1546,10 +1569,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1594,6 +1617,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1615,9 +1641,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1714,9 +1737,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "New Access to Information requests" @@ -1750,9 +1770,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1834,6 +1851,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1897,9 +1917,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2169,6 +2186,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2178,6 +2198,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2259,9 +2282,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2301,7 +2321,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2316,6 +2336,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2373,6 +2396,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2451,6 +2477,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2466,6 +2498,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2514,6 +2552,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2537,6 +2580,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2750,9 +2796,6 @@ msgstr "Successful Access to Information requests" msgid "Successful requests" msgstr "Successful requests" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2780,6 +2823,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2843,6 +2889,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2905,12 +2957,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3091,7 +3137,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3477,12 +3523,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3549,7 +3589,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3588,22 +3628,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "View ATI email address" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "View ATI email address for '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "View ATI email address for {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "View Access to Information requests made by {{user_name}}:" msgid "View authorities" msgstr "View agencies" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3612,10 +3643,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3648,9 +3685,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "We do not have a working request email address for this agency." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3754,6 +3788,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3778,7 +3815,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3805,6 +3842,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4433,9 +4473,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4472,9 +4509,6 @@ msgstr "{{authority_name}} does not have the information reques msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4485,6 +4519,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4632,7 +4671,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4646,9 +4685,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sends new requests to {{request_email}} for this agency." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/en_US/app.po b/locale/en_US/app.po index 881cfa63c4..a2cb1f937f 100644 --- a/locale/en_US/app.po +++ b/locale/en_US/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: English (United States) (http://app.transifex.com/mysociety/ala" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/es/app.po b/locale/es/app.po index 502e0fb43f..87751722f1 100644 --- a/locale/es/app.po +++ b/locale/es/app.po @@ -62,7 +62,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: vickyanderica , 2011\n" "Language-Team: Spanish (http://app.transifex.com/mysociety/alaveteli/language/" @@ -205,11 +205,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o solicite que agreguemos una." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Hacer una nueva solicitud EIR a {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Hacer una nueva solicitud FOI a {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -298,8 +298,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -343,6 +343,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No se ha recibido ninguna respuesta\n" @@ -395,8 +398,8 @@ msgstr "¿ ?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un seguimiento de {{request_title}} ha sido enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una respuesta a {{request_title}} ha sido enviada a {{public_body_name}} por {{info_request_user}} en {{date}}. El estado del pedido es: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -442,9 +445,6 @@ msgstr "Sobre mí:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -477,6 +477,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Agregar una Institución Pública - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Agrega la Institución Pública:" @@ -653,24 +659,18 @@ msgstr "Esperando aclaración." msgid "Awaiting classification" msgstr "Esperando clasificación." -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "Esperando revisión interna." -msgid "Awaiting internal review." -msgstr "Esperando revisión interna." - msgid "Awaiting response" msgstr "Esperando respuesta." -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "Volver al contenido" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -707,11 +707,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Busca todas las solicitudes →" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -719,8 +716,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Por ley, deben responder." @@ -740,6 +737,12 @@ msgstr "{{public_body_link}} debería haber respondido " msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "¿No encuentras el que buscas?" @@ -812,6 +815,9 @@ msgstr "Clarifica tu solicitud de información - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Clasifique una solicitud de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -880,10 +886,10 @@ msgstr "Confirma tu dirección de correo" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirma tu nueva dirección de correo en {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -954,6 +960,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Fecha:" @@ -981,15 +990,15 @@ msgstr "Retrasado" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respuesta retrasada a tu solicitud de acceso a información - {{request_title}}" -msgid "Delayed." -msgstr "Retrasado." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Enviar el estado del mensaje enviado #{{id}}" msgid "Delivery error" msgstr "Error en la entrega" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalles de la solicitud “{{request_title}}”" @@ -1026,10 +1035,7 @@ msgstr "Ok" msgid "Done >>" msgstr "Hecho >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1038,6 +1044,9 @@ msgstr "Descarga un fichero ZIP con toda la correspondencia" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Descargar ficheros adjuntos" @@ -1052,9 +1061,27 @@ msgstr "" "Edita y añade más detalles al mensaje anterior,\n" " explicando por qué no estás satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto sobre ti" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1118,6 +1145,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1130,8 +1160,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "Dirección de correo para {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "La ley de libertad de información no es aplicable a esta autoridad." @@ -1172,6 +1202,9 @@ msgstr "Encontrar los organismos" msgid "Find the authorities to write to" msgstr "Seleccione las autoridades a las que desea escribir " +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Antes que nada, ¿tus otras solicitudes tuvieron éxito?" @@ -1220,9 +1253,6 @@ msgstr "Seguimiento" msgid "Follow up message sent by requester" msgstr "Respuesta enviada por el creador de la solicitud" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Los mensajes de seguimiento a esta petición se enviarán a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Seguimiento enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." @@ -1235,8 +1265,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Siguiendo" @@ -1259,11 +1289,10 @@ msgstr[0] "Encontrados {{count}} organismos públicos empezando por ‘{{first_ msgstr[1] "Encontrados {{count}} organismos públicos empezando por ‘{{first_letter}}’" msgstr[2] "Encontrados {{count}} organismos públicos empezando por ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" -msgstr[1] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" -msgstr[2] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1271,6 +1300,11 @@ msgstr[0] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag msgstr[1] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag_name}}’" msgstr[2] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1283,9 +1317,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La ley de acceso a la información no es aplicable a este organismo, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La ley de acceso a la información ya no es aplicable a este organismo. Los mensajes de seguimiento de solicitudes existentes se enviarán a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La ley de acceso a la información ya no es aplicable para {{public_body_name}}." @@ -1337,13 +1368,10 @@ msgstr "¿Tienes una cuenta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1367,6 +1395,9 @@ msgstr "¡Hola! Puede hacer solicitudes de información en {{country_name}} usan msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ayudarnos a clasificar las solicitudes que no se hayan actualizado" @@ -1468,9 +1499,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "He recibido un mensaje de error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoces una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si el error fue un fallo técnico en la entrega, y puedes encontrar una dirección de correo válida para este organismo, por favor dínoslo utilizando el siguiente formulario." @@ -1536,11 +1564,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando al organismo público de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si conoces la dirección a utilizar, por favor enviárnosla.\n" -" Puede que la encuentres en la página web de la institución, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si respondes a este mensaje irá directamente a {{user_name}}, que podrá entonces ver tu dirección de correo. Responde sólo si esto te parece aceptable." @@ -1582,9 +1605,6 @@ msgstr "Mejora la seguridad de tu cuenta." msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluye enlaces relevantes, como una página informativa, su blog o a\n" @@ -1600,9 +1620,6 @@ msgstr "Solicitudes individuales" msgid "Information not held" msgstr "Información no retenida" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1629,6 +1646,9 @@ msgstr "Contraseña de uso único invalida" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctanos usando el siguiente formulario:" @@ -1653,12 +1673,12 @@ msgstr "Se inscribió en {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Se inscribió a {{site_name}} en {{year}}." +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Sólo una cosa más" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Guarda esta contraseña. La necesitarás para confirmar tu cuenta cuando estés cambiando tu constraseña. Puedes añadirla al administrador de contraseñas o imprimirla y guardarla en un lugar seguro." - msgid "Keep your request up to date" msgstr "Mantén tu petición al día" @@ -1701,6 +1721,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1725,9 +1748,6 @@ msgstr "Loguearse como administrador" msgid "Long overdue" msgstr "Muy retrasada" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1824,9 +1844,6 @@ msgstr "Necesita atención del administrador" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1860,9 +1877,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1944,6 +1958,9 @@ msgstr "Número de solicitudes ocultar eventos" msgid "Number of requests" msgstr "Cantidad de solicitudes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borra la foto actual" @@ -2007,9 +2024,6 @@ msgstr "Éxito parcial" msgid "Partially successful" msgstr "Éxito parcial." -msgid "Partially successful." -msgstr "Éxito parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2290,6 +2304,9 @@ msgstr "Imprime tu contraseña de uso único" msgid "Privacy and cookies" msgstr "Privacidad y cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Imagen de perfil para {{user_name}}" @@ -2299,6 +2316,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Instituciones Públicas" @@ -2380,9 +2400,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "Rechazada." -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "Regenerar clave de acceso único" @@ -2424,8 +2441,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "Denunciar" -msgid "Reported for administrator attention." -msgstr "Reportar al administrador" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Al reportar una solicitud se le notifica a los administradores del sitio. Ellos responderán lo antes posible." @@ -2439,6 +2456,9 @@ msgstr "Pida una revisión interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Pedir una revisión interna a {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2496,6 +2516,9 @@ msgstr "Las solicitudes se enviarán a los siguientes órganos:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2574,6 +2597,12 @@ msgstr "" msgid "Search queries" msgstr "Resultados de búsquedas" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2589,6 +2618,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Mandar una respuesta" @@ -2637,6 +2672,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2661,6 +2701,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "Compartir en Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2880,9 +2923,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "Solicitudes exitosas" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2910,6 +2950,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2981,6 +3024,12 @@ 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 "La URL donde ha encontrado la dirección de correo electrónico. Este es un campo opcional, pero nos ayudaría mucho si usted puede proporcionar un enlace a una página específica en el sitio web de la autoridad que da a esta dirección, ya que hará que sea mucho más fácil que revisemos." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3043,12 +3092,6 @@ msgstr "El último usuario se creó en el último día" msgid "The last user was created over a day ago" msgstr "El último usuario se creó hace más de un día" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3232,8 +3275,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "No hay nada que mostrar aún." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Ha habido un error con el captcha, por favor pruebe otra vez." @@ -3629,12 +3672,6 @@ msgstr "Trate de abrir los registros en una nueva ventana" msgid "Turn off email alerts" msgstr "Descontinuar alertas por correo electronico" -msgid "Tweet it" -msgstr "Tuitea" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "La autenticación en dos pasos añade seguridad adicional a tu cuenta con más información para restablecer tu contraseña." @@ -3701,8 +3738,8 @@ msgstr "Cancelar suscripción" msgid "Unusual response" msgstr "Respuesta no habitual" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar la dirección de correo electrónico - {{public_body_name}}" @@ -3740,23 +3777,14 @@ msgstr "Lenguaje inapropiado " msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver organismos públicos" -msgid "View email" -msgstr "Ver correo" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Ver Historial de Eventos" @@ -3764,11 +3792,17 @@ msgstr "Ver Historial de Eventos" msgid "View other requests to {{public_body}}" msgstr "Ver otras solicitudes a {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Vea su clave de acceso único para la autenticación en dos pasos" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando una revisión interna por parte de {{public_body_link}} de cómo han respondido a esta solicitud." @@ -3800,9 +3834,6 @@ msgstr "No pudimos cargar los registros del servidor de correo electrónico para msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para este organismo." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3922,6 +3953,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualiza el estado para indicar si la respuesta \n" @@ -3950,8 +3984,8 @@ msgstr "¿Específicamente por qué considera qué esta petición es inadecuad msgid "Withdrawn" msgstr "Retirada" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3977,6 +4011,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Ya has enviado la misma solicitud en grupo el {{date}}. Puedes ver la solicitud existente, o editar la siguiente información para enviar un nuevo lote similar al anterior." @@ -4629,9 +4666,6 @@ msgstr "escribe tu término de busqueda aquí" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4668,9 +4702,6 @@ msgstr "{{authority_name}} no tenía la información solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Adjuntos" @@ -4683,6 +4714,11 @@ msgstr[0] "{{count}} anotaciones hechas." msgstr[1] "{{count}} anotaciones hechas." msgstr[2] "{{count}} anotaciones hechas." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidor" @@ -4840,8 +4876,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4854,9 +4890,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para este organismo." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/es_AR/app.po b/locale/es_AR/app.po index b89981460a..9a9f2abbc5 100644 --- a/locale/es_AR/app.po +++ b/locale/es_AR/app.po @@ -51,7 +51,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Victor Diaz , 2014\n" "Language-Team: Spanish (Argentina) (http://app.transifex.com/mysociety/alavete" @@ -194,11 +194,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o solicite que agreguemos una." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Hacer una nueva solicitud EIR a {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Hacer una nueva solicitud FOI a {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -287,8 +287,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -332,6 +332,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No se ha recibido ninguna respuesta\n" @@ -384,8 +387,8 @@ msgstr "¿ ?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un seguimiento de {{request_title}} ha sido enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una respuesta a {{request_title}} ha sido enviada a {{public_body_name}} por {{info_request_user}} en {{date}}. El estado del pedido es: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -431,9 +434,6 @@ msgstr "Sobre mí:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -466,6 +466,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Agregar una Institución Pública - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Agrega la Institución Pública:" @@ -642,24 +648,18 @@ msgstr "Esperando aclaración." msgid "Awaiting classification" msgstr "Esperando clasificación." -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "Esperando revisión interna." -msgid "Awaiting internal review." -msgstr "Esperando revisión interna." - msgid "Awaiting response" msgstr "Esperando respuesta." -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "Volver al contenido" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -696,11 +696,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Busca todas las solicitudes →" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -708,8 +705,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Por ley, deben responder." @@ -729,6 +726,12 @@ msgstr "{{public_body_link}} debería haber respondido " msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "¿No encuentras el que buscas?" @@ -801,6 +804,9 @@ msgstr "Clarifica tu solicitud de información - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Clasifique una solicitud de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -869,10 +875,10 @@ msgstr "Confirma tu dirección de correo" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirma tu nueva dirección de correo en {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -943,6 +949,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Fecha:" @@ -970,15 +979,15 @@ msgstr "Retrasado" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respuesta retrasada a tu solicitud de acceso a información - {{request_title}}" -msgid "Delayed." -msgstr "Retrasado." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Enviar el estado del mensaje enviado #{{id}}" msgid "Delivery error" msgstr "Error en la entrega" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalles de la solicitud “{{request_title}}”" @@ -1015,10 +1024,7 @@ msgstr "Ok" msgid "Done >>" msgstr "Hecho >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1027,6 +1033,9 @@ msgstr "Descarga un fichero ZIP con toda la correspondencia" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Descargar ficheros adjuntos" @@ -1041,9 +1050,27 @@ msgstr "" "Edita y añade más detalles al mensaje anterior,\n" " explicando por qué no estás satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto sobre ti" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1107,6 +1134,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1119,8 +1149,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "Dirección de correo para {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "La ley de libertad de información no es aplicable a esta autoridad." @@ -1161,6 +1191,9 @@ msgstr "Encontrar los organismos" msgid "Find the authorities to write to" msgstr "Seleccione las autoridades a las que desea escribir " +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Antes que nada, ¿tus otras solicitudes tuvieron éxito?" @@ -1209,9 +1242,6 @@ msgstr "Seguimiento" msgid "Follow up message sent by requester" msgstr "Respuesta enviada por el creador de la solicitud" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Los mensajes de seguimiento a esta petición se enviarán a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Seguimiento enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." @@ -1224,8 +1254,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Siguiendo" @@ -1248,11 +1278,10 @@ msgstr[0] "Encontrados {{count}} organismos públicos empezando por ‘{{first_ msgstr[1] "Encontrados {{count}} organismos públicos empezando por ‘{{first_letter}}’" msgstr[2] "Encontrados {{count}} organismos públicos empezando por ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" -msgstr[1] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" -msgstr[2] "Encontrados {{count}} organismos públicos con la categoría ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1260,6 +1289,11 @@ msgstr[0] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag msgstr[1] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag_name}}’" msgstr[2] "Encontrados {{count}} organismos públicos con la categoría ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1272,9 +1306,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La ley de acceso a la información no es aplicable a este organismo, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La ley de acceso a la información ya no es aplicable a este organismo. Los mensajes de seguimiento de solicitudes existentes se enviarán a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La ley de acceso a la información ya no es aplicable para {{public_body_name}}." @@ -1326,13 +1357,10 @@ msgstr "¿Tienes una cuenta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1356,6 +1384,9 @@ msgstr "¡Hola! Puede hacer solicitudes de información en {{country_name}} usan msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ayudarnos a clasificar las solicitudes que no se hayan actualizado" @@ -1457,9 +1488,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "He recibido un mensaje de error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoces una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si el error fue un fallo técnico en la entrega, y puedes encontrar una dirección de correo válida para este organismo, por favor dínoslo utilizando el siguiente formulario." @@ -1525,11 +1553,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando al organismo público de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si conoces la dirección a utilizar, por favor enviárnosla.\n" -" Puede que la encuentres en la página web de la institución, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si respondes a este mensaje irá directamente a {{user_name}}, que podrá entonces ver tu dirección de correo. Responde sólo si esto te parece aceptable." @@ -1571,9 +1594,6 @@ msgstr "Mejora la seguridad de tu cuenta." msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluye enlaces relevantes, como una página informativa, su blog o a\n" @@ -1589,9 +1609,6 @@ msgstr "Solicitudes individuales" msgid "Information not held" msgstr "Información no retenida" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1618,6 +1635,9 @@ msgstr "Contraseña de uso único invalida" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctanos usando el siguiente formulario:" @@ -1642,12 +1662,12 @@ msgstr "Se inscribió en {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Se inscribió a {{site_name}} en {{year}}." +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Sólo una cosa más" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Guarda esta contraseña. La necesitarás para confirmar tu cuenta cuando estés cambiando tu constraseña. Puedes añadirla al administrador de contraseñas o imprimirla y guardarla en un lugar seguro." - msgid "Keep your request up to date" msgstr "Mantén tu petición al día" @@ -1690,6 +1710,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1714,9 +1737,6 @@ msgstr "Loguearse como administrador" msgid "Long overdue" msgstr "Muy retrasada" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1813,9 +1833,6 @@ msgstr "Necesita atención del administrador" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1849,9 +1866,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1933,6 +1947,9 @@ msgstr "Número de solicitudes ocultar eventos" msgid "Number of requests" msgstr "Cantidad de solicitudes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borra la foto actual" @@ -1996,9 +2013,6 @@ msgstr "Éxito parcial" msgid "Partially successful" msgstr "Éxito parcial." -msgid "Partially successful." -msgstr "Éxito parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2279,6 +2293,9 @@ msgstr "Imprime tu contraseña de uso único" msgid "Privacy and cookies" msgstr "Privacidad y cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Imagen de perfil para {{user_name}}" @@ -2288,6 +2305,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Instituciones Públicas" @@ -2369,9 +2389,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "Rechazada." -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "Regenerar clave de acceso único" @@ -2413,8 +2430,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "Denunciar" -msgid "Reported for administrator attention." -msgstr "Reportar al administrador" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Al reportar una solicitud se le notifica a los administradores del sitio. Ellos responderán lo antes posible." @@ -2428,6 +2445,9 @@ msgstr "Pida una revisión interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Pedir una revisión interna a {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2485,6 +2505,9 @@ msgstr "Las solicitudes se enviarán a los siguientes órganos:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2563,6 +2586,12 @@ msgstr "" msgid "Search queries" msgstr "Resultados de búsquedas" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2578,6 +2607,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Mandar una respuesta" @@ -2626,6 +2661,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2650,6 +2690,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "Compartir en Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2869,9 +2912,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "Solicitudes exitosas" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2899,6 +2939,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2970,6 +3013,12 @@ 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 "La URL donde ha encontrado la dirección de correo electrónico. Este es un campo opcional, pero nos ayudaría mucho si usted puede proporcionar un enlace a una página específica en el sitio web de la autoridad que da a esta dirección, ya que hará que sea mucho más fácil que revisemos." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3032,12 +3081,6 @@ msgstr "El último usuario se creó en el último día" msgid "The last user was created over a day ago" msgstr "El último usuario se creó hace más de un día" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3221,8 +3264,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "No hay nada que mostrar aún." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Ha habido un error con el captcha, por favor pruebe otra vez." @@ -3618,12 +3661,6 @@ msgstr "Trate de abrir los registros en una nueva ventana" msgid "Turn off email alerts" msgstr "Descontinuar alertas por correo electronico" -msgid "Tweet it" -msgstr "Tuitea" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "La autenticación en dos pasos añade seguridad adicional a tu cuenta con más información para restablecer tu contraseña." @@ -3690,8 +3727,8 @@ msgstr "Cancelar suscripción" msgid "Unusual response" msgstr "Respuesta no habitual" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar la dirección de correo electrónico - {{public_body_name}}" @@ -3729,23 +3766,14 @@ msgstr "Lenguaje inapropiado " msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver organismos públicos" -msgid "View email" -msgstr "Ver correo" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Ver Historial de Eventos" @@ -3753,11 +3781,17 @@ msgstr "Ver Historial de Eventos" msgid "View other requests to {{public_body}}" msgstr "Ver otras solicitudes a {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Vea su clave de acceso único para la autenticación en dos pasos" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando una revisión interna por parte de {{public_body_link}} de cómo han respondido a esta solicitud." @@ -3789,9 +3823,6 @@ msgstr "No pudimos cargar los registros del servidor de correo electrónico para msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para este organismo." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3911,6 +3942,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualiza el estado para indicar si la respuesta \n" @@ -3939,8 +3973,8 @@ msgstr "¿Específicamente por qué considera qué esta petición es inadecuad msgid "Withdrawn" msgstr "Retirada" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3966,6 +4000,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Ya has enviado la misma solicitud en grupo el {{date}}. Puedes ver la solicitud existente, o editar la siguiente información para enviar un nuevo lote similar al anterior." @@ -4618,9 +4655,6 @@ msgstr "escribe tu término de busqueda aquí" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4657,9 +4691,6 @@ msgstr "{{authority_name}} no tenía la información solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Adjuntos" @@ -4672,6 +4703,11 @@ msgstr[0] "{{count}} anotaciones hechas." msgstr[1] "{{count}} anotaciones hechas." msgstr[2] "{{count}} anotaciones hechas." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidor" @@ -4829,8 +4865,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4843,9 +4879,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para este organismo." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/es_NI/app.po b/locale/es_NI/app.po index e0fab3c453..3cfc754d60 100644 --- a/locale/es_NI/app.po +++ b/locale/es_NI/app.po @@ -52,7 +52,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Victor Diaz , 2014\n" "Language-Team: Spanish (Nicaragua) (http://app.transifex.com/mysociety/alavete" @@ -195,11 +195,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o solicite que agreguemos una." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Realizar una nueva solicitud EIR to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Hacer una nueva solicitud a la Entidad públicas to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -290,8 +290,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -335,6 +335,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No se ha recibido ninguna respuesta\n" @@ -387,8 +390,8 @@ msgstr "¿ ?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un seguimiento de {{request_title}} ha sido enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una respuesta a {{request_title}} ha sido enviada a {{public_body_name}} por {{info_request_user}} en {{date}}. El estado del pedido es: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -434,9 +437,6 @@ msgstr "Sobre mí:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -469,6 +469,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Agregar una Institución Pública - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Agregue la Institución Pública:" @@ -645,24 +651,18 @@ msgstr "En espera de la peteción" msgid "Awaiting classification" msgstr "En espera de la clasificación" -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Estoy preguntando por mi solicitud de información." - msgid "Awaiting response" msgstr "En espera de la respuesta" -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "Volver al contenido" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -699,11 +699,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Ver solicitudes" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -711,8 +708,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Por ley, tienen que responder." @@ -732,6 +729,12 @@ msgstr "{{public_body_link}} debería haber respondido " msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "¿No encuentra el que busca?" @@ -804,6 +807,9 @@ msgstr "Clarifica tu solicitud de información - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Clasifique una solicitud de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -870,10 +876,10 @@ msgstr "Confirma tu dirección de correo" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirma tu nueva dirección de correo en {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -944,6 +950,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Fecha:" @@ -971,15 +980,15 @@ msgstr "Retrasado" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respuesta retrasada a tu solicitud de acceso a información - {{request_title}}" -msgid "Delayed." -msgstr "Retrasado." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "El Estado de envío de mensaje de salida #{{id}}" msgid "Delivery error" msgstr "Error en la entrega" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalles de la solicitud “{{request_title}}”" @@ -1016,10 +1025,7 @@ msgstr "Ok" msgid "Done >>" msgstr "Hecho >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1028,6 +1034,9 @@ msgstr "Descarga un fichero ZIP con toda la correspondencia" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Descargar ficheros adjuntos" @@ -1042,9 +1051,27 @@ msgstr "" "Edita y añade más detalles al mensaje anterior,\n" " explicando por qué no estás satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto sobre tí" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1105,6 +1132,9 @@ msgstr "Todo lo que escribas en esta página, incluyendo tu nombre{{authority_email}}." -msgstr "Las respuestas a solicitudes existentes se envían a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Seguimiento enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." @@ -1222,8 +1252,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "siguiente" @@ -1246,11 +1276,10 @@ msgstr[0] "Se han encontrado{{count}} entidades públicas que comienzan con ‘{ msgstr[1] "Se han encontrado{{count}} entidades públicas que comienzan con ‘{{first_letter}}’" msgstr[2] "Se han encontrado{{count}} entidades públicas que comienzan con ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Se han encontrado {{count}} entidades públicas con la categoría ‘{{category_name}}’" -msgstr[1] "Se han encontrado {{count}} entidades públicas con la categoría ‘{{category_name}}’" -msgstr[2] "Se han encontrado {{count}} entidades públicas con la categoría ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1258,6 +1287,11 @@ msgstr[0] "Found {{count}} Autoridades públicas que coincidan con la etiqueta msgstr[1] "Entidades públicas que coincidan con la etiqueta" msgstr[2] "Entidades públicas que coincidan con la etiqueta" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1270,9 +1304,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La ley de acceso a la información no es aplicable a esta entidad, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La ley de Información Pública ya no se aplica a esta entidad. Los mensajes de seguimiento a las solicitudes existentes se envían a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Ley de Libertad de Información Pública no se aplica a {{public_body_name}}." @@ -1324,13 +1355,10 @@ msgstr "¿Tienes una cuenta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1354,6 +1382,9 @@ msgstr "¡Hola! Puede realizar solicitudes de Información en {{country_name}} e msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ayúdanos a clasificar las solicitudes que no han sido actualizadas" @@ -1457,9 +1488,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "He recibido un mensaje de error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoce una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si el error fue un fallo técnico en la entrega, y puedes encontrar una dirección de correo válida para esta entidad, por favor dínoslo utilizando el siguiente formulario." @@ -1525,11 +1553,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando a la entidad pública de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si conoce la dirección a utilizar, por favor enviárnosla.\n" -" Puede que la encuentre en la página web de la institución, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si respondes a este mensaje irá directamente a {{user_name}}, que podrá entonces ver tu dirección de correo. Responde sólo si esto te parece aceptable." @@ -1571,9 +1594,6 @@ msgstr "Mejore la seguridad de su cuenta" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluya enlaces relevantes, como una página informativa, su blog o a\n" @@ -1589,9 +1609,6 @@ msgstr "Solicitudes individuales" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1618,6 +1635,9 @@ msgstr "Contraseña de una sola vez no es válida" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctenos usando el siguiente formulario:" @@ -1642,12 +1662,12 @@ msgstr "Unido {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Se ha unido a {{site_name}} en {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Sólo una cosa más" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Mantenga esta contraseña segura. Lo necesitará para confirmar su cuenta al cambiar su contraseña. Puede agregarlo a un administrador de contraseñas o imprimirlo y almacenarlo en un lugar seguro." - msgid "Keep your request up to date" msgstr "Mantenga su solicitud hasta la fecha" @@ -1690,6 +1710,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1714,9 +1737,6 @@ msgstr "Loguearse como administrador" msgid "Long overdue" msgstr "vencido hace mucho tiempo" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1813,9 +1833,6 @@ msgstr "Necesita atención del administrador" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1849,9 +1866,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1933,6 +1947,9 @@ msgstr "" msgid "Number of requests" msgstr "Cantidad de solicitudes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borre la foto actual" @@ -1996,9 +2013,6 @@ msgstr "éxito parcial" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Éxito parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2279,6 +2293,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2288,6 +2305,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Instituciones Públicas" @@ -2369,9 +2389,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "" @@ -2413,8 +2430,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Reportar al administrador" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Al reportar una solicitud se le notifica a los administradores del sitio. Ellos responderán lo antes posible." @@ -2428,6 +2445,9 @@ msgstr "Pregunta por tu Solicitud" msgid "Request an internal review from {{person_or_body}}" msgstr "Pregunta por tu solicitud {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2485,6 +2505,9 @@ msgstr "Las solicitudes se enviarán a los siguientes órganos:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2563,6 +2586,12 @@ msgstr "" msgid "Search queries" msgstr "Resultados de búsquedas" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2578,6 +2607,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Mandar una respuesta" @@ -2626,6 +2661,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2650,6 +2690,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "Compartir en Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2869,9 +2912,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "Peticiones exitosas" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2899,6 +2939,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2970,6 +3013,12 @@ 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 "La URL donde ha encontrado la dirección de correo electrónico. Este es un campo opcional, pero nos ayudaría mucho si usted puede proporcionar un enlace a una página específica en el sitio web de la autoridad que da a esta dirección, ya que hará que sea mucho más fácil que revisemos." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3032,12 +3081,6 @@ msgstr "El día en que fue creado el ultimo usuario." msgid "The last user was created over a day ago" msgstr "El último usuario que fue creado hace más de un día" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3221,8 +3264,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "No hay nada que mostrar aún." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3618,12 +3661,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Descontinuar alertas por correo electronico" -msgid "Tweet it" -msgstr "Twittear" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3690,8 +3727,8 @@ msgstr "Cancelar suscripción" msgid "Unusual response" msgstr "Respuesta inusual" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar la dirección de correo electrónico - {{public_body_name}}" @@ -3729,23 +3766,14 @@ msgstr "Lenguaje inapropiado " msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver Entidades públicas" -msgid "View email" -msgstr "Ver correo" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3753,11 +3781,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Ver otras solicitudes a {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando respuesta por parte de {{public_body_link}} de cómo han tramitado esta solicitud." @@ -3789,9 +3823,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para esta entidad." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3911,6 +3942,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualiza el estado para indicar si la respuesta \n" @@ -3939,8 +3973,8 @@ msgstr "¿Específicamente por qué considera qué esta petición es inadecuad msgid "Withdrawn" msgstr "Retirado" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3966,6 +4000,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4618,9 +4655,6 @@ msgstr "Escriba el término de búsqueda aquí" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4657,9 +4691,6 @@ msgstr "{{authority_name}} no tenía la información solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4670,6 +4701,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidores" @@ -4820,8 +4856,8 @@ msgstr "{{reason}}. Lamentablemente no tenemos la dirección de correo para esta msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4834,9 +4870,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para esta entidad" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/es_PA/app.po b/locale/es_PA/app.po index c740b53b92..32e9f3f1a9 100644 --- a/locale/es_PA/app.po +++ b/locale/es_PA/app.po @@ -53,7 +53,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Victor Diaz , 2014\n" "Language-Team: Spanish (Panama) (http://app.transifex.com/mysociety/alaveteli/" @@ -196,10 +196,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o solicite que agreguemos una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -289,8 +289,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variedad: para seleccionar el tipo de cosas para buscar, consulte la tabla de variedades a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -334,6 +334,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Ninguna respuesta se ha recibido\n" @@ -388,8 +391,8 @@ msgstr "¿ ?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Una notificación de seguimiento a {{request_title}} ha sido enviada a {{public_body_name}} por {{info_request_user}} el día {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "La respuesta a {{request_title}} ha sido enviada por {{public_body_name}} a {{info_request_user}} el día {{date}}. El estado de la solicitud es: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -435,9 +438,6 @@ msgstr "Sobre usted:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -470,6 +470,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Agregar una institución pública - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Agregue la institución pública:" @@ -647,24 +653,18 @@ msgstr "En espera de la peteción" msgid "Awaiting classification" msgstr "En espera de la clasificación" -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Esperando revisión interna." - msgid "Awaiting response" msgstr "Esperando respuesta" -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -701,11 +701,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Ver todas las solicitudes →" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -713,8 +710,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Buscar solicitudes " +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "De acuerdo a la ley, ellos deben responder." @@ -734,6 +731,12 @@ msgstr "Según la ley, {{public_body_link}} normalmente debería haber respondid msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "¿No encuentra el que busca?" @@ -806,6 +809,9 @@ msgstr "Aclare su solicitud de información - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Clasifique la respuesta a una solicitud de acceso a la información de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -872,10 +878,10 @@ msgstr "Confirme su dirección de correo electrónico" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirme su nueva dirección de correo electrónico en {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -946,6 +952,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Fecha:" @@ -973,15 +982,15 @@ msgstr "Retrasado" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respuesta retrasada a su solicitud de acceso a información - {{request_title}}" -msgid "Delayed." -msgstr "Retrasado." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Estatus de entrega para mensaje enviado #{{id}}" msgid "Delivery error" msgstr "Error en la entrega" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalles de la solicitud “{{request_title}}”" @@ -1018,10 +1027,7 @@ msgstr "Listo" msgid "Done >>" msgstr "Listo >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1030,6 +1036,9 @@ msgstr "Descarge un documento ZIP con toda la correspondencia" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Descargue el documento original adjunto" @@ -1044,9 +1053,27 @@ msgstr "" "Edite y añada más detalles al mensaje anterior,\n" " explicando por qué no está satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto acerca de usted" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1110,6 +1137,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1122,8 +1152,8 @@ msgstr "" msgid "FOI" msgstr "Solicitud de Acceso a la Información" -msgid "FOI email address for {{public_body}}" -msgstr "Dirección de correo para solicitudes de acceso a la información de {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "La ley de acceso a la información pública no se aplica a esta entidad." @@ -1164,6 +1194,9 @@ msgstr "Econtrá las entidades Públicas" msgid "Find the authorities to write to" msgstr "Seleccione las autoridades a las que desea escribir " +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Antes que nada, ¿sus otras solicitudes tuvieron éxito?" @@ -1212,9 +1245,6 @@ msgstr "Seguimiento" msgid "Follow up message sent by requester" msgstr "Respuesta de segumiento enviada por el que envío inicialmente la solicitud" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Los mensajes de seguimiento a las solicitudes existentes se envían a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Seguimiento enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." @@ -1227,8 +1257,8 @@ msgstr "Se han detenido nuevas respuestas a esta solicitud para prevenir spam. P msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "siguiente" @@ -1251,11 +1281,10 @@ msgstr[0] "Se ha encontrado {{count}} institución pública que comienza con la msgstr[1] "Se han encontrado {{count}} instituciones públicas que comienzan con la letra ‘{{first_letter}}’" msgstr[2] "Se han encontrado {{count}} instituciones públicas que comienzan con la letra ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Se ha encontrado {{count}} institución pública en la categoría ‘{{category_name}}’" -msgstr[1] "Se han encontrado {{count}} instituciones públicas en la categoría ‘{{category_name}}’" -msgstr[2] "Se han encontrado {{count}} instituciones públicas en la categoría ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1263,6 +1292,11 @@ msgstr[0] "Se ha encontrado {{count}} institución pública que concuerda con la msgstr[1] "Se han encontrado {{count}} instituciones públicas que concuerdan con la etiqueta ‘{{tag_name}}’" msgstr[2] "Se han encontrado {{count}} instituciones públicas que concuerdan con la etiqueta ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1275,9 +1309,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La ley de acceso a la información no es aplicable a esta institución, por lo que no puede enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La Ley de Transparencia ya no es aplicable a esta institución pública. Los mensajes de seguimiento a las solicitudes existentes se envían a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La ley de acceso de la información no se aplica a {{public_body_name}}." @@ -1328,13 +1359,10 @@ msgstr "¿Tienes una cuenta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1358,6 +1386,9 @@ msgstr "¡Hola! Puede hacer solicitudes de acceso a la información dentro de {{ msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ayúdanos a clasificar las solicitudes que no han sido actualizadas" @@ -1459,9 +1490,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "He recibido un mensaje de error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoce una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si el error fue un fallo técnico en la entrega y puedes encontrar una dirección de correo válida para esta institución, por favor háznoslo saber utilizando el siguiente formulario." @@ -1526,11 +1554,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho aún, por favor escriba un mensaje a continuación informando a la institución pública de que ha retirado su solicitud. De lo contrario no sabrán que lo ha hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si conoce la dirección a utilizar, por favor enviárnosla.\n" -" Puede que la encuentre en la página web de la institución, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si responde a este mensaje irá directamente a {{user_name}}, quien podrá entonces ver su dirección de correo. Responda sólo si esto le parece aceptable." @@ -1572,9 +1595,6 @@ msgstr "Mejore la seguridad de su cuenta" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluya enlaces relevantes, como una página informativa, su blog o a\n" @@ -1590,9 +1610,6 @@ msgstr "Solicitudes individuales" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1619,6 +1636,9 @@ msgstr "Contraseña de solo una vez inválida " msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección correcta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctenos usando el siguiente formulario:" @@ -1643,12 +1663,12 @@ msgstr "Registrado en {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Registrado en {{site_name}} en {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Sólo una cosa más" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Mantenga esta contraseña segura. Usted la necesitará para confirmar su cuenta cuando cambie su contraseña. Podrá agregarla a un administrador de contraseñas o imprimirla y guardarla en un lugar seguro. " - msgid "Keep your request up to date" msgstr "Mantenga su solicitud hasta la fecha" @@ -1691,6 +1711,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1715,9 +1738,6 @@ msgstr "Iniciar sesión como administrador" msgid "Long overdue" msgstr "vencido hace mucho tiempo" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1814,9 +1834,6 @@ msgstr "Necesita atención del administrador" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1850,9 +1867,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1934,6 +1948,9 @@ msgstr "" msgid "Number of requests" msgstr "Cantidad de solicitudes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O elimine la foto actual" @@ -1997,9 +2014,6 @@ msgstr "Éxito parcial" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Parcialmente exitosa." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2278,6 +2292,9 @@ msgstr "Imprima su contraseña de solo una vez" msgid "Privacy and cookies" msgstr "Privacidad y cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2287,6 +2304,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Instituciones Públicas" @@ -2368,9 +2388,6 @@ msgstr "Mostrar primero los resultados descritos recientemente " msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "Vuelva a generar una contraseña de solo una vez" @@ -2410,8 +2427,8 @@ msgstr "Denunciar esta solicitud" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Requerir la atención del administrador" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Al reportar una solicitud se le notifica a los administradores del sitio. Ellos responderán lo antes posible." @@ -2425,6 +2442,9 @@ msgstr "Solicite una revisión interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Solicitar una revisión interna a {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2482,6 +2502,9 @@ msgstr "Las solicitudes se enviarán a las siguientes instituciones:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2560,6 +2583,12 @@ msgstr "" msgid "Search queries" msgstr "Resultados de búsquedas" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2575,6 +2604,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Enviar un seguimiento a la respuesta" @@ -2623,6 +2658,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2647,6 +2687,9 @@ msgstr "Cambiar su foto de perfil" msgid "Share on Facebook" msgstr "Compartir en Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2866,9 +2909,6 @@ msgstr "Solicitudes de acceso a la información exitosas" msgid "Successful requests" msgstr "Peticiones exitosas" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2896,6 +2936,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la plataforma en orden!" @@ -2967,6 +3010,12 @@ 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 "La URL donde usted ha encontrado la dirección de correo electrónico. Este es un campo opcional, pero nos ayudaría mucho si usted puede proporcionar un enlace a una página específica en el sitio web de la institución que muestre la dirección, ya que hará que sea mucho más fácil que revisemos." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3029,12 +3078,6 @@ msgstr "El último usuario fue creado en el día anterior" msgid "The last user was created over a day ago" msgstr "El último usuario fue creado hace más de un día" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar lo siguiente:" @@ -3214,8 +3257,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "No hay nada que mostrar aún." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o algo similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Ha ocurrido un error con las palabras introducidas. Por favor intente otra vez. " @@ -3610,12 +3653,6 @@ msgstr "Intente abrir los registros en una nueva ventana. " msgid "Turn off email alerts" msgstr "Descontinuar alertas por correo electronico" -msgid "Tweet it" -msgstr "Twittear" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Dos factores de autenticación añade seguridad adicional a su cuenta requiriendo mayor información para restablecer su contraseña." @@ -3684,8 +3721,8 @@ msgstr "Cancelar suscripción" msgid "Unusual response" msgstr "Respuesta inusual" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar la dirección de correo electrónico - {{public_body_name}}" @@ -3723,23 +3760,14 @@ msgstr "Lenguaje inapropiado " msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo electrónico" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo electrónico para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo electrónico para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información realizadas por {{user_name}}:" msgid "View authorities" msgstr "Ver instituciones públicas" -msgid "View email" -msgstr "Ver correo electrónico" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3747,11 +3775,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Ver otras solicitudes a {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Ver la contraseña de una sola vez de dos factores de autenticación" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando una revisión interna por parte de {{public_body_link}} de cómo han respondido a esta solicitud." @@ -3783,9 +3817,6 @@ msgstr "No podemos descargar los registros del servidor de correo para este mens msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para esta institución." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo electrónico de {{law_used_full}}válida para {{public_body_name}}." @@ -3902,6 +3933,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualiza el estado para indicar si la respuesta\n" @@ -3928,8 +3962,8 @@ msgstr "¿Específicamente por qué considera que esta solicitud es inadecuada?" msgid "Withdrawn" msgstr "Retirado" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3955,6 +3989,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Usted ya ha creado el mismo grupo de solicitudes el día {{date}}. Podrá ver lote existente, o edite los detalles de abajo para realizar una nueva solicitud en grupo con características similares." @@ -4606,9 +4643,6 @@ msgstr "escriba términos de búsqueda aquí" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4645,9 +4679,6 @@ msgstr "{{authority_name}} no tiene la información solicitada. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4659,6 +4690,11 @@ msgstr[0] "{{count}} anotación realizada." msgstr[1] "{{count}} anotaciones realizadas." msgstr[2] "{{count}} anotaciones realizadas." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidor" @@ -4814,8 +4850,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4828,9 +4864,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para esta institución pública." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/es_PY/app.po b/locale/es_PY/app.po index 7b36547799..09ce2e98c6 100644 --- a/locale/es_PY/app.po +++ b/locale/es_PY/app.po @@ -52,7 +52,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Victor Diaz , 2014\n" "Language-Team: Spanish (Paraguay) (http://app.transifex.com/mysociety/alavetel" @@ -195,10 +195,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o solicite que agreguemos una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -290,8 +290,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -335,6 +335,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No se ha recibido ninguna respuesta\n" @@ -387,8 +390,8 @@ msgstr "¿ ?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un seguimiento de {{request_title}} ha sido enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una respuesta a {{request_title}} ha sido enviada a {{public_body_name}} por {{info_request_user}} en {{date}}. El estado del pedido es: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -434,9 +437,6 @@ msgstr "Sobre mí:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -469,6 +469,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Agregar una Institución Pública - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Agregue la Institución Pública:" @@ -645,24 +651,18 @@ msgstr "En espera de la peteción" msgid "Awaiting classification" msgstr "En espera de la clasificación" -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Estoy preguntando por mi solicitud de información." - msgid "Awaiting response" msgstr "En espera de la respuesta" -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -699,11 +699,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -711,8 +708,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Buscar solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -732,6 +729,12 @@ msgstr "{{public_body_link}} debería haber respondido " msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "¿No encontrás lo que estás buscando?" @@ -804,6 +807,9 @@ msgstr "Clarifica tu solicitud de información - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Clasifique una solicitud de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -870,10 +876,10 @@ msgstr "Confirma tu dirección de correo" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirma tu nueva dirección de correo en {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -944,6 +950,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Fecha:" @@ -971,15 +980,15 @@ msgstr "Retrasado" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respuesta retrasada a tu solicitud de acceso a información - {{request_title}}" -msgid "Delayed." -msgstr "Retrasado." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Error en la entrega" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalles de la solicitud “{{request_title}}”" @@ -1016,10 +1025,7 @@ msgstr "Ok" msgid "Done >>" msgstr "Hecho >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1028,6 +1034,9 @@ msgstr "Descarga un fichero ZIP con toda la correspondencia" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Descargar ficheros adjuntos" @@ -1042,9 +1051,27 @@ msgstr "" "Edita y añade más detalles al mensaje anterior,\n" " explicando por qué no estás satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto sobre tí" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1105,6 +1132,9 @@ msgstr "Todo lo que escribas en esta página, incluyendo tu nombre{{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Seguimiento enviado a {{public_body_name}} por {{info_request_user}} el {{date}}." @@ -1222,8 +1252,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "siguiente" @@ -1244,8 +1274,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1254,6 +1284,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1266,9 +1301,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La ley de acceso a la información no es aplicable a esta entidad, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Ley de Libertad de Información Pública no se aplica a {{public_body_name}}." @@ -1320,13 +1352,10 @@ msgstr "¿Tienes una cuenta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1350,6 +1379,9 @@ msgstr "" msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ayúdanos a clasificar las solicitudes que no han sido actualizadas" @@ -1453,9 +1485,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "He recibido un mensaje de error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoce una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si el error fue un fallo técnico en la entrega, y puedes encontrar una dirección de correo válida para esta entidad, por favor dínoslo utilizando el siguiente formulario." @@ -1521,11 +1550,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando a la entidad pública de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si conoce la dirección a utilizar, por favor enviárnosla.\n" -" Puede que la encuentre en la página web de la institución, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si respondes a este mensaje irá directamente a {{user_name}}, que podrá entonces ver tu dirección de correo. Responde sólo si esto te parece aceptable." @@ -1565,9 +1589,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluya enlaces relevantes, como una página informativa, su blog o a\n" @@ -1583,9 +1604,6 @@ msgstr "Solicitudes individuales" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1612,6 +1630,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctenos usando el siguiente formulario:" @@ -1636,12 +1657,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Sólo una cosa más" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "Mantenga su solicitud hasta la fecha" @@ -1684,6 +1705,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1708,9 +1732,6 @@ msgstr "Loguearse como administrador" msgid "Long overdue" msgstr "vencido hace mucho tiempo" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1807,9 +1828,6 @@ msgstr "Necesita atención del administrador" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1843,9 +1861,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1927,6 +1942,9 @@ msgstr "" msgid "Number of requests" msgstr "Cantidad de solicitudes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borre la foto actual" @@ -1990,9 +2008,6 @@ msgstr "éxito parcial" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Éxito parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2273,6 +2288,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2282,6 +2300,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Instituciones Públicas" @@ -2363,9 +2384,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "" @@ -2407,8 +2425,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Reportar al administrador" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Al reportar una solicitud se le notifica a los administradores del sitio. Ellos responderán lo antes posible." @@ -2422,6 +2440,9 @@ msgstr "Pregunta por tu Solicitud" msgid "Request an internal review from {{person_or_body}}" msgstr "Pregunta por tu solicitud {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2479,6 +2500,9 @@ msgstr "Las solicitudes se enviarán a los siguientes órganos:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2557,6 +2581,12 @@ msgstr "" msgid "Search queries" msgstr "Resultados de búsquedas" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2572,6 +2602,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Mandar una respuesta" @@ -2620,6 +2656,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2644,6 +2685,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "Compartir en Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2863,9 +2907,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "Peticiones exitosas" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2893,6 +2934,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2964,6 +3008,12 @@ 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 "La URL donde ha encontrado la dirección de correo electrónico. Este es un campo opcional, pero nos ayudaría mucho si usted puede proporcionar un enlace a una página específica en el sitio web de la autoridad que da a esta dirección, ya que hará que sea mucho más fácil que revisemos." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3026,12 +3076,6 @@ msgstr "El día en que fue creado el ultimo usuario." msgid "The last user was created over a day ago" msgstr "El último usuario que fue creado hace más de un día" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3215,8 +3259,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "No hay nada que mostrar aún." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3612,12 +3656,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Descontinuar alertas por correo electronico" -msgid "Tweet it" -msgstr "Twittear" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3684,8 +3722,8 @@ msgstr "Cancelar suscripción" msgid "Unusual response" msgstr "Respuesta inusual" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar la dirección de correo electrónico - {{public_body_name}}" @@ -3723,23 +3761,14 @@ msgstr "Lenguaje inapropiado " msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver entidades públicas" -msgid "View email" -msgstr "Ver correo" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3747,11 +3776,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Ver otras solicitudes a {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando respuesta por parte de {{public_body_link}} de cómo han tramitado esta solicitud." @@ -3783,9 +3818,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para esta entidad." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3905,6 +3937,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualiza el estado para indicar si la respuesta \n" @@ -3933,8 +3968,8 @@ msgstr "¿Específicamente por qué considera qué esta petición es inadecuad msgid "Withdrawn" msgstr "Retirado" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3960,6 +3995,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4612,9 +4650,6 @@ msgstr "Escriba el término de búsqueda aquí" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4651,9 +4686,6 @@ msgstr "{{authority_name}} no tenía la información solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4664,6 +4696,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidores" @@ -4814,8 +4851,8 @@ msgstr "{{reason}}. Lamentablemente no tenemos la dirección de correo para esta msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4828,9 +4865,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para esta entidad" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/eu/app.po b/locale/eu/app.po index 249a54f350..7fef69dc76 100644 --- a/locale/eu/app.po +++ b/locale/eu/app.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: sroberto , 2012\n" "Language-Team: Basque (http://app.transifex.com/mysociety/alaveteli/language/e" @@ -184,10 +184,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Guztiak ikusi o eskatu beste bat gehitzeko." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -273,8 +273,8 @@ msgstr "tag:osasuna etiketa hau daukaten erakunde msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "aldagaia: objektuaren araberako iragazkia jartzeko, kontsulta ezazu ondoko Objektu mota desberdinen taula." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Aholkuak, eskatzailearen galdera betetzen duen erantzuna lortzeko. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Informazio guztia bidalita dago." @@ -311,6 +311,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Ez da inolako erantzunik jaso\n" @@ -360,7 +363,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -405,9 +408,6 @@ msgstr "Zeure buruaz:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -438,6 +438,12 @@ msgstr "Gehitu zure eskabideari buruzko iruzkina, aipamen aukeratuekin edo more details
to the message above, explaining why you are dissatisfied with their response." msgstr "Editatu eta gehitu xehetasun gehiago aurreko mezuari, zergatik ez zauden erantzunarekin pozik azalduz." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Editatu zuri buruzko testua" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editatu eskabide hau" @@ -1067,6 +1094,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1079,8 +1109,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr " {{public_body}}-rako posta helbidea" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1121,6 +1151,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1169,9 +1202,6 @@ msgstr "Jarraipena" msgid "Follow up message sent by requester" msgstr "Eskabidea sortu zuenak bidalitako erantzuna" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1184,8 +1214,8 @@ msgstr "Eskabide honen erantzun berriak blokeatu dira, spama saihesteko. Mesedez msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Jarrai iezaguzu Twitterren" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1206,8 +1236,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1216,6 +1246,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1228,9 +1263,6 @@ msgstr "Informaziorako Sarbidearen Legea" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Informaziorako Sarbidearen Legea ez zaio erakunde honi aplikatzen, horregatik ezin diozu informazio eskabidea bidali." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1279,13 +1311,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1309,6 +1338,9 @@ msgstr "" msgid "Help" msgstr "Laguntza" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1404,9 +1436,6 @@ msgstr "Errore mezua jaso dut" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Helbidea zuzena ez bada, edo helbide gaurkotua baldin badakizu, mesedez, jar zaitez gurekin harremanetan." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1464,11 +1493,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ez baduzu jadanik egin, mesedez idatz ezazu jarraian mezu bat, erakunde publikoari eskabidea kendu duzula jakinaraziz. Bestela ez dute jakingo egin duzuna." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Erabili behar den helbidea baldin badakizu, orduan mesedez bidal iezaguzu.\n" -" Agian haien weg orrialdean aurki dezakezu, edo telefonoz deitu eta galdetzen badiezu." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1503,9 +1527,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr " Sar itzazu esteka adierazgarriak, hala nola informazio orrialdea, zure bloga edo twitter kontua. Automatikoki esteka bihurtuko dira. Adibidez:" @@ -1518,9 +1539,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Informazioa ez dago eskuragarri." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Emisioei buruzko informazioa (adibidez zarata, energia, erradiazioa, hondakin materialak...)" @@ -1545,6 +1563,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr " {{email_address}} ba al da {{law_used_full}} eskabideak {{public_body_name}}-ri egiteko helbide okerra? Hala bada, mesedez, jar zaitez gurekin harremanetan ondoko inprimakia erabiliz:" @@ -1566,10 +1587,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1614,6 +1635,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1635,9 +1659,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Oso atzeratua." - msgid "Made between" msgstr "Data hauen artean eginak" @@ -1734,9 +1755,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Informaziorako Sarbidearen eskabide berriak" @@ -1770,9 +1788,6 @@ msgstr " '{{request_title}}' eskabidearen gaurkotzeak" msgid "Newest results first" msgstr "Lehenbizi emaitza berriak" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Hurrengoa" @@ -1854,6 +1869,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "EDO ezaba ezazu oraingo argazkia" @@ -1917,9 +1935,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Arrakasta partziala." - msgid "Password is not correct" msgstr "Pasahitza ez da zuzena" @@ -2191,6 +2206,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2200,6 +2218,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2281,9 +2302,6 @@ msgstr "Lehenbizi deskribatu berri diren emaitzak" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Ez da onartu." - msgid "Regenerate one time passcode" msgstr "" @@ -2323,7 +2341,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2338,6 +2356,9 @@ msgstr "Eskatu barneko berrikusketa" msgid "Request an internal review from {{person_or_body}}" msgstr "{{person_or_body}}-ri barneko berrikusketa eskatu." +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2395,6 +2416,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Emailez erantzun" @@ -2473,6 +2497,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Bilaketaren emaitzak" @@ -2488,6 +2518,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Bidali erantzuna" @@ -2536,6 +2572,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2559,6 +2600,9 @@ msgstr "Aldatu profilaren argazkia" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2774,9 +2818,6 @@ msgstr "Arrakasta izan duten informaziorako sarbidearen eskabideak" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Arrakastatsua." - msgid "Suggest how the requester can find the rest of the information." msgstr "Iradoki iezaiozu eskabidearen egileari nola aurkitu ahal duen falta zaion informazioa." @@ -2804,6 +2845,9 @@ msgstr "Hitz gakoak:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Eskerrik asko web hau ordenean mantentzen laguntzeagatik!" @@ -2869,6 +2913,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontuak lehen zeuden bezalaxe utzi dira." @@ -2931,12 +2981,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Orrialdea ez da existitzen. Orain saiatu ahal duzu:" @@ -3118,8 +3162,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Ematean errorea gertatu da edo antzeko zerbait, eta {{site_name}}-ko taldeak konpondu behar du." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3504,12 +3548,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Tuiteatu eskabide hau" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3576,8 +3614,8 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Ez-ohiko erantzuna." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3615,23 +3653,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ikusi posta helbidea" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ikusi '{{public_body_name}}'-ren posta helbidea" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ikusi '{{public_body_name}}'-ren posta helbidea" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ikusi {{user_name}}-k egin dituen informaziorako sarbidearen eskabideak:" msgid "View authorities" msgstr "Ikusi erakunde publikoak" -msgid "View email" -msgstr "Ikusi posta" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3639,11 +3668,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Azalpenaren zain." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "{{public_body_link}} erakundearen barneko berrikusketa baten zain, eskabide honi nola erantzun dion aztertzeko." @@ -3675,9 +3710,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ez daukagu erakunde honetako helbide baliagarririk." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Ez daukagu {{public_body_name}} honetako {{law_used_full}} helbide baliagarririk." @@ -3784,6 +3816,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Mesedez, gaurkotu ezazu egoera, erantzunak informazio baliagarria dakarren adierazteko." @@ -3808,8 +3843,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Eskatzaileak kendu du." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3835,6 +3870,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4471,9 +4509,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "arrazoi ezezaguna" - msgid "unknown reason " msgstr "arrazoi ezezaguna" @@ -4510,9 +4545,6 @@ msgstr "{{authority_name}} ez zeukan eskatutako informazioa." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} zure azalpenaren zain dago." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4523,6 +4555,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4669,8 +4706,8 @@ msgstr "{{reason}}. Zoritxarrez ez dugu erakunde honetako posta helbidea, beraz msgid "{{search_results}} matching '{{query}}'" msgstr " '{{query}}'-k aurkitu ditu {{search_results}}" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} bloga eta tweetak" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4683,9 +4720,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}}-k eskabide berriak bidali dizkio {{request_email}}-ri, erakunde honetarako." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/fa/app.po b/locale/fa/app.po index 9d2fef3779..60620b0f5a 100644 --- a/locale/fa/app.po +++ b/locale/fa/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Persian (http://app.transifex.com/mysociety/alaveteli/language/" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/fi/app.po b/locale/fi/app.po index 86fa53939f..6d37336eeb 100644 --- a/locale/fi/app.po +++ b/locale/fi/app.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Juha-Matti Santala , 2013\n" "Language-Team: Finnish (http://app.transifex.com/mysociety/alaveteli/language/" @@ -172,10 +172,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -255,7 +255,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -291,6 +291,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -336,7 +339,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -381,9 +384,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -414,6 +414,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -582,22 +588,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -636,10 +636,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -648,7 +645,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -669,6 +666,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -741,6 +744,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -807,10 +813,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -879,6 +885,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -906,15 +915,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -951,10 +960,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -963,6 +969,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -975,9 +984,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1038,6 +1065,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1050,7 +1080,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1092,6 +1122,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1140,9 +1173,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1155,7 +1185,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1177,8 +1207,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1187,6 +1217,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1199,9 +1234,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1250,13 +1282,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1280,6 +1309,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1370,9 +1402,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1430,9 +1459,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1466,9 +1492,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1481,9 +1504,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1508,6 +1528,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1529,10 +1552,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1577,6 +1600,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1598,9 +1624,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1697,9 +1720,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1733,9 +1753,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1817,6 +1834,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1880,9 +1900,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2152,6 +2169,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2161,6 +2181,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2242,9 +2265,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2284,7 +2304,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2299,6 +2319,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2356,6 +2379,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2431,6 +2457,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2446,6 +2478,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2494,6 +2532,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2517,6 +2560,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2730,9 +2776,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2760,6 +2803,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2823,6 +2869,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2883,12 +2935,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3066,7 +3112,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3448,12 +3494,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3520,7 +3560,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3559,22 +3599,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3583,10 +3614,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3619,9 +3656,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3725,6 +3759,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3749,7 +3786,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3776,6 +3813,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4404,9 +4444,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4443,9 +4480,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4456,6 +4490,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4600,7 +4639,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4614,9 +4653,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/fr/app.po b/locale/fr/app.po index c4377dc4c5..02cd6142f4 100644 --- a/locale/fr/app.po +++ b/locale/fr/app.po @@ -77,7 +77,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: vickyanderica , 2011\n" "Language-Team: French (http://app.transifex.com/mysociety/alaveteli/language/f" @@ -220,10 +220,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Voir tout ou demandez nous d'ajouter une." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -315,8 +315,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr " divers: pour sélectionner des éléments à rechercher, consulter le tableau des variétés below." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conseils sur la façon d'obtenir une réponse qui satisfera le demandeur. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toutes les informations ont été envoyées" @@ -358,6 +358,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Aucune réponse n'a été reçue \n" @@ -411,8 +414,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un suivi à {{request_title}} a été envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Une réponse à {{request_title}}a été envoyée par {{public_body_name}} à {{info_request_user}} le {{date}}. L'état de la demande est: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -458,9 +461,6 @@ msgstr "A propos de vous:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -493,6 +493,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Ajouter l'autorité - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Ajouter l'autorité:" @@ -665,24 +671,18 @@ msgstr "En attente de la clarification" msgid "Awaiting classification" msgstr "En attente de classement" -msgid "Awaiting classification." -msgstr "En attente de classement." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "En attente d'examen interne." - msgid "Awaiting response" msgstr "Réponse en attente" -msgid "Awaiting response." -msgstr "Réponse en attente." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -719,11 +719,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Parcourir toutes les requêtes →" -msgid "Browse and search requests" -msgstr "Visualiser et parcourir les demandes d'information" - -msgid "Browse and search requests (page {{count}})" -msgstr "Visualiser et parcourir les demandes d'information (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -731,8 +728,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Voir les demandes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Légalement, ils doivent répondre." @@ -752,6 +749,12 @@ msgstr "Selon la loi, {{public_body_link}} aurait dû répondre rapideme msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Vous ne trouvez pas celui que vous voulez?" @@ -824,6 +827,9 @@ msgstr "Clarifier votre demande - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classer une demande d'accès de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -892,10 +898,10 @@ msgstr "Confirmer votre adresse e-mail" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirmer votre nouvelle adresse sur {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -966,6 +972,9 @@ msgstr "Actuellement en attente de réponse de la part de l'autorité {{public_ msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Date:" @@ -993,15 +1002,15 @@ msgstr "En retard" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Retards de réponse à votre demande d'accès {{request_title}}" -msgid "Delayed." -msgstr "En retard." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Statut d'expédition pour message sortant #{{id}}" msgid "Delivery error" msgstr "Erreur lors de l'envoi" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Détails de la demande “{{request_title}}”" @@ -1038,10 +1047,7 @@ msgstr "Fait" msgid "Done >>" msgstr "Fait >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1050,6 +1056,9 @@ msgstr "Télécharger un fichier zip de toute la correspondance" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Télécharger la pièce jointe originale" @@ -1064,9 +1073,27 @@ msgstr "" "Modifier et ajouter plus de détails au message ci-dessus, \n" " expliquant pourquoi vous n'êtes pas satisfait de leur réponse." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifier le texte sur vous" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifier cette demande" @@ -1132,6 +1159,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1144,8 +1174,8 @@ msgstr "" msgid "FOI" msgstr "DAI" -msgid "FOI email address for {{public_body}}" -msgstr "Courriel DAI pour {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "La loi sur l’accès à l’information n’est pas valide pour cette autorité." @@ -1186,6 +1216,9 @@ msgstr "Trouver les autorités" msgid "Find the authorities to write to" msgstr "Selectionnez les autorités à qui écrire" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Tout d'abord, est-ce que vos autres demandes ont pu aboutir ?" @@ -1234,9 +1267,6 @@ msgstr "Suivre" msgid "Follow up message sent by requester" msgstr "Suivre les messages envoyés par le demandeur" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Les messages de suivi des demandes existantes sont envoyées à {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Suivi envoyé à {{public_body_name}} par {{info_request_user}} ce {{date}}." @@ -1249,8 +1279,8 @@ msgstr "Les suivis et les nouvelles réponses à cette demande ont été arrêt msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Nous suivre sur Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Suivant" @@ -1273,11 +1303,10 @@ msgstr[0] "{{count}} organismes publics trouvés débutant par ‘{{first_letter msgstr[1] "{{count}} organismes publics trouvés débutant par ‘{{first_letter}}’" msgstr[2] "{{count}} organismes publics trouvés débutant par ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} organismes publics trouvés dans la catégorie ‘{{category_name}}’" -msgstr[1] "{{count}} organismes publics trouvés dans la catégorie ‘{{category_name}}’" -msgstr[2] "{{count}} organismes publics trouvés dans la catégorie ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1285,6 +1314,11 @@ msgstr[0] "{{count}} organismes publics trouvés correspondant à la balise ‘ msgstr[1] "{{count}} organismes publics trouvés correspondant à la balise ‘{{tag_name}}’" msgstr[2] "{{count}} organismes publics trouvés correspondant à la balise ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1299,9 +1333,6 @@ msgstr "" "Le droit d'accès à l'information ne s'applique pas à cette autorité, ainsi vous ne pouvez pas \n" " lui adresser des demandes." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La législation sur la publicité de l'administration ne s'applique plus à cet organisme. Les messages de suivi des demandes existantes sont envoyés à {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La loi sur l’accès à l’information n’est plus applicable à {{public_body_name}}." @@ -1352,13 +1383,10 @@ msgstr "Vous avez un compte?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1382,6 +1410,9 @@ msgstr "Bonjour ! Vous pouvez faire des demandes de Publicité de l'administrati msgid "Help" msgstr "Aide" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Aidez-nous à classer les demandes qui ne sont pas mises à jour" @@ -1483,9 +1514,6 @@ msgstr "J'ai reçu un message d'erreur." msgid "I've received an error message" msgstr "J'ai reçu un message d'erreur." -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si l'adresse est erronée, ou si vous connaissez une meilleure adresse, s'il vous plaît contactez-nous." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si l'erreur a été un échec de livraison, et vous pouvez trouver une mise à jour adresse email accès à l'information pour l'autorité, s'il vous plaît nous dire en utilisant le formulaire ci-dessous." @@ -1545,11 +1573,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si vous ne l'avez pas déjà fait, veuillez écrire un message à l'administration indiquant que vous avez retiré votre demande. Sinon, ils ne sauront pas qu'elle a été retirée." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Si vous savez quelle adresse utiliser, merci de nous la communiquer.\n" -" Vous êtes susceptible de trouver l'adresse sur leur site Internet ou en la leur demandant par téléphone." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Si vous répondez a ce message ça ira directement à {{user_name}}, qui va \n" @@ -1590,9 +1613,6 @@ msgstr "Améliorez la sécurité de votre compte" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Intégrez des liens pertinants comme votre blog , page twitter \n" @@ -1608,9 +1628,6 @@ msgstr "Les demandes individuelles" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Information non détenue." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informations sur les émissions et rejets (par exemple, le bruit, l'énergie, \\ n radiations, déchets)" @@ -1635,6 +1652,9 @@ msgstr "Mot de passe unique invalide" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Est ce que {{email_address}} la mauvaise adresse pour les demandes du type {{law_used_full}} à {{public_body_name}}? Si c'est le cas veuillez nous contacter en utilisant ce formulaire:" @@ -1658,12 +1678,12 @@ msgstr "Inscrit depuis {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Inscrit {{site_name}} en {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Juste une dernierre chose " -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Conservez votre code d'accès en lieu sûr. Vous en aurez besoin pour confirmer votre compte lorsque vous voudrez changer votre mot de passe. Vous pouvez l'ajouter dans un gestionnaire de mot de passe ou l'imprimer et le conserver dans un lieu sûr." - msgid "Keep your request up to date" msgstr "Gardez votre demande à jour" @@ -1706,6 +1726,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1727,9 +1750,6 @@ msgstr "Se connecter a l'interface Admin" msgid "Long overdue" msgstr "En retard depuis longtemps" -msgid "Long overdue." -msgstr "En retard depuis longtemps." - msgid "Made between" msgstr "Fait entre" @@ -1826,9 +1846,6 @@ msgstr "Requiert l'attention de l'administrateur" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nouvelles demandes d'accès a l'information " @@ -1862,9 +1879,6 @@ msgstr "Nouvelles mises à jour pour la demande '{{request_title}}'" msgid "Newest results first" msgstr "Les résultats les plus récents en premier" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Suivant" @@ -1946,6 +1960,9 @@ msgstr "" msgid "Number of requests" msgstr "Nombre de requêtes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "Ou effacer la photo existante" @@ -2009,9 +2026,6 @@ msgstr "Succès partiel" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Partiellement réussi." - msgid "Password is not correct" msgstr "Mot de passe incorrect" @@ -2286,6 +2300,9 @@ msgstr "Imprimer votre code d'accès unique" msgid "Privacy and cookies" msgstr "Vie privée et cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2295,6 +2312,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Organismes publics" @@ -2376,9 +2396,6 @@ msgstr "Les résultats récemment décris en premier " msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Refusé." - msgid "Regenerate one time passcode" msgstr "Regénérer un code d'accès unique" @@ -2418,8 +2435,8 @@ msgstr "Signaler cette demande" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Rapporté à l'attention de l'administrateur." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Reporter une demande avertit les administrateurs du site. Ils vont répondre aussitôt que possible." @@ -2433,6 +2450,9 @@ msgstr "Solliciter une révision interne " msgid "Request an internal review from {{person_or_body}}" msgstr "Solliciter une révision interne de {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2490,6 +2510,9 @@ msgstr "Les demandes seront envoyées aux personalités suivantes:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Répondre par e-mail " @@ -2568,6 +2591,12 @@ msgstr "" msgid "Search queries" msgstr "Requêtes de recherche" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Résultats de recherche" @@ -2583,6 +2612,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Envoyer un suivi" @@ -2631,6 +2666,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2655,6 +2695,9 @@ msgstr "Définir vôtre photo de profil" msgid "Share on Facebook" msgstr "Partager sur Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2871,9 +2914,6 @@ msgstr "Demande d'accès à l'information réussie" msgid "Successful requests" msgstr "Demandes qui ont abouti" -msgid "Successful." -msgstr "Réussi." - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggérez au demandeur comment trouver le reste de l'information." @@ -2901,6 +2941,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Merci de nous avoir aidés à maintenir le site en ordre!" @@ -2967,6 +3010,12 @@ 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 "L'URL où vous avez trouvé l'adresse e-mail. Ce champ est optionel, mais ça nous aiderait beaucoup si vous pouvez nous fournir un lien sur une page spécifique du site internet de l'autorité qui a cette adresse, parce que ça nous aidera de vérifier. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels qu'ils étaient auparavant. " @@ -3027,12 +3076,6 @@ msgstr "Le dernier utilisateur a été créé au cours de la journée passée" msgid "The last user was created over a day ago" msgstr "Le dernier utilisateur a été créé plus d'une journée passée" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La page n'existe pas . Vous pouvez essayer de :" @@ -3215,8 +3258,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Il n'y a rien à afficher encore." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Il y a eu une erreur de transmission ou autre , qui doit être examinée par l'équipe de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Il y a une erreur avec le reCAPTCHA. Merci d'essayer à nouveau." @@ -3610,12 +3653,6 @@ msgstr "Essayer d'ouvrir les logs dans une nouvelle fenêtre." msgid "Turn off email alerts" msgstr "Désactiver les alertes e-mail" -msgid "Tweet it" -msgstr "Partager sur Tweeter" - -msgid "Tweet this request" -msgstr "Partagez cette demande sur Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "L'authentification à deux facteurs ajoute de la sécurité supplémentaire à votre compte en demandant plus d'informations pour modifier votre mot de passe." @@ -3682,8 +3719,8 @@ msgstr "désabonner" msgid "Unusual response" msgstr "Réponse inattendue" -msgid "Unusual response." -msgstr "Réponse inattendue." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Mise à jour de l'adresse e-mail - {{public_body_name}}" @@ -3724,23 +3761,14 @@ msgstr "Contrariant" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Voir les adresses mail des demandes d'accès à l'information " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Voir l'adresse mail de demande d'accès à l'information pour '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Voir l'adresse mail des demandes d'accès à l'information pour {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Voir les demandes faites par {{user_name}}:" msgid "View authorities" msgstr "Voir les institutions publiques" -msgid "View email" -msgstr "Voir l'email " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3748,11 +3776,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Voir d'autres demandes adressées à {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Voir votre code d'accès unique d'authentification à deux facteurs" -msgid "Waiting clarification." -msgstr "En attente de clarification" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "En attente d'une révision interne par {{public_body_link}} a propos de leur gestion de la demande." @@ -3784,9 +3818,6 @@ msgstr "Vous pouvez télécharger les logs du serveur mail pour ce message." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nous n'avons pas d'adresse email valide pour cette autorité." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nous ne disposons pas d'adresse {{law_used_full}} pour {{public_body_name}}." @@ -3902,6 +3933,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Quand vous y arrivez, veuillez mettre à jour le statut et dire si la réponse \n" @@ -3930,8 +3964,8 @@ msgstr "Pourquoi vous considèrez cette demande particulièrement inopportun? " msgid "Withdrawn" msgstr "retiré" -msgid "Withdrawn by the requester." -msgstr "retirée par le demandeur " +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3957,6 +3991,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Vous avez déjà créé le même paquet de demandes le {{date}}. Vous pouvez visionner le paquet existant ou éditer les détails ci-dessous pour faire un nouveau paquet de demandes similaires." @@ -4614,9 +4651,6 @@ msgstr "Entrer votre terme de recherce ici" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "raison inconnue" - msgid "unknown reason " msgstr "raison inconnue" @@ -4653,9 +4687,6 @@ msgstr "{{authority_name}} n'avait pas les informations demand msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} est en attente de votre clarification ." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4667,6 +4698,11 @@ msgstr[0] "{{count}} annotations créées." msgstr[1] "{{count}} annotations made." msgstr[2] "{{count}} annotations made." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} follower" @@ -4820,8 +4856,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} correspondant à '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog et tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4834,9 +4870,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} Envoi de nouvelles demandes {{request_email}} pour cette autorité." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/fr_BE/app.po b/locale/fr_BE/app.po index 581b9883c2..7311c66b3e 100644 --- a/locale/fr_BE/app.po +++ b/locale/fr_BE/app.po @@ -62,7 +62,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: vickyanderica , 2011\n" "Language-Team: French (Belgium) (http://app.transifex.com/mysociety/alaveteli/" @@ -205,11 +205,11 @@ msgstr "60 minutes+" msgid "Browse all or ask us to add one." msgstr "Voir toutes les autorités ou demandez-nous d'en ajouter une." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Faire une nouvelle demande d'information environnementale à l'autorité {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Faire une nouvelle demande de Liberté d'accès à l'information à l'autorité {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Connectez-vous pour recevoir des mises à jour sur les sujets que vous suivez ou réactivez les alertes par e-mail." @@ -298,8 +298,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: pour sélectionner les éléments à rechercher, consultez le tableau des variantes ci-dessous." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conseils sur la façon d'obtenir une réponse qui satisfera le demandeur. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toutes les informations ont été envoyées" @@ -336,6 +336,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Journaliste, universitaire ou utilisateur expérimenté ? {{pro_site_link}} est une boîte à outils tout-en-un sur la liberté d'accès aux informations publiques comprenant tout ce dont vous avez besoin pour rester au courant des enquêtes complexes axées sur la liberté d'accès aux informations publiques." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Aucune réponse n'a été reçue (peut-être qu'il y a juste un accusé de réception)" @@ -381,8 +384,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un message de suivi pour {{request_title}} a été envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Une réponse à {{request_title}} a été envoyée par {{public_body_name}} à {{info_request_user}} le {{date}}. L'état de la demande est : {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Un résumé de la réponse si vous l'avez reçue par courrier postal." @@ -426,9 +429,6 @@ msgstr "A propos de vous :" msgid "About {{count}} FOI requests found" msgstr "{{count}} demandes d'accès à l'information trouvées" -msgid "Academic paper" -msgstr "Document académique" - msgid "Account closed at user request" msgstr "Compte fermé à la demande de l'utilisateur" @@ -459,6 +459,12 @@ msgstr "Ajouter un commentaire à votre demande avec des choix de citations ou u msgid "Add authority - {{public_body_name}}" msgstr "Ajouter l'autorité publique - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Ajouter l'autorité publique :" @@ -627,24 +633,18 @@ msgstr "En attente de la précision" msgid "Awaiting classification" msgstr "En attente de classement" -msgid "Awaiting classification." -msgstr "En attente de classement." - msgid "Awaiting internal review" msgstr "En attente d'une demande de reconsidération" -msgid "Awaiting internal review." -msgstr "En attente de reconsidération." - msgid "Awaiting response" msgstr "Réponse en attente" -msgid "Awaiting response." -msgstr "Réponse en attente." - msgid "Back to content" msgstr "Retour au contenu" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -681,11 +681,8 @@ msgstr "Parcourir toutes les autorités publiques →" msgid "Browse all requests →" msgstr "Voir toutes les demandes →" -msgid "Browse and search requests" -msgstr "Parcourir et rechercher les demandes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Parcourir et rechercher les demandes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -693,8 +690,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Parcourir les demandes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Légalement, les autorités publiques doivent répondre." @@ -714,6 +711,12 @@ msgstr "Selon la loi, {{public_body_link}} aurait dû répondre rapideme msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Vous ne trouvez pas l’autorité que vous cherchez ?" @@ -786,6 +789,9 @@ msgstr "Précisez votre demande d'accès à l'information - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classer une demande d'accès à l'information de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Classer les réponses" @@ -852,11 +858,11 @@ msgstr "Confirmez votre adresse email" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirmer votre nouvelle adresse email sur {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Considérée par les administrateurs comme n'étant pas une demande de Publicité de l'administration." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Considéré par les administrateurs comme vexatoire." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Nous contacter" @@ -924,6 +930,9 @@ msgstr "Actuellement en attente d'une réponse de {{public_body msgid "Data interpretation" msgstr "Interprétation des données" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Date :" @@ -951,15 +960,15 @@ msgstr "En retard" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Réponse tardive à votre demande d'accès - {{request_title}}" -msgid "Delayed." -msgstr "En retard." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Statut d'expédition pour message sortant #{{id}}" msgid "Delivery error" msgstr "Erreur lors de l'envoi" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Détails de la demande “{{request_title}}”" @@ -996,10 +1005,7 @@ msgstr "C'est fait" msgid "Done >>" msgstr "C'est fait" -msgid "Download Data" -msgstr "Télécharger les données" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1008,6 +1014,9 @@ msgstr "Télécharger un fichier zip de toute la correspondance" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Téléchargez la pièce jointe originale" @@ -1020,9 +1029,27 @@ msgstr "Demande d'information environnementale" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Modifiez et ajoutez plus de détails au message ci-dessus, expliquant pourquoi vous n'êtes pas satisfait de leur réponse." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifier le texte vous concernant" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifier votre demande" @@ -1083,6 +1110,9 @@ msgstr "Tout ce que vous indiquez dans cette page, y compris votre nom{{authority_email}}." -msgstr "Les messages de suivi des demandes existantes sont envoyées à {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Message de suivi envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." @@ -1200,8 +1230,8 @@ msgstr "Les messages de suivi et les nouvelles réponses à cette demande ont é msgid "Follow us on Facebook" msgstr "Suivez-nous sur Facebook" -msgid "Follow us on twitter" -msgstr "Suivez-nous sur Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Suivant" @@ -1224,11 +1254,10 @@ msgstr[0] "{{count}} autorité publique trouvée débutant par ‘{{first_letter msgstr[1] "{{count}} autorités publiques trouvées débutant par ‘{{first_letter}}’" msgstr[2] "{{count}} autorités publiques trouvées débutant par ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} autorité publique trouvée dans la catégorie ‘{{category_name}}’" -msgstr[1] "{{count}} autorités publiques trouvées dans la catégorie ‘{{category_name}}’" -msgstr[2] "{{count}} autorités publiques trouvées dans la catégorie ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1236,6 +1265,11 @@ msgstr[0] "{{count}} autorité publique trouvée correspondant à la balise ‘ msgstr[1] "{{count}} autorités publiques trouvées correspondant à la balise ‘{{tag_name}}’" msgstr[2] "{{count}} autorités publiques trouvées correspondant à la balise ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Il y a quatre semaines, vous avez fait une demande d'accès à l'information à {{public_body_name}} en utilisant {{site_name}}." @@ -1248,9 +1282,6 @@ msgstr "Loi pour la liberté d'accès à l'information" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Le droit d'accès à l'information ne s'applique pas à cette autorité publique, dès lors vous ne pouvez pas lui adresser de demande." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La législation sur la publicité de l'administration ne s'applique plus à cette autorité publique. Les messages de suivi des demandes existantes sont envoyés à {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La législation sur l’accès à l’information n’est plus applicable à {{public_body_name}}." @@ -1299,13 +1330,10 @@ msgstr "Vous avez un compte ?" msgid "Handled by postal mail" msgstr "Traité par courrier postal" -msgid "Handled by postal mail." -msgstr "Traité par courrier postal." - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1329,6 +1357,9 @@ msgstr "Bonjour ! Vous pouvez faire des demandes d'accès à l'information depui msgid "Help" msgstr "Aide" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Aidez-nous à classer les demandes qui ne sont pas mises à jour" @@ -1419,9 +1450,6 @@ msgstr "J'ai reçu un message d'erreur" msgid "I've received an error message" msgstr "J'ai reçu un message d'erreur" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si l'adresse est erronée, ou si vous connaissez une meilleure adresse, s'il vous plaît contactez-nous." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si l'erreur a été causée par un échec de livraison et que vous pouvez trouver une nouvelle adresse email pour les demandes d'accès à l'information pour l'autorité publique, prévenez-nous en utilisant le formulaire ci-dessous." @@ -1479,9 +1507,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si vous ne l'avez pas déjà fait, veuillez écrire un message à l'autorité publique indiquant que vous avez retiré votre demande. Sinon, ils ne sauront pas qu'elle a été retirée." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Si vous savez quelle adresse utiliser, merci de nous la communiquer. Vous devriez pouvoir trouver leur adresse sur leur site Internet ou en leur demandant par téléphone." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si vous répondez à ce message il sera directement transmis à {{user_name}}, qui connaîtra votre adresse email. Ne répondez que si cela ne vous pose pas de problème." @@ -1516,9 +1541,6 @@ msgstr "Améliorez la sécurité de votre compte" msgid "In progress" msgstr "En cours" -msgid "In the News" -msgstr "Dans les actualités" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Intégrez des liens pertinants vers votre blog, un compte twitter,... Les liens seront rendus cliquables. \n" @@ -1533,9 +1555,6 @@ msgstr "Les demandes individuelles" msgid "Information not held" msgstr "Information non détenue" -msgid "Information not held." -msgstr "Information non détenue." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informations sur les émissions et les rejets (par exemple, le bruit, l'énergie, les radiations, les déchets)" @@ -1560,6 +1579,9 @@ msgstr "Mot de passe unique invalide" msgid "Invalid token" msgstr "Token invalide" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Est-ce que {{email_address}} est la mauvaise adresse pour les demandes du type {{law_used_full}} envoyées à {{public_body_name}} ? Si c'est le cas veuillez nous contacter en utilisant ce formulaire :" @@ -1583,12 +1605,12 @@ msgstr "Inscrit depuis {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Inscrit à {{site_name}} en {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Juste une dernière chose " -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Conservez votre code d'accès en lieu sûr. Vous en aurez besoin pour confirmer votre compte lorsque vous voudrez changer votre mot de passe. Vous pouvez l'ajouter dans un gestionnaire de mot de passe ou l'imprimer et le conserver dans un lieu sûr." - msgid "Keep your request up to date" msgstr "Gardez votre demande à jour" @@ -1631,6 +1653,9 @@ msgstr "Quitter le projet" msgid "Let us know" msgstr "Faites-le nous savoir" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1652,9 +1677,6 @@ msgstr "Se connecter à l'interface d'administration" msgid "Long overdue" msgstr "En retard depuis longtemps" -msgid "Long overdue." -msgstr "En retard depuis longtemps." - msgid "Made between" msgstr "Fait entre" @@ -1751,9 +1773,6 @@ msgstr "Requiert l'attention de l'administrateur" msgid "Needs status update" msgstr "Nécessite une mise à jour de son statut" -msgid "New Citation" -msgstr "Nouvelle citation" - msgid "New Freedom of Information requests" msgstr "Nouvelles demandes d'accès à l'information " @@ -1787,9 +1806,6 @@ msgstr "Nouvelles mises à jour pour la demande '{{request_title}}'" msgid "Newest results first" msgstr "Les résultats les plus récents en premier" -msgid "News story" -msgstr "Nouvelles histoires" - msgid "Next" msgstr "Suivant" @@ -1871,6 +1887,9 @@ msgstr "Nombre de cas de demandes cachées au fil du temps" msgid "Number of requests" msgstr "Nombre de requêtes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OU effacez la photo existante" @@ -1934,9 +1953,6 @@ msgstr "Succès partiel" msgid "Partially successful" msgstr "Abouti partiellement" -msgid "Partially successful." -msgstr "Partiellement abouti." - msgid "Password is not correct" msgstr "Le mot de passe n'est pas correct" @@ -2207,6 +2223,9 @@ msgstr "Imprimer votre code d'accès unique" msgid "Privacy and cookies" msgstr "Vie privée et cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Image de profil pour {{user_name}}" @@ -2216,6 +2235,9 @@ msgstr "Porteur de projet" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Autorité publique" @@ -2297,9 +2319,6 @@ msgstr "Les résultats récemment décrits en premier " msgid "Refused" msgstr "Refusé" -msgid "Refused." -msgstr "Refusé." - msgid "Regenerate one time passcode" msgstr "Regénérer un code d'accès unique" @@ -2339,8 +2358,8 @@ msgstr "Signaler cette demande" msgid "Reported" msgstr "Signalé" -msgid "Reported for administrator attention." -msgstr "Signaler à l'attention de l'administrateur." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Signaler une demande aux administrateurs du site. Ils répondront dès que possible." @@ -2354,6 +2373,9 @@ msgstr "Demander une reconsidération" msgid "Request an internal review from {{person_or_body}}" msgstr "Demander une reconsidération au {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "L'email de la requête ne peut pas être nul" @@ -2411,6 +2433,9 @@ msgstr "Les demandes seront envoyées aux autorités publiques suivantes :" msgid "Requires admin attention" msgstr "Nécessite la vigilance de l'administrateur" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Répondre par email " @@ -2486,6 +2511,12 @@ msgstr "Rechercher parmi {{number_of_requests}} demandes msgid "Search queries" msgstr "Requêtes de recherche" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Résultats de recherche" @@ -2501,6 +2532,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Envoyer un message de suivi" @@ -2549,6 +2586,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2573,6 +2615,9 @@ msgstr "Définir votre photo de profil" msgid "Share on Facebook" msgstr "Partager sur Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2788,9 +2833,6 @@ msgstr "Demande d'accès à l'information aboutie" msgid "Successful requests" msgstr "Demandes qui ont abouti" -msgid "Successful." -msgstr "Abouti." - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggérez au demandeur les moyens de trouver le reste de l'information." @@ -2818,6 +2860,9 @@ msgstr "Tags :" msgid "Tasks" msgstr "Tâches" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Merci de nous avoir aidé à maintenir le site en ordre !" @@ -2881,6 +2926,12 @@ msgstr "L'adresse URL où vous avez trouvé l'article." 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 "L'adresse URL où vous avez trouvé l'email de l'autorité. Ce champ est optionnel, mais cela nous aide beaucoup si vous nous fournissez un lien vers une page spécifique du site internet de l'autorité publique où se trouve cette adresse email, cela nous permettra de facilement la vérifier. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels qu'ils étaient auparavant. " @@ -2941,12 +2992,6 @@ msgstr "Le dernier utilisateur a été créé hier" msgid "The last user was created over a day ago" msgstr "Le dernier utilisateur a été créé il y a plus d'un jour" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La page n'existe pas. Vous pouvez essayer de :" @@ -3124,8 +3169,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "A ce stade, il n'y a rien à afficher." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Il y a eu une erreur de livraison ou une erreur similaire, qui doit être examinée par l'équipe de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Il y a une erreur avec le reCAPTCHA. Merci d'essayer à nouveau." @@ -3508,12 +3553,6 @@ msgstr "Essayer d'ouvrir les logs dans une nouvelle fenêtre." msgid "Turn off email alerts" msgstr "Désactiver les alertes email" -msgid "Tweet it" -msgstr "Partager sur Tweeter" - -msgid "Tweet this request" -msgstr "Partagez cette demande sur Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "L'authentification à deux facteurs ajoute de la sécurité supplémentaire à votre compte en demandant plus d'informations pour modifier votre mot de passe." @@ -3580,8 +3619,8 @@ msgstr "Se désabonner" msgid "Unusual response" msgstr "Réponse inattendue" -msgid "Unusual response." -msgstr "Réponse inattendue." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Mise à jour de l'adresse email - {{public_body_name}}" @@ -3619,23 +3658,14 @@ msgstr "Offensante/inappropriée" msgid "Vexatious annotation" msgstr "Commentaire vexatoire" -msgid "View FOI email address" -msgstr "Voir l'adresse email de demande d'accès à l'information " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Voir l'adresse email de demande d'accès à l'information pour '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Voir l'adresse email de demande d'accès à l'information pour {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Voir les demandes d'accès à l'information introduites par {{user_name}} :" msgid "View authorities" msgstr "Voir les autorités publiques" -msgid "View email" -msgstr "Voir l'email " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Voir les détails de l'historique des événements" @@ -3643,11 +3673,17 @@ msgstr "Voir les détails de l'historique des événements" msgid "View other requests to {{public_body}}" msgstr "Voir d'autres demandes adressées à {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Voir votre code d'accès unique d'authentification à deux facteurs" -msgid "Waiting clarification." -msgstr "En attente de précision" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "En attente d'une reconsidération par {{public_body_link}} à propos de leur gestion de cette demande." @@ -3679,9 +3715,6 @@ msgstr "Vous pouvez télécharger les logs du serveur mail pour ce message." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nous n'avons pas d'adresse email pour les demandes à cette autorité." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nous ne disposons pas d'adresse de demande de {{law_used_full}} pour {{public_body_name}}." @@ -3790,6 +3823,9 @@ msgstr "" msgid "What's happened:" msgstr "Que s'est il passé ? " +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Tant que vous y êtes, pourriez-vous mettre à jour le statut pour indiquer si la réponse contient les informations demandées." @@ -3814,8 +3850,8 @@ msgstr "Pourquoi considérez-vous cette demande comme inopportune ? " msgid "Withdrawn" msgstr "Retiré" -msgid "Withdrawn by the requester." -msgstr "Retiré par le demandeur." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3841,6 +3877,9 @@ msgstr "" msgid "Yes" msgstr "Oui" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Vous avez déjà créé le même paquet de demandes le {{date}}. Vous pouvez visionner le paquet existant ou éditer les détails ci-dessous pour faire un nouveau paquet de demandes similaires." @@ -4476,9 +4515,6 @@ msgstr "Entrez votre terme de recherce ici" msgid "unknown" msgstr "inconnu" -msgid "unknown reason" -msgstr "raison inconnue" - msgid "unknown reason " msgstr "raison inconnue" @@ -4515,9 +4551,6 @@ msgstr "{{authority_name}} n'a pas les informations demandées. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} est en attente de votre précision." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} contributeurs" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} pièce jointe" @@ -4530,6 +4563,11 @@ msgstr[0] "{{count}} commentaire créé." msgstr[1] "{{count}} commentaires créés." msgstr[2] "{{count}} commentaires créés." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} personne suit" @@ -4687,8 +4725,8 @@ msgstr "{{reason}}. Malheureusement, nous ne connaissons pas l'adresse email de msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} correspondant à '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog et tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4702,9 +4740,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envoie les nouvelles demandes à {{request_email}} pour cette autorité publique." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Les utilisateurs de {{site_name}} ont envoyé {{number_of_requests}} demandes, dont :" diff --git a/locale/fr_CA/app.po b/locale/fr_CA/app.po index c44700faab..ede51f268d 100644 --- a/locale/fr_CA/app.po +++ b/locale/fr_CA/app.po @@ -54,7 +54,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: vickyanderica , 2011\n" "Language-Team: French (Canada) (http://app.transifex.com/mysociety/alaveteli/l" @@ -197,10 +197,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Voir tous les organismes." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -290,8 +290,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr " variety: pour sélectionner le type de demandes à rechercher, consulter le tableau des variétés ci-dessous." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conseils sur la façon d'obtenir une réponse qui satisfera le demandeur. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toutes les informations ont été envoyées" @@ -333,6 +333,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Aucune réponse n'a été reçue \n" @@ -386,8 +389,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un suivi à {{request_title}} a été envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Une réponse à {{request_title}}a été envoyée par {{public_body_name}} à {{info_request_user}} le {{date}}. Le statut de la demande est: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -433,9 +436,6 @@ msgstr "À propos de vous:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -468,6 +468,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -640,24 +646,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "En attente de classement." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "En attente de révision interne." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "En attente d'une réponse." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -694,11 +694,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Parcourir les demandes passées" - -msgid "Browse and search requests (page {{count}})" -msgstr "Parcourir les demandes passées (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -706,8 +703,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Voir les demandes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -727,6 +724,12 @@ msgstr "Selon la loi, {{public_body_link}} devrait normalement avoir répondu plus de détails au message ci-dessus, \n" " en expliquant pourquoi vous n'êtes pas satisfait de la réponse." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifier votre texte de présentation" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifier cette demande" @@ -1107,6 +1134,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1119,8 +1149,8 @@ msgstr "" msgid "FOI" msgstr "Demande d'accès aux documents" -msgid "FOI email address for {{public_body}}" -msgstr "Courriel pour demander l'accès à un document à {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1161,6 +1191,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Premièrement, est-ce que vos autres demandes ont réussi?" @@ -1209,9 +1242,6 @@ msgstr "Message de suivi" msgid "Follow up message sent by requester" msgstr "Suivre les messages envoyés par le demandeur" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1224,8 +1254,8 @@ msgstr "Les messages de suivi et les nouvelles réponses à cette demande ont é msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Suivez-nous sur Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1246,8 +1276,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1256,6 +1286,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1270,9 +1305,6 @@ msgstr "" "Le droit d'accès aux documents ne s'applique pas à cet organisme. Vous ne pouvez donc pas \n" " lui adresser de demandes." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1323,13 +1355,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1353,6 +1382,9 @@ msgstr "" msgid "Help" msgstr "Aide" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1454,9 +1486,6 @@ msgstr "J'ai reçu un message d'erreur." msgid "I've received an error message" msgstr "J'ai reçu un message d'erreur." -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si l'adresse est erronée ou si vous connaissez une meilleure adresse, veuillez nous contacter." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si l'erreur consiste en un échec de livraison ou tout autre message d'erreur reçu en réponse à votre demande, veuillez nous en informer en utilisant le formulaire ci-dessous." @@ -1518,11 +1547,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si ce n'est pas déjà fait, veuillez écrire un message ci-dessous expliquant à l'organisme que vous avez retiré votre demande. Sinon, elle ne saura pas qu'elle a été retirée." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Si vous connaissez l'adresse à utiliser, merci de nous la communiquer.\n" -" Il est possible que vous trouviez l'adresse sur leur site web ou en la demandant par téléphone. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Si vous répondez à ce message, cela se rendra à {{user_name}}, qui connaîtra alors \n" @@ -1565,9 +1589,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Incluez les liens pertinents, comme le site web de la campagne, votre blog ou un \n" @@ -1582,9 +1603,6 @@ msgstr "Les demandes individuelles" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Information non tenue." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informations sur les émissions et les déversements (par exemple, le bruit, l'énergie, \\ n les radiations, les déchets)" @@ -1609,6 +1627,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Est-ce que {{email_address}} est la mauvaise adresse pour les demandes de {{law_used_full}} à {{public_body_name}}? Si c'est le cas, veuillez nous l'indiquer en complétant ce formulaire:" @@ -1630,12 +1651,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Une dernière chose" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1678,6 +1699,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1699,9 +1723,6 @@ msgstr "Se connecter à l'interface d'administrateur" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "En retard depuis longtemps" - msgid "Made between" msgstr "Fait entre" @@ -1798,9 +1819,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nouvelles demandes d'accès aux documents" @@ -1834,9 +1852,6 @@ msgstr "Nouvelles mises à jour pour la demande '{{request_title}}'" msgid "Newest results first" msgstr "Les résultats les plus récents d'abord" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Suivant" @@ -1918,6 +1933,9 @@ msgstr "" msgid "Number of requests" msgstr "Nombre de demandes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OU effacer la photo existante" @@ -1981,9 +1999,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Partiellement réussi." - msgid "Password is not correct" msgstr "Mot de passe incorrect" @@ -2258,6 +2273,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2267,6 +2285,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Organismes publics" @@ -2348,9 +2369,6 @@ msgstr "Les résultats récemment décrits en premier " msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Refusé." - msgid "Regenerate one time passcode" msgstr "" @@ -2390,8 +2408,8 @@ msgstr "Signaler cette demande" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Signalé à l'administrateur." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2405,6 +2423,9 @@ msgstr "Solliciter une révision interne " msgid "Request an internal review from {{person_or_body}}" msgstr "Solliciter une révision interne de {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2462,6 +2483,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Répondre par courriel" @@ -2540,6 +2564,12 @@ msgstr "" msgid "Search queries" msgstr "Recherches" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Résultats de recherche" @@ -2555,6 +2585,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Envoyer un message de suivi" @@ -2603,6 +2639,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2626,6 +2667,9 @@ msgstr "Définir votre photo de profil" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2843,9 +2887,6 @@ msgstr "Demandes d'accès aux documents réussies" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Réussi." - msgid "Suggest how the requester can find the rest of the information." msgstr "Indiquez comment le demandeur peut trouver le reste de l'information." @@ -2873,6 +2914,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Merci de nous aider à maintenir le site en ordre!" @@ -2943,6 +2987,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels quels." @@ -3003,12 +3053,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La page n'existe pas. Vous pouvez essayer de :" @@ -3189,8 +3233,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Il y a eu une erreur de transmission ou autre qui doit être corrigée par l'équipe de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3584,12 +3628,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Désactiver les alertes par courriel" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Partager cette demande d'information sur Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3656,8 +3694,8 @@ msgstr "Vous désabonner" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Réponse inhabituelle." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3698,23 +3736,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Voir les adresses courriel" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Voir l'adresse courriel pour '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Voir l'adresse courriel pour {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Voir les demandes faites par {{user_name}}:" msgid "View authorities" msgstr "Voir les organismes" -msgid "View email" -msgstr "Voir le courriel" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3722,11 +3751,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "En attente de clarification" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "En attente d'une révision interne par {{public_body_link}} à propos de leur gestion de la demande." @@ -3758,9 +3793,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nous n'avons pas d'adresse courriel valide pour cet organisme." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nous ne disposons pas d'adresse pour les demandes d'accès aux documents pour {{public_body_name}}." @@ -3872,6 +3904,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Quand vous y arriverez, veuillez mettre à jour le statut et mentionnez si la réponse \n" @@ -3900,8 +3935,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Retirée par le demandeur." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3927,6 +3962,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4586,9 +4624,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "raison inconnue" - msgid "unknown reason " msgstr "raison inconnue" @@ -4625,9 +4660,6 @@ msgstr "{{authority_name}} n'avait pas les informations demand msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} est en attente de votre clarification ." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4638,6 +4670,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4788,8 +4825,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} correspondant à '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog et tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4802,9 +4839,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envoie les nouvelles demandes d'accès aux documents pour cet organisme public à l'adresse suivante: {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/fr_FR/app.po b/locale/fr_FR/app.po index 7cfff2d22b..db161e5926 100644 --- a/locale/fr_FR/app.po +++ b/locale/fr_FR/app.po @@ -63,9 +63,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Laurent S, 2019-2024\n" +"Last-Translator: vickyanderica , 2011\n" "Language-Team: French (France) (http://app.transifex.com/mysociety/alaveteli/l" "anguage/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -206,11 +206,11 @@ msgstr "60 minutes +" msgid "Browse all or ask us to add one." msgstr "Voir toutes les autorités ou demandez-nous d'en ajouter une." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Faire une nouvelle demande d'information environnementale à l'autorité {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Faire une nouvelle demande de droit accès à l'information à l'autorité {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "se connecterpour des nouvelles sur ce que vous suivez ou pour réactiver des alertes email." @@ -299,8 +299,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: pour sélectionner les éléments à rechercher, consultez le tableau des variantes ci-dessous." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conseils sur la façon d'obtenir une réponse qui satisfera le demandeur. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toutes les informations ont été envoyées" @@ -337,6 +337,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Journaliste, universitaire ou utilisateur privilégié? {{pro_site_link}} est une boîte à outils FOI tout-en-un comprenant tout ce dont vous avez besoin pour rester au top des enquêtes complexes conduites sur la FOI." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Aucune réponse n'a été reçue (peut-être qu'il y a juste un accusé de réception)" @@ -382,8 +385,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Un message de suivi pour {{request_title}} a été envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Une réponse à {{request_title}} a été envoyée par {{public_body_name}} à {{info_request_user}} le {{date}}. L'état de la demande est : {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Un résumé de la réponse si vous l'avez reçue par courrier postal." @@ -427,9 +430,6 @@ msgstr "À propos de vous :" msgid "About {{count}} FOI requests found" msgstr "Environ {{count}} demandes d'accès à l'information trouvées" -msgid "Academic paper" -msgstr "Article académique" - msgid "Account closed at user request" msgstr "Compte fermé à la demande de l'utilisateur" @@ -460,6 +460,12 @@ msgstr "Ajouter un commentaire à votre demande avec des choix de citations ou u msgid "Add authority - {{public_body_name}}" msgstr "Ajouter l'autorité publique - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Ajouter l'autorité publique :" @@ -628,24 +634,18 @@ msgstr "En attente de clarification" msgid "Awaiting classification" msgstr "En attente de classement" -msgid "Awaiting classification." -msgstr "En attente de classement" - msgid "Awaiting internal review" msgstr "Demande de recours gracieux effectuée" -msgid "Awaiting internal review." -msgstr "Demande de recours gracieux effectuée" - msgid "Awaiting response" msgstr "En attente de réponse" -msgid "Awaiting response." -msgstr "En attente de réponse" - msgid "Back to content" msgstr "Retour au contenu" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -682,11 +682,8 @@ msgstr "Parcourir toutes les autorités →" msgid "Browse all requests →" msgstr "Voir toutes les demandes →" -msgid "Browse and search requests" -msgstr "Parcourir et rechercher les demandes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Parcourir et rechercher les demandes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Parcourir les dernières demandes" @@ -694,8 +691,8 @@ msgstr "Parcourir les dernières demandes" msgid "Browse latest responses" msgstr "Parcourir les dernières réponses" -msgid "Browse requests" -msgstr "Parcourir les demandes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "En vertu de la loi, ils doivent vous répondre" @@ -715,6 +712,12 @@ msgstr "Selon la loi, {{public_body_link}} aurait dû répondre rapideme msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Vous ne trouvez pas l’autorité que vous cherchez ?" @@ -787,6 +790,9 @@ msgstr "Précisez votre demande d'accès à l'information - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Classer une demande d'accès à l'information de {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Classer les réponses" @@ -865,11 +871,11 @@ msgstr "Confirmez votre adresse email" msgid "Confirm your new email address on {{site_name}}" msgstr "Confirmer votre nouvelle adresse email sur {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Considéré par les administrateurs comme n'étant pas une demande d'accès à l'information." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Considéré par les administrateurs comme vexatoire." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Nous contacter" @@ -937,6 +943,9 @@ msgstr "Actuellement en attente de réponse de la part de l'aut msgid "Data interpretation" msgstr "Interprétation de la donnée" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Date :" @@ -991,15 +1000,15 @@ msgstr "En retard (plus de 30 jours)" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Votre demande d'accès intitulée \" {{request_title}} \" n'a pas abouti dans le délai réglementaire" -msgid "Delayed." -msgstr "En retard (plus de 30 jours)" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Statut d'expédition pour message sortant #{{id}}" msgid "Delivery error" msgstr "Erreur lors de l'envoi" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Détails de la demande “{{request_title}}”" @@ -1036,10 +1045,7 @@ msgstr "C'est fait" msgid "Done >>" msgstr "C'est fait" -msgid "Download Data" -msgstr "Télécharger la donnée" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1048,6 +1054,9 @@ msgstr "Télécharger un fichier zip de toute la correspondance" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Téléchargez la pièce jointe originale" @@ -1060,9 +1069,27 @@ msgstr "Demande d'information environnementale" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Modifiez et ajoutez plus de détails au message ci-dessus, expliquant pourquoi vous n'êtes pas satisfait de leur réponse." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifier le texte vous concernant" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifier votre demande" @@ -1123,6 +1150,9 @@ msgstr "Tout ce que vous indiquez dans cette page, y compris votre nom{{authority_email}}." -msgstr "Les messages de suivi des demandes existantes sont envoyées à {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Message de suivi envoyé à {{public_body_name}} par {{info_request_user}} le {{date}}." @@ -1240,8 +1270,8 @@ msgstr "Les messages de suivi et les nouvelles réponses à cette demande ont é msgid "Follow us on Facebook" msgstr "Suivez nous sur Facebook" -msgid "Follow us on twitter" -msgstr "Suivez-nous sur Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Suivant" @@ -1264,11 +1294,10 @@ msgstr[0] "{{count}} autorité publique trouvée débutant par ‘{{first_letter msgstr[1] "{{count}} autorités trouvées débutant par ‘{{first_letter}}’" msgstr[2] "{{count}} autorités trouvées débutant par ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} autorité publique trouvée dans la catégorie ‘{{category_name}}’" -msgstr[1] "{{count}} autorités trouvées dans la catégorie ‘{{category_name}}’" -msgstr[2] "{{count}} autorités trouvées dans la catégorie ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1276,6 +1305,11 @@ msgstr[0] "{{count}} autorité publique trouvée correspondant à la balise ‘ msgstr[1] "{{count}} autorités trouvées correspondant à la balise ‘{{tag_name}}’" msgstr[2] "{{count}} autorités trouvées correspondant à la balise ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Il y a quatre semaines vous avez effectué une demande d'accès aux documents administratifs à {{public_body_name}} via {{site_name}}." @@ -1288,9 +1322,6 @@ msgstr "Loi pour le droit d'accès à l'information" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Le droit d'accès à l'information ne s'applique pas à cette autorité publique, dès lors vous ne pouvez pas lui adresser de demande." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "La législation sur la publicité de l'administration ne s'applique plus à cette autorité publique. Les messages de suivi des demandes existantes sont envoyés à {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "La législation sur l’accès à l’information n’est plus applicable à {{public_body_name}}." @@ -1339,14 +1370,11 @@ msgstr "Vous avez un compte ?" msgid "Handled by postal mail" msgstr "Envoyée par courrier postal" -msgid "Handled by postal mail." -msgstr "Envoyée par courrier postal." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Est-ce que cette demande a été référencée dans un article d'actualité, publication académique ou autre publication ? " +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Est-ce que cette demande a été référencée dans un article d'actualité, publication académique ou autre publication ? Faites-le-nous savoir :" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Bonjour ! Nous avons un message important pour les visiteurs venant de l'extérieur de la {{country_name}}" @@ -1369,6 +1397,9 @@ msgstr "Bonjour ! Vous pouvez faire des demandes d'accès à l'information depui msgid "Help" msgstr "Aide" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Aidez-nous à classer les demandes qui ne sont pas mises à jour" @@ -1459,9 +1490,6 @@ msgstr "J'ai reçu un message d'erreur" msgid "I've received an error message" msgstr "J'ai reçu un message d'erreur" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si l'adresse est erronée, ou si vous connaissez une meilleure adresse, s'il vous plaît contactez-nous." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Si l'erreur a été causée par un échec de livraison et que vous pouvez trouver une nouvelle adresse email pour les demandes d'accès à l'information pour l'autorité publique, prévenez-nous en utilisant le formulaire ci-dessous." @@ -1519,9 +1547,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Pour informer l’administration que vous souhaitez retirer votre demande, vous devez le lui faire savoir (via le formulaire ci-dessous)." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Si vous savez quelle adresse utiliser, merci de nous la communiquer. Vous devriez pouvoir trouver leur adresse sur leur site Internet ou en leur demandant par téléphone." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Si vous répondez à ce message il sera directement transmis à {{user_name}}, qui connaîtra votre adresse email. Ne répondez que si cela ne vous pose pas de problème." @@ -1556,9 +1581,6 @@ msgstr "Améliorez la sécurité de votre compte" msgid "In progress" msgstr "En cours" -msgid "In the News" -msgstr "Dans les médias" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Intégrez des liens pertinents vers votre blog, compte twitter, fédiverse, etc. Les liens seront rendus cliquables. e.g." @@ -1571,9 +1593,6 @@ msgstr "Les demandes individuelles" msgid "Information not held" msgstr "Information non détenue" -msgid "Information not held." -msgstr "Information non détenue" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informations sur les émissions et les rejets (par exemple, le bruit, l'énergie, les radiations, les déchets)" @@ -1598,6 +1617,9 @@ msgstr "Mot de passe unique invalide" msgid "Invalid token" msgstr "Jeton invalide" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Est-ce que {{email_address}} est la mauvaise adresse pour les demandes du type {{law_used_full}} envoyées à {{public_body_name}} ? Si c'est le cas veuillez nous contacter en utilisant ce formulaire :" @@ -1621,12 +1643,12 @@ msgstr "Inscrit depuis {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Inscrit à {{site_name}} en {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Juste une dernière chose " -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Conservez votre code d'accès en lieu sûr. Vous en aurez besoin pour confirmer votre compte lorsque vous voudrez changer votre mot de passe. Vous pouvez l'ajouter dans un gestionnaire de mot de passe ou l'imprimer et le conserver dans un lieu sûr." - msgid "Keep your request up to date" msgstr "Gardez votre demande à jour" @@ -1669,6 +1691,9 @@ msgstr "Quitter le projet" msgid "Let us know" msgstr "Faites-le-nous savoir" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Faites nous savoir si nous pouvons vous aider à le contester" @@ -1690,9 +1715,6 @@ msgstr "Se connecter à l'interface d'administration" msgid "Long overdue" msgstr "Très en retard" -msgid "Long overdue." -msgstr "Très en retard." - msgid "Made between" msgstr "Fait entre" @@ -1789,9 +1811,6 @@ msgstr "Requiert l'attention de l'administrateur" msgid "Needs status update" msgstr "Nécessite une mise à jour de son statut" -msgid "New Citation" -msgstr "Nouvelle citation" - msgid "New Freedom of Information requests" msgstr "Nouvelles demandes d'accès à l'information " @@ -1825,9 +1844,6 @@ msgstr "Nouvelles mises à jour pour la demande '{{request_title}}'" msgid "Newest results first" msgstr "Les résultats les plus récents en premier" -msgid "News story" -msgstr "Article de presse" - msgid "Next" msgstr "Suivant" @@ -1909,6 +1925,9 @@ msgstr "Nombre de cas de demandes cachées au fil du temps" msgid "Number of requests" msgstr "Nombre de requêtes" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OU effacez la photo existante" @@ -1972,9 +1991,6 @@ msgstr "Succès partiel" msgid "Partially successful" msgstr "Partiellement aboutie" -msgid "Partially successful." -msgstr "Partiellement aboutie" - msgid "Password is not correct" msgstr "Le mot de passe n'est pas correct" @@ -2251,6 +2267,9 @@ msgstr "Imprimer votre code d'accès unique" msgid "Privacy and cookies" msgstr "Vie privée et cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Image de profil pour {{user_name}}" @@ -2260,6 +2279,9 @@ msgstr "Propriétaire du projet" msgid "Proposed Email:" msgstr "Adresse email suggérée:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Autorité publique" @@ -2341,9 +2363,6 @@ msgstr "Les résultats récemment décrits en premier " msgid "Refused" msgstr "Refusé" -msgid "Refused." -msgstr "Refusé." - msgid "Regenerate one time passcode" msgstr "Regénérer un code d'accès unique" @@ -2383,8 +2402,8 @@ msgstr "Signaler cette demande" msgid "Reported" msgstr "Signalé" -msgid "Reported for administrator attention." -msgstr "Signaler à l'attention de l'administrateur" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Signaler une demande aux administrateurs du site. Ils répondront dès que possible." @@ -2398,6 +2417,9 @@ msgstr "Demander un recours" msgid "Request an internal review from {{person_or_body}}" msgstr "Effectuer un recours auprès de {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "L'email de la requête ne peut pas être vide" @@ -2455,6 +2477,9 @@ msgstr "Les demandes seront envoyées aux autorités publiques suivantes :" msgid "Requires admin attention" msgstr "Requiert l'attention de l'administrateur" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Répondre par email " @@ -2530,6 +2555,12 @@ msgstr "Rechercher parmi {{number_of_requests}} demandes msgid "Search queries" msgstr "Requêtes de recherche" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Résultats de recherche" @@ -2545,6 +2576,12 @@ msgstr "Section" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Envoyer un message" @@ -2593,6 +2630,11 @@ msgstr "Nous avons envoyé un nouveau message de suivi à {{public_body_link}}, msgid "Sent a follow up to {{public_body_name}} again." msgstr "Nous avons envoyé un nouveau message de suivi à {{public_body_link}}." +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "Nous avons envoyé à nouveau la demande à {{public_body_link}}, en utilisant une nouvelle adresse de contact." @@ -2617,6 +2659,9 @@ msgstr "Définir votre photo de profil" msgid "Share on Facebook" msgstr "Partager sur Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Partager avec un lien privé" @@ -2832,9 +2877,6 @@ msgstr "Demande d'accès à l'information aboutie" msgid "Successful requests" msgstr "Demandes qui ont abouti" -msgid "Successful." -msgstr "Aboutie" - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggérez au demandeur les moyens de trouver le reste de l'information." @@ -2862,6 +2904,9 @@ msgstr "Tags :" msgid "Tasks" msgstr "tâches" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Merci de nous avoir aidé à maintenir le site en ordre !" @@ -2925,6 +2970,12 @@ msgstr "L'URL où vous avez trouvé l'article" 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 "L'adresse URL où vous avez trouvé l'email de l'autorité. Ce champ est optionnel, mais cela nous aide beaucoup si vous nous fournissez un lien vers une page spécifique du site internet de l'autorité publique où se trouve cette adresse email, cela nous permettra de facilement la vérifier. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Les comptes ont été laissés tels qu'ils étaient auparavant. " @@ -2985,12 +3036,6 @@ msgstr "Le dernier utilisateur a été créé hier" msgid "The last user was created over a day ago" msgstr "Le dernier utilisateur a été créé il y a plus d'un jour" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "La tâche d'indexation Xapian la plus ancienne est inactive depuis plus d'1h" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "La tâche d'indexation Xapian la plus ancienne n'a pas été inactive plus d'1h" - msgid "The page doesn't exist. Things you can try now:" msgstr "La page n'existe pas. Vous pouvez essayer de :" @@ -3172,8 +3217,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "A ce stade, il n'y a rien à afficher." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Il y a eu une erreur de livraison ou une erreur similaire, qui doit être examinée par l'équipe de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Il y a une erreur avec le reCAPTCHA. Merci d'essayer à nouveau." @@ -3558,12 +3603,6 @@ msgstr "Essayer d'ouvrir les logs dans une nouvelle fenêtre." msgid "Turn off email alerts" msgstr "Désactiver les alertes email" -msgid "Tweet it" -msgstr "Partager sur Tweeter" - -msgid "Tweet this request" -msgstr "Partagez cette demande sur Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "L'authentification à deux facteurs ajoute de la sécurité supplémentaire à votre compte en demandant plus d'informations pour modifier votre mot de passe." @@ -3630,8 +3669,8 @@ msgstr "Se désabonner" msgid "Unusual response" msgstr "Réponse inattendue" -msgid "Unusual response." -msgstr "Réponse inattendue." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Mise à jour de l'adresse email - {{public_body_name}}" @@ -3669,23 +3708,14 @@ msgstr "Offensante/inappropriée" msgid "Vexatious annotation" msgstr "Commentaire vexatoire" -msgid "View FOI email address" -msgstr "Voir l'adresse email de demande d'accès à l'information " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Voir l'adresse email de demande d'accès à l'information pour '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Voir l'adresse email de demande d'accès à l'information pour {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Voir les demandes d'accès à l'information introduites par {{user_name}} :" msgid "View authorities" msgstr "Voir les autorités" -msgid "View email" -msgstr "Voir l'email " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Voir les détails de l'historique des événements" @@ -3693,11 +3723,17 @@ msgstr "Voir les détails de l'historique des événements" msgid "View other requests to {{public_body}}" msgstr "Voir d'autres demandes adressées à {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Voir votre code d'accès unique d'authentification à deux facteurs" -msgid "Waiting clarification." -msgstr "En attente de clarification" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "En attente d'une réponse à mon recours par {{public_body_link}} à propos de leur gestion de cette demande." @@ -3729,9 +3765,6 @@ msgstr "Vous pouvez télécharger les logs du serveur mail pour ce message." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Nous n'autorisons pas les requêtes via {{site_name}} concernant des informations à caractère personnel. Nous avons donc caché votre requête aux autres utilisateurs." -msgid "We do not have a working request email address for this authority." -msgstr "Nous n'avons pas d'adresse email pour les demandes à cette autorité." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nous ne disposons pas d'adresse de demande de {{law_used_full}} pour {{public_body_name}}." @@ -3840,6 +3873,9 @@ msgstr "Que souhaitez-vous faire?" msgid "What's happened:" msgstr "Que s'est il passé ? " +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Une fois dessus, merci de mettre à jour le statut pour indiquer si la réponse contient les informations demandées." @@ -3864,8 +3900,8 @@ msgstr "Pourquoi considérez-vous cette demande comme inopportune ? " msgid "Withdrawn" msgstr "Supprimée" -msgid "Withdrawn by the requester." -msgstr "Supprimée par le demandeur." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3891,6 +3927,9 @@ msgstr "Rédiger votre demande" msgid "Yes" msgstr "Oui" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Vous avez déjà créé le même paquet de demandes le {{date}}. Vous pouvez visionner le paquet existant ou éditer les détails ci-dessous pour faire un nouveau paquet de demandes similaires." @@ -4528,9 +4567,6 @@ msgstr "Entrez votre terme de recherce ici" msgid "unknown" msgstr "inconnu" -msgid "unknown reason" -msgstr "raison inconnue" - msgid "unknown reason " msgstr "raison inconnue" @@ -4567,9 +4603,6 @@ msgstr "{{authority_name}} n'a pas les informations demandées. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} est en attente de vos clarifications." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} contributeur(s)" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} pièce jointe" @@ -4582,6 +4615,11 @@ msgstr[0] "{{count}} commentaire créé." msgstr[1] "{{count}} commentaires créés." msgstr[2] "{{count}} commentaires créés." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} personne suit" @@ -4739,8 +4777,8 @@ msgstr "{{reason}}. Malheureusement, nous ne connaissons pas l'adresse email de msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} correspondant à '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4754,9 +4792,6 @@ msgstr "{{site_name}} a identifié que {{authority_name}} peut avoir refusé tou msgid "{{site_name}} login link" msgstr "{{site_name}} lien de login" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envoie les nouvelles demandes à {{request_email}} pour cette autorité publique." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Les utilisateurs de {{site_name}} ont envoyé {{number_of_requests}} demandes, dont :" diff --git a/locale/ga_IE/app.po b/locale/ga_IE/app.po index 453ac067b6..4b11e01629 100644 --- a/locale/ga_IE/app.po +++ b/locale/ga_IE/app.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Niall Ó Tuathail , 2015\n" "Language-Team: Irish (Ireland) (http://app.transifex.com/mysociety/alaveteli/l" @@ -170,10 +170,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -253,7 +253,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -289,6 +289,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -334,7 +337,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -379,9 +382,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -412,6 +412,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -580,22 +586,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -634,10 +634,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -646,7 +643,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -667,6 +664,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -739,6 +742,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -805,10 +811,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -877,6 +883,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dáta:" @@ -904,15 +913,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -949,10 +958,7 @@ msgstr "Críochnaithe" msgid "Done >>" msgstr "Críochnaithe >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -961,6 +967,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -973,9 +982,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1036,6 +1063,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1048,7 +1078,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1090,6 +1120,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1138,9 +1171,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1153,7 +1183,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1175,8 +1205,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1185,6 +1215,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1197,9 +1232,6 @@ msgstr "Acht um Shaoráil Faisnéise" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1248,13 +1280,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1278,6 +1307,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1368,9 +1400,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1428,9 +1457,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1464,9 +1490,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1479,9 +1502,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1506,6 +1526,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1527,10 +1550,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1575,6 +1598,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1596,9 +1622,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1695,9 +1718,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1731,9 +1751,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1815,6 +1832,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1878,9 +1898,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2150,6 +2167,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2159,6 +2179,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2240,9 +2263,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2282,7 +2302,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2297,6 +2317,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2354,6 +2377,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2429,6 +2455,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2444,6 +2476,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2492,6 +2530,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2515,6 +2558,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2728,9 +2774,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2758,6 +2801,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2821,6 +2867,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2881,12 +2933,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3064,7 +3110,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3446,12 +3492,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3518,7 +3558,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3557,22 +3597,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3581,10 +3612,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3617,9 +3654,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3723,6 +3757,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3747,7 +3784,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3774,6 +3811,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4402,9 +4442,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4441,9 +4478,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4454,6 +4488,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4598,7 +4637,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4612,9 +4651,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/gl/app.po b/locale/gl/app.po index 3d0bc8853d..1cf3ada90b 100644 --- a/locale/gl/app.po +++ b/locale/gl/app.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: louisecrow , 2014\n" "Language-Team: Galician (http://app.transifex.com/mysociety/alaveteli/language" @@ -182,10 +182,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Ver todas o pídanos que añadamos una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -276,8 +276,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: para filtrar en función del tipo de objeto, consulta la tabla de tipos de objetos a continuación." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consejos sobre cómo conseguir una respuesta que satisfaga al peticionario. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda la información ha sido enviada" @@ -321,6 +321,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "No se ha recibido ninguna respuesta\n" @@ -373,7 +376,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -420,9 +423,6 @@ msgstr "Sobre mí:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -455,6 +455,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -631,24 +637,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Esperando clasificación." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Esperando revisión interna." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Esperando respuesta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -685,11 +685,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Ver y buscar solicitudes" - -msgid "Browse and search requests (page {{count}})" -msgstr "Ver y buscar solicitudes (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -697,8 +694,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver solicitudes" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -718,6 +715,12 @@ msgstr "Por ley, {{public_body_link}} debería haber respondido prontomás detalles al mensaje anterior,\n" " explicando por qué no estás satisfecho con su respuesta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edite el texto sobre tí" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editar esta solicitud" @@ -1096,6 +1123,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1108,8 +1138,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "Dirección de correo para {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1150,6 +1180,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1198,9 +1231,6 @@ msgstr "Seguimiento" msgid "Follow up message sent by requester" msgstr "Respuesta enviada por el creador de la solicitud" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1213,8 +1243,8 @@ msgstr "Se han bloqueado nuevas respuestas a esta solicitud para prevenir spam. msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Síguenos en Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1235,8 +1265,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1245,6 +1275,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1257,9 +1292,6 @@ msgstr "Ley de Acceso a la Información" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "La Ley de Acceso a la Información no es aplicable a este organismo, por lo que no puedes enviarle una solicitud de información." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1311,13 +1343,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1341,6 +1370,9 @@ msgstr "" msgid "Help" msgstr "Ayuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1442,9 +1474,6 @@ msgstr "He recibido un mensaje de error" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Si la dirección es incorrecta, o conoce una más actualizada, por favor contáctenos." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1510,11 +1539,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Si no lo has hecho ya, por favor escribe un mensaje a continuación informando al organismo público de que has retirado su solicitud. De lo contrario no sabrán que lo has hecho." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Si conoces la dirección a utilizar, entonces por favor envíanosla.\n" -" Puede que la encuentres en su página web, o llamándoles por teléfono y preguntando." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1554,9 +1578,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" " Incluye enlaces relevantes, como a una página informativa, tu blog o\n" @@ -1572,9 +1593,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Información no disponible." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Información sobre emisiones (por ejemplo ruido, energía,\n" @@ -1601,6 +1619,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "¿Es {{email_address}} la dirección incorrecta para solicitudes {{law_used_full}} a {{public_body_name}}? Si es así, por favor contáctenos usando el siguiente formulario:" @@ -1625,10 +1646,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1673,6 +1694,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1697,9 +1721,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Muy retrasada." - msgid "Made between" msgstr "Realizadas entre" @@ -1796,9 +1817,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuevas solicitudes de acceso a información" @@ -1832,9 +1850,6 @@ msgstr "Actualizaciones para la solicitud '{{request_title}}'" msgid "Newest results first" msgstr "Resultados recientes primero" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Siguiente" @@ -1916,6 +1931,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "O borre la foto actual" @@ -1979,9 +1997,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Éxito parcial." - msgid "Password is not correct" msgstr "La contraseña no es correcta" @@ -2262,6 +2277,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2271,6 +2289,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2352,9 +2373,6 @@ msgstr "Resultados descritos recientemente primero" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rechazada." - msgid "Regenerate one time passcode" msgstr "" @@ -2394,7 +2412,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2409,6 +2427,9 @@ msgstr "Pida una revisión interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Pedir una revisión interna a {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2466,6 +2487,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Contestar por correo" @@ -2544,6 +2568,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados de la búsqueda" @@ -2559,6 +2589,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Mandar una respuesta" @@ -2607,6 +2643,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2630,6 +2671,9 @@ msgstr "Cambiar foto de perfil" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2849,9 +2893,6 @@ msgstr "Solicitudes de acceso a la información con éxito" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Exitosa." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir al creador de la solicitud cómo puede encontrar el resto de la información." @@ -2879,6 +2920,9 @@ msgstr "Etiquetas:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "¡Gracias por ayudarnos a mantener la web en orden!" @@ -2950,6 +2994,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Las cuentas se han dejado tal y como estaban anteriormente." @@ -3012,12 +3062,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La página no existe. Puede intentar:" @@ -3201,8 +3245,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Se ha producido un error en la entrega o similar, y necesita ser arreglado por el equipo de {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3599,12 +3643,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Tuitear esta solicitud" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3671,8 +3709,8 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Respuesta no habitual." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3710,23 +3748,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver dirección de correo" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Ver dirección de correo para '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver solicitudes de acceso a información hechas por {{user_name}}:" msgid "View authorities" msgstr "Ver organismos públicos" -msgid "View email" -msgstr "Ver correo" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3734,11 +3763,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando aclaración." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Esperando una revisión interna por parte de {{public_body_link}} de cómo han respondido a esta solicitud." @@ -3770,9 +3805,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "No tenemos una dirección de correo válida para este organismo." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "No tenemos una dirección de correo válida para este {{public_body_name}}." @@ -3890,6 +3922,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Por favor actualice el estado para indicar si la respuesta \n" @@ -3918,8 +3953,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Retirada por el autor." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3945,6 +3980,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4593,9 +4631,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo desconocido" - msgid "unknown reason " msgstr "motivo desconocido " @@ -4632,9 +4667,6 @@ msgstr "{{authority_name}} no tenía la información solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está esperando su aclaración." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4645,6 +4677,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4795,8 +4832,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} encontrados por '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog y tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4809,9 +4846,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envía nuevas solicitudes a {{request_email}} para este organismo." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/he_IL/app.po b/locale/he_IL/app.po index cb791a20e0..b0ee719676 100644 --- a/locale/he_IL/app.po +++ b/locale/he_IL/app.po @@ -54,7 +54,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Z.D , 2013\n" "Language-Team: Hebrew (Israel) (http://app.transifex.com/mysociety/alaveteli/l" @@ -197,10 +197,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "צפו בכולם או בקשו מאיתנו להוסיף אחת." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -288,8 +288,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "סוגים: לבחירת סוג החיפוש, ראו טבלת סוגים למטה." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "עצה כיצד לקבל תשובה שתספק את המבקש." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "כל המידע נשלח" @@ -332,6 +332,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "שום תגובה לא התקבלה (אולי יש רק אישור)" @@ -384,8 +387,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "מעקב ל- {{request_title}} נשלחה ל- {{public_body_name}} על-ידי {{info_request_user}} בתאריך {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "תגובה לבקשה ל- {{request_title}} נשלחה על-ידי {{public_body_name}} ל- {{info_request_user}} בתאריך {{date}}. סטטוס הבקשה הוא: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -431,9 +434,6 @@ msgstr "אודותיך:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -466,6 +466,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "וסף רשות - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "הוסיפו את הרשות:" @@ -644,24 +650,18 @@ msgstr "ממתין לבירור" msgid "Awaiting classification" msgstr "ממתין לסיווג" -msgid "Awaiting classification." -msgstr "ממתין לסיווג." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "ממתין לביקורת פנימית." - msgid "Awaiting response" msgstr "ממתין לתשובה" -msgid "Awaiting response." -msgstr "ממתין לתשובה." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -698,11 +698,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "צפו וחפשו בקשות מידע" - -msgid "Browse and search requests (page {{count}})" -msgstr "צפו וחפשו בקשות מידע (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -710,8 +707,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "בקשות מידע" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -731,6 +728,12 @@ msgstr "על-פי החוק, {{public_body_link}} היה/היתה צריך/צרי msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "לא מצאתם את מה שחיפשתם?" @@ -803,6 +806,9 @@ msgstr "הבהירו את בקשת המידע - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "קטלג בקשה מאת {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -871,10 +877,10 @@ msgstr "אשרו את כתובת הדואר האלקטרוני שלכם" msgid "Confirm your new email address on {{site_name}}" msgstr "אשרו את כתובת הדואר האלקטרוני החדשה שלכם באתר {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -945,6 +951,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "תאריך:" @@ -975,15 +984,15 @@ msgstr "מעוכב" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "עיכוב בתגובה לבקשה {{request_title}}" -msgid "Delayed." -msgstr "מעוכב." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "שגיאה בשליחה" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "פרטי הבקשה “{{request_title}}”" @@ -1020,10 +1029,7 @@ msgstr "הסתיים" msgid "Done >>" msgstr "בוצע >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1032,6 +1038,9 @@ msgstr "להוריד קובץ zip עם כל ההתכתבויות" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "הורידו את המסמך המצורף המקורי" @@ -1044,9 +1053,27 @@ msgstr "דוח מידע תקנות סביבתיות" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "ערכו והוסיפו פרטים נוספים להודעה למעלה, /n המסבירים מדוע אתם לא מרוצים מהתגובה שלהם" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "ערכו את הטקסט אודותיכם" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "ערכו את הבקשה" @@ -1109,6 +1136,9 @@ msgstr "כל מה שתזינו בדף הזה, כולל השם שלכם{{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "מעקב נשלח ל- {{public_body_name}} ע״י {{info_request_user}} בתאריך {{date}}." @@ -1226,8 +1256,8 @@ msgstr "הודעות תגובה והודעות חדשות לבקשה זו נחס msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "עקבו אחרינו בטוויטר" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "עוקבים" @@ -1248,8 +1278,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1258,6 +1288,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1270,9 +1305,6 @@ msgstr "חוק חופש המידע " msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "החלטת הממשלה אינה חלה על הרשות הזאת, אז אינכם יכולים לבקש ממנה מידע. " -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "חוק חופש המידע אינו בתוקף לגבי {{public_body_name}}." @@ -1321,13 +1353,10 @@ msgstr "יש לכם חשבון?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1351,6 +1380,9 @@ msgstr "" msgid "Help" msgstr "עזרה" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "עזרו לנו לסווג בקשות שלא עודכנו" @@ -1449,9 +1481,6 @@ msgstr "קיבלנו הודעת שגיאה" msgid "I've received an error message" msgstr "קיבלנו הודעת שגיאה" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "אם הכתובת שגוייה, או יש לכם כתובת אחרת, נא צרו איתנו קשר." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "אם השגיאה נגרמה כתוצאה מכתובת דוא\"ל שגויה, ואתם יכולים למצוא כתובת עדכנית של הגוף הציבורי, אנא ספרו לנו בעזרת הטופס למטה." @@ -1511,11 +1540,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "אם טרם עשיתם זאת, נא רשמו למטה פניה לרשות המתאימה ובה הסבר על ביטול הבקשה שלכם, אחרת לא ידעו שהבקשה בוטלה." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"אם אתם יודעים את הכתובת, נא שלחו לנו.\n" -" הכתובת נמצאת באתר האינטרנט שלהם, או שתבררו אותה בשיחת טלפון." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "תגובה על ההודעה הזו תגיע ישירות אל {{user_name}}, אשר ידע בעקבות זאת את כתובתכם. השיבו רק אם זה בסדר." @@ -1552,9 +1576,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "הוסיפו קישורים מתאימים כמו למשל לדף הקמפיין, לבלוג שלכם או לטוויטר. יהיה ניתן להקליק עליהם n\\. למשל" @@ -1567,9 +1588,6 @@ msgstr "דרישות נפרדות" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "המידע לא נמסר." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "מידע על אתרי והשלכת פסולת (כגון רעש, אנרגיה,\n" @@ -1596,6 +1614,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "האם הכתובת {{email_address}} היא הנכונה לבקשת {{law_used_full}} אל {{public_body_name}}? אם לא, נא צרו איתנו קשר באמצעות טופס זה:" @@ -1620,12 +1641,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "רק עוד דבר אחד" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "שמרו על הבקשה שלכם עדכנית" @@ -1668,6 +1689,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1691,9 +1715,6 @@ msgstr "התחבר לממשק הניהול" msgid "Long overdue" msgstr "מתעכבת מאוד" -msgid "Long overdue." -msgstr "הבקשה מתעכבת מאוד." - msgid "Made between" msgstr "הוגשה בין" @@ -1790,9 +1811,6 @@ msgstr "נדרש טיפול מנהל" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "בקשות חדשות למידע" @@ -1826,9 +1844,6 @@ msgstr "עדכונים חדשים לבקשה '{{request_title}}'" msgid "Newest results first" msgstr "תוצאות חדשות יותר ראשונות" -msgid "News story" -msgstr "" - msgid "Next" msgstr "הבא" @@ -1910,6 +1925,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "-או- הסירו את התמונה הקיימת" @@ -1973,9 +1991,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "הבקשה התקבלה בחלקה." - msgid "Password is not correct" msgstr "הסיסמה אינה נכונה" @@ -2256,6 +2271,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2265,6 +2283,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2346,9 +2367,6 @@ msgstr "תוצאות אחרונות מופיעות ראשונות" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "סורב" - msgid "Regenerate one time passcode" msgstr "" @@ -2388,8 +2406,8 @@ msgstr "דווחו על בקשה זו" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "דווח לטיפול מנהל." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2403,6 +2421,9 @@ msgstr "לבקש בדיקה פנימית" msgid "Request an internal review from {{person_or_body}}" msgstr "בקשה לבדיקה פנימית מ- {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2460,6 +2481,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "הגיבו בדוא\"ל" @@ -2537,6 +2561,12 @@ msgstr "" msgid "Search queries" msgstr "שאילתות חיפוש" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "תוצאות החיפוש " @@ -2552,6 +2582,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "לשלוח הודעת המשך" @@ -2600,6 +2636,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2623,6 +2664,9 @@ msgstr "הגדירו תמונת פרופיל" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2842,9 +2886,6 @@ msgstr "בקשות מידע שנענו" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "עבר בהצלחה." - msgid "Suggest how the requester can find the rest of the information." msgstr "הציעו כיצד מגיש הבקשה יכול למצוא את שאר המידע." @@ -2872,6 +2913,9 @@ msgstr "תגיות:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "תודה שעזרתם לנו לשמור על אתר מאורגן" @@ -2941,6 +2985,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "החשבונות נשארו ללא שינוי." @@ -3003,12 +3053,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "הדף לא קיים. דברים שתוכלו לנסות כעת:" @@ -3191,8 +3235,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "היתה תקלה במסירה שדורשת טיפול על-ידי אנשי {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3586,12 +3630,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "כיבוי התראות בדוא\"ל" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "צייצו את הבקשה" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3660,8 +3698,8 @@ msgstr "בטל הרשמה" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "תגובה מוזרה" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3699,23 +3737,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "צפו בדוא\"ל של בקשות מידע" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "צפו בדוא\"ל של בקשות מידע ל- '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "צפו בדוא\"ל של בקשות מידע ל- '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "צפו בבקשות מידע שהוגשו על-ידי {{user_name}}:" msgid "View authorities" msgstr "רשויות" -msgid "View email" -msgstr "צפו בדואר האלקטרוני" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3723,11 +3752,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "ממתין להבהרות" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "ממתין לבדיקה פנימית על-ידי {{public_body_link}} של אופן הטיפול שלהם בבקשה.." @@ -3759,9 +3794,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "אין ברשותנו כתובת דוא\"ל פעילה להגשת בקשות מידע לרשות זו." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "אין ברשותנו {{law_used_full}} כתובת פעילה ל- {{public_body_name}}." @@ -3873,6 +3905,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "כאשר הנכם מגיעים לעמוד, אנא עדכנו את הסטטוס כדי לאשר האם התגובה \n" @@ -3901,8 +3936,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "בוטל על-ידי מגיש הבקשה" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3928,6 +3963,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4594,9 +4632,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "סיבה לא ידוע" - msgid "unknown reason " msgstr "סיבה לא ידוע" @@ -4633,9 +4668,6 @@ msgstr "{{authority_name}} אין את המידע המבוקש. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} ממתין להבהרות שלכם." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4646,6 +4678,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4795,8 +4832,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} תואם '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} בלוג וציוצים" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4809,9 +4846,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} שולח בקשות חדשות ל- {{request_email}}עבור רשות זו." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/hr/app.po b/locale/hr/app.po index 18106a756a..ce0cf11e78 100644 --- a/locale/hr/app.po +++ b/locale/hr/app.po @@ -64,7 +64,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Žana Počuča , 2015,2021\n" "Language-Team: Croatian (http://app.transifex.com/mysociety/alaveteli/language" @@ -206,11 +206,11 @@ msgstr "60 minuta+" msgid "Browse all or ask us to add one." msgstr "Pretražite sve ili zamolite nas da dodamo." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Podnesite novi zahtjev za informacije o zaštiti okoliša za {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Podnesite novi zahtjev za pristup informacijama za {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Prijavite se da biste dobili obavijesti o predmetima koje pratite ili ponovno omogućili primanje obavijesti elektroničkom poštom." @@ -290,8 +290,8 @@ msgstr "tag:charity kako biste našli sve humanita msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr " variety: kako biste odabrali vrstu stvari koje tražite, pogledajte tablicu s izborima niže." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Savjet o tome kako dobiti odgovor koji će zadovoljiti podnositelja zahtjeva." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Sve su informacije poslane" @@ -326,6 +326,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Novinar, naučnik ili iskusan korisnik? {{pro_site_link}} je sveobuhvatni PPI alat koji uključuje sve što vam je potrebno da biste imali kontrolu nad složenim PPI upitima." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Nema odgovora (možda su samo potvrdili primtak)" @@ -371,8 +374,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Dodatna poruka na '{{request_title}}' zahtjev poslan je {{public_body_name}} od strane {{info_request_user}} dana {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "{{public_body_name}} je odgovorio na zahtjev od {{info_request_user}} s naslovom {{request_title}} dana {{date}}. Status zahtjeva je: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr " Sažetak odgovora ako ste ga primili poštom. " @@ -416,9 +419,6 @@ msgstr "O Vama:" msgid "About {{count}} FOI requests found" msgstr "Pronađeno oko {{count}} zahtjeva za pristup informacijama" -msgid "Academic paper" -msgstr "Znanstveni članak" - msgid "Account closed at user request" msgstr "Račun zatvoren na zahtjev korisnika" @@ -449,6 +449,12 @@ msgstr "Dodajte najdraže citate ili sažetak odgovora u obliku msgid "Add authority - {{public_body_name}}" msgstr "Dodajte tijelo javne vlasti - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Dodajte tijelo javne vlasti:" @@ -617,24 +623,18 @@ msgstr "Čeka objašnjenje" msgid "Awaiting classification" msgstr "Čeka klasifikaciju" -msgid "Awaiting classification." -msgstr "Čeka klasifikaciju" - msgid "Awaiting internal review" msgstr "Čeka odgovor na požurnicu" -msgid "Awaiting internal review." -msgstr "Čeka odgovor na požurnicu" - msgid "Awaiting response" msgstr "Čeka odgovor" -msgid "Awaiting response." -msgstr "Čeka odgovor" - msgid "Back to content" msgstr "Nazad na sadržaj" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -671,11 +671,8 @@ msgstr "Pretražite sva tijela javne vlasti →" msgid "Browse all requests →" msgstr "Pregledajte sve zahtjeve →" -msgid "Browse and search requests" -msgstr "Pregledajte i pretražite zahtjeve" - -msgid "Browse and search requests (page {{count}})" -msgstr "Pregledajte i pretražite zahtjeve (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -683,8 +680,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Pregledajte zahtjeve" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Po zakonu, moraju odgovoriti." @@ -704,6 +701,12 @@ msgstr "Po zakonu, {{public_body_link}} je trebao odgovoriti" msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Ne možete naći onaj koji želite?" @@ -776,6 +779,9 @@ msgstr "Pojasnite svoj zahtjev za pristup informacijama - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Klasificirajte odgovor na zahtjev za pristup informacijama od {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Klasificirajte odgovore" @@ -842,11 +848,11 @@ msgstr "Potvrdite Vašu adresu e-pošte" msgid "Confirm your new email address on {{site_name}}" msgstr "Potvrdite Vašu novu adresu e-pošte na {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Označeno od administratora da nije PPI zahtjev." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Označeno od administratora kao zlouporaba prava na pristup informacijama." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Kontaktirajte nas" @@ -914,6 +920,9 @@ msgstr "Trenutno čeka odgovor od {{public_body_link}}, trebaju msgid "Data interpretation" msgstr "Tumačenje podataka" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -941,15 +950,15 @@ msgstr "Odgođeno" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Odgovor na Vaš PPI zahtjev kasni - {{request_title}}" -msgid "Delayed." -msgstr "Odgovor kasni." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Status isporuke za odlaznu poruku #{{id}}" msgid "Delivery error" msgstr "Greška u isporuci" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detalji zahtjeva “{{request_title}}”" @@ -986,10 +995,7 @@ msgstr "Završeno" msgid "Done >>" msgstr "Završeno >>" -msgid "Download Data" -msgstr "Preuzmi podatke" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -998,6 +1004,9 @@ msgstr "Preuzmite svu korespondenciju u zip datoteci" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Preuzmite originalni prilog" @@ -1010,9 +1019,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Uredite i dodajte više detalja u poruku iznad, objašnjavajući zašto niste zadovoljni njihovim odgovorom." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Uredite tekst o Vama" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Uredite vaš zahtjev" @@ -1073,6 +1100,9 @@ msgstr "Sve što unesete na ovu stranicu, uključujući vaše ime{{authority_email}}." -msgstr "Dodatne poruke za postojeće zahtjeve poslane su {{authority_email}}" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Dodatna poruka poslana je {{public_body_name}} od strane {{info_request_user}} dana {{date}}." @@ -1190,8 +1220,8 @@ msgstr "Dodatne poruke i novi odgovori na ovaj zahtjev zaustavljeni su kako bi s msgid "Follow us on Facebook" msgstr "Pratite nas na Facebooku" -msgid "Follow us on twitter" -msgstr "Pratite nas na Twitteru" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Pratite" @@ -1214,11 +1244,10 @@ msgstr[0] "Pronađeno {{count}} tijela javne vlasti s početnim slovom ‘{{firs msgstr[1] "Pronađeno {{count}} tijela javne vlasti s početnim slovom ‘{{first_letter}}’" msgstr[2] "Pronađeno {{count}} tijela javne vlasti s početnim slovom ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Pronađeno {{count}} tijela javne vlasti u kategoriji ‘{{category_name}}’" -msgstr[1] "Pronađeno {{count}} tijela javne vlasti u kategoriji ‘{{category_name}}’" -msgstr[2] "Pronađeno {{count}} tijela javne vlasti u kategoriji ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1226,6 +1255,11 @@ msgstr[0] "Pronađeno {{count}} tijela javne vlasti s oznakom ‘{{tag_name}}’ msgstr[1] "Pronađeno {{count}} tijela javne vlasti s oznakom ‘{{tag_name}}’" msgstr[2] "Pronađeno {{count}} tijela javne vlasti s oznakom ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Prije četiri tjedna uputili ste zahtjev za pravo na pristup informacijama {{public_body_name}} putem {{site_name}}" @@ -1238,9 +1272,6 @@ msgstr "Zakon o pravu na pristup informacijama" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Zakon o pravu na pristup informacijama ne primjenjuje se na ovo tijelo, stoga mu ne možete uputiti zahtjev." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Zakon o slobodi informiranja više se ne primjenjuje na ovo tijelo javne vlasti. Dodatne poruke za postojeći zahtjev poslane su za {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Zakon o pravu na pristup informacijama više se ne primjenjuje na {{public_body_name}}." @@ -1289,14 +1320,11 @@ msgstr "Imate li račun?" msgid "Handled by postal mail" msgstr "Riješen poštom" -msgid "Handled by postal mail." -msgstr "Obrađuje se poštanskim putem" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Je li ovaj zahtjev spomenut u novinskom članku ili akademskom radu?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Je li ovaj zahtjev spomenut u novinskom članku ili akademskom radu? Javite nam:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Dobrodošli! Imamo važnu poruku za posjetitelje izvan {{country_name}}" @@ -1319,6 +1347,9 @@ msgstr "Hello! You can make Freedom of Information requests within {{country_nam msgid "Help" msgstr "Pomoć" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Pomozite nam klasificirati zahtjeve koji još nisu ažurirani" @@ -1409,9 +1440,6 @@ msgstr "Stigla je poruka o grešci (npr. mailer daemon, msgid "I've received an error message" msgstr "Zaprimljena je poruka o grešci u isporuci" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ako je adresa pogrešna, ili znate bolju adresu, molimo Vas da nas kontaktirate." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ukoliko se greška pojavila pri dostavi, a možete pronaći važeću adresu e-pošte službenika za informiranje tog tijela javne vlasti, molimo upišite to u obrazac ispod. " @@ -1469,9 +1497,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ako još niste, molimo ispod napišite poruku u kojoj napominjete tijelu javne vlasti da ste povukli svoj zahtjev. U protivnom se neće znati da je zahtjev povučen." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Ako znate koju adresu trebamo koristiti, molimo vas pošaljite nam je. Adresu možete pronaći na njihovoj internetskoj stranici ili telefonskim pozivom." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Ako odgovorite na ovu poruku, otići će izravno na {{user_name}} te će tako saznati vašu e-mail adresu. Odgovorite samo ako ste s tim suglasni." @@ -1505,9 +1530,6 @@ msgstr "Poboljšajte sigurnost računa" msgid "In progress" msgstr "U tijeku" -msgid "In the News" -msgstr "U vijestima" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Uključite relevantne poveznice, poput stranice kampanje, vašeg bloga ili twittera. Moći će se kliknuti na njih, npr." @@ -1520,9 +1542,6 @@ msgstr "Pojedinačni zahtjevi" msgid "Information not held" msgstr "Ne posjedujemo informacije" -msgid "Information not held." -msgstr "Ne posjeduju informacije" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informacije o emisijama i ispuštanjima u okoliš (npr. buka, energija, zračenje, otpadni materijali)" @@ -1547,6 +1566,9 @@ msgstr "Neispravna jednokratna lozinka" msgid "Invalid token" msgstr "Neispravan token" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Ukoliko je {{email_address}} pogrešna adresa za {{public_body_name}} zahtjeve za {{law_used_full}} dojavite nam putem ove poveznice:" @@ -1568,12 +1590,12 @@ msgstr "Pridržen/a {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Pridružen/a {{site_name}} u {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Još nešto" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Čuvajte ovu zaporku. Trebat će vam za potvrdu računa prilikom promjene lozinke. Možete ga dodati upravitelju lozinki ili ispisati i pohraniti na sigurno." - msgid "Keep your request up to date" msgstr "Održavajte svoj zahtjev ažurnim" @@ -1616,6 +1638,9 @@ msgstr "Napustite projekt" msgid "Let us know" msgstr "Obavijestite nas" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1637,9 +1662,6 @@ msgstr "Prijavite se u administratorsko sučelje" msgid "Long overdue" msgstr "Jako kasni" -msgid "Long overdue." -msgstr "Jako kasni" - msgid "Made between" msgstr "Napravljen između" @@ -1736,9 +1758,6 @@ msgstr "Potrebna aktivnost administratora" msgid "Needs status update" msgstr "Potrebno ažuriranje statusa" -msgid "New Citation" -msgstr "Novi citat" - msgid "New Freedom of Information requests" msgstr "Novi zahtjevi za pristup informacijama" @@ -1772,9 +1791,6 @@ msgstr "Nova ažuriranja za zahtjev '{{request_title}}'" msgid "Newest results first" msgstr "Najnoviji rezultati " -msgid "News story" -msgstr "Novosti" - msgid "Next" msgstr "Sljedeći" @@ -1856,6 +1872,9 @@ msgstr "Broj zahtjeva sakriva događanja tijekom vremena" msgid "Number of requests" msgstr "Broj zahtjeva" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ILI ukloni postojeću sliku" @@ -1919,9 +1938,6 @@ msgstr "Djelomično uspješno" msgid "Partially successful" msgstr "Djelomično uspješno" -msgid "Partially successful." -msgstr "Djelomično uspješno." - msgid "Password is not correct" msgstr "Lozinka nije ispravna" @@ -2192,6 +2208,9 @@ msgstr "Ispišite svoju jednokratnu zaporku" msgid "Privacy and cookies" msgstr "Privatnost i kolačići" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profilna slika za {{user_name}}" @@ -2201,6 +2220,9 @@ msgstr "Vlasnik projekta" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Javna tijela" @@ -2282,9 +2304,6 @@ msgstr "Nedavno opisani rezultati prvi" msgid "Refused" msgstr "Odbijen" -msgid "Refused." -msgstr "Odbačeno / odbijeno" - msgid "Regenerate one time passcode" msgstr "Ponovno generiraj jednokratnu zaporku" @@ -2324,8 +2343,8 @@ msgstr "Prijavite ovaj zahtjev" msgid "Reported" msgstr "Prijavljeno" -msgid "Reported for administrator attention." -msgstr "Prijavljeno administratoru." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Prijavom zahtjeva obavještavaju se administratori. Odgovorit će što je prije moguće. " @@ -2339,6 +2358,9 @@ msgstr "Tražiti požurnicu" msgid "Request an internal review from {{person_or_body}}" msgstr "Pošaljite {{person_or_body}} zahtjev za požurnicom" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "E-pošta zahtjeva ne može biti prazna" @@ -2396,6 +2418,9 @@ msgstr "Zahtjevi će biti poslani sljedećim tijelima:" msgid "Requires admin attention" msgstr "Potrebna provjera administratora" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-poštom" @@ -2471,6 +2496,12 @@ msgstr "Pretražite
{{number_of_requests}} zahtjeva msgid "Search queries" msgstr "Tražite upite" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultati pretrage" @@ -2486,6 +2517,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Pošaljite dodatnu poruku" @@ -2534,6 +2571,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2558,6 +2600,9 @@ msgstr "Podesite sliku na Vašem profilu" msgid "Share on Facebook" msgstr "Podijeli na Facebooku" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2771,9 +2816,6 @@ msgstr "Uspješni zahtjevi za pristup informacijama" msgid "Successful requests" msgstr "Uspješni zahtjevi" -msgid "Successful." -msgstr "Uspješan." - msgid "Suggest how the requester can find the rest of the information." msgstr "Predložite kako podnositelj zahtjeva može pronaći ostatak informacije." @@ -2801,6 +2843,9 @@ msgstr "Oznake:" msgid "Tasks" msgstr "Zadaci" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Hvala što nam pomažete da održavamo ovu mrežnu stranicu urednom!" @@ -2864,6 +2909,12 @@ msgstr "Poveznica URL-a na kojem ste pronašli članak." 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 na kojem ste pronašli adresu e-pošte. Polje nije obavezno, ali pomoglo bi nam ukoliko nam možete dati poveznicu na određenu stranicu tijela javne vlasti na kojoj je ova adresa, jer tako biste nam jako olakšali provjeru. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički računi nisu mijenjani" @@ -2924,12 +2975,6 @@ msgstr "Posljednji korisnik stvoren je danas" msgid "The last user was created over a day ago" msgstr "Posljednji korisnik stvoren je prije više od jednog dana" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Stranica ne postoji. Možete probati:" @@ -3107,8 +3152,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Još nema ničega za prikazati." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Došlo je do greške u isporuci ili nečega sličnog što treba popravak od strane {{site_name}} tima." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Došlo je do pogreške s reCAPTCHA. Molimo pokušajte ponovno." @@ -3491,12 +3536,6 @@ msgstr "Pokušajte otvoriti zapisnike u novom prozoru." msgid "Turn off email alerts" msgstr "Isključite e-mail automatske alarme" -msgid "Tweet it" -msgstr "Podijelite na Twitteru" - -msgid "Tweet this request" -msgstr "Tweetaj ovaj zahtjev" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Dvofaktorska provjera autentičnosti pruža sigurnost vašem računu zahtijevajući dodatne informacije za resetiranje zaporke." @@ -3563,8 +3602,8 @@ msgstr "Odjavite pretplatu" msgid "Unusual response" msgstr "Neobičan odgovor" -msgid "Unusual response." -msgstr "Neobičan odgovor." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Ažurirajte adresu e-pošte - {{public_body_name}}" @@ -3602,23 +3641,14 @@ msgstr "Zloupraba prava na pristup informacijama" msgid "Vexatious annotation" msgstr "Uznemirujuća bilješka" -msgid "View FOI email address" -msgstr "E-mail adresa službenika za informiranje" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Pogledajte e-poštu za pristup informacijama prema '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Pogledajte adresu e-pošte za pristup informacijama prema {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Pregledajte zahtjeve za pristup informacijama napravljene od strane {{user_name}}:" msgid "View authorities" msgstr "Tijela javne vlasti" -msgid "View email" -msgstr "Pogledati e-poštu" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Pogledajte prikaz prošlih događanja" @@ -3626,11 +3656,17 @@ msgstr "Pogledajte prikaz prošlih događanja" msgid "View other requests to {{public_body}}" msgstr "Pogledajte druge zahtjeve za {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Pogledajte svoju jednokratnu zaporku za dvofaktorsku provjeru autentičnosti" -msgid "Waiting clarification." -msgstr "Čeka objašnjenje" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Čeka se odgovor na požurnicu {{public_body_link}} za rješavanje ovog zahtjeva." @@ -3662,9 +3698,6 @@ msgstr "Nismo mogli učitati zapisnike mail servera za ovu poruku." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ne posjedujemo ispravnu e-mail adresu službenika za informiranje ovog tijela javne vlasti." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nemamo ispravnu {{law_used_full}} adresu za {{public_body_name}}." @@ -3770,6 +3803,9 @@ msgstr "" msgid "What's happened:" msgstr "Što se dogodilo:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Putem linka označite da li odgovor sadrži tražene informacije." @@ -3794,8 +3830,8 @@ msgstr "Zašto ovaj zahtjev smatrate neodgovarajućim?" msgid "Withdrawn" msgstr "Povučeno" -msgid "Withdrawn by the requester." -msgstr "Povučeno od strane podnositelja zahtjeva" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3821,6 +3857,9 @@ msgstr "" msgid "Yes" msgstr "Da" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Već ste stvorili jednaku skupinu zahtjeva dana {{date}}. Možete vidjeti postojeći zahtjev, ili urediti detalje ispod kako biste napravili novu, ali sličnu skupinu zahtjeva. " @@ -4456,9 +4495,6 @@ msgstr "upišite izraz za pretraživanje" msgid "unknown" msgstr "nepoznato" -msgid "unknown reason" -msgstr "nepoznat razlog" - msgid "unknown reason " msgstr "nepoznat razlog " @@ -4495,9 +4531,6 @@ msgstr "{{authority_name}} ne posjeduje traženu informaciju." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} čeka Vaše objašnjenje." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} suradnika" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} privitaka" @@ -4510,6 +4543,11 @@ msgstr[0] "{{count}} bilješki izrađeno." msgstr[1] "{{count}} bilješki izrađeno." msgstr[2] "{{count}} bilješki izrađeno." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} pratitelj" @@ -4667,8 +4705,8 @@ msgstr "{{reason}}. Nažalost nismo u posjedu adrese e-pošte službenika za inf msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} odgovara '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogovi i tweetovi" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4682,9 +4720,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} šalje nove zahtjeve {{request_email}} za ovu javnu ustanovu." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Pretražiti možete svih {{number_of_requests}} zahtjeva koje su podnijeli {{site_name}} korisnici, a najnoviji su:" diff --git a/locale/hu_HU/app.po b/locale/hu_HU/app.po index dc0149f8c4..926ca4e01c 100644 --- a/locale/hu_HU/app.po +++ b/locale/hu_HU/app.po @@ -34,7 +34,7 @@ # Translators: # alaveteli_hu , 2012 # alaveteli_hu , 2012 -# Dohány Tamás, 2021-2022 +# Dohány Tamás, 2021-2022,2024 # Dohány Tamás, 2022,2024 # Orsolya Batta , 2013 # Graeme Porteous , 2022,2024 @@ -49,9 +49,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Graeme Porteous , 2022,2024\n" +"Last-Translator: Dohány Tamás, 2021-2022,2024\n" "Language-Team: Hungarian (Hungary) (http://app.transifex.com/mysociety/alavete" "li/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -191,11 +191,11 @@ msgstr "60+ perc" msgid "Browse all or ask us to add one." msgstr "Böngésszen az összes között vagy ha kéri, felvesszük a hiányzót. " -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Új EIR kérés készítése {{public_body_name}} részére" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Új közérdekű adat igénylés küldése {{public_body_name}} részére" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Lépjen be, hogy értesítéseket kapjon vagy hogy aktiválja az e-mail értesítéseket" @@ -285,8 +285,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: keresendő elem típusa alapján történő kiválasztásához, lásd az alábbi választéktáblázatot. " -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Tanács arra vonatkozóan, hogy hogyan lehet az igénylő számára kielégítő választ kapni. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Minden információ el lett küldve " @@ -327,6 +327,9 @@ msgstr "Ha megváltoztatja a nevét, a régi kéréseiben szereplő név msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Újságíró? Akadémikus? Vagy talán profi felhasználó?A {{pro_site_link}} egy integrált FOI eszköz, ideértve mindent, amit szükséges fenntartanod egy komplex FOI vezérelt kutatáshoz." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Nem érkezett még válasz\n" @@ -378,8 +381,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A(z) {{request_title}} adatigénylésre vonatkozóan {{info_request_user}} emlékeztetőt küldött a(z) {{public_body_name}} részére {{date}} napon." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "A(z) {{public_body_name}} választ küldött a(z) {{request_title}} adatigénylésre vonatkozóan {{info_request_user}} részére {{date}} napon. Az adatigénylés állapota: {{request_status}}." +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Összefoglaló a válaszról, ha megérkezett a postai levél." @@ -423,9 +426,6 @@ msgstr "Magamról: " msgid "About {{count}} FOI requests found" msgstr "A KiMitTud rendszerében {{count}} adatigénylés található" -msgid "Academic paper" -msgstr "Akadémiai dolgozat" - msgid "Account closed at user request" msgstr "A fiókot lezártuk a felhasználó kérésére" @@ -456,6 +456,12 @@ msgstr "Foglalja össze a választ egy hozzászólásban. Idéz msgid "Add authority - {{public_body_name}}" msgstr "Felhatalmazás hozzáadása - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "A felhatalmazás hozzáadása: " @@ -630,24 +636,18 @@ msgstr "Felvilágosításra vár" msgid "Awaiting classification" msgstr "Besorolásra vár" -msgid "Awaiting classification." -msgstr "Besorolásra vár" - msgid "Awaiting internal review" msgstr "Belső átnézésre vár" -msgid "Awaiting internal review." -msgstr "Belső felülvizsgálatra vár" - msgid "Awaiting response" msgstr "Válaszra vár" -msgid "Awaiting response." -msgstr "Válaszra vár" - msgid "Back to content" msgstr "Vissza a tartalomhoz" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Eltiltották az újabb eltiltás megkerülése miatt" @@ -684,11 +684,8 @@ msgstr "Az összes adatgazda tallózása →" msgid "Browse all requests →" msgstr "Keresés a adatigénylések kötött →" -msgid "Browse and search requests" -msgstr "Böngészés az adatigénylések között" - -msgid "Browse and search requests (page {{count}})" -msgstr "Böngészés az adatigénylések között (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "A legfrissebb adatigénylések keresése." @@ -696,8 +693,8 @@ msgstr "A legfrissebb adatigénylések keresése." msgid "Browse latest responses" msgstr "Böngésszen a legújabb válaszok között" -msgid "Browse requests" -msgstr "Adatigénylések" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "A törvény szerint válaszolniuk kell." @@ -717,6 +714,12 @@ msgstr "A vonatkozó jogszabály értelmében a(z) {{public_body_link}} adatgazd msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Nem találja, amit keresett?" @@ -789,6 +792,9 @@ msgstr "A közérdekűadat-igénylés pontosítása {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "-tól/-től származó közérdekű adat igénylésére érkező válasz besorolása {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Válaszok titkosítása" @@ -857,11 +863,11 @@ msgstr "E-mail címének megerősítése " msgid "Confirm your new email address on {{site_name}}" msgstr "Új e-mail címének megerősítése a {{site_name}} weboldalon " -msgid "Considered by administrators as not an FOI request." -msgstr "Az adminisztrátorok nem FOI-kérésnek tekintik." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Az adminisztrátorok bosszantónak tartják." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Lépjen kapcsolatba velünk" @@ -931,6 +937,9 @@ msgstr "Most a(z) {{public_body_link}} válaszára várunk, " msgid "Data interpretation" msgstr "Adatértelmezés" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dátum: " @@ -958,15 +967,15 @@ msgstr "Elhalasztott" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Késedelmes válasz a közérdekű adatok igénylésére - {{request_title}}" -msgid "Delayed." -msgstr "Késedelmes. " - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "{{id}} számú kimenő üzenet kézbesítési állapota" msgid "Delivery error" msgstr "Továbbítási hiba " +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "A adatigénylés részletei “{{request_title}}”" @@ -1003,11 +1012,8 @@ msgstr "Kész. " msgid "Done >>" msgstr "Kész >>" -msgid "Download Data" -msgstr "Adatok letöltése" - -msgid "Download Leaderboard Data" -msgstr "Töltse le a ranglista adatait" +msgid "Download" +msgstr "" msgid "Download a zip file of all correspondence" msgstr "Az adatigényléssel kapcsolatos eddigi teljes levelezés letöltése zip formátumban" @@ -1015,6 +1021,9 @@ msgstr "Az adatigényléssel kapcsolatos eddigi teljes levelezés letöltése részletezi,\n" " hogy miért elégedetlen a kapott válasszal." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Bemutatkozásom módosítása " +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Igénylés módosítása " @@ -1095,6 +1122,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "Bontsa ki az összes levelezést" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "Adatok kinyerése" @@ -1107,8 +1137,8 @@ msgstr "A kivonat nem menthető." msgid "FOI" msgstr "KözAdat" -msgid "FOI email address for {{public_body}}" -msgstr "{{public_body}} közérdekű adatok igényléséhez használt e-mailcíme " +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Az információs önrendelkezési jogról és az információszabadságról szóló 2011. évi CXII. törvény nem vonatkozik erre az adatgazdára." @@ -1149,6 +1179,9 @@ msgstr "Keressen az adatgazdák között" msgid "Find the authorities to write to" msgstr "Keresse meg az adatgazdákat, akiknek írhat" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Először is, sikerült-e a többi kérése?" @@ -1197,9 +1230,6 @@ msgstr "Követés" msgid "Follow up message sent by requester" msgstr "Nyomon követési üzenetet az igénylő elküldte " -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "A meglévő kérések nyomon követési üzeneteit a következő címre küldjük: {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A {{info_request_user}} a {{date}} napon küldött nyomon követést a {{public_body_name}} címre." @@ -1212,8 +1242,8 @@ msgstr "A levélszemét kiszűrése érdekében erre az igénylésre vonatkozóa msgid "Follow us on Facebook" msgstr "Kövess minket Facebookon" -msgid "Follow us on twitter" -msgstr "Kövessen bennünket a twitteren " +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Követni" @@ -1234,16 +1264,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "{{count}} hatóság kezdődik ‘{{first_letter}}’ betűvel" msgstr[1] "Found {{count}} public authorities beginning with ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} hatóságot találtunk a ‘{{category_name}}’ kategóriában" -msgstr[1] "{{count}} hatóságot találtunk a ‘{{category_name}}’ kategóriában" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "{{count}} db hatóságot találtunk, amelyek megfelelnek a ‘{{tag_name}}’ címkének" msgstr[1] "{{count}} db hatóságot találtunk, amelyek megfelelnek a ‘{{tag_name}}’ címkének" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Négy hete információszabadságot kért {{public_body_name}} felé a {{site_name}} használatával." @@ -1258,9 +1293,6 @@ msgstr "" "Az információ szabadságáról szóló törvény nem vonatkozik erre a közintézményre, így nekik nem nyújthat be \n" " igénylést. " -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Az információszabadságról szóló törvény már nem vonatkozik erre a hatóságra. A meglévő kérések nyomon követési üzeneteit a következő címre küldjük: {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Az információszabadságról szóló törvény már nem vonatkozik a {{public_body_name}} személyre." @@ -1312,14 +1344,11 @@ msgstr "Van hozzáférése?" msgid "Handled by postal mail" msgstr "Lebonyolítása postai úton" -msgid "Handled by postal mail." -msgstr "Lebonyolítása postai úton" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Hivatkoztak erre az igénylésre egy hírben vagy posztban?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Hivatkoztak erre az igénylésre egy hírben vagy posztban? Írja meg nekünk:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Üdvözöljük! Fontos üzenet nem {{country_name}} országból való látogatók számára" @@ -1342,6 +1371,9 @@ msgstr "Helló! Az információszabadság iránti kérelmeket a {{country_name}} msgid "Help" msgstr "Súgó " +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Segítsen nekünk a nem frissített kérések osztályozásában" @@ -1444,9 +1476,6 @@ msgstr "Hibaüzenetet kaptam " msgid "I've received an error message" msgstr "Egy hibaüzenetet kaptam." -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ha hibás a cím, vagy ismer egy jobb címet, lépjen velünk kapcsolatba. " - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ha a hiba kézbesítési hiba volt, és megtalálja a hatóság naprakész FOI e-mail címét, kérjük, jelezze nekünk az alábbi űrlap segítségével." @@ -1512,11 +1541,6 @@ msgstr "Ha emailt kapott több mint egy hónapja vagy msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ha még nem tette meg eddig, írjon alább üzenetet, amelyben tájékoztatja a közintézményt, hogy igénylését visszavonta. Máskülönben nem fogják tudni, hogy az igénylés vissza lett vonva. " -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Ha ismer használható címet, kérjük küldje el nekünk.\n" -" A címet megtalálhatja az adatgazda weboldalán, illetve telefonon is érdeklődhet. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ha válaszol erre az üzenetre, válaszát közvetlenül {{user_name}} fogja\n" @@ -1558,9 +1582,6 @@ msgstr "Növelje fiókja biztonságát" msgid "In progress" msgstr "Folyamatban" -msgid "In the News" -msgstr "A hírekben" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Helyezzen el blogjára, honlapjára, twitter-, facebook fiókjára mutató hivatkozásokat. A linkeket kattinthatóvá tesszük. \n" @@ -1575,9 +1596,6 @@ msgstr "Egyéni igénylések" msgid "Information not held" msgstr "Az információ nem tárolható" -msgid "Information not held." -msgstr "Az információ hiányára hivatkozva le lett zárva" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Emisszióra és kibocsátásra (pl. zaj, energia,\n" @@ -1604,6 +1622,9 @@ msgstr "Érvénytelen egyszeri jelszó" msgid "Invalid token" msgstr "Érvénytelen kód" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Hibás a(z) {{email_address}} cím a(z) {{public_body_name}} részére benyújtott {{law_used_full}} igénylésekre vonatkozóan? Ha igen, lépjen velünk kapcsolatba az űrlap segítségével: " @@ -1628,12 +1649,12 @@ msgstr "Csatlakozott: {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Csatlakozott {{site_name}} webhely {{year}} évben" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Csak még egy dolog" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Tartsa biztonságban ezt a jelszót. A jelszó megváltoztatásakor szüksége lesz rá a fiók megerősítéséhez. Hozzáadhatja egy jelszókezelőhöz, vagy kinyomtathatja és biztonságos helyen tárolhatja." - msgid "Keep your request up to date" msgstr "Tartsa naprakészen kérését" @@ -1676,6 +1697,9 @@ msgstr "Projekt elhagyása" msgid "Let us know" msgstr "Írja meg nekünk" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Írja meg nekünk, és mi segítünk a kihívásban." @@ -1699,9 +1723,6 @@ msgstr "Bejelentkezés az adminisztrátori interfészre" msgid "Long overdue" msgstr "Régóta késedelmes" -msgid "Long overdue." -msgstr "Régóta késedelmes" - msgid "Made between" msgstr "Adatigénylés dátuma:" @@ -1798,9 +1819,6 @@ msgstr "Adminisztrátori figyelmet igényel" msgid "Needs status update" msgstr "Állapotfrissítésre szorul" -msgid "New Citation" -msgstr "Új idézet" - msgid "New Freedom of Information requests" msgstr "Új közérdekűadat-igénylések " @@ -1834,9 +1852,6 @@ msgstr "A(z) '{{request_title}}' igényléssel kapcsolatos változások:" msgid "Newest results first" msgstr "Elöl a legújabb találatok " -msgid "News story" -msgstr "Új történetek" - msgid "Next" msgstr "Tovább" @@ -1918,6 +1933,9 @@ msgstr "A kérések elrejtési eseményeinek száma az idő függvényében" msgid "Number of requests" msgstr "Kérelmek száma" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "VAGY meglevő fénykép eltávolítása " @@ -1981,9 +1999,6 @@ msgstr "Részleges siker" msgid "Partially successful" msgstr "Részlegesen sikeres" -msgid "Partially successful." -msgstr "Részben teljesített" - msgid "Password is not correct" msgstr "Hibás jelszó " @@ -2264,6 +2279,9 @@ msgstr "Nyomtassa ki az egyszeri jelszót" msgid "Privacy and cookies" msgstr "Adatvédelem és sütik" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "{{user_name}} profilképe" @@ -2273,6 +2291,9 @@ msgstr "Projektgazda" msgid "Proposed Email:" msgstr "Javasolt e-mail:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Köztestületek" @@ -2354,9 +2375,6 @@ msgstr "Elöl a legutóbb ismertetett eredmények " msgid "Refused" msgstr "Elvetve" -msgid "Refused." -msgstr "El lett utasítva" - msgid "Regenerate one time passcode" msgstr "Egyszeri jelszó újragenerálása" @@ -2396,8 +2414,8 @@ msgstr "Igénylés jelentése" msgid "Reported" msgstr "Jelentve" -msgid "Reported for administrator attention." -msgstr "Bejelentve az adminisztrátornak." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Az igénylésről értesítettük a webhely adminisztrátorát. A lehető leghamarabb válaszolnak." @@ -2411,6 +2429,9 @@ msgstr "Belső felülvizsgálat kérése" msgid "Request an internal review from {{person_or_body}}" msgstr "Belső felülvizsgálat kérése {{person_or_body}}-tól/-től " +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "A kérés e-mailje nem lehet üres" @@ -2468,6 +2489,9 @@ msgstr "Az igényléseket kérelmeket a következő adatgazdákhoz küldjük:" msgid "Requires admin attention" msgstr "Adminisztrátori figyelmet igényel" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Válasz küldése e-mailben " @@ -2546,6 +2570,12 @@ msgstr "" msgid "Search queries" msgstr "Keresési lekérdezések" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "A keresés eredménye" @@ -2561,6 +2591,12 @@ msgstr "Szakasz" msgid "See all →" msgstr "Az összes megtekintése →" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Emlékeztető üzenet küldése - Rákérdezhet az adatgazdánál, hogy hogy áll az igénylése." @@ -2609,6 +2645,11 @@ msgstr "Új kapcsolatfelvételi cím használatával ismét küldött üzenetet msgid "Sent a follow up to {{public_body_name}} again." msgstr "Ismét nyomon követést küldött a következőnek: {{public_body_name}}." +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "Ismét elküldtük a kérést a {{public_body_link}} címre, új kapcsolattartási cím használatával." @@ -2632,6 +2673,9 @@ msgstr "Profilkép beállítása " msgid "Share on Facebook" msgstr "Megosztás a Facebookon" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Megosztás privát hivatkozással" @@ -2851,9 +2895,6 @@ msgstr "Sikeres közérdekűadat-igénylések " msgid "Successful requests" msgstr "Sikeres kérések" -msgid "Successful." -msgstr "Sikeres" - msgid "Suggest how the requester can find the rest of the information." msgstr "Adjon tanácsot arra vonatkozóan, hogy az igénylő hogyan találhatja meg a hiányzó információkat. " @@ -2881,6 +2922,9 @@ msgstr "Címkék: " msgid "Tasks" msgstr "Feladatok" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Köszönjük, hogy segít nekünk a weboldal gondozásában. " @@ -2950,6 +2994,12 @@ msgstr "Az URL, ahol a cikket találta." 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 "Az az URL, ahol megtalálta az e-mail címet. Ez a mező nem kötelező, de sokat segítene nekünk, ha a hatóság honlapján egy adott oldalra tudna linket adni, amely ezt a címet adja meg, mert így sokkal könnyebben ellenőrizhetjük." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "A fiókok úgy lettek hagyva, ahogyan voltak. " @@ -3012,12 +3062,6 @@ msgstr "Az utolsó felhasználó az utolsó napon jött létre" msgid "The last user was created over a day ago" msgstr "Az utolsó felhasználó több mint egy napja jött létre" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "A legrégebbi Xapian indexfeladat több mint 1 órája tétlen volt" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "A legrégebbi Xapian indexfeladat, nem volt tétlen 1 óránál tovább" - msgid "The page doesn't exist. Things you can try now:" msgstr "Az oldal nem létezik. Amit megpróbálhat: " @@ -3201,8 +3245,8 @@ msgstr "A megjegyzések létrehozásának sebessége is korlátozott. Kérjük, msgid "There is nothing to display yet." msgstr "Még nincs mit megjeleníteni." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Kézbesítési hiba vagy valami hasonló történt, amelyet a {{site_name}} csapatának ki kell javítania. " +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Hiba történt a reCAPTCHA-val. Kérlek próbáld újra." @@ -3597,12 +3641,6 @@ msgstr "Próbálja meg új ablakban megnyitni a naplókat." msgid "Turn off email alerts" msgstr "Értesítő e-mailben kikapcsolása" -msgid "Tweet it" -msgstr "Csirip" - -msgid "Tweet this request" -msgstr "Az igénylés elküldése tweetben" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "A kéttényezős hitelesítés további biztonságot nyújt fiókjának, mivel több információra van szüksége a jelszó visszaállításához." @@ -3671,8 +3709,8 @@ msgstr "Leiratkozás" msgid "Unusual response" msgstr "Szokatlan válasz" -msgid "Unusual response." -msgstr "Szokatlan válasz" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "E-mailcím frissítése – {{public_body_name}}" @@ -3710,23 +3748,14 @@ msgstr "Bosszantó" msgid "Vexatious annotation" msgstr "Bosszantó megjegyzés" -msgid "View FOI email address" -msgstr "Az adatgazda e-mailcíme (amelyre a közérdekűadat-igényléseket küldjük)" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "'{{public_body_name}}' közérdekűadat-igényléshez használt e-mailcímének megtekintése " - -msgid "View FOI email address for {{public_body_name}}" -msgstr "{{public_body_name}} közérdekűadat-igényléshez használt e-mail címének megtekintése " - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "{{user_name}} által benyújtott közérdekűadat-igénylések megtekintése " msgid "View authorities" msgstr "Adatgazdák " -msgid "View email" -msgstr "E-mail megtekintése " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Az eseményelőzmények részleteinek megtekintése" @@ -3734,11 +3763,17 @@ msgstr "Az eseményelőzmények részleteinek megtekintése" msgid "View other requests to {{public_body}}" msgstr "További kérések megtekintése {{public_body}} számára" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Tekintse meg a kétfaktoros hitelesítés egyszeri jelszavát" -msgid "Waiting clarification." -msgstr "Pontosításra vár." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "A(z) {{public_body_link}} által végrehajtandó, az igénylés kezelésével kapcsolatos belső felülvizsgálatra várakozik. " @@ -3770,9 +3805,6 @@ msgstr "Nem tudtuk betölteni a levelezőszerver naplóit ehhez az üzenethez." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Nem engedélyezzük a {{site_name}} webhelyen keresztül az Ön személyes körülményeivel kapcsolatos információkérést. Ezért kérését elrejtettük más felhasználók elől." -msgid "We do not have a working request email address for this authority." -msgstr "Nem rendelkezünk az adatgazda működő e-mailcímével. " - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nem rendelkezünk a(z) {{public_body_name}} működő {{law_used_full}} e-mailcímével. " @@ -3888,6 +3920,9 @@ msgstr "Mit szeretne csinálni?" msgid "What's happened:" msgstr "Mi történt:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "A válasz elolvasása után, kérjük, annak tartalmának megfelelően módosítsa az igénylés státuszát! \n" @@ -3916,8 +3951,8 @@ msgstr "Miért tartja konkrétan ezt a kérést alkalmatlannak?" msgid "Withdrawn" msgstr "Visszavont" -msgid "Withdrawn by the requester." -msgstr "Az igénylő visszavonta. " +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3943,6 +3978,9 @@ msgstr "Kérés megírása" msgid "Yes" msgstr "Igen" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Már létrehozta ugyanazt a kérelmet ezen a napon: {{date}}. Megtekintheti az meglévő köteget, vagy módosíthatja az alábbi részleteket, hogy új, de hasonló kérelmeket készítsen." @@ -4595,9 +4633,6 @@ msgstr "a keresési feltétel helye" msgid "unknown" msgstr "ismeretlen" -msgid "unknown reason" -msgstr "ismeretlen ok" - msgid "unknown reason " msgstr "ismeretlen ok " @@ -4634,9 +4669,6 @@ msgstr "{{authority_name}} nem kapta meg a kért információt. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} az ön pontosítására vár." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} közreműködő" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Melléklet" @@ -4647,6 +4679,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} megjegyzés készült." msgstr[1] "{{count}} megjegyzés készült." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} követő" @@ -4797,8 +4834,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}}, amelyek megfelelnek a(z) '{{query}}' lekérdezésnek " -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4811,9 +4848,6 @@ msgstr "{{site_name}} azonosította {{authority_name}} visszautasíthatja az eg msgid "{{site_name}} login link" msgstr "{{site_name}} belépési hivatkozás" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "A {{site_name}} az adatigényléseket a(z) {{request_email}} címre küldi ennek az adatgazdának. " - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "A {{site_name}} felhasználói {{number_of_requests}} kérést készítettek, ezeket:" diff --git a/locale/id/app.po b/locale/id/app.po index e88e98f4c9..a2869d0a66 100644 --- a/locale/id/app.po +++ b/locale/id/app.po @@ -48,7 +48,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Agung Riyadi , 2012-2013\n" "Language-Team: Indonesian (http://app.transifex.com/mysociety/alaveteli/langua" @@ -190,10 +190,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Lihat semua atau minta kami untuk menambahkan." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -284,8 +284,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "jenis: untuk memilih jenis yang akan dicari, lihattabel jenis di bawah." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Saran tentang bagaimana mendapatkan respon yang akan memuaskan pemohon. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Semua informasi telah dikirimkan" @@ -328,6 +328,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Belum ada respon yang diterima\n" @@ -382,8 +385,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Sebuah tindak lanjut untuk {{request_title}} telah terkirim kepada {{public_body_name}} oleh {{info_request_user}} pada {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Sebuah jawaban untuk {{request_title}} telah dikirim oleh {{public_body_name}} kepada {{info_request_user}} pada {{date}}. Status permintaan sekarang adalah : {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -429,9 +432,6 @@ msgstr "Tentang Anda:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -464,6 +464,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -640,24 +646,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Menunggu klasifikasi." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Menunggu kajian internal." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Menunggu respon." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -694,11 +694,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Tampilkan dan cari permintaan" - -msgid "Browse and search requests (page {{count}})" -msgstr "Tampilkan dan cari permintaan (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -706,8 +703,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Tampilkan permintaan" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -727,6 +724,12 @@ msgstr "Berdasarkan undang-undang, {{public_body_link}} seharusnya sudah menangg msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Tidak dapat menemukan apa yang Anda inginkan?" @@ -799,6 +802,9 @@ msgstr "Silakan klarifikasi permintaan Anda - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Mengklasifikasi respon FOI dari {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -867,10 +873,10 @@ msgstr "Konfirmasi alamat email Anda" msgid "Confirm your new email address on {{site_name}}" msgstr "Konfirmasi alamat email Anda yang baru di {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -941,6 +947,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Tanggal:" @@ -968,15 +977,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Respon yang tertunda atas permintaan FOI Anda - {{request_title}}" -msgid "Delayed." -msgstr "Tertunda." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Kesalahan pengiriman" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -1013,10 +1022,7 @@ msgstr "Selesai" msgid "Done >>" msgstr "Selesai >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1025,6 +1031,9 @@ msgstr "Unduh file zip dari semua korespondensi" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Unduh lampiran original" @@ -1039,9 +1048,27 @@ msgstr "" "Edit dan tambahlebih banyak rincian ke pesan di atas,\n" " Menjelaskan mengapa Anda tidak puas dengan respon mereka." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Edit teks tentang Anda" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Edit permintaan ini" @@ -1107,6 +1134,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1119,8 +1149,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "Alamat email FOI untuk{{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1161,6 +1191,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1209,9 +1242,6 @@ msgstr "Tindak lanjuti" msgid "Follow up message sent by requester" msgstr "Tindak lanjuti pesan yang dikirimkan oleh pemohon" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1224,8 +1254,8 @@ msgstr "Tindak lanjut dan respon baru terhadap permintaan ini telah dihentikan u msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Ikuti kami di twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1246,8 +1276,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1256,6 +1286,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1270,9 +1305,6 @@ msgstr "" "Hukum Freedom of Information tidak berlaku kepada otoritas ini, jadi Anda tidak dapat mengajukan\n" " permintaan kepadanya." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1324,13 +1356,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1354,6 +1383,9 @@ msgstr "" msgid "Help" msgstr "Bantuan" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1455,9 +1487,6 @@ msgstr "Saya sudah menerima pesan error" msgid "I've received an error message" msgstr "Saya menerima pesan error" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Jika alamatnya salah, atau Anda tahu alamat yang lebih baik, silakan hubungi kami." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Jika errornya adalah kegagalan pengiriman, dan Anda dapat menemukan alamat email FOI otoritas publik yang baru, silakan memberi tahu kami menggunakan form dibawah ini." @@ -1523,11 +1552,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Jika Anda belum melakukannya, silakan tulis pesan di bawah untuk member tahu otoritas bahwa Anda telah menarik permintaan Anda. Jika tidak, mereka tidak akan tahu bahwa permintaan tersebut telah ditarik." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Jika Anda mengetahui alamat yang digunakan, maka silakanmengirimkannya kepada kami.\n" -" Anda mungkin dapat menemukan alamatnya di website mereka, atau dengan menelepon dan menanyakannya kepada mereka." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Jika Anda membalas pesan ini maka akan diteruskan ke {{user_name}}, yang akan melihat alamat email Anda. Hanya balasan jika itu tidak apa-apa." @@ -1567,9 +1591,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" " Sertakan tautan-tautan yang relevan, seperti tautan ke halaman kampanye, blog Anda atau \n" @@ -1585,9 +1606,6 @@ msgstr "Permintaan individu" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Informasi tidak dipegang." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informasi tentang emisi dan pembuangan (misalnya suara, energi,\n" @@ -1614,6 +1632,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Apakah {{email_address}} adalah alamat yang salah untuk {{law_used_full}} permintaan kepada {{public_body_name}}? Jika demikian, silakan hubungi kami menggunakan formulir ini:" @@ -1638,12 +1659,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Satu hal lagi" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1686,6 +1707,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1709,9 +1733,6 @@ msgstr "Masuk ke tampilan admin" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Lama terlambat." - msgid "Made between" msgstr "Dibuat antara" @@ -1808,9 +1829,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Permintaan Freedom of Information baru" @@ -1844,9 +1862,6 @@ msgstr "Update baru untuk permintaan '{{request_title}}'" msgid "Newest results first" msgstr "Hasil-hasil terbaru terlebih dahulu" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Berikutnya" @@ -1928,6 +1943,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ATAU menghapus foto yang sudah ada" @@ -1991,9 +2009,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Berhasil sebagian." - msgid "Password is not correct" msgstr "Kode sandi salah" @@ -2274,6 +2289,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2283,6 +2301,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2364,9 +2385,6 @@ msgstr "Hasil yang baru dijelaskan dulu" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Ditolak." - msgid "Regenerate one time passcode" msgstr "" @@ -2406,8 +2424,8 @@ msgstr "Laporkan permintaan ini" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Dilaporkan untuk perhatian administrator." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2421,6 +2439,9 @@ msgstr "Minta kajian internal" msgid "Request an internal review from {{person_or_body}}" msgstr "Minta kajian internal dari {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2478,6 +2499,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Merespon lewat email" @@ -2556,6 +2580,12 @@ msgstr "" msgid "Search queries" msgstr "Permintaan pencarian" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Hasil pencarian" @@ -2571,6 +2601,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Kirim tindak lanjut" @@ -2619,6 +2655,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2642,6 +2683,9 @@ msgstr "Mengatur foto profil Anda" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2861,9 +2905,6 @@ msgstr "Permintaan Freedom of Information yang berhasil" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Berhasil." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sarankan bagaimana pemohon dapat menemukan sisa informasi." @@ -2891,6 +2932,9 @@ msgstr "Label:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Terima kasih telah membantu kami menjaga situs ini tetap rapi!" @@ -2962,6 +3006,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Akun-akun yang ditinggalkan sebagaimana mereka sebelumnya." @@ -3024,12 +3074,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Halaman ini tidak ada. Hal-hal yang sekarang bisa Anda coba:" @@ -3213,8 +3257,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Ada kesalahan pengiriman atau yang serupa, yang perlu diperbaiki oleh {{site_name}} tim." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3610,12 +3654,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Matikan tanda (notifikasi) email" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Tweet permintaan ini" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3684,8 +3722,8 @@ msgstr "Berhenti langganan" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Respon yang tidak biasa." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3723,23 +3761,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Tampilkan alamat email FOI" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Tampilkan alamat email FOI untuk '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Tampilkan alamat email FOI untuk {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Tampilkan permintaan Freedom of Information yang dibuat oleh {{user_name}}:" msgid "View authorities" msgstr "Tampilkan otoritas" -msgid "View email" -msgstr "Tampilkan email" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3747,11 +3776,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Menunggu klarifikasi." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Menunggu kajian internal oleh {{public_body_link}} mengenai penanganan mereka terhadap permintaan ini." @@ -3783,9 +3818,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Kami tidak memiliki alamat email permintaan yang bekerja untuk otoritas ini." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Kami tidak memiliki alamat {{law_used_full}} yang bekerja untuk {{public_body_name}}." @@ -3903,6 +3935,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Ketika Anda sampai di sana, mohon perbarui status untuk mengatakan apakah respon tersebut \n" @@ -3931,8 +3966,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Ditarik oleh pemohon." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3958,6 +3993,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4611,9 +4649,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "alasan tidak diketahui" - msgid "unknown reason " msgstr "alasan tidak diketahui " @@ -4650,9 +4685,6 @@ msgstr "{{authority_name}} tidak memiliki informasi yang dimint msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} sedang menunggu klarifikasi Anda." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4663,6 +4695,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4811,8 +4848,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} sesuai '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog dan tweet" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4825,9 +4862,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} mengirimkan permintaan baru kepada {{request_email}} untuk otoritas ini." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/is/app.po b/locale/is/app.po index 6ab00bbc6e..bb64b1f0d8 100644 --- a/locale/is/app.po +++ b/locale/is/app.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Ölvir Gíslason , 2016\n" "Language-Team: Icelandic (http://app.transifex.com/mysociety/alaveteli/languag" @@ -182,11 +182,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Skoða öll stjórnvöld eða biðja okkur um að bæta stjórnvaldi við." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Senda nýja beiðni varðandi umhverfismál til {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Senda nýja upplýsingabeiðni til {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -271,8 +271,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: til að velja tegund þess sem á að leita að. Sjá töflu yfir tegundir hér fyrir neðan." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Heilræði um aðferðir við að fá fram svör sem beiðanda finnst fullnægjandi. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Allar upplýsingarnar hafa verið sendar" @@ -309,6 +309,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Ekkert svar hefur borist\n" @@ -364,8 +367,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ítrekun við {{request_title}} var send til '{{public_body_name}}' af '{{info_request_user}}' þann {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Svar við {{request_title}} var sent af '{{public_body_name}}' til '{{info_request_user}}' þann {{date}}. Staða upplýsingabeiðninnar er: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -411,9 +414,6 @@ msgstr "Um þig:" msgid "About {{count}} FOI requests found" msgstr "{{count}} upplýsingabeiðnir fundust" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -446,6 +446,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Bæta við stjórnvaldi - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Bæta við stjórnvaldinu:" @@ -620,24 +626,18 @@ msgstr "Bíður útskýringar" msgid "Awaiting classification" msgstr "Bíður flokkunar" -msgid "Awaiting classification." -msgstr "Bíður eftir flokkun." - msgid "Awaiting internal review" msgstr "Bíður eftir innri athugun." -msgid "Awaiting internal review." -msgstr "Bíður eftir innri athugun." - msgid "Awaiting response" msgstr "Bíður svars" -msgid "Awaiting response." -msgstr "Bíður eftir svari." - msgid "Back to content" msgstr "Aftur í efni" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -674,11 +674,8 @@ msgstr "Skoða öll stjórnvöld →" msgid "Browse all requests →" msgstr "Skoða allar upplýsingabeiðnir →" -msgid "Browse and search requests" -msgstr "Skoða allar upplýsingabeiðnir" - -msgid "Browse and search requests (page {{count}})" -msgstr "Skoða allar upplýsingabeiðnir (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -686,8 +683,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Skoða upplýsingabeiðnir" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Lögum samkvæmt er þeim skylt að svara." @@ -707,6 +704,12 @@ msgstr "Lögum samkvæmt ætti {{public_body_link}} að hafa svarað svo msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Finnurðu ekki það sem þú leitar að?" @@ -779,6 +782,9 @@ msgstr "Útskýrðu upplýsingabeiðnina - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Flokkaðu upplýsingabeiðni frá {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -845,10 +851,10 @@ msgstr "Staðfestu netfangið þitt" msgid "Confirm your new email address on {{site_name}}" msgstr "Staðfestu nýtt netfang þitt fyrir {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -917,6 +923,9 @@ msgstr "Beðið eftir svari frá {{public_body_link}}, þau æt msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dagsetning:" @@ -944,15 +953,15 @@ msgstr "Seinkað" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Upplýsingabeiðni þinni, {{request_title}}, hefur ekki verið svarað tímanlega" -msgid "Delayed." -msgstr "Seinkað." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Afhendingarstaða útsends skeytis #{{id}}" msgid "Delivery error" msgstr "Villa í sendingu" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Upplýsingar um beiðni “{{request_title}}”" @@ -989,10 +998,7 @@ msgstr "Lokið" msgid "Done >>" msgstr "Lokið >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1001,6 +1007,9 @@ msgstr "Sækja zip-skrá með öllum samskiptum" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Sækja upprunalegt viðhengi" @@ -1013,9 +1022,27 @@ msgstr "Lög um upplýsingarétt um umhverfismál" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Breyttu ofangreindum skilaboðum og bættu við meiri upplýsingum til að útskýra af hverju þér finnst svar þeirra ófullnægjandi." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Breyttu textanum um þig" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Breyta þessari beiðni" @@ -1081,6 +1108,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1093,8 +1123,8 @@ msgstr "" msgid "FOI" msgstr "Upplýsingabeiðni" -msgid "FOI email address for {{public_body}}" -msgstr "Netfang fyrir upplýsingabeiðnir til {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Lög um upplýsingaskyldu eiga ekki við um þetta stjórnvald." @@ -1135,6 +1165,9 @@ msgstr "Finndu stjórnvöld" msgid "Find the authorities to write to" msgstr "Finndu stjórnvöld til að senda á" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Í fyrsta lagi, heppnuðust hinar beiðnirnar?" @@ -1185,9 +1218,6 @@ msgstr "Ítreka" msgid "Follow up message sent by requester" msgstr "Ítrekunarskilaboð frá beiðanda" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Ítrekanir á fyrirliggjandi beiðnum er sendar til {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ítrekun send til {{public_body_name}} af {{info_request_user}} þann {{date}}." @@ -1200,8 +1230,8 @@ msgstr "Ítrekanir og ný svör við þessari beiðni hafa verið stöðvuð til msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Fylgstu með okkur á twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Fylgist með" @@ -1222,16 +1252,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Fann {{count}} stjórnvald sem byrjar á ‘{{first_letter}}’" msgstr[1] "Fann {{count}} stjórnvöld sem byrja á ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Fann {{count}} stjórnvald í flokknum ‘{{category_name}}’" -msgstr[1] "Fann {{count}} stjórnvöld í flokknum ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Fann {{count}} stjórnvald með taggið ‘{{tag_name}}’" msgstr[1] "Fann {{count}} stjórnvöld með taggið ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1244,9 +1279,6 @@ msgstr "Lög um upplýsingarétt" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Lög um upplýsingaskyldu eiga ekki við um þetta stjórnvald svo ekki er hægt að leggja fram beiðni til þess." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Lög um upplýsingaskyldu eiga ekki lengur við um þetta stjórnvald. Ítrekanir á fyrirliggjandi beiðnum eru sendar til {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Lög um upplýsingaskyldu eiga ekki lengur við um {{public_body_name}}." @@ -1297,13 +1329,10 @@ msgstr "Þegar með reikning?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1327,6 +1356,9 @@ msgstr "Halló! Þú getur sent upplýsingabeiðni sem á við um {{country_name msgid "Help" msgstr "Hjálp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Hjálpaðu okkur að flokka beiðnir sem hafa ekki verið uppfærðar" @@ -1419,9 +1451,6 @@ msgstr "Ég fékk villuboð" msgid "I've received an error message" msgstr "Ég fékk villuboð" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ef netfangið er ekki rétt eða ef þú veist um betra netfang, vinsamlegast hafðu þá samband." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ef villan kom upp við sendingu og þú getur fundið uppfært netfang til að senda stjórnvaldinu upplýsingabeiðni skaltu láta okkur vita hér fyrir neðan." @@ -1482,11 +1511,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ef þú hefur ekki gert það nú þegar skaltu skrifa skilaboð hér fyrir neðan þar sem þú lætur stjórnvaldið vita að þú hafir dregið beiðnina til baka. Annars vita viðkomandi ekki að hún hafi verið afturkölluð." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Ef þú veist hvaða heimilisfang skal notast við, vinsamlegast sendið okkur það þá.\n" -" Þú getur hugsanlega fundið heimilisfangið á vefnum hjá stofnuninni eða með því að hringja." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ef þú svarar þessum pósti fer það beint til '{{user_name}}', sem mun þá\n" @@ -1523,9 +1547,6 @@ msgstr "Gerðu reikninginn þinn öruggari" msgid "In progress" msgstr "Í vinnslu" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Látið fylgja með hlekki á vefsíður, blogg eða Twitter sem tengjast beiðninni. Þeir verða tengdir svo fólk geti fræðst um beiðnina. Til dæmis:" @@ -1538,9 +1559,6 @@ msgstr "Einstakar beiðnir" msgid "Information not held" msgstr "Upplýsingar ekki tiltækar" -msgid "Information not held." -msgstr "Upplýsingar ekki tiltækar." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Upplýsingar um útblástur og losun (t.d. hávaðamengun, orkugjafa, geislavirkni, úrgangsefni)" @@ -1565,6 +1583,9 @@ msgstr "Ógilt einnota lykilorð" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Er '{{email_address}}' ekki rétt netfang fyrir {{law_used_full}} til '{{public_body_name}}'? Ef svo er, vinsamlegast hafðu samband í gegnum þetta eyðublað:" @@ -1586,12 +1607,12 @@ msgstr "Skráði sig {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Skráði sig á {{site_name}} árið {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Eitt enn" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Passaðu upp á aðgangskóðann. Þú þarft hann til að staðfesta reiknginn þinn þegar þú breytir lykilorðinu. Þú getur notað lykilorðastjóra eða prentað kóðann út og geymt hann á öruggum stað." - msgid "Keep your request up to date" msgstr "Haltu beiðninni þinni uppfærðri" @@ -1634,6 +1655,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1655,9 +1679,6 @@ msgstr "Skráðu þig inn í stjórnborðið" msgid "Long overdue" msgstr "Timamörk löngu liðin" -msgid "Long overdue." -msgstr "Tímamörk löngu liðin." - msgid "Made between" msgstr "Sent milli" @@ -1754,9 +1775,6 @@ msgstr "Krefst athugunar stjórnenda" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nýjar upplýsingabeiðnir" @@ -1790,9 +1808,6 @@ msgstr "Nýjar uppfærslur á beiðninni '{{request_title}}'" msgid "Newest results first" msgstr "Nýjustu niðurstöður fyrst" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Áfram" @@ -1874,6 +1889,9 @@ msgstr "Fjöldi beiðni felur færslur smám saman" msgid "Number of requests" msgstr "Fjöldi beiðna" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "EÐA fjarlægðu fyrirliggjandi mynd" @@ -1937,9 +1955,6 @@ msgstr "Tókst að hluta" msgid "Partially successful" msgstr "Gögn bárust að hluta" -msgid "Partially successful." -msgstr "Gögn bárust að hluta." - msgid "Password is not correct" msgstr "Lykilorð er ekki rétt" @@ -2211,6 +2226,9 @@ msgstr "Prenta einnota aðgangskóða" msgid "Privacy and cookies" msgstr "Persónuvernd og kökur" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Prófílmynd fyrir {{user_name}}" @@ -2220,6 +2238,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Stjórnvöld" @@ -2301,9 +2322,6 @@ msgstr "Nýlega lýstar niðurstöður fyrst" msgid "Refused" msgstr "Synjað" -msgid "Refused." -msgstr "Synjað" - msgid "Regenerate one time passcode" msgstr "Endurhlaða einnota aðgangskóða" @@ -2343,8 +2361,8 @@ msgstr "Tilkynna þessa beiðni" msgid "Reported" msgstr "Tilkynnt" -msgid "Reported for administrator attention." -msgstr "Tilkynnt til stjórnenda" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Stjórnendur vefsins eru látnir vita þegar beiðni er tilkynnt. Þeir bregðast við svo fljótt sem auðið er." @@ -2358,6 +2376,9 @@ msgstr "Biðja um innri athugun" msgid "Request an internal review from {{person_or_body}}" msgstr "Biðja um innri athugun hjá {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2415,6 +2436,9 @@ msgstr "Beiðnir verða sendar til eftirfarandi:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Svara með tölvupósti" @@ -2493,6 +2517,12 @@ msgstr "" msgid "Search queries" msgstr "Leita í fyrirspurnum" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Leitarniðurstöður" @@ -2508,6 +2538,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Senda svar/viðbót" @@ -2556,6 +2592,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2579,6 +2620,9 @@ msgstr "Veldu mynd af þér" msgid "Share on Facebook" msgstr "Deila á Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2796,9 +2840,6 @@ msgstr "Frágengnar upplýsingabeiðnir" msgid "Successful requests" msgstr "Heppnaðar beiðnir" -msgid "Successful." -msgstr "Gögn bárust." - msgid "Suggest how the requester can find the rest of the information." msgstr "Leggðu til hvernig beiðandinn geti fengið það sem upp á vantar af upplýsingunum." @@ -2826,6 +2867,9 @@ msgstr "Tögg:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Takk fyrir að hjálpa okkur við að halda vefnum við!" @@ -2891,6 +2935,12 @@ 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 "Slóðin þar sem þú fannst netfangið. Ekki er nauðsynlegt að fylla þetta út, en það myndi hjálpa okkur mikið að fá tengil á síðu hjá stjórnvaldinu þar sem þetta netfang kemur fram, þar sem það auðveldar okkur til muna að kanna málið." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Reikningarnir eru enn eins og þeir voru áður." @@ -2951,12 +3001,6 @@ msgstr "Síðasti notandi var stofnaður á síðasta sólarhring" msgid "The last user was created over a day ago" msgstr "Nýjasti notandinn var stofnaður fyrir meira en degi síðan" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Síðan er ekki til. Þú getur reynt þetta:" @@ -3140,8 +3184,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Ekkert til að sýna enn." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Það var villa í sendingu eða álíka villa sem krefst þess að umsjónarmenn {{site_name}} gangi í málið." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Það kom upp villa í reCAPTCHA-vörninni. Reyndu aftur." @@ -3524,12 +3568,6 @@ msgstr "Prófaðu að opna annálana í nýjum glugga." msgid "Turn off email alerts" msgstr "Slökkva á tölvupósti með uppfærslum" -msgid "Tweet it" -msgstr "Tvíta þessu" - -msgid "Tweet this request" -msgstr "Tvíta þessari beiðni" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Tvíþætt sannvottun eykur öryggi á reikningnum þar sem meiri upplýsingar þarf til að endurstilla lykilorðið." @@ -3596,8 +3634,8 @@ msgstr "Afskrá" msgid "Unusual response" msgstr "Óvenjulegt svar" -msgid "Unusual response." -msgstr "Óvenjulegt svar." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Uppfæra netfang - {{public_body_name}}" @@ -3635,23 +3673,14 @@ msgstr "Tilefnislaus eða ögrandi" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Sjá netfang" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Sjá netfang hjá '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Sjá netfang hjá {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Skoðaðu upplýsingabeiðnir útbúnar af '{{user_name}}':" msgid "View authorities" msgstr "Skoða stjórnvöld" -msgid "View email" -msgstr "Sjá netfang" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Skoða upplýsingar um færsluferil" @@ -3659,11 +3688,17 @@ msgstr "Skoða upplýsingar um færsluferil" msgid "View other requests to {{public_body}}" msgstr "Skoða aðrar beiðnir til {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Skoða tvíþætta einnota aðgangskóðann" -msgid "Waiting clarification." -msgstr "Beðið eftir útskýringu." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Bíð eftirinnri athugun hjá {{public_body_link}} um meðferð þessarar upplýsingabeiðni." @@ -3695,9 +3730,6 @@ msgstr "Við gátum ekki hlaðið annála póstþjónsins fyrir þetta skeyti." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Við erum ekki með gilt netfang fyrir beiðnir til þessa stjórnvalds." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Við erum ekki með virkt netfang vegna {{law_used_full}} hjá {{public_body_name}}." @@ -3806,6 +3838,9 @@ msgstr "" msgid "What's happened:" msgstr "Það sem hefur gerst:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Þegar þangað er komið biðjum við þig um að uppfæra stöðuna til að láta vita hvort einhverjar gagnlegar upplýsingar séu í svarinu." @@ -3830,8 +3865,8 @@ msgstr "Af hverju telur þú þessa beiðni vera óviðeigandi?" msgid "Withdrawn" msgstr "Dregið til baka" -msgid "Withdrawn by the requester." -msgstr "Dregið til baka af beiðanda." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3857,6 +3892,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Þú stofnaðir þessa sömu hópbeiðni þann {{date}}. Þú getur annaðhvort skoðað fyrirliggjandi hópbeiðni eða breytt upplýsingunum hér fyrir neðan til að búa til nýja, svipaða hópbeiðni." @@ -4491,9 +4529,6 @@ msgstr "skrifaðu leitarorð hér" msgid "unknown" msgstr "óþekkt" -msgid "unknown reason" -msgstr "óþekkt ástæða" - msgid "unknown reason " msgstr "óþekkt ástæða" @@ -4530,9 +4565,6 @@ msgstr "{{authority_name}} hafði ekki umbeðin gögn." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} bíður eftir útskýringu frá þér." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} viðhengi" @@ -4543,6 +4575,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} athugasemd." msgstr[1] "{{count}} athugasemdir." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} fylgjandi" @@ -4687,8 +4724,8 @@ msgstr "{{reason}}. Því miður vitum við ekki netfangið fyrir upplýsingabei msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} passa við '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogg og tíst" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4701,9 +4738,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sendir nýjar beiðnir á {{request_email}} fyrir þetta stjórnvald." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Notendur {{site_name}} hafa sent {{number_of_requests}} beiðni, þar á meðal:" diff --git a/locale/is_IS/app.po b/locale/is_IS/app.po index ab7a22d859..903272c849 100644 --- a/locale/is_IS/app.po +++ b/locale/is_IS/app.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Ölvir Gíslason , 2016\n" "Language-Team: Icelandic (Iceland) (http://app.transifex.com/mysociety/alavete" @@ -182,11 +182,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Skoða öll stjórnvöld eða biðja okkur um að bæta stjórnvaldi við." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Senda nýja beiðni varðandi umhverfismál til {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Senda nýja upplýsingabeiðni til {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -271,8 +271,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: til að velja tegund þess sem á að leita að. Sjá töflu yfir tegundir hér fyrir neðan." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Heilræði um aðferðir við að fá fram svör sem beiðanda finnst fullnægjandi. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Allar upplýsingarnar hafa verið sendar" @@ -309,6 +309,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Ekkert svar hefur borist\n" @@ -364,8 +367,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ítrekun við {{request_title}} var send til '{{public_body_name}}' af '{{info_request_user}}' þann {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Svar við {{request_title}} var sent af '{{public_body_name}}' til '{{info_request_user}}' þann {{date}}. Staða upplýsingabeiðninnar er: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -411,9 +414,6 @@ msgstr "Um þig:" msgid "About {{count}} FOI requests found" msgstr "{{count}} upplýsingabeiðnir fundust" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -446,6 +446,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Bæta við stjórnvaldi - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Bæta við stjórnvaldinu:" @@ -620,24 +626,18 @@ msgstr "Bíður útskýringar" msgid "Awaiting classification" msgstr "Bíður flokkunar" -msgid "Awaiting classification." -msgstr "Bíður eftir flokkun." - msgid "Awaiting internal review" msgstr "Bíður eftir innri athugun." -msgid "Awaiting internal review." -msgstr "Bíður eftir innri athugun." - msgid "Awaiting response" msgstr "Bíður svars" -msgid "Awaiting response." -msgstr "Bíður eftir svari." - msgid "Back to content" msgstr "Aftur í efni" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -674,11 +674,8 @@ msgstr "Skoða öll stjórnvöld →" msgid "Browse all requests →" msgstr "Skoða allar upplýsingabeiðnir →" -msgid "Browse and search requests" -msgstr "Skoða allar upplýsingabeiðnir" - -msgid "Browse and search requests (page {{count}})" -msgstr "Skoða allar upplýsingabeiðnir (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -686,8 +683,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Skoða upplýsingabeiðnir" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Lögum samkvæmt er þeim skylt að svara." @@ -707,6 +704,12 @@ msgstr "Lögum samkvæmt ætti {{public_body_link}} að hafa svarað svo msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Finnurðu ekki það sem þú leitar að?" @@ -779,6 +782,9 @@ msgstr "Útskýrðu upplýsingabeiðnina - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Flokkaðu upplýsingabeiðni frá {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Flokka svör" @@ -845,10 +851,10 @@ msgstr "Staðfestu netfangið þitt" msgid "Confirm your new email address on {{site_name}}" msgstr "Staðfestu nýtt netfang þitt fyrir {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -917,6 +923,9 @@ msgstr "Beðið eftir svari frá {{public_body_link}}, þau æt msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dagsetning:" @@ -944,15 +953,15 @@ msgstr "Seinkað" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Upplýsingabeiðni þinni, {{request_title}}, hefur ekki verið svarað tímanlega" -msgid "Delayed." -msgstr "Seinkað." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Afhendingarstaða útsends skeytis #{{id}}" msgid "Delivery error" msgstr "Villa í sendingu" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Upplýsingar um beiðni “{{request_title}}”" @@ -989,10 +998,7 @@ msgstr "Lokið" msgid "Done >>" msgstr "Lokið >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1001,6 +1007,9 @@ msgstr "Sækja zip-skrá með öllum samskiptum" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Sækja upprunalegt viðhengi" @@ -1013,9 +1022,27 @@ msgstr "Lög um upplýsingarétt um umhverfismál" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Breyttu ofangreindum skilaboðum og bættu við meiri upplýsingum til að útskýra af hverju þér finnst svar þeirra ófullnægjandi." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Breyttu textanum um þig" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Breyta þessari beiðni" @@ -1081,6 +1108,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1093,8 +1123,8 @@ msgstr "" msgid "FOI" msgstr "Upplýsingabeiðni" -msgid "FOI email address for {{public_body}}" -msgstr "Netfang fyrir upplýsingabeiðnir til {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Lög um upplýsingaskyldu eiga ekki við um þetta stjórnvald." @@ -1135,6 +1165,9 @@ msgstr "Finndu stjórnvöld" msgid "Find the authorities to write to" msgstr "Finndu stjórnvöld til að senda á" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Í fyrsta lagi, heppnuðust hinar beiðnirnar?" @@ -1185,9 +1218,6 @@ msgstr "Ítreka" msgid "Follow up message sent by requester" msgstr "Ítrekunarskilaboð frá beiðanda" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Ítrekanir á fyrirliggjandi beiðnum er sendar til {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ítrekun send til {{public_body_name}} af {{info_request_user}} þann {{date}}." @@ -1200,8 +1230,8 @@ msgstr "Ítrekanir og ný svör við þessari beiðni hafa verið stöðvuð til msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Fylgstu með okkur á twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Fylgist með" @@ -1222,16 +1252,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Fann {{count}} stjórnvald sem byrjar á ‘{{first_letter}}’" msgstr[1] "Fann {{count}} stjórnvöld sem byrja á ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Fann {{count}} stjórnvald í flokknum ‘{{category_name}}’" -msgstr[1] "Fann {{count}} stjórnvöld í flokknum ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Fann {{count}} stjórnvald með taggið ‘{{tag_name}}’" msgstr[1] "Fann {{count}} stjórnvöld með taggið ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1244,9 +1279,6 @@ msgstr "Lög um upplýsingarétt" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Lög um upplýsingaskyldu eiga ekki við um þetta stjórnvald svo ekki er hægt að leggja fram beiðni til þess." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Lög um upplýsingaskyldu eiga ekki lengur við um þetta stjórnvald. Ítrekanir á fyrirliggjandi beiðnum eru sendar til {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Lög um upplýsingaskyldu eiga ekki lengur við um {{public_body_name}}." @@ -1297,13 +1329,10 @@ msgstr "Þegar með reikning?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1327,6 +1356,9 @@ msgstr "Halló! Þú getur sent upplýsingabeiðni sem á við um {{country_name msgid "Help" msgstr "Hjálp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Hjálpaðu okkur að flokka beiðnir sem hafa ekki verið uppfærðar" @@ -1419,9 +1451,6 @@ msgstr "Ég fékk villuboð" msgid "I've received an error message" msgstr "Ég fékk villuboð" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ef netfangið er ekki rétt eða ef þú veist um betra netfang, vinsamlegast hafðu þá samband." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ef villan kom upp við sendingu og þú getur fundið uppfært netfang til að senda stjórnvaldinu upplýsingabeiðni skaltu láta okkur vita hér fyrir neðan." @@ -1482,11 +1511,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ef þú hefur ekki gert það nú þegar skaltu skrifa skilaboð hér fyrir neðan þar sem þú lætur stjórnvaldið vita að þú hafir dregið beiðnina til baka. Annars vita viðkomandi ekki að hún hafi verið afturkölluð." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Ef þú veist hvaða heimilisfang skal notast við, vinsamlegast sendið okkur það þá.\n" -" Þú getur hugsanlega fundið heimilisfangið á vefnum hjá stofnuninni eða með því að hringja." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ef þú svarar þessum pósti fer það beint til '{{user_name}}', sem mun þá\n" @@ -1523,9 +1547,6 @@ msgstr "Gerðu reikninginn þinn öruggari" msgid "In progress" msgstr "Í vinnslu" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Látið fylgja með hlekki á vefsíður, blogg eða Twitter sem tengjast beiðninni. Þeir verða tengdir svo fólk geti fræðst um beiðnina. Til dæmis:" @@ -1538,9 +1559,6 @@ msgstr "Einstakar beiðnir" msgid "Information not held" msgstr "Upplýsingar ekki tiltækar" -msgid "Information not held." -msgstr "Upplýsingar ekki tiltækar." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Upplýsingar um útblástur og losun (t.d. hávaðamengun, orkugjafa, geislavirkni, úrgangsefni)" @@ -1565,6 +1583,9 @@ msgstr "Ógilt einnota lykilorð" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Er '{{email_address}}' ekki rétt netfang fyrir {{law_used_full}} til '{{public_body_name}}'? Ef svo er, vinsamlegast hafðu samband í gegnum þetta eyðublað:" @@ -1586,12 +1607,12 @@ msgstr "Skráði sig {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Skráði sig á {{site_name}} árið {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Eitt enn" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Passaðu upp á aðgangskóðann. Þú þarft hann til að staðfesta reiknginn þinn þegar þú breytir lykilorðinu. Þú getur notað lykilorðastjóra eða prentað kóðann út og geymt hann á öruggum stað." - msgid "Keep your request up to date" msgstr "Haltu beiðninni þinni uppfærðri" @@ -1634,6 +1655,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1655,9 +1679,6 @@ msgstr "Skráðu þig inn í stjórnborðið" msgid "Long overdue" msgstr "Timamörk löngu liðin" -msgid "Long overdue." -msgstr "Tímamörk löngu liðin." - msgid "Made between" msgstr "Sent milli" @@ -1754,9 +1775,6 @@ msgstr "Krefst athugunar stjórnenda" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nýjar upplýsingabeiðnir" @@ -1790,9 +1808,6 @@ msgstr "Nýjar uppfærslur á beiðninni '{{request_title}}'" msgid "Newest results first" msgstr "Nýjustu niðurstöður fyrst" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Áfram" @@ -1874,6 +1889,9 @@ msgstr "Fjöldi beiðni felur færslur smám saman" msgid "Number of requests" msgstr "Fjöldi beiðna" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "EÐA fjarlægðu fyrirliggjandi mynd" @@ -1937,9 +1955,6 @@ msgstr "Tókst að hluta" msgid "Partially successful" msgstr "Gögn bárust að hluta" -msgid "Partially successful." -msgstr "Gögn bárust að hluta." - msgid "Password is not correct" msgstr "Lykilorð er ekki rétt" @@ -2211,6 +2226,9 @@ msgstr "Prenta einnota aðgangskóða" msgid "Privacy and cookies" msgstr "Persónuvernd og kökur" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Prófílmynd fyrir {{user_name}}" @@ -2220,6 +2238,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Stjórnvöld" @@ -2301,9 +2322,6 @@ msgstr "Nýlega lýstar niðurstöður fyrst" msgid "Refused" msgstr "Synjað" -msgid "Refused." -msgstr "Synjað" - msgid "Regenerate one time passcode" msgstr "Endurhlaða einnota aðgangskóða" @@ -2343,8 +2361,8 @@ msgstr "Tilkynna þessa beiðni" msgid "Reported" msgstr "Tilkynnt" -msgid "Reported for administrator attention." -msgstr "Tilkynnt til stjórnenda" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Stjórnendur vefsins eru látnir vita þegar beiðni er tilkynnt. Þeir bregðast við svo fljótt sem auðið er." @@ -2358,6 +2376,9 @@ msgstr "Biðja um innri athugun" msgid "Request an internal review from {{person_or_body}}" msgstr "Biðja um innri athugun hjá {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2415,6 +2436,9 @@ msgstr "Beiðnir verða sendar til eftirfarandi:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Svara með tölvupósti" @@ -2493,6 +2517,12 @@ msgstr "" msgid "Search queries" msgstr "Leita í fyrirspurnum" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Leitarniðurstöður" @@ -2508,6 +2538,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Senda svar/viðbót" @@ -2556,6 +2592,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2579,6 +2620,9 @@ msgstr "Veldu mynd af þér" msgid "Share on Facebook" msgstr "Deila á Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2796,9 +2840,6 @@ msgstr "Frágengnar upplýsingabeiðnir" msgid "Successful requests" msgstr "Heppnaðar beiðnir" -msgid "Successful." -msgstr "Gögn bárust." - msgid "Suggest how the requester can find the rest of the information." msgstr "Leggðu til hvernig beiðandinn geti fengið það sem upp á vantar af upplýsingunum." @@ -2826,6 +2867,9 @@ msgstr "Tögg:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Takk fyrir að hjálpa okkur við að halda vefnum við!" @@ -2891,6 +2935,12 @@ msgstr "Vefslóðin þar sem þú fannst greinina." 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 "Slóðin þar sem þú fannst netfangið. Ekki er nauðsynlegt að fylla þetta út, en það myndi hjálpa okkur mikið að fá tengil á síðu hjá stjórnvaldinu þar sem þetta netfang kemur fram, þar sem það auðveldar okkur til muna að kanna málið." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Reikningarnir eru enn eins og þeir voru áður." @@ -2951,12 +3001,6 @@ msgstr "Síðasti notandi var stofnaður á síðasta sólarhring" msgid "The last user was created over a day ago" msgstr "Nýjasti notandinn var stofnaður fyrir meira en degi síðan" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Síðan er ekki til. Þú getur reynt þetta:" @@ -3140,8 +3184,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Ekkert til að sýna enn." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Það var villa í sendingu eða álíka villa sem krefst þess að umsjónarmenn {{site_name}} gangi í málið." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Það kom upp villa í reCAPTCHA-vörninni. Reyndu aftur." @@ -3524,12 +3568,6 @@ msgstr "Prófaðu að opna annálana í nýjum glugga." msgid "Turn off email alerts" msgstr "Slökkva á tölvupósti með uppfærslum" -msgid "Tweet it" -msgstr "Tvíta þessu" - -msgid "Tweet this request" -msgstr "Tvíta þessari beiðni" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Tvíþætt sannvottun eykur öryggi á reikningnum þar sem meiri upplýsingar þarf til að endurstilla lykilorðið." @@ -3596,8 +3634,8 @@ msgstr "Afskrá" msgid "Unusual response" msgstr "Óvenjulegt svar" -msgid "Unusual response." -msgstr "Óvenjulegt svar." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Uppfæra netfang - {{public_body_name}}" @@ -3635,23 +3673,14 @@ msgstr "Tilefnislaus eða ögrandi" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Sjá netfang" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Sjá netfang hjá '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Sjá netfang hjá {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Skoðaðu upplýsingabeiðnir útbúnar af '{{user_name}}':" msgid "View authorities" msgstr "Skoða stjórnvöld" -msgid "View email" -msgstr "Sjá netfang" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Skoða upplýsingar um færsluferil" @@ -3659,11 +3688,17 @@ msgstr "Skoða upplýsingar um færsluferil" msgid "View other requests to {{public_body}}" msgstr "Skoða aðrar beiðnir til {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Skoða tvíþætta einnota aðgangskóðann" -msgid "Waiting clarification." -msgstr "Beðið eftir útskýringu." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Bíð eftirinnri athugun hjá {{public_body_link}} um meðferð þessarar upplýsingabeiðni." @@ -3695,9 +3730,6 @@ msgstr "Við gátum ekki hlaðið annála póstþjónsins fyrir þetta skeyti." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Við erum ekki með gilt netfang fyrir beiðnir til þessa stjórnvalds." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Við erum ekki með virkt netfang vegna {{law_used_full}} hjá {{public_body_name}}." @@ -3806,6 +3838,9 @@ msgstr "" msgid "What's happened:" msgstr "Það sem hefur gerst:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Þegar þangað er komið biðjum við þig um að uppfæra stöðuna til að láta vita hvort einhverjar gagnlegar upplýsingar séu í svarinu." @@ -3830,8 +3865,8 @@ msgstr "Af hverju telur þú þessa beiðni vera óviðeigandi?" msgid "Withdrawn" msgstr "Dregið til baka" -msgid "Withdrawn by the requester." -msgstr "Dregið til baka af beiðanda." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3857,6 +3892,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Þú stofnaðir þessa sömu hópbeiðni þann {{date}}. Þú getur annaðhvort skoðað fyrirliggjandi hópbeiðni eða breytt upplýsingunum hér fyrir neðan til að búa til nýja, svipaða hópbeiðni." @@ -4491,9 +4529,6 @@ msgstr "skrifaðu leitarorð hér" msgid "unknown" msgstr "óþekkt" -msgid "unknown reason" -msgstr "óþekkt ástæða" - msgid "unknown reason " msgstr "óþekkt ástæða" @@ -4530,9 +4565,6 @@ msgstr "{{authority_name}} hafði ekki umbeðin gögn." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} bíður eftir útskýringu frá þér." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} viðhengi" @@ -4543,6 +4575,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} athugasemd." msgstr[1] "{{count}} athugasemdir." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} fylgjandi" @@ -4687,8 +4724,8 @@ msgstr "{{reason}}. Því miður vitum við ekki netfangið fyrir upplýsingabei msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} passa við '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogg og tíst" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4701,9 +4738,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sendir nýjar beiðnir á {{request_email}} fyrir þetta stjórnvald." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Notendur {{site_name}} hafa sent {{number_of_requests}} beiðni, þar á meðal:" diff --git a/locale/it/app.po b/locale/it/app.po index bef09c6bb0..c09640e837 100644 --- a/locale/it/app.po +++ b/locale/it/app.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Marco Giustini , 2013\n" "Language-Team: Italian (http://app.transifex.com/mysociety/alaveteli/language/" @@ -188,11 +188,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Guarda tutte o chiedici di aggiungerne una." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Invia una richiesta di accesso su informazioni ambientali a \"{{public_body_name}}\"" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Invia una nuova richiesta di accesso a \"{{public_body_name}}\"" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -274,8 +274,8 @@ msgstr "Usa ad esempio tag:ambiente per trovare tu msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: per fare una ricerca basata sul tipo di elemento da cercare, guardare la tabella qui sotto." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consigli su come ottenere una risposta soddisfacente per il richiedente." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Tutte le informazioni sono state inviate" @@ -312,6 +312,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Nessuna risposta è stata ricevuta (forse si tratta solo di una conferma di ricezione)" @@ -362,8 +365,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Una richiesta di aggiornamento a {{request_title}} è stata spedita a \"{{public_body_name}}\" da {{info_request_user}} il {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una risposta a {{request_title}} è stata spedita da \"{{public_body_name}}\" a {{info_request_user}} il {{date}}. Lo stato della richiesta è: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -409,9 +412,6 @@ msgstr "Bio:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -442,6 +442,12 @@ msgstr "Aggiungi un'annotazione alla tua richiesta trascrivendone alcune parti o msgid "Add authority - {{public_body_name}}" msgstr "Aggiungi amministrazione - \"{{public_body_name}}\"" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Aggiungi l'amministrazione:" @@ -610,24 +616,18 @@ msgstr "In attesa di chiarimenti" msgid "Awaiting classification" msgstr "In attesa di classificazione" -msgid "Awaiting classification." -msgstr "In attesa di classificazione." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "In attesa di revisione interna." - msgid "Awaiting response" msgstr "In attesa di risposta" -msgid "Awaiting response." -msgstr "In attesa di risposta." - msgid "Back to content" msgstr "Torna indietro" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -664,11 +664,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Guarda tutte le richieste →" -msgid "Browse and search requests" -msgstr "Cerca tra le richieste inviate" - -msgid "Browse and search requests (page {{count}})" -msgstr "Consulta le richieste già inviate (pagina {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -676,8 +673,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Archivio richieste" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Per legge, devono rispondere." @@ -697,6 +694,12 @@ msgstr "Per legge, l'amministrazione {{public_body_link}} dovrebbe aver risposto msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Non trovi quella che cerchi?" @@ -769,6 +772,9 @@ msgstr "Spiega meglio l'oggetto della tua richiesta di accesso - {{request_title msgid "Classify an FOI response from {{authority_name}}" msgstr "Classifica una risposta da parte di \"{{authority_name}}\"" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -835,10 +841,10 @@ msgstr "Conferma il tuo indirizzo email" msgid "Confirm your new email address on {{site_name}}" msgstr "Conferma il tuo nuovo indirizzo email su {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -907,6 +913,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Data:" @@ -934,15 +943,15 @@ msgstr "In ritardo" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Risposta in ritardo per la tua richiesta - {{request_title}}" -msgid "Delayed." -msgstr "In ritardo." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Stato di consegna per il messaggio in uscita #{{id}}" msgid "Delivery error" msgstr "Errore di invio" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Dettagli sulla richiesta “{{request_title}}”" @@ -979,10 +988,7 @@ msgstr "Fatto" msgid "Done >>" msgstr "Fatto >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -991,6 +997,9 @@ msgstr "Scarica un file .zip di tutta la corrispondenza" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Scarica l'allegato originale" @@ -1003,9 +1012,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Modifica e aggiungi maggiori dettagli al messaggio, spiegando perché non sei soddisfatto della loro risposta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifica il testo della tua bio" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifica la tua richiesta" @@ -1066,6 +1093,9 @@ msgstr "Tutto ciò che scrivi in questa pagina, incluso il tuo nome{{authority_email}}." -msgstr "I messaggi di risposta sono inviati a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Messaggi di risposta spediti a \"{{public_body_name}}\" da {{info_request_user}} il {{date}}." @@ -1185,8 +1215,8 @@ msgstr "Messaggi di risposta e nuove ulteriori risposte a questa richiesta sono msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Seguici su Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Stai seguendo" @@ -1209,11 +1239,10 @@ msgstr[0] "Trovata {{count}} pubblica amministrazione che inizia con ‘{{first_ msgstr[1] "Trovate {{count}} pubbliche amministrazioni che iniziano con ‘{{first_letter}}’" msgstr[2] "Trovate {{count}} pubbliche amministrazioni che iniziano con ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Trovata {{count}} pubblica amministrazione nella categoria ‘{{category_name}}’" -msgstr[1] "Trovate {{count}} pubbliche amministrazioni nella categoria \"{{category_name}}\"" -msgstr[2] "Trovate {{count}} pubbliche amministrazioni nella categoria \"{{category_name}}\"" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1221,6 +1250,11 @@ msgstr[0] "Trovata {{count}} pubblica amministrazione con il tag ‘{{tag_name}} msgstr[1] "Trovate {{count}} pubbliche amministrazioni con il tag \"{{tag_name}}\"" msgstr[2] "Trovate {{count}} pubbliche amministrazioni con il tag \"{{tag_name}}\"" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1233,9 +1267,6 @@ msgstr "Decreto Trasparenza (D.lgs. 33/2013)" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Il Decreto Trasparenza non si applica a questa amministrazione, quindi non puoi inviare una richiesta." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Il Decreto Trasparenza non si applica a questa pubblica amministrazione. I messaggi di risposta saranno inviati a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Il Decreto Trasparenza non si applica più a \"{{public_body_name}}\"." @@ -1284,13 +1315,10 @@ msgstr "Hai un account?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1314,6 +1342,9 @@ msgstr "Ciao! Puoi inviare richieste di accesso in {{country_name}} attraverso { msgid "Help" msgstr "Per informazioni" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Aiutaci a classificare le richieste che non sono state aggiornate" @@ -1409,9 +1440,6 @@ msgstr "Ho ricevuto un messaggio di errore" msgid "I've received an error message" msgstr "È apparso un messaggio di errore" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Se l'indirizzo è sbagliato o se ne conosci uno più specifico per le richieste di accesso, per favore, contattaci." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Se l'errore è dovuto a un problema di consegna del messaggio e riesci a trovare un indirizzo email aggiornato per le richieste di accesso, comunicacelo usando il modulo qui sotto, per favore." @@ -1469,11 +1497,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Se non lo hai già fatto, per favore scrivi un messaggio qui sotto, spiegando all'amministrazione che hai ritirato la tua richiesta. Se non lo fai, non ne saranno informati." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Se sai quale indirizzo usare, per favore inviacelo.\n" -" Puoi trovare l'indirizzo sul loro sito o chiederlo per telefono." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Se rispondi a questo messaggio, la tua email andrà direttamente a {{user_name}}, che visualizzerà il tuo indirizzo di posta. Rispondi solo se questo non è un problema per te. " @@ -1509,9 +1532,6 @@ msgstr "Aumenta la sicurezza del tuo account" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Includi link pertinenti, per esempio alla pagina di una campagna, al tuo blog o al tuo account Twitter. I link diventeranno attivi \n" @@ -1526,9 +1546,6 @@ msgstr "Richieste individuali" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "La pubblica amministrazione non possiede l'informazione richiesta." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informazioni su emissioni e scarichi (es. rumore, energia, radiazioni, rifiuti)" @@ -1553,6 +1570,9 @@ msgstr "Password monouso non valida" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "{{email_address}} è l'indirizzo sbagliato per le richieste di accesso a \"{{public_body_name}}\"? Se sì, scrivici usando questo modulo:" @@ -1574,12 +1594,12 @@ msgstr "Iscritto dal {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Iscritto a {{site_name}} dal {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Ancora una cosa" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Conserva questo PIN. Ti servirà per confermare il tuo account quando cambi la tua password. Puoi aggiungerlo a un programma di gestione delle password o stamparlo e conservarlo in un posto sicuro." - msgid "Keep your request up to date" msgstr "Mantieni aggiornata la tua richiesta" @@ -1622,6 +1642,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1643,9 +1666,6 @@ msgstr "Accedi al pannello di controllo per gli amministratori" msgid "Long overdue" msgstr "In forte ritardo" -msgid "Long overdue." -msgstr "In forte ritardo." - msgid "Made between" msgstr "Inviate tra il" @@ -1742,9 +1762,6 @@ msgstr "Serve l'intervento dell'amministratore" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuova richiesta di accesso" @@ -1778,9 +1795,6 @@ msgstr "Aggiornamenti sulla richiesta '{{request_title}}'" msgid "Newest results first" msgstr "Risultati più recenti in alto" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Prossimo" @@ -1862,6 +1876,9 @@ msgstr "Alcune richieste hanno delle parti nascoste a volte" msgid "Number of requests" msgstr "Numero di richieste" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OR rimuovi la foto esistente" @@ -1925,9 +1942,6 @@ msgstr "Risposta parzialmente soddisfacente" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Parzialmente soddisfacente." - msgid "Password is not correct" msgstr "La password è errata" @@ -2200,6 +2214,9 @@ msgstr "Stampa la tua password monouso" msgid "Privacy and cookies" msgstr "Privacy e cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Immagine del profilo di {{user_name}}" @@ -2209,6 +2226,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Pubbliche amministrazioni" @@ -2290,9 +2310,6 @@ msgstr "Mostra prima risultati più recenti" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rifiutato." - msgid "Regenerate one time passcode" msgstr "Rigenera la password monouso" @@ -2332,8 +2349,8 @@ msgstr "Segnala questa richiesta" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Segnalata all'attenzione dell'amministratore del sito." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "La segnalazione di una richiesta è stata inviata agli amministratori del sito. Riceverai risposta al più presto." @@ -2347,6 +2364,9 @@ msgstr "Richiedi una revisione interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Richiedi una revisione interna da {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2404,6 +2424,9 @@ msgstr "Le richieste verranno spedite ai seguenti uffici:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Rispondi via email" @@ -2482,6 +2505,12 @@ msgstr "" msgid "Search queries" msgstr "Search queries" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Risultati della ricerca" @@ -2497,6 +2526,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Invia un messaggio di risposta" @@ -2545,6 +2580,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2569,6 +2609,9 @@ msgstr "Imposta la foto del tuo profilo" msgid "Share on Facebook" msgstr "Condividi su Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2784,9 +2827,6 @@ msgstr "Richieste di accesso con risposta soddisfacente" msgid "Successful requests" msgstr "Richieste pienamente soddisfacenti" -msgid "Successful." -msgstr "Pienamente soddisfacente." - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggerisci dove il richiedente può trovare il resto delle informazioni." @@ -2814,6 +2854,9 @@ msgstr "Tag: " msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Grazie per averci dato una mano a tenere il sito in ordine!" @@ -2877,6 +2920,12 @@ 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 "La pagina dove hai trovato l'indirizzo email. Il campo è facoltativo, ma ci aiuterebbe molto avere la pagina del sito dell'amministrazione che segnala questo indirizzo: in questo modo potremo controllare più rapidamente." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Gli account sono stati lasciati immutati." @@ -2937,12 +2986,6 @@ msgstr "L'ultimo profilo utente è stato creato nelle ultime 24 ore" msgid "The last user was created over a day ago" msgstr "L'ultimo profilo utente è stato creato più di un giorno fa" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La pagina non esiste. Ecco cosa puoi fare:" @@ -3122,8 +3165,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Non c'è ancora niente da mostrare." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "C'è stato un errore di spedizione, lo staff di {{site_name}} sta lavorando per risolvere il problema." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "C'è stato un errore con il reCAPTCHA. Per favore, riprova." @@ -3507,12 +3550,6 @@ msgstr "Prova ad aprire i logs in una nuova finestra." msgid "Turn off email alerts" msgstr "Interrompi le notifiche email" -msgid "Tweet it" -msgstr "Twitta" - -msgid "Tweet this request" -msgstr "Twitta questa richiesta" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "L'autenticazione a due fattori rende il tuo account più sicuro richiedendoti più informazioni per resettare la tua password." @@ -3579,8 +3616,8 @@ msgstr "Disiscriviti" msgid "Unusual response" msgstr "Risposta insolita." -msgid "Unusual response." -msgstr "Risposta insolita." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Aggiorna l'indirizzo email - \"{{public_body_name}}\"" @@ -3618,23 +3655,14 @@ msgstr "Vessatorio" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Visualizza l'indirizzo per le richieste di accesso" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Visualizza l'indirizzo per le richieste di accesso a \"{{public_body_name}}\"" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Visualizza l'indirizzo per le richieste di accesso a \"{{public_body_name}}\"" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Guarda le richieste di accesso fatte da {{user_name}}:" msgid "View authorities" msgstr "A chi puoi chiedere?" -msgid "View email" -msgstr "Visualizza l'email" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Guarda la cronologia" @@ -3642,11 +3670,17 @@ msgstr "Guarda la cronologia" msgid "View other requests to {{public_body}}" msgstr "Visualizza le altre richieste inviate a \"{{public_body}}\"" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Visualizza la tua password monouso per l'autenticazione a due fattori" -msgid "Waiting clarification." -msgstr "In attesa di ulteriori chiarimenti." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "L'amministrazione {{public_body_link}} sta effettuando una revisione interna della gestione di questa richiesta. " @@ -3678,9 +3712,6 @@ msgstr "Non è stato possibile caricare alcun log dal server per questo messaggi msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Non abbiamo un indirizzo di posta elettronica valido per questa amministrazione." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Non abbiamo un indirizzo valido per \"{{public_body_name}}\" per le richieste di accesso secondo il {{law_used_full}}." @@ -3786,6 +3817,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "A quel punto, per favore, aggiorna lo stato della richiesta in modo da segnalare se la risposta contenga informazioni utili." @@ -3810,8 +3844,8 @@ msgstr "Perché considerate questa richiesta inadatta?" msgid "Withdrawn" msgstr "Ritirata" -msgid "Withdrawn by the requester." -msgstr "Ritirata dal richiedente." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3837,6 +3871,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Hai già creato lo stesso gruppo di richieste il {{date}}. Puoi guardare il gruppo esistente, o modificare i dettagli qui sotto per creare un gruppo di richieste simili." @@ -4476,9 +4513,6 @@ msgstr "inserisci qui la parola da ricercare" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo sconosciuto" - msgid "unknown reason " msgstr "motivo sconosciuto" @@ -4515,9 +4549,6 @@ msgstr "\"{{authority_name}}\" non aveva l'informazione richies msgid "{{authority_name}} is waiting for your clarification." msgstr "\"{{authority_name}}\" è in attesa di ulteriori spiegazioni da parte tua." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Allegato" @@ -4530,6 +4561,11 @@ msgstr[0] "{{count}} annotazione aggiunta." msgstr[1] "{{count}} annotazioni aggiunte." msgstr[2] "{{count}} annotazioni aggiunte." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} follower" @@ -4683,8 +4719,8 @@ msgstr "{{reason}}. Non abbiamo un indirizzo email per le richieste di accesso a msgid "{{search_results}} matching '{{query}}'" msgstr "'{{query}}' ha prodotto {{search_results}} " -msgid "{{site_name}} blog and tweets" -msgstr "Il blog e i tweet di {{site_name}} " +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4697,9 +4733,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} invia nuove richieste a {{request_email}} per questa amministrazione." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/it_IT/app.po b/locale/it_IT/app.po index 7158a10f90..21aba27e53 100644 --- a/locale/it_IT/app.po +++ b/locale/it_IT/app.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Marco Giustini , 2013\n" "Language-Team: Italian (Italy) (http://app.transifex.com/mysociety/alaveteli/l" @@ -184,10 +184,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Guarda tutte o chiedici di aggiungerne una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -270,8 +270,8 @@ msgstr "Usa ad esempio tag:ambiente per trovare tu msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: per fare una ricerca basata sul tipo di elemento da cercare, guardare la tabella qui sotto." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Consigli su come ottenere una risposta soddisfacente per il richiedente." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Tutte le informazioni sono state inviate" @@ -308,6 +308,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Nessuna risposta è stata ricevuta (forse si tratta solo di una conferma di ricezione)" @@ -358,8 +361,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Una richiesta di aggiornamento a {{request_title}} è stata spedita a \"{{public_body_name}}\" da {{info_request_user}} il {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Una risposta a {{request_title}} è stata spedita da \"{{public_body_name}}\" a {{info_request_user}} il {{date}}. Lo stato della richiesta è: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -405,9 +408,6 @@ msgstr "Bio:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -438,6 +438,12 @@ msgstr "Aggiungi un'annotazione alla tua richiesta trascrivendone alcune parti o msgid "Add authority - {{public_body_name}}" msgstr "Aggiungi amministrazione - \"{{public_body_name}}\"" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Aggiungi l'amministrazione:" @@ -606,24 +612,18 @@ msgstr "In attesa di chiarimenti" msgid "Awaiting classification" msgstr "In attesa di classificazione" -msgid "Awaiting classification." -msgstr "In attesa di classificazione." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "In attesa di revisione interna." - msgid "Awaiting response" msgstr "In attesa di risposta" -msgid "Awaiting response." -msgstr "In attesa di risposta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -660,11 +660,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Guarda tutte le richieste →" -msgid "Browse and search requests" -msgstr "Cerca tra le richieste inviate" - -msgid "Browse and search requests (page {{count}})" -msgstr "Consulta le richieste già inviate (pagina {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -672,8 +669,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Archivio richieste" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Per legge, devono rispondere." @@ -693,6 +690,12 @@ msgstr "Per legge, l'amministrazione {{public_body_link}} dovrebbe aver risposto msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Non trovi quella che cerchi?" @@ -765,6 +768,9 @@ msgstr "Spiega meglio l'oggetto della tua richiesta di accesso - {{request_title msgid "Classify an FOI response from {{authority_name}}" msgstr "Classifica una risposta da parte di \"{{authority_name}}\"" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -831,10 +837,10 @@ msgstr "Conferma il tuo indirizzo email" msgid "Confirm your new email address on {{site_name}}" msgstr "Conferma il tuo nuovo indirizzo email su {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -903,6 +909,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Data:" @@ -930,15 +939,15 @@ msgstr "In ritardo" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Risposta in ritardo per la tua richiesta - {{request_title}}" -msgid "Delayed." -msgstr "In ritardo." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Stato di consegna per il messaggio in uscita #{{id}}" msgid "Delivery error" msgstr "Errore di invio" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Dettagli sulla richiesta “{{request_title}}”" @@ -975,10 +984,7 @@ msgstr "Fatto" msgid "Done >>" msgstr "Fatto >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -987,6 +993,9 @@ msgstr "Scarica un file .zip di tutta la corrispondenza" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Scarica l'allegato originale" @@ -999,9 +1008,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Modifica e aggiungi maggiori dettagli al messaggio, spiegando perché non sei soddisfatto della loro risposta." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Modifica il testo della tua bio" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Modifica la tua richiesta" @@ -1062,6 +1089,9 @@ msgstr "Tutto ciò che scrivi in questa pagina, incluso il tuo nome{{authority_email}}." -msgstr "I messaggi di risposta sono inviati a {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Messaggi di risposta spediti a \"{{public_body_name}}\" da {{info_request_user}} il {{date}}." @@ -1181,8 +1211,8 @@ msgstr "Messaggi di risposta e nuove ulteriori risposte a questa richiesta sono msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Seguici su Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Stai seguendo" @@ -1205,11 +1235,10 @@ msgstr[0] "Trovata {{count}} pubblica amministrazione che inizia con ‘{{first_ msgstr[1] "Trovate {{count}} pubbliche amministrazioni che iniziano con ‘{{first_letter}}’" msgstr[2] "Trovate {{count}} pubbliche amministrazioni che iniziano con ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Trovata {{count}} pubblica amministrazione nella categoria ‘{{category_name}}’" -msgstr[1] "Trovate {{count}} pubbliche amministrazioni nella categoria \"{{category_name}}\"" -msgstr[2] "Trovate {{count}} pubbliche amministrazioni nella categoria \"{{category_name}}\"" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1217,6 +1246,11 @@ msgstr[0] "Trovata {{count}} pubblica amministrazione con il tag ‘{{tag_name}} msgstr[1] "Trovate {{count}} pubbliche amministrazioni con il tag \"{{tag_name}}\"" msgstr[2] "Trovate {{count}} pubbliche amministrazioni con il tag \"{{tag_name}}\"" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1229,9 +1263,6 @@ msgstr "Decreto Trasparenza (D.lgs. 33/2013)" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Il Decreto Trasparenza non si applica a questa amministrazione, quindi non puoi inviare una richiesta." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Il Decreto Trasparenza non si applica a questa pubblica amministrazione. I messaggi di risposta saranno inviati a {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Il Decreto Trasparenza non si applica più a \"{{public_body_name}}\"." @@ -1280,13 +1311,10 @@ msgstr "Hai un account?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1310,6 +1338,9 @@ msgstr "Ciao! Puoi inviare richieste di accesso in {{country_name}} attraverso { msgid "Help" msgstr "Per informazioni" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Aiutaci a classificare le richieste che non sono state aggiornate" @@ -1405,9 +1436,6 @@ msgstr "Ho ricevuto un messaggio di errore" msgid "I've received an error message" msgstr "È apparso un messaggio di errore" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Se l'indirizzo è sbagliato o se ne conosci uno più specifico per le richieste di accesso, per favore, contattaci." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Se l'errore è dovuto a un problema di consegna del messaggio e riesci a trovare un indirizzo email aggiornato per le richieste di accesso, comunicacelo usando il modulo qui sotto, per favore." @@ -1465,11 +1493,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Se non lo hai già fatto, per favore scrivi un messaggio qui sotto, spiegando all'amministrazione che hai ritirato la tua richiesta. Se non lo fai, non ne saranno informati." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Se sai quale indirizzo usare, per favore inviacelo.\n" -" Puoi trovare l'indirizzo sul loro sito o chiederlo per telefono." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Se rispondi a questo messaggio, la tua email andrà direttamente a {{user_name}}, che visualizzerà il tuo indirizzo di posta. Rispondi solo se questo non è un problema per te. " @@ -1505,9 +1528,6 @@ msgstr "Aumenta la sicurezza del tuo account" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Includi link pertinenti, per esempio alla pagina di una campagna, al tuo blog o al tuo account Twitter. I link diventeranno attivi \n" @@ -1522,9 +1542,6 @@ msgstr "Richieste individuali" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "La pubblica amministrazione non possiede l'informazione richiesta." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informazioni su emissioni e scarichi (es. rumore, energia, radiazioni, rifiuti)" @@ -1549,6 +1566,9 @@ msgstr "Password monouso non valida" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "{{email_address}} è l'indirizzo sbagliato per le richieste di accesso a \"{{public_body_name}}\"? Se sì, scrivici usando questo modulo:" @@ -1570,12 +1590,12 @@ msgstr "Iscritto dal {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Iscritto a {{site_name}} dal {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Ancora una cosa" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Conserva questo PIN. Ti servirà per confermare il tuo account quando cambi la tua password. Puoi aggiungerlo a un programma di gestione delle password o stamparlo e conservarlo in un posto sicuro." - msgid "Keep your request up to date" msgstr "Mantieni aggiornata la tua richiesta" @@ -1618,6 +1638,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1639,9 +1662,6 @@ msgstr "Accedi al pannello di controllo per gli amministratori" msgid "Long overdue" msgstr "In forte ritardo" -msgid "Long overdue." -msgstr "In forte ritardo." - msgid "Made between" msgstr "Inviate tra il" @@ -1738,9 +1758,6 @@ msgstr "Serve l'intervento dell'amministratore" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nuova richiesta di accesso" @@ -1774,9 +1791,6 @@ msgstr "Aggiornamenti sulla richiesta '{{request_title}}'" msgid "Newest results first" msgstr "Risultati più recenti in alto" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Prossimo" @@ -1858,6 +1872,9 @@ msgstr "" msgid "Number of requests" msgstr "Numero di richieste" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OR rimuovi la foto esistente" @@ -1921,9 +1938,6 @@ msgstr "Risposta parzialmente soddisfacente" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Parzialmente soddisfacente." - msgid "Password is not correct" msgstr "La password è errata" @@ -2196,6 +2210,9 @@ msgstr "Stampa la tua password monouso" msgid "Privacy and cookies" msgstr "Privacy e cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2205,6 +2222,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Pubbliche amministrazioni" @@ -2286,9 +2306,6 @@ msgstr "Mostra prima risultati più recenti" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Rifiutato." - msgid "Regenerate one time passcode" msgstr "Rigenera la password monouso" @@ -2328,8 +2345,8 @@ msgstr "Segnala questa richiesta" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Segnalata all'attenzione dell'amministratore del sito." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "La segnalazione di una richiesta è stata inviata agli amministratori del sito. Riceverai risposta al più presto." @@ -2343,6 +2360,9 @@ msgstr "Richiedi una revisione interna" msgid "Request an internal review from {{person_or_body}}" msgstr "Richiedi una revisione interna da {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2400,6 +2420,9 @@ msgstr "Le richieste verranno spedite ai seguenti uffici:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Rispondi via email" @@ -2478,6 +2501,12 @@ msgstr "" msgid "Search queries" msgstr "Search queries" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Risultati della ricerca" @@ -2493,6 +2522,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Invia un messaggio di risposta" @@ -2541,6 +2576,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2565,6 +2605,9 @@ msgstr "Imposta la foto del tuo profilo" msgid "Share on Facebook" msgstr "Condividi su Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2780,9 +2823,6 @@ msgstr "Richieste di accesso con risposta soddisfacente" msgid "Successful requests" msgstr "Richieste pienamente soddisfacenti" -msgid "Successful." -msgstr "Pienamente soddisfacente." - msgid "Suggest how the requester can find the rest of the information." msgstr "Suggerisci dove il richiedente può trovare il resto delle informazioni." @@ -2810,6 +2850,9 @@ msgstr "Tag: " msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Grazie per averci dato una mano a tenere il sito in ordine!" @@ -2873,6 +2916,12 @@ 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 "La pagina dove hai trovato l'indirizzo email. Il campo è facoltativo, ma ci aiuterebbe molto avere la pagina del sito dell'amministrazione che segnala questo indirizzo: in questo modo potremo controllare più rapidamente." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Gli account sono stati lasciati immutati." @@ -2933,12 +2982,6 @@ msgstr "L'ultimo profilo utente è stato creato nelle ultime 24 ore" msgid "The last user was created over a day ago" msgstr "L'ultimo profilo utente è stato creato più di un giorno fa" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "La pagina non esiste. Ecco cosa puoi fare:" @@ -3118,8 +3161,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Non c'è ancora niente da mostrare." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "C'è stato un errore di spedizione, lo staff di {{site_name}} sta lavorando per risolvere il problema." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "C'è stato un errore con il reCAPTCHA. Per favore, riprova." @@ -3503,12 +3546,6 @@ msgstr "Prova ad aprire i logs in una nuova finestra." msgid "Turn off email alerts" msgstr "Interrompi le notifiche email" -msgid "Tweet it" -msgstr "Twitta" - -msgid "Tweet this request" -msgstr "Twitta questa richiesta" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "L'autenticazione a due fattori rende il tuo account più sicuro richiedendoti più informazioni per resettare la tua password." @@ -3575,8 +3612,8 @@ msgstr "Disiscriviti" msgid "Unusual response" msgstr "Risposta insolita." -msgid "Unusual response." -msgstr "Risposta insolita." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Aggiorna l'indirizzo email - \"{{public_body_name}}\"" @@ -3614,23 +3651,14 @@ msgstr "Vessatorio" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Visualizza l'indirizzo per le richieste di accesso" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Visualizza l'indirizzo per le richieste di accesso a \"{{public_body_name}}\"" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Visualizza l'indirizzo per le richieste di accesso a \"{{public_body_name}}\"" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Guarda le richieste di accesso fatte da {{user_name}}:" msgid "View authorities" msgstr "A chi puoi chiedere?" -msgid "View email" -msgstr "Visualizza l'email" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3638,11 +3666,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Visualizza le altre richieste inviate a \"{{public_body}}\"" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Visualizza la tua password monouso per l'autenticazione a due fattori" -msgid "Waiting clarification." -msgstr "In attesa di ulteriori chiarimenti." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "L'amministrazione {{public_body_link}} sta effettuando una revisione interna della gestione di questa richiesta. " @@ -3674,9 +3708,6 @@ msgstr "Non è stato possibile caricare alcun log dal server per questo messaggi msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Non abbiamo un indirizzo di posta elettronica valido per questa amministrazione." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Non abbiamo un indirizzo valido per \"{{public_body_name}}\" per le richieste di accesso secondo il {{law_used_full}}." @@ -3782,6 +3813,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "A quel punto, per favore, aggiorna lo stato della richiesta in modo da segnalare se la risposta contenga informazioni utili." @@ -3806,8 +3840,8 @@ msgstr "Perché considerate questa richiesta inadatta?" msgid "Withdrawn" msgstr "Ritirata" -msgid "Withdrawn by the requester." -msgstr "Ritirata dal richiedente." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3833,6 +3867,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Hai già creato lo stesso gruppo di richieste il {{date}}. Puoi guardare il gruppo esistente, o modificare i dettagli qui sotto per creare un gruppo di richieste simili." @@ -4472,9 +4509,6 @@ msgstr "inserisci qui la parola da ricercare" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motivo sconosciuto" - msgid "unknown reason " msgstr "motivo sconosciuto" @@ -4511,9 +4545,6 @@ msgstr "\"{{authority_name}}\" non aveva l'informazione richies msgid "{{authority_name}} is waiting for your clarification." msgstr "\"{{authority_name}}\" è in attesa di ulteriori spiegazioni da parte tua." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4525,6 +4556,11 @@ msgstr[0] "{{count}} annotazione aggiunta." msgstr[1] "{{count}} annotazioni aggiunte." msgstr[2] "{{count}} annotazioni aggiunte." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} follower" @@ -4676,8 +4712,8 @@ msgstr "{{reason}}. Non abbiamo un indirizzo email per le richieste di accesso a msgid "{{search_results}} matching '{{query}}'" msgstr "'{{query}}' ha prodotto {{search_results}} " -msgid "{{site_name}} blog and tweets" -msgstr "Il blog e i tweet di {{site_name}} " +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4690,9 +4726,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} invia nuove richieste a {{request_email}} per questa amministrazione." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ka/app.po b/locale/ka/app.po index 5796e118e1..48341a90d4 100644 --- a/locale/ka/app.po +++ b/locale/ka/app.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Natalie Hiirulainen , 2021,2023\n" "Language-Team: Georgian (http://app.transifex.com/mysociety/alaveteli/language" @@ -181,11 +181,11 @@ msgstr "60 წუთი+" msgid "Browse all or ask us to add one." msgstr "გაეცანი დაწესებულებების ჩამონათვალს ან მოგვმართე ახლის დამატების მოთხოვნით." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "გარემოსდაცვითი ინფორმაციის გამოთხოვა საჯარო დაწესებულებისგან - {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "ან მოითხოვე საჯარო ინფორმაცია დაწესებულებისგან {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "შედი, რომ მიიღო ინფორმაცია თემებზე, რომლებიც გამოწერილი გაქვს ან თავიდან გააქტიურო ელ. ფოსტის შეტყობინებები. " @@ -264,8 +264,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "ვარიაცია: ძებენის ობიექტის საპოვნელად, გაეცანი ვარიაციების ცხრილს ქვემოთ." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "რჩევა, თუ როგორ შევიმუშავოთ პასუხი, რომელიც განმცხადებელს დააკმაყოფილებს. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "ყველა ინფორმაცია გაგზავნილია." @@ -300,6 +300,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "ჟურნალისტი, სამეცნიერო წრის წარმომადგენელი ან მოწინავე მომხმარებელი? {{pro_site_link}} საჯარო ინფორმაციის გაცემასთან დაკავშირებული, ერთ სივრცეში მოქცეული ინსტრუქციების ერთობლიობაა, რომელიც მოიცავს ყველა საჭირო წვრილმანს საჯარო ინფორმაციაზე დაფუძნებული, კომპლექსური გამოძიებებისთვის." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "პასუხი მიღებული არ არის (იქნებ, მხოლოდ დასტურია შემოსული)" @@ -345,8 +348,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr " გამოწერის მოთხოვნა განცხადებისთვის{{request_title}} წარმატებით გაეგზავნა საჯარო დაწესებულებას: {{public_body_name}} მომხმარებლისგან {{info_request_user}} თარიღით {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr " პასუხი განცხადებისთვის: {{request_title}} წარმატებით გაუგზავნა საჯარო დაწესებულებამ {{public_body_name}} მომხმარებელს {{info_request_user}}, თარიღით {{date}}. განცხადების სტატუსია: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr " შეჯამება პასუხისა, თუ ის საფოსტო გზავნილის სახით მიიღე." @@ -390,9 +393,6 @@ msgstr "შენ შესახებ:" msgid "About {{count}} FOI requests found" msgstr "მოიძებნა {{count}} საჯარო ინფორმაციის მოთხოვნა" -msgid "Academic paper" -msgstr "აკადემიური ნაშრომი" - msgid "Account closed at user request" msgstr "ანგარიში გაუქმებულია მომხმარებლის მოთხოვნის შედეგად" @@ -423,6 +423,12 @@ msgstr "დაამატე ანოტაცია შენს განც msgid "Add authority - {{public_body_name}}" msgstr "დაამატე საჯარო დაწესებულება - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "დაამატე საჯარო დაწესებულება:" @@ -591,24 +597,18 @@ msgstr "განხილვაშია" msgid "Awaiting classification" msgstr "განხილვაშია" -msgid "Awaiting classification." -msgstr "განხილვაშია." - msgid "Awaiting internal review" msgstr "შიდა განხილვის პროცესშია" -msgid "Awaiting internal review." -msgstr "შიდა განხილვის პროცესშია." - msgid "Awaiting response" msgstr "პასუხის მოლოდინშია" -msgid "Awaiting response." -msgstr "პასუხის მოლოდინში" - msgid "Back to content" msgstr "მასალაში დაბრუნება" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -645,11 +645,8 @@ msgstr "ნახე ყველა საჯარო დაწესებუ msgid "Browse all requests →" msgstr "ყველა განცხადების ნახვა →" -msgid "Browse and search requests" -msgstr "მოძებნე გამოთხოვილი ინფორმაცია " - -msgid "Browse and search requests (page {{count}})" -msgstr "მოძებნე გამოთხოვილი ინფორმაცია (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "დაათვალიერე უკანასკნელი მოთხოვნები" @@ -657,8 +654,8 @@ msgstr "დაათვალიერე უკანასკნელი მ msgid "Browse latest responses" msgstr "დაათვალიერე უკანასკნელი მოთხოვნები" -msgid "Browse requests" -msgstr "გაეცანი გამოთხოვილ ინფორმაციას" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "კანონი მათ ავალდებულებთ, რომ საჯარო ინფორმაცია გასცენ დაუყონებლივ ან არა უგვიანეს 10 დღისა." @@ -678,6 +675,12 @@ msgstr "დაწესებულება ვალდებული იყ msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "ვერ იპოვე დაწესებულება?" @@ -750,6 +753,9 @@ msgstr "განმარტე შენი მოთხოვნა - {{reque msgid "Classify an FOI response from {{authority_name}}" msgstr "მიღებული პასუხის გასაიდუმლოვება საჯარო დაწესებულებისგან {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "გაასაიდუმლოვე პასუხები" @@ -816,11 +822,11 @@ msgstr "დაადასტურე ელ-ფოსტის მისამ msgid "Confirm your new email address on {{site_name}}" msgstr "დაადასტურე ახალი ელ-ფოსტის მისამართი ვებგვერდისთვის {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "ადმინისტრატორებმა ჩათვალეს, რომ არ აკმაყოფილებს საჯარო ინფორმაციის მოთხოვნის კრიტერიუმებს" +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "ადმინისტრატორებმა არაკეთილსინდისიერად მიიჩნიეს." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "დაგვიკავშირდი" @@ -888,6 +894,9 @@ msgstr "მოქალაქე ელოდება საჯარ msgid "Data interpretation" msgstr "მონაცემთა ინტერპრეტაცია" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "თარიღი:" @@ -921,15 +930,15 @@ msgstr "იგვიანებს" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "დაგვიანებული პასუხი საჯარო ინფორმაციის მოთხოვნაზე - {{request_title}}" -msgid "Delayed." -msgstr "იგვიანებს." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "მიწოდების სტატუსი გაგზავნილი წერილისთვის #{{id}}" msgid "Delivery error" msgstr "შეცდომა მიწოდებისას" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "დეტალები მოთხოვნისთვის “{{request_title}}”" @@ -966,10 +975,7 @@ msgstr "დასრულება" msgid "Done >>" msgstr "დასრულება >>" -msgid "Download Data" -msgstr "მონაცემების გადმოწერა" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -978,6 +984,9 @@ msgstr "მიმოწერის ისტორიის ZIP ფორმა msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "ორიგინალი დანართის გადმოწერა" @@ -990,9 +999,27 @@ msgstr "გარემოსდაცვითი ინფორმაცი msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "ტექსტში გირჩევთ ახსნათ, რატომ ხართ უკმაყოფილო საჯარო დაწესებულების მიერ გაცემული ინფორმაციით ან პასუხით." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "შენ შესახებ ტექსტის ცვლილება" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "შეცვალე მოთხოვნა" @@ -1053,6 +1080,9 @@ msgstr "ამ გვერდზე მითითებული ყველ msgid "Expand all correspondence" msgstr "მიმოწერის გაფართოება" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "მონაცემების ამოღება" @@ -1065,8 +1095,8 @@ msgstr "ექსტრაქტირების შენახვა ვე msgid "FOI" msgstr "საჯარო ინფორმაციის მოთხოვნა" -msgid "FOI email address for {{public_body}}" -msgstr "ელ-ფოსტა საჯარო ინფორმაციის მიწოდებაზე პასუხისმგებელი უწყებისთვის {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "ინფორმაციის თავისუფლების კანონმდებლობა არ ვრცელდება აღნიშნულ უწყებაზე." @@ -1107,6 +1137,9 @@ msgstr "საჯარო დაწესებულებების მო msgid "Find the authorities to write to" msgstr "იპოვე საჯარო დაწესებულებები, რათა მიწერო" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "პირველ რიგში, წარმატებული აღმოჩნდა შენი წინა მოთხოვნები?" @@ -1155,9 +1188,6 @@ msgstr "შეტყობინებების გამოწერა" msgid "Follow up message sent by requester" msgstr "წერილის გამოწერა განმცხადებლის მიხედვით" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "საპასუხო წერილები უკვე არსებული მოთხოვნებისთვის იგზავნება ელ-ფოსტაზე - {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "შეტყობინება გაეგზავნა დაწესებულებას: {{public_body_name}} ავტორი: {{info_request_user}} თარიღი: {{date}}." @@ -1170,8 +1200,8 @@ msgstr "საპასუხო და ახალი წერილები msgid "Follow us on Facebook" msgstr "გამოგვყევით ფეისბუქზე" -msgid "Follow us on twitter" -msgstr "გამოგვყევით ტვიტერზე" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "გამოწერილია" @@ -1192,16 +1222,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "ნაპოვნია {{count}} საჯარო დაწესებულება, რომლის სახელწოდება იწყება ასოთი ‘{{first_letter}}’" msgstr[1] "ნაპოვნია {{count}} საჯარო დაწესებულება, რომლის სახელწოდება იწყება ასოთი „{{first_letter}}\"" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "ნაპოვნია {{count}} საჯარო უწყება კატეგორიაში ‘{{category_name}}’" -msgstr[1] "ნაპოვნია {{count}} საჯარო უწყება კატეგორიაში ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "ნაპოვნია {{count}} საჯარო დაწესებულება, რომელიც ემთხვევა თეგს ‘{{tag_name}}’" msgstr[1] "ნაპოვნია {{count}} საჯარო დაწესებულება, რომელიც ემთხვევა თეგს ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "ოთხი კვირის წინ შენ გაუგზავნე საჯარო ინფორმაციის მოთხოვნა {{public_body_name}} ს {{site_name}} გამოყენებით." @@ -1214,9 +1249,6 @@ msgstr "ინფორმაციის თავისუფლების msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "ინფორმაციის თავისუფლების კანონმდებლობა ამ საჯარო უწყებაზე არ ვრცელდება, რის გამოც, მისგან ინფორმაციას ვერ გამოითხოვ." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "ინფორმაციის თავისუფლების კანონმდებლობა, ამ საჯარო უწყებაზე, აღარ ვრცელდება. საპასუხო წერილები მიმდინარე მოთხოვნებზე გაეგზავნება ელ-ფოსტას: {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "ინფორმაციის თავისუფლების კანონმდებლობა აღარ ვრცელდება დაწესებულებაზე {{public_body_name}}." @@ -1265,14 +1297,11 @@ msgstr "უკვე დარეგისტრირებული ხარ? msgid "Handled by postal mail" msgstr "წარიმართა საფოსტო მომსახურებით" -msgid "Handled by postal mail." -msgstr "წარიმართა საფოსტო მომსახურებით" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "თუ აღნიშნული მოთხოვნა სტატიაში ან აკადემიურ ნაშრომშია დამოწმებული," +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "თუ აღნიშნული მოთხოვნა სტატიაში ან აკადემიურ ნაშრომშია დამოწმებული, გვაცნობე:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "გამარჯობა! მნიშვნელოვანი წერილი გვაქვს ვიზიტორებისთვის, რომლებიც არ არიან ქვეყნიდან {{country_name}}" @@ -1295,6 +1324,9 @@ msgstr "გამარჯობა! საჯარო ინფორმაც msgid "Help" msgstr "დახმარება" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "ან დაგვეხმარო იმ მოთხოვნების დახარისხებაში, რომლებზეც დაწესებულებებმა ინფორმაცია გამოგზავნეს, მაგრამ მომხმარებლებს სტატუსი ჯერ არ განუახლებიათ" @@ -1385,9 +1417,6 @@ msgstr "პასუხად მივიღე შეტყობინებ msgid "I've received an error message" msgstr "პასუხად მივიღე შეტყობინება მიწოდებისას დაფიქსირებული ხარვეზის შესახებ" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "თუ ფიქრობ, რომ მისამართი შეცდომითაა მითითებული დაგვიკავშირდი." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "თუ მიწოდებისას ხარვეზი დაფიქსირდა, შესაძლოა პრობლემა საჯარო დაწესებულების არასწორი ელ-ფოსტის მისამართი იყოს. სწორი მისამართი შეგიძლია ქვემოთ მოცემული ფორმის გამოყენებით გამოგვიგზავნო." @@ -1445,9 +1474,6 @@ msgstr "თუ ელ-ფოსტა ორ თვეზე მეტ msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "გთხოვთ, მოთხოვნის გაუქმების შესახებ საჯარო დაწესებულებასაც შეატყობინო. სხვაგვარად, ისინი გაუქმების შესახებ ვერ შეიტყობენ და კვლავ განაგრძობენ განცხადების დაკმაყოფილებისთვის მნიშვნელოვანი სამუშაო დროის დახარჯვას." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "თუ სწორი მისამართი იცი, გამოგვიგზავნე. მისამართის პოვნა მათ ვებგვერდზე, ან დარეკვით და კითხვით შეგიძლია." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "თუ ამ წერილს უპასუხებ, ის პირდაპირ გაეგზავნება მომხმარებელს {{user_name}}, რომელიც შეძლებს შენი ელ-ფოსტის მისამართის ნახვას. მხოლოდ იმ შემთხვევაში გაგზავნე პასუხი, თუ ეს პირობა მისაღებია." @@ -1481,9 +1507,6 @@ msgstr "გააუმჯობესე ანგარიშის დაც msgid "In progress" msgstr "მუშავდება" -msgid "In the News" -msgstr "შენიშვნა:" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "მიუთითე შესაბამისი ბმულებიც, როგორებიცაა: კამპანიის გვერდი, შენი ბლოგის ან ტვიტერის ანგარიში. სასურველია, ბმულები დაკლიკებადი იყოს." @@ -1496,9 +1519,6 @@ msgstr "ინდივიდუალური მოთხოვნები" msgid "Information not held" msgstr "არ აღმოაჩნდათ ინფორმაცია" -msgid "Information not held." -msgstr "არ აღმოაჩნდათ ინფორმაცია" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "ინფორმაცია დაბინძურებაზე და დარღვევებზე (ხმის, ენერგიის, რადიაციის, ნარჩენებით დაბინძურების)" @@ -1523,6 +1543,9 @@ msgstr "არასწორი ერთჯერადი კოდი" msgid "Invalid token" msgstr "არასწორი ტოკენი" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "თუ თქვენ არ ხართ საჯარო ინფორმაციის გაცემაზე პასუხისმგებელი პირი და ეს წერილი შეცდომით მიიღეთ, ბოდიშს გიხდით. გთხოვთ, მოგვწეროთ შეცდომის შესახებ, რათა ბაზიდან ამოვიღოთ თქვენი საკონტაქტო ინფორმაცია: info@askgov.ge" @@ -1544,12 +1567,12 @@ msgstr "შეუერთდა მოცემულ წელს - {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "{{site_name}}-ს შეუერთდა {{year}} წელს" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "მზად ვართ, დაგეხმაროთ." -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "უსაფრთხოდ შეინახე ეს პასკოდი. მისი გამოყენება პაროლის შეცვლისას დაგჭირდება. შეეგიძლია ის პაროლების მენეჯერში დაამატო, ან ამოპრინტო და დაცულ ადგილას შეინახო." - msgid "Keep your request up to date" msgstr "მოთხოვნილ მონაცემებზე დაყრდნობით სტატიას, ბლოგპოსტს, ან რაიმე მნიშვნელოვან პროდუქტს ქმნი?" @@ -1592,6 +1615,9 @@ msgstr "პროექტის დატოვება" msgid "Let us know" msgstr "გვაცნობე" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "გვაცნობე და ვეცდებით, დაგეხმაროთ" @@ -1613,9 +1639,6 @@ msgstr "ადმინის ინტერფეისში შესვლ msgid "Long overdue" msgstr "პასუხი არ მოსულა" -msgid "Long overdue." -msgstr "პასუხი არ მოსულა" - msgid "Made between" msgstr "დროის მონაკვეთი" @@ -1715,9 +1738,6 @@ msgstr "მოითხოვს ადმინისტრატორის msgid "Needs status update" msgstr "მოითხოვს სტატუსის განახლებას" -msgid "New Citation" -msgstr "ახალი ციტატა" - msgid "New Freedom of Information requests" msgstr "საჯარო ინფორმაციის ახალი მოთხოვნები" @@ -1751,9 +1771,6 @@ msgstr "ახალი განახლებები მოთხოვნ msgid "Newest results first" msgstr "ახალი შედეგები პირველ რიგში" -msgid "News story" -msgstr "სიახლეები" - msgid "Next" msgstr "შემდეგი" @@ -1835,6 +1852,9 @@ msgstr "მოთხოვნების რაოდენობა, დრო msgid "Number of requests" msgstr "მოთხოვნების რაოდენობა." +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ან წაშალე არსებული ფოტო" @@ -1898,9 +1918,6 @@ msgstr "ნაწილობრივი წარმატება" msgid "Partially successful" msgstr "ნაწილობრივ წარმატებულია" -msgid "Partially successful." -msgstr "ნაწილობრივ წარმატებული" - msgid "Password is not correct" msgstr "პაროლი არასწორია" @@ -2175,6 +2192,9 @@ msgstr "ერთჯერადი პასკოდის ამობეჭ msgid "Privacy and cookies" msgstr "კონფიდენციალურობის პოლიტიკა" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "პროფილის ფოტო მომხმარებლისთვის {{user_name}}" @@ -2184,6 +2204,9 @@ msgstr "პროექტის მფლობელი" msgid "Proposed Email:" msgstr "შეთავაზებული ელ-ფოსტა:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "საჯარო დაწესებულებები" @@ -2265,9 +2288,6 @@ msgstr "უკანასკნელი შედეგების ჩვე msgid "Refused" msgstr "უარყოფილია" -msgid "Refused." -msgstr "უარყოფილია." - msgid "Regenerate one time passcode" msgstr "ერთჯერადი კოდის რეგენერირება" @@ -2307,8 +2327,8 @@ msgstr "მოთხოვნის გასაჩივრება" msgid "Reported" msgstr "გასაჩივრებულია" -msgid "Reported for administrator attention." -msgstr "შეტყობინება ადმინისტრატორის საყურადღებოდ." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "მოთხოვნის გასაჩივრებით, ადმინისტრატორებს დარღვევის შესახებ შეატყობინებთ. ვეცდებით, ადმინისტრაციის წევრმა, რაც შეიძლება მალე გიპასუხოთ." @@ -2322,6 +2342,9 @@ msgstr "შიდა გასაუბრების მოთხოვნა" msgid "Request an internal review from {{person_or_body}}" msgstr "მოითხოვე შიდა გასაუბრება" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "მოთხოვნის ელ-ფოსტის ფანჯარა ვერ იქნება ცარიელი" @@ -2379,6 +2402,9 @@ msgstr "მოთხოვნები გაეგზავნება შე msgid "Requires admin attention" msgstr "მოითხოვს ადმინისტრატორის ყურადღებას" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "პასუხის გაცემა ელ-ფოსტით" @@ -2454,6 +2480,12 @@ msgstr "მოიძიე
{{number_of_requests}} მოთხოვ msgid "Search queries" msgstr "კითხვების მოძებნა" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "შედეგების მოძებნა" @@ -2469,6 +2501,12 @@ msgstr "სექცია" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "პასუხის გაგზავნა" @@ -2517,6 +2555,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2540,6 +2583,9 @@ msgstr "პროფილის ფოტოს დაყენება" msgid "Share on Facebook" msgstr "ფეისბუქზე" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2753,9 +2799,6 @@ msgstr "წარმატებული საჯარო ინფორმ msgid "Successful requests" msgstr "წარმატებული მოთხოვნები" -msgid "Successful." -msgstr "წარმატებული" - msgid "Suggest how the requester can find the rest of the information." msgstr "ურჩიე განმცხადებელს, როგორ შეუძლია დარჩენილი ინფორმაციის მოპოვება." @@ -2783,6 +2826,9 @@ msgstr "თეგები:" msgid "Tasks" msgstr "ამოცანები" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "მადლობა, რომ პორტალის ორგანიზებულობაში გვეხმარებით!" @@ -2846,6 +2892,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "ანგარიშები ისე დარჩა, როგორც აქამდე იყო." @@ -2906,12 +2958,6 @@ msgstr "უკანასკნელი მომხმარებლის msgid "The last user was created over a day ago" msgstr "უკანასკნელი მომხმარებლის ანგარიში ერთ დღეზე მეტია, რაც შეიქმნა" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "ეს გვერდი არ არსებობს. აი, რა შეგიძლია სცადო:" @@ -3089,8 +3135,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "საჩვენებელი არაფერია" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "საჯარო ინფორმაციის მოთხოვნის მიწოდებისას, შეცდომა დაფიქსირდა. ხარვეზი {{site_name}}-ის ადმინისტრატორის ყურადღებას მოითხოვს." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "დაფიქსირდა შეცდომა კოდის გადატვირთვისას. კიდევ სცადე." @@ -3471,12 +3517,6 @@ msgstr "ახალ ფანჯარაში გახსნა სცად msgid "Turn off email alerts" msgstr "ელ-ფოსტის შეტყობინებების გამორთვა." -msgid "Tweet it" -msgstr "ტვიტერზე" - -msgid "Tweet this request" -msgstr "ტვიტერზე" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "ორ-ფაქტორიანი ავთენთიფიკაცია ანგარიშს უფრო მეტად დაცულს ხდის, რადგან მეტ ინფორმაციას ითხოვს პაროლის შეცვლისას." @@ -3543,8 +3583,8 @@ msgstr "გამოწერის გაუქმება" msgid "Unusual response" msgstr "უჩვეულო პასუხი" -msgid "Unusual response." -msgstr "უჩვეულო პასუხი." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "ელ-ფოსტის გაუქმება საჯარო უწყებისთვის - {{public_body_name}}" @@ -3582,23 +3622,14 @@ msgstr "განცხადება შეიცავს შეურაც msgid "Vexatious annotation" msgstr "შეურაცხმყოფელი ანოტაცია" -msgid "View FOI email address" -msgstr "ნახე დაწესებულების ელ-ფოსტა" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "საჯარო ინფორმაციის გაცემაზე პასუხისმგებელი პირის ელ-ფოსტის ნახვა საჯარო უწყებისთვის '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "საჯარო ინფორმაციის გაცემაზე პასუხისმგებელი პირის ელ-ფოსტის ნახვა საჯარო უწყებისთვის {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "საჯარო ინფორმაციის მოთხოვნები მომხმარებლისგან {{user_name}}:" msgid "View authorities" msgstr "მოძებნე საჯარო დაწესებულება" -msgid "View email" -msgstr "ელ-ფოსტის ნახვა" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "მიმოწერის პროცესის დეტალების ნახვა" @@ -3606,11 +3637,17 @@ msgstr "მიმოწერის პროცესის დეტალე msgid "View other requests to {{public_body}}" msgstr "შეგიძლია მიმოიხილო ის მოთხოვნები, რომლებიც პორტალის მომხმარებლებმა გაუგზავნეს დაწესებულებას - {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "ორ-ფაქტორიანი ავთენთიფიკაციის ერთჯერადი კოდის ნახვა" -msgid "Waiting clarification." -msgstr "კატეგორიზაციის მოლოდინში" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "მომხმარებელი უცდის შიდა გასაუბრებას საჯარო დაწესებულებასთან - {{public_body_link}}, რომელიც ამ განცხადებაზეა პასუხისმგებელი." @@ -3642,9 +3679,6 @@ msgstr "ამ წერილის შესახებ ინფორმა msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "ვებგვერდზე {{site_name}} პირადი მდგომარეობის შესახებ ინფორმაციის გაგზავნა დაშვებული არ არის. ამის გამო, შენი მოთხოვნა დავფარეთ საჯაროდ ჩვენებისგან." -msgid "We do not have a working request email address for this authority." -msgstr "სამწუხაროდ, ამ უწყების სამუშაო ელ-ფოსტა არ გვაქვს." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "სამწუხაროდ, სამუშაო ელ-ფფოსტის {{law_used_full}} მისამართი არ გვაქვს უწყებისთვის - {{public_body_name}}." @@ -3748,6 +3782,9 @@ msgstr "" msgid "What's happened:" msgstr "რა მოხდა:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "ბმულზე გადასვლის შემდეგ, გთხოვ განაახლე განცხადების სტატუსი. ამ გზით, სხვა მომხმარებლებიც გაიგებენ, შეიცავს თუ არა მოწოდებული პასუხი საჭირო ინფორმაციას. " @@ -3772,8 +3809,8 @@ msgstr "მანამდე კი გვითხარი, უფრო ზ msgid "Withdrawn" msgstr "გამოტანილია" -msgid "Withdrawn by the requester." -msgstr "გამოტანილია განმცხადებლის მიერ." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "" @@ -3799,6 +3836,9 @@ msgstr "" msgid "Yes" msgstr "დიახ" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "შენ უკვე შექმენი მოთხოვნათა იდენტური სერია თარიღით {{date}}. შეგიძლია დაათვალიერო არსებული სერია, ან ჩაანაცვლო მიმდინარე და გაგზავნო." @@ -4427,9 +4467,6 @@ msgstr "აქ აკრიფე საძიეებო ტერმინი msgid "unknown" msgstr "უცნობია" -msgid "unknown reason" -msgstr "მიზეზი უცნობია" - msgid "unknown reason " msgstr "მიზეზი უცნობია" @@ -4466,9 +4503,6 @@ msgstr "{{authority_name}} არ ფლობს მოთხ msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} შენი მოთხოვნის დაზუსტებას ელის." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} კონტრიბუტორი" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} თანდართული დოკუმენტი" @@ -4479,6 +4513,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} განხორციელებული ანოტაცია." msgstr[1] "{{count}} განხორციელებული ანოტაცია." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} გამომწერი" @@ -4623,8 +4662,8 @@ msgstr "{{reason}}. სამწუხაროდ, საჯარო ინფ msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} ემთხვევა '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} ბლოგი და ტვიტები" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4637,9 +4676,6 @@ msgstr "{{site_name}}-მ აღმოაჩინა, რომ უწყებ msgid "{{site_name}} login link" msgstr "{{site_name}} ავტორიზაციის ბმული" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} ინფორმაციის მოთხოვნის გასაგზავნად იყენებს საჯარო დაწესებულების შემდეგ ელ-ფოსტას: {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} ვებგვერდის მომხმარებლებმა გააგზავნეს {{number_of_requests}} მოთხოვნა, მათ შორის:" diff --git a/locale/mk/app.po b/locale/mk/app.po index 6e07d9701b..26d6cf2f13 100644 --- a/locale/mk/app.po +++ b/locale/mk/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Macedonian (http://app.transifex.com/mysociety/alaveteli/langua" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/mk_MK/app.po b/locale/mk_MK/app.po index 31a2e5d7f9..47fc12e585 100644 --- a/locale/mk_MK/app.po +++ b/locale/mk_MK/app.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: louisecrow , 2014\n" "Language-Team: Macedonian (Macedonia) (http://app.transifex.com/mysociety/alav" @@ -181,10 +181,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Прелистајте ги сите или побарајте ние да додадеме." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -275,8 +275,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: за да одберете тип на информација која се пребарува, погледнете ја табелата со можности подолу." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Совет за како да се добие одговор кој ќе биде задоволителен за барателот. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Сите информации се испратени" @@ -319,6 +319,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Не беше добиен никаков одговор\n" @@ -375,8 +378,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Реакција на {{request_title}} беше испратена на {{public_body_name}} од {{info_request_user}} на {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Одговор на {{request_title}} беше пратен од {{public_body_name}} до {{info_request_user}} на {{date}}. Статусот на одговорот е: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -422,9 +425,6 @@ msgstr "За вас:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -457,6 +457,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -633,24 +639,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Се чека класифицирање." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Се чека внатрешна ревизија." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Се чека одговор." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -687,11 +687,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Видете и пребарајте барања" - -msgid "Browse and search requests (page {{count}})" -msgstr "Видете и пребарајте барања (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -699,8 +696,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Видете барања" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -720,6 +717,12 @@ msgstr "Според закон, {{public_body_link}} требало да одг msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Не може да го најдете она што го барате?" @@ -792,6 +795,9 @@ msgstr "Објаснете го своето барање за слободен msgid "Classify an FOI response from {{authority_name}}" msgstr "Класифицарајте го одговорот од {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -860,10 +866,10 @@ msgstr "Потврдете ја вашата адреса за е-пошта" msgid "Confirm your new email address on {{site_name}}" msgstr "Потврдете ја вашата нова адреса за е-пошта на {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -934,6 +940,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Дата:" @@ -967,15 +976,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Одложен одговор на вашето барање за слободен пристап - {{request_title}}" -msgid "Delayed." -msgstr "Одложен." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Грешка при испорака" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -1012,10 +1021,7 @@ msgstr "Готово" msgid "Done >>" msgstr "Готово >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1024,6 +1030,9 @@ msgstr "Преземете zip датотека од целата кореспо msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Преземете го оригиналниот прилог" @@ -1038,9 +1047,27 @@ msgstr "" "Уредете и додајте повеќе детали на пораката погоре,\n" " и притоа објаснете зошто не сте задоволен од нивниот одговор." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Уредете го текстот за вас" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Уредете го ова барање" @@ -1106,6 +1133,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1118,8 +1148,8 @@ msgstr "" msgid "FOI" msgstr "Слободен пристап до информации од јавен карактер" -msgid "FOI email address for {{public_body}}" -msgstr "Адреса за е-пошта за слободен пристап до информации на {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1160,6 +1190,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Прво, дали другите ваши барања беа успешни?" @@ -1208,9 +1241,6 @@ msgstr "Реакција" msgid "Follow up message sent by requester" msgstr "Реакција е испратена од барател" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1223,8 +1253,8 @@ msgstr "Реакциите и новите одговори на ова бара msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Следи не на twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1245,8 +1275,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1255,6 +1285,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1269,9 +1304,6 @@ msgstr "" "Законот за Слободен пристап до информации не се однесува за овој имател, затоа не можете да направите\n" " барање до нив." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1323,13 +1355,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1353,6 +1382,9 @@ msgstr "" msgid "Help" msgstr "Помош" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1455,9 +1487,6 @@ msgstr "Добив порака за грешка" msgid "I've received an error message" msgstr "Добив порака за грешка" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ако адресата е грешна или имате подобра адреса, Ве молиме контактирајте не." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ако грешката е заради неуспешна достава и може да најдете нова, соодветна адреса за е-пошта од имателот, Ве молиме употребете ја формата подолу." @@ -1523,11 +1552,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ако не го направивте тоа до сега, Ве молиме напишете порака подолу со која ќе го известите надлежниот орган дека го повлековте вашето барање. Инаку тие нема да знаат дека барањето е повлечено." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Ако ја знаете адресата која треба да се користи, тогаш ве молиме испратете ни ја.\n" -" Можеби ќе успеете да ја најдете адресата на нивната интернет-страна или ако ја побарате од нив со јавување по телефон. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ако одговорите на оваа порака, одговорот ќе биде пратен директно до {{user_name}}, кој ќе\n" @@ -1569,9 +1593,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" " Вклучете релевантни врски, како што се страна за кампања, вашиот блог или\n" @@ -1587,9 +1608,6 @@ msgstr "Индивидуално барање" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Информациите не се чуваат." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Информации за емисиите и испуштањата (на пр. шум, енергија,\n" @@ -1616,6 +1634,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Дали {{email_address}} е грешна адреса за {{law_used_full}} барањето до {{public_body_name}}? Ако да, Ве молиме контактирајте не преку оваа форма:" @@ -1640,12 +1661,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Само уште една работа" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1688,6 +1709,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1711,9 +1735,6 @@ msgstr "Најавете се на администраторскиот инте msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Одамна е поминат рокот." - msgid "Made between" msgstr "Изработен во периодот помеѓу" @@ -1810,9 +1831,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Ново барање за слободен пристап до информации" @@ -1846,9 +1864,6 @@ msgstr "Новости за барањето '{{request_title}}'" msgid "Newest results first" msgstr "Прво најновите резултати" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Следно" @@ -1930,6 +1945,9 @@ msgstr "" msgid "Number of requests" msgstr "Број на барања" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "или отстрани ја тековната фотографија" @@ -1993,9 +2011,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Делумно успешно." - msgid "Password is not correct" msgstr "Лозинката не е точна" @@ -2278,6 +2293,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2287,6 +2305,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Јавни институции" @@ -2368,9 +2389,6 @@ msgstr "Прво се прикажуваат резултатите кои се msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Одбиено." - msgid "Regenerate one time passcode" msgstr "" @@ -2410,8 +2428,8 @@ msgstr "Пријавете го ова барање" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Пријавете кај администратор." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2425,6 +2443,9 @@ msgstr "Побарајте внатрешна ревизија" msgid "Request an internal review from {{person_or_body}}" msgstr "Побарајте внатрешна ревизија од {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2482,6 +2503,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Одговорете по е-пошта" @@ -2560,6 +2584,12 @@ msgstr "" msgid "Search queries" msgstr "Фрази за пребарување" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Резултати од пребарување" @@ -2575,6 +2605,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Испратете реакција" @@ -2623,6 +2659,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2646,6 +2687,9 @@ msgstr "Поставете фотографија за профилот" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2865,9 +2909,6 @@ msgstr "Успешно барање за слободен пристап до и msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Успешно." - msgid "Suggest how the requester can find the rest of the information." msgstr "Предложете како барателот може да го најде остатокот од информацијата." @@ -2895,6 +2936,9 @@ msgstr "Тагови:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Ви благодариме што помагате да го одржиме сајтот уреден!" @@ -2966,6 +3010,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Сметките се оставени во првобитната состојба." @@ -3028,12 +3078,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Страната не постои. Работи кои може да ги пробате:" @@ -3217,8 +3261,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Настана грешка при достава или слична грешка, за која е потребна исправка од {{site_name}} тимот." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3615,12 +3659,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Исклучете ги предупредувањата преку е-пошта" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Твитнете за ова барање" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3689,8 +3727,8 @@ msgstr "Откажи претплата" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Невообичаен одговор." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3728,23 +3766,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Видете ја адресата за е-пошта за слободен пристап до информации од јавен карактер" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Видете ја адресата за е-пошта за слободен пристап до информации за '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Видете ја адресата за е-пошта за слободен пристап со информации од јавен карактер за {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Видете ги барањата за слободен пристап до информации од јавен карактер направени од {{user_name}}:" msgid "View authorities" msgstr "Видете ги имателите" -msgid "View email" -msgstr "Видете е-пошта" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3752,11 +3781,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Се чека појаснување." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Се чека на интерна ревизија од {{public_body_link}} во врска со нивната обработка на ова барање." @@ -3788,9 +3823,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Немаме исправна адреса за е-пошта за овој имател." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Немаме исправна {{public_body_name}} адреса за {{law_used_full}}." @@ -3908,6 +3940,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Кога ќе стигнете таму, ве молиме ажурирајте го статусот за да известите дали одговорот\n" @@ -3936,8 +3971,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Повлечено од страна на барателот." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Нд" @@ -3963,6 +3998,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4617,9 +4655,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "непозната причина" - msgid "unknown reason " msgstr "непозната причина " @@ -4656,9 +4691,6 @@ msgstr "{{authority_name}} ја немаше бараната msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} чека на Ваше објаснување." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4669,6 +4701,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4819,8 +4856,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} кои одговараат на '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "блогови и твитови од {{site_name}} " +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4833,9 +4870,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} ги испраќа новите барања за овој имател на оваа адреса на е-пошта {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/nb/app.po b/locale/nb/app.po index 689d4b25a1..4ef85da18a 100644 --- a/locale/nb/app.po +++ b/locale/nb/app.po @@ -57,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: pere , 2013,2015\n" "Language-Team: Norwegian Bokmål (http://app.transifex.com/mysociety/alaveteli/" @@ -199,11 +199,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Bla i gjennom alle eller be oss om å legge til en ny." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Lag en ny EIR forespørsel til {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Lag en ny FOI forespørsel til {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -293,8 +293,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: for å velge typen ting du skal søke etter. Se tabell over typer under." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Råd for å få et svar som er tilfredsstillende til den som spør. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "All informasjonen har blitt sendt" @@ -336,6 +336,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Intet svarer mottatt\n" @@ -393,8 +396,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "En oppfølging til {{request_title}} ble sendt til {{public_body_name}} fra {{info_request_user}} den {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Et svar til {{request_title}} var sendt av {{public_body_name}} til {{info_request_user}} den {{date}}. Status for henvendelsen er: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -440,9 +443,6 @@ msgstr "Om deg:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -475,6 +475,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Legg til myndighet - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Legg til myndigheten:" @@ -647,24 +653,18 @@ msgstr "Venter på klargjøring" msgid "Awaiting classification" msgstr "Venter på klassifisering" -msgid "Awaiting classification." -msgstr "Venter på kategorisering." - msgid "Awaiting internal review" msgstr "Venter intern gjennomgang" -msgid "Awaiting internal review." -msgstr "Venter på behandling av klage." - msgid "Awaiting response" msgstr "Venter på svar" -msgid "Awaiting response." -msgstr "Venter på svar." - msgid "Back to content" msgstr "Tilbake til innhold" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -701,11 +701,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Vis henvendelser →" -msgid "Browse and search requests" -msgstr "Vis og søk i henvendelser" - -msgid "Browse and search requests (page {{count}})" -msgstr "Vis og søk i henvendelser (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -713,8 +710,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Vis henvendelser" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Loven sier at de må svare deg." @@ -734,6 +731,12 @@ msgstr "I følge loven, så burde {{public_body_link}} normal ha svart r msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Vil du kontakte en myndighet som ikke er her?" @@ -806,6 +809,9 @@ msgstr "Klargjør din innsynshenvendelse - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Klassifiser ett innsynsvar fra {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -872,10 +878,10 @@ msgstr "Bekreft din e-postadresse" msgid "Confirm your new email address on {{site_name}}" msgstr "Bekreft din nye e-postadresse på {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -944,6 +950,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dato:" @@ -971,15 +980,15 @@ msgstr "Forsinket" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Forsinket svar på din innsynshenvendelse - {{request_title}}" -msgid "Delayed." -msgstr "Forsinket." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Leveringsstatus for utgående melding #{{id}}" msgid "Delivery error" msgstr "Leveringsfeil" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detaljer for henvendelse “{{request_title}}”" @@ -1016,10 +1025,7 @@ msgstr "Ferdig" msgid "Done >>" msgstr "Ferdig " -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1028,6 +1034,9 @@ msgstr "Last ned en zip-fil med all korrespondanse" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Last ned orginalt vedlegg" @@ -1042,9 +1051,27 @@ msgstr "" "Rediger og legg til flere detaljer i meldingen over,\n" " som forklarer hvorfor du klager." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Rediget teksten om deg" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Rediger denne henvendelsen" @@ -1110,6 +1137,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1122,8 +1152,8 @@ msgstr "" msgid "FOI" msgstr "innsyn etter Offentleglova" -msgid "FOI email address for {{public_body}}" -msgstr "Postmottaket hos {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Offentlighetslova gjelder ikke for denne myndigheten." @@ -1164,6 +1194,9 @@ msgstr "Find myndighetene" msgid "Find the authorities to write to" msgstr "Velg myndigheter" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "For det første, lyktes dine andre henvendelser?" @@ -1214,9 +1247,6 @@ msgstr "Følg opp" msgid "Follow up message sent by requester" msgstr "Oppfølgingsbeskjed fra innsender av henvendelsen" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Oppfølgingsbeskjeder på en eksisterende henvendelse sendes til {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Oppfølging sendt til {{public_body_name}} av {{info_request_user}} den {{date}}." @@ -1229,8 +1259,8 @@ msgstr "Oppfølgingsbeskjeder og nye svar på denne henvendelsen er stanset for msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Følg oss på twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Følger" @@ -1251,16 +1281,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Fant {{count}} offentlig myndighet som begynner med ‘{{first_letter}}’" msgstr[1] "Fant {{count}} offentlige myndigheter som begynner med ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Fant {{count}} offentlig myndighet i kategorien ‘{{category_name}}’" -msgstr[1] "Fant {{count}} offentlige myndigheter i kategorien ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Fant {{count}} offentlig myndighet som treffer taggen ‘{{tag_name}}’" msgstr[1] "Fant {{count}} offentlige myndigheter som treffer taggen ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1275,9 +1310,6 @@ msgstr "" "Offentlighetslova gjelder ikke for denne etaten, så du kan ikke sende dem en\n" " innsynshenvendelse." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Offentlighetslova gjelder ikke lenger for denne myndigheten. Oppfølgingsbeskjeder til nåværende henvendelser blir sendt til {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Offentlighetslova gjelder ikke lenger for {{public_body_name}}." @@ -1326,13 +1358,10 @@ msgstr "Har du en konto?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1356,6 +1385,9 @@ msgstr "Hei! Du kan lage innsynshenvendelser for {{country_name}} på {{link_to_ msgid "Help" msgstr "Hjelp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Hjelp oss å klassifisere henvendelser som ikke har blitt oppdatert" @@ -1454,9 +1486,6 @@ msgstr "Jeg har fått en feilmelding" msgid "I've received an error message" msgstr "Jeg har fått en feilmelding" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Hvis adressen er feil, eller du vet om en bedre adresse, vær så snill å ta kontakt." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Hvis feilen var et problem med leveringen, og du kan finne en oppdatert e-postadresse som kan brukes til innsynshenvendelser for denne myndigheten, så vær så snill å fortell oss dette i skjemaet under." @@ -1520,9 +1549,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Hvis du ikke allerede har gjort det, vær så snill å skriv en melding under som forteller myndigheten at du har trukket tilbake din henvendelse. Ellers vil de ikke vite at den er trukket tilbake." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Hvis du vet adressen som kan brukes, vær så snill å send den til oss. Du finner kanskje adressen på deres nettsted eller ved å ringe dem opp og spørre." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Hvis du svarer på denne e-posten, så vil svaret gå direkte til {{user_name}}, som da vil få vite din riktige e-postadresse. Svar kun om dette er i orden." @@ -1562,9 +1588,6 @@ msgstr "Forbedr sikkerheten på din konto" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Inkluder relevante lenker, som f.eks. din kampanjeside, blogg, Twitter-konto o.l. De vil vises som lenker her. \n" @@ -1579,9 +1602,6 @@ msgstr "Individuelle henvendelser" msgid "Information not held" msgstr "Har ikke informasjonen" -msgid "Information not held." -msgstr "Har ikke informasjonen." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informasjon om utslipp (for eksempel støy, energi,\n" @@ -1608,6 +1628,9 @@ msgstr "Feil engangspassord" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Er {{email_address}} feil adresse for henvendelser om {{law_used_full}} til {{public_body_name}}? I så fall, vær så snill å ta kontakt med oss ved å bruke dette skjemaet:" @@ -1632,12 +1655,12 @@ msgstr "Ble med i {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Ble med i {{site_name}} i {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Bare en ting til" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Ta vare på passordet. Du vil trenge det om du ønsker å bytte passord. Legg deg til en \"password manager\" eller skriv det ut og legg det et trygt sted." - msgid "Keep your request up to date" msgstr "Hold henvendelsene dine oppdaterte" @@ -1680,6 +1703,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1701,9 +1727,6 @@ msgstr "Logg inn i administratorgrensesnittet" msgid "Long overdue" msgstr "Svært forsinket." -msgid "Long overdue." -msgstr "Svært forsinket." - msgid "Made between" msgstr "Opprettet mellom" @@ -1800,9 +1823,6 @@ msgstr "Bør ses på av en administrator" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nye innsynshenvendelser" @@ -1836,9 +1856,6 @@ msgstr "Nye oppdateringer for henvendelsen '{{request_title}}'" msgid "Newest results first" msgstr "Nyeste resultater først" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Neste" @@ -1920,6 +1937,9 @@ msgstr "" msgid "Number of requests" msgstr "Antall henvendelser" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ELLER fjern nåværende bilde" @@ -1983,9 +2003,6 @@ msgstr "Delvis suksess" msgid "Partially successful" msgstr "Delvis vellykket" -msgid "Partially successful." -msgstr "Delvis vellykket." - msgid "Password is not correct" msgstr "Passordet er ikke riktig" @@ -2268,6 +2285,9 @@ msgstr "Skriv ut engangspassord" msgid "Privacy and cookies" msgstr "Personvern og cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profilbilde for {{user_name}}" @@ -2277,6 +2297,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Offentlige instanser" @@ -2358,9 +2381,6 @@ msgstr "Nylige beskrevne resultater først" msgid "Refused" msgstr "Avvist" -msgid "Refused." -msgstr "Avslått" - msgid "Regenerate one time passcode" msgstr "Lag engangspassord" @@ -2400,8 +2420,8 @@ msgstr "Rapporter henvendelsen" msgid "Reported" msgstr "Rapportert" -msgid "Reported for administrator attention." -msgstr "Rapportert til admininstrator" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Når en henvendelse meldes sendes det beskjed til nettstedet administratorer. De vil svare så raskt som mulig." @@ -2415,6 +2435,9 @@ msgstr "Skriv klage" msgid "Request an internal review from {{person_or_body}}" msgstr "Klag til {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2472,6 +2495,9 @@ msgstr "Henvendelser vil bli sendt til følgende instanser:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Svar med e-post" @@ -2550,6 +2576,12 @@ msgstr "" msgid "Search queries" msgstr "Søkespørringer" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Søkeresultater" @@ -2565,6 +2597,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Send en oppfølgning" @@ -2613,6 +2651,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2636,6 +2679,9 @@ msgstr "Velg ditt profil-bilde" msgid "Share on Facebook" msgstr "Del på Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2855,9 +2901,6 @@ msgstr "Vellykket innsynshenvendelse" msgid "Successful requests" msgstr "Vellykkede henvendelser" -msgid "Successful." -msgstr "Vellykket." - msgid "Suggest how the requester can find the rest of the information." msgstr "Foreslår hvordan henvenderen kan få resten av informasjonen/dokumentene" @@ -2885,6 +2928,9 @@ msgstr "Tagger:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Takk for at du hjelper oss med å holde tjenesten ryddig!" @@ -2956,6 +3002,12 @@ 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 "URL-en der du fant e-postadressen. Dette feltet er valgfritt, men det vil hjelpe oss veldig hvis du kan legge ved en lenke til en spesifikk side på nettstedet til myndigheten som oppgir denne adressen, da det vil gjøre det mye enklere for oss å sjekke den." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontoene er etterlatt slik de tidligere var." @@ -3016,12 +3068,6 @@ msgstr "Den siste brukeren ble laget i løpet av dagen" msgid "The last user was created over a day ago" msgstr "Den siste brukeren ble laget for mer enn en dag siden" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Siden finnes ikke. Det du kan forsøke nå:" @@ -3205,8 +3251,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Det er ingenting å vise enda." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Det var en feil med leveringen eller liknende, som trenger å rettes av {{site_name}}-gruppen." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Det var en feil med ordene du skrev inn, vennligst forsøk på nytt." @@ -3597,12 +3643,6 @@ msgstr "Prøv å åpne loggene i et nytt vindu." msgid "Turn off email alerts" msgstr "Skru av e-postvarsling" -msgid "Tweet it" -msgstr "Twittre det" - -msgid "Tweet this request" -msgstr "Tvitre om henvendelsen" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "To-faktor autentisering øker sikkerheten på kontoen din ved å kreve ekstra informasjon for å kunne bytte passordet ditt." @@ -3669,8 +3709,8 @@ msgstr "Meld deg av" msgid "Unusual response" msgstr "Uvanlig svar" -msgid "Unusual response." -msgstr "Uvanlig svar." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Oppdater e-postadresse - " @@ -3708,23 +3748,14 @@ msgstr "Sjikane" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Vis e-post adresse for innsyn" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Vis e-post adresse for innsyn mot '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Vis e-post adresse for innsyn mot {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Vis innsynshenvendelser som er opprettet av {{user_name}}:" msgid "View authorities" msgstr "Vis myndigheter" -msgid "View email" -msgstr "Les e-post" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3732,11 +3763,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Se andre henvendelser til {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Vis to-faktor autentisering engangspassord" -msgid "Waiting clarification." -msgstr "Venter avklaring" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Venter på klagebehandling." @@ -3768,9 +3805,6 @@ msgstr "Vi kunne ikke vise mailserverloggene for denne meldingen." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Vi har ikke en gyldig e-post adresse for henvendelser for denne myndigheten" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Vi har ikke en fungerende {{law_used_full}}-adresse for {{public_body_name}}." @@ -3890,6 +3924,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Når du kommer dit, vær så snill å oppdatere status på svaret slik at det fremgår om du fikk informasjonen du spurte om." @@ -3916,8 +3953,8 @@ msgstr "Hvorfor mener du denne henvendelsen er upassende?" msgid "Withdrawn" msgstr "Trukket tilbake" -msgid "Withdrawn by the requester." -msgstr "Trukket tilbake av henvenderen" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Uke" @@ -3943,6 +3980,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Du har allerede laget samme bunt med henvendelser den {{date}}. Du kan enten se på den eksisterende bunten, eller redigere detaljene under for å lage en ny men lignende bunt med henvendelser." @@ -4591,9 +4631,6 @@ msgstr "skriv inn søketerm her" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "ukjent grunn" - msgid "unknown reason " msgstr "ukjent grunn " @@ -4630,9 +4667,6 @@ msgstr "{{authority_name}} hadde ikke informasjonen du ba om." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} venter på dine avklaringer" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Vedlegg" @@ -4643,6 +4677,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} merknad laget." msgstr[1] "{{count}} merknader laget." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} følger" @@ -4790,8 +4829,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} som treffer '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogg og tveets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4804,9 +4843,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sender nye henvendelser til {{request_email}} for denne myndigheten." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ne/app.po b/locale/ne/app.po index 5cbeff2839..802cdf1e47 100644 --- a/locale/ne/app.po +++ b/locale/ne/app.po @@ -66,7 +66,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Yudeep Rajbhandari , 2017\n" "Language-Team: Nepali (http://app.transifex.com/mysociety/alaveteli/language/n" @@ -208,11 +208,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "सबै हेर्नुहोस् अथवा हामीलाई थप्न भन्नुहोस्।" -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "{{public_body_name}} लाई एक EIR अनुरोध गर्नुहोस् " +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "to {{public_body_name}} लाईएक नयाँ FOI अनुरोध तयार पार्नुहोस् " +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -298,8 +298,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "प्रकार: खोज्न चाहिने कुरा चुन्न हेर्नुहोस् प्रकारका टेबलहरू तल " -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "सम्पूर्ण जानकारीहरू पठाइएको छ" @@ -338,6 +338,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "कुनै पनि जवाफ पाइएको छैन (हुन सक्छ अनुरोध प्राप्त भएको जानकारी मात्र)" @@ -385,8 +388,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "{{public_body_name}} लाई {{info_request_user}} को रूपमा {{date}} मा {{request_title}} को अनुरोधको लागिताकेता पठाइएको थियो" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "{{public_body_name}} द्वारा {{request_title}} को प्रतिक्रिया {{date}} मितिमा {{info_request_user}} लाई दिइएको छ | अनुरोधको स्टेटस् {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -432,9 +435,6 @@ msgstr "तपाईँको बारेमा:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -467,6 +467,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "{{public_body_name}} - निकाय थप्नुहोस्" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "निकाय थप्नुहोस्ः" @@ -639,24 +645,18 @@ msgstr "स्पष्टिकरण कुर्दै" msgid "Awaiting classification" msgstr "वर्गिकरण कुर्दै" -msgid "Awaiting classification." -msgstr "वर्गिकरण कुर्दै।" - msgid "Awaiting internal review" msgstr "आन्तरिक समीक्षाको पर्खाइमा" -msgid "Awaiting internal review." -msgstr "आन्तरिक पुनरावलोकन कुर्दै।" - msgid "Awaiting response" msgstr "जवाफ कुर्दै" -msgid "Awaiting response." -msgstr "जवाफ कुर्दै।" - msgid "Back to content" msgstr "विषयवस्तुमा फर्कनुहोस्" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -693,11 +693,8 @@ msgstr "" msgid "Browse all requests →" msgstr "सबै अनुरोधहरू हेर्नुहोस् →" -msgid "Browse and search requests" -msgstr "सबै खोज अनुरोधहरू हेर्नुहोस्" - -msgid "Browse and search requests (page {{count}})" -msgstr "हेर्नुहोस् र खोज जतिजाहरू ( {{count}} पाना)" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -705,8 +702,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "सबै अनुरोधहरू हेर्नुहोस्" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "कानुनतः, उनीहरूले जवाफ दिनै पर्छ।" @@ -726,6 +723,12 @@ msgstr "कानुनतः, {{public_body_link}} ले सिघ् msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "चाहनु भएको कुरा भेट्नु भएन?" @@ -798,6 +801,9 @@ msgstr "तपाईँको FOI अनुरोधलाई स्पष्ट msgid "Classify an FOI response from {{authority_name}}" msgstr "{{authority_name}} बाट आएको FOI जवाफलाई वर्गिकरण गर्नुहोस्" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -868,10 +874,10 @@ msgstr "तपाईँको इमेल ठेगाना निश्चि msgid "Confirm your new email address on {{site_name}}" msgstr "{{site_name}} मा रहेको तपाईँको इमेल ठेगाना निश्चित गर्नुहोस्" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -940,6 +946,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "मिति:" @@ -967,15 +976,15 @@ msgstr "ढिलाइ गरिएको" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "तपाईँको सूचनाको अधिकार अन्तर्गतको अनुरोधको ढिलाइ गरिएको प्रतिक्रिया - {{request_title}}" -msgid "Delayed." -msgstr "ढिलाइ गरिएको।" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "बाहिर जाने सन्देशको वितरण स्थिति #{{id}}" msgid "Delivery error" msgstr "हस्तान्तरण त्रुटी" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "अनुरोधको जानकारी “{{request_title}}”" @@ -1012,10 +1021,7 @@ msgstr "भयो" msgid "Done >>" msgstr "भयो >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1024,6 +1030,9 @@ msgstr "सम्पूर्ण पत्रचार zip file को रू msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "मूल सङ्लग्नहरू डाउनलोड गर्नुहोस्" @@ -1038,9 +1047,27 @@ msgstr "" "सम्पादन र थप थप विवरण माथि सन्देश \n" " तपाईँ आफ्नो प्रतिक्रियासँग असन्तुष्ट छन् किन बुझायो।" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "आफ्नो बारेमा पाठ सम्पादन गर्नहोस्" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "तपाईँको अनुरोध सम्पादन गर्नुहोस्" @@ -1105,6 +1132,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1117,8 +1147,8 @@ msgstr "" msgid "FOI" msgstr "FOI" -msgid "FOI email address for {{public_body}}" -msgstr "{{public_body}} को लागि FOI इमेल ठेगाना" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "FOI कानुन यो निकायको लागि लागू हुँदैन।" @@ -1159,6 +1189,9 @@ msgstr "सम्बन्धित निकायहरू पत्ता ल msgid "Find the authorities to write to" msgstr "लेख्न पाउने अधिकारीहरू खोजी गर्ने " +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "पहिलो, के तपाईँको अर्को अनुरोध सफल भयो?" @@ -1209,9 +1242,6 @@ msgstr "ताकेता गर्नुहोस्" msgid "Follow up message sent by requester" msgstr "अनुरोध्कर्ता ले पठाएको सन्देशलाई पछ्यौनुहोस" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "अवस्थित अनुरोध गर्न सन्देशहरू पालन गर्न पठाइएका छन् {{authority_email}} " - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "फल्लोअप् {{info_request_user}} द्वारा {{public_body_name}} लाई {{date}} मा पठाइएको छ |" @@ -1224,8 +1254,8 @@ msgstr "स्पामका कारण यो अनुरोधमा त msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Twitter मा हामीलाई पछ्याउनुहोस्" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "पछ्याउँदै" @@ -1246,16 +1276,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "‘{{first_letter}}’ बाट सुरु हुने {{count}} आधिकारिक निकाय भेटियो" msgstr[1] "‘{{first_letter}}’ बाट सुरु हुने {{count}} आधिकारिक निकायहरू भेटिए" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{category_name}}को {{count}} सार्बजनिक निकाय भेटियो" -msgstr[1] "{{category_name}} का {{count}} सार्वजनिक निकायहरू भेटिए" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "{{tag_name}}को {{count}} सार्बजनिक निकाय भेटियो" msgstr[1] "{{tag_name}}का {{count}} सार्वजनिक निकायहरू भेटिए" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1268,9 +1303,6 @@ msgstr "सूचना कार्यको स्वतन्त्रता msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "सूचनाको लागि स्वतन्त्रता यो निकाय को लागि मान्य छैन, त्यसैले तपाईँले यो अनुरोध पेस गर्न हुनुहुँदैन ।" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "सूचनाको स्वतन्त्रताको नियम अब यस आधिकारिक निकायमा लागु हुन्न। हालका अनुरोधको लागि ताकेता सन्देशहरू {{authority_email}}मा पठाइन्छ।" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "सूचना व्यवस्था स्वतन्त्रता अब {{public_body_name}}मा लागू हुँदैन" @@ -1319,13 +1351,10 @@ msgstr "तपाईंको खाता छ?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1349,6 +1378,9 @@ msgstr "नमस्ते! You can make Freedom of Information requests within msgid "Help" msgstr "सहायता" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "हामीलाई अद्यावधिक नगरिएको अनुरोध वर्गीकरण गर्न मदत गर्नुहोस् ।" @@ -1447,9 +1479,6 @@ msgstr "मैले एउटा त्रुटि सन्देस< msgid "I've received an error message" msgstr "मैले एउटा त्रुटि सन्देस पाए" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "यदि ठेगाना गलत छ भने, वा तपाइलाइ अझ राम्रो ठेगाना थाहा छ भने, कृपया हामीलाइ सम्पर्क गर्नुहोला।" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "यदी त्रुटि ढुवानी विफल्ता हो भने,अनी तपाईंले अधिकारसम्बन्धी नविनतम FOI ठेगाना भेटनु भयो भने,तल को फोर्म प्रयोग गरेर भन्नुहोस्|" @@ -1514,9 +1543,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr " तपाईले आफ्नो अनुरोध फिर्ता लिया छ कि छैन ,अख्तियारलाई बताउन तल एक सन्देश लेख्नुहोस्। अन्यथा उनीहरूलाई फिर्ता लिया बारे थाहा हुने छैन।" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "तपाईंले प्रयोग गर्न ठेगाना थाहा छ भने कृपया href=\"{{url}}\"> हामीलाई पठाउनुहोस् । \\ n तपाईँ त्यो वेबसाइटको ठेगाना सोधेर वा तिनीहरूलाई फोन गरेर पत्ता लगाउन सक्षम हुन सक्छ।" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "यदी तपाईंले यो सन्देशमा प्रतिकिर्या दिनु भयो भने यो सिधै {{user_name}}मा जानेछ,अनी तपाईंले\n" @@ -1558,9 +1584,6 @@ msgstr "तपाईको खाताको सुरक्षा सुधा msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. उदाहरण." @@ -1573,9 +1596,6 @@ msgstr "व्यक्तिगत अनुरोधहरु" msgid "Information not held" msgstr "सूचना आयोजित छैन" -msgid "Information not held." -msgstr "सूचना राखिएको छैन" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "बाहिर निकाल्ने अथवा छोड्ने प्रति सूचना (जस्तै : हल्ला, शक्ति,\n" @@ -1602,6 +1622,9 @@ msgstr "अमान्य एक पटकको पासवर्ड" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "के {{email_address}} गलत ठेगाना हो {{law_used_full}} जस्तो र्अनुरोधका लागि {{public_body_name}}? हो भने, यो फारम प्रयोग गरेर हामीलाई सम्पर्क गर्नुहोस्:" @@ -1623,12 +1646,12 @@ msgstr "{{year}} मा सामेल भएको" msgid "Joined {{site_name}} in {{year}}" msgstr "{{site_name}} मा सामेल वर्ष {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "मात्र एक अर्को कुरा" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "पासकोड सुरक्षित राख्नुहोस्। You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." - msgid "Keep your request up to date" msgstr "तपाईँको अनुरोध दस्तुरुस्त राखीदिनु होला" @@ -1671,6 +1694,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1692,9 +1718,6 @@ msgstr "प्रशासनिक माध्यममा लग इन ग msgid "Long overdue" msgstr "धेर्रै बाँकी" -msgid "Long overdue." -msgstr "लामो बाँकी । " - msgid "Made between" msgstr "बिच" @@ -1791,9 +1814,6 @@ msgstr "एड्मिनको सहायता चाहिएको छ" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "सूचना अनुरोधको नयाँ स्वतन्त्रता" @@ -1827,9 +1847,6 @@ msgstr "'{{request_title}}' अनुरोधको लागि नयाँ msgid "Newest results first" msgstr "नयाँ परिणाम पहिला " -msgid "News story" -msgstr "" - msgid "Next" msgstr "अर्को" @@ -1911,6 +1928,9 @@ msgstr "अनुरोध लुकाइएको घटनाको गिन msgid "Number of requests" msgstr "अनुरोध संख्या" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "या हालको फोटो हटाउनुहोस्" @@ -1974,9 +1994,6 @@ msgstr "आंशिक सफल" msgid "Partially successful" msgstr "आंशिक रूपमा सफल" -msgid "Partially successful." -msgstr "आंशिकरूपमा सफल" - msgid "Password is not correct" msgstr "पासवर्ड मिलेन" @@ -2248,6 +2265,9 @@ msgstr "तपाईँको एक पटक पासकोड प्रि msgid "Privacy and cookies" msgstr "गोपनीयता र कुकीहरू" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr " {{user_name}} को लागि प्रोफाइल तस्विर" @@ -2257,6 +2277,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "सार्वजनिक निकायहरू" @@ -2338,9 +2361,6 @@ msgstr "हालै बताइएका नतिजाहरू पहिल msgid "Refused" msgstr "अस्विकार गरियो" -msgid "Refused." -msgstr "अस्विकार गरियो।" - msgid "Regenerate one time passcode" msgstr "एकपटकको लागि पासवर्ड बनाउनुहोस्" @@ -2380,8 +2400,8 @@ msgstr "यस अनुरोध बारे उजुर गर्नुह msgid "Reported" msgstr "उजुर गरियो" -msgid "Reported for administrator attention." -msgstr "प्रवन्धकको ध्यान चाहिने भनेर चिनो लगाइएको।" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "चिनो लगाउँदा प्रबन्धकलाई सुचित गरिने छ। उनीहरूले जतिसक्दो चाँडो जवाफ दिनेछन्।" @@ -2395,6 +2415,9 @@ msgstr "आन्तरिक पुनरावलोकको लागि अ msgid "Request an internal review from {{person_or_body}}" msgstr "{{person_or_body}} बाट आन्तरिक पुनरावलोकनको लागि अनुरोध गर्नुहोस्" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2452,6 +2475,9 @@ msgstr "अनुरोधहरु निम्न निकायहरुम msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "इमेलबाट जवाफ दिनुहोस्" @@ -2530,6 +2556,12 @@ msgstr "" msgid "Search queries" msgstr "खोज क्वेरी" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "खोज नतिजा" @@ -2545,6 +2577,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "फलोअप पठाउनुहोस्" @@ -2593,6 +2631,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2616,6 +2659,9 @@ msgstr "अाफ्नो प्रोफाईल तस्बिर राख msgid "Share on Facebook" msgstr "फेस्‌बूकमा बाँड्नुहोस्। " +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2835,9 +2881,6 @@ msgstr "सूचनाको हक सम्बन्धी सफल अन msgid "Successful requests" msgstr "सफल अनुरोधहरू" -msgid "Successful." -msgstr "सफल।" - msgid "Suggest how the requester can find the rest of the information." msgstr "अनुरोधकर्ताले कसरी बाँकी जानकारी पाउन सक्छन् बारे सुझाव दिनुहोस्।" @@ -2865,6 +2908,9 @@ msgstr "ट्यागहरूः" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "हामीलाई साइट सुग्घर राख्न मदत गर्नुभएकोमा धन्यवाद!" @@ -2928,6 +2974,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "पहिला जस्तो खाता छोडिएको थियो अहिले नि तेस्तै छोडिएको छ " @@ -2990,12 +3042,6 @@ msgstr "पछिल्लो प्रयोगकर्ता अन्ति msgid "The last user was created over a day ago" msgstr "अन्तिम प्रयोगकर्ता एकदिन अगाडी बनेको थियो " -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "पृष्ठ अवस्थित छैन। तपाईंले अब प्रयास गर्न सक्ने कुराहरू:" @@ -3173,8 +3219,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "हालसम्म देखाउनको लागी केहि छैन |" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "त्यहा एउटा वितरण त्रुटि थियो वा त्यस्तै, जुनलाइ {{site_name}} टोली द्वारा फिक्सिंग चाहिन्छ।" +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "reCAPTCHA मा त्रुटी थियो | कृपया पुन: प्रयास गर्नुहोस् |" @@ -3567,12 +3613,6 @@ msgstr "नयाँ सञ्झ्यालमा लगहरू खोल् msgid "Turn off email alerts" msgstr "इमेल सुचकहरू बन्द गर्नुहोस्" -msgid "Tweet it" -msgstr "ट्विट गर्नुहोस्" - -msgid "Tweet this request" -msgstr "यस अनुरोधलाई ट्विट गर्नुहोस्" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "दुई कारक प्रमाणीकरणले आफ्नो पासवर्ड रिसेट गर्न थप जानकारी मागेरआफ्नो खातामा अतिरिक्त सुरक्षा थप्छ।" @@ -3641,8 +3681,8 @@ msgstr "सदस्यता खारेज गर्नुहोस्" msgid "Unusual response" msgstr "भिन्न प्रकारको जवाफ" -msgid "Unusual response." -msgstr "भिन्न प्रकारको जवाफ।" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "इमेल ठेगाना अद्यावधि गर्नुहोस् - {{public_body_name}}" @@ -3680,23 +3720,14 @@ msgstr "पालना" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "FOI इमेल ठेगाना हेर्नुहोस" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr " '{{public_body_name}}' को लागि इमेल ठेगाना हेर्नुहोस्" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "{{public_body_name}} को लागि FOI इमेल ठेगाना हेर्नुहोस्" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "{{user_name}}ले गरेको सूचना को स्वतन्त्रताको अनुरोध हेर्नुहोस्:" msgid "View authorities" msgstr "निकायहरू हेर्नुहोस्" -msgid "View email" -msgstr "इमेल हेर्नुहोस्" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "घटना इतिहास हेर्नुहोस्" @@ -3704,11 +3735,17 @@ msgstr "घटना इतिहास हेर्नुहोस्" msgid "View other requests to {{public_body}}" msgstr "{{public_body}} लाई गरिएका अन्य अनुरोधहरू हेर्नुहोस्" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "तपाईँको दुई चरणीय प्रमाणीहरू एक पटककको पासकोड हेर्नुहोस्" -msgid "Waiting clarification." -msgstr "स्पष्टिकरण कुर्दै." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "ह्यान्डलिङ अफ रीकवेस्टकोआन्तरिक समीक्षाको लागि {{public_body_link}} द्वारा प्रतीक्षा गर्दै |" @@ -3740,9 +3777,6 @@ msgstr "हामीले यस् सन्देशको लागि म msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "हामी संग यो निकायको लागि काम गर्ने अनुरोध इमेल ठेगाना छैन | " - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "{{public_body_name}}को लागि हामीसँग {{law_used_full}} को ठेगाना छैन" @@ -3849,6 +3883,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "तपाई त्यहाँ पुगेपछि ,सूचनामा कुनै कामलाग्दो सूचना छ भने कृपया आफ्नो स्थिति अपडेट गरिदिनु होला।" @@ -3873,8 +3910,8 @@ msgstr "तपाइले एस अनुरोधलाई किन अन msgid "Withdrawn" msgstr "फिर्ता लिइयो" -msgid "Withdrawn by the requester." -msgstr "अनुरोधकर्ताद्वारा फिर्ता लिइएको।" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "हप्ता" @@ -3900,6 +3937,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "तपाईँले त्यही लामबद्ध अनुरोध {{date}} मा गरी सक्नु भएको छ।तपाईँले पहिले देखिको अनुरोध हेर्न , या जानकारीहरू सम्पादन गरेर नयाँ तर उस्तै अनुरोधहरू बनाउन सक्नुहुन्छ।" @@ -4547,9 +4587,6 @@ msgstr "तपाईँको खोज पदावली यहाँ रा msgid "unknown" msgstr "अज्ञात" -msgid "unknown reason" -msgstr "अज्ञात कारण" - msgid "unknown reason " msgstr "अज्ञात कारण " @@ -4586,9 +4623,6 @@ msgstr "{{authority_name}} सँग अनुरोध गरिएको ज msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} स्पस्टिकरणको लागि कुरीरहेको छ।" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} सङ्लग्न" @@ -4599,6 +4633,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} स्पस्टिकरणहरू गरिए" msgstr[1] "{{count}} स्पस्टिकरणहरू गरिए।" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} उत्सुकहरू" @@ -4743,8 +4782,8 @@ msgstr "{{reason}}। Unfortunately we don't know the FOI email address for that msgid "{{search_results}} matching '{{query}}'" msgstr "'{{query}}' सँग मिल्दो {{search_results}} " -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} ब्लग र ट्विटहरू" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4757,9 +4796,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}}ले यस आधिकारिक निकायको लागि {{request_email}}मा नयाँ अनुरोधहरु पठाउँछ।" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ne_NP/app.po b/locale/ne_NP/app.po index 003b0d33be..846d848032 100644 --- a/locale/ne_NP/app.po +++ b/locale/ne_NP/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Nepali (Nepal) (http://app.transifex.com/mysociety/alaveteli/la" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/nl/app.po b/locale/nl/app.po index d79498ad21..aaf1b7199d 100644 --- a/locale/nl/app.po +++ b/locale/nl/app.po @@ -44,9 +44,9 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Liset Hamming , 2019-2020,2022-2023\n" +"Last-Translator: Luis Villegas, 2022\n" "Language-Team: Dutch (http://app.transifex.com/mysociety/alaveteli/language/nl" "/)\n" "MIME-Version: 1.0\n" @@ -186,11 +186,11 @@ msgstr "60 minuten+" msgid "Browse all or ask us to add one." msgstr "Bekijk alle overheidsinstanties of vraag ons er één toe te voegen." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Dien een Woo-verzoek in over een milieu-onderwerp bij {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Dien een nieuw Woo-verzoek in bij {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Log in om updates te ontvangen over dingen die je volgt of meldingen per e-mail weer aan te zetten." @@ -278,8 +278,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: om bepaalde elementen die je wil zoeken te selecteren, zie de tabel met variaties verderop." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Tips om als verzoeker een bevredigend antwoord te krijgen." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Alle informatieis verzonden" @@ -316,6 +316,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Ben je journalist? {{pro_site_link}} biedt de mogelijkheid om bulkverzoeken te doen en je Woo-verzoek(en) af te schermen." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Geen antwoord ontvangen\n" @@ -372,8 +375,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Een follow-up over {{request_title}} is verstuurd naar {{public_body_name}} door {{info_request_user}} op {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Een antwoord op {{request_title}} is verstuurd door {{public_body_name}} naar {{info_request_user}} op {{date}}. De status van het verzoek: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Een samenvatting van het besluit en de openbaargemaakte stukken als je die per post of op je eigen e-mailadres ontvangen hebt. " @@ -417,9 +420,6 @@ msgstr "Over jou:" msgid "About {{count}} FOI requests found" msgstr "Ongeveer {{count}} Wob- en Woo-verzoeken gevonden" -msgid "Academic paper" -msgstr "Academisch onderzoek" - msgid "Account closed at user request" msgstr "Account beëindigd op verzoek van de gebruiker" @@ -452,6 +452,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Voeg overheidsinstantie - {{public_body_name}} toe" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Voeg de overheidsinstantie toe:" @@ -624,24 +630,18 @@ msgstr "In afwachting van een toelichting" msgid "Awaiting classification" msgstr "In afwachting om gelabeld te worden" -msgid "Awaiting classification." -msgstr "In afwachting om gelabeld te worden." - msgid "Awaiting internal review" msgstr "In afwachting van interne heroverweging" -msgid "Awaiting internal review." -msgstr "In afwachting van interne heroverweging." - msgid "Awaiting response" msgstr "In afwachting van een antwoord" -msgid "Awaiting response." -msgstr "In afwachting van een antwoord." - msgid "Back to content" msgstr "Terug naar de inhoud" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Geweigerd omdat een andere weigering is genegeerd" @@ -678,11 +678,8 @@ msgstr "Bekijk de lijst met alle overheidsinstanties →" msgid "Browse all requests →" msgstr "Doorzoek alle Wob- en Woo-verzoeken op de Wob-Knop →" -msgid "Browse and search requests" -msgstr "Bekijk en doorzoek de lijst met Wob- en Woo-verzoeken" - -msgid "Browse and search requests (page {{count}})" -msgstr "Bekijk en doorzoek de lijst met Wob- en Woo-verzoeken (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Doorzoek alle zichtbare verzoeken" @@ -690,8 +687,8 @@ msgstr "Doorzoek alle zichtbare verzoeken" msgid "Browse latest responses" msgstr "Doorzoek alle zichtbare reacties" -msgid "Browse requests" -msgstr "Bekijk de Wob- en Woo-verzoeken" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Overheidsinstanties zijn wettelijk verplicht om je verzoek in behandeling te nemen." @@ -711,6 +708,12 @@ msgstr "Volgens de wet had {{public_body_link}} zo spoedig mogelijk
afwachting van een antwoord van {{public_body_link}} msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -954,15 +963,15 @@ msgstr "Vertraagd (of verdaagd)" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "(Te) late reactie op je Woo-verzoek - {{request_title}}" -msgid "Delayed." -msgstr "Vertraagd (of verdaagd)." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Afleveringsstatus van uitgaand bericht #{{id}}" msgid "Delivery error" msgstr "Afleveringsfout" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Details Woo-verzoek “{{request_title}}”" @@ -999,11 +1008,8 @@ msgstr "Klaar" msgid "Done >>" msgstr "Klaar >>" -msgid "Download Data" -msgstr "Download gegevens" - -msgid "Download Leaderboard Data" -msgstr "Download dashboardgegevens" +msgid "Download" +msgstr "" msgid "Download a zip file of all correspondence" msgstr "Download zip-bestand van alle correspondentie" @@ -1011,6 +1017,9 @@ msgstr "Download zip-bestand van alle correspondentie" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Download de bijlage" @@ -1025,9 +1034,27 @@ msgstr "" "Wijzig en voeg meer details toe aan het bericht hierboven,\n" " waarin je uitlegt waarom je niet tevreden bent met het antwoord." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Wijzig je profieltekst." +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Wijzig je Woo-verzoek" @@ -1090,6 +1117,9 @@ msgstr "Alles wat je op deze pagina invult, ook je naam, versch msgid "Expand all correspondence" msgstr "Klap alle correspondentie uit" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "Gegevens ophalen" @@ -1102,8 +1132,8 @@ msgstr "Opgehaalde gegevens konden niet opgeslagen worden" msgid "FOI" msgstr "Woo" -msgid "FOI email address for {{public_body}}" -msgstr "E-mailadres voor een Woo-verzoek aan {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Deze overheidsinstantie valt niet onder de Wet open overheid (Woo)" @@ -1144,6 +1174,9 @@ msgstr "Zoek de overheidsinstantie(s) waar je een Woo-verzoek wilt indienen" msgid "Find the authorities to write to" msgstr "Vind de juiste overheidsinstantie voor je verzoek" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Ten eerste, zijn je andere verzoeken succesvol geweest?" @@ -1197,9 +1230,6 @@ msgstr "Follow-up" msgid "Follow up message sent by requester" msgstr "Follow-up bericht verstuurd door de indiener" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Follow-up berichten voor bestaande verzoeken worden verstuurd naar {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Een follow-up bericht werd verstuurd aan {{public_body_name}} door {{info_request_user}} op {{date}}." @@ -1212,8 +1242,8 @@ msgstr "Follow-up berichten en nieuwe reacties op dit verzoek zijn tegengehouden msgid "Follow us on Facebook" msgstr "Volg ons op Facebook en Twitter" -msgid "Follow us on twitter" -msgstr "Volg ons op Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Volgend" @@ -1234,16 +1264,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "{{count}} overheidsinstelling gevonden waarvan de naam begint met ‘{{first_letter}}’" msgstr[1] "{{count}} overheidsinstanties gevonden waarvan de naam begint met ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} overheidsinstelling gevonden in de categorie ‘{{category_name}}’" -msgstr[1] "{{count}} overheidsinstanties gevonden in de categorie ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "{{count}} overheidsinstelling gevonden die overeenkomt met het label ‘{{tag_name}}’" msgstr[1] "{{count}} overheidsinstanties gevonden die overeenkomen met label/tag ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Vier weken geleden heb je een Woo-verzoek ingediend bij {{public_body_name}} met behulp van {{site_name}}." @@ -1256,9 +1291,6 @@ msgstr "Wet open overheid" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "De Wet open overheid is niet van toepassing op deze organisatie. Je kunt er dan ook geen Woo-verzoek aan sturen." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "De Wet open overheid is niet meer van toepassing op deze organisatie. Follow-up berichten voor ingediende verzoeken zullen gestuurd worden naar {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "De Wet open overheid is niet meer van toepassing op {{public_body_name}}." @@ -1307,14 +1339,11 @@ msgstr "Heb je al een account?" msgid "Handled by postal mail" msgstr "Via de post afgerond" -msgid "Handled by postal mail." -msgstr "Via de post afgerond." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Wordt er naar dit verzoek verwezen in een mediabericht of een wetenschappelijk artikel?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Wordt er naar dit verzoek verwezen in een mediabericht of een wetenschappelijk artikel? Laat het ons weten:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Hallo! We hebben een belangrijke mededeling voor bezoekers uit een ander land dan {{country_name}}" @@ -1337,6 +1366,9 @@ msgstr "Hallo! Je kan informatieverzoeken indienen vanuit {{country_name}} via { msgid "Help" msgstr "Hulp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Help ons om verzoeken die niet of niet goed ge-update zijn correct te labelen." @@ -1435,9 +1467,6 @@ msgstr "Ik heb een foutmelding ontvangen" msgid "I've received an error message" msgstr "Ik heb een foutmelding ontvangen" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Als het e-mailadres verkeerd is of je weet een beter e-mailadres, geef dat dan ajb aan ons door." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Indien de fout werd veroorzaakt door een 'delivery failure' en je vindt een nieuw e-mailadres voor Woo-verzoeken aan deze overheidsinstantie, breng ons alsjeblieft hiervan op de hoogte te via het onderstaande formulier." @@ -1499,11 +1528,6 @@ msgstr "Als je de e-mail meer dan twee maanden geleden hebt ont msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Als je het nog niet gedaan hebt, gelieve een bericht te versturen naar de overheidsinstantie waar je je verzoek hebt ingediend waarbij je mededeelt dat je je verzoek hebt ingetrokken. Anders zijn zij hier niet van op de hoogte." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Als je het e-mailadres kent, gelieve het ons door te geven.\n" -" Je kunt het e-mailadres vinden op de website van de overheidsinstantie of telefonisch opvragen." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Als je antwoordt op dit bericht zal je antwoord direct verstuurd worden aan {{user_name}}, waarbij je e-mailadres zichtbaar wordt. Antwoord dus niet als dit een probleem voor je is." @@ -1540,9 +1564,6 @@ msgstr "Verbeter de veiligheid van je account" msgid "In progress" msgstr "In afwachting" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Voeg nuttige links toe, zoals een link naar je campagne, blog of Twitter-account. Deze links zullen aanklikbaar zijn, zoals" @@ -1555,9 +1576,6 @@ msgstr "Individuele verzoeken" msgid "Information not held" msgstr "Informatie die niet beschikbaar is" -msgid "Information not held." -msgstr "Informatie die niet beschikbaar is." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informatie over uitstoot en afvalstromen (bijvoorbeeld lawaai, energie, straling, restmaterialen)" @@ -1582,6 +1600,9 @@ msgstr "Het eenmalige wachtwoord is niet juist" msgid "Invalid token" msgstr "Ongeldige token" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Is {{email_address}} het verkeerde e-mailadres voor {{law_used_full}} Woo-verzoeken aan {{public_body_name}}? Laat ons het weten of geef ons het juiste adres door via dit formulier:" @@ -1606,12 +1627,12 @@ msgstr "Ingeschreven sinds {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Ingeschreven op {{site_name}} in {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Nog een laatste punt" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Bewaar je toegangscode op een veilige plaats. Je zal 'm nodig hebben om je account te activeren als je je wachtwoord wil veranderen. Je kan bijvoorbeeld de code toevoegen aan een wachtwoordmanager of afdrukken en bewaren op een veilige plaats." - msgid "Keep your request up to date" msgstr "Houd je verzoek up-to-date" @@ -1654,6 +1675,9 @@ msgstr "Verlaat dit project" msgid "Let us know" msgstr "Laat het ons weten" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Laat het ons weten en we zullen je helpen het aan te vechten" @@ -1677,9 +1701,6 @@ msgstr "Log in op de beheerder-interface" msgid "Long overdue" msgstr "Termijn ruimschoots overschreden" -msgid "Long overdue." -msgstr "Termijn ruimschoots verstreken." - msgid "Made between" msgstr "Gemaakt tussen" @@ -1776,9 +1797,6 @@ msgstr "Neem contact op met de beheerder" msgid "Needs status update" msgstr "Update van de status van je verzoek is nodig" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nieuwe Woo-verzoeken" @@ -1812,9 +1830,6 @@ msgstr "Nieuwe updates voor het Woo-verzoek '{{request_title}}'" msgid "Newest results first" msgstr "Meest recente resultaten eerst" -msgid "News story" -msgstr "Nieuwsbericht" - msgid "Next" msgstr "Volgende" @@ -1896,6 +1911,9 @@ msgstr "Aantal keren dat een Woo-verzoek verborgen is" msgid "Number of requests" msgstr "Aantal verzoeken" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OF verwijder de bestaande foto" @@ -1959,9 +1977,6 @@ msgstr "Gedeeltelijk succesvol" msgid "Partially successful" msgstr "Gedeeltelijk succesvol" -msgid "Partially successful." -msgstr "Gedeeltelijk succesvol." - msgid "Password is not correct" msgstr "Het wachtwoord klopt niet" @@ -2235,6 +2250,9 @@ msgstr "Print je eenmalige toegangscode" msgid "Privacy and cookies" msgstr "Privacy en cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profielfoto van {{user_name}}" @@ -2244,6 +2262,9 @@ msgstr "Initiatiefnemer project" msgid "Proposed Email:" msgstr "Voorgesteld e-mailbericht" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Overheidsinstanties" @@ -2325,9 +2346,6 @@ msgstr "De laatste beschreven resultaten eerst" msgid "Refused" msgstr "Afgewezen" -msgid "Refused." -msgstr "Afgewezen" - msgid "Regenerate one time passcode" msgstr "Genereer een nieuwe eenmalige toegangscode" @@ -2367,8 +2385,8 @@ msgstr "Meld dit verzoek bij de beheerders" msgid "Reported" msgstr "Gemeld" -msgid "Reported for administrator attention." -msgstr "Gemeld aan de beheerders" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Een melding van een verzoek komt terecht bij de beheerders van de site. Ze zullen je zo spoedig mogelijk antwoorden." @@ -2382,6 +2400,9 @@ msgstr "Maak bezwaar" msgid "Request an internal review from {{person_or_body}}" msgstr "Maak bezwaar bij {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "De e-mail met het verzoek mag niet leeg blijven" @@ -2439,6 +2460,9 @@ msgstr "Verzoeken worden verstuurd naar de volgende overheidsinstantie:" msgid "Requires admin attention" msgstr "Vereist aandacht van admin" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Per e-mail reageren" @@ -2514,6 +2538,12 @@ msgstr "Doorzoek meer dan
{{number_of_requests}} verzoeken FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Stuur een follow-up bericht" @@ -2577,6 +2613,11 @@ msgstr "Opnieuw herinnering gestuurd aan {{public_body_name}}, naar hun nieuwe e msgid "Sent a follow up to {{public_body_name}} again." msgstr "Opnieuw herinnering gestuurd aan {{public_body_name}}." +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "Verzoek opnieuw verstuurd aan {{public_body_link}}, naar hun nieuwe e-mailadres." @@ -2600,6 +2641,9 @@ msgstr "Plaats profielfoto" msgid "Share on Facebook" msgstr "Deel op Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Deel via een privélink" @@ -2813,9 +2857,6 @@ msgstr "Als succesvol aangemerkte Wob-verzoeken" msgid "Successful requests" msgstr "Als succesvol aangemerkte Woo-verzoeken" -msgid "Successful." -msgstr "Succesvol." - msgid "Suggest how the requester can find the rest of the information." msgstr "Help de indiener van dit verzoek om de rest van de informatie te vinden" @@ -2843,6 +2884,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "Taken" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Dank voor je hulp om samen de Woo-Knop op orde te houden!" @@ -2910,6 +2954,12 @@ msgstr "De link (url) naar het mediabericht" 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 "De URL waar je het e-mailadres vond. Dit veld is optioneel, maar het zou ons erg helpen mocht je een link hebben naar een specifieke pagina op de website van de overheidsinstantie waar dit mailadres staat. Het vergemakkelijkt het checken ervan." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "De accounts zijn gebleven zoals ze waren." @@ -2970,12 +3020,6 @@ msgstr "De laatste gebruiker is de afgelopen dag aangemaakt." msgid "The last user was created over a day ago" msgstr "De laatste gebruiker is langer dan een dag geleden aangemaakt." -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "De pagina bestaat niet. Je kunt proberen om:" @@ -3153,8 +3197,8 @@ msgstr "De snelheid waarmee je opmerkingen kunt plaatsen is ook beperkt. Probeer msgid "There is nothing to display yet." msgstr "Er is voorlopig nog niets te tonen." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Er is een afleverfout opgetreden, die hersteld moet worden door de beheerders van {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Er is een fout opgetreden met reCAPTCHA. Probeer opnieuw." @@ -3558,12 +3602,6 @@ msgstr "Probeer het 'logboek' in een nieuw venster te openen." msgid "Turn off email alerts" msgstr "Schakel meldingen per e-mail uit" -msgid "Tweet it" -msgstr "Deel het op Twitter" - -msgid "Tweet this request" -msgstr "Deel dit verzoek op Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Tweevoudige authenticatie voegt extra veiligheid toe aan je account door meer informatie te vragen bij het aanpassen van het wachtwoord." @@ -3632,8 +3670,8 @@ msgstr "Schrijf je uit" msgid "Unusual response" msgstr "Ongebruikelijk antwoord" -msgid "Unusual response." -msgstr "Ongebruikelijk antwoord." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Update het e-mailadres van - {{public_body_name}}" @@ -3671,23 +3709,14 @@ msgstr "Aanstootgevend" msgid "Vexatious annotation" msgstr "Aanstootgevende opmerking" -msgid "View FOI email address" -msgstr "Bekijk het e-mailadres voor Woo-verzoeken " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Bekijk het e-mailadres voor Woo-verzoeken van '{{public_body_name}}' " - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Bekijk het e-mailadres voor Woo-verzoeken van '{{public_body_name}}' " - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Bekijk de Woo-verzoeken van {{user_name}}:" msgid "View authorities" msgstr "Bekijk de overheidsinstanties" -msgid "View email" -msgstr "Bekijk e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Bekijk het overzicht van gebeurtenissen" @@ -3695,11 +3724,17 @@ msgstr "Bekijk het overzicht van gebeurtenissen" msgid "View other requests to {{public_body}}" msgstr "Bekijk andere verzoeken aan {{public_body}} " +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Bekijk je eenmalige toegangscode voor tweevoudige authenticatie" -msgid "Waiting clarification." -msgstr "In afwachting van verduidelijking." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "In afwachting van een beslissing op bezwaar door {{public_body_link}} inzake hun besluit op dit verzoek." @@ -3731,9 +3766,6 @@ msgstr "Het 'logboek' voor dit bericht kon niet van de mailserver gedownload wor msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "We staan geen Woo-verzoeken via {{site_name}} toe over je persoonlijke omstandigheden. We hebben je verzoek daarom verborgen voor andere gebruikers." -msgid "We do not have a working request email address for this authority." -msgstr "De Woo-Knop beschikt niet over een werkend e-mailadres voor verzoeken aan deze overheidsinstantie." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "De site beschikt niet over een werkend {{law_used_full}} adres voor {{public_body_name}}." @@ -3842,6 +3874,9 @@ msgstr "Wat zou je willen doen?" msgid "What's happened:" msgstr "Wat is er gebeurd:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Als het zover is, pas dan de status van het verzoek aan om duidelijk te maken of het antwoord nuttige informatie bevatte." @@ -3868,8 +3903,8 @@ msgstr "Waarom wordt dit Woo-verzoek als ongeschikt aangemerkt?" msgid "Withdrawn" msgstr "Ingetrokken" -msgid "Withdrawn by the requester." -msgstr "Ingetrokken door de verzoeker." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3895,6 +3930,9 @@ msgstr "Stel je verzoek op" msgid "Yes" msgstr "Ja" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Je hebt dit zelfde bulkverzoek al eerder opgesteld op {{date}}. Je kuntde bestaande verzoeken bekijken, of wijzigingen doen om een vergelijkbaar bulkverzoek te doen." @@ -4525,9 +4563,6 @@ msgstr "vul hier je zoekterm in" msgid "unknown" msgstr "onbekend" -msgid "unknown reason" -msgstr "reden onbekend" - msgid "unknown reason " msgstr "reden onbekend" @@ -4564,9 +4599,6 @@ msgstr "{{authority_name}} heeft niet de gevraagde informatie." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} wacht op je verduidelijking." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} deelnemers" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} bijlage" @@ -4577,6 +4609,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} commentaar gemaakt." msgstr[1] "{{count}} opmerkingen gemaakt." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} persoon volgt" @@ -4721,8 +4758,8 @@ msgstr "{{reason}}. Tot onze spijt kennen wij het e-mailadres voor Woo-verzoeken msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} overeenkomend met '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog en tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4735,9 +4772,6 @@ msgstr "{{site_name}} heeft gezien dat {{authority_name}} mogelijk je verzoek ge msgid "{{site_name}} login link" msgstr "{{site_name}} login link" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "De Woo-Knop stuurt voor deze overheidsinstantie de Woo-verzoeken door naar {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} Gebruikers hebben {{number_of_requests}} aanvraag gemaakt, waaronder:" diff --git a/locale/nl_BE/app.po b/locale/nl_BE/app.po index 98dde09bb0..c107233975 100644 --- a/locale/nl_BE/app.po +++ b/locale/nl_BE/app.po @@ -44,7 +44,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: louisecrow , 2017\n" "Language-Team: Dutch (Belgium) (http://app.transifex.com/mysociety/alaveteli/l" @@ -186,11 +186,11 @@ msgstr "60 minuten" msgid "Browse all or ask us to add one." msgstr "Bekijk alle instellingen of vraag ons er één toe te voegen." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Doe een nieuw WOB-aanvraag m.b.t. milieu bij overheidsinstelling {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Doe een nieuwe WOB-aanvraag bij overheidsnstelling {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -278,8 +278,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: om bepaalde elementen die u wil zoeken te selecteren, zie de tabel met variaties verderop." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Tips om als aanvrager een bevredigend antwoord te krijgen." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Alle informatieis verzonden" @@ -318,6 +318,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Geen antwoord ontvangen\n" @@ -374,8 +377,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Een follow-up over {{request_title}} is verstuurd naar {{public_body_name}} door {{info_request_user}} op {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Een antwoord op {{request_title}} is verstuurd door {{public_body_name}} naar {{info_request_user}} op {{date}}. De status van de aanvraag: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -419,9 +422,6 @@ msgstr "Over u:" msgid "About {{count}} FOI requests found" msgstr "Ongeveer {{count}} WOB-informatieaanvragen gevonden" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -452,6 +452,12 @@ msgstr "Voeg een aantekening toe aan uw aanvraag met enkele gekozen quotes of ee msgid "Add authority - {{public_body_name}}" msgstr "Voeg een overheidsinstelling - {{public_body_name}} toe" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Voeg de overheidsinstelling toe" @@ -624,24 +630,18 @@ msgstr "In afwachting van de toelichting" msgid "Awaiting classification" msgstr "In afwachting van klassering" -msgid "Awaiting classification." -msgstr "In afwachting van classificatie." - msgid "Awaiting internal review" msgstr "In afwachting van heroverweging" -msgid "Awaiting internal review." -msgstr "In afwachting van heroverweging." - msgid "Awaiting response" msgstr "In afwachting van antwoord" -msgid "Awaiting response." -msgstr "In afwachting van antwoord." - msgid "Back to content" msgstr "Terug naar inhoud" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -678,11 +678,8 @@ msgstr "Doorblader de lijst van alle overheden →" msgid "Browse all requests →" msgstr "Bekijk alle informatieaanvragen →" -msgid "Browse and search requests" -msgstr "Bekijk en zoek de aanvragen" - -msgid "Browse and search requests (page {{count}})" -msgstr "Bekijk en zoek de aanvragen (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -690,8 +687,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Bekijk de informatieaanvragen" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "De overheidsinstellingen zijn wettelijk verplicht te antwoorden" @@ -711,6 +708,12 @@ msgstr "Volgens de wet had {{public_body_link}} snel moeten an msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Is er een overheidsinstelling die u niet vindt ?" @@ -783,6 +786,9 @@ msgstr "Licht uw WOB-informatieaanvraag toe - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Klasseer een informatieaanvraag van {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -851,10 +857,10 @@ msgstr "Bevestig uw e-mailadres" msgid "Confirm your new email address on {{site_name}}" msgstr "Bevestig uw nieuwe e-mailadres op {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -925,6 +931,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -952,15 +961,15 @@ msgstr "Vertraagd" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Vertraagde reactie op uw WOB-informatieaanvraag - {{request_title}}" -msgid "Delayed." -msgstr "Vertraagd." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Afleveringsstatus van uitgaand bericht #{{id}}" msgid "Delivery error" msgstr "Afleveringsfout" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Details van de informatieaanvraag “{{request_title}}”" @@ -997,10 +1006,7 @@ msgstr "Gereed" msgid "Done >>" msgstr "Gereed >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1009,6 +1015,9 @@ msgstr "Download zip-bestand van alle correspondentie" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Download originele bijlage" @@ -1023,9 +1032,27 @@ msgstr "" "Wijzig en voeg meer details toe aan het bericht hierboven,\n" " waarin u uitlegt waarom u niet tevreden bent over hun antwoord." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Wijzig de tekst over u" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Wijzig uw informatieaanvraag" @@ -1091,6 +1118,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1103,8 +1133,8 @@ msgstr "" msgid "FOI" msgstr "Wet openbaarheid van bestuur - WOB" -msgid "FOI email address for {{public_body}}" -msgstr "E-mail voor een WOB-informatieaanvraag aan {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1147,6 +1177,9 @@ msgstr "Vindt de overheidsinstellingen " msgid "Find the authorities to write to" msgstr "Vindt de overheidsinstellingen waarnaar u wil schrijven" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Ten eerste, zijn uw andere aanvragen geslaagd?" @@ -1197,9 +1230,6 @@ msgstr "Volg op" msgid "Follow up message sent by requester" msgstr "Volg berichtverstuurd door de aanvrager op " -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Follow-up berichten voor bestaande aanvragen werden gestuurd naar {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Een follow-up bericht werd gestuurd aan {{public_body_name}} door {{info_request_user}} op {{date}}." @@ -1212,8 +1242,8 @@ msgstr "Follow-up berichten en nieuwe antwoorden op deze aanvraag werden tegenge msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Volg ons op Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Volgend" @@ -1234,16 +1264,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "{{count}} overheidsinstelling gevonden waarvan de naam begint met ‘{{first_letter}}’" msgstr[1] "{{count}} overheidsinstellingen gevonden waarvan de naam begint met ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} overheidsinstelling gevonden in de categorie ‘{{category_name}}’" -msgstr[1] "{{count}} overheidsinstellingen gevonden in de categorie ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "{{count}} overheidsinstelling gevonden die overeenkomt met het label ‘{{tag_name}}’" msgstr[1] "{{count}} overheidsinstellingen gevonden die overeenkomen met het label ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1256,9 +1291,6 @@ msgstr "Wet openbaarheid van bestuur - WOB" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "De wet openbaarheid van bestuur - WOB is niet van toepassing op deze overheidsinstelling. U kunt er dan ook geen informatieaanvraag aan sturen." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "De wetgeving over de openbaarheid van bestuur - WOB is niet meer van toepassing op deze overheidsinstelling. Follow-up berichten voor ingediende aanvragen zullen gestuurd worden naar {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "De wetgeving openbaarheid van bestuur - WOB is niet meer van toepassing op {{public_body_name}}." @@ -1310,13 +1342,10 @@ msgstr "Beschikt u over een account ?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1340,6 +1369,9 @@ msgstr "Hallo! U kan WOB-informatieaanvragen zenden vanuit {{country_name}} via msgid "Help" msgstr "Hulp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Help ons om aanvragen die niet ge-updated werden te klasseren." @@ -1438,9 +1470,6 @@ msgstr "Ik heb een foutmelding ontvangen" msgid "I've received an error message" msgstr "Ik heb een foutmelding ontvangen" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Indien het adres verkeerd is, of indien u een beter adres kent, gelieve ons dan te contacteren." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Indien de fout werd veroorzaakt door een 'delivery failure' en u vindt een nieuw e-mailadres voor informatieaanvragen aan deze overheidsinstelling, gelieve ons dan hiervan op de hoogte te brengen via het formulier onderaan." @@ -1502,11 +1531,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Voor zover u het nog niet gedaan heeft, gelieve een bericht te versturen naar de overheidsinstelling waarin u meedeelt dat u uw aanvraag hebt teruggetrokken. Anders zijn zij hier niet van op de hoogte." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Als u het adres kent, gelieve het ons door te geven.\n" -" U kunt het adres vinden op de website of door het telefonisch te vragen." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Wanneer u antwoordt op dit bericht, zal dit direct verstuurd worden aan {{user_name}}, waarbij uw e-mailadres zichtbaar zal zijn. Antwoord niet indien dit een probleem vormt voor u." @@ -1545,9 +1569,6 @@ msgstr "Verbeter de veiligheid van uw account" msgid "In progress" msgstr "In uitvoering" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Voeg nuttige links toe,zoals naar uw campagnesite, naar uw blog of\n" @@ -1563,9 +1584,6 @@ msgstr "Individuele aanvragen" msgid "Information not held" msgstr "Informatie die niet beschikbaar is" -msgid "Information not held." -msgstr "Informatie die niet beschikbaar is." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informatie over uitstoot en afvalstromen (bv. lawaai, energie, straling, restmaterialen)" @@ -1590,6 +1608,9 @@ msgstr "Het eenmalig wachtwoord is niet correct" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Is {{email_address}} het verkeerde adres voor {{law_used_full}} aanvragen aan {{public_body_name}} ? Indien dit het geval is, gelieve ons dan te contacteren via dit formulier:" @@ -1614,12 +1635,12 @@ msgstr "Ingeschreven sinds {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Ingeschreven op {{site_name}} in {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Nog een laatste punt" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Bewaar uw toegangscode op een veilige plaats. U zal ze nodig hebben om uw account te bevestigen wanneer u uw wachtwoord wil veranderen. U kan de code toevoegen aan een wachtwoordmanager of ze afdrukken en bewaren op een veilige plaats." - msgid "Keep your request up to date" msgstr "Hou uw aanvraag up-to-date" @@ -1662,6 +1683,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1685,9 +1709,6 @@ msgstr "Log in op de beheerder-interface" msgid "Long overdue" msgstr "Lang achterstallig" -msgid "Long overdue." -msgstr "Lang achterstallig." - msgid "Made between" msgstr "Gedaan tussen" @@ -1784,9 +1805,6 @@ msgstr "Vraagt aandacht van de administrator" msgid "Needs status update" msgstr "Update van de aanvraag status is nodig" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nieuwe WOB-informatieaanvragen" @@ -1820,9 +1838,6 @@ msgstr "Nieuwe updates voor de aanvraag '{{request_title}}'" msgid "Newest results first" msgstr "Meest recente resultaten eerst" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Volgende" @@ -1904,6 +1919,9 @@ msgstr "Aantal keren dat een aanvraag verborgen werd" msgid "Number of requests" msgstr "Aantal aanvragen" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OF verwijder de bestaande foto" @@ -1967,9 +1985,6 @@ msgstr "Gedeeltelijk succes" msgid "Partially successful" msgstr "Gedeeltelijk succesvol" -msgid "Partially successful." -msgstr "Gedeeltelijk succesvol." - msgid "Password is not correct" msgstr "Het wachtwoord is niet correct" @@ -2243,6 +2258,9 @@ msgstr "Print uw eenmalige toegangscode" msgid "Privacy and cookies" msgstr "Privacy en cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profielafbeelding van {{user_name}}" @@ -2252,6 +2270,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Overheidsinstellingen" @@ -2333,9 +2354,6 @@ msgstr "De laatste beschreven resultaten eerst" msgid "Refused" msgstr "Geweigerd" -msgid "Refused." -msgstr "Geweigerd." - msgid "Regenerate one time passcode" msgstr "Hermaak een eenmalige toegangscode" @@ -2375,8 +2393,8 @@ msgstr "Meld deze aanvraag" msgid "Reported" msgstr "Gemeld" -msgid "Reported for administrator attention." -msgstr "Gemeld aan de beheerder" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Het melden van een aanvraag informeert de site-beheerders. Ze zullen u zo spoedig mogelijk antwoorden." @@ -2390,6 +2408,9 @@ msgstr "Vraag een heroverweging" msgid "Request an internal review from {{person_or_body}}" msgstr "Vraag een heroverweging aan {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "De aanvraag e-mail kan niet leeg blijven" @@ -2447,6 +2468,9 @@ msgstr "Aanvragen worden verstuurd naar volgende overheidsinstantie:" msgid "Requires admin attention" msgstr "Admin moet hier opletten" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Via e-mail antwoorden" @@ -2525,6 +2549,12 @@ msgstr "" msgid "Search queries" msgstr "Zoek aanvragen" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Zoek resultaten " @@ -2540,6 +2570,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Verzend een opvolgbericht" @@ -2588,6 +2624,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2611,6 +2652,9 @@ msgstr "Plaats uw profielfoto" msgid "Share on Facebook" msgstr "Deel op Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2828,9 +2872,6 @@ msgstr "Succesvolle WOB-informatieaanvragen" msgid "Successful requests" msgstr "Succesvolle aanvragen die volledig beantwoord zijn" -msgid "Successful." -msgstr "Succesvol." - msgid "Suggest how the requester can find the rest of the information." msgstr "Stel voor hoe de aanvrager de rest van de informatie kan verkrijgen" @@ -2858,6 +2899,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Dank voor uw hulp om de site samen ordelijk te houden!" @@ -2925,6 +2969,12 @@ 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 "De URL waar u het e-mailadres vond . Dit veld is optioneel, maar het zou ons erg vooruithelpen mocht u een link bezorgen naar een specifieke bladzijde op de website van de overheidsinstelling waar dit mailadres staat. Het vergemakkelijkt ons het checken." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "De accounts zijn gebleven zoals ze waren." @@ -2987,12 +3037,6 @@ msgstr "De laatste gebruiker werd gisteren aangemaakt." msgid "The last user was created over a day ago" msgstr "De laatste gebruiker werd langer dan een dag geleden aangemaakt." -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "De pagina bestaat niet. U kan misschien proberen om:" @@ -3174,8 +3218,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Er is voorlopig nog niets te tonen." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Er is een afleverfout of gelijkaardig opgetreden, die moet onderzocht worden door {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Er is een fout met reCAPTCHA. Gelieve opnieuw te proberen." @@ -3568,12 +3612,6 @@ msgstr "Tracht de logs in een nieuw venster te openen." msgid "Turn off email alerts" msgstr "Schakel de e-mail waarschuwingen uit" -msgid "Tweet it" -msgstr "Deel het op Twitter" - -msgid "Tweet this request" -msgstr "Deze aanvraag delen op Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "De dubbele-factor authenticatie voegt extra veiligheid toe aan uw account door meer informatie te vragen bij het aanpassen van het paswoord." @@ -3642,8 +3680,8 @@ msgstr "Schrijf u uit" msgid "Unusual response" msgstr "Ongebruikelijk antwoord" -msgid "Unusual response." -msgstr "Ongebruikelijk antwoord." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Update het e-mailadres van – {{public_body_name}}" @@ -3681,23 +3719,14 @@ msgstr "Provocerend" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Bekijk het e-mailadres voor WOB-informatieaanvragen " - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Bekijk het WOB-informatie aanvraag e-mailadres van '{{public_body_name}}' " - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Bekijk het WOB-informatie aanvraag e-mailadres van '{{public_body_name}}' " - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Bekijkt de WOB-informatieaanvragen van {{user_name}}:" msgid "View authorities" msgstr "Bekijk de overheidsinstellingen" -msgid "View email" -msgstr "Bekijk de e-mail " +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Belijk de details van de historiek aan gebeurtenissen " @@ -3705,11 +3734,17 @@ msgstr "Belijk de details van de historiek aan gebeurtenissen " msgid "View other requests to {{public_body}}" msgstr "Bekijk andere aanvragen aan {{public_body}} " +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Bekijk uw eenmalige dubbele-factor autenticatiecode." -msgid "Waiting clarification." -msgstr "In afwachting van verduidelijking." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "In afwachting van een heroverweging door {{public_body_link}} m.b.t. hun afhandeling van deze aanvraag." @@ -3741,9 +3776,6 @@ msgstr "We konden voor dit bericht de logs van de mailserver niet downloaden." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "We beschikken niet over een werkend e-mailadres voor de aanvragen aan deze overheidsinstelling." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "We beschikken niet over een {{law_used_full}}adres voor {{public_body_name}}." @@ -3854,6 +3886,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Eens u zover bent, gelieve de status aan te passen om aan te geven of het antwoord nuttige informatie bevatte." @@ -3880,8 +3915,8 @@ msgstr "Waarom beschouwd u deze vraag als ongeschikt?" msgid "Withdrawn" msgstr "Teruggetrokken" -msgid "Withdrawn by the requester." -msgstr "Teruggetrokken door de aanvrager." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "" @@ -3907,6 +3942,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "U heeft al een dezelfde gegroepeerde batch aanvragen gemaakt op {{date}}. U kunt ofde bestaande batch vragen bekijken; of de onderstaande details wijzigen om een nieuwe, maar gelijkende batch aanvragen te doen." @@ -4541,9 +4579,6 @@ msgstr "vul hier uw zoekterm in" msgid "unknown" msgstr "onbekend" -msgid "unknown reason" -msgstr "reden onbekend" - msgid "unknown reason " msgstr "reden onbekend" @@ -4580,9 +4615,6 @@ msgstr "{{authority_name}} heeft niet de gevraagde informatie." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} wacht op uw verduidelijking." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} bijlage" @@ -4593,6 +4625,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} commentaar gemaakt." msgstr[1] "{{count}} aantekeningen/commentaren gemaakt." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} persoon volgt" @@ -4739,8 +4776,8 @@ msgstr "{{reason}}. Tot onze spijt kennen wij het mailadres voor informatieaanvr msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} overeenkomend met '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog en tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4753,9 +4790,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} stuurt nieuwe aanvragen aan {{request_email}} voor deze overheidsinstelling." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} Gebruikers hebben {{number_of_requests}} aanvraag gemaakt, waaronder:" diff --git a/locale/nn/app.po b/locale/nn/app.po index f2552a1a70..fa3c947bda 100644 --- a/locale/nn/app.po +++ b/locale/nn/app.po @@ -56,7 +56,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: velmont , 2015\n" "Language-Team: Norwegian Nynorsk (http://app.transifex.com/mysociety/alaveteli" @@ -198,10 +198,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Bla i gjennom alle eller be oss leggje til ein ny." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -290,8 +290,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: for å velja typen ting du skal søkja etter. Sjå tabell over typar under." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Råd for å få eit svar som er tilfredsstillande til han som spør. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "All informasjonen har vorte sendt" @@ -333,6 +333,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Inkje svarer motteke\n" @@ -390,8 +393,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ein oppfølging til {{request_title}} vart sendt til {{public_body_name}} frå {{info_request_user}} den {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Eit svar til {{request_title}} var sendt av {{public_body_name}} til {{info_request_user}} den {{date}}. Status for førespurnaden er: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -437,9 +440,6 @@ msgstr "Om deg:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -472,6 +472,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Legg til styresmakt - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Legg til styresmakta:" @@ -646,24 +652,18 @@ msgstr "Ventar på klargjering" msgid "Awaiting classification" msgstr "Ventar på klassifisering" -msgid "Awaiting classification." -msgstr "Ventar på kategorisering." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Ventar på handsaming av klage." - msgid "Awaiting response" msgstr "Ventar på svar" -msgid "Awaiting response." -msgstr "Ventar på svar." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -700,11 +700,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Vis alle førespurnader &arr;" -msgid "Browse and search requests" -msgstr "Vis og søk i førespurnader" - -msgid "Browse and search requests (page {{count}})" -msgstr "Vis og søk i førespurnader (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -712,8 +709,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Vis førespurnader" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "I følgje lova må dei svara." @@ -733,6 +730,12 @@ msgstr "I følgje lova burde {{public_body_link}} normalt ha svara raskt msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Vil du kontakta ei styresmakt som ikkje er her?" @@ -805,6 +808,9 @@ msgstr "Klargjer din krav om innsyn - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Klassifiser eit innsynsvar frå {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -871,10 +877,10 @@ msgstr "Stadfest e-postadressa di" msgid "Confirm your new email address on {{site_name}}" msgstr "Stadfest den nye e-postadressa di på {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -943,6 +949,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Dato:" @@ -970,15 +979,15 @@ msgstr "Forseinka" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Forseinka svar på din krav om innsyn - {{request_title}}" -msgid "Delayed." -msgstr "Forseinka." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Leveringsfeil" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detaljer for førespurnad “{{request_title}}”" @@ -1015,10 +1024,7 @@ msgstr "Ferdig" msgid "Done >>" msgstr "Ferdig " -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1027,6 +1033,9 @@ msgstr "Last ned ein zip-fil med all korrespondanse" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Last ned orginalt vedlegg" @@ -1041,9 +1050,27 @@ msgstr "" "Rediger og legg til fleire detaljar i meldinga over,\n" " som forklarer kvifor du klagar." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Rediget teksta om deg" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Rediger denne førespurnaden" @@ -1109,6 +1136,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1121,8 +1151,8 @@ msgstr "" msgid "FOI" msgstr "innsyn etter Offentleglova" -msgid "FOI email address for {{public_body}}" -msgstr "Postmottaket hos {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Offentleglova gjeld ikkje for denne styresmakta." @@ -1163,6 +1193,9 @@ msgstr "Find styresmaktene" msgid "Find the authorities to write to" msgstr "Vel styresmaktene å skriva til" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "For det første, lukkast dine andre førespurnader?" @@ -1213,9 +1246,6 @@ msgstr "Følg opp" msgid "Follow up message sent by requester" msgstr "Oppfølgingsbeskjed frå innsender av førespurnaden" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Oppfølging send til {{public_body_name}} av {{info_request_user}} den {{date}}." @@ -1228,8 +1258,8 @@ msgstr "Oppfølgingsbeskjeder og nye svar på denne førespurnaden er stansa for msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Følg oss på twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Følgjer" @@ -1250,8 +1280,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1260,6 +1290,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1274,9 +1309,6 @@ msgstr "" "Offentleglova gjeld ikkje for denne etaten, så du kan ikkje senda dei ein\n" " krav om innsyn." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Offentleglova gjeld ikkje lenger for {{public_body_name}}." @@ -1325,13 +1357,10 @@ msgstr "Har du ein konto?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1355,6 +1384,9 @@ msgstr "" msgid "Help" msgstr "Hjelp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Hjelp oss å klassifisera førespurnader som ikkje har vorte oppdatert" @@ -1453,9 +1485,6 @@ msgstr "Eg har fått ei feilmelding" msgid "I've received an error message" msgstr "Eg har fått ei feilmelding" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Viss adressa er feil, eller du veit om ei betre adresse, ver så snill å ta kontakt." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Viss feilen var eit problem med leveringa, og du kan finna ei oppdatert e-postadresse som kan nyttast til krav om innsyn for denne styresmakta, så ver så snill å fortel oss om dette i skjemaet under." @@ -1519,9 +1548,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Viss du ikkje allereie har gjort det, ver så snill å skriv ei melding under som fortel styresmakta at du har trekt tilbake din førespurnad. Elles vil dei ikkje vita at han er trekt tilbake." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Om du veit adressa som kan brukast, ver venleg å sende den til oss. Du finn kanskje adressa på deira nettstad eller ved å ringe dei og spørje." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Viss du svarar på denne meldinga, så vil svaret gå direkte til {{user_name}}, som vil få vita e-postadressa di. Svar berre viss det er i orden." @@ -1561,9 +1587,6 @@ msgstr "Forbetra tryggleiken på kontoen din" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Ta med relevante lenker, t.d. kampanjesider, bloggar, eller Twitter-konto. Dei vil vere klikkbare.\n" @@ -1578,9 +1601,6 @@ msgstr "Individuelle førespurnader" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Har ikkje informasjonen." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informasjon om utslipp (til dømes støy, energi,\n" @@ -1607,6 +1627,9 @@ msgstr "Feil eingongspasskode" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Er {{email_address}} feil adresse for førespurnader om {{law_used_full}} til {{public_body_name}}? I såg fall, ver så snill å ta kontakt med oss ved å bruka dette skjemaet:" @@ -1631,12 +1654,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Berre ein ting til" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Hald passkoden trygg. Du treng han for å stadfesta kontoen når du endrar passord. Legg han til ein passordhandsamar eller skriv han ut og legg han på ein trygg stad." - msgid "Keep your request up to date" msgstr "Hald førespurnadene dine oppdaterte" @@ -1679,6 +1702,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1700,9 +1726,6 @@ msgstr "Logg inn i administratorgrensesnittet" msgid "Long overdue" msgstr "Svært forseinka" -msgid "Long overdue." -msgstr "Svært forseinka." - msgid "Made between" msgstr "Oppretta mellom" @@ -1799,9 +1822,6 @@ msgstr "Administrator bør sjå på dette" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Nye krav om innsyn" @@ -1835,9 +1855,6 @@ msgstr "Nye oppdateringar for førespurnaden '{{request_title}}'" msgid "Newest results first" msgstr "Nyaste resultat først" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Neste" @@ -1919,6 +1936,9 @@ msgstr "" msgid "Number of requests" msgstr "Mengd førespurnader" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ELLER fjern noverande bilete" @@ -1982,9 +2002,6 @@ msgstr "Delvis suksess" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Delevis vellukka" - msgid "Password is not correct" msgstr "Passordet er ikkje riktig" @@ -2267,6 +2284,9 @@ msgstr "Skriv ut eingongspasskoden din" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2276,6 +2296,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Offentlege instansar" @@ -2357,9 +2380,6 @@ msgstr "Nylige skildra resultat først" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Avslegen" - msgid "Regenerate one time passcode" msgstr "Lag ny eingongspasskode" @@ -2399,8 +2419,8 @@ msgstr "Rapporter førespurnaden" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Rapportert til admininstrator" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Når ein førespurnad meldast sendast det melding til nettstaden administratorar. Dei vil svara så raskt som mogleg." @@ -2414,6 +2434,9 @@ msgstr "Skriv klage" msgid "Request an internal review from {{person_or_body}}" msgstr "Klag på vedtaket frå {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2471,6 +2494,9 @@ msgstr "Førespurnader vil sendast til følgjande instansar:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Svar med e-post" @@ -2549,6 +2575,12 @@ msgstr "" msgid "Search queries" msgstr "Søkespørringer" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Søkeresultater" @@ -2564,6 +2596,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Send ei oppfølging" @@ -2612,6 +2650,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2635,6 +2678,9 @@ msgstr "Vel profilet ditt-bilete" msgid "Share on Facebook" msgstr "Del på Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2854,9 +2900,6 @@ msgstr "Vellukka krav om innsyn" msgid "Successful requests" msgstr "Vellukka førespurnader" -msgid "Successful." -msgstr "Vellukka." - msgid "Suggest how the requester can find the rest of the information." msgstr "Føreslå korleis spørjaren kan få resten av informasjonen/dokumenta" @@ -2884,6 +2927,9 @@ msgstr "Taggar:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Takk for at du hjelper oss med å halda tenesta ryddig!" @@ -2955,6 +3001,12 @@ 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 "URL-ein der du fann e-postadressa. Dette feltet er valfritt, men det vil hjelpa oss veldig viss du kan leggja ved ei lenkje til ein spesifikk side på nettstaden til styresmakta som oppgjev denne adressa, då det vil gjera det mykje enklare for oss å sjekka henne." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontoane er etterlate slik dei tidlegare var." @@ -3015,12 +3067,6 @@ msgstr "Den siste brukaren vart laga i løpet av dagen" msgid "The last user was created over a day ago" msgstr "Den siste brukaren vart laga for meir enn ein dag sidan" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Sidan finst ikkje. Det du kan freista no:" @@ -3204,8 +3250,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Det er ikkje noko å visa endå." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Det var ein feil med leveringen eller liknande, som treng å rettast av {{site_name}}-gruppa." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Det var ein feil med reCAPTCHA-en. Prøv på ny." @@ -3597,12 +3643,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Skru av e-postvarsling" -msgid "Tweet it" -msgstr "Tvitra dette" - -msgid "Tweet this request" -msgstr "Tvitra om førespurnaden" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "To-faktor autentisering aukar tryggleiken på kontoen din ved å krevja ekstra informasjon for å kunna byta passord." @@ -3669,8 +3709,8 @@ msgstr "Meld deg av" msgid "Unusual response" msgstr "Uvanleg svar" -msgid "Unusual response." -msgstr "Uvanleg svar." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Oppdater e-postadresse - " @@ -3708,23 +3748,14 @@ msgstr "Sjikane" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Vis e-postadresse for innsyn" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Vis e-postadresse for innsyn mot '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Vis e-postadresse for innsyn mot {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Vis krav om innsyn som er oppretta av {{user_name}}:" msgid "View authorities" msgstr "Vis styresmakter" -msgid "View email" -msgstr "Les e-post" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3732,11 +3763,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Sjå andre førespurnader til {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Sjå eingongspasskoden din for to-faktor autentisering " -msgid "Waiting clarification." -msgstr "Ventar avklaring" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Ventar på klagehandsaming hos {{public_body_link}}." @@ -3768,9 +3805,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Vi har ikkje ei gyldig e-postadresse for førespurnader for denne styresmakta" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Vi har ikkje ein fungerande {{law_used_full}}-adresse for {{public_body_name}}." @@ -3888,6 +3922,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Når du kjem dit, ver så snill å oppdatera statusen til å fortelja om svaret innehalde noko nyttig informasjon." @@ -3912,8 +3949,8 @@ msgstr "Kvifor meiner du denne førespurnaden er upassande?" msgid "Withdrawn" msgstr "Trekt tilbake" -msgid "Withdrawn by the requester." -msgstr "Trekt tilbake av spørjaren." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Veke" @@ -3939,6 +3976,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4587,9 +4627,6 @@ msgstr "skriv inn søketerm her" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "ukjend grunn" - msgid "unknown reason " msgstr "ukjend grunn " @@ -4626,9 +4663,6 @@ msgstr "{{authority_name}} hadde ikkje informasjonen du bad om. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} ventar på dine avklaringer" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4639,6 +4673,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} følgjer" @@ -4786,8 +4825,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} traff '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogg og tveets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4800,9 +4839,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} sender nye førespurnader til {{request_email}} for denne styresmakta." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/pap/app.po b/locale/pap/app.po index bf5cd03a30..86467aa7db 100644 --- a/locale/pap/app.po +++ b/locale/pap/app.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Luis Villegas, 2022\n" "Language-Team: Papiamento (http://app.transifex.com/mysociety/alaveteli/langua" @@ -180,11 +180,11 @@ msgstr "mas cu 60 minuut" msgid "Browse all or ask us to add one." msgstr "Mira tur of pidi nos pa agrega un." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Haci un peticion di Lob nobo cerca {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Haci un peticion di Lob nobo cerca {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Ingresa pa ricibi actualidadnan riba loke bo ta sigui of bolbe activa alertanan via e-mail." @@ -263,7 +263,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -299,6 +299,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -344,7 +347,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -389,9 +392,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -422,6 +422,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -590,22 +596,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -644,10 +644,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -656,7 +653,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -677,6 +674,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -749,6 +752,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -815,10 +821,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -887,6 +893,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -914,15 +923,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -959,10 +968,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -971,6 +977,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -983,9 +992,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1046,6 +1073,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1058,7 +1088,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1100,6 +1130,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1148,9 +1181,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1163,7 +1193,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1185,8 +1215,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1195,6 +1225,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1207,9 +1242,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1258,13 +1290,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1288,6 +1317,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1378,9 +1410,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1438,9 +1467,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1474,9 +1500,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1489,9 +1512,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1516,6 +1536,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1537,10 +1560,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1585,6 +1608,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1606,9 +1632,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1705,9 +1728,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1741,9 +1761,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1825,6 +1842,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1888,9 +1908,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2160,6 +2177,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2169,6 +2189,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2250,9 +2273,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2292,7 +2312,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2307,6 +2327,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2364,6 +2387,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2439,6 +2465,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2454,6 +2486,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2502,6 +2540,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2525,6 +2568,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2738,9 +2784,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2768,6 +2811,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2831,6 +2877,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2891,12 +2943,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3074,7 +3120,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3456,12 +3502,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3528,7 +3568,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3567,22 +3607,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3591,10 +3622,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3627,9 +3664,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3733,6 +3767,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3757,7 +3794,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3784,6 +3821,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4412,9 +4452,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4451,9 +4488,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4464,6 +4498,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4608,7 +4647,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4622,9 +4661,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/pl/app.po b/locale/pl/app.po index 494e065ad3..de56ed85f3 100644 --- a/locale/pl/app.po +++ b/locale/pl/app.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Ewa Modrzejewska , 2013\n" "Language-Team: Polish (http://app.transifex.com/mysociety/alaveteli/language/p" @@ -172,10 +172,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -255,7 +255,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -291,6 +291,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -336,7 +339,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -381,9 +384,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -414,6 +414,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -582,22 +588,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -636,10 +636,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -648,7 +645,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -669,6 +666,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -741,6 +744,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -807,10 +813,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -879,6 +885,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -906,15 +915,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -951,10 +960,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -963,6 +969,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -975,9 +984,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1038,6 +1065,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1050,7 +1080,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1092,6 +1122,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1140,9 +1173,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1155,8 +1185,8 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Jesteśmy na Twitterze." +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1177,8 +1207,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1187,6 +1217,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1199,9 +1234,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1250,13 +1282,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1280,6 +1309,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1370,9 +1402,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1430,9 +1459,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1466,9 +1492,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1481,9 +1504,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1508,6 +1528,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1529,10 +1552,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1577,6 +1600,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1598,9 +1624,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1697,9 +1720,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1733,9 +1753,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1817,6 +1834,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1880,9 +1900,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2152,6 +2169,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2161,6 +2181,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2242,9 +2265,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2284,7 +2304,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2299,6 +2319,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2356,6 +2379,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2431,6 +2457,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2446,6 +2478,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2494,6 +2532,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2517,6 +2560,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2730,9 +2776,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2760,6 +2803,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2823,6 +2869,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2883,12 +2935,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3066,7 +3112,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3448,12 +3494,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Wyłącz alerty e-mailowe." -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3520,7 +3560,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3559,22 +3599,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3583,10 +3614,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3619,9 +3656,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3725,6 +3759,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3749,7 +3786,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3776,6 +3813,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4404,9 +4444,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4443,9 +4480,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4456,6 +4490,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4600,7 +4639,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4614,9 +4653,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/pl_PL/app.po b/locale/pl_PL/app.po index 27d5975c16..d23f0baed9 100644 --- a/locale/pl_PL/app.po +++ b/locale/pl_PL/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Polish (Poland) (http://app.transifex.com/mysociety/alaveteli/l" @@ -170,10 +170,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -253,7 +253,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -289,6 +289,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -334,7 +337,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -379,9 +382,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -412,6 +412,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -580,22 +586,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -634,10 +634,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -646,7 +643,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -667,6 +664,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -739,6 +742,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -805,10 +811,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -877,6 +883,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -904,15 +913,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -949,10 +958,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -961,6 +967,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -973,9 +982,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1036,6 +1063,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1048,7 +1078,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1090,6 +1120,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1138,9 +1171,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1153,7 +1183,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1175,8 +1205,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1185,6 +1215,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1197,9 +1232,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1248,13 +1280,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1278,6 +1307,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1368,9 +1400,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1428,9 +1457,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1464,9 +1490,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1479,9 +1502,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1506,6 +1526,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1527,10 +1550,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1575,6 +1598,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1596,9 +1622,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1695,9 +1718,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1731,9 +1751,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1815,6 +1832,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1878,9 +1898,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2150,6 +2167,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2159,6 +2179,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2240,9 +2263,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2282,7 +2302,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2297,6 +2317,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2354,6 +2377,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2429,6 +2455,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2444,6 +2476,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2492,6 +2530,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2515,6 +2558,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2728,9 +2774,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2758,6 +2801,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2821,6 +2867,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2881,12 +2933,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3064,7 +3110,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3446,12 +3492,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3518,7 +3558,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3557,22 +3597,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3581,10 +3612,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3617,9 +3654,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3723,6 +3757,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3747,7 +3784,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3774,6 +3811,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4402,9 +4442,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4441,9 +4478,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4454,6 +4488,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4598,7 +4637,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4612,9 +4651,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/pt_BR/app.po b/locale/pt_BR/app.po index 09f2af31d5..c3820f96f9 100644 --- a/locale/pt_BR/app.po +++ b/locale/pt_BR/app.po @@ -77,7 +77,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Vítor Márcio Paiva de Sousa Baptista , 2013\n" @@ -221,10 +221,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Veja todos ou peça-nos para adicionar um." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -313,8 +313,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variedade: para selecionar o tipo daquilo que você procura, confira a tabela de variedades abaixo." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conselho sobre como dar uma resposta que satisfaça o requerente. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda a informação foi enviada" @@ -349,6 +349,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Nenhuma resposta foi recebida\n" @@ -400,8 +403,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}. O estado do pedido é: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -445,9 +448,6 @@ msgstr "Sobre você:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -478,6 +478,12 @@ msgstr "Adicionar um comentário à sua solicitação com citações à sua esco msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -646,24 +652,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Aguardando classificação." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Aguardando revisão." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Aguardando resposta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -700,11 +700,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Visualizar ou buscar pedidos" - -msgid "Browse and search requests (page {{count}})" -msgstr "Visualizar ou buscar pedidos (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -712,8 +709,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver pedidos" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -733,6 +730,12 @@ msgstr "De acordo com a lei, {{public_body_link}} deveria ter respondido more details to the message above, explaining why you are dissatisfied with their response." msgstr "Editar e adicionar mais detalhes à mensagem acima, explicando por que você está insatisfeito com a resposta que recebeu." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Alterar o texto sobre você" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Alterar esta solicitação" @@ -1106,6 +1133,9 @@ msgstr "Tudo o que você publicar nesta página, incluindo seu nome{{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1223,8 +1253,8 @@ msgstr "Acompanhamento e novas respostas ao pedido foram interrompidos para evit msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Siga-nos no Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1245,8 +1275,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1255,6 +1285,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1267,9 +1302,6 @@ msgstr "Lei de Acesso à Informação Pública" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "A Lei de Acesso à Informação não se aplica a essa autoridade, portanto não é possível enviar um pedido a ela." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1318,13 +1350,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1348,6 +1377,9 @@ msgstr "" msgid "Help" msgstr "Ajuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1444,9 +1476,6 @@ msgstr "Recebi uma mensagem de erro" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Se o endereço de email estiver errado, ou se você sabe de um outro melhor, entre em contato conosco ." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1504,9 +1533,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Se você ainda não fez, por favor escreva uma mensagem explicando para o orgão que você esta removendo seu pedido. Do contrario eles não vão saber que o pedido foi removido." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Se você souber o endereço de e-mail do órgão público que deve receber esse pedido, envie-o para nós. Você pode encontrar o endereço de e-mail no site do órgão ou pelo telefone." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Se você responder a esta mensagem, ela irá diretamente para {{user_name}}, que ficará conhecendo seu email. Somente responda se concordar." @@ -1541,9 +1567,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Inclua links relevantes, como para um site de mobilização, seu blog ou uma conta no Twitter. Eles serão clicáveis, por exemplo." @@ -1556,9 +1579,6 @@ msgstr "Pedidos individuais" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Não possui as informações." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informações sobre emissões e descargas (ex. ruído, energia, radiação, rejeitos)" @@ -1583,6 +1603,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Caso este email - {{email_address}} - seja o endereço errado para fazer {{law_used_full}} por favor nos contate e aponte o endereço correto através desse formulário:" @@ -1604,10 +1627,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1652,6 +1675,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1673,9 +1699,6 @@ msgstr "Entre na interface administrativa" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Muito atrasado." - msgid "Made between" msgstr "Feitos entre" @@ -1772,9 +1795,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Novos pedidos de informação" @@ -1808,9 +1828,6 @@ msgstr "Novas atualizações para a solicitação '{{request_title}}'" msgid "Newest results first" msgstr "Resultados mais novos primeiro" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Próximo" @@ -1892,6 +1909,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OU remova a foto atual" @@ -1955,9 +1975,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Concluída parcialmente." - msgid "Password is not correct" msgstr "senha incorreta" @@ -2227,6 +2244,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2236,6 +2256,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2317,9 +2340,6 @@ msgstr "Resultados descritos recentemente primeiro" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Recusado." - msgid "Regenerate one time passcode" msgstr "" @@ -2359,8 +2379,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Denunciado aos administradores." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2374,6 +2394,9 @@ msgstr "Apresentar recurso" msgid "Request an internal review from {{person_or_body}}" msgstr "Enviar um recurso para {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2431,6 +2454,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Resposta por e-mail" @@ -2506,6 +2532,12 @@ msgstr "Pesquisar
{{number_of_requests}} pedidos e< msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados da busca" @@ -2521,6 +2553,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Enviar um mensagem de acompanhamento" @@ -2569,6 +2607,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2592,6 +2635,9 @@ msgstr "Definir sua foto do perfil" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2805,9 +2851,6 @@ msgstr "Solicitações de acesso a informação concluídas" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Concluída." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir como o solicitante pode encontrar o resto das informações." @@ -2835,6 +2878,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Obrigado por nos ajudar a manter o site organizado!" @@ -2900,6 +2946,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "As contas foram deixadas como estavam anteriormente." @@ -2960,12 +3012,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Esta página não existe. O que você pode tentar agora:" @@ -3146,8 +3192,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Ocorreu um erro no envio ou algo parecido, que precisa ser consertado pela equipe do {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3535,12 +3581,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Desativar alertas por email" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Enviar um tweet deste pedido" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3607,8 +3647,8 @@ msgstr "Desinscrever-se" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Outra resposta." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3646,23 +3686,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver o endereço de email do pedido de informação" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Veja o endereço de contato para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Veja o e-mail de {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver os pedidos de acesso a informação feitos por {{user_name}}:" msgid "View authorities" msgstr "Ver órgãos públicos" -msgid "View email" -msgstr "Ver e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3670,11 +3701,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando esclarecimento." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Aguardando por decisão sobre recurso de {{public_body_link}} da sua resposta a esse pedido." @@ -3706,9 +3743,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nós não temos um email válido desse orgão." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nós não temos um email do {{public_body_name}} para fazer pedidos de acesso à informação." @@ -3812,6 +3846,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Quando você chegar lá, favor atualizar a situação se a resposta tiver alguma informação útil." @@ -3836,8 +3873,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Removida pelo solicitante." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3863,6 +3900,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4511,9 +4551,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "razão desconhecida" - msgid "unknown reason " msgstr "razão desconhecida" @@ -4550,9 +4587,6 @@ msgstr "{{authority_name}} não tem as informações solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está
esperando por sua classificação
." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4563,6 +4597,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4711,8 +4750,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} contendo '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog e tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4725,9 +4764,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envia novos pedidos para {{request_email}} para esse órgão." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/pt_PT/app.po b/locale/pt_PT/app.po index 9fdf1c3050..9ef5c0d403 100644 --- a/locale/pt_PT/app.po +++ b/locale/pt_PT/app.po @@ -61,7 +61,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Vítor Márcio Paiva de Sousa Baptista , 2013\n" @@ -205,10 +205,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Veja todos ou peça-nos para adicionar um." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -297,8 +297,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variedade: para selecionar o tipo daquilo que você procura, confira a tabela de variedades abaixo." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Conselho sobre como dar uma resposta que satisfaça o requerente. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toda a informação foi enviada" @@ -333,6 +333,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Nenhuma resposta foi recebida\n" @@ -384,8 +387,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}. O estado do pedido é: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -429,9 +432,6 @@ msgstr "Sobre você:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -462,6 +462,12 @@ msgstr "Adicionar um comentário à sua solicitação com citações à sua esco msgid "Add authority - {{public_body_name}}" msgstr "Adicionar autoridade - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Adicione a entidade:" @@ -630,24 +636,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Aguardando classificação." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Aguardando revisão." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Aguardando resposta." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -684,11 +684,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Visualizar ou buscar pedidos" - -msgid "Browse and search requests (page {{count}})" -msgstr "Visualizar ou buscar pedidos (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -696,8 +693,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Ver pedidos" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -717,6 +714,12 @@ msgstr "De acordo com a lei, {{public_body_link}} deveria ter respondido more details to the message above, explaining why you are dissatisfied with their response." msgstr "Editar e adicionar mais detalhes à mensagem acima, explicando por que você está insatisfeito com a resposta que recebeu." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Alterar o texto sobre você" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Alterar esta solicitação" @@ -1092,6 +1119,9 @@ msgstr "Tudo o que você publicar nesta página, incluindo seu nome{{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Mensagem enviada para {{public_body_name}} por {{info_request_user}} a {{date}}." @@ -1211,8 +1241,8 @@ msgstr "Acompanhamento e novas respostas ao pedido foram interrompidos para evit msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Siga-nos no Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Seguindo" @@ -1233,8 +1263,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1243,6 +1273,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1255,9 +1290,6 @@ msgstr "Lei de Acesso à Informação Pública" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "A Lei de Acesso à Informação não se aplica a essa autoridade, portanto não é possível enviar um pedido a ela." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Lei de Acesso à Informação já não se aplica a {{public_body_name}}." @@ -1306,13 +1338,10 @@ msgstr "Tem uma conta?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1336,6 +1365,9 @@ msgstr "" msgid "Help" msgstr "Ajuda" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ajude-nos a classificar pedidos que ainda não foram actualizados" @@ -1432,9 +1464,6 @@ msgstr "Recebi uma mensagem de erro" msgid "I've received an error message" msgstr "Recebi uma mensagem de erro" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Se o endereço de email estiver errado, ou se você sabe de um outro melhor, entre em contato conosco ." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Se o erro foi de falha na entrega e você sabe o email correcto para a entidade pública, diga-nos por favor, utilizando o formulário abaixo." @@ -1492,9 +1521,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Se você ainda não fez, por favor escreva uma mensagem explicando para o orgão que você esta removendo seu pedido. Do contrario eles não vão saber que o pedido foi removido." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Se você souber o endereço de e-mail do órgão público que deve receber esse pedido, envie-o para nós. Você pode encontrar o endereço de e-mail no site do órgão ou pelo telefone." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Se você responder a esta mensagem, ela irá diretamente para {{user_name}}, que ficará conhecendo seu email. Somente responda se concordar." @@ -1529,9 +1555,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Inclua ligações relevantes, como uma página de campanha, o seu blog ou uma conta no Twitter." @@ -1544,9 +1567,6 @@ msgstr "Pedidos individuais" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Não possui as informações." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informações sobre emissões e descargas (ex. ruído, energia, radiação, rejeitos)" @@ -1571,6 +1591,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Caso este email - {{email_address}} - seja o endereço errado para fazer {{law_used_full}} por favor nos contate e aponte o endereço correto através desse formulário:" @@ -1592,12 +1615,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Só mais um detalhe" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "Mantenha o seu pedido actualizado" @@ -1640,6 +1663,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1661,9 +1687,6 @@ msgstr "Entre na interface administrativa" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Muito atrasado." - msgid "Made between" msgstr "Feitos entre" @@ -1760,9 +1783,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Novos pedidos de informação" @@ -1796,9 +1816,6 @@ msgstr "Novas atualizações para a solicitação '{{request_title}}'" msgid "Newest results first" msgstr "Resultados mais novos primeiro" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Próximo" @@ -1880,6 +1897,9 @@ msgstr "" msgid "Number of requests" msgstr "Número de pedidos" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "OU remova a foto atual" @@ -1943,9 +1963,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Concluída parcialmente." - msgid "Password is not correct" msgstr "senha incorreta" @@ -2215,6 +2232,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2224,6 +2244,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Entidades públicas" @@ -2305,9 +2328,6 @@ msgstr "Resultados descritos recentemente primeiro" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Recusado." - msgid "Regenerate one time passcode" msgstr "" @@ -2347,8 +2367,8 @@ msgstr "Denunciar este pedido" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Denunciado aos administradores." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Reportar um pedido notifica os administradores da plataforma. Eles irão responder o mais rápido possível." @@ -2362,6 +2382,9 @@ msgstr "Apresentar recurso" msgid "Request an internal review from {{person_or_body}}" msgstr "Enviar um recurso para {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2419,6 +2442,9 @@ msgstr "Os pedidos serão enviados para as seguintes entidades:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Resposta por e-mail" @@ -2497,6 +2523,12 @@ msgstr "" msgid "Search queries" msgstr "Pesquise resultados" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Resultados da busca" @@ -2512,6 +2544,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Enviar um mensagem de acompanhamento" @@ -2560,6 +2598,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2584,6 +2627,9 @@ msgstr "Definir sua foto do perfil" msgid "Share on Facebook" msgstr "Partilhe no Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2797,9 +2843,6 @@ msgstr "Solicitações de acesso a informação concluídas" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Concluída." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugerir como o solicitante pode encontrar o resto das informações." @@ -2827,6 +2870,9 @@ msgstr "Tags:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Obrigado por nos ajudar a manter o site organizado!" @@ -2892,6 +2938,12 @@ 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 "O URL onde encontrou o endereço email. Este campo é opcional, mas ajudar-nos-ia muito ao facilitaria a confirmação." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "As contas foram deixadas como estavam anteriormente." @@ -2952,12 +3004,6 @@ msgstr "O utilizador mais recente foi registado ontem" msgid "The last user was created over a day ago" msgstr "O utilizador mais recente foi registado há mais de um dia" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Esta página não existe. O que você pode tentar agora:" @@ -3138,8 +3184,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Ainda não existe informação para divulgar." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Ocorreu um erro no envio ou algo parecido, que precisa ser consertado pela equipe do {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3529,12 +3575,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Desativar alertas por email" -msgid "Tweet it" -msgstr "Tweet!" - -msgid "Tweet this request" -msgstr "Enviar um tweet deste pedido" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3601,8 +3641,8 @@ msgstr "Desinscrever-se" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Outra resposta." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizar endereço de email - {{public_body_name}}" @@ -3640,23 +3680,14 @@ msgstr "Impróprio" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Ver o endereço de email do pedido de informação" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Veja o endereço de contato para '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Veja o e-mail de {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Ver os pedidos de acesso a informação feitos por {{user_name}}:" msgid "View authorities" msgstr "Ver entidades públicas" -msgid "View email" -msgstr "Ver e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3664,11 +3695,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Veja outros pedidos à entidade {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Esperando esclarecimento." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Aguardando por decisão sobre recurso de {{public_body_link}} da sua resposta a esse pedido." @@ -3700,9 +3737,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nós não temos um email válido desse orgão." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nós não temos um email do {{public_body_name}} para fazer pedidos de acesso à informação." @@ -3808,6 +3842,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Quando você chegar lá, favor atualizar a situação se a resposta tiver alguma informação útil." @@ -3832,8 +3869,8 @@ msgstr "Por que razão considera este pedido desadequado?" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Removida pelo solicitante." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3859,6 +3896,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4508,9 +4548,6 @@ msgstr "introduza os termos de pesquisa aqui" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "razão desconhecida" - msgid "unknown reason " msgstr "razão desconhecida" @@ -4547,9 +4584,6 @@ msgstr "{{authority_name}} não tem as informações solicitada msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} está
esperando por sua classificação." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4560,6 +4594,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} seguidor" @@ -4709,8 +4748,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} contendo '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog e tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4723,9 +4762,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} envia novos pedidos para {{request_email}} para esse órgão." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/ro_RO/app.po b/locale/ro_RO/app.po index b09ce8048c..3e9dc2fb9d 100644 --- a/locale/ro_RO/app.po +++ b/locale/ro_RO/app.po @@ -61,7 +61,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Vitalie Zama , 2016\n" "Language-Team: Romanian (Romania) (http://app.transifex.com/mysociety/alavetel" @@ -197,10 +197,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Caută în toată arhiva sau cere-ne nouă să adăugăm una." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -292,8 +292,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: pentru a selecta tipul obiectului căutat, vedeţi tabelul cu tipurile below." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Sfat despre cum să primiţi un răspuns care să satisfacă solicitarea. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Toate informaţiile au fost trimise" @@ -335,6 +335,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Niciun răspuns nu a fost primit\n" @@ -391,8 +394,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "O urmărire către {{request_title}} a fost trimisă către {{public_body_name}} de către {{info_request_user}} la {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Un răspuns to {{request_title}} a fost trimis de către {{public_body_name}} către {{info_request_user}} la {{date}}. Starea cererii este: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -438,9 +441,6 @@ msgstr "Despre tine:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -473,6 +473,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Adaugă o autoritare - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Adaugă autoritatea:" @@ -647,24 +653,18 @@ msgstr "Așteaptă clarificarea." msgid "Awaiting classification" msgstr "Aşteaptă clasificarea." -msgid "Awaiting classification." -msgstr "Aşteaptă clasificarea." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Aşteaptă revizuirea interna." - msgid "Awaiting response" msgstr "Așteaptă un răspuns." -msgid "Awaiting response." -msgstr "Aşteaptă răspunsul." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -701,11 +701,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Consultați toate solicitările →" -msgid "Browse and search requests" -msgstr "Vezi şi caută solicitări" - -msgid "Browse and search requests (page {{count}})" -msgstr "Vezi şi caută solicitări (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -713,8 +710,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Vezi cereri" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "în conformitate cu legea, sunt obligați să răspundă." @@ -734,6 +731,12 @@ msgstr "Conform legii {{public_body_link}} ar fi trebuit să vă răspundă mai multe detalii la mesajul de mai sus, \n" " explicând de ce nu ești mulțumit de răspunsul lor." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "E" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Editaţi acesta cerere" @@ -1114,6 +1141,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1126,8 +1156,8 @@ msgstr "" msgid "FOI" msgstr "solicitare de acces la informații" -msgid "FOI email address for {{public_body}}" -msgstr "Adresa de email pentru solicitare {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Legea 544 nu se aplică acestei instituții." @@ -1168,6 +1198,9 @@ msgstr "Caută instituțiile publice" msgid "Find the authorities to write to" msgstr "Caută instituțiile publice cărora să le scrii" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Mai întâi, ați primit un răspuns la cealaltă solicitare?" @@ -1216,9 +1249,6 @@ msgstr "Urmăriţi" msgid "Follow up message sent by requester" msgstr "Urmăriţi mesajul trimis de solicitant" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Mesajele ulterioare solicitărilor eistente vor fi trimise către {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Mesajele ulterioare trimise către {{public_body_name}} de la {{info_request_user}} la data {{date}}." @@ -1231,8 +1261,8 @@ msgstr "Urmăririle si noile răspunsuri la această cerere au fost stopate pent msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Urmăriţi-ne pe Twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Urmează" @@ -1255,11 +1285,10 @@ msgstr[0] "{{count}} instituții publice care încep cu ‘{{first_letter}}’" msgstr[1] "{{count}} instituții publice care încep cu ‘{{first_letter}}’" msgstr[2] "{{count}} instituții publice care încep cu litera ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "{{count}} instituții publice din categoria '{{category_name}}’" -msgstr[1] "{{count}} instituții publice din categoria '{{category_name}}’" -msgstr[2] "{{count}} instituții publice din categoria '{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1267,6 +1296,11 @@ msgstr[0] "{{count}} instituții publice care au tag-ul ‘{{tag_name}}’" msgstr[1] "{{count}} instituții publice care au tag-ul ‘{{tag_name}}’" msgstr[2] "{{count}} instituții publice care au tag-ul ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1281,9 +1315,6 @@ msgstr "" "Legea accesului la informații de interes public nu se aplică acestei autorități, prin urmare nu poți face\n" " o solicitare în acest sens." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Legea 544 nu se mai aplică acestei instituții publice. Mesajele ulterioare solicitărilor existente sunt trimise către {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Legea 544 nu se mai aplică instituției publice {{public_body_name}}." @@ -1335,13 +1366,10 @@ msgstr "Aveți un utilizator?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1365,6 +1393,9 @@ msgstr "Bună! Poți face solicitări de acces la infromații din {{country_name msgid "Help" msgstr "Ajutor" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Ajutați-ne să clasificăm solicitări care nu au fost actualizate" @@ -1468,9 +1499,6 @@ msgstr "Am primit un mesaj de eroare" msgid "I've received an error message" msgstr "Am primit un mesaj de eroare" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Dacă adresa este greşită sau dacă cunoaşteţi o altă adresă, vă rugăm să ne contactaţi." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Dacă eroarea a fost una determinată de eșecul livrării și poți să găsești o adresă pentru solicitări de informații pentru această autoritate, te rugăm să ne transmiți utilizând formularul de mai jos." @@ -1535,11 +1563,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Dacă nu aţi făcut deja asta, vă rugăm să transmiteți un mesaj, mai jos, autoritaţii comunicându-le că v-aţi retras solicitarea. În caz contrar, ei nu vor şti că aceasta a fost retrasă." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Dacă cunoaşteţi adresa ce trebuie utilizată, atunci vă rugăm să ne-o trimiteţi.\n" -" Aţi putea găsi adresa pe siteul lor, sau telefonându-le şi întrebând." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Răspunsul tău la acest mesaj va fi trimis direct către {{user_name}}, care îți va\n" @@ -1583,9 +1606,6 @@ msgstr "Îmbunătățește siguranța contului tău" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Include link-uri relevante, precum cele către pagina campaniei, blogul tău sau către un cont de Twitter. Acestea vor fi accesibile direct din site. \n" @@ -1600,9 +1620,6 @@ msgstr "Solicitări individuale" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Informaţie nedeţinută" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informații legate de emisii și deversări (ex. zgomot, energie, \n" @@ -1629,6 +1646,9 @@ msgstr "Parolă de unică folosință invalidă" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Este {{email_address}} o adresă greşită pentru o {{law_used_full}} cerere adresată {{public_body_name}}? Dacă da, vă rugăm să ne contactaţi utilizând acest formular :" @@ -1653,12 +1673,12 @@ msgstr "Ni s-a alăturat în anul {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "S-a alăturat {{site_name}} în anul {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Încă un singur lucru" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Păstrează acest cod în siguranță. Vei avea nevoie de el pentru a confirma contul când schimbi parola. Îl poți adăuga în managerul de parole sau îl poți printa și păstra întrun loc sigur." - msgid "Keep your request up to date" msgstr "Ține solicitarea actualizată" @@ -1701,6 +1721,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1724,9 +1747,6 @@ msgstr "Conectare la interfaţa de administrare" msgid "Long overdue" msgstr "Așteptat de mult timp" -msgid "Long overdue." -msgstr "Aşteptat de mult timp" - msgid "Made between" msgstr "Făcut între" @@ -1823,9 +1843,6 @@ msgstr "E nevoie de atenția unui administrator" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "O nouă solicitare de acces la informații" @@ -1859,9 +1876,6 @@ msgstr "Actualizări noi la solicitarea '{{request_title}}'" msgid "Newest results first" msgstr "Cele mai noi rezultate prima dată" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Următorul" @@ -1943,6 +1957,9 @@ msgstr "" msgid "Number of requests" msgstr "Numărul de solicitări" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "SAU înlocuiţi poza existentă" @@ -2006,9 +2023,6 @@ msgstr "Succes parțial" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Succes parțial." - msgid "Password is not correct" msgstr "Parola nu e corectă" @@ -2291,6 +2305,9 @@ msgstr "Printează parola de unică folosință" msgid "Privacy and cookies" msgstr "Viață privată și cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2300,6 +2317,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Entități publice" @@ -2381,9 +2401,6 @@ msgstr "Prima dată rezultatele recent descrise" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Refuzat" - msgid "Regenerate one time passcode" msgstr "Regenerare parola de unică folosință" @@ -2423,8 +2440,8 @@ msgstr "Raportaţi această cerere" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Raportaţi în atenţia administratorului" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Raportând o solicitare notificați administratorii site-ului. Aceștia vor răspunde cât mai curând posibil." @@ -2438,6 +2455,9 @@ msgstr "Solicitați o evaluare internă" msgid "Request an internal review from {{person_or_body}}" msgstr "Solicitați o evaluare internă de la {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2495,6 +2515,9 @@ msgstr "Solicitările vor fi trimise către următoarele instituții publice:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Răspuns prin email" @@ -2573,6 +2596,12 @@ msgstr "" msgid "Search queries" msgstr "Caută interogări" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultate căutare" @@ -2588,6 +2617,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Trimiteţi o urmărire" @@ -2636,6 +2671,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2660,6 +2700,9 @@ msgstr "Alege poza de profil" msgid "Share on Facebook" msgstr "Publică pe Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2878,9 +2921,6 @@ msgstr "Solicitări de acces la informații care au fost făcute cu succes" msgid "Successful requests" msgstr "Solicitarea reușită" -msgid "Successful." -msgstr "Succes" - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugeraţi cum ar putea găsi solicitantul restul informaţiilior." @@ -2908,6 +2948,9 @@ msgstr "Etichete" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Vă mulţumim pentru că ne ajutaţi să menţinem acest site îngrijit !" @@ -2973,6 +3016,12 @@ 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 "Adresa URL unde ați găsit adresa email. Acest câmp este opțional dar ne-ar ajuta enorm dacă ne-ați putea oferi link-ul specific spre pagina instituției publice unde este găsită adresa. Asta ne-ar ajuta foarte mult să putem verifica." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Contuile au rămas aşa cum erau înainte." @@ -3035,12 +3084,6 @@ msgstr "Ultimul utilizator a fost creat în ziua curentă" msgid "The last user was created over a day ago" msgstr "Ultimul utilizator a fost creat cu mai mult de o zi în urmă" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Pagina nu există. Ceea ce puteţi încerca acum:" @@ -3224,8 +3267,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Încă nu este nimic de afișat." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "A apărut o eroare de transmitere sau similară ce va trebui să fie rezolvată de către echipa {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "S-a produs o eroare cu reCAPTCHA. Vă rugăm să încercați din nou." @@ -3621,12 +3664,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Opriţi alertele prin email" -msgid "Tweet it" -msgstr "Scrie pe Tweeter" - -msgid "Tweet this request" -msgstr "Plasează pe Tweet acestă cerere" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Autentificarea în doi pași adaugă măsuri de securitate în plus contului deroarece solicită mai multe infromații pentru a reseta parola." @@ -3695,8 +3732,8 @@ msgstr "Dezabonare" msgid "Unusual response" msgstr "Răspuns neobișnuit" -msgid "Unusual response." -msgstr "Răspuns neobişnuit." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Actualizați adresa de email pentru - {{public_body_name}}" @@ -3734,23 +3771,14 @@ msgstr "Ofensator" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Vezi adresa de email pentru solicitări" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Vezi adresa de email pentru '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Vezi adresa de email pentru '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Vezi cererile solicitările de acces la informații făcute de {{user_name}}:" msgid "View authorities" msgstr "Vezi autorităţi" -msgid "View email" -msgstr "Vezi email" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3758,11 +3786,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "Vezi alte solicitări către {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Vezi parola de unică folosință pentru autentificarea în doi pași" -msgid "Waiting clarification." -msgstr "Aşteaptă clarificare" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Aşteaptă o revizuire internă de către {{public_body_link}} a prelucrării acestei cereri." @@ -3794,9 +3828,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Nu avem o adresă de email valabilă pentru cererile adresate acestei autoritate." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nu avem o adresă {{law_used_full}} valabilă pentru {{public_body_name}}." @@ -3916,6 +3947,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Când ajungi acolo, te rugăm să îţi actualizezi statusul pentru a şti dacă răspunsul\n" @@ -3944,8 +3978,8 @@ msgstr "De ce consideri această solicitare nepotrivită?" msgid "Withdrawn" msgstr "Retras" -msgid "Withdrawn by the requester." -msgstr "Retras de către solicitant." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3971,6 +4005,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Ai mai creat o dată același grup de solicitări pe data de {{date}}. Poți vedea grupul de solicitări sau poți edita detaliile de mai jos pentru a face un grup de solicitări nou dar similar." @@ -4627,9 +4664,6 @@ msgstr "tastează aici termenii căutării" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "motiv necunoscut" - msgid "unknown reason " msgstr "motiv necunoscut" @@ -4666,9 +4700,6 @@ msgstr "{{authority_name}} nu au avut informaţia solicitată. msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} aşteaptă clarificarea ta." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4680,6 +4711,11 @@ msgstr[0] "o adnotare făcută" msgstr[1] "{{count}} adnotări făcute" msgstr[2] "{{count}} adnotări făcute" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} persoană urmărește" @@ -4832,8 +4868,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} corespunzătoare '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog şi tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4846,9 +4882,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} trimite noi cereri către {{request_email}} pentru această autoritate." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/rw/app.po b/locale/rw/app.po index 6688e4d277..1051ca472f 100644 --- a/locale/rw/app.po +++ b/locale/rw/app.po @@ -45,7 +45,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Stephen Abbott Pugh , 2015\n" "Language-Team: Kinyarwanda (http://app.transifex.com/mysociety/alaveteli/langu" @@ -187,11 +187,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Reba byose cyangwa udusabe kongeraho imwe." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Ongera usabe amakuru to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Saba andi makuru to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -281,8 +281,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "ibitandukanye: guhitamo ubwoko bw'ikintu ushaka, reba urutonde rw'ibintu byose bihari ahakurikira." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Inama ku buryo bwo kubona igisubizo cyanyura uwabajije. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Amakuru yose yoherejwe" @@ -325,6 +325,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Nta gisubizo twabonye\n" @@ -381,8 +384,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ubutumwabwo gukurikirana iki kibazo {{request_title}} bwohererejwe {{public_body_name}} na {{info_request_user}} kuwa {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Ubutumwa bwo gusubiza iki ikibazo {{request_title}} bwoherejwe na {{public_body_name}} kuri {{info_request_user}} kuwa {{date}}. Irangamimerere y'ikibazo cyawe ni: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -428,9 +431,6 @@ msgstr "Ibikwerekeyeho" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -463,6 +463,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Ongeraho umuyobozi - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Ongeraho umuyobozi:" @@ -639,24 +645,18 @@ msgstr "Gitegereje ibisobanuro" msgid "Awaiting classification" msgstr "Gitegereje gushyingurwa" -msgid "Awaiting classification." -msgstr "Gitegereje gushyingurwa." - msgid "Awaiting internal review" msgstr "Haracyategerejwe isuzuma ryo mu kigo " -msgid "Awaiting internal review." -msgstr "Gitegereje isuzuma." - msgid "Awaiting response" msgstr "Gitegereje igisubizo" -msgid "Awaiting response." -msgstr "Gitegereje igisubizo." - msgid "Back to content" msgstr "Subira ku byandiste" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -693,11 +693,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Reba amakuru yose yasabwe→" -msgid "Browse and search requests" -msgstr "Shaka ibibazo" - -msgid "Browse and search requests (page {{count}})" -msgstr "Shaka ibibazo (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -705,8 +702,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Shaka ibibazo" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Nkuko bisabwa n'amategeko bagomba gusubiza." @@ -726,6 +723,12 @@ msgstr "Mu mategeko, {{public_body_link}} yakagombye kuba yasubije ako k msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Ntushobora kubona uwo ushaka?" @@ -798,6 +801,9 @@ msgstr "Sobanura ikibazo cyawe cy'ubwisanzure bwo kumenya amakuru - {{request_ti msgid "Classify an FOI response from {{authority_name}}" msgstr "Shyingura igisubizo cy'ubwisanzure bwo kumenya amakuru cyatanzwe na {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -866,10 +872,10 @@ msgstr "Emeza imeli yawe " msgid "Confirm your new email address on {{site_name}}" msgstr "Emeza imeli yawe nshya kuri {{site_name}}" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -940,6 +946,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Itariki:" @@ -967,15 +976,15 @@ msgstr "Cyakerewe" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Ikibazo cyawe cy'ubwisanzure bwo kumenya amakuru cyatinze gusubizwa - {{request_title}}" -msgid "Delayed." -msgstr "Cyakerewe." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Kumenyeshwa uko ubutumwa bwoherejwe buhagaze#{{id}}" msgid "Delivery error" msgstr "Ntiyoherejwe" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Ibisobanuro by'ikibazo “{{request_title}}”" @@ -1012,10 +1021,7 @@ msgstr "Warangije" msgid "Done >>" msgstr "Warangije >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1024,6 +1030,9 @@ msgstr "Kurura dosiye y'abantu bose muvugana" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Kurura umugereka w'umwimerere" @@ -1038,9 +1047,27 @@ msgstr "" "Hindura kandi utange ibindi bisobanuro ku butumwa buri haruguru,\n" " usobanura impamvu utanyuzwe n'igisubizo cyabo." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Hindura ubutumwa bukuvugaho" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Hindura iki kibazo" @@ -1106,6 +1133,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1118,8 +1148,8 @@ msgstr "" msgid "FOI" msgstr "Ubwisanzure bwo kumenya amakuru" -msgid "FOI email address for {{public_body}}" -msgstr "Aderesi imeli y'ubwisanzure bwo kumenya amakuru ya {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Itegeko ry'ubwisanzure bwo kumenya amakuru ntirireba uyu muyobozi." @@ -1160,6 +1190,9 @@ msgstr "Shaka abayobozi" msgid "Find the authorities to write to" msgstr "Hitamo abayobozi bo kwandikira" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Icya mbere, ibindi bibazo byawe byarasubijwe?" @@ -1210,9 +1243,6 @@ msgstr "Gukurikirana" msgid "Follow up message sent by requester" msgstr "Gukurikirana ubutumwa bwatanzwe n'uwabajije" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Ubutumwa bwo gukurikirana amakuru yasabwe bowherezwa kuri {{authority_email}}" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Ubutumwa bwo gukurikirana bwohererejwe {{public_body_name}} na {{info_request_user}} kuwa {{date}}." @@ -1225,8 +1255,8 @@ msgstr "Ubutumwa bwo gukurikira n'ibisubizo bishya kuri iki kibazo byarahagarits msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Dukurikire kuri twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Kurikira" @@ -1247,16 +1277,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Habonetse {{count}} ibigo bya leta bitangirwa na‘{{first_letter}}’" msgstr[1] "Habonetse {{count}} ibigo bya leta bitangirwa na‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Habonetse {{count}} ibiigo bya leta mu byerekeye ‘{{category_name}}’" -msgstr[1] "Habonetse {{count}} ibiigo bya leta mu byerekeye ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Habonetse {{count}} ibigo bya leta bihuye n’iyi nyito ‘{{tag_name}}’" msgstr[1] "Habonetse {{count}} ibigo bya leta bihuye n’iyi nyito ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1271,9 +1306,6 @@ msgstr "" "Itegeko ry'ubwisanzure bwo kumenya amakuru ntabwo rireba uyu muyobozi, rero ntushobora gutanga\n" " ikibazo kirireba." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Itegeko ryo gutanga amakuru ntabwo rigikora kuri iki kigo. Inyandiko zikurikirana ku makuru yasabwe zoherezwa kuri {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Itegeko ry'ubwisanzure bwo kumenya amakuru ntirikireba {{public_body_name}}." @@ -1325,13 +1357,10 @@ msgstr "Ufite konti?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1355,6 +1384,9 @@ msgstr "Muraho!Mushobora gusaba amakuru muri{{country_name}}kuri{{link_to_websit msgid "Help" msgstr "Ubufasha" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Dufashe gushyira mu byiciro ibibazo bitahinduwe " @@ -1457,9 +1489,6 @@ msgstr "Nakiriye ubutumwa bwo kwibeshya" msgid "I've received an error message" msgstr "Nakiriye ubutumwa bwo kwibeshya" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Niba aderesi atari yo, cyangwa se uzi aderesi yaba nziza kurushaho, twandikire." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Niba ikosa ari uko ubutumwa butagiye, kandi ukaba uzi imeli y'ubwisanzure bwo kumenya amakuru umuyobozi asigaye akoresha, tubwire wuzuza iyi fishi ikurikira." @@ -1525,11 +1554,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Niba utarabikora, andika ubu butumwa bukurikira ubwira umuyobozi ko wakuyeho ikibazo cyawe. Ni utabikora ntibazamenya ko wakuyeho ikibazo cyawe." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Niba uzi aderesi yakoreshwa turagusaba uyitwoherereze.\n" -" Ushobora kuyibona ku rubuga rwabo, cyangwa se ubaterefonnye ukababaza." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ni usubiza ubu butumwa igisubizo kirahita cyohererezwa {{user_name}}, kandi\n" @@ -1571,9 +1595,6 @@ msgstr "Ongera umutekano konte yawe" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Shyiramo utundi turango, nk'urubuga rwo kwiyamamarizaho, urubuga rw'amakuru agezweho cyangwa se\n" @@ -1589,9 +1610,6 @@ msgstr "Ibibazo bwite" msgid "Information not held" msgstr "Amakuru ntabwo bayafite" -msgid "Information not held." -msgstr "Ntabwo dufite ayo makuru" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Amakuru ku bihumanya (urugero: urusaku, ibikomoka ku ngufu,\n" @@ -1618,6 +1636,9 @@ msgstr "Ijambo ry’ibanga rikora rimwe ritariryo" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Iyi imeli {{email_address}} ntabwo ariyo yakoreshwa mu gutanga ibibazo bijyanye na {{law_used_full}} kuri {{public_body_name}}? Niba atariyo, tubwire wuzuza iyi fishi:" @@ -1642,12 +1663,12 @@ msgstr "Yagiyemo mu {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Yagiyeho{{site_name}} mu {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Ikindi kintu kimwe gusa" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Cunga neza ii kode y’ibanga. Uzayikenera nujya guhindura ijambo ry’ibanga wemeza konte yawe.Ushobora kuyishyira mu bubiko bwa’amagambo y’ibanga cyangwa ukayicapisha ukayibika ahantu wizeye neza. " - msgid "Keep your request up to date" msgstr "Kora ku buryo ikibazo cyawe kidata agaciro ugihindura uko bikwiye" @@ -1690,6 +1711,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1713,9 +1737,6 @@ msgstr "Injira mu rubuga rw'abayobozi" msgid "Long overdue" msgstr "Cyararengeranye cyane" -msgid "Long overdue." -msgstr "Cyararengeranye cyane." - msgid "Made between" msgstr "Byakozwe hagati ya" @@ -1812,9 +1833,6 @@ msgstr "Gikeneye kurebwaho n'abayobozi b'urubuga" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Ibindi bibazo bishya ku bwisanzure bwo kumenya amakuru" @@ -1848,9 +1866,6 @@ msgstr "Amavugurura ku kibazo '{{request_title}}'" msgid "Newest results first" msgstr "Banza ibisubizo bishya" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Ahakurikira" @@ -1932,6 +1947,9 @@ msgstr "Umubare w’ibisabwa byahishwe mu gihe runaka ." msgid "Number of requests" msgstr "Umubare w'ibibazo" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "CYAGWA SE kuraho ifoto yari isanzwe" @@ -1995,9 +2013,6 @@ msgstr "Cyasubijwe igice" msgid "Partially successful" msgstr "Byarakunze gato " -msgid "Partially successful." -msgstr "Hasubijwe igice kimwe." - msgid "Password is not correct" msgstr "Ijambobanga siryo" @@ -2280,6 +2295,9 @@ msgstr "Urasabwa guhitamo ikigo " msgid "Privacy and cookies" msgstr "Ubuzima bwite na cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Ifoto y’ukoresha urubuga {{user_name}}" @@ -2289,6 +2307,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Abayobozi" @@ -2370,9 +2391,6 @@ msgstr "Banza ibisubizo biherutse gusobanurwa" msgid "Refused" msgstr "Byanze" -msgid "Refused." -msgstr "Bagihakanye." - msgid "Regenerate one time passcode" msgstr "Kora kode y’ibanga ikora rimwe gusa" @@ -2412,8 +2430,8 @@ msgstr "Erekana iki kibazo" msgid "Reported" msgstr "Byatangajwe" -msgid "Reported for administrator attention." -msgstr "Gikeneye kurebwa n'abayobozi b'urubuga." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Iyo ugaragaje ikibazo, abayobozi b'urubuga bahita babimenyeshwa. Bazagerageza kugusubiza vuba bishoboka." @@ -2427,6 +2445,9 @@ msgstr "Saba isuzuma" msgid "Request an internal review from {{person_or_body}}" msgstr "Saba {{person_or_body}} ifishi y'isuzuma" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2484,6 +2505,9 @@ msgstr "Ibibazo bizohererezwa abayobozi bakurikira:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Subiza ukoresheje imeli" @@ -2562,6 +2586,12 @@ msgstr "" msgid "Search queries" msgstr "Shaka ibibazo" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Shaka ibyabonetse" @@ -2577,6 +2607,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Ohereza ubutumwa bwo gurikirana" @@ -2625,6 +2661,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2648,6 +2689,9 @@ msgstr "Shyiraho ifoto ikuranga" msgid "Share on Facebook" msgstr "Gusangiza kuri Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2867,9 +2911,6 @@ msgstr "Ibibazo by'ubwisanzure bwo kumenya amakuru byasubijwe" msgid "Successful requests" msgstr "Ibibazo byasubijwe" -msgid "Successful." -msgstr "Cyarasubijwe." - msgid "Suggest how the requester can find the rest of the information." msgstr "Tanga ibitekerezo ku buryo uwabajije ashobora kubona amakuru asigaye." @@ -2897,6 +2938,9 @@ msgstr "Ibimenyetso:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Murakoze kudufasha kugira isuku kuri uru rubuga!" @@ -2968,6 +3012,12 @@ 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 "Aderesi ya interineti wakuyeho iyi imeli aderesi. Kuzuza hano si itegeko, ariko uduhaye ihuza ryo kuri paji yihariye ku rubuga rw'umuyobozi iriho iyi aderesi byadufasha cyane , kuko byatworohereza kubigenzura." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Konti zagumye uko zari zimeze." @@ -3030,12 +3080,6 @@ msgstr "Umukoresharubuga wa nyuma yashyizweho mu munsi utambutse" msgid "The last user was created over a day ago" msgstr "Umukoresharubuga wa nyuma yashyizweho mbere y'umunsi umwe ushize" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Iyo paji ntibaho. Dore ibyo ushobora gukora:" @@ -3219,8 +3263,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Nta kintu cyo kugaragaza kiraboneka." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Habaye ikibazo mu kwohereza cyangwa se ikindi kibazo nk'icyo, bigomba gukosorwa n'itsinda rya {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Hari habayeho ikosa kuri reCAPTCHA. Ongera ugerageze!" @@ -3617,12 +3661,6 @@ msgstr "Gerageza ufungure irindi dirishya rya mudasobwa " msgid "Turn off email alerts" msgstr "Funga imbuzi zo kuri imeli" -msgid "Tweet it" -msgstr "Gishyire kuri Twitter" - -msgid "Tweet this request" -msgstr "Shyira iki kibazo kuri Twitter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Uburyo buhanitse bwo kurinda konte yawe bwongera umutekano kuko bakubaza ibindi bintu kugirango wongere ukoreshe ijambo ry/ibanga ryawe." @@ -3691,8 +3729,8 @@ msgstr "Kwiyandukuza" msgid "Unusual response" msgstr "Igisubizo kidasanzwe" -msgid "Unusual response." -msgstr "Igisubizo kidasanzwe." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Vugurura imeli aderesi - {{public_body_name}}" @@ -3730,23 +3768,14 @@ msgstr "Gikomeretsanya" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Reba imeli y'ubwisanzure bwo kumenya amakuru" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Reba imeli y'ubwisanzure bwo kumenya amakuru ya '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Reba imeli y'ubwisanzure bwo kumenya amakuru ya '{{public_body_name}}'" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Reba ibibazo by'ubwisanzure bwo kumenya amakuru byabajijwe na {{user_name}}:" msgid "View authorities" msgstr "Reba abayobozi" -msgid "View email" -msgstr "Reba imeli" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Reba ibindi byabaye" @@ -3754,11 +3783,17 @@ msgstr "Reba ibindi byabaye" msgid "View other requests to {{public_body}}" msgstr "Reba ibindi bibazo byabajijwe {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Reba uburyo buhanitse bw’umutekano ya konte na kode y’ibanga ikoreshwa rimwe. " -msgid "Waiting clarification." -msgstr "Gitegereje ibisobanuro." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Gitegereje gusuzumwa na {{public_body_link}} ku buryo bakemuye iki kibazo." @@ -3790,9 +3825,6 @@ msgstr "Ntidushobora kugarura inzira ubu butumwa bwanyuzemo." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ntabwo dufite imeli ikora y'uyu muyobozi." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Ntabwo dufite {{law_used_full}} aderesi y'ukuri ya {{public_body_name}}." @@ -3910,6 +3942,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Ni uhagera, uvugurure irangamimerere uvuge niba igisubizo \n" @@ -3938,8 +3973,8 @@ msgstr "Ni iyihe mpamvu ituma uvuga ko iki kibazo kidakwiye?" msgid "Withdrawn" msgstr "Cyakuweho" -msgid "Withdrawn by the requester." -msgstr "Byakuweho n'uwabajije" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Icyumweru" @@ -3965,6 +4000,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Wigeze gusaba itsinda ry’amakuru kuri {{date}}. Ushobora kureba itsinda ririho , cyangwa ugahindura ibi byo munsi gusaba andi makuru mashya inshya ariko isa n’ibindi byasabwe ." @@ -4620,9 +4658,6 @@ msgstr "andika ijambo ushaka hano" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "impamvu itazwi" - msgid "unknown reason " msgstr "impamvu itazwi" @@ -4659,9 +4694,6 @@ msgstr "{{authority_name}} ntiyari afite amakuru wasabye." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} itegerejeigisobanuro cyawe." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} ibiri kumwe" @@ -4672,6 +4704,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} ibisonanuro byanditswe byongeweho." msgstr[1] "{{count}} ibisonanuro byanditswe byongeweho." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "Abantu {{count}} bakurikiye" @@ -4825,8 +4862,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} bihuye na '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} urubuga rw'amakuru agezweho n'ubutumwa bwo kuri Twitter" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4839,9 +4876,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} Yohereza ibibazo bishya kuri {{request_email}} y'uyu muyobozi." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/se/app.po b/locale/se/app.po index 1b9ec474a1..22639bd6fc 100644 --- a/locale/se/app.po +++ b/locale/se/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Northern Sami (http://app.transifex.com/mysociety/alaveteli/lan" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/si/app.po b/locale/si/app.po index 38b25010c7..8843e6e6c3 100644 --- a/locale/si/app.po +++ b/locale/si/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Sinhala (http://app.transifex.com/mysociety/alaveteli/language/" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/sk/app.po b/locale/sk/app.po index ae3cb16983..c5b762ef1e 100644 --- a/locale/sk/app.po +++ b/locale/sk/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Slovak (http://app.transifex.com/mysociety/alaveteli/language/s" @@ -169,10 +169,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -252,7 +252,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -288,6 +288,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -333,7 +336,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -378,9 +381,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -411,6 +411,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -579,22 +585,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -633,10 +633,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -645,7 +642,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -666,6 +663,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -738,6 +741,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -804,10 +810,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -876,6 +882,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -903,15 +912,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -948,10 +957,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -960,6 +966,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -972,9 +981,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1035,6 +1062,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1047,7 +1077,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1089,6 +1119,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1137,9 +1170,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1152,7 +1182,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1174,8 +1204,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1184,6 +1214,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1196,9 +1231,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1247,13 +1279,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1277,6 +1306,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1367,9 +1399,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1427,9 +1456,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1463,9 +1489,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1478,9 +1501,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1505,6 +1525,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1526,10 +1549,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1574,6 +1597,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1595,9 +1621,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1694,9 +1717,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1730,9 +1750,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1814,6 +1831,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1877,9 +1897,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2149,6 +2166,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2158,6 +2178,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2239,9 +2262,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2281,7 +2301,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2296,6 +2316,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2353,6 +2376,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2428,6 +2454,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2443,6 +2475,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2491,6 +2529,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2514,6 +2557,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2727,9 +2773,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2757,6 +2800,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2820,6 +2866,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2880,12 +2932,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3063,7 +3109,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3445,12 +3491,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3517,7 +3557,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3556,22 +3596,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3580,10 +3611,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3616,9 +3653,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3722,6 +3756,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3746,7 +3783,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3773,6 +3810,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4401,9 +4441,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4440,9 +4477,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4453,6 +4487,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4597,7 +4636,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4611,9 +4650,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/sl/app.po b/locale/sl/app.po index 9f87496dc4..7cdb6a1bce 100644 --- a/locale/sl/app.po +++ b/locale/sl/app.po @@ -49,7 +49,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: zejn , 2013\n" "Language-Team: Slovenian (http://app.transifex.com/mysociety/alaveteli/languag" @@ -192,11 +192,11 @@ msgstr "60 in več minut" msgid "Browse all or ask us to add one." msgstr "Prebrskaj vse ali nas poprosi, da kakšnega dodamo." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Ustvarite novo zahtevo za informacije javnega značaja s področja okoljaza {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Ustvari novo zahtevo za dostop do informacij javnega značaja za {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Vpišite seda boste lahko prejeli novice o področjih, ki jim sledite in izklopili e-poštna opozorila." @@ -285,8 +285,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: da izberete željeni tip iskanega objekta. Za več informacij si oglejte preglednico tipov spodaj." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Nasveti kako spisati odgovor, ki bo zadovoljil prosilca. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Vse informacije so bile poslane" @@ -323,6 +323,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Novinar, akademik ali usposobljeni uporabnik? {{pro_site_link}} je celovito orodje za dostop do informacij javnega značaja, ki vsebuje vse, kar potrebujete za spremljanje zapletenih preiskav, ki temeljijo na dostopu do informacij javnega značaja. " +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Nismo prejeli odgovora (morda je to le potrdilo o prejetju)" @@ -368,8 +371,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Odziv na {{request_title}} je {{info_request_user}} poslal {{public_body_name}} dne {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Odgovor na {{request_title}} je organ {{public_body_name}} poslal {{info_request_user}} dne {{date}}. Stanje zahteve je: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Povzetekodgovora, če ste ga prejeli po pošti." @@ -415,9 +418,6 @@ msgstr "O meni:" msgid "About {{count}} FOI requests found" msgstr "O {{count}} najdenih zahtevah za dostop do informacij javnega značaja" -msgid "Academic paper" -msgstr "Strokovni članek" - msgid "Account closed at user request" msgstr "Uporabniški račun zaprt na zahtevo uporabnika" @@ -448,6 +448,12 @@ msgstr "Dodajte zaznamek k vašemu zahtevku z ? ali s povzetkom odgovora msgid "Add authority - {{public_body_name}}" msgstr "Dodajte organ - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Dodajte organ:" @@ -618,24 +624,18 @@ msgstr "Čakanje pojasnitve" msgid "Awaiting classification" msgstr "Čaka klasifikacijo" -msgid "Awaiting classification." -msgstr "Čaka na klasifikacijo." - msgid "Awaiting internal review" msgstr "Čaka notranji pregled" -msgid "Awaiting internal review." -msgstr "Čaka notranji pregled." - msgid "Awaiting response" msgstr "Čaka odgovor" -msgid "Awaiting response." -msgstr "Čaka odgovor." - msgid "Back to content" msgstr "Nazaj na vsebino" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Izključen zaradi obida druge izključitve" @@ -672,11 +672,8 @@ msgstr "Prebrskajte vse organe →" msgid "Browse all requests →" msgstr "Prebrskajte vse zahteve →" -msgid "Browse and search requests" -msgstr "Brskajte med zahtevami" - -msgid "Browse and search requests (page {{count}})" -msgstr "Brskajte med zahtevami (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Brskajte med zadnjimi zahtevami" @@ -684,8 +681,8 @@ msgstr "Brskajte med zadnjimi zahtevami" msgid "Browse latest responses" msgstr "Brskajte med zadnjimi odgovori" -msgid "Browse requests" -msgstr "Poglejte zahteve" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Po zakonu se morajo odzvati." @@ -705,6 +702,12 @@ msgstr "Po zakonu bi moral {{public_body_link}} odgovoriti nemudomase čaka na odgovorod {{public_body_link}}, ki msgid "Data interpretation" msgstr "Razlaga podatkov" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -944,15 +953,15 @@ msgstr "Zamuda" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Pozen odgovor na vašo zahtevo - {{request_title}}" -msgid "Delayed." -msgstr "Pozen." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Status dostave za odhodno sporočilo #{{id}}" msgid "Delivery error" msgstr "Napaka pri dostavi" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Podrobnosti zahteve “{{request_title}}”" @@ -989,10 +998,7 @@ msgstr "Končano" msgid "Done >>" msgstr "Končano >>" -msgid "Download Data" -msgstr "Prenesi podatke" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1001,6 +1007,9 @@ msgstr "Prenesite celotno korespondenco kot arhiv ZIP" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Prenesite izvirno prilogo" @@ -1013,9 +1022,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Uredite in dodajte več podrobnosti k zgornjemu sporočilu, da obrazložite zakaj niste zadovoljni z odgovorom." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Uredite besedilo o vas" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Uredite to zahtevo" @@ -1076,6 +1103,9 @@ msgstr "Vse kar vpisujete na tej strani, vključno z vašim imenom{{authority_email}}." -msgstr "Ponovna sporočila po prvotno posredovanih zahtevah so bila posredovana {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Odziv poslan na {{public_body_name}} s strani {{info_request_user}} v {{date}}." @@ -1193,8 +1223,8 @@ msgstr "Odzivi in novi odgovori na to zahtevo so bili onemogočeni, da se omejij msgid "Follow us on Facebook" msgstr "Sledite nam na Facebooku" -msgid "Follow us on twitter" -msgstr "Sledite nam na twitterju" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Spremljanje" @@ -1219,12 +1249,10 @@ msgstr[1] "Najdena {{count}} organa, ki se začneta z ‘{{first_letter}}’" msgstr[2] "Najdeni {{count}} organi, ki se začnejo z ‘{{first_letter}}’" msgstr[3] "Najdeni {{count}} organi, ki se začnejo z ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Najden {{count}} organ v kategoriji ‘{{category_name}}’" -msgstr[1] "Najdena {{count}} organa v kategoriji ‘{{category_name}}’" -msgstr[2] "Najdeni {{count}} organi v kategoriji ‘{{category_name}}’" -msgstr[3] "Najdeni {{count}} organi v kategoriji ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1233,6 +1261,11 @@ msgstr[1] "Najdena {{count}} organa, ki ustrezata oznaki ‘{{tag_name}}’" msgstr[2] "Najdeni {{count}} organi, ki ustrezajo oznaki ‘{{tag_name}}’" msgstr[3] "Najdeni {{count}} organi, ki ustrezajo oznaki ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Pred 4. tedni ste z uporabo {{site_name}} ustvarili zahtevo za dostop do informacij javnega značaja naslovljen na {{public_body_name}}." @@ -1245,9 +1278,6 @@ msgstr "Zakon o dostopu do informacij javnega značaja" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Zakon o dostopu do informacij javnega značaja ne velja za ta subjekt, zato mu ne morete poslati zahteve." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Organ ni več zavezanec po Zakonu o dostopu do informacij javnega značaja. Nadaljnja sporočila za obstoječe zahteve so poslana na {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "{{public_body_name}} ni več zavezanec po Zakonu o dostopu do informacij javnega značaja." @@ -1296,14 +1326,11 @@ msgstr "Že imate uporabniški račun?" msgid "Handled by postal mail" msgstr "Obdelano po pošti" -msgid "Handled by postal mail." -msgstr "Obdelano po pošti" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Ali je bil zahteva navedena v novičarskem ali akademskem članku?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Ali je bil zahteva navedena v novičarskem ali akademskem članku? Sporočite nam:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Živjo! Imamo pomembno novico za obiskovalce izven {{country_name}}" @@ -1326,6 +1353,9 @@ msgstr "Pozdravljeni! Zahteve za dostop do informacij javnega značaja lahko vlo msgid "Help" msgstr "Pomoč" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Pomagajte nam razvrstiti zahteve, ki niso bile dopolnjene" @@ -1422,9 +1452,6 @@ msgstr "Prejel sem sporočilo o napaki" msgid "I've received an error message" msgstr "Prejel sem sporočilo o napaki" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Če je e-poštni naslov napačen ali poznate primernejšega, nas prosimo kontaktirajte." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Če ste prejeli napako o dostavi in ste uspeli najti delujoč e-poštni naslov za organ, nas prosim obvestite z uporabo spodnjega obrazca." @@ -1487,11 +1514,6 @@ msgstr "V kolikor ste elektronsko sporočilo prejeli več kot 2 meseca n msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Če tega še niste storili, prosimo napišite sporočilo, da obvestite organ o umiku zahteve, sicer organ ne bo vedel, da je zahteva umaknjena." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Če poznate pravi e-poštni naslov, nam ga prosimo pošljite.\n" -" Naslov lahko najdete na njihovi spletni strani ali pa jih povprašate po telefonu." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Če boste odgovorili na to sporočilo, bo sporočilo poslano neposredno\n" @@ -1533,9 +1555,6 @@ msgstr "Izboljšajte varnost vašega uporabniškega računa." msgid "In progress" msgstr "V obdelavi" -msgid "In the News" -msgstr "V novicah" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Vključite smiselne povezave, kot so povezava na stran kampanje, vaš blog ali \n" @@ -1551,9 +1570,6 @@ msgstr "Posamezne zahteve" msgid "Information not held" msgstr "Informacije niso shranjene." -msgid "Information not held." -msgstr "Teh informacij ni" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informacije o emisijah in izpustih (npr. zvok, energija, \n" @@ -1580,6 +1596,9 @@ msgstr "Napačno enkratno časovno geslo" msgid "Invalid token" msgstr "Neveljavni overitveni žeton" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Je {{email_address}} napačen naslov za zahtevo {{law_used_full}} za {{public_body_name}}? Če je temu tako, nas prosimo kontaktirajte z uporabo tega obrazca:" @@ -1604,12 +1623,12 @@ msgstr "Pridružen leta {{year}}" msgid "Joined {{site_name}} in {{year}}" msgstr "Se je pridružil/-a {{site_name}} leta {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Samo še ena stvar" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "To geslo shranite na varno. Potrebovali ga boste za potrditev računa pri spreminjanju gesla. Lahko ga dodate v upravitelj gesel ali natisnete in shranite na varno mesto." - msgid "Keep your request up to date" msgstr "Svojo zahtevo redno posodabljajte" @@ -1652,6 +1671,9 @@ msgstr "Zapusti projekt" msgid "Let us know" msgstr "Sporočite nam" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Sporočite nam in pomagali vam bomo izzvati odločitev." @@ -1675,9 +1697,6 @@ msgstr "Prijava v administracijski vmesnik" msgid "Long overdue" msgstr "Pretečen" -msgid "Long overdue." -msgstr "Rok za odziv pretečen." - msgid "Made between" msgstr "Narejeno med" @@ -1774,9 +1793,6 @@ msgstr "Potrebuje pozornost skrbnika" msgid "Needs status update" msgstr "Potrebuje posodobitev stanja" -msgid "New Citation" -msgstr "Novi navedek" - msgid "New Freedom of Information requests" msgstr "Nova zahteva za informacije javnega značaja" @@ -1810,9 +1826,6 @@ msgstr "Nove spremembe glede zahteve '{{request_title}}'" msgid "Newest results first" msgstr "Najnovejši rezultati najprej" -msgid "News story" -msgstr "Novica" - msgid "Next" msgstr "Naprej" @@ -1894,6 +1907,9 @@ msgstr "Čez čas število zahtev prekriva dogodke" msgid "Number of requests" msgstr "Število zahtev" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ALI odstranite trenutno fotografijo" @@ -1957,9 +1973,6 @@ msgstr "Delni uspeh" msgid "Partially successful" msgstr "Delno uspešno" -msgid "Partially successful." -msgstr "Delno ugodeno." - msgid "Password is not correct" msgstr "Geslo ni pravilno" @@ -2239,6 +2252,9 @@ msgstr "Natisnite svoje enkratno geslo" msgid "Privacy and cookies" msgstr "Zasebnost in piškotki" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profilna slika za {{user_name}}" @@ -2248,6 +2264,9 @@ msgstr "Lastnik projekta" msgid "Proposed Email:" msgstr "Predlog elektronskega sporočila:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Javni organi" @@ -2329,9 +2348,6 @@ msgstr "Nedavno opisani rezultati najprej" msgid "Refused" msgstr "Zavrnjeno" -msgid "Refused." -msgstr "Zavrnjeno." - msgid "Regenerate one time passcode" msgstr "Ponovno ustvarite enkratno geslo" @@ -2371,8 +2387,8 @@ msgstr "Prijavite to zahtevo" msgid "Reported" msgstr "Prijavljeno" -msgid "Reported for administrator attention." -msgstr "Prijavljeno za administratorje." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Prijava zahteve opozori upravljalce strani. Odreagirali bojo v najkrajšem času." @@ -2386,6 +2402,9 @@ msgstr "Zahtevajte interno revizijo" msgid "Request an internal review from {{person_or_body}}" msgstr "Zahtevajte interno revizijo od {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "E-naslov zahteve ne more biti nič" @@ -2443,6 +2462,9 @@ msgstr "Zahteve bodo poslane sledečim organom:" msgid "Requires admin attention" msgstr "Zahteva pozornost administratorja" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Odgovorite prek e-pošte" @@ -2521,6 +2543,12 @@ msgstr "" msgid "Search queries" msgstr "Iskalne poizvedbe" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultati iskanja" @@ -2536,6 +2564,12 @@ msgstr "Oddelek" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Pošljite odziv" @@ -2584,6 +2618,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2609,6 +2648,9 @@ msgstr "Nastavi profilno fotografijo" msgid "Share on Facebook" msgstr "Deli na Facebooku" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Delite z zasebno povezavo" @@ -2828,9 +2870,6 @@ msgstr "Ugodene zahteve za informacije javnega značaja" msgid "Successful requests" msgstr "Uspešne zahteve" -msgid "Successful." -msgstr "Ugodeno." - msgid "Suggest how the requester can find the rest of the information." msgstr "Predlagaj kako lahko prosilec najde preostanek zahtevanih informacij." @@ -2858,6 +2897,9 @@ msgstr "Značke:" msgid "Tasks" msgstr "Opravila" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Hvala za pomoč pri urejanju strani!" @@ -2926,6 +2968,12 @@ msgstr "URL, kjer ste našli članek." 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 "Spletni naslov (URL), kjer ste našli e-poštni naslov. Polje ni obvezno, če pa nam lahko podate povezavo na spletno stran organa, na kateri ste naslov našli, nam precej olajšate preverjanje." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Računi so ostali nedotaknjeni." @@ -2986,12 +3034,6 @@ msgstr "Zadnji uporabnik je bil ustvarjen danes" msgid "The last user was created over a day ago" msgstr "Zadnji uporabnik je bil ustvarjen pred več kot enim dnevom" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "Najstarejše opravilo indeksa Xapian je neaktivno že več kot 1 uro" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "Najstarejše opravilo indeksa Xapian ni bilo neaktivno več kot 1 uro" - msgid "The page doesn't exist. Things you can try now:" msgstr "Stran ne obstaja. Kaj lahko storite:" @@ -3169,8 +3211,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Ni ničesar za prikazati." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Prišlo je do napake pri pošiljanju ali druge napake, ki zahteva posredovanje s strani ekipe {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Prišlo je do napake pri reCAPTCHA. Prosim poskusite ponovno." @@ -3557,12 +3599,6 @@ msgstr "Poskušajte odpreti vpise v novem oknu." msgid "Turn off email alerts" msgstr "Izklopi obveščanje po e-pošti" -msgid "Tweet it" -msgstr "Tvitni" - -msgid "Tweet this request" -msgstr "Tvitni to zahtevo" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Dvostopenjsko preverjanje pristnosti povečuje varnost vašega uporabniškega računa, saj za ponastavitev gesla zahteva več informacij." @@ -3629,8 +3665,8 @@ msgstr "Ne spremljaj več" msgid "Unusual response" msgstr "Neobičajen odziv" -msgid "Unusual response." -msgstr "Neobičajen odgovor." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Posodobi e-poštni naslov - {{public_body_name}}" @@ -3668,23 +3704,14 @@ msgstr "Nadležen" msgid "Vexatious annotation" msgstr "Težaven zaznamek" -msgid "View FOI email address" -msgstr "Preglejte e-poštni naslov za zahtevke za IJZ" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Poglejte e-poštni naslov za zahtevke za IJZ za '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Poglejte e-poštni naslov za zahtevke za IJZ za {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Poglejte zahteve za informacije javnega značaja, ki jih je naredil {{user_name}}:" msgid "View authorities" msgstr "Poglejte organe" -msgid "View email" -msgstr "Poglejte e-poštni naslov" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Poglejte podrobnosti zgodovine dogodka" @@ -3692,11 +3719,17 @@ msgstr "Poglejte podrobnosti zgodovine dogodka" msgid "View other requests to {{public_body}}" msgstr "Oglejte si druge zahteve za {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Oglejte si enkratno geslo za dvostopenjsko preverjanje pristnosti" -msgid "Waiting clarification." -msgstr "Čaka pojasnilo." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Čaka na interno revizijo s strani {{public_body_link}}." @@ -3728,9 +3761,6 @@ msgstr "Zabeležk poštnega strežnika za to sporočilo ni mogoče naložiti." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Po {{site_name}} ne dovoljujemo zahtev za informacije o vaših osebnih okoliščinah. Zato smo vašo zahtevo skrili pred drugimi uporabniki." -msgid "We do not have a working request email address for this authority." -msgstr "Nimamo delujočega e-poštnega naslova za ta javni organ." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nimamo delujočega e-poštnega naslova za {{law_used_full}} zahtevke za {{public_body_name}}. " @@ -3840,6 +3870,9 @@ msgstr "Kaj želite storiti?" msgid "What's happened:" msgstr "Kaj se je zgodilo:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Ko pridete do tega, prosimo posodobite status, da bo odražal, če odgovor vsebuje zahtevane informacije." @@ -3864,8 +3897,8 @@ msgstr "Zakaj se vam zdi ta zahteva neprimerna?" msgid "Withdrawn" msgstr "Umaknjeno" -msgid "Withdrawn by the requester." -msgstr "Prosilec je umaknil zahtevo." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Teden" @@ -3891,6 +3924,9 @@ msgstr "Pisanje vaše zahteve" msgid "Yes" msgstr "Da" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" "Dne {{date}} ste že ustvarili isto skupino zahtev. Lahko si ogledate obstoječi paket, ali uredite spodnje podrobnosti, da naredite nov, vendar podoben paket zahtev.\n" @@ -4536,9 +4572,6 @@ msgstr "vpišite iskalne besede" msgid "unknown" msgstr "Neznano" -msgid "unknown reason" -msgstr "neznan razlog" - msgid "unknown reason " msgstr "neznan razlog" @@ -4575,9 +4608,6 @@ msgstr "{{authority_name}} ni imel zahtevanih informacij" msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} čaka na vaša pojasnila." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} sodelavci" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} priloga" @@ -4592,6 +4622,11 @@ msgstr[1] "{{count}} zaznamka vnesena." msgstr[2] "{{count}} zaznamki vneseni." msgstr[3] "{{count}} zaznamki vneseni." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} sledilec" @@ -4764,8 +4799,8 @@ msgstr "{{reason}}. Žal ne poznamo e-poštnega naslova od tega organa, zato teg msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}}, ki ustrezajo '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog in tviti" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4780,9 +4815,6 @@ msgstr "{{site_name}} zaznava, da bi lahko {{authority_name}} z{{refusal msgid "{{site_name}} login link" msgstr "{{site_name}} povezava za vpis" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} pošilja nove zahteve za ta organ na {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} uporabnik je usvaril {{number_of_requests}} zahtevek, vključno:" diff --git a/locale/sq/app.po b/locale/sq/app.po index 584dc2de5a..6fe75f8f08 100644 --- a/locale/sq/app.po +++ b/locale/sq/app.po @@ -51,7 +51,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Valon , 2011\n" "Language-Team: Albanian (http://app.transifex.com/mysociety/alaveteli/language" @@ -193,11 +193,11 @@ msgstr "60 minuta+" msgid "Browse all or ask us to add one." msgstr "Shfletoni të gjitha ose kërkoni nga ne që të shtojmë një." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Bëj një kërkesë të re te {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Bëj një kërkesë të re për qasje te {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Regjistrohu për të marrë lajme për gjërat që i ndjek ose riaktivizo njoftimet me email." @@ -281,8 +281,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: për të zgjedhur tipin e asaj që do të kërkosh, shih tabelën e varianteve më poshtë." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Këshillo se si të merrni një përgjigje që do të kënaqte kërkuesin. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Të gjitha informatat janë dërguar" @@ -322,6 +322,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Gazetar, Akademik ose Përdorues i Fuqishëm? {{pro_site_link}} është një veglari e qasjes që përfshinë krejt çfarë ju duhet për hulumtime të fuqizuara nga qasja në dokumente publike." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Asnjë përgjigje nuk është marrë (ndoshta ke marrë konfirmim të pranimit)" @@ -374,8 +377,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Nje mesazh vijues per {{request_title}} eshte derguar tek {{public_body_name}} nga {{info_request_user}} me {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Nje response per {{request_title}} u dergua nga {{public_body_name}} tek {{info_request_user}} me {{date}}. Statusi i kerkeses eshte: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "Një përmbledhje të përgjigjes nëse e keni pranuar me postë. " @@ -421,9 +424,6 @@ msgstr "Rreth jush:" msgid "About {{count}} FOI requests found" msgstr "Rreth {{count}} kërkesa për qasje u gjetën" -msgid "Academic paper" -msgstr "Punim akademik" - msgid "Account closed at user request" msgstr "Llogari e mbyllur me kërkesë të përdoruesit" @@ -456,6 +456,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "Shto institucionin" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Shto nje institucion" @@ -628,24 +634,18 @@ msgstr "Ne pritje te qartesimeve" msgid "Awaiting classification" msgstr "Ne pritje te klasifikimit" -msgid "Awaiting classification." -msgstr "Në pritje të klasifikimit." - msgid "Awaiting internal review" msgstr "Në pritje të shqyrtimit nga AIP" -msgid "Awaiting internal review." -msgstr "Në pritje për rishqyrtim te brendshem." - msgid "Awaiting response" msgstr "Ne pritje te pergjigjes" -msgid "Awaiting response." -msgstr "Në pritje të përgjigjes" - msgid "Back to content" msgstr "Kthehu te përmbajtja" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "Bllokuar për anashkalimin e një bllokimi tjetër" @@ -682,11 +682,8 @@ msgstr "Shfleto të gjitha institucionet →" msgid "Browse all requests →" msgstr "Shfleto të gjitha kërkesat →" -msgid "Browse and search requests" -msgstr "Shiko dhe kërko kërkesat" - -msgid "Browse and search requests (page {{count}})" -msgstr "Shiko dhe kërko kërkesat (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "Shfleto kërkesat më të fundit" @@ -694,8 +691,8 @@ msgstr "Shfleto kërkesat më të fundit" msgid "Browse latest responses" msgstr "Shfleto përgjigjet më të fundit" -msgid "Browse requests" -msgstr "Shiko kërkesat" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Sipas ligjit, ata janë të detyruar të përgjigjen" @@ -715,6 +712,12 @@ msgstr "Sipas ligjit, {{public_body_link}} do të duhej të ishte përgjigjur duke pritur përgjigje nga {{public_body_l msgid "Data interpretation" msgstr "Interpretimi i të dhënave" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Data:" @@ -952,15 +961,15 @@ msgstr "Vonuar" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Përgjigje e vonuar në kërkesën tënde - {{request_title}}" -msgid "Delayed." -msgstr "Vonuar." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Statusi i dorëzimit i mesazhit dalës #{{id}}" msgid "Delivery error" msgstr "Gabim gjatë dorëzimit" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detajet e kerkeses “{{request_title}}”" @@ -997,10 +1006,7 @@ msgstr "Mbaroi" msgid "Done >>" msgstr "Bëj >>" -msgid "Download Data" -msgstr "Shkarko të dhënat" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1009,6 +1015,9 @@ msgstr "Shkarko zip fajllin me korrespondencën e plotë" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Shkarko shtojcën (attachment) origjinale" @@ -1023,9 +1032,27 @@ msgstr "" "Redakto dhe shto më shumë detaje në mesazhin e mësipërm,\n" " duke shpjeguar se pse nuk je i kënaqur me përgjigjen e tyre." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Redakto tekstin për vetën tënde" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Redakto këtë kërkesë" @@ -1089,6 +1116,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "Zgjero të gjithë korrespondencën" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "Nxjerr të dhënat" @@ -1101,8 +1131,8 @@ msgstr "Ekstrakti nuk mund të ruhej." msgid "FOI" msgstr "DI" -msgid "FOI email address for {{public_body}}" -msgstr " Adresa e postes elektronike te DI per {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Ligji per DI nuk aplikohet per kete institucioin " @@ -1143,6 +1173,9 @@ msgstr "Gjej institucionin" msgid "Find the authorities to write to" msgstr "Gjej institucionin qe kerkon t'i shkruash" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Se pari, a kane qene te suksesshme kerkesa tuaja te mepareshme" @@ -1191,9 +1224,6 @@ msgstr "Vijues" msgid "Follow up message sent by requester" msgstr "Mesazhi vijues është dërguar nga kërkuesi" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Mesazhet pasuese për kërkesat ekzistuese dërgohen tek {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Mesazhi vijues derguar {{public_body_name}} nga {{info_request_user}} me {{date}}." @@ -1206,8 +1236,8 @@ msgstr "Mesazhet vijues dhe përgjigjet e reja në këtë kërkesë janë stopua msgid "Follow us on Facebook" msgstr "Ndiqna në Facebook" -msgid "Follow us on twitter" -msgstr "Na ndiqni në twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Ndjek" @@ -1228,16 +1258,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "U gjetën {{count}} autoritete publike duke filluar me ‘{{first_letter}}’" msgstr[1] "U gjetën {{count}} institucione publike duke filluar me ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "U gjetë {{count}} institucion publik në kategorinë ‘{{category_name}}’" -msgstr[1] "U gjetën {{count}} institucione publike në kategorinë ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "U gjetë {{count}} institucion publik me etiketën ‘{{tag_name}}’" msgstr[1] "U gjetën {{count}} institucione publike me etiketën ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Para 4 jave bëtë kërkesë për qasje në dokumente publike {{public_body_name}} duke përdorur {{site_name}}." @@ -1250,9 +1285,6 @@ msgstr "Ligji per te Drejten e Informimit " msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Ligji per te Drejten e Informimit nuk aplikohet per kete institucion, keshtu qe nuk mund te dergoni nje kerkese per te" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Ligjet mbi Lirinë e Informacionit nuk janë të aplikueshme për këtë autoritet. Follow up messages to existing requests are sent to {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Ligji per te Drejten e Informimit nuk aplikohet me per {{public_body_name}}." @@ -1304,14 +1336,11 @@ msgstr "Keni llogari" msgid "Handled by postal mail" msgstr "Trajtuar me postë" -msgid "Handled by postal mail." -msgstr "Trajtuar me postë" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "A është referuar kjo kërkesë në artikull lajmesh ose në punim shkencor?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "A është referuar kjo kërkesë në artikull lajmesh ose në punim shkencor? Na tregoni:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Pershendetje! Kemi nje mesazh te rendesishem per vizitoret jashte{{country_name}}" @@ -1334,6 +1363,9 @@ msgstr "Përshëndetje! Ti mund të bësh kërkesa për informata zyrtare për a msgid "Help" msgstr "Si funksionon" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Na ndihmoni te klasifikojme kerkesat qe nuk jane perditesuar" @@ -1424,9 +1456,6 @@ msgstr "Kam marrë një mesazh gabimi" msgid "I've received an error message" msgstr "Kam marre nje mesazh gabimi" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Nëse adresa është e gabuar, ose ju dini një adresë më të mirë, të lutem na kontakto ." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Nese gabimi ishte nje deshtim ne dergim dhe ju mund te gjeni nje adrese elektonike te perditesuar te institucionit per te DI, ju lutem na thoni duke perdorur formularin si me poshte" @@ -1489,9 +1518,6 @@ msgstr "Nëse e keni marrë emailin më shumë se dy muaj më parësend it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Nese e dini adresen qe duhet te perdorni, atehere ju lutemi ta dergoni ate dhe tek ne. Ju mund te jeni ne gjendje te gjeni adresen ne faqen e tyre elektronike, apo dke i marre ne telefon." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Nese i pergjigjeni ketij mesazhi, atehere pergjigja do te shkoj direkt tek {{user_name}}, te cilet do te njihen me adresen tuaj te emailit. Pergjigjuni vetem nese jeni dakort per kete." @@ -1525,9 +1551,6 @@ msgstr "Permiresoni sigurine e llogarise suaj" msgid "In progress" msgstr "Në proces" -msgid "In the News" -msgstr "Në lajme" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Perfshini lidhje te rendesishme, te tilla si faqe fushatash, blogun apo llogarine tuaj te twitter-it. Keto lidhje do te jene te klikueshme p.sh." @@ -1540,9 +1563,6 @@ msgstr "Kërkesa individuale" msgid "Information not held" msgstr "Informacioni nuk mbahet" -msgid "Information not held." -msgstr "Informacioni nuk u mbajt." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Informacion lidhur me emetimet dhe shkarkimet (p.sh. zhurma, enerjgi, rrezatim, mbetje " @@ -1567,6 +1587,9 @@ msgstr "Fjalekalim njeperdorimsh i pasakte" msgid "Invalid token" msgstr "Token i pavlefshëm" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "A është {{email_address}} adresë e gabuar për {{public_body_name}}? Nëse po, të lutem na kontakto nëpermjet ketij formulari:" @@ -1588,12 +1611,12 @@ msgstr "Regjistruar në {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Regjistruar tek {{site_name}} në {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Dhe dicka tjeter" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Ruaje kete kodkalim. Do ju duhet per te konfirmuar llogarine tuaj kur te ndryshoni fjalekalimin. Ju mund ta shtoni ate tek nje manaxher fjalekalimesh ose ta shtypni dhe ta ruani ne nje vend te sigurte" - msgid "Keep your request up to date" msgstr "Mbani kerkesen tuaj te perditesuar" @@ -1636,6 +1659,9 @@ msgstr "Largohu nga projekti" msgid "Let us know" msgstr "Na trego" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Na trego dhe ne ju ndihmojmë ta sfidoni atë" @@ -1657,9 +1683,6 @@ msgstr "Kyçu në ndërfaqen administrative" msgid "Long overdue" msgstr "Teper i vonuar" -msgid "Long overdue." -msgstr "Tepër e vonuar." - msgid "Made between" msgstr "Bërë ndërmjet" @@ -1756,9 +1779,6 @@ msgstr "Kerkon vemendjen e administratorit" msgid "Needs status update" msgstr "Duhet freskim i statusit" -msgid "New Citation" -msgstr "Citim i ri" - msgid "New Freedom of Information requests" msgstr "Kërkesat e reja për te Drejten e Informimit" @@ -1792,9 +1812,6 @@ msgstr "Aktualizime të reja për kërkesën '{{request_title}}'" msgid "Newest results first" msgstr "Rezultatet më të reja të parat" -msgid "News story" -msgstr "Lajm" - msgid "Next" msgstr "Me pas" @@ -1876,6 +1893,9 @@ msgstr "Numri i kërkesave fsheh ngjarjet përgjatë kohës" msgid "Number of requests" msgstr "Numri i kerkesave" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "Ose hiqni fotografinë ekzistuese" @@ -1939,9 +1959,6 @@ msgstr "Sukses i pjesshem" msgid "Partially successful" msgstr "Pjesërisht e sukseshme" -msgid "Partially successful." -msgstr "Pjesërisht e suksesshme." - msgid "Password is not correct" msgstr "Fjalëkalimi nuk është i saktë" @@ -2218,6 +2235,9 @@ msgstr "Shtyp fjalekodin e vetem nje here" msgid "Privacy and cookies" msgstr "Privatësia dhe Cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Imazhi i profilit {{user_name}}" @@ -2227,6 +2247,9 @@ msgstr "Pronari i projektit" msgid "Proposed Email:" msgstr "Emaili i propozuar:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Organet Publike" @@ -2308,9 +2331,6 @@ msgstr "Rezultatet e përshkruara së fundi radhiti të parat" msgid "Refused" msgstr "Refuzuar" -msgid "Refused." -msgstr "Refuzuar." - msgid "Regenerate one time passcode" msgstr "Rigjenero kodkalimin e vetem nje here" @@ -2350,8 +2370,8 @@ msgstr "Raporto këtë kërkesë" msgid "Reported" msgstr "Raportuar" -msgid "Reported for administrator attention." -msgstr "Raportuar për vëmendjen e administratorit." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Raportimi i nje kerkese njofton administratorin e faqes. Ata do te pergjigjen sa me shpejt te jete e mundur.." @@ -2365,6 +2385,9 @@ msgstr "Kërko një rishqyrtim te brendshem" msgid "Request an internal review from {{person_or_body}}" msgstr "Kërko një rishikim te brendshem nga {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "Emaili i kërkesës nuk mund të jetë zbrazët" @@ -2422,6 +2445,9 @@ msgstr "Kerkesat do te dergohen tek institucionet ne vijim" msgid "Requires admin attention" msgstr "Kërkon vëmendjen e administratorit" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Përgjigju me poste elektronike" @@ -2500,6 +2526,12 @@ msgstr "" msgid "Search queries" msgstr "Pyetje per kerkimin" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultatet e kërkimit" @@ -2515,6 +2547,12 @@ msgstr "Seksioni" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Dërgo mesazh vijues" @@ -2563,6 +2601,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2586,6 +2629,9 @@ msgstr "Vendosni fotografinë tuaj te profilit" msgid "Share on Facebook" msgstr "Ndaje me Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2801,9 +2847,6 @@ msgstr "Kërkesat e suksesshme për te Drejten e Informimit" msgid "Successful requests" msgstr "Kerkesa te suksesshme" -msgid "Successful." -msgstr "Suksesshme." - msgid "Suggest how the requester can find the rest of the information." msgstr "Sugjero si kërkuesi mund të gjen pjesën tjetër të informacionit." @@ -2831,6 +2874,9 @@ msgstr "Etiketat:" msgid "Tasks" msgstr "Detyrat" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Faleminderit për ndihmën tënde për mbajtjen e rregullt dhe të organizuar të faqes!" @@ -2898,6 +2944,12 @@ msgstr "URL ku e keni gjetur artikullin." 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 ku gjetet adresen e postes elektronike. Kjo fushe eshte opsionale, por do na ndihmonte shume nese mund te na dergoni lidhjen te nje faqe specifike qe jep kete adrese, tek faqa elektronike e institucionit, sepse keshtu do e kemi me te lehte per ta kontrolluar." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Llogaritë janë lënë siq kanë qenë më përpara." @@ -2958,12 +3010,6 @@ msgstr "Perdoruesi i fundit eshte krijuar diten e fundit " msgid "The last user was created over a day ago" msgstr "Perdoruesi i fundit eshte krijuar me shume se nje dite me pare" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Faqja nuk ekziston. Gjërat që ti mund ti provosh:" @@ -3145,8 +3191,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Nuk ka ende asgje per t'u shfaqur" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Kishte një dështim gjatë dorëzimit. apo diç e ngjajshme, e cila ka nevojë për t'u rregulluar nga ekipi i {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Kishte nje gabim me reCAPTCHA. Ju lutem provoni perseri. " @@ -3534,12 +3580,6 @@ msgstr "Provo të hapësh logun në dritare të re." msgid "Turn off email alerts" msgstr "Ndali lajmrimet me poste elektronike" -msgid "Tweet it" -msgstr "Dergoj me tweet-er" - -msgid "Tweet this request" -msgstr "Tweet-e këtë kërkesë" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Verifikimi me dy faktor shton me shume siguri tek llogaria juaj duke kerkuar me shume informacion per te ndryshuar fjalekalimin." @@ -3606,8 +3646,8 @@ msgstr "Çregjistrohu" msgid "Unusual response" msgstr "Pergjigje e pazakonshme" -msgid "Unusual response." -msgstr "përgjigje e pazakonshme." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Perditesor adresen elektronike te - {{public_body_name}}" @@ -3645,23 +3685,14 @@ msgstr "Shqetesuese" msgid "Vexatious annotation" msgstr "Shënim i bezdisshëm" -msgid "View FOI email address" -msgstr "Shih adresën e postes elektronike për per te Drejten per Informim" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Shih adresën elektronike për te Drejten per Informim nga'{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Shih adresat elektronike për te Drejten per Informim nga{{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Shih kërkesat për te Drejten e Informimit të bëra nga {{user_name}}: " msgid "View authorities" msgstr "Shih institucionin" -msgid "View email" -msgstr "Shih mesazhin" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Shiqo detajet e historikut të ngjarjes" @@ -3669,11 +3700,17 @@ msgstr "Shiqo detajet e historikut të ngjarjes" msgid "View other requests to {{public_body}}" msgstr "Shih kerkesa te tjera {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Shih kodkalimin tuaj te vetem nje here me verifikimin dy faktorial " -msgid "Waiting clarification." -msgstr "Duke pritur sqarim." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Duke pritur për rishqyrtim te brendshem nga {{public_body_link}} për trajtimin e kësaj kërkese." @@ -3705,9 +3742,6 @@ msgstr "Nuk mund të shfaqnim logun e serverit të emailit për këtë mesazh." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Nuk lejojmë kërkesa për informacion përmes {{site_name}} për rrethanat tuaja personale. Për këtë arsye e kemi fshehur kërkesën nga përdoruesit tjerë." -msgid "We do not have a working request email address for this authority." -msgstr "Për fat të keq, ne nuk kemi një adrese elektronike funksionale për këtë autoritet" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Ne nuk kemi adresë te funksionueshme për {public_body_name}}." @@ -3815,6 +3849,9 @@ msgstr "Çka dëshiron të bësh?" msgid "What's happened:" msgstr "Çfarë ka ndodhë:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Kur të gjendesh atje, të lutem perditesoni statusin e kërkesës që të tregosh nëse pergjigja ka \n" @@ -3841,8 +3878,8 @@ msgstr "Pse konsideroni pikerisht kete kerkese te papershtatshme?" msgid "Withdrawn" msgstr "Terhequr" -msgid "Withdrawn by the requester." -msgstr "E tërhequr nga kërkuesi." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Java" @@ -3868,6 +3905,9 @@ msgstr "" msgid "Yes" msgstr "Po" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" "{{existing_request_user}} tashmë\n" @@ -4511,9 +4551,6 @@ msgstr "shtypni frazat e kerkimit tuaj ketu" msgid "unknown" msgstr "panjohur" -msgid "unknown reason" -msgstr "arsye e panjohur" - msgid "unknown reason " msgstr "arsye e panjohur " @@ -4550,9 +4587,6 @@ msgstr "{{authority_name}} nuk e kanë informacionin e kërkuar msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} është duke pritur për sqarimin tuaj." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} kontribues" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Shtojcë" @@ -4563,6 +4597,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} shënime të bëra." msgstr[1] "{{count}} shënime të bëra." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "Ndjekes" @@ -4710,8 +4749,8 @@ msgstr "{{reason}}. Për fat të keq nuk e dimë adresën elektronike për dergi msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} që përputhen me '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "Lajmet e {{site_name}}" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4724,9 +4763,6 @@ msgstr "{{site_name}} ka identifikuar që {{authority_name}} mund të ketë refu msgid "{{site_name}} login link" msgstr "lidhja për kyçje në {{site_name}} " -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} dërgon kërkesa të reja për {{request_email}} për këtë autoritet." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "Përdoruesit e {{site_name}} kanë bërë {{number_of_requests}} kërkesë, duke përfshirë:" diff --git a/locale/sr/app.po b/locale/sr/app.po index b8c6376d12..61900dfe5e 100644 --- a/locale/sr/app.po +++ b/locale/sr/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Serbian (http://app.transifex.com/mysociety/alaveteli/language/" @@ -169,10 +169,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -252,7 +252,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -288,6 +288,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -333,7 +336,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -378,9 +381,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -411,6 +411,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -579,22 +585,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -633,10 +633,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -645,7 +642,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -666,6 +663,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -738,6 +741,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -804,10 +810,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -876,6 +882,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -903,15 +912,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -948,10 +957,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -960,6 +966,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -972,9 +981,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1035,6 +1062,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1047,7 +1077,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1089,6 +1119,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1137,9 +1170,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1152,7 +1182,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1174,8 +1204,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1184,6 +1214,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1196,9 +1231,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1247,13 +1279,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1277,6 +1306,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1367,9 +1399,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1427,9 +1456,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1463,9 +1489,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1478,9 +1501,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1505,6 +1525,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1526,10 +1549,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1574,6 +1597,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1595,9 +1621,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1694,9 +1717,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1730,9 +1750,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1814,6 +1831,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1877,9 +1897,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2149,6 +2166,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2158,6 +2178,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2239,9 +2262,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2281,7 +2301,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2296,6 +2316,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2353,6 +2376,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2428,6 +2454,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2443,6 +2475,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2491,6 +2529,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2514,6 +2557,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2727,9 +2773,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2757,6 +2800,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2820,6 +2866,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2880,12 +2932,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3063,7 +3109,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3445,12 +3491,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3517,7 +3557,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3556,22 +3596,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3580,10 +3611,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3616,9 +3653,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3722,6 +3756,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3746,7 +3783,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3773,6 +3810,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4401,9 +4441,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4440,9 +4477,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4453,6 +4487,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4597,7 +4636,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4611,9 +4650,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/sr@latin/app.po b/locale/sr@latin/app.po index 1b88c812fb..b53e5e4ac1 100644 --- a/locale/sr@latin/app.po +++ b/locale/sr@latin/app.po @@ -48,7 +48,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Goran Vučković , 2013\n" "Language-Team: Serbian (Latin) (http://app.transifex.com/mysociety/alaveteli/l" @@ -191,10 +191,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Listajte sve ili nas zamolite da dodamo jedan." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -285,8 +285,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: da odaberete vrstu stvari koja se traži, pogledajte tabelu vrsta below." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Savet o tome kako dobiti odgovor koji će zadovoljiti podnosioca zahteva. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Sve informacije su poslate" @@ -329,6 +329,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Odgovor još nije primljen\n" @@ -385,8 +388,8 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Reakcija na {{request_title}} je poslata za {{public_body_name}} od strane korisnika {{info_request_user}} na dan {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Odgovor u vezi zahteva {{request_title}} je poslat od strane ustanove {{public_body_name}} za korisnika {{info_request_user}} na dan {{date}}. Status ovog zahteva je: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -432,9 +435,6 @@ msgstr "O Vama:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -467,6 +467,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -643,24 +649,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Čeka na klasifikaciju." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Čeka urgenciju." - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." -msgstr "Čeka odgovor." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -697,11 +697,8 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "Pregledaj i pretraži zahteve" - -msgid "Browse and search requests (page {{count}})" -msgstr "Pregledaj i pretraži zahteve (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -709,8 +706,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Pregled zahteva" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "" @@ -730,6 +727,12 @@ msgstr "Po zakonu je {{public_body_link}} trebalo da bez odlaganjajoš detalja u poruku ispod,\n" " da objasnite zašto niste zadovoljni sa njihovim odgovorom." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Uredite tekst o Vama" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Uredi ovaj zahtev" @@ -1110,6 +1137,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1122,8 +1152,8 @@ msgstr "" msgid "FOI" msgstr "ZOSPIOJ" -msgid "FOI email address for {{public_body}}" -msgstr "ZOSPIOJ kontakt e-mail adresa kod {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1164,6 +1194,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Prvo: da li su Vaši ostali zahtevi uspeli?" @@ -1212,9 +1245,6 @@ msgstr "Reakcija" msgid "Follow up message sent by requester" msgstr "Poruka reakcije poslata od strane podnosioca zahteva" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1227,8 +1257,8 @@ msgstr "Reakcije i novi odgovori na ovaj zahtev su blokirani da se spreči spamo msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Pratite nas na twitter-u" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1249,8 +1279,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1259,6 +1289,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1273,9 +1308,6 @@ msgstr "" "Zakon o slobodnom pristupu informacijama od javnog značaja ne važi za ovu ustanovu,\n" " pa im zato ne možete podnositi zahteve." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1327,13 +1359,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1357,6 +1386,9 @@ msgstr "" msgid "Help" msgstr "Pomoć" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1459,9 +1491,6 @@ msgstr "Dobio/la sam poruku o greški" msgid "I've received an error message" msgstr "Dobio sam poruku o grešci" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Ako je adresa pogrešna, ili znate bolju adresu, molimo Vas da nas kontaktirate." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Ako je greška bila u isporuci, a poznata vam je ažurna email adresa ustanove za potrebe Zahteva za slobodan pristup informacijama od javnog značaja, molimo Vas da nam dostavite tu email adresu koristeći formular ispod." @@ -1527,11 +1556,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Ako već niste, molimo napišite ispod poruku kojom informišete ustanovu da ste povukli Vaš zahtev. U protivnom oni neće znati da je zahtev povučen." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -" Ako znate koju adresu treba koristiti, molimo Vas pošaljite je nama.\n" -" Možda možete naći adresu na njihovoj web stranici, ili putem telefona." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Ako odgovorite korisniku {{user_name}} na ovu email poruku direktno, korisnik će\n" @@ -1573,9 +1597,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" "Uključite relevantne linkove, poput linka na stranicu kampanje, Vaš blog ili\n" @@ -1591,9 +1612,6 @@ msgstr "Pojedinačni zahtevi" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Informacija nije u posedu." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Informacije o emisijama i otpadima (npr. šum\n" @@ -1620,6 +1638,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Da li je {{email_address}} pogrešna email adresa za zahteve za {{public_body_name}} tipa {{law_used_full}}? Ako jeste, molimo da nas kontaktirate koristeći ovaj formular:" @@ -1644,12 +1665,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Samo još jedna stvar" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "" - msgid "Keep your request up to date" msgstr "" @@ -1692,6 +1713,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1715,9 +1739,6 @@ msgstr "Prijavite se na administrativnu aplikaciju" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "Davno prošao rok." - msgid "Made between" msgstr "Napravljen između" @@ -1814,9 +1835,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Novi Zahtevi za slobodan pristup informacijama od javnog značaja" @@ -1850,9 +1868,6 @@ msgstr "Nove vesti za zahtev '{{request_title}}'" msgid "Newest results first" msgstr "Najnoviji rezultati na vrh" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Sledeći" @@ -1934,6 +1949,9 @@ msgstr "" msgid "Number of requests" msgstr "Broj zahteva" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ILI odstranite postojeću sliku" @@ -1997,9 +2015,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Delimično uspešno." - msgid "Password is not correct" msgstr "Neispravna lozinka" @@ -2282,6 +2297,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2291,6 +2309,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Javne ustanove" @@ -2372,9 +2393,6 @@ msgstr "Rezultati koji su skoro komentarisani na vrhu" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Odbijen." - msgid "Regenerate one time passcode" msgstr "" @@ -2414,8 +2432,8 @@ msgstr "Prijavite ova zahtev" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Prijavljeno administratorima." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "" @@ -2429,6 +2447,9 @@ msgstr "Zatražite urgenciju" msgid "Request an internal review from {{person_or_body}}" msgstr "Zatražite urgenciju od strane {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2486,6 +2507,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Odgovoriti e-mailom" @@ -2564,6 +2588,12 @@ msgstr "" msgid "Search queries" msgstr "Upiti za pretragu" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Rezultati pretrage" @@ -2579,6 +2609,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Pošaljite reakciju" @@ -2627,6 +2663,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2650,6 +2691,9 @@ msgstr "Podesite sliku na Vašem profilu" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2869,9 +2913,6 @@ msgstr "Uspešni Zahtevi za slobodan pristup informacijama od javnog značaja" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Uspešan." - msgid "Suggest how the requester can find the rest of the information." msgstr "Predložite kako ponosilac zahteva može pronaći ostatak informacije." @@ -2899,6 +2940,9 @@ msgstr "Privesci:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Hvala što nam pomažete da održavamo ovaj sistem u urednom stanju!" @@ -2970,6 +3014,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Korisnički profili nisu menjani" @@ -3033,12 +3083,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Stranica ne postoji. Stvari koje sada možete probati:" @@ -3222,8 +3266,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Došlo je do greške u isporuci ili nečega sličnog što zahteva popravku od strane tima {{site_name}}." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3619,12 +3663,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Isključi e-mail biltene" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Tvituj ovaj zahtev" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3693,8 +3731,8 @@ msgstr "Otkaži praćenje" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Neobičan odgovor." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "" @@ -3732,23 +3770,14 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Videti email adresu za Zahteve za slobodan pristup informacijama od javnog značaja." - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Videti ZOSPI e-mail za '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Pogledati ZOSPI e-mail adresu za {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Videti Zahteve za slobodan pristup informacijama od javnog značaja napravljene od strane {{user_name}}:" msgid "View authorities" msgstr "Pregledaj ustanove" -msgid "View email" -msgstr "Prikaži e-mail" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3756,11 +3785,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Čeka na razjašnjenje." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Čeka na urgenciju od strane {{public_body_link}} u vezi njihove obrade ovog zahteva." @@ -3792,9 +3827,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Ne posedujemo ispravnu e-mail adresu za zahteve za ovu ustanovu." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Nemamo ispravnu adresu za {{public_body_name}} za upite vezane za {{law_used_full}}." @@ -3913,6 +3945,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Kada dođete tamo, molimo ažurirajte status da objasnite da li odgovor\n" @@ -3941,8 +3976,8 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Povučeno od strane podnosioca zahteva." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Nd" @@ -3968,6 +4003,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4623,9 +4661,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "nepoznat razlog" - msgid "unknown reason " msgstr "nepoznat razlog " @@ -4662,9 +4697,6 @@ msgstr "{{authority_name}} nije imao traženu informaciju." msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} čeka na Vaše razjašnjenje." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4675,6 +4707,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4827,8 +4864,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} odgovaraju upitu '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "blog i tweet-ovi {{site_name}} " +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4841,9 +4878,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "Za ovu ustanovu {{site_name}} nove zahteve šalje na adresu {{request_email}}." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/sv/app.po b/locale/sv/app.po index 3475a3fb20..b42a73137b 100644 --- a/locale/sv/app.po +++ b/locale/sv/app.po @@ -52,13 +52,14 @@ # Mattias OKFSE, 2015 # Mattias Axell , 2015 # Selsabeel Al Baqir, 2023 +# Selsabeel Al Baqir, 2023 msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" -"Last-Translator: Graeme Porteous , 2021,2024\n" +"Last-Translator: Selsabeel Al Baqir, 2023\n" "Language-Team: Swedish (http://app.transifex.com/mysociety/alaveteli/language/" "sv/)\n" "MIME-Version: 1.0\n" @@ -199,11 +200,11 @@ msgstr "60 minuter+" msgid "Browse all or ask us to add one." msgstr "Bläddra bland alla eller be oss om att lägga till en." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Gör en ny begäran till {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Gör en ny begäran om allmän handling till {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "Logga in för att få uppdateringar på saker du följer eller återaktivera e-postmeddelanden." @@ -288,8 +289,8 @@ msgstr "tag:charity för att hitta alla myndighete msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: för att välja typ av sak att söka efter, se tabellen över sorter nedan." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Rådgivning om hur man ger ett bra svar." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "All information har skickats" @@ -324,6 +325,9 @@ msgstr "Om du ändrar ditt namn kommer inte namnet på dina gamla förfr msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "Journalist, Akademiker eller Superanvändare? {{pro_site_link}} är en allt-i-ett verktyg för offentlighetsprincipen inklusive allt du behöver för att hålla dig uppdaterad om komplicerade undersökningar som drivs med hjälp av offentlighetsprincipen." +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Inget svar har tagits emot\n" @@ -371,8 +375,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "En uppföljning till {{request_title}} skickades till {{public_body_name}} av {{info_request_user}} den {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Ett svar till {{request_title}} skickades av {{public_body_name}} till {{info_request_user}} den {{date}}. Status på begäran är: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "En sammanfattning av svaret om du har fått den med post." @@ -416,9 +420,6 @@ msgstr "Om dig:" msgid "About {{count}} FOI requests found" msgstr "Omkring {{count}} förfrågningar funna" -msgid "Academic paper" -msgstr "Akademisk uppsats" - msgid "Account closed at user request" msgstr "Kontot stängt på begäran av användaren" @@ -449,6 +450,12 @@ msgstr "Lägg till en anteckning till din begäran med valda citat, eller en hastig msgid "CSV" msgstr "CSV" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Kan du inte hitta den du vill ha?" @@ -776,6 +780,9 @@ msgstr "Tydliggör frågan i din begäran om allmän handling - {{request_title} msgid "Classify an FOI response from {{authority_name}}" msgstr "Klassificera ett svar på begäran om allmän handling från {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "Klassificera svar " @@ -842,11 +849,11 @@ msgstr "Bekräfta din e-postadress" msgid "Confirm your new email address on {{site_name}}" msgstr "Bekräfta din nya e-postadress på {{site_name}}" -msgid "Considered by administrators as not an FOI request." -msgstr "Bedömd av administratörer som icke giltig begäran av allmän handling." +msgid "Considered by administrators as not an FOI request" +msgstr "" -msgid "Considered by administrators as vexatious." -msgstr "Bedömd av administratörer som förarglig." +msgid "Considered by administrators as vexatious" +msgstr "" msgid "Contact us" msgstr "Kontakta oss" @@ -914,6 +921,9 @@ msgstr "För närvarande inväntande till ett svar från {{publ msgid "Data interpretation" msgstr "Datatolkning" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Datum:" @@ -941,15 +951,15 @@ msgstr "Försenad" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Försenat svar på din begäran om allmän handling - {{request_title}}" -msgid "Delayed." -msgstr "Försenad." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "Leveransstatus för Utgående Meddelande #{{id}}" msgid "Delivery error" msgstr "Leveransfel" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Detaljer om begäran “{{request_title}}”" @@ -986,11 +996,8 @@ msgstr "Färdigt" msgid "Done >>" msgstr "Färdigt >>" -msgid "Download Data" -msgstr "Ladda ner data" - -msgid "Download Leaderboard Data" -msgstr "Ladda ned Resultattavlans Data" +msgid "Download" +msgstr "" msgid "Download a zip file of all correspondence" msgstr "Ladda ned en zip-fil för all korrespondens" @@ -998,6 +1005,9 @@ msgstr "Ladda ned en zip-fil för all korrespondens" msgid "Download attachment" msgstr "Ladda ner bilaga " +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Ladda ned bifogat original" @@ -1010,9 +1020,27 @@ msgstr "EIR" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "Redigera och lägg till fler detaljer till meddelandet ovanför som förklarar varför du är missnöjd med deras svar." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Redigera texten om dig" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Redigera din begäran" @@ -1073,6 +1101,9 @@ msgstr "Allt som du anger på denna sida, inklusive ditt namn, msgid "Expand all correspondence" msgstr "All korrespondens" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "Extrahera data" @@ -1085,8 +1116,8 @@ msgstr "Extraktion kunde inte sparas." msgid "FOI" msgstr "Offentlighetsprincipen" -msgid "FOI email address for {{public_body}}" -msgstr "Registrators e-postadress vid {{public_body}}" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Offentlighetsprincipen gäller inte för den här myndigheten." @@ -1127,6 +1158,9 @@ msgstr "Hitta myndigheterna" msgid "Find the authorities to write to" msgstr "Hitta myndigheterna att skriva till" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Först och främst, lyckades dina andra förfrågningar?" @@ -1175,9 +1209,6 @@ msgstr "Följ upp" msgid "Follow up message sent by requester" msgstr "Uppföljningsmeddelande skickat av användare" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Uppföljningsmeddelanden för existerande förfrågningar skickas till {{authority_email}}." - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Uppföljning skickades till {{public_body_name}} av {{info_request_user}} den {{date}}." @@ -1190,8 +1221,8 @@ msgstr "Uppföljningar och nya svar på denna begäran har stoppats för att fö msgid "Follow us on Facebook" msgstr "Följ oss på Facebook" -msgid "Follow us on twitter" -msgstr "Följ oss på twitter" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Följer" @@ -1212,16 +1243,21 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "Hittade {{count}} myndighet som börjar med ‘{{first_letter}}’" msgstr[1] "Hittade {{count}} myndigheter som börjar med ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Hittade {{count}} myndighet i kategorin ‘{{category_name}}’" -msgstr[1] "Hittade {{count}} myndigheter i kategorin ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "Hittade {{count}} myndighet som matchade ‘{{tag_name}}’" msgstr[1] "Hittade {{count}} myndigheter som matchade ‘{{tag_name}}’" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "Fyra veckor sedan gjorde du en begäran enligt offentlighetsprincipen till {{public_body_name}} genom {{site_name}}." @@ -1234,9 +1270,6 @@ msgstr "Offentlighetsprincipen" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Offentlighetsprincipen gäller inte för denna myndighet, så du kan inte göra en begäran till den." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Offentlighetsprincipen gäller inte längre för denna myndighet. Uppföljningsmeddelanden till existerande förfrågningar skickas till {{authority_email}}." - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "Offentlighetsprincipen gäller inte längre för {{public_body_name}}." @@ -1285,14 +1318,11 @@ msgstr "Har du ett konto?" msgid "Handled by postal mail" msgstr "Hanterat genom post" -msgid "Handled by postal mail." -msgstr "Hanterat genom post." - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "Har denna begäran refererats till i nyhetsartikel eller akademisk uppsats?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "Har denna begäran refererats till i nyhetsartikel eller akademisk uppsats? Låt oss veta:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "Hej! Vi har ett viktigt meddelande för besökare utanför {{country_name}}" @@ -1315,6 +1345,9 @@ msgstr "Hej! Du kan också göra begäran om allmän handling inom {{country_nam msgid "Help" msgstr "Hjälp" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Hjälp oss att klassificera förfrågningar som inte har blivit uppdaterade" @@ -1405,9 +1438,6 @@ msgstr "Jag har fått ett felmeddelande" msgid "I've received an error message" msgstr "Jag har fått ett felmeddelande" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Om adressen är fel, eller om du vet en bättre adress, kontakta oss." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Om felmeddelandet var ett leveransfel går det att hitta en uppdaterad e-postadress för registraturen hos myndigheten. Berätta för oss genom att använda formuläret nedanför." @@ -1465,9 +1495,6 @@ msgstr "Om du fick e-postmeddelandet för mer än två månader sedansend it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "Om du känner till adressen för användning, skicka den till oss. Du kan möjligtvis hitta adressen på deras hemsida, eller genom att ringa upp dem och fråga." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Om du svarar på det här meddelandet kommer det att gå direkt till {{user_name}}, som kommer att lära sig din e-postadress. Svara bara om det är okej." @@ -1505,9 +1532,6 @@ msgstr "Förbättra säkerheten för ditt konto" msgid "In progress" msgstr "Pågående" -msgid "In the News" -msgstr "I medier" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Inkludera relevanta länkar, så som till en kampanjsida, din blogg eller ett Twitter-konto. De kommer att bli klickbara. T.ex." @@ -1520,9 +1544,6 @@ msgstr "Individuella förfrågningar" msgid "Information not held" msgstr "Informationen fanns ej" -msgid "Information not held." -msgstr "Informationen fanns ej." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Information om utsläpp och avfall (t.ex. oljud, energi, strålning, avfallsmaterial)" @@ -1547,6 +1568,9 @@ msgstr "Ogiltigt engångslösenord" msgid "Invalid token" msgstr "Ogiltigt token" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Är {{email_address}} fel för förfrågningar enligt {{law_used_full}} till {{public_body_name}}? Om så är fallet, kontakta oss genom detta formulär eller uppmärksamma det till team@handlingar.se:" @@ -1568,12 +1592,12 @@ msgstr "Gick med under {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Gick med i {{site_name}} under {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Bara en sak till" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Fortsätt håll denna lösenkod säker. Du kommer att behöva den för att bekräfta ditt konto när du byter ditt lösenord. Du kan lägga till den till en lösenordshanterare eller skriv ut den och lagra den på ett säkert ställe." - msgid "Keep your request up to date" msgstr "Håll din begäran uppdaterad" @@ -1616,6 +1640,9 @@ msgstr "Lämna projekt" msgid "Let us know" msgstr "Berätta för oss" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "Kontakta oss så hjälper vi dig att överklaga det." @@ -1637,9 +1664,6 @@ msgstr "Logga in till det administrativa gränssnittet" msgid "Long overdue" msgstr "Mycket sena" -msgid "Long overdue." -msgstr "Mycket sena." - msgid "Made between" msgstr "Gjord mellan" @@ -1736,9 +1760,6 @@ msgstr "Behöver moderatorers uppmärksamhet" msgid "Needs status update" msgstr "Behöver statusuppdatering" -msgid "New Citation" -msgstr "Ny citering" - msgid "New Freedom of Information requests" msgstr "Nya förfrågningar om allmänna handlingar" @@ -1772,9 +1793,6 @@ msgstr "Nya uppdateringar för förfrågan '{{request_title}}'" msgid "Newest results first" msgstr "De nyaste resultaten först" -msgid "News story" -msgstr "Nyheter" - msgid "Next" msgstr "Nästa" @@ -1856,6 +1874,9 @@ msgstr "Antal dolda förfrågningar över tid" msgid "Number of requests" msgstr "Antalet förfrågningar" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "ELLER ta bort det befintliga fotot" @@ -1919,9 +1940,6 @@ msgstr "Delvis framgångsrik" msgid "Partially successful" msgstr "Lyckades delvis" -msgid "Partially successful." -msgstr "Lyckades delvis." - msgid "Password is not correct" msgstr "Lösenordet är inte korrekt" @@ -2194,6 +2212,9 @@ msgstr "Skriv ut ditt engångslösenord" msgid "Privacy and cookies" msgstr "Integritet och kakor" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "Profilbild för {{user_name}}" @@ -2203,6 +2224,9 @@ msgstr "Projektägare" msgid "Proposed Email:" msgstr "Föreslagen e-post:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Myndigheter" @@ -2284,9 +2308,6 @@ msgstr "Nyligen beskrivna resultat först" msgid "Refused" msgstr "Nekad" -msgid "Refused." -msgstr "Nekad." - msgid "Regenerate one time passcode" msgstr "Förnya ett engångslösenord" @@ -2326,8 +2347,8 @@ msgstr "Rapportera denna begäran" msgid "Reported" msgstr "Rapporterad" -msgid "Reported for administrator attention." -msgstr "Rapporterad för administratörers uppmärksamhet." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Rapportering av en begäran meddelas till webbplatsens administratörer. De kommer att svara så snart som möjligt." @@ -2341,6 +2362,9 @@ msgstr "Begär en intern granskning" msgid "Request an internal review from {{person_or_body}}" msgstr "Begär en intern granskning från {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "Frågans e-post kan inte vara ingenting" @@ -2398,6 +2422,9 @@ msgstr "Förfrågningar kommer skickas till de följande myndigheterna:" msgid "Requires admin attention" msgstr "Kräver administratörens uppmärksamhet" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Svara via e-post" @@ -2473,6 +2500,12 @@ msgstr "Sök över
{{number_of_requests}} förfrågningar msgid "Search queries" msgstr "Sökfrågor" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Sökresultat" @@ -2488,6 +2521,12 @@ msgstr "Sektion" msgid "See all →" msgstr "Se allt →" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Skicka en uppföljning" @@ -2536,6 +2575,11 @@ msgstr "Skickade en uppföljning till {{public_body_name}} igen, med en ny konta msgid "Sent a follow up to {{public_body_name}} again." msgstr "Skickade en uppföljning till {{public_body_name}} igen." +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "Skickade begäran till {{public_body_link}} igen, med en ny kontaktadress." @@ -2559,6 +2603,9 @@ msgstr "Ställ in din profilbild" msgid "Share on Facebook" msgstr "Dela på Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "Dela via privat länk" @@ -2772,9 +2819,6 @@ msgstr "Framgångsrika förfrågningar om allmänna handlingar" msgid "Successful requests" msgstr "Framgångsrika förfrågningar" -msgid "Successful." -msgstr "Framgångsrik." - msgid "Suggest how the requester can find the rest of the information." msgstr "Föreslå hur den frågande kan hitta resten av informationen." @@ -2802,6 +2846,9 @@ msgstr "Taggar:" msgid "Tasks" msgstr "Uppgifter" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Tack för att du hjälper oss att hålla denna plattform städad!" @@ -2865,6 +2912,12 @@ msgstr "Adressen där du hittade artikeln." 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 "Webbadressen där du hittade e-postadressen. Det här fältet är valfritt, men det skulle hjälpa en hel del om du kan ge en länk till en viss sida på myndighetens webbplats som anger denna adress, eftersom det kommer att göra det mycket lättare för oss att kontrollera." +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Kontona har blivit lämnade som de tidigare var." @@ -2925,12 +2978,6 @@ msgstr "Den senaste användaren skapades under den senaste dagen" msgid "The last user was created over a day ago" msgstr "Den senaste användaren skapades för mer än en dag sedan" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "Det äldsta indexeringsjobbet har varit inaktivt i mer än 1 timme." - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "Det äldsta Xapian-indexjobbet har inte varit inaktivt i mer än 1 timme" - msgid "The page doesn't exist. Things you can try now:" msgstr "Sidan finns inte. Saker som du kan prova nu:" @@ -3108,8 +3155,8 @@ msgstr "Det finns också en gräns för hur snabbt du kan skapa kommentarer. Fö msgid "There is nothing to display yet." msgstr "Det finns inget att visa än." -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Det blev ett leveransfel eller liknande, som behöver åtgärdas av {{site_name}}-teamet." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "Det var ett fel med reCAPTCHA. Vänligen försök igen." @@ -3490,12 +3537,6 @@ msgstr "Försök öppna loggarna i ett nytt fönster." msgid "Turn off email alerts" msgstr "Stäng av e-postnotifieringar" -msgid "Tweet it" -msgstr "Tweeta det" - -msgid "Tweet this request" -msgstr "Tweeta denna begäran" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "Tvåfaktorsautentisering ger extra säkerhet för ditt konto genom att kräva mer information för att återställa ditt lösenord." @@ -3562,8 +3603,8 @@ msgstr "Avprenumerera" msgid "Unusual response" msgstr "Ovanligt svar" -msgid "Unusual response." -msgstr "Ovanligt svar." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Uppdatera e-postadress - {{public_body_name}}" @@ -3601,23 +3642,14 @@ msgstr "Olämplig" msgid "Vexatious annotation" msgstr "Olämplig kommentar" -msgid "View FOI email address" -msgstr "Visa registrators e-postadress" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Visa registrators e-postadress för '{{public_body_name}}'" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Visa registrators e-postadress för {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Visa förfrågningar om allmänna handlingar gjorda av {{user_name}}:" msgid "View authorities" msgstr "Visa myndigheter" -msgid "View email" -msgstr "Visa e-post" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Detaljer för händelsehistoriken" @@ -3625,11 +3657,17 @@ msgstr "Detaljer för händelsehistoriken" msgid "View other requests to {{public_body}}" msgstr "Visa andra förfrågningar till {{public_body}}" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "Visa dina engångslösenord för tvåfaktorsautentisering" -msgid "Waiting clarification." -msgstr "Inväntar klargörande." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Väntar på en intern granskning från {{public_body_link}} om deras hantering av denna begäran." @@ -3661,9 +3699,6 @@ msgstr "Vi kunde inte ladda e-postserverns loggar för detta meddelande." msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "Vi tillåter inte begäran om information via {{site_name}} om dina personliga förhållanden. Vi har därför dolt din begäran från andra." -msgid "We do not have a working request email address for this authority." -msgstr "Vi har inte en fungerande e-postadress för denna myndighet." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "Vi har inte en fungerande e-postadress kopplat till {{law_used_full}} för {{public_body_name}}." @@ -3767,6 +3802,9 @@ msgstr "Vad skulle du vilja göra?" msgid "What's happened:" msgstr "Vad som hänt:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "När du får det, var då vänlig att uppdatera statusen för att informera om svaret innehåller någon användbar information." @@ -3791,8 +3829,8 @@ msgstr "Vad är det som gör att denna begäran är olämplig?" msgid "Withdrawn" msgstr "Tillbakadragen" -msgid "Withdrawn by the requester." -msgstr "Återkallad av den frågande." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3818,6 +3856,9 @@ msgstr "Att skriva din begäran" msgid "Yes" msgstr "Ja" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "Du har redan skapat samma serie av förfrågningar den {{date}}. Du kan ändra se den existerande serien, eller redigera detaljerna nedan för att göra en ny men liknande serie av förfrågningar." @@ -4456,9 +4497,6 @@ msgstr "skriv in din sökterm här" msgid "unknown" msgstr "okänd" -msgid "unknown reason" -msgstr "okänd anledning" - msgid "unknown reason " msgstr "okänd anledning " @@ -4495,9 +4533,6 @@ msgstr "{{authority_name}} hade inte den begärda informatione msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} väntar på ditt förtydligande." -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}} bidragsgivare" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}} Bilaga" @@ -4508,6 +4543,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "{{count}} gjord anteckning." msgstr[1] "{{count}} gjorda anteckningar." +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} följare" @@ -4652,8 +4692,8 @@ msgstr "{{reason}}. Tyvärr vet vi inte registraturens eller annan relevant e-po msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} som matchar '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blogg och tweets" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4666,9 +4706,6 @@ msgstr "{{site_name}} har identifierat att {{authority_name}} kan ha avslagit al msgid "{{site_name}} login link" msgstr "{{site_name}} login-länk" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} skickar nya förfrågningar till {{request_email}} för denna myndighet." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}} användare har gjort {{number_of_requests}} begäran, inklusive:" diff --git a/locale/sw_KE/app.po b/locale/sw_KE/app.po index 13a3a688cd..4f41f50cc0 100644 --- a/locale/sw_KE/app.po +++ b/locale/sw_KE/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Swahili (Kenya) (http://app.transifex.com/mysociety/alaveteli/l" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/tr/app.po b/locale/tr/app.po index 046df7de32..88fedbb4e6 100644 --- a/locale/tr/app.po +++ b/locale/tr/app.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Senol Kaya , 2018\n" "Language-Team: Turkish (http://app.transifex.com/mysociety/alaveteli/language/" @@ -188,11 +188,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Tüm kurumlara bakın veya herhangi bir kurumu eklememizi isteyin." -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "Yeni EIR talebi oluştur{{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Yeni FOI talebi oluştur{{public_body_name}}nın" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -279,8 +279,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "variety: arayacağınız şeyin türünü seçmek için aşağıdaki türler tablosuna bakın." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Başvuranın istediğ bilgi hakkında tatmin edici bir cevap alması için öneride bulunun. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "İstediğim tüm bilgi tarafıma iletildi" @@ -320,6 +320,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "Hiçbir cevap alınmadı\n" @@ -371,8 +374,8 @@ msgstr "" "{{request_title}} ile ilgili bir takip mesajı \n" " {{date}} tarihinde {{info_request_user}}tarafından {{public_body_name}} adlı kuruma iletildi" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr " {{date}} tarihinde {{request_title}} hakkında {{info_request_user}} tarafından yapılmış olan başvuruya cevap verilmiştir. Başvurunun durumu: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -418,9 +421,6 @@ msgstr "Hakkınızda:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -451,6 +451,12 @@ msgstr "Cevap metninden seçme bir şekilde alıntı yaparak veya cevabıhızlı bir msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Aradığınızı bulamıyor musunuz?" @@ -780,6 +783,9 @@ msgstr "Bilgi Edinme Başvurunuza açıklık getirin - {{request_title}}" msgid "Classify an FOI response from {{authority_name}}" msgstr "Şu kurumdan gelen bir Bilgi Edinme Başvurusu cevabını sınıflandır {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -846,10 +852,10 @@ msgstr "Email adresinizi doğrulayın" msgid "Confirm your new email address on {{site_name}}" msgstr " {{site_name}} sitesindeki yeni email adresinizi doğrulayın" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -918,6 +924,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Tarih:" @@ -945,15 +954,15 @@ msgstr "Gecikme" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Bilgi edinme başvurunuza gecikmeli olarak cevap verildi - {{request_title}}" -msgid "Delayed." -msgstr "Gecikmeli." - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Teslim hatası" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr " “{{request_title}}” başvurunun detayları" @@ -990,10 +999,7 @@ msgstr "İşlem tamamlandı" msgid "Done >>" msgstr "Tamamlandı >>" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1002,6 +1008,9 @@ msgstr "Tüm yazışmalarınızı bir zip dosyası olarak indirin" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "En başta iletmiş olduğunuz ekteki belgeyi indirin" @@ -1016,9 +1025,27 @@ msgstr "" "Cevaptan neden hoşnut kalmadığınızı anlatmak için yukarıdaki mesaja,\n" " daha çok detay ekleyin." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Hakkınızda bölümünü düzenleyin" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Başvurunuzu düzenleyin" @@ -1081,6 +1108,9 @@ msgstr "Bu sayfada adınız dahil girdiğiniz her türlü bilgi msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1093,8 +1123,8 @@ msgstr "" msgid "FOI" msgstr "Bilgi Edinme Başvurusu" -msgid "FOI email address for {{public_body}}" -msgstr " {{public_body}} için Bilgi Edinme Başvurusu e-mail adresi" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "Bu kurum Bilgi Edinme mevzuatı kapsamında yer almamaktadır. " @@ -1135,6 +1165,9 @@ msgstr "Kamu kurum ve kuruluşlarını bulun" msgid "Find the authorities to write to" msgstr "Mesaj yazılacak kamu kurum ve kuruluşlarını bulun" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "Öncelikle, diğer başvurularınız olumlu sonuçlandı mı?" @@ -1183,9 +1216,6 @@ msgstr "Gelişmeleri takip et" msgid "Follow up message sent by requester" msgstr "Başvuruyu yapan kişi tarafından gönderilmiş takip mesajı" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Var olan başvurularla ilgili gönderilen takip mesajları {{authority_email}} adresine gönderilmektedir. " - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Başvuruyla ilgili takip mesajı {{public_body_name}} adlı kuruma {{date}} tarihinde {{info_request_user}} tarafından gönderilmiştir" @@ -1198,8 +1228,8 @@ msgstr "Bu başvuruyla ilgili olarak atılan takip mesajları ve yeni yanıtlar, msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Bizi Twitter'da takip edin" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "Takip ettikleriniz" @@ -1220,8 +1250,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1230,6 +1260,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1242,9 +1277,6 @@ msgstr "Bilgi Edinme Hakkı Kanunu" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "Bu kurum/kuruluş Bilgi Edinme Hakkı Kanunu kapsamının dışındadır, bu yüzden başvuru yapılamaz." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "Bu kurum Bilgi Edinme Hakkı Kanunu kapsamından çıkarılmıştır. Var olan başvurularla ilgili gönderilen takip mesajları {{authority_email}} adresine gönderilmektedir. " - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "{{public_body_name}} Bilgi Edinme Hakkı Kanunu kapsamı dışına alınmıştır." @@ -1295,13 +1327,10 @@ msgstr "Hesabınız var mı?" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1325,6 +1354,9 @@ msgstr "" msgid "Help" msgstr "Yardım" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "Güncellenmemiş başvuruları sınıflandırmamıza yardımcı olun" @@ -1421,9 +1453,6 @@ msgstr "Bir hata mesajı aldım" msgid "I've received an error message" msgstr "Bir hata mesajı aldım" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Adres yanlışsa ya da daha iyi bir adres biliyorsanız lütfen bizimle paylaşın." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Email teslim edilemediyse ve kurumun güncel bir email adresini biliyorsanız, lütfen aşağıdaki formu kullanarak bizimle paylaşın." @@ -1487,11 +1516,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Eğer şu ana kadar yapmadıysanız, lütfen aşağıdaki alana ilgili kuruluşa başvurunuzu geri çektiğinize dair bir mesaj yazın. Bunu yapmazsanız başvurunun geri çekildiğini bilemeyeceklerdir. " -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Hangi adresin kullanılması gerektiğini biliyorsanız, lütfen bizimle paylaşın.\n" -" Adresi, kuruluşun web sitesinden ya da kuruluşa telefon edip sorarak öğrenebilirsiniz. " - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "Bu mesaja yanıt verirseniz cevabınız doğrudan {{user_name}} adlı kullanıcıya gidecek ve bu kullanıcı email adresinizi öğrenecektir. Sadece, sizin için bunun bir mahzuru yoksa cevap verin. " @@ -1526,9 +1550,6 @@ msgstr "Hesap güvenliğinizi geliştirin" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Konuyla ilgili yürütülen bir kampanyaya ait web sitesi, blog siteniz ya da twitter hesabınız gibi ilgili bağlantıları da ekleyin. Bu eklediğiniz bağlantılar üzerine tıklanabilir hale gelecektir. " @@ -1541,9 +1562,6 @@ msgstr "Tekil başvurular" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Bu bilgi kurumun elinde bulunmuyor" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "Emisyon ve (ses, enerji, radyasyon, atık vb gibi maddeler için) boşaltım/dökülme miktarları bilgisi " @@ -1568,6 +1586,9 @@ msgstr "Tek kullanımlık şifre geçersiz" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr " {{email_address}} adresi {{public_body_name}} kurumuna yapılan {{law_used_full}} başvuruları için yanlış adres mi? Öyleyse, lütfen aşağıdaki formu kullanarak bunu bizimle paylaşın:" @@ -1589,12 +1610,12 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Bir şey daha var" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Bu giriş kodunu güvenli bir yerde saklayınız. Şifrenizi değiştirirseniz, hesabınızı doğrulamak için kullanmanız gerekecek. Bir şifre yöneticisi programına ekleyebilir veya yazıcıdan çıktısını alıp güvenli bir yerde saklayabilirsiniz. " - msgid "Keep your request up to date" msgstr "Başvurunuzu güncelleyin" @@ -1637,6 +1658,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1658,9 +1682,6 @@ msgstr "Yönetici arayüzüne bağlanmak için giriş yap" msgid "Long overdue" msgstr "Son cevap verme tarihinden bu yana çok süre geçmiş." -msgid "Long overdue." -msgstr "Son cevap verme tarihinden bu yana çok süre geçmiş." - msgid "Made between" msgstr "Şu tarihler arasında yapılan:" @@ -1757,9 +1778,6 @@ msgstr "Yöneticinin ilgilenmesi gerekiyor " msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Yeni Bilgi Edinme Başvuruları" @@ -1793,9 +1811,6 @@ msgstr "'{{request_title}}' başlıklı başvuru için yeni güncellemeler" msgid "Newest results first" msgstr "Önce en yeni sonuçlar" -msgid "News story" -msgstr "" - msgid "Next" msgstr "İleri" @@ -1877,6 +1892,9 @@ msgstr "" msgid "Number of requests" msgstr "Bilgi edinme başvurusu sayısı" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "YA DA var olan resmi kaldırın" @@ -1940,9 +1958,6 @@ msgstr "Kısmen olumlu cevap" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "Kısmen olumlu " - msgid "Password is not correct" msgstr "Şifre yanlış" @@ -2214,6 +2229,9 @@ msgstr "Tek kullanımlık giriş kodunuzu yazdırın" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2223,6 +2241,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Kamu Kurumları" @@ -2304,9 +2325,6 @@ msgstr "Yakın zamanda tanımlanmış sonuçlar önce gösterilmektedir" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "Reddedildi" - msgid "Regenerate one time passcode" msgstr "Tek kullanımlık giriş kodunu yeniden oluştur" @@ -2346,8 +2364,8 @@ msgstr "Bu başvuruyu şikayet et" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Bu başvuru yöneticinin gözden geçirmesi için rapor edildi" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Bir başvuru hakkında şikayet bildirimi yaparsanız, site yöneticilerine bilgi verilir. En kısa sürede şikayetinizle ilgili dönüş yapacaklardır. " @@ -2361,6 +2379,9 @@ msgstr "Kurumiçi gözden geçirme isteyin" msgid "Request an internal review from {{person_or_body}}" msgstr "{{person_or_body}}'dan kurumiçi denetim isteyin" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2418,6 +2439,9 @@ msgstr "Bilgi edinme başvuruları aşağıdaki kurumlara iletilecektir:" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Email ile cevap ver" @@ -2498,6 +2522,12 @@ msgstr "" msgid "Search queries" msgstr "Arama sorguları" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Arama sonuçları" @@ -2513,6 +2543,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Bir takip iletisi gönderin" @@ -2561,6 +2597,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2584,6 +2625,9 @@ msgstr "Profil resminizi yerleştirin" msgid "Share on Facebook" msgstr "Facebook'ta paylaş" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2801,9 +2845,6 @@ msgstr "Olumlu sonuçlanan Bilgi Edinme Başvuruları" msgid "Successful requests" msgstr "Olumlu sonuçlanan başvurular" -msgid "Successful." -msgstr "Olumlu." - msgid "Suggest how the requester can find the rest of the information." msgstr "Başvuran kişinin istediği bilginin geri kalanını nasıl edinebileceği konusunda öneride bulunun." @@ -2831,6 +2872,9 @@ msgstr "Etiketler:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "Siteyi düzenli tutmamıza yardım ettiğiniz için teşekkürler!" @@ -2898,6 +2942,12 @@ 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 "Email adresini bulduğunuz URL. Bu seçenek tercihe bağlıdır ama kurumun web sitesinde bu email adresinin yer aldığı bir sayfaya bizi yönlendirirseniz, bu adresi doğrulamayı kolaylaştıracaktır. " +msgid "The Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "Hesaplar daha önceki hallerinde bırakıldı" @@ -2958,12 +3008,6 @@ msgstr "En son kullanıcı son bir günde oluşturuldu" msgid "The last user was created over a day ago" msgstr "En son kullanıcı oluşturulalı bir günden fazla oldu" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Böyle bir sayfa yok. Şunları deneyebilirsiniz:" @@ -3141,8 +3185,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "Henüz gösterilecek bir şey yok. " -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "{{site_name}} ekibinin ilgilenmesi gereken teslimat hatası veya benzeri bir sorun çıktı. " +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr " reCAPTCHA. kodunda bir sorun yaşandı. Lütfen tekrar deneyin. " @@ -3538,12 +3582,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Email alert'lerini kapat" -msgid "Tweet it" -msgstr "Bunu tweet'le" - -msgid "Tweet this request" -msgstr "Bu başvuruyu tweet'le" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "iki aşamalı doğrulama şifrenizi yenilemek için daha fazla bilgi gerektirerek hesabınıza ekstra güvenlik getirir" @@ -3612,8 +3650,8 @@ msgstr "Abonelikten çık" msgid "Unusual response" msgstr "Sıradışı bir yanıt" -msgid "Unusual response." -msgstr "Sıradışı bir yanıt." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Email adresini güncelle - {{public_body_name}}" @@ -3651,23 +3689,14 @@ msgstr "Taciz amaçlı yapılmış başvuru" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "Bilgi Edinme Birimi'nin email adresine bakın" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr " '{{public_body_name}}' kuruluşunun Bilgi Edinme email adresine bakın" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "{{public_body_name}} için bilgi edinme email adresine bakın " - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr " {{user_name}} tarafından yapılmış Bilgi Edinme Başvurularına bakın:" msgid "View authorities" msgstr "Bilgi isteyebileceğiniz kurumlar" -msgid "View email" -msgstr "Emaili görün" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "" @@ -3675,11 +3704,17 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "{{public_body}} adlı kuruluşa yapılan diğer başvurulara bakın" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "İki aşamalı tek kullanımlık giriş kodunuza bakın" -msgid "Waiting clarification." -msgstr "Açıklık getirilmesi bekleniyor." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "Bu başvuruyu işleme koyma şekilleri hakkında {{public_body_link}} tarafından gerçekleştirilecek kurum içi inceleme bekleniyor." @@ -3711,9 +3746,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "Bu kuruluş için çalışan bir bilgi edinme emaili elimizde yok." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "{{public_body_name}} için çalışan bir {{public_body_name}} emaili elimizde yok." @@ -3825,6 +3857,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "Oraya ulaştığınızda lütfen cevabın işe yarar bir bilgi içerip içermediği konusunda başvuru durumunu güncelleyin." @@ -3849,8 +3884,8 @@ msgstr "Tam olarak neden bu başvuruyu uygunsuz buluyorsunuz?" msgid "Withdrawn" msgstr "Geri çekildi" -msgid "Withdrawn by the requester." -msgstr "Başvuruyu yapan kişi tarafından geri çekildi. " +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "Wk" @@ -3876,6 +3911,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4519,9 +4557,6 @@ msgstr "aradığınız terimi buraya girin " msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "bilinmeyen sebep" - msgid "unknown reason " msgstr "bilinmeyen sebep" @@ -4558,9 +4593,6 @@ msgstr "{{authority_name}} İstenen bilgi kurumun elinde bulunmuyordu
waiting for your clarification." msgstr "{{authority_name}} açıklık getirmeniz bekleniyor." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4571,6 +4603,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} takipçi" @@ -4718,8 +4755,8 @@ msgstr "{{reason}}. Ne yazık ki, söz konusu kurumun bilgi edinme biriminin ema msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}} eşleşen '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}} blog ve tweetler " +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4732,9 +4769,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "{{site_name}} bu kuruma yapılan başvuruları {{request_email}} adresine göndermektedir." - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/tr_TR/app.po b/locale/tr_TR/app.po index 541a2adca9..eceab7fad7 100644 --- a/locale/tr_TR/app.po +++ b/locale/tr_TR/app.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Senol Kaya , 2018\n" "Language-Team: Turkish (Turkey) (http://app.transifex.com/mysociety/alaveteli/" @@ -176,11 +176,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Hepsine gözatveyabir tane eklenmesini iste" -msgid "Make a new EIR request to {{public_body_name}}" -msgstr " Yeni bir EIR talebinde bulun {{public_body_name}}'nın" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Yeni bir FOI talebinde bulun{{public_body_name}}'nın" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -268,8 +268,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "çeşit:araştırmak için tipini seçin, görçeşitli masalarıaşağıda." -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "tavsiyetepkinin nasıl alındığını bilmek talepkarları tatmin edecektir." +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "bütün bilgilergönderildi" @@ -311,6 +311,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" "cevap yok alındı \n" @@ -365,7 +368,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -410,9 +413,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -443,6 +443,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -611,22 +617,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -665,10 +665,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -677,7 +674,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -698,6 +695,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -770,6 +773,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -836,10 +842,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -908,6 +914,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -935,15 +944,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -980,10 +989,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -992,6 +998,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -1004,9 +1013,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1067,6 +1094,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1079,7 +1109,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1121,6 +1151,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1169,9 +1202,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1184,7 +1214,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1206,8 +1236,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1216,6 +1246,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1228,9 +1263,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1279,13 +1311,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1309,6 +1338,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1399,9 +1431,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1459,9 +1488,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1495,9 +1521,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1510,9 +1533,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1537,6 +1557,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1558,10 +1581,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1606,6 +1629,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1627,9 +1653,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1726,9 +1749,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1762,9 +1782,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1846,6 +1863,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1909,9 +1929,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2181,6 +2198,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2190,6 +2210,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2271,9 +2294,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2313,7 +2333,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2328,6 +2348,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2385,6 +2408,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2460,6 +2486,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2475,6 +2507,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2523,6 +2561,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2546,6 +2589,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2759,9 +2805,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2789,6 +2832,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2852,6 +2898,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2912,12 +2964,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3095,7 +3141,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3477,12 +3523,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3549,7 +3589,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3588,22 +3628,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3612,10 +3643,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3648,9 +3685,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3754,6 +3788,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3778,7 +3815,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3805,6 +3842,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4433,9 +4473,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4472,9 +4509,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4485,6 +4519,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4629,7 +4668,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4643,9 +4682,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/uk/app.po b/locale/uk/app.po index 360d4a571a..190944dcee 100644 --- a/locale/uk/app.po +++ b/locale/uk/app.po @@ -47,7 +47,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Natalie Hiirulainen , 2012,2014,2016-2019" ",2021\n" @@ -193,11 +193,11 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "Переглянути всі або попросити нас додати." -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "Зробити новий запит до розпорядника {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "" @@ -282,8 +282,8 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "Поради щодо того, як отримати задовільну відповідь. " +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "Уся інформація була відправлена" @@ -324,6 +324,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "Відповіді не було отримано" @@ -374,8 +377,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "Додатковий запит щодо {{request_title}} було надіслано {{public_body_name}} користувачем {{info_request_user}}. Дата: {{date}}." -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "Відповідь на {{request_title}} була надіслана розпорядником {{public_body_name}} до користувача {{info_request_user}} {{date}}. Статус запиту: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "" @@ -421,9 +424,6 @@ msgstr "Про вас:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -454,6 +454,12 @@ msgstr "Додайте коментар до свого запиту або ко msgid "Add authority - {{public_body_name}}" msgstr "Додати розпорядник - {{public_body_name}}" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "Додати розпорядника:" @@ -624,24 +630,18 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "Статус не визначено." - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "Очікує на внутрішню перевірку." - msgid "Awaiting response" msgstr "В очікуванні відповіді" -msgid "Awaiting response." -msgstr "В очікуванні відповіді." - msgid "Back to content" msgstr "" +msgid "Back to project" +msgstr "" + msgid "Banned for evading another ban" msgstr "" @@ -678,11 +678,8 @@ msgstr "" msgid "Browse all requests →" msgstr "Пошук серед усіх запитів →" -msgid "Browse and search requests" -msgstr "Переглядати та шукати запити" - -msgid "Browse and search requests (page {{count}})" -msgstr "Переглядати та шукати запити (page {{count}})" +msgid "Browse by category" +msgstr "" msgid "Browse latest requests" msgstr "" @@ -690,8 +687,8 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" -msgstr "Показати запити" +msgid "Browse requests by category" +msgstr "" msgid "By law, they have to respond." msgstr "Відповідно за закону, вони мають відповісти" @@ -711,6 +708,12 @@ msgstr "Згідно з законодавством, {{public_body_link}} ма msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "Не можете знайти?" @@ -783,6 +786,9 @@ msgstr "Уточніть ваш інформаційний запит - {{reques msgid "Classify an FOI response from {{authority_name}}" msgstr "Класифікуйте відповідь від {{authority_name}}" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -851,10 +857,10 @@ msgstr "Підтвердіть вашу електронну адресу" msgid "Confirm your new email address on {{site_name}}" msgstr "Підтвердіть вашу нову адресу" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -925,6 +931,9 @@ msgstr "Відповідь очікується і має надійти" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "Дата:" @@ -952,15 +961,15 @@ msgstr "Відстрочено" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "Відстрочена відповідь на ваш запит - {{request_title}}" -msgid "Delayed." -msgstr "Затримується" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "Помилка доставки" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "Деталі запиту “{{request_title}}”" @@ -997,10 +1006,7 @@ msgstr "Зроблено" msgid "Done >>" msgstr "Зроблено " -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -1009,6 +1015,9 @@ msgstr "Завантажити zip-архів усієї переписки" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "Завантажити початкове вкладення" @@ -1023,9 +1032,27 @@ msgstr "" "Відредагуйте та додайте більше деталей до повідомлення,\n" "пояснивши, чому саме ви незадоволені відповіддю." +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "Відредагувати інформацію про себе" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "Відредагувати цей запит" @@ -1091,6 +1118,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "Показати всю переписку" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1103,8 +1133,8 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" -msgstr "Електронна адреса розпорядника '{{public_body}}'" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "" @@ -1145,6 +1175,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1193,9 +1226,6 @@ msgstr "Додатковий запит" msgid "Follow up message sent by requester" msgstr "Уточнююче повідомлення надіслане автором запиту" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1208,8 +1238,8 @@ msgstr "Надсилання додаткових запитів та нових msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" -msgstr "Ми в твіттері" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "" @@ -1234,12 +1264,10 @@ msgstr[1] "Знайдено {{count}} розпорядників, що почи msgstr[2] "Знайдено {{count}} розпорядників, що починаються з ‘{{first_letter}}’" msgstr[3] "Знайдено {{count}} розпорядників, що починаються з ‘{{first_letter}}’" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "Знайдено {{count}} розпорядника у категорії {{category_name}}" -msgstr[1] "Знайдено {{count}} розпорядників у категорії {{category_name}}" -msgstr[2] "Знайдено {{count}} розпорядників у категорії {{category_name}}" -msgstr[3] "Знайдено {{count}} розпорядників у категорії {{category_name}}" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" @@ -1248,6 +1276,11 @@ msgstr[1] "Знайдено {{count}} розпорядників у катего msgstr[2] "Знайдено {{count}} розпорядників у категорії {{tag_name}}" msgstr[3] "Знайдено {{count}} розпорядників у категорії {{tag_name}}" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1262,9 +1295,6 @@ msgstr "" "Ви не можете зробити запит до цього органу влади, оскільки до нього не застосовується\n" "законодавство про доступ до інформації." -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1313,13 +1343,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1343,6 +1370,9 @@ msgstr "" msgid "Help" msgstr "Допомога" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1439,9 +1469,6 @@ msgstr "Я отримав/отримала повідомлення пр msgid "I've received an error message" msgstr "Я отримав/отримала повідомлення про помилку" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "Якщо адреса неправиильна або якщо ви знаєте кращу, будь ласка, повідомте нам про це." - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "Якщо це була помилка доставки і вам відома актуальна адреса розпорядника інформації, повідомте нас." @@ -1506,11 +1533,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "Якщо ви ще цього не зробили, напишіть, будь ласка, розпоряднику інформації повідомлення (нижче), про те, що ви відмовились від запиту. Інакше вони не знатимуть, що відповідати на нього вже не потрібно." -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" -"Якщо вам відома адреса, яку можна використати, надішліть її нам.\n" -" Ви можете знайти адресу на їхньому вебсайті або ж подзвонити і запитати." - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" "Попередження: якщо ви відповісте на це повідомлення, воно надійде прямо до користувача {{user_name}},\n" @@ -1550,9 +1572,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "Включіть доречні посилання (наприклад, на сторінку кампанії, ваш блог чи твіттер-акаунт). Вони будуть активними." @@ -1565,9 +1584,6 @@ msgstr "Запити" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "Інформація не надана." - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" "Information on emissions and discharges (e.g. noise, energy,\n" @@ -1594,6 +1610,9 @@ msgstr "Недійсний одноразовий пароль" msgid "Invalid token" msgstr "Недійсний токен" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "Якщо {{email_address}} - неправильна адреса для розпорядника {{public_body_name}}, повідомте нас використовуючи форму:" @@ -1618,12 +1637,12 @@ msgstr "Зареєструвався в {{year}}." msgid "Joined {{site_name}} in {{year}}" msgstr "Зареєстрований на сайті {{site_name}} з {{year}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "Напишіть, чому ви так вважаєте" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "Збережіть ваш код. Він буде потрібен для підтвердження вашого акаунту при зміні пароля" - msgid "Keep your request up to date" msgstr "" @@ -1666,6 +1685,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1689,9 +1711,6 @@ msgstr "Увійти як адміністратор" msgid "Long overdue" msgstr "Прострочено" -msgid "Long overdue." -msgstr "Прострочений." - msgid "Made between" msgstr "Зроблені між" @@ -1788,9 +1807,6 @@ msgstr "" msgid "Needs status update" msgstr "Потрібно оновити статус" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "Нові запити" @@ -1824,9 +1840,6 @@ msgstr "Нові оновлення для запиту '{{request_title}}'" msgid "Newest results first" msgstr "Спочатку найновіші" -msgid "News story" -msgstr "" - msgid "Next" msgstr "Далі" @@ -1908,6 +1921,9 @@ msgstr "" msgid "Number of requests" msgstr "Кількість запитів" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "АБО видалити існуюче фото" @@ -1971,9 +1987,6 @@ msgstr "" msgid "Partially successful" msgstr "Частково успішний" -msgid "Partially successful." -msgstr "Частково успішний." - msgid "Password is not correct" msgstr "Неправильний пароль" @@ -2250,6 +2263,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2259,6 +2275,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "Розпорядники інформації" @@ -2340,9 +2359,6 @@ msgstr "" msgid "Refused" msgstr "Відмовлено" -msgid "Refused." -msgstr "Відмовлено" - msgid "Regenerate one time passcode" msgstr "" @@ -2382,8 +2398,8 @@ msgstr "Запит образливий, недоречний, порушує п msgid "Reported" msgstr "" -msgid "Reported for administrator attention." -msgstr "Адміністратора повідомлено." +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "Адміністраторів сайту буде повідомлено." @@ -2397,6 +2413,9 @@ msgstr "Зробити запит на внутрішню перевірку" msgid "Request an internal review from {{person_or_body}}" msgstr "Зробити запит на внутрішню перевірку від {{person_or_body}}" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2454,6 +2473,9 @@ msgstr "Запит буде відправлено до таких розпор msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "Відповісти електронною поштою" @@ -2531,6 +2553,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "Результати пошуку" @@ -2546,6 +2574,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "Надішліть додатковий запит" @@ -2594,6 +2628,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2617,6 +2656,9 @@ msgstr "Встановити фото в профілі" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2830,9 +2872,6 @@ msgstr "Успішні запити" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "Успішний." - msgid "Suggest how the requester can find the rest of the information." msgstr "Підкажіть, де автор запиту може знайти більше інформації." @@ -2860,6 +2899,9 @@ msgstr "Теги:" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2923,6 +2965,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2983,12 +3031,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "Такої сторінки не існує. Ось що ви можете зробити зараз:" @@ -3168,8 +3210,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "Зафіксовано помилку доставки або щось подібне. " +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "" @@ -3560,12 +3602,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "Відключити сповіщення" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "Твітніть цей запит" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3632,8 +3668,8 @@ msgstr "Відписатися" msgid "Unusual response" msgstr "" -msgid "Unusual response." -msgstr "Незвичайна відповідь." +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "Зміна електронної адреси - {{public_body_name}}" @@ -3671,23 +3707,14 @@ msgstr "Сутяжницький" msgid "Vexatious annotation" msgstr "Інше" -msgid "View FOI email address" -msgstr "Переглянути електронну адресу розпорядника" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "Електронна адреса розпорядника інформації: {{public_body_name}}" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "Електронна адреса розпорядника інформації: {{public_body_name}}" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "Переглянути запити, зроблені користувачем {{user_name}}:" msgid "View authorities" msgstr "Показати розпорядників інформації" -msgid "View email" -msgstr "Показати емейли" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "Переглянути історію та технічні деталі запиту" @@ -3695,11 +3722,17 @@ msgstr "Переглянути історію та технічні деталі msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." -msgstr "Очікує на уточнення" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "" @@ -3731,9 +3764,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "У нас нема електронної адреси цього органу." - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "У нас нема адреси цього розпорядника інформації." @@ -3849,6 +3879,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" "Після ознайомлення із відповіддю, оновіть, будь ласка, статус запиту \n" @@ -3875,8 +3908,8 @@ msgstr "Що саме здається вам неправильним чи не msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." -msgstr "Автор запиту відмовився від нього." +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "" @@ -3902,6 +3935,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4553,9 +4589,6 @@ msgstr "" msgid "unknown" msgstr "не визначено" -msgid "unknown reason" -msgstr "невідома причина" - msgid "unknown reason " msgstr "невідома причина" @@ -4592,9 +4625,6 @@ msgstr "{{authority_name}} не володіють запита msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}} чекає на уточнення або роз’яснення." -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4605,6 +4635,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}} користувач слідкує за цим запитом" @@ -4765,8 +4800,8 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}}, що відповідають пошуку '{{query}}'" -msgid "{{site_name}} blog and tweets" -msgstr "блог та твіти сайту {{site_name}}" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4779,9 +4814,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "Доступ відправляє нові запити цьому розпоряднику на адресу {{request_email}}" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/vi/app.po b/locale/vi/app.po index e9fd68a355..88fa414a63 100644 --- a/locale/vi/app.po +++ b/locale/vi/app.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Anh Phan , 2013\n" "Language-Team: Vietnamese (http://app.transifex.com/mysociety/alaveteli/langua" @@ -173,10 +173,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -256,7 +256,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -292,6 +292,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -337,7 +340,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -382,9 +385,6 @@ msgstr "Thông tin về bạn:" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -415,6 +415,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -583,22 +589,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -637,10 +637,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -649,7 +646,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -670,6 +667,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -742,6 +745,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -808,10 +814,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -880,6 +886,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -907,15 +916,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -952,10 +961,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -964,6 +970,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -976,9 +985,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1039,6 +1066,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1051,7 +1081,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1093,6 +1123,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1141,9 +1174,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1156,7 +1186,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1178,8 +1208,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1188,6 +1218,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1200,9 +1235,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1251,13 +1283,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1281,6 +1310,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1371,9 +1403,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1431,9 +1460,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1467,9 +1493,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1482,9 +1505,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1509,6 +1529,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1530,10 +1553,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1578,6 +1601,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1599,9 +1625,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1698,9 +1721,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1734,9 +1754,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1818,6 +1835,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1881,9 +1901,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2153,6 +2170,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2162,6 +2182,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2243,9 +2266,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2285,7 +2305,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2300,6 +2320,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2357,6 +2380,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2432,6 +2458,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2447,6 +2479,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2495,6 +2533,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2518,6 +2561,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2731,9 +2777,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2761,6 +2804,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2824,6 +2870,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2884,12 +2936,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3067,7 +3113,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3451,12 +3497,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3523,7 +3563,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3562,22 +3602,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3586,10 +3617,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3622,9 +3659,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3728,6 +3762,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3752,7 +3789,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3779,6 +3816,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4407,9 +4447,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4446,9 +4483,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4459,6 +4493,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4603,7 +4642,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4617,9 +4656,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/yue/app.po b/locale/yue/app.po index 440155744e..9441a8d2e6 100644 --- a/locale/yue/app.po +++ b/locale/yue/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Cantonese (http://app.transifex.com/mysociety/alaveteli/languag" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/zh_CN/app.po b/locale/zh_CN/app.po index 56e218c2f5..3a5502e677 100644 --- a/locale/zh_CN/app.po +++ b/locale/zh_CN/app.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Graeme Porteous \n" "Language-Team: Chinese (China) (http://app.transifex.com/mysociety/alaveteli/l" @@ -168,10 +168,10 @@ msgstr "" msgid "Browse all or ask us to add one." msgstr "" -msgid "Make a new EIR request to {{public_body_name}}" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." @@ -251,7 +251,7 @@ msgstr "" msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "" -msgid "Advice on how to get a response that will satisfy the requester. " +msgid "Advice on how to get a response that will satisfy the requester." msgstr "" msgid "All the information has been sent" @@ -287,6 +287,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "" @@ -332,7 +335,7 @@ msgstr "" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." msgstr "" msgid "A summary of the response if you have received it by postal mail. " @@ -377,9 +380,6 @@ msgstr "" msgid "About {{count}} FOI requests found" msgstr "" -msgid "Academic paper" -msgstr "" - msgid "Account closed at user request" msgstr "" @@ -410,6 +410,12 @@ msgstr "" msgid "Add authority - {{public_body_name}}" msgstr "" +msgid "Add description" +msgstr "" + +msgid "Add description and make dataset public" +msgstr "" + msgid "Add the authority:" msgstr "" @@ -578,22 +584,16 @@ msgstr "" msgid "Awaiting classification" msgstr "" -msgid "Awaiting classification." -msgstr "" - msgid "Awaiting internal review" msgstr "" -msgid "Awaiting internal review." -msgstr "" - msgid "Awaiting response" msgstr "" -msgid "Awaiting response." +msgid "Back to content" msgstr "" -msgid "Back to content" +msgid "Back to project" msgstr "" msgid "Banned for evading another ban" @@ -632,10 +632,7 @@ msgstr "" msgid "Browse all requests →" msgstr "" -msgid "Browse and search requests" -msgstr "" - -msgid "Browse and search requests (page {{count}})" +msgid "Browse by category" msgstr "" msgid "Browse latest requests" @@ -644,7 +641,7 @@ msgstr "" msgid "Browse latest responses" msgstr "" -msgid "Browse requests" +msgid "Browse requests by category" msgstr "" msgid "By law, they have to respond." @@ -665,6 +662,12 @@ msgstr "" msgid "CSV" msgstr "" +msgid "Campaigning" +msgstr "" + +msgid "Campaigning and Advocacy" +msgstr "" + msgid "Can't find the one you want?" msgstr "" @@ -737,6 +740,9 @@ msgstr "" msgid "Classify an FOI response from {{authority_name}}" msgstr "" +msgid "Classify requests" +msgstr "" + msgid "Classify responses" msgstr "" @@ -803,10 +809,10 @@ msgstr "" msgid "Confirm your new email address on {{site_name}}" msgstr "" -msgid "Considered by administrators as not an FOI request." +msgid "Considered by administrators as not an FOI request" msgstr "" -msgid "Considered by administrators as vexatious." +msgid "Considered by administrators as vexatious" msgstr "" msgid "Contact us" @@ -875,6 +881,9 @@ msgstr "" msgid "Data interpretation" msgstr "" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "" @@ -902,15 +911,15 @@ msgstr "" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "" -msgid "Delayed." -msgstr "" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "" msgid "Delivery error" msgstr "" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "" @@ -947,10 +956,7 @@ msgstr "" msgid "Done >>" msgstr "" -msgid "Download Data" -msgstr "" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -959,6 +965,9 @@ msgstr "" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "" @@ -971,9 +980,27 @@ msgstr "" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "" @@ -1034,6 +1061,9 @@ msgstr "" msgid "Expand all correspondence" msgstr "" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "" @@ -1046,7 +1076,7 @@ msgstr "" msgid "FOI" msgstr "" -msgid "FOI email address for {{public_body}}" +msgid "FOI in Action" msgstr "" msgid "FOI law does not apply to this authority." @@ -1088,6 +1118,9 @@ msgstr "" msgid "Find the authorities to write to" msgstr "" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "" @@ -1136,9 +1169,6 @@ msgstr "" msgid "Follow up message sent by requester" msgstr "" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "" @@ -1151,7 +1181,7 @@ msgstr "" msgid "Follow us on Facebook" msgstr "" -msgid "Follow us on twitter" +msgid "Follow us on X" msgstr "" msgid "Following" @@ -1173,8 +1203,8 @@ msgid_plural "Found {{count}} public authorities beginning with ‘{{first_lette msgstr[0] "" msgstr[1] "" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" msgstr[0] "" msgstr[1] "" @@ -1183,6 +1213,11 @@ msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name} msgstr[0] "" msgstr[1] "" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "" @@ -1195,9 +1230,6 @@ msgstr "" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "" @@ -1246,13 +1278,10 @@ msgstr "" msgid "Handled by postal mail" msgstr "" -msgid "Handled by postal mail." +msgid "Has this batch request been referenced in journalism, campaigning, or research?" msgstr "" -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "" - -msgid "Has this request been referenced in a news article or academic paper? Let us know:" +msgid "Has this request been referenced in journalism, campaigning, or research?" msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" @@ -1276,6 +1305,9 @@ msgstr "" msgid "Help" msgstr "" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "" @@ -1366,9 +1398,6 @@ msgstr "" msgid "I've received an error message" msgstr "" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "" @@ -1426,9 +1455,6 @@ msgstr "" msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "" @@ -1462,9 +1488,6 @@ msgstr "" msgid "In progress" msgstr "" -msgid "In the News" -msgstr "" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "" @@ -1477,9 +1500,6 @@ msgstr "" msgid "Information not held" msgstr "" -msgid "Information not held." -msgstr "" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "" @@ -1504,6 +1524,9 @@ msgstr "" msgid "Invalid token" msgstr "" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "" @@ -1525,10 +1548,10 @@ msgstr "" msgid "Joined {{site_name}} in {{year}}" msgstr "" -msgid "Just one more thing" +msgid "Journalism" msgstr "" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgid "Just one more thing" msgstr "" msgid "Keep your request up to date" @@ -1573,6 +1596,9 @@ msgstr "" msgid "Let us know" msgstr "" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "" @@ -1594,9 +1620,6 @@ msgstr "" msgid "Long overdue" msgstr "" -msgid "Long overdue." -msgstr "" - msgid "Made between" msgstr "" @@ -1693,9 +1716,6 @@ msgstr "" msgid "Needs status update" msgstr "" -msgid "New Citation" -msgstr "" - msgid "New Freedom of Information requests" msgstr "" @@ -1729,9 +1749,6 @@ msgstr "" msgid "Newest results first" msgstr "" -msgid "News story" -msgstr "" - msgid "Next" msgstr "" @@ -1813,6 +1830,9 @@ msgstr "" msgid "Number of requests" msgstr "" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "" @@ -1876,9 +1896,6 @@ msgstr "" msgid "Partially successful" msgstr "" -msgid "Partially successful." -msgstr "" - msgid "Password is not correct" msgstr "" @@ -2148,6 +2165,9 @@ msgstr "" msgid "Privacy and cookies" msgstr "" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "" @@ -2157,6 +2177,9 @@ msgstr "" msgid "Proposed Email:" msgstr "" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "" @@ -2238,9 +2261,6 @@ msgstr "" msgid "Refused" msgstr "" -msgid "Refused." -msgstr "" - msgid "Regenerate one time passcode" msgstr "" @@ -2280,7 +2300,7 @@ msgstr "" msgid "Reported" msgstr "" -msgid "Reported for administrator attention." +msgid "Reported for administrator attention" msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." @@ -2295,6 +2315,9 @@ msgstr "" msgid "Request an internal review from {{person_or_body}}" msgstr "" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "" @@ -2352,6 +2375,9 @@ msgstr "" msgid "Requires admin attention" msgstr "" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "" @@ -2427,6 +2453,12 @@ msgstr "" msgid "Search queries" msgstr "" +msgid "Search requests" +msgstr "" + +msgid "Search requests (page {{count}})" +msgstr "" + msgid "Search results" msgstr "" @@ -2442,6 +2474,12 @@ msgstr "" msgid "See all →" msgstr "" +msgid "See more examples of FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "" @@ -2490,6 +2528,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2513,6 +2556,9 @@ msgstr "" msgid "Share on Facebook" msgstr "" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2726,9 +2772,6 @@ msgstr "" msgid "Successful requests" msgstr "" -msgid "Successful." -msgstr "" - msgid "Suggest how the requester can find the rest of the information." msgstr "" @@ -2756,6 +2799,9 @@ msgstr "" msgid "Tasks" msgstr "" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "" @@ -2819,6 +2865,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "" @@ -2879,12 +2931,6 @@ msgstr "" msgid "The last user was created over a day ago" msgstr "" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "" @@ -3062,7 +3108,7 @@ msgstr "" msgid "There is nothing to display yet." msgstr "" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." @@ -3444,12 +3490,6 @@ msgstr "" msgid "Turn off email alerts" msgstr "" -msgid "Tweet it" -msgstr "" - -msgid "Tweet this request" -msgstr "" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "" @@ -3516,7 +3556,7 @@ msgstr "" msgid "Unusual response" msgstr "" -msgid "Unusual response." +msgid "Update dataset" msgstr "" msgid "Update email address - {{public_body_name}}" @@ -3555,22 +3595,13 @@ msgstr "" msgid "Vexatious annotation" msgstr "" -msgid "View FOI email address" -msgstr "" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "" msgid "View authorities" msgstr "" -msgid "View email" +msgid "View dataset" msgstr "" msgid "View event history details" @@ -3579,10 +3610,16 @@ msgstr "" msgid "View other requests to {{public_body}}" msgstr "" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "" -msgid "Waiting clarification." +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." @@ -3615,9 +3652,6 @@ msgstr "" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "" -msgid "We do not have a working request email address for this authority." -msgstr "" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "" @@ -3721,6 +3755,9 @@ msgstr "" msgid "What's happened:" msgstr "" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "" @@ -3745,7 +3782,7 @@ msgstr "" msgid "Withdrawn" msgstr "" -msgid "Withdrawn by the requester." +msgid "Withdrawn by the requester" msgstr "" msgid "Wk" @@ -3772,6 +3809,9 @@ msgstr "" msgid "Yes" msgstr "" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "" @@ -4400,9 +4440,6 @@ msgstr "" msgid "unknown" msgstr "" -msgid "unknown reason" -msgstr "" - msgid "unknown reason " msgstr "" @@ -4439,9 +4476,6 @@ msgstr "" msgid "{{authority_name}} is waiting for your clarification." msgstr "" -msgid "{{contributor_count}} contributors" -msgstr "" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "" @@ -4452,6 +4486,11 @@ msgid_plural "{{count}} annotations made." msgstr[0] "" msgstr[1] "" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "{{search_results}} matching '{{query}}'" msgstr "" -msgid "{{site_name}} blog and tweets" +msgid "{{site_name}} blog" msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" @@ -4610,9 +4649,6 @@ msgstr "" msgid "{{site_name}} login link" msgstr "" -msgid "{{site_name}} sends new requests to {{request_email}} for this authority." -msgstr "" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "" diff --git a/locale/zh_HK/app.po b/locale/zh_HK/app.po index 836d189771..0f9f301bf2 100644 --- a/locale/zh_HK/app.po +++ b/locale/zh_HK/app.po @@ -52,7 +52,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2011-03-09 17:48+0000\n" "Last-Translator: Yan Hin So , 2020\n" "Language-Team: Chinese (Hong Kong) (http://app.transifex.com/mysociety/alavete" @@ -192,11 +192,11 @@ msgstr "多於60分鐘" msgid "Browse all or ask us to add one." msgstr "瀏覽全部建議加入公共機構。" -msgid "Make a new EIR request to {{public_body_name}}" -msgstr "向{{public_body_name}}提出新要求索取環境資訊" +msgid "{{title}} part of a batch sent to {{count}} authorities on {{date}}" +msgstr "" -msgid "Make a new FOI request to {{public_body_name}}" -msgstr "向{{public_body_name}}索取資料" +msgid "{{title}} requested from {{public_body_name}} on {{date}}" +msgstr "" msgid "Sign in to get updates on things you follow or re-enable email alerts." msgstr "登入獲取你關注的資訊的更新,或重新啟用電郵提示。" @@ -274,8 +274,8 @@ msgstr "tag:charity根據標簽搜尋所有相關 msgid "variety: to select type of thing to search for, see the table of varieties below." msgstr "種類:選擇要搜索的事物的類型,請參見下面的種類列表。" -msgid "Advice on how to get a response that will satisfy the requester. " -msgstr "建議如何得到申請者感滿意的回覆。" +msgid "Advice on how to get a response that will satisfy the requester." +msgstr "" msgid "All the information has been sent" msgstr "已提供所有資料" @@ -310,6 +310,9 @@ msgstr "" msgid "Journalist, Academic or Power User? {{pro_site_link}} is an all-in-one FOI toolkit including everything you need to keep on top of complex FOI-driven investigations." msgstr "記者、學者或高級用戶?{{pro_site_link}}是一個整體全面的資訊自由工具包,內含你需要的所有資訊,協助進行以資訊自由主導的複雜調查。" +msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." +msgstr "" + msgid "No response has been received (maybe there's just an acknowledgement)" msgstr "機構尚未作出回應(你可能只收到機構確認收件的訊息)" @@ -355,8 +358,8 @@ msgstr "?" msgid "A follow up to {{request_title}} was sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "{{request_title}}跟進已於{{date}}由{{info_request_user}}傳送至{{public_body_name}}。" -msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}" -msgstr "{{request_title}}的回覆已於{{date}}由{{info_request_user}}傳送至{{public_body_name}}。該回覆的狀態:{{request_status}}" +msgid "A response to {{request_title}} was sent by {{public_body_name}} to {{info_request_user}} on {{date}}. The request status is: {{request_status}}." +msgstr "" msgid "A summary of the response if you have received it by postal mail. " msgstr "如你以郵寄方式收取回覆,會收到其撮要。" @@ -400,9 +403,6 @@ msgstr "自我介紹:" msgid "About {{count}} FOI requests found" msgstr "找到約{{count}}項索取資料要求" -msgid "Academic paper" -msgstr "學術文章" - msgid "Account closed at user request" msgstr "賬戶在用戶要求下停用" @@ -433,6 +433,12 @@ msgstr "在你的要求加入備註,附上選項或回覆撮要正在等候回覆,{{public_body_link}}應該盡快 msgid "Data interpretation" msgstr "資料詮釋" +msgid "Dataset was successfully updated." +msgstr "" + msgid "Date:" msgstr "日期:" @@ -925,15 +934,15 @@ msgstr "已延期" msgid "Delayed response to your FOI request - {{request_title}}" msgstr "延遲回覆你的索取資料要求 - {{request_title}}" -msgid "Delayed." -msgstr "延遲。" - msgid "Delivery Status for Outgoing Message #{{id}}" msgstr "外送訊息#{{id}}的傳送狀態" msgid "Delivery error" msgstr "傳送失敗" +msgid "Description" +msgstr "" + msgid "Details of request “{{request_title}}”" msgstr "要求「{{request_title}}」的詳情" @@ -970,10 +979,7 @@ msgstr "完成" msgid "Done >>" msgstr "完成 >>" -msgid "Download Data" -msgstr "下載資料" - -msgid "Download Leaderboard Data" +msgid "Download" msgstr "" msgid "Download a zip file of all correspondence" @@ -982,6 +988,9 @@ msgstr "下載含全部回覆的壓縮檔案" msgid "Download attachment" msgstr "" +msgid "Download leaderboard data" +msgstr "" + msgid "Download original attachment" msgstr "下載原始附件" @@ -994,9 +1003,27 @@ msgstr "環境資訊規例" msgid "Edit and add more details to the message above, explaining why you are dissatisfied with their response." msgstr "編輯和加入更多細節到上述訊息,解釋為何你不滿他們的回覆。" +msgid "Edit description" +msgstr "" + +msgid "Edit description and make dataset public" +msgstr "" + +msgid "Edit project" +msgstr "" + +msgid "Edit questions" +msgstr "" + +msgid "Edit requests" +msgstr "" + msgid "Edit text about you" msgstr "編輯你的簡介" +msgid "Edit your dataset" +msgstr "" + msgid "Edit your request" msgstr "編輯此要求" @@ -1057,6 +1084,9 @@ msgstr "你在本頁輸入的所有資料(包括你的姓名 msgid "Expand all correspondence" msgstr "展開所有回覆" +msgid "Explore in Datasette" +msgstr "" + msgid "Extract data" msgstr "提取資料" @@ -1069,8 +1099,8 @@ msgstr "已提取的資料未能存檔。" msgid "FOI" msgstr "公開資料" -msgid "FOI email address for {{public_body}}" -msgstr "{{public_body}}的公開資料電郵" +msgid "FOI in Action" +msgstr "" msgid "FOI law does not apply to this authority." msgstr "《公開資料守則》不包含此公共機構。" @@ -1111,6 +1141,9 @@ msgstr "搜尋公共機構" msgid "Find the authorities to write to" msgstr "搜尋公共機構提出要求" +msgid "Find updated contact details" +msgstr "" + msgid "First, did your other requests succeed?" msgstr "首先,你成功提出其他要求嗎?" @@ -1159,9 +1192,6 @@ msgstr "跟進" msgid "Follow up message sent by requester" msgstr "申請人要求公共機構跟進的訊息" -msgid "Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "已向{{authority_email}}發出訊息,跟進目前的索取資料要求。" - msgid "Follow up sent to {{public_body_name}} by {{info_request_user}} on {{date}}." msgstr "{{info_request_user}}已於{{date}}向{{public_body_name}}發出跟進索取資料要求的訊息。" @@ -1174,8 +1204,8 @@ msgstr "為防止垃圾郵件,已停止對此請求進行跟進和提供新的 msgid "Follow us on Facebook" msgstr "在Facebook關注我們" -msgid "Follow us on twitter" -msgstr "在Twitter關注我們" +msgid "Follow us on X" +msgstr "" msgid "Following" msgstr "關注" @@ -1194,14 +1224,20 @@ msgid "Found {{count}} public authority beginning with ‘{{first_letter}}’" msgid_plural "Found {{count}} public authorities beginning with ‘{{first_letter}}’" msgstr[0] "已找到{{count}}間「{{first_letter}}」字起首的公共機構" -msgid "Found {{count}} public authority in the category ‘{{category_name}}’" -msgid_plural "Found {{count}} public authorities in the category ‘{{category_name}}’" -msgstr[0] "已在「{{category_name}}」類別找到{{count}}間公共機構" +msgid "Found {{count}} public authority in the category ‘{{category}}’" +msgid_plural "Found {{count}} public authorities in the category ‘{{category}}’" +msgstr[0] "" +msgstr[1] "" msgid "Found {{count}} public authority matching the tag ‘{{tag_name}}’" msgid_plural "Found {{count}} public authorities matching the tag ‘{{tag_name}}’" msgstr[0] "已找到{{count}}間符合標簽「{{tag_name}}」的公共機構" +msgid "Found {{count}} request tagged ‘{{tag_name}}’" +msgid_plural "Found {{count}} requests tagged ‘{{tag_name}}’" +msgstr[0] "" +msgstr[1] "" + msgid "Four weeks ago you made a Freedom of Information request to {{public_body_name}} using {{site_name}}." msgstr "四星期前,你透過{{site_name}}向{{public_body_name}}要求索取資料。" @@ -1214,9 +1250,6 @@ msgstr "《公開資料守則》" msgid "Freedom of Information law does not apply to this authority, so you cannot make a request to it." msgstr "《公開資料守則》不覆蓋此公共機構,你不能要求它披露資料。" -msgid "Freedom of Information law no longer applies to this authority. Follow up messages to existing requests are sent to {{authority_email}}." -msgstr "《公開資料守則》已不覆蓋此公共機構,所有跟進訊息將發送至{{authority_email}}。" - msgid "Freedom of Information law no longer applies to {{public_body_name}}." msgstr "《公開資料守則》不再覆蓋{{public_body_name}}。" @@ -1265,14 +1298,11 @@ msgstr "已經註冊?" msgid "Handled by postal mail" msgstr "郵寄處理" -msgid "Handled by postal mail." -msgstr "郵寄處理。" - -msgid "Has this request been referenced in a news article or academic paper?" -msgstr "這項要求有被新聞文章或學術文章徵引過嗎?" +msgid "Has this batch request been referenced in journalism, campaigning, or research?" +msgstr "" -msgid "Has this request been referenced in a news article or academic paper? Let us know:" -msgstr "這項要求有被新聞文章或學術文章徵引過嗎?請通知我們:" +msgid "Has this request been referenced in journalism, campaigning, or research?" +msgstr "" msgid "Hello! We have an important message for visitors outside {{country_name}}" msgstr "你好,{{country_name}}外的訪客!你有一則重要訊息" @@ -1295,6 +1325,9 @@ msgstr "你好!你可以在{{link_to_website}}向{{country_name}}的公營機 msgid "Help" msgstr "幫助" +msgid "Help Out" +msgstr "" + msgid "Help us classify requests that haven't been updated" msgstr "幫助我們分別出未被更新的請求" @@ -1385,9 +1418,6 @@ msgstr "我收到錯誤訊息" msgid "I've received an error message" msgstr "我收到錯誤訊息" -msgid "If the address is wrong, or you know a better address, please contact us." -msgstr "如果地址錯誤,或你知道有個更好的地址,請聯絡我們。" - msgid "If the error was a delivery failure, and you can find an up to date FOI email address for the authority, please tell us using the form below." msgstr "如果傳送失敗,同時你找到該公共機構最新的公開資料電郵地址,請填寫以下表格通知我們。" @@ -1445,9 +1475,6 @@ msgstr "如你在多於兩個月前收到電郵或更 msgid "If you have not done so already, please write a message below telling the authority that you have withdrawn your request. Otherwise they will not know it has been withdrawn." msgstr "如果你還沒有這樣做,請在下面寫下訊息,通知公共機構你已經撤消了要求。否則,機構不會知道要求已被撤回。" -msgid "If you know the address to use, then please send it to us. You may be able to find the address on their website, or by phoning them up and asking." -msgstr "如你知道地址,請傳送給我們。你可以致電查詢或在他們的網頁上找到地址。" - msgid "If you reply to this message it will go directly to {{user_name}}, who will learn your email address. Only reply if that is okay." msgstr "如果你回覆這則訊息,你的回覆將直接傳予{{user_name}},向其披露你的電郵地址。請於回覆前慎思。" @@ -1481,9 +1508,6 @@ msgstr "改善你的賬戶安全" msgid "In progress" msgstr "進行中" -msgid "In the News" -msgstr "在新聞裡" - msgid "Include relevant links, such as to a campaign page, your blog or a twitter account. They will be made clickable. e.g." msgstr "包含相關連結,例如連至活動頁、你的網誌或Twitter帳戶。你可以按入那些連結,例如" @@ -1496,9 +1520,6 @@ msgstr "個別要求" msgid "Information not held" msgstr "未持有相關資料" -msgid "Information not held." -msgstr "未持有相關資料" - msgid "Information on emissions and discharges (e.g. noise, energy, radiation, waste materials)" msgstr "有關排放的資訊(例如噪音、電力、輻射、廢物)" @@ -1523,6 +1544,9 @@ msgstr "單次有效密碼無效" msgid "Invalid token" msgstr "代碼無效" +msgid "Invite and edit contributors" +msgstr "" + msgid "Is {{email_address}} the wrong address for {{law_used_full}} requests to {{public_body_name}}? If so, please contact us using this form:" msgstr "對{{public_body_name}}的{{law_used_full}}請求的地址{{email_address}}是否錯誤?如是,請使用以下表格聯絡我們:" @@ -1544,12 +1568,12 @@ msgstr "{{year}}年加入。" msgid "Joined {{site_name}} in {{year}}" msgstr "{{year}}年加入{{site_name}}" +msgid "Journalism" +msgstr "" + msgid "Just one more thing" msgstr "再者" -msgid "Keep this passcode safe. You will need it to confirm your account when changing your password. You can add it to a password manager or print it and store it in a safe place." -msgstr "請妥善保管這個密碼。當要轉換密碼,你需要用來確定你的帳戶。你可以將之加進密碼管理員,或列印出來後妥善保管。" - msgid "Keep your request up to date" msgstr "持續更新你的請求" @@ -1592,6 +1616,9 @@ msgstr "離開項目" msgid "Let us know" msgstr "通知我們" +msgid "Let us know about great examples of FOI in Action." +msgstr "" + msgid "Let us know and we’ll help you challenge it." msgstr "通知我們,幫助你提出挑戰" @@ -1613,9 +1640,6 @@ msgstr "登入管理介面" msgid "Long overdue" msgstr "嚴重逾期" -msgid "Long overdue." -msgstr "嚴重逾期。" - msgid "Made between" msgstr "要求提出日期" @@ -1712,9 +1736,6 @@ msgstr "須管理員處理" msgid "Needs status update" msgstr "狀態須更新" -msgid "New Citation" -msgstr "新引用" - msgid "New Freedom of Information requests" msgstr "索取資料的新要求" @@ -1748,9 +1769,6 @@ msgstr "索取資料要求「{{request_title}}」有更新" msgid "Newest results first" msgstr "最新結果優先" -msgid "News story" -msgstr "新聞消息" - msgid "Next" msgstr "下一則" @@ -1832,6 +1850,9 @@ msgstr "已隱藏事件的要求數量" msgid "Number of requests" msgstr "索取資料要求的數目" +msgid "Numeric" +msgstr "" + msgid "OR remove the existing photo" msgstr "或移除現有的圖片" @@ -1895,9 +1916,6 @@ msgstr "部分成功" msgid "Partially successful" msgstr "部分成功" -msgid "Partially successful." -msgstr "部分成功。" - msgid "Password is not correct" msgstr "密碼錯誤" @@ -2166,6 +2184,9 @@ msgstr "列印你的單次有效密碼" msgid "Privacy and cookies" msgstr "私隱及Cookies" +msgid "Private" +msgstr "" + msgid "Profile image for {{user_name}}" msgstr "{{user_name}}的頭像" @@ -2175,6 +2196,9 @@ msgstr "項目擁有者" msgid "Proposed Email:" msgstr "建議電郵:" +msgid "Public" +msgstr "" + msgid "Public Bodies" msgstr "公共機構" @@ -2256,9 +2280,6 @@ msgstr "最近描述的結果為先" msgid "Refused" msgstr "已拒絕" -msgid "Refused." -msgstr "已拒絕。" - msgid "Regenerate one time passcode" msgstr "重發單次有效密碼" @@ -2298,8 +2319,8 @@ msgstr "舉報此要求" msgid "Reported" msgstr "已舉報" -msgid "Reported for administrator attention." -msgstr "已向管理員舉報" +msgid "Reported for administrator attention" +msgstr "" msgid "Reporting a request notifies the site administrators. They will respond as soon as possible." msgstr "本站管理員將得知要求遭舉報,並會儘快回應。" @@ -2313,6 +2334,9 @@ msgstr "要求部門覆檢" msgid "Request an internal review from {{person_or_body}}" msgstr "要求{{person_or_body}}覆檢要求" +msgid "Request classifications and extracted data is compiled into a dataset" +msgstr "" + msgid "Request email can't be nil" msgstr "要求電郵不可留空" @@ -2370,6 +2394,9 @@ msgstr "要求將發送至以下機構:" msgid "Requires admin attention" msgstr "須管理員跟進" +msgid "Research" +msgstr "" + msgid "Respond by email" msgstr "電郵回覆" @@ -2445,6 +2472,12 @@ msgstr "搜尋
{{number_of_requests}}項要求及FOI in Action." +msgstr "" + +msgid "Select" +msgstr "" + msgid "Send a followup" msgstr "跟進要求" @@ -2508,6 +2547,11 @@ msgstr "" msgid "Sent a follow up to {{public_body_name}} again." msgstr "" +msgid "Sent batch ({{batch_admin_link}}) to one authority by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgid_plural "Sent batch ({{batch_admin_link}}) to {{authority_count}} authorities by {{info_request_user}} ({{user_admin_link}}) on {{date}}." +msgstr[0] "" +msgstr[1] "" + msgid "Sent request to {{public_body_link}} again, using a new contact address." msgstr "" @@ -2530,6 +2574,9 @@ msgstr "設立頭像" msgid "Share on Facebook" msgstr "分享至Facebook" +msgid "Share on X" +msgstr "" + msgid "Share with private link" msgstr "" @@ -2743,9 +2790,6 @@ msgstr "更多成功要求" msgid "Successful requests" msgstr "成功要求" -msgid "Successful." -msgstr "成功" - msgid "Suggest how the requester can find the rest of the information." msgstr "建議請求者如何找到其餘信息。" @@ -2773,6 +2817,9 @@ msgstr "標籤:" msgid "Tasks" msgstr "任務" +msgid "Text" +msgstr "" + msgid "Thank you for helping us keep the site tidy!" msgstr "感謝你整理本站!" @@ -2836,6 +2883,12 @@ 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 Xapian indexing has been stuck for more than 1 hour" +msgstr "" + +msgid "The Xapian indexing is not stuck" +msgstr "" + msgid "The accounts have been left as they previously were." msgstr "帳戶已像以前一樣保留。" @@ -2896,12 +2949,6 @@ msgstr "最後一位用戶在前一天建立" msgid "The last user was created over a day ago" msgstr "最後一位用戶在多於一天前建立" -msgid "The oldest Xapian index job, has been idle for more than 1 hour" -msgstr "" - -msgid "The oldest Xapian index job, hasn't been idle for more than 1 hour" -msgstr "" - msgid "The page doesn't exist. Things you can try now:" msgstr "本頁不存在。你可以:" @@ -3079,8 +3126,8 @@ msgstr "" msgid "There is nothing to display yet." msgstr "暫未有內容顯示。" -msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team." -msgstr "出現傳輸錯誤或類似事件,需要{{site_name}}的工作團隊修復。" +msgid "There was a delivery error or similar, which needs fixing by the {{site_name}} team. Can you help by finding updated contact details?" +msgstr "" msgid "There was an error with the reCAPTCHA. Please try again." msgstr "reCAPTCHA出現錯誤,請重試。" @@ -3459,12 +3506,6 @@ msgstr "嘗試在新視窗開啟記錄" msgid "Turn off email alerts" msgstr "停止電郵通知" -msgid "Tweet it" -msgstr "轉貼於Tweeter" - -msgid "Tweet this request" -msgstr "轉貼此要求到Tweeter" - msgid "Two factor authentication adds extra security to your account by requiring more information to reset your password." msgstr "雙重認證會要求你提供更多資料來重設密碼,以提升帳戶安全。" @@ -3531,8 +3572,8 @@ msgstr "取消訂閱" msgid "Unusual response" msgstr "異常回應" -msgid "Unusual response." -msgstr "異常回應" +msgid "Update dataset" +msgstr "" msgid "Update email address - {{public_body_name}}" msgstr "更新{{public_body_name}}的電郵地址" @@ -3570,23 +3611,14 @@ msgstr "無理纏擾的" msgid "Vexatious annotation" msgstr "無理纏繞的備註" -msgid "View FOI email address" -msgstr "查看公開資料電郵地址" - -msgid "View FOI email address for '{{public_body_name}}'" -msgstr "查看{{public_body_name}}的公開資料電郵地址" - -msgid "View FOI email address for {{public_body_name}}" -msgstr "查看{{public_body_name}}的公開資料電郵地址" - msgid "View Freedom of Information requests made by {{user_name}}:" msgstr "查看{{user_name}}的索取資料要求。" msgid "View authorities" msgstr "查看公共機構" -msgid "View email" -msgstr "查看電郵" +msgid "View dataset" +msgstr "" msgid "View event history details" msgstr "查看事件的詳細歷史" @@ -3594,11 +3626,17 @@ msgstr "查看事件的詳細歷史" msgid "View other requests to {{public_body}}" msgstr "查看其他向{{public_body}}作出的要求" +msgid "View requests" +msgstr "" + msgid "View your two factor authentication one time passcode" msgstr "查看雙重認證的單次有效密碼" -msgid "Waiting clarification." -msgstr "正等候澄清" +msgid "Visibility" +msgstr "" + +msgid "Waiting clarification" +msgstr "" msgid "Waiting for an internal review by {{public_body_link}} of their handling of this request." msgstr "正等待{{public_body_link}}覆檢它們處理索取資料要求的手法。" @@ -3630,9 +3668,6 @@ msgstr "我們未能載入此訊息的電郵伺服器記錄。" msgid "We do not allow requests for information via {{site_name}} about your personal circumstances. We have therefore hidden your request from other users." msgstr "我們不接受任何透過{{site_name}}索取你個人情況的要求。因此,我們會隱藏你的要求。" -msgid "We do not have a working request email address for this authority." -msgstr "我們沒有此公共機構的有效電郵地址以提出要求。" - msgid "We do not have a working {{law_used_full}} address for {{public_body_name}}." msgstr "我們沒有{{public_body_name}}的有效{{law_used_full}}網址。" @@ -3734,6 +3769,9 @@ msgstr "" msgid "What's happened:" msgstr "事件:" +msgid "When a dataset is made public, it cannot be reverted to private." +msgstr "" + msgid "When you get there, please update the status to say if the response contains any useful information." msgstr "當抵達該處,請更新狀態,以示回應有否包含有用資訊。" @@ -3758,8 +3796,8 @@ msgstr "請問你為何認為這項要求不恰當?" msgid "Withdrawn" msgstr "已撤回" -msgid "Withdrawn by the requester." -msgstr "申請者已撤回請求。" +msgid "Withdrawn by the requester" +msgstr "" msgid "Wk" msgstr "週" @@ -3785,6 +3823,9 @@ msgstr "" msgid "Yes" msgstr "是" +msgid "Yes/No" +msgstr "" + msgid "You already created the same batch of requests on {{date}}. You can either view the existing batch, or edit the details below to make a new but similar batch of requests." msgstr "你已於{{date}}建立同一批要求。你可以瀏覽現有的批次或編輯下列內容,以建立類似的多項新要求。" @@ -4406,9 +4447,6 @@ msgstr "在這裡輸入你的搜尋文字" msgid "unknown" msgstr "未知" -msgid "unknown reason" -msgstr "不明原因" - msgid "unknown reason " msgstr "不明原因" @@ -4445,9 +4483,6 @@ msgstr "{{authority_name}}沒有要求披露的資料。" msgid "{{authority_name}} is waiting for your clarification." msgstr "{{authority_name}}正在等待你澄清某些事項。" -msgid "{{contributor_count}} contributors" -msgstr "{{contributor_count}}位貢獻者" - msgid "{{count}} Attachment" msgid_plural "{{count}} Attachments" msgstr[0] "{{count}}個附件" @@ -4456,6 +4491,11 @@ msgid "{{count}} annotation made." msgid_plural "{{count}} annotations made." msgstr[0] "{{count}}個備註" +msgid "{{count}} contributor has joined this project" +msgid_plural "{{count}} contributors have joined this project" +msgstr[0] "" +msgstr[1] "" + msgid "{{count}} follower" msgid_plural "{{count}} followers" msgstr[0] "{{count}}個關注者" @@ -4587,8 +4627,8 @@ msgstr "{{reason}}。抱歉,由於我們不知道該公共機構的公開資 msgid "{{search_results}} matching '{{query}}'" msgstr "{{search_results}}個符合「{{query}}」" -msgid "{{site_name}} blog and tweets" -msgstr "{{site_name}}的網誌和推特" +msgid "{{site_name}} blog" +msgstr "" msgid "{{site_name}} covers requests to {{number_of_authorities}} authority, including:" msgid_plural "{{site_name}} covers requests to {{number_of_authorities}} authorities, including:" @@ -4600,9 +4640,6 @@ msgstr "{{site_name}}已識別到{{authority_name}}基於{{refusals}}{{request_email}} for this authority." -msgstr "{{site_name}}為此公共機構送出新要求予{{request_email}}。" - msgid "{{site_name}} users have made {{number_of_requests}} request, including:" msgid_plural "{{site_name}} users have made {{number_of_requests}} requests, including:" msgstr[0] "{{site_name}}的用戶提出了{{number_of_requests}}項索取資料的要求,其中包括:" diff --git a/locale_alaveteli_pro/af_ZA/app.po b/locale_alaveteli_pro/af_ZA/app.po index 291f9e69a4..fd5ca2f070 100644 --- a/locale_alaveteli_pro/af_ZA/app.po +++ b/locale_alaveteli_pro/af_ZA/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: FOI Monkey, 2022\n" "Language-Team: Afrikaans (South Africa) (https://app.transifex.com/mysociety/t" @@ -38,9 +38,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(geen titel)" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 maande" @@ -62,12 +59,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -77,9 +68,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt
" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -122,6 +110,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -188,6 +179,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -200,6 +206,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -257,6 +269,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -266,9 +281,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "CSV" @@ -311,6 +323,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -320,12 +335,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -368,6 +395,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -389,6 +419,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -452,6 +485,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -512,6 +548,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -563,6 +605,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -620,6 +665,9 @@ msgstr "Nee" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -659,6 +707,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -683,6 +734,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -773,6 +827,9 @@ msgstr "" msgid "Profile" msgstr "Profiel" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -802,6 +859,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -814,6 +874,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Antwoorde" @@ -882,6 +951,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -937,8 +1009,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -951,6 +1023,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1138,6 +1213,9 @@ msgstr "Opdateer" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1167,6 +1245,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1254,6 +1335,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1377,6 +1461,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1478,3 +1568,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/aln/app.po b/locale_alaveteli_pro/aln/app.po index 8ddfc1d239..02a0fc1b03 100644 --- a/locale_alaveteli_pro/aln/app.po +++ b/locale_alaveteli_pro/aln/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Albanian Gheg (https://app.transifex.com/mysociety/teams/33529/" "aln/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt
" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/app.pot b/locale_alaveteli_pro/app.pot index 4672a303ed..e1776b6d49 100644 --- a/locale_alaveteli_pro/app.pot +++ b/locale_alaveteli_pro/app.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-01-20 17:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt
" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ar/app.po b/locale_alaveteli_pro/ar/app.po index 039fdc410c..fb2ea6b2e2 100644 --- a/locale_alaveteli_pro/ar/app.po +++ b/locale_alaveteli_pro/ar/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Arabic (https://app.transifex.com/mysociety/teams/33529/ar/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt
" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/bg/app.po b/locale_alaveteli_pro/bg/app.po index 1738e49f4e..027deed014 100644 --- a/locale_alaveteli_pro/bg/app.po +++ b/locale_alaveteli_pro/bg/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Bulgarian (https://app.transifex.com/mysociety/teams/33529/bg/)" "\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt
" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/bs/app.po b/locale_alaveteli_pro/bs/app.po index 1617011cb8..a8f0b67322 100644 --- a/locale_alaveteli_pro/bs/app.po +++ b/locale_alaveteli_pro/bs/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Bosnian (https://app.transifex.com/mysociety/teams/33529/bs/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ca/app.po b/locale_alaveteli_pro/ca/app.po index 7c04cb2319..c437836023 100644 --- a/locale_alaveteli_pro/ca/app.po +++ b/locale_alaveteli_pro/ca/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Catalan (https://app.transifex.com/mysociety/teams/33529/ca/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ckb/app.po b/locale_alaveteli_pro/ckb/app.po index 16356b548f..088a59728b 100644 --- a/locale_alaveteli_pro/ckb/app.po +++ b/locale_alaveteli_pro/ckb/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Central Kurdish (https://app.transifex.com/mysociety/teams/3352" "9/ckb/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/cs/app.po b/locale_alaveteli_pro/cs/app.po index 73d3bc8786..b0bc6a8cea 100644 --- a/locale_alaveteli_pro/cs/app.po +++ b/locale_alaveteli_pro/cs/app.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Jiří Podhorecký , 2021\n" "Language-Team: Czech (https://app.transifex.com/mysociety/teams/33529/cs/)\n" @@ -42,9 +42,6 @@ msgstr[3] "(zahrnuje {{count}} vracejících se předplatitelů)" msgid "(no title)" msgstr "(bez názvu)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(s {{discount_name}} sleva uplatněna)" - msgid "12 Months" msgstr "12 měsíců" @@ -66,12 +63,6 @@ msgstr "Sold From Under You — organizace Bureau msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} z {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} za uživatele, za měsíc" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} za uživatele, za rok" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Upozornění: dozvíte se kdy je čas učinit další krok" @@ -81,9 +72,6 @@ msgstr "Denní souhrn e-mailů pr msgid "Delivery verification for proof of receipt" msgstr "Oznámení o doručení jako důkaz o přijetí" -msgid "Delivery verification for proof of receipt" -msgstr "Oznámení o doručení jako důkaz o přijetí" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Získejte pravidelné aktualizace jak přicházejí odpovědi - bez zahlcení svého inboxu" @@ -126,6 +114,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} končící na {{last4}}, platnost vyprší {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} seřazeno podle {{order_description}} vymazat" @@ -192,6 +183,21 @@ msgstr "Přidejte instituce do svého hromadného dotazu" msgid "Add credibility" msgstr "Přidat kredibilitu" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Přidáno" @@ -204,6 +210,12 @@ msgstr "Všechny žádosti" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Všechny dotazy v tomto hromadném dotazu zůstanou po stejnou dobu soukromé. Pokud bude jeden z dotazů uveřejněn, všechny ostatní dotazy v této skupině budou také publikovány na {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Také jako {{other_name}}" @@ -261,6 +273,9 @@ msgstr "Fakturováno: Měsíčně" msgid "Billed: Weekly" msgstr "Fakturováno: týdně" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Fakturace" @@ -270,9 +285,6 @@ msgstr "Přinášíme fakta o zbytečném utrácení za kampaň a zároveň chr msgid "Browse by category" msgstr "Prohledávej kategorii" -msgid "Browse public requests" -msgstr "Zobrazit veřejné dotazy" - msgid "CSV" msgstr "CSV" @@ -315,6 +327,9 @@ msgstr "Zkontrolujte si, zda jste neuvedli nějakou osobní informaciwhich commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Pan Gavin Chait vznesl dotaz na 350 místních úřadů aby zjistil které obchodní prostory byly nevyužité a pomohl tak začínajícím firmám." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Dostáváte e-mailové aktualizace o {{pro_site_name}}?" @@ -516,6 +552,12 @@ msgstr "Zkoumání používání azbestu ve školách" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "Investigativní novinářka Jenna Corderoy využila možnosti skrýt své dotazy při přípravě článků týkajích se Brexitu do doby, kdy publikovala fakta o nadměrných reklamních výdajích a ERG výzkumech, mezi několika dalšími důležitými příběhy." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -567,6 +609,9 @@ msgstr "Lucii Stephensovou, přimělo úmrtí někoho blízkého k tomu, že po msgid "Make a batch request" msgstr "Vzneste hromadný dotaz" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Vzneste dotaz" @@ -624,6 +669,9 @@ msgstr "Ne" msgid "No bodies selected" msgstr "Žádná instituce nebyla vybrána" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "K tomuto hromadnému dotazu nemůže být přidána žádná další instituce" @@ -663,6 +711,9 @@ msgstr "Počet uživatelů zkušební verze zdarma:" msgid "Number of paying users:" msgstr "Počet platících uživatelů:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Jakmile skončí období, po kterou je váš dotaz skryt, vše, co bylo napsáno k tomuto dotazu, včetně vašeho jména, bude zveřejněno na těchto stránkách. Vaše další osobní údaje (datum narození, adresa) jsou z odpovědí odstraněny." @@ -687,6 +738,9 @@ msgstr "Až budete hotovi, zveřejnění informací a dat z vašeho projektu dod msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Přetékající doručená pošta?" @@ -777,6 +831,9 @@ msgstr "Profesionální" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Doplňte více informací o tomto dotazu a vysvětlete důvody, které vás vedly k jeho vznesení. " @@ -808,6 +865,9 @@ msgstr "Připraveno k veřejnému publikování " msgid "Refer a friend" msgstr "Doporučte přítele" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Pamatujte, že instituce mají na odpověď {{late_number_of_days}} dnů. " @@ -820,6 +880,15 @@ msgstr "Připomínky" msgid "Remove" msgstr "Odstranit" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Odpovědi" @@ -890,6 +959,9 @@ msgstr "Vyhledejte instituci" msgid "Search for an authority by name" msgstr "Hledejte instituci podle názvu" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Hledat {{search_term}} v {{filter_description}} seřazeno podle {{order_description}} vymazat" @@ -949,12 +1021,10 @@ msgstr "Nastavení" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Sdílejte tento kód {{discount_code}} s přáteli či kolegy, budou moci při registraci využít {{discount_terms}}. " -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Ukázat detail {{count}} žádosti" -msgstr[1] "Ukázat detail {{count}} žádostí" -msgstr[2] "Ukázat detail {{count}} žádostí" -msgstr[3] "Ukazát detail {{count}} žádosti" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Přihlaste se" @@ -965,6 +1035,9 @@ msgstr "Jednoduché a dostupné ceny" msgid "Sorry, no authorities matched that search" msgstr "Je nám líto, žádné instituce neodpovídají těmto parametrům," +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Je nám líto, něco se stalo při vyhledávání výsledků, prosím zkuste to znovu." @@ -1156,6 +1229,9 @@ msgstr "Aktualizovat" msgid "Update Card Details" msgstr "Aktualizujte údaje o platební kartě" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Aktualizujte stav dotazu." @@ -1187,6 +1263,9 @@ msgstr "" msgid "View authorities" msgstr "Zobrazit instituce" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Zeď" @@ -1274,6 +1353,9 @@ msgstr "Své předplatné {{pro_site_name}} jste úspěšně zrušil/a." msgid "You haven't added any authorities to your batch yet" msgstr "Zatím jste nepřidali žádné instituce do svého hromadného dotazu" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Víte, co způsobilo chybu a můžete navrhnout řešení, například správnou e-mailovou adresu." @@ -1397,6 +1479,12 @@ msgstr "naposledy aktualizováno" msgid "or start a batch request" msgstr "nebo začněte hromadný dotaz" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "žádosti, které budou brzy zveřejněny" @@ -1514,3 +1602,6 @@ msgstr "{{public_body_name}} má zpoždění s odpovědí na váš dotaz \"{{inf msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} má velké zpoždění s odpovědí na váš dotaz \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/cy/app.po b/locale_alaveteli_pro/cy/app.po index 9fca2deef1..fb0250ddff 100644 --- a/locale_alaveteli_pro/cy/app.po +++ b/locale_alaveteli_pro/cy/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Carl Morris , 2019\n" "Language-Team: Welsh (https://app.transifex.com/mysociety/teams/33529/cy/)\n" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 Mis" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -123,6 +111,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -189,6 +180,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Ychwanegwyd" @@ -201,6 +207,12 @@ msgstr "Eich ceisiadau" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -258,6 +270,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -267,9 +282,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Pori ceisiadau cyhoeddus" - msgid "CSV" msgstr "" @@ -312,6 +324,9 @@ msgstr "" msgid "Choose a duration" msgstr "Dewis hyd" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -321,12 +336,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Wedi creu" @@ -369,6 +396,9 @@ msgstr "Drafft" msgid "Drafts" msgstr "Drafftiau" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Golygu'ch cais" @@ -390,6 +420,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -453,6 +486,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -513,6 +549,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -564,6 +606,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Gwneud cais" @@ -621,6 +666,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -660,6 +708,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -684,6 +735,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -774,6 +828,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -803,6 +860,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -815,6 +875,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -883,6 +952,9 @@ msgstr "Chwilio am awdurdod" msgid "Search for an authority by name" msgstr "Chwilio am awdurdod gydag enw" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -938,8 +1010,8 @@ msgstr "Gosodiadau" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -952,6 +1024,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1139,6 +1214,9 @@ msgstr "Diweddaru" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1168,6 +1246,9 @@ msgstr "" msgid "View authorities" msgstr "Gweld awdurdodau" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1255,6 +1336,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1378,6 +1462,12 @@ msgstr "diweddarwyd diwethaf" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "ceisiadau caiff eu gwneud yn gyhoeddus yn fuan" @@ -1479,3 +1569,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/de/app.po b/locale_alaveteli_pro/de/app.po index 3678b7a3c2..cb1afab036 100644 --- a/locale_alaveteli_pro/de/app.po +++ b/locale_alaveteli_pro/de/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: German (https://app.transifex.com/mysociety/teams/33529/de/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/el/app.po b/locale_alaveteli_pro/el/app.po index a62c92cd69..9e421ff5cf 100644 --- a/locale_alaveteli_pro/el/app.po +++ b/locale_alaveteli_pro/el/app.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2021\n" "Language-Team: Greek (https://app.transifex.com/mysociety/teams/33529/el/)\n" @@ -39,9 +39,6 @@ msgstr[1] "(περιλαμβάνει {{count}} συνδρομητές που ε msgid "(no title)" msgstr "(Κανένας τίτλος)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(εφαρμόζεται έκπτωση με{{discount_name}} )" - msgid "12 Months" msgstr "12 μήνες" @@ -63,12 +60,6 @@ msgstr "Sold From Under You - Το γραφείο msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} από {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} ανά χρήστη, ανά μήνα" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}}ανά χρήστη, ανά έτος" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "Επαλήθευση παράδοσης για απόδειξη παραλαβής" -msgid "Delivery verification for proof of receipt" -msgstr "Επαλήθευση παράδοσης για απόδειξη παραλαβής" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Λάβετε τακτικές ενημερώσεις καθώς οι απαντήσεις έρχονται — χωρίς να κατακλύζονται τα εισερχόμενά σας" @@ -123,6 +111,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} τελευταία ψηφία {{last4}}, λήξη {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} ταξινομημένο κατά {{order_description}} εκκαθάριση" @@ -189,6 +180,21 @@ msgstr "Προσθέστε αρχές στην δέσμη σας" msgid "Add credibility" msgstr "Προσθέστε αξιοπιστία" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Προστέθηκε" @@ -201,6 +207,12 @@ msgstr "Όλα τα αιτήματα" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Όλα τα αιτήματα εντός αυτής της παρτίδας θα παραμείνουν ιδιωτικά για την ίδια διάρκεια. Όταν ένα μεμονωμένο αίτημα δημοσιοποιείται, όλα τα άλλα αιτήματα αυτής της παρτίδας θα δημοσιεύονται επίσης στο {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Επίσης ονομάζεται {{other_name}}" @@ -258,6 +270,9 @@ msgstr "Χρέωση: Μηνιαία" msgid "Billed: Weekly" msgstr "Χρεώνεται: Εβδομαδιαία" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Χρέωση" @@ -267,9 +282,6 @@ msgstr "Φέρνοντας στο φως τα γεγονότα σχετικά μ msgid "Browse by category" msgstr "Αναζήτηση κατά κατηγορία" -msgid "Browse public requests" -msgstr "Φυλλομέτρηση δημοσιοποιημένων αιτημάτων" - msgid "CSV" msgstr "CSV" @@ -312,6 +324,9 @@ msgstr "Ελέγξτε ότι δεν συμπεριλάβατε καμία which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Ο Gavin Chait ερεύνησε 350 τοπικές αρχές για να ανακαλύψει ποιες εμπορικές εγκαταστάσεις ήταν άδειες, προκειμένου να δώσει ένα χέρι βοήθειας στις νεοσύστατες επιχειρήσεις." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Θέλετε ενημερώσεις μέσω email σχετικά με το {{pro_site_name}};" @@ -513,6 +549,12 @@ msgstr "Διερεύνηση για τη χρήση αμιάντου σε σχο msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "Η ερευνητική δημοσιογράφος Jenna Corderoy έχει κάνει καλή χρήση των ιδιωτικών χαρακτηριστικών του Pro, διατηρώντας απόρρητες τις εκτεταμένες έρευνες που σχετίζονται με το Brexit, μέχρι να βγουν στην επιφάνεια οι ιστορίες της και να αποκαλύψει γεγονότα σχετικά με τις υπερβολικές δαπάνες της καμπάνιας και την έρευνα ERG στο κοινό, μεταξύ πολλών άλλων σημαντικών ιστοριών." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -564,6 +606,9 @@ msgstr "" msgid "Make a batch request" msgstr "Μελετήστε ένα αίτημα παρτίδας" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Υποβάλλετε αίτημα" @@ -621,6 +666,9 @@ msgstr "Όχι" msgid "No bodies selected" msgstr "Δεν επιλέχθηκε κείμενο" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Δεν μπορούν να προστεθούν επιπλέον αρχές στο παρόν αίτημα δέσμης." @@ -660,6 +708,9 @@ msgstr "Αριθμός χρηστών που χρησιμοποιούν δωρε msgid "Number of paying users:" msgstr "Αριθμός χρηστών που πληρώνουν:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Μόλις λήξει η περίοδος προστασίας προσωπικών δεδομένων, όλα όσα εισάγετε σε αυτή τη σελίδα, συμπεριλαμβανομένου του ονόματός σας θα εμφανίζονται δημόσια σε αυτόν τον ιστότοπο." @@ -684,6 +735,9 @@ msgstr "Μόλις είστε έτοιμοι, η δημοσίευση των δ msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Γέμισαν τα εισερχόμενα;" @@ -774,6 +828,9 @@ msgstr "Επαγγελματικό" msgid "Profile" msgstr "Προφίλ" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Παραθέστε περισσότερα σχετικά με το αίτημα και τους λόγους για τους οποίους το καταθέτετε." @@ -803,6 +860,9 @@ msgstr "Έτοιμοι για δημοσίευση; " msgid "Refer a friend" msgstr "Συστήστε έναν φίλο" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Θυμηθείτε, οι δημόσιες αρχές οφείλουν να ανταποκριθούν σε αιτήματα κατάθεσης εγγράφων και πρόσβασης στη δημόσια πληροφορία εντός {{late_number_of_days}} ημερολογιακών ημερών." @@ -815,6 +875,15 @@ msgstr "Υπενθυμίσεις " msgid "Remove" msgstr "Αφαίρεση " +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Απαντήσεις" @@ -883,6 +952,9 @@ msgstr "Αναζήτηση αρχής" msgid "Search for an authority by name" msgstr "Αναζήτηση αρχής ονομαστικά" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Αναζήτηση για {{search_term}} σε {{filter_description}} ταξινόμηση ανά {{order_description}}εκκαθάριση" @@ -938,10 +1010,10 @@ msgstr "Ρυθμίσεις" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Μοιραστείτε τον κωδικό {{discount_code}} με έναν φίλο για να τους προσφέρετε {{discount_terms}} για εγγραφή." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Δείξε {{count}} αιτήματα με λεπτομέρειες 1" -msgstr[1] "Δείξε {{count}} αιτήματα με λεπτομέρειες " +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "εγγραφείτε" @@ -952,6 +1024,9 @@ msgstr "Απλή, προσιτή τιμολόγηση" msgid "Sorry, no authorities matched that search" msgstr "Λυπούμαστε, καμία αρχή δεν ταυτοποιήθηκε στην αναζήτηση αυτή." +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Λυπούμαστε, υπήρξε κάποιο πρόβλημα στην εύρεση των αποτελεσμάτων σας, παρακαλούμε πραγματοποιήστε νέα αναζήτηση" @@ -1139,6 +1214,9 @@ msgstr "Επικαιροποίηση" msgid "Update Card Details" msgstr "Ανανεώστε τα στοιχεία της κάρτας σας" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Ανανέωση καταστάσεων." @@ -1168,6 +1246,9 @@ msgstr "" msgid "View authorities" msgstr "Επισκόπηση αρχών" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Τοίχος" @@ -1255,6 +1336,9 @@ msgstr "Έχετε ακυρώσει επιτυχώς τη συνδρομή σα msgid "You haven't added any authorities to your batch yet" msgstr "Δεν έχετε προσθέσει ακόμα καμία αρχή στην δέσμη σας" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Γνωρίζετε τι προκάλεσε το λάθος, και μπορείτε να προτείνετε μια λύση, όπως μια διεύθυνση ηλεκτρονικού ταχυδρομείου που να λειτουργεί." @@ -1378,6 +1462,12 @@ msgstr "τελευταία επικαιροποίηση" msgid "or start a batch request" msgstr "ή να ξεκινήσετε ένα αίτημα δέσμης" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "αιτήματα που θα δημοσιοποιηθούν άμεσα" @@ -1479,3 +1569,6 @@ msgstr "Ο/Η/Το {{public_body_name}} έχει καθυστερήσει να msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "Ο/Η {{public_body_name}} είναι εκπρόθεσμος/η στην απάντηση προς το {{info_request_title}}\" αίτημα σας. " + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/en/app.po b/locale_alaveteli_pro/en/app.po index 6d941de3b9..c13f5255dc 100644 --- a/locale_alaveteli_pro/en/app.po +++ b/locale_alaveteli_pro/en/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-01-20 17:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,9 +34,6 @@ msgstr[1] "(includes {{count}} returning subscribers)" msgid "(no title)" msgstr "(no title)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(with {{discount_name}} discount applied)" - msgid "12 Months" msgstr "12 Months" @@ -58,12 +55,6 @@ msgstr "Sold From Under You — the Bureau of inve msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} of {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} per user, per month" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} per user, per year" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Action alerts: know when it’s time to take the next step" @@ -73,9 +64,6 @@ msgstr "Daily summary emails to k msgid "Delivery verification for proof of receipt" msgstr "Delivery verification for proof of receipt" -msgid "Delivery verification for proof of receipt" -msgstr "Delivery verification for proof of receipt" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Get regular updates as the responses come in — without overwhelming your inbox" @@ -118,6 +106,9 @@ msgstr "You have already sent this request to some authorities msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "{{discounted_amount}} with discount {{discount_name}} applied" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} sorted by {{order_description}} clear" @@ -184,6 +175,21 @@ msgstr "Add authorities to your batch" msgid "Add credibility" msgstr "Add credibility" +msgid "Add question" +msgstr "Add question" + +msgid "Add questions to your project" +msgstr "Add questions to your project" + +msgid "Add request" +msgstr "Add request" + +msgid "Add requests to your project" +msgstr "Add requests to your project" + +msgid "Add whole batch and related requests" +msgstr "Add whole batch and related requests" + msgid "Added" msgstr "Added" @@ -196,6 +202,12 @@ msgstr "All requests" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." +msgid "Allow blank" +msgstr "Allow blank" + +msgid "Allow muliple" +msgstr "Allow muliple" + msgid "Also called {{other_name}}." msgstr "Also called {{other_name}}" @@ -253,6 +265,9 @@ msgstr "Billed: Monthly" msgid "Billed: Weekly" msgstr "Billed: Weekly" +msgid "Billed: every {{interval}}" +msgstr "Billed: every {{interval}}" + msgid "Billing" msgstr "Billing" @@ -262,9 +277,6 @@ msgstr "Bringing facts about campagin overspending to light with the privacy fea msgid "Browse by category" msgstr "Browse by category" -msgid "Browse public requests" -msgstr "Browse public requests" - msgid "CSV" msgstr "CSV" @@ -307,6 +319,9 @@ msgstr "Check you haven't included any personal information." msgid "Choose a duration" msgstr "Choose a duration" +msgid "Classify responses" +msgstr "Classify responses" + msgid "Collapse all correspondence" msgstr "Collapse all correspondence" @@ -316,12 +331,24 @@ msgstr "Confirm your account on {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Continuing with checkout requires your browser to have JavaScript enabled." +msgid "Copied!" +msgstr "Copied!" + +msgid "Copy" +msgstr "Copy" + msgid "Coupon code has expired." msgstr "Coupon code has expired." msgid "Coupon code is invalid." msgstr "Coupon code is invalid." +msgid "Create Project" +msgstr "Create Project" + +msgid "Create a new Project" +msgstr "Create a new Project" + msgid "Created" msgstr "Created" @@ -364,6 +391,9 @@ msgstr "Draft" msgid "Drafts" msgstr "Drafts" +msgid "Edit your project" +msgstr "Edit your project" + msgid "Edit your request" msgstr "Edit your request" @@ -385,6 +415,9 @@ msgstr "Expand all correspondence" msgid "Expires soon" msgstr "Expires soon" +msgid "Extract data" +msgstr "Extract data" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "FOI Management Tools for journalists, campaigners and researchers" @@ -448,6 +481,9 @@ msgstr "From this screen you can see what you need to do next to keep your reque msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." +msgid "Generate invite link" +msgstr "Generate invite link" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Get email updates about {{pro_site_name}}?" @@ -508,6 +544,12 @@ msgstr "Investigating asbestos use in schools" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." +msgid "Invite contributors" +msgstr "Invite contributors" + +msgid "Invite others to the project" +msgstr "Invite others to the project" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "Invoice {{invoice_number}} for {{invoice_amount}}" @@ -559,6 +601,9 @@ msgstr "Lucie Stephens, prompted by the death of someone she cared about, reques msgid "Make a batch request" msgstr "Make a batch request" +msgid "Make a project" +msgstr "Make a project" + msgid "Make a request" msgstr "Make a request" @@ -616,6 +661,9 @@ msgstr "No" msgid "No bodies selected" msgstr "No bodies selected" +msgid "No contributors have joined this project yet" +msgstr "No contributors have joined this project yet" + msgid "No more authorities can be added to this batch request." msgstr "No more authorities can be added to this batch request." @@ -655,6 +703,9 @@ msgstr "Number of free trial users:" msgid "Number of paying users:" msgstr "Number of paying users:" +msgid "On the project" +msgstr "On the project" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." @@ -679,6 +730,9 @@ msgstr "Once you’re ready, publishing the data behind your investigation lends msgid "Open" msgstr "Open" +msgid "Options" +msgstr "Options" + msgid "Overflowing inbox?" msgstr "Overflowing inbox?" @@ -769,6 +823,9 @@ msgstr "Professional" msgid "Profile" msgstr "Profile" +msgid "Projects" +msgstr "Projects" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Provide extra context on the request and your reasons for making it." @@ -798,6 +855,9 @@ msgstr "Ready to go public" msgid "Refer a friend" msgstr "Refer a friend" +msgid "Regenerate invite link" +msgstr "Regenerate invite link" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." @@ -810,6 +870,15 @@ msgstr "Reminders" msgid "Remove" msgstr "Remove" +msgid "Remove question" +msgstr "Remove question" + +msgid "Remove request" +msgstr "Remove request" + +msgid "Remove whole batch" +msgstr "Remove whole batch" + msgid "Replies" msgstr "Replies" @@ -878,6 +947,9 @@ msgstr "Search for an authority" msgid "Search for an authority by name" msgstr "Search for an authority by name" +msgid "Search your requests by title" +msgstr "Search your requests by title" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" @@ -933,10 +1005,10 @@ msgstr "Settings" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Show {{count}} request in detail" -msgstr[1] "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "Show {{count}} request in detail" +msgstr[1] "Show {{count}} requests in detail" msgid "Sign up" msgstr "Sign up" @@ -947,6 +1019,9 @@ msgstr "Simple, affordable pricing" msgid "Sorry, no authorities matched that search" msgstr "Sorry, no authorities matched that search" +msgid "Sorry, no requests matched that search" +msgstr "Sorry, no requests matched that search" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Sorry, something went wrong getting your results, please try searching again." @@ -1134,6 +1209,9 @@ msgstr "Update" msgid "Update Card Details" msgstr "Update Card Details" +msgid "Update Project" +msgstr "Update Project" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Update its status." @@ -1163,6 +1241,9 @@ msgstr "View Receipt" msgid "View authorities" msgstr "View authorities" +msgid "View public requests" +msgstr "View public requests" + msgid "Wall" msgstr "Wall" @@ -1250,6 +1331,9 @@ msgstr "You have successfully cancelled your subscription to {{pro_site_name}}" msgid "You haven't added any authorities to your batch yet" msgstr "You haven't added any authorities to your batch yet" +msgid "You haven't added any reqeusts to your project yet" +msgstr "You haven't added any reqeusts to your project yet" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "You know what caused the error, and can suggest a solution, such as a working email address." @@ -1373,6 +1457,12 @@ msgstr "last updated" msgid "or start a batch request" msgstr "or start a batch request" +msgid "per user, every {{interval}}" +msgstr "per user, every {{interval}}" + +msgid "per user, per {{interval}}" +msgstr "per user, per {{interval}}" + msgid "requests that will be made public soon" msgstr "requests that will be made public soon" @@ -1474,3 +1564,6 @@ msgstr "{{public_body_name}} are delayed in responding to your request \"{{info_ msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "{{site_name}} Projects is a early beta feature." diff --git a/locale_alaveteli_pro/en_HK/app.po b/locale_alaveteli_pro/en_HK/app.po index 46d0a11199..f90435498a 100644 --- a/locale_alaveteli_pro/en_HK/app.po +++ b/locale_alaveteli_pro/en_HK/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: English (Hong Kong) (https://app.transifex.com/mysociety/teams/" "33529/en_HK/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/en_IE/app.po b/locale_alaveteli_pro/en_IE/app.po index 1dcb39a726..32157ddabe 100644 --- a/locale_alaveteli_pro/en_IE/app.po +++ b/locale_alaveteli_pro/en_IE/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: English (Ireland) (https://app.transifex.com/mysociety/teams/33" "529/en_IE/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/en_UG/app.po b/locale_alaveteli_pro/en_UG/app.po index e0ce154d7a..4f24fd55ec 100644 --- a/locale_alaveteli_pro/en_UG/app.po +++ b/locale_alaveteli_pro/en_UG/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: English (Uganda) (https://app.transifex.com/mysociety/teams/335" "29/en_UG/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/en_US/app.po b/locale_alaveteli_pro/en_US/app.po index 34be58b8a8..1aa979e38c 100644 --- a/locale_alaveteli_pro/en_US/app.po +++ b/locale_alaveteli_pro/en_US/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: English (United States) (https://app.transifex.com/mysociety/te" "ams/33529/en_US/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/es/app.po b/locale_alaveteli_pro/es/app.po index cf25190985..f46f6bf302 100644 --- a/locale_alaveteli_pro/es/app.po +++ b/locale_alaveteli_pro/es/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Anatoli Pena , 2018\n" "Language-Team: Spanish (https://app.transifex.com/mysociety/teams/33529/es/)\n" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(sin titulo)" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 Meses" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -125,6 +113,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} ordenado por {{order_description}} despejar" @@ -191,6 +182,21 @@ msgstr "Añadir autoridades a su lote" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Añadido" @@ -203,6 +209,12 @@ msgstr "Todas las solicitudes" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -260,6 +272,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -269,9 +284,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Buscar solicitudes públicas" - msgid "CSV" msgstr "" @@ -314,6 +326,9 @@ msgstr "Compruebe que no ha incluido ninguna información personalwhich commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -515,6 +551,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -566,6 +608,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Enviar solicitud" @@ -623,6 +668,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -662,6 +710,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -686,6 +737,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -776,6 +830,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Proporcione un contexto adicional en la solicitud y sus razones para hacerlo." @@ -806,6 +863,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Recuerde que las autoridades públicas tienen {{late_number_of_days}} días calendario para responder a las solicitudes de Libertad de Información." @@ -818,6 +878,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -887,6 +956,9 @@ msgstr "Buscar una autoridad" msgid "Search for an authority by name" msgstr "Buscar una autoridad por nombre" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Buscando {{search_term}} en {{filter_description}} ordenado por {{order_description}} despejar " @@ -943,8 +1015,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -957,6 +1029,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Lo sentimos, ninguna autoridad coincide con esa búsqueda." +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Lo sentimos, algo salió mal al obtener sus resultados. Por favor, inténtelo de nuevo." @@ -1145,6 +1220,9 @@ msgstr "Actualizar" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Actualizar su estado." @@ -1175,6 +1253,9 @@ msgstr "" msgid "View authorities" msgstr "Ver organismos públicos" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1262,6 +1343,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1385,6 +1469,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1486,3 +1576,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/es_AR/app.po b/locale_alaveteli_pro/es_AR/app.po index 2d1b57d396..43e702e09f 100644 --- a/locale_alaveteli_pro/es_AR/app.po +++ b/locale_alaveteli_pro/es_AR/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2020\n" "Language-Team: Spanish (Argentina) (https://app.transifex.com/mysociety/teams/" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(sin titulo)" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 Meses" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -125,6 +113,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} ordenado por {{order_description}} despejar" @@ -191,6 +182,21 @@ msgstr "Añadir autoridades a su lote" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Añadido" @@ -203,6 +209,12 @@ msgstr "Todas las solicitudes" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -260,6 +272,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -269,9 +284,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Buscar solicitudes públicas" - msgid "CSV" msgstr "" @@ -314,6 +326,9 @@ msgstr "Compruebe que no ha incluido ninguna información personalwhich commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -515,6 +551,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -566,6 +608,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Enviar solicitud" @@ -623,6 +668,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -662,6 +710,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -686,6 +737,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -776,6 +830,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Proporcione un contexto adicional en la solicitud y sus razones para hacerlo." @@ -806,6 +863,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Recuerde que las autoridades públicas tienen {{late_number_of_days}} días calendario para responder a las solicitudes de Libertad de Información." @@ -818,6 +878,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -887,6 +956,9 @@ msgstr "Buscar una autoridad" msgid "Search for an authority by name" msgstr "Buscar una autoridad por nombre" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Buscando {{search_term}} en {{filter_description}} ordenado por {{order_description}} despejar " @@ -943,8 +1015,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -957,6 +1029,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Lo sentimos, ninguna autoridad coincide con esa búsqueda." +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Lo sentimos, algo salió mal al obtener sus resultados. Por favor, inténtelo de nuevo." @@ -1145,6 +1220,9 @@ msgstr "Actualizar" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Actualizar su estado." @@ -1175,6 +1253,9 @@ msgstr "" msgid "View authorities" msgstr "Ver organismos públicos" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1262,6 +1343,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1385,6 +1469,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1486,3 +1576,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/es_NI/app.po b/locale_alaveteli_pro/es_NI/app.po index 94b5b1b935..1d2fe65ae7 100644 --- a/locale_alaveteli_pro/es_NI/app.po +++ b/locale_alaveteli_pro/es_NI/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: louisecrow , 2017\n" "Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mysociety/teams/" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 Meses" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -123,6 +111,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr " {{filter_description}} ordenado por {{order_description}} borrar " @@ -189,6 +180,21 @@ msgstr "Añadir Entidad a su Grupo" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Adicional" @@ -201,6 +207,12 @@ msgstr "Todas las solicitudes" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -258,6 +270,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -267,9 +282,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Buscar solicitudes públicas" - msgid "CSV" msgstr "" @@ -312,6 +324,9 @@ msgstr "Compruebe que no ha incluido ninguna información personal which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -513,6 +549,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -564,6 +606,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Hacer una solicitud" @@ -621,6 +666,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -660,6 +708,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -684,6 +735,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -774,6 +828,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Proporcione un contexto adicional en la solicitud y sus razones para hacerlo." @@ -804,6 +861,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Recuerde que las entidades públicas tienen {{late_number_of_days}} días calendario para responder a las solicitudes de OAIP." @@ -816,6 +876,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -885,6 +954,9 @@ msgstr "Buscar una entidad" msgid "Search for an authority by name" msgstr "Buscar una entidad por nombre" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Buscando {{search_term}} en {{filter_description}} ordenado por {{order_description}} borrar " @@ -941,8 +1013,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -955,6 +1027,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Lo sentimos, ninguna entidad coincide con esa búsqueda." +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Lo sentimos, algo salió mal al obtener los resultados. Inténtalo de nuevo." @@ -1143,6 +1218,9 @@ msgstr "Actualizar" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Actualizar Status" @@ -1173,6 +1251,9 @@ msgstr "" msgid "View authorities" msgstr "Ver las entidades" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1260,6 +1341,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "Todavía no has añadido ninguna entidad a tu grupo" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Sabes lo que causó el error, y puedes sugerir una solución , como una dirección de correo electrónico que funcione." @@ -1383,6 +1467,12 @@ msgstr "última actualización" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "Solicitudes que se harán públicas pronto" @@ -1489,3 +1579,6 @@ msgstr "{{Public_body_name}} se demoran en responder a su solicitud \"{{info_req msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{Public_body_name}} tardó mucho tiempo en responder a su solicitud \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/es_PA/app.po b/locale_alaveteli_pro/es_PA/app.po index a03b807603..55689a450e 100644 --- a/locale_alaveteli_pro/es_PA/app.po +++ b/locale_alaveteli_pro/es_PA/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Spanish (Panama) (https://app.transifex.com/mysociety/teams/335" "29/es_PA/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/es_PY/app.po b/locale_alaveteli_pro/es_PY/app.po index f96545b392..ac60d4657b 100644 --- a/locale_alaveteli_pro/es_PY/app.po +++ b/locale_alaveteli_pro/es_PY/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Spanish (Paraguay) (https://app.transifex.com/mysociety/teams/3" "3529/es_PY/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/eu/app.po b/locale_alaveteli_pro/eu/app.po index 8e113a4f67..1e76dc7fe8 100644 --- a/locale_alaveteli_pro/eu/app.po +++ b/locale_alaveteli_pro/eu/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Basque (https://app.transifex.com/mysociety/teams/33529/eu/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fa/app.po b/locale_alaveteli_pro/fa/app.po index 43184de201..8f32efeea8 100644 --- a/locale_alaveteli_pro/fa/app.po +++ b/locale_alaveteli_pro/fa/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Persian (https://app.transifex.com/mysociety/teams/33529/fa/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fi/app.po b/locale_alaveteli_pro/fi/app.po index bff4af0105..793f129043 100644 --- a/locale_alaveteli_pro/fi/app.po +++ b/locale_alaveteli_pro/fi/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Finnish (https://app.transifex.com/mysociety/teams/33529/fi/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fr/app.po b/locale_alaveteli_pro/fr/app.po index 992fc4ce8b..8a39e17035 100644 --- a/locale_alaveteli_pro/fr/app.po +++ b/locale_alaveteli_pro/fr/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: French (https://app.transifex.com/mysociety/teams/33529/fr/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fr_BE/app.po b/locale_alaveteli_pro/fr_BE/app.po index 2b478ef4a1..791402eaac 100644 --- a/locale_alaveteli_pro/fr_BE/app.po +++ b/locale_alaveteli_pro/fr_BE/app.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2021\n" "Language-Team: French (Belgium) (https://app.transifex.com/mysociety/teams/335" @@ -46,9 +46,6 @@ msgstr[2] "(comprend {{count}} abonné récurrent)" msgid "(no title)" msgstr "(sans titre)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(pour {{discount_name}} une réduction est d'application)" - msgid "12 Months" msgstr "12 mois" @@ -70,12 +67,6 @@ msgstr "Sold From Under You le Bureau du journalis msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} de {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} par utilisateur, par mois" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} par utilisateur, par an" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Alertes d'action : soignez informé lorsqu'il est temps de passer à l'étape suivante" @@ -85,9 +76,6 @@ msgstr "Emails récapitulatifs quotidiens< msgid "Delivery verification for proof of receipt" msgstr "Vérification de la livraison pour preuve de réception" -msgid "Delivery verification for proof of receipt" -msgstr "Vérification de la livraison pour preuve de réception" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Recevez des mises à jour régulières au fur et à mesure que les réponses arrivent - sans surcharger votre boîte de réception" @@ -130,6 +118,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} se termine dans {{last4}}, date d'expiration {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} classé par {{order_description}} réinitialiser" @@ -196,6 +187,21 @@ msgstr "Ajouter des autorités publiques à votre groupe" msgid "Add credibility" msgstr "Ajouter de la crédibilité" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Ajouté" @@ -208,6 +214,12 @@ msgstr "Toutes les demandes" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Toutes vos demandes de ce paquet resteront privées durant la même période. Lorsqu'une seule des demandes du paquet est publiée, toutes les autres seront également publiées sur {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Aussi appelé {{other_name}}" @@ -265,6 +277,9 @@ msgstr "Facturation: mensuelle" msgid "Billed: Weekly" msgstr "Facturation: hebdomadaire" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Facturation" @@ -274,9 +289,6 @@ msgstr "Apporter des faits sur les dépenses excessives de la campagne pour mett msgid "Browse by category" msgstr "Naviguer par catégorie" -msgid "Browse public requests" -msgstr "Consulter les demandes publiques" - msgid "CSV" msgstr "CSV" @@ -319,6 +331,9 @@ msgstr "Vérifiez que vous n'avez ajouté aucune information personnelle msgid "Choose a duration" msgstr "Choisissez une durée" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Réduire toute la correspondance" @@ -328,12 +343,24 @@ msgstr "Confirmez votre compte sur {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Pour continuer le checkout, votre navigateur doit avoir l'option Javascript activée." +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Le code du coupon a expiré." msgid "Coupon code is invalid." msgstr "Le code du coupon n'est pas valable." +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Créé" @@ -376,6 +403,9 @@ msgstr "Brouillon" msgid "Drafts" msgstr "Brouillons" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Modifier votre demande" @@ -397,6 +427,9 @@ msgstr "Développer toute la correspondance" msgid "Expires soon" msgstr "Expire bientôt" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "Outils de gestion de la liberté d'accès à l'information pour les journalistes, les militants et les chercheurs" @@ -460,6 +493,9 @@ msgstr "Depuis cet écran vous pouvez voir ce dont vous avez besoin de faire pou msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait a interrogé 350 autorités locales pour savoir quels locaux commerciaux étaient vides, afin de donner un coup de main aux entreprises en démarrage." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Voulez-vous recevoir des notifications par e-mail pour {{pro_site_name}} ?" @@ -520,6 +556,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "La journaliste d'investigation Jenna Corderoy a fait bon usage des fonctionnalités de confidentialité de Pro, en gardant privées ses enquêtes liées au Brexit jusqu'à ce que ses histoires soient divulguées, apportant au public des faits sur les dépenses excessives de campagne et la recherche sur l'ERG, parmi plusieurs autres histoires importantes." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -571,6 +613,9 @@ msgstr "Lucie Stephens, interpellée par le décès d'une personne qu'elle aimai msgid "Make a batch request" msgstr "Faire un paquet de demandes" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Faire une demande" @@ -628,6 +673,9 @@ msgstr "Non" msgid "No bodies selected" msgstr "Aucun organisme sélectionné" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Aucune autre autorité ne peut être ajoutée à cet ensemble de demandes." @@ -667,6 +715,9 @@ msgstr "Nombre d'utilisateurs de l'offre d'essai gratuit :" msgid "Number of paying users:" msgstr "Nombre d'utilisateurs payants :" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Une fois la période d'embargo terminée, tout ce que vous indiquez dans cette page, y compris votre nom, sera publié sur ce site." @@ -691,6 +742,9 @@ msgstr "Une fois que vous êtes prêt, publier les données derrière votre enqu msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Boîte de réception qui déborde ?" @@ -781,6 +835,9 @@ msgstr "Professionnel" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Fournissez un contexte supplémentaire à propos de la demande et les raisons pour laquelle vous l'avez faite." @@ -811,6 +868,9 @@ msgstr "Prêt à être rendu public" msgid "Refer a friend" msgstr "Parrainez un(e) ami(e)" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Pour rappel, les autorités publiques ont {{late_number_of_days}} jours pour répondre aux demandes d'accès aux documents publics." @@ -823,6 +883,15 @@ msgstr "Rappels" msgid "Remove" msgstr "Retirer" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Réponses" @@ -892,6 +961,9 @@ msgstr "Rechercher une autorité publique" msgid "Search for an authority by name" msgstr "Rechercher une autorité par nom" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Rechercher pour {{search_term}} dans {{filter_description}} classé par {{order_description}} réinitialiser" @@ -949,11 +1021,10 @@ msgstr "Paramètres" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Partagez le code {{discount_code}} avec un(e) ami(e) pour leur donner {{discount_terms}} lors de leur inscription." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Montrer les détails de {{count}} demande" -msgstr[1] "Montrer les détails de {{count}} demandes" -msgstr[2] "Montrer les détails de {{count}} demandes" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Déconnectez-vous" @@ -964,6 +1035,9 @@ msgstr "Tarification simple et abordable" msgid "Sorry, no authorities matched that search" msgstr "Désolé, aucune autorité ne correspond à cette recherche" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Désolé, quelque chose s'est mal passé, merci de relancer votre recherche." @@ -1153,6 +1227,9 @@ msgstr "Mettre à jour" msgid "Update Card Details" msgstr "Mettre à jour les informations de la carte" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Mettre à jour son statut" @@ -1183,6 +1260,9 @@ msgstr "" msgid "View authorities" msgstr "Voir les autorités publiques" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Mur" @@ -1270,6 +1350,9 @@ msgstr "L'annullation de votre abonnement à {{pro_site_name}} a réussi" msgid "You haven't added any authorities to your batch yet" msgstr "Vous n'avez pas encore ajouté d'autorités à votre paquet de demandes" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Vous savez ce qui a causé l'erreur et pouvez suggérer une solution, comme une adresse email professionnelle." @@ -1393,6 +1476,12 @@ msgstr "Dernière mise à jour" msgid "or start a batch request" msgstr "ou débuter une demande par lot" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "Demandes qui seront prochainement rendues publiques" @@ -1502,3 +1591,6 @@ msgstr "{{public_body_name}} est en retard pour répondre à votre demande \"{{i msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} est très en retard pour répondre à votre demande \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fr_CA/app.po b/locale_alaveteli_pro/fr_CA/app.po index ec9e49fd7b..cadfb05905 100644 --- a/locale_alaveteli_pro/fr_CA/app.po +++ b/locale_alaveteli_pro/fr_CA/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: French (Canada) (https://app.transifex.com/mysociety/teams/3352" "9/fr_CA/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/fr_FR/app.po b/locale_alaveteli_pro/fr_FR/app.po index 56c84a9e33..22750abfd8 100644 --- a/locale_alaveteli_pro/fr_FR/app.po +++ b/locale_alaveteli_pro/fr_FR/app.po @@ -10,14 +10,13 @@ # Pascal Romain , 2020 # pierre chrzanowski , 2021 # Eda , 2023 -# Graeme Porteous , 2023 # Laurent S, 2023 # msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Laurent S, 2023\n" "Language-Team: French (France) (https://app.transifex.com/mysociety/teams/3352" @@ -47,9 +46,6 @@ msgstr[2] "(incluant {{count}} anciens souscripteurs)" msgid "(no title)" msgstr "(sans titre)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(pour {{discount_name}} une réduction est appliqué)" - msgid "12 Months" msgstr "12 mois" @@ -71,12 +67,6 @@ msgstr "Sold From Under You — en Angleterre le b msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} de {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} par utilisateur.rice, par mois" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} par utilisateur.rice, par an." - msgid "Action alerts: know when it’s time to take the next step" msgstr "Des alertes pour être informé quand une action est requise de votre part" @@ -86,9 +76,6 @@ msgstr "Un email de résumé afin de garder votre boîte email propre" msgid "Delivery verification for proof of receipt" msgstr "Un accusé de réception indiquant que votre demande a bien été reçue" -msgid "Delivery verification for proof of receipt" -msgstr "vérification de livraison comme accusé de répcetion" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Obtenez des mises à jour régulières lors de la réception de réponses — sans surcharger votre boîte mail" @@ -131,6 +118,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} se termine dans {{last4}}, date d'expiration {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} classé par {{order_description}} réinitialiser" @@ -197,6 +187,21 @@ msgstr "Ajouter des autorités à votre groupe" msgid "Add credibility" msgstr "Ajouter de la crédibiité" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Ajouté" @@ -209,6 +214,12 @@ msgstr "Toutes les demandes" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Toutes vos demandes de la demande groupée resteront privées durant la même période. Lorsqu'une des demandes est rendue publique, toutes les autres demandes de la demande groupée sont également rendues publiques sur {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Aussi appelé {{other_name}}" @@ -266,6 +277,9 @@ msgstr "Facturation: mensuelle" msgid "Billed: Weekly" msgstr "Facturation: hebdomadaire" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Facturation" @@ -275,9 +289,6 @@ msgstr "Apportant des faits au sujet des dépenses excessives des campagnes d'ac msgid "Browse by category" msgstr "Chercher par catégorie" -msgid "Browse public requests" -msgstr "Consulter les demandes publiques" - msgid "CSV" msgstr "CSV" @@ -320,6 +331,9 @@ msgstr "Vérifiez que vous n'avez ajouté aucune information personnelle msgid "Choose a duration" msgstr "Choisissez une durée" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Masquer toute la correspondance" @@ -329,12 +343,24 @@ msgstr "Confirmer votre compte sur {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Pour valider cette action, votre navigateur doit avoir l'option Javascript activée." +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Le code du coupon a expiré." msgid "Coupon code is invalid." msgstr "Le code du coupon n'est pas valable." +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Créé" @@ -377,6 +403,9 @@ msgstr "Brouillon" msgid "Drafts" msgstr "Brouillons" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Modifiez votre demande" @@ -398,6 +427,9 @@ msgstr "Étendre toute la correspondance" msgid "Expires soon" msgstr "Expire bientôt" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "Outils de gestion des demandes d'accès à l'information pour les journalistes, activistes et universitaires" @@ -461,6 +493,9 @@ msgstr "Depuis cet écran vous pouvez voir ce dont vous avez besoin de faire pou msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait a interrogé 350 autorités publiques pour trouver la liste des centres commerciaux vides, dans le but de fournir une aide au développement de start-up" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Recevoir des nouvelles à propos de {{pro_site_name}}?" @@ -521,6 +556,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "La journaliste d'investigation Jenna Corderoy a fait usage des fonctionnalité avancées d'Alaveteli, gardant ses investigations sur le Brexit confidentielles jusqu'à ce que son reportage soit publié, apportant des faits sur les dépenses excessives de campagnes et ERG au public, parmi plusieurs autres reportages." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -572,6 +613,9 @@ msgstr "Lucie Stephens, concernée par la mort d'un.e proche a demandé des info msgid "Make a batch request" msgstr "Faire une demande groupée" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Faire une demande" @@ -629,6 +673,9 @@ msgstr "Non" msgid "No bodies selected" msgstr "Aucun organisme sélectionné" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Plus d'autorités ne peuvent être ajoutées dans cette demande de groupe" @@ -668,6 +715,9 @@ msgstr "Nombre d'utilisateur.rice.s en période d'essai gratuit" msgid "Number of paying users:" msgstr "Nombre d'utilisateur.rice.s payant.e.s" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Une fois la période d'embargo terminée, tout ce que vous indiquez dans cette page, y compris votre nom, sera publié sur ce site." @@ -692,6 +742,9 @@ msgstr "Dès que vous êtes prêt.e, publier les données qui ont servi de sourc msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Boîte mail surchargée ?" @@ -782,6 +835,9 @@ msgstr "Professionel" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Fournissez un contexte supplémentaire à propos de la demande et les raisons pour laquelle vous l'avez faite." @@ -812,6 +868,9 @@ msgstr "Prêt.e à rendre public" msgid "Refer a friend" msgstr "Parrainer un ami" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Pour rappel, les autorités publiques ont {{late_number_of_days}} jours pour répondre aux demandes d'accès aux documents publics." @@ -824,6 +883,15 @@ msgstr "Rappels" msgid "Remove" msgstr "Éliminer" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Réponses" @@ -893,6 +961,9 @@ msgstr "Rechercher une autorité publique" msgid "Search for an authority by name" msgstr "Rechercher une autorité par nom" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Rechercher pour {{search_term}} dans {{filter_description}} classé par {{order_description}} réinitialiser" @@ -950,11 +1021,10 @@ msgstr "Paramètres" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Partager le code {{discount_code}} avec un ami pour leur offrir {{discount_terms}} à l'inscription" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Montrer les détails de {{count}} demande" -msgstr[1] "Montrer les détails de {{count}} demandes" -msgstr[2] "Montrer les détails de {{count}} demandes" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Inscrivez-vous" @@ -965,6 +1035,9 @@ msgstr "Un prix simple et abordable" msgid "Sorry, no authorities matched that search" msgstr "Désolé, aucune autorité ne correspond à cette recherche" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Désolé, quelque chose s'est mal passé, merci de relancer votre recherche." @@ -1154,6 +1227,9 @@ msgstr "Mettre à jour" msgid "Update Card Details" msgstr "Mettre à jour les informations de la carte" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Mettre à jour son statut" @@ -1184,6 +1260,9 @@ msgstr "" msgid "View authorities" msgstr "Voir les autorités" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Mur" @@ -1271,6 +1350,9 @@ msgstr "L'annullation de votre abonnement à {{pro_site_name}} a réussi" msgid "You haven't added any authorities to your batch yet" msgstr "Vous n'avez pas encore ajouté d'autorités à votre paquet de demandes" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Vous savez ce qui a causé l'erreur et pouvez suggérer une solution, comme une adresse email professionnelle." @@ -1394,6 +1476,12 @@ msgstr "Dernière mise à jour" msgid "or start a batch request" msgstr "ou commencer une demande de groupe " +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "Demandes qui seront prochainement rendues publiques" @@ -1503,3 +1591,6 @@ msgstr "{{public_body_name}} est en retard pour répondre à votre demande \"{{i msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} est très en retard pour répondre à votre demande \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ga_IE/app.po b/locale_alaveteli_pro/ga_IE/app.po index e5d9c4d20b..44b0bbf041 100644 --- a/locale_alaveteli_pro/ga_IE/app.po +++ b/locale_alaveteli_pro/ga_IE/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Irish (Ireland) (https://app.transifex.com/mysociety/teams/3352" "9/ga_IE/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/gl/app.po b/locale_alaveteli_pro/gl/app.po index 622cb566ea..df1ab9b086 100644 --- a/locale_alaveteli_pro/gl/app.po +++ b/locale_alaveteli_pro/gl/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Galician (https://app.transifex.com/mysociety/teams/33529/gl/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/he_IL/app.po b/locale_alaveteli_pro/he_IL/app.po index 0209ee8e8e..997cef1bf1 100644 --- a/locale_alaveteli_pro/he_IL/app.po +++ b/locale_alaveteli_pro/he_IL/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Hebrew (Israel) (https://app.transifex.com/mysociety/teams/3352" "9/he_IL/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/hr/app.po b/locale_alaveteli_pro/hr/app.po index 5bb860f3e4..7c1d78d159 100644 --- a/locale_alaveteli_pro/hr/app.po +++ b/locale_alaveteli_pro/hr/app.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Miroslav Schlossberg, 2021\n" "Language-Team: Croatian (https://app.transifex.com/mysociety/teams/33529/hr/)\n" @@ -42,9 +42,6 @@ msgstr[2] "(uključuje {{count}} pretplatnika)" msgid "(no title)" msgstr "(bez naslova)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(uz {{discount_name}} popust)" - msgid "12 Months" msgstr "12 mjeseci" @@ -66,12 +63,6 @@ msgstr "Ispod vas je prodano — Britanski neprof msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} od {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} po korisniku, mjesečno" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} po korisniku, godišnje" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Obavijest o rokovima: podsjetnik koji upozorava na rokove i sljedeće korake " @@ -81,9 +72,6 @@ msgstr "Dnevna e-pošta sa sažetkomDelivery verification for proof of receipt" msgstr "Provjera isporuke za potvrdu primitka" -msgid "Delivery verification for proof of receipt" -msgstr "Provjera isporuke za potvrdu primitka" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Primajte redovne obavijesti kako odgovori dolaze — bez zatrpavanja vašeg pretinca pristigle pošte" @@ -126,6 +114,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} završava u {{last4}}, istjek {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} poredano po {{order_description}} očisti" @@ -192,6 +183,21 @@ msgstr "Dodajte tijela javne vlasti vašoj skupini" msgid "Add credibility" msgstr "Dodajte vjerodostojnost" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Dodano" @@ -204,6 +210,12 @@ msgstr "Svi zahtjevi" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Svi zahtjevi unutar ove skupine ostat će privatni u istom razdoblju. Kada pojedini zahtjev postane javan, svi ostali zahtjevi iz ove skupine će također biti objavljeni na {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Također se zove {{other_name}}" @@ -261,6 +273,9 @@ msgstr "Naplata: mjesečno" msgid "Billed: Weekly" msgstr "Naplata: tjedno" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Naplata" @@ -270,9 +285,6 @@ msgstr "Iznosi na vidjelo činjenice o prekomjernom trošenju imajući u vidu pr msgid "Browse by category" msgstr "Pretraživanje prema kategoriji" -msgid "Browse public requests" -msgstr "Pretraživanje javnih zahtjeva" - msgid "CSV" msgstr "CSV" @@ -315,6 +327,9 @@ msgstr "Provjerite da niste uključili neku osobnu informaciju. msgid "Choose a duration" msgstr "Odaberite trajanje" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Sažmite svu korespodenciju" @@ -324,12 +339,24 @@ msgstr "Potvrdite svoj račun na {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Nastavak plaćanja zahtjeva omogućen JavaScript u vašem pregledniku." +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Kôd kupona je istekao." msgid "Coupon code is invalid." msgstr "Kôd kupona je nevažeći." +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Izrađen" @@ -372,6 +399,9 @@ msgstr "Skica" msgid "Drafts" msgstr "Skice" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Uredite svoj zahtjev" @@ -393,6 +423,9 @@ msgstr "Otvorite svu korespondenciju" msgid "Expires soon" msgstr "Uskoro istječe" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "Alati za upravljanje zahtjevima za pristup informacijama, za novinare_ke, aktiviste_ice i istraživače_ice" @@ -456,6 +489,9 @@ msgstr "Na ovom zaslonu možete vidjeti što sljedeće napraviti da bi vaši zah msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait ispitao je 350 lokalnih vlasti kako bi saznao koji su komercijalni prostori prazni, da bi pomogao start-up tvrtkama." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Želite li primati novosti o {{pro_site_name}} e-poštom?" @@ -516,6 +552,12 @@ msgstr "Istraživanje o azbestu u školama" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "Istraživačka novinarka Jenna Corderoy vrlo je dobro iskoristila Pro značajke privatnosti, čuvajući sve rezultate svojeg opsežnog istraživanja vezanog uz Brexit tajnima sve dok nije objavila svoje priče, otkrivajući, među ostalim, i činjenice o prekomjernim troškovima kampanje i European Research GroupERG analizama . " +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -567,6 +609,9 @@ msgstr "Lucie Stephens, potaknuta smrću bliske osobe, zahtijevala je informacij msgid "Make a batch request" msgstr "Izradite skupni zahtjev" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Izradite zahtjev" @@ -624,6 +669,9 @@ msgstr "Ne" msgid "No bodies selected" msgstr "Nije odabrano niti jedno tijelo javne vlasti" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Ne može se više dodati niti jedno tijelo javne vlasti u ovaj skupni zahtjev." @@ -663,6 +711,9 @@ msgstr "Broj korisnika besplatnog probnog razdoblja: " msgid "Number of paying users:" msgstr "Broj korisnika koji plaćaju:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Po isteku razdoblja privatnosti, sve što unesete na ovoj stranici, uključujući vaše ime, bit će objavljeno javno na ovoj stranici." @@ -687,6 +738,9 @@ msgstr "Kad za to budete spremni, objavljivanje podataka na kojima se temelji va msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Vaš pretinac e-pošte je prepun?" @@ -777,6 +831,9 @@ msgstr "Profesionalno" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Dodajte kontekst vašem zahtjevu i razloge zašto ste ga sročili." @@ -807,6 +864,9 @@ msgstr "Spremno za objavu" msgid "Refer a friend" msgstr "Preporučite prijatelju" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Zapamtite, tijela javne vlasti imaju {{late_number_of_days}} kalendarskih dana da odgovore na vaš zahtjev." @@ -819,6 +879,15 @@ msgstr "Podsjetnici" msgid "Remove" msgstr "Uklonite" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Odgovori" @@ -888,6 +957,9 @@ msgstr "Pronađite tijelo javne vlasti" msgid "Search for an authority by name" msgstr "Pronađite tijelo javne vlasti prema nazivu" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Pretraga '{{search_term}}' u {{filter_description}} poredano po {{order_description}} očisti" @@ -945,11 +1017,10 @@ msgstr "Postavke" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Podijelite kôd {{discount_code}} s prijateljem i osigurajte mu, ili njoj, popust {{discount_terms}} prilikom registracije." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Prikaži {{count}} zahtjev detaljno" -msgstr[1] "Prikaži {{count}} zahtjeva detaljno" -msgstr[2] "Prikažite {{count}} zahtjeva detaljno" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Registrirajte se" @@ -960,6 +1031,9 @@ msgstr "Jednostavno, prihvatljiva cijena" msgid "Sorry, no authorities matched that search" msgstr "Žao nam je, niti jedno tijelo javne vlasti ne odgovara ovom pretraživanju" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Žao nam je, nešto je pošlo krivo prilikom traženja rezultata, molimo pokušajte pretraživati ponovo." @@ -1149,6 +1223,9 @@ msgstr "Ažurirajte" msgid "Update Card Details" msgstr "Ažurirajte detalje kartice" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Ažurirajte njegov status." @@ -1179,6 +1256,9 @@ msgstr "" msgid "View authorities" msgstr "Pregledajte tijela javne vlasti" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Zid" @@ -1266,6 +1346,9 @@ msgstr "Uspješno ste otkazali svoju pretplatu na {{pro_site_name}}" msgid "You haven't added any authorities to your batch yet" msgstr "Još niste dodali niti jedno tijelo javne vlasti u skupni zahtjev" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Znate što je uzrok pogrešci i možete predložiti rješenje, poput ispravne adrese e-pošte." @@ -1389,6 +1472,12 @@ msgstr "posljednje ažurirano" msgid "or start a batch request" msgstr "ili započnite skupni zahtjev" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "zahtjevi koji će uskoro biti objavljeni" @@ -1498,3 +1587,6 @@ msgstr "{{public_body_name}} kasne s odgovorom na vaš zahtjev \"{{info_request_ msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} puno kasne s odgovorom na vaš zahtjev \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/hu_HU/app.po b/locale_alaveteli_pro/hu_HU/app.po index 6d2daf4a6d..06668850a8 100644 --- a/locale_alaveteli_pro/hu_HU/app.po +++ b/locale_alaveteli_pro/hu_HU/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2024\n" "Language-Team: Hungarian (Hungary) (https://app.transifex.com/mysociety/teams/" @@ -39,9 +39,6 @@ msgstr[1] "({{count}} visszatérő előfizetőt tartalmaz)" msgid "(no title)" msgstr "(nincs cím)" -msgid "(with {{discount_name}} discount applied)" -msgstr "({{discount_name}} engedménnyel)" - msgid "12 Months" msgstr "12 hónap" @@ -63,12 +60,6 @@ msgstr "Alattad eladva — Az oknyomozó újságí msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}}/ {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} felhasználóként és hónaponként" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} felhasználóként és hónaponként" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Beavatozási figyelmeztetések: tudja, mikor kell megtenni a következő lépést" @@ -78,9 +69,6 @@ msgstr "1Napi összefoglaló e-mailekDelivery verification for proof of receipt" msgstr "Kézbesítés ellenőrzése az átvétel igazolására" -msgid "Delivery verification for proof of receipt" -msgstr "Kézbesítés ellenőrzése az átvétel igazolására" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Rendszeres frissítéseket kap a válaszok beérkezésekor – anélkül, hogy túlterhelné a postafiókját. " @@ -123,6 +111,9 @@ msgstr "Ezt a kérést már elküldte néhány hatóságnak ebb msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} {{last4}} számokra végződő, lejárat: {{exp_month}}/{{exp_year}} " +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} rendezve {{order_description}} törölve" @@ -189,6 +180,21 @@ msgstr "Adjon hozzá jogosultságokat a köteghez" msgid "Add credibility" msgstr "Add hozzá a hitelességet" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Hozzáadva" @@ -201,6 +207,12 @@ msgstr "Összes kérés" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Az ebben a kötegben lévő összes kérés ugyanannyi ideig privát marad. Amikor egy egyedi kérelmet nyilvánosságra hoznak, az ebben a kötegben lévő összes többi kérelmet is közzétesszük a {{site_name}} webhelyen." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Más néven {{other_name}}" @@ -258,6 +270,9 @@ msgstr "Havonta számlázva" msgid "Billed: Weekly" msgstr "Hetente számlázva" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Számlázva" @@ -267,9 +282,6 @@ msgstr "Tények feltárása a kampány túlköltéséről az adatvédelmi funkci msgid "Browse by category" msgstr "Böngésszen kategória szerint" -msgid "Browse public requests" -msgstr "Böngésszen a nyilvános kérések között" - msgid "CSV" msgstr "CSV" @@ -312,6 +324,9 @@ msgstr "Ellenőrizze, hogy nem adott-e meg személyes adatokat msgid "Choose a duration" msgstr "Válasszon időtartamot" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Összecsukja az összes levelezést" @@ -321,12 +336,24 @@ msgstr "Erősítse meg fiókját a {{site_name}} webhelyen" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "A fizetés folytatásához a böngészőjében engedélyezni kell a JavaScriptet." +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "A kuponkód lejárt." msgid "Coupon code is invalid." msgstr "A kuponkód nem érvényes. " +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Készítette" @@ -369,6 +396,9 @@ msgstr "Vázlat" msgid "Drafts" msgstr "Vázlatok" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Szerkessze a kérését" @@ -390,6 +420,9 @@ msgstr "Bontsa ki az összes levelezést" msgid "Expires soon" msgstr "Hamarosan lejár" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "FOI menedzsment eszközök újságírók, kampányolók és kutatók számára" @@ -453,6 +486,9 @@ msgstr "Ezen a képernyőn láthatja, hogy mit kell tennie a következő lépés msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait megkérdezett 350 helyi hatóságot, hogy megtudja, mely kereskedelmi megoldások üresekhogy segítő kezet nyújtson az induló vállalkozásoknak." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Kap e-mailben frissítéseket a {{pro_site_name}} webhelyről?" @@ -513,6 +549,12 @@ msgstr "Az azbeszt használatának vizsgálata az iskolákban" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "A nyomozó újságíró, Jenna Corderoy jól kihasználta a Pro adatvédelmi funkcióit, megőrizve a Brexit-szel kapcsolatos vizsgálatait magántulajdonban, amíg a történeteinek meg nem törtek, és tényeket hoztak a kampány túlköltségeivel ésERG kutatásával a nyilvánosság számára, számos más fontos történet között." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "Számla {{invoice_number}} {{invoice_amount}}" @@ -564,6 +606,9 @@ msgstr "Lucie Stephens egy általa gondozott személy halála miatt több mint 2 msgid "Make a batch request" msgstr "Készítsen kötegelt kérést" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Készítsen kérést" @@ -621,6 +666,9 @@ msgstr "Nem" msgid "No bodies selected" msgstr "Nincs kiválasztott test" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Nem adható hozzá több jogosultság ehhez a kötegelt kérelemhez." @@ -660,6 +708,9 @@ msgstr "Ingyenes próbaidőszakos felhasználók száma:" msgid "Number of paying users:" msgstr "Fizetős felhasználók száma:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Az adatvédelmi időszak lejárta után minden, amit ezen az oldalon beír, beleértve az Ön nevét is, nyilvánosan megjelenik ezen a webhelyen. " @@ -684,6 +735,9 @@ msgstr "Ha készen áll, a vizsgálat mögött rejlő adatok közzététele tov msgid "Open" msgstr "Nyitva" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Túlcsorduló postafiók?" @@ -774,6 +828,9 @@ msgstr "Professzionális" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Adja meg a kérés további kontextusát, és adja meg annak indokait." @@ -803,6 +860,9 @@ msgstr "Készen áll hogy publikus legyen" msgid "Refer a friend" msgstr "Egy barátra hivatkozik " +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Ne feledje, a hatóságoknak {{late_number_of_days}} naptári napjuk van arra, hogy válaszoljanak az FOI-kérésekre." @@ -815,6 +875,15 @@ msgstr "Emlékeztetők" msgid "Remove" msgstr "Eltávolít" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Visszajelzések" @@ -883,6 +952,9 @@ msgstr "Keressen egy hatóságot" msgid "Search for an authority by name" msgstr "Keressen egy hatóságot név alapján" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Keresés a következőre: {{search_term}} a {{filter_description}} -el rendezve {{order_description}} törölve " @@ -938,10 +1010,10 @@ msgstr "Beállítások" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Oszd meg a {{discount_code}} kódot egy barátoddal, hogy {{discount_terms}} összeget kaphasson a regisztráció során." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "{{count}} kérés részletes megjelenítése" -msgstr[1] "{{count}} kérés részletes megjelenítése" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Regisztráljon" @@ -952,6 +1024,9 @@ msgstr "Egyszerű, megfizethető ár" msgid "Sorry, no authorities matched that search" msgstr "Sajnáljuk, a keresésnek egyetlen hatóság sem felelt meg" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Sajnáljuk, valami hiba történt a találatok lekérésekor. Próbálkozzon újra a kereséssel." @@ -1139,6 +1214,9 @@ msgstr "Frissítés" msgid "Update Card Details" msgstr "Frissítse a kártya adatait" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Állapotok frissítése." @@ -1168,6 +1246,9 @@ msgstr "Nyugta megtekintése" msgid "View authorities" msgstr "Tekintse meg a hatóságokat " +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Fal" @@ -1255,6 +1336,9 @@ msgstr "Sikeresen lemondta a {{pro_site_name}} előfizetését" msgid "You haven't added any authorities to your batch yet" msgstr "Még nem adott hozzá jogosultságokat a köteghez" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Tudja, mi okozta a hibát, és ,ajánlhat megoldást, például működő e-mail-címet. " @@ -1378,6 +1462,12 @@ msgstr "utoljáára frissített" msgid "or start a batch request" msgstr "vagy indítsa el a kötegelt kérést" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "kéréseket, amelyek hamarosan nyilvánosságra kerülnek" @@ -1479,3 +1569,6 @@ msgstr "{{public_body_name}} késik a \"{{info_request_title}}\" kérésére val msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} régóta esedékessé vált a \"{{info_request_title}}\" kérésére." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/id/app.po b/locale_alaveteli_pro/id/app.po index 259f571bff..e95a0888ac 100644 --- a/locale_alaveteli_pro/id/app.po +++ b/locale_alaveteli_pro/id/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Indonesian (https://app.transifex.com/mysociety/teams/33529/id/" ")\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/is/app.po b/locale_alaveteli_pro/is/app.po index b6b493717d..25c5c02c54 100644 --- a/locale_alaveteli_pro/is/app.po +++ b/locale_alaveteli_pro/is/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2020\n" "Language-Team: Icelandic (https://app.transifex.com/mysociety/teams/33529/is/)" @@ -38,9 +38,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 mánuðir" @@ -62,12 +59,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -77,9 +68,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -122,6 +110,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -188,6 +179,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Bætt við" @@ -200,6 +206,12 @@ msgstr "Allar beiðnir" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -257,6 +269,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -266,9 +281,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Skoða opinberar upplýsingabeiðnir" - msgid "CSV" msgstr "" @@ -311,6 +323,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -320,12 +335,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -368,6 +395,9 @@ msgstr "Drög" msgid "Drafts" msgstr "Drög" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -389,6 +419,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -452,6 +485,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -512,6 +548,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -563,6 +605,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Útbúa beiðni" @@ -620,6 +665,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -659,6 +707,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -683,6 +734,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -773,6 +827,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -802,6 +859,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -814,6 +874,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -882,6 +951,9 @@ msgstr "Leita að stjórnvaldi" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -937,8 +1009,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -951,6 +1023,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1138,6 +1213,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1167,6 +1245,9 @@ msgstr "" msgid "View authorities" msgstr "Skoða" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1254,6 +1335,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1377,6 +1461,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1478,3 +1568,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/is_IS/app.po b/locale_alaveteli_pro/is_IS/app.po index 7ed1e37ace..66cf7e3951 100644 --- a/locale_alaveteli_pro/is_IS/app.po +++ b/locale_alaveteli_pro/is_IS/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Páll Hilmarsson , 2018\n" "Language-Team: Icelandic (Iceland) (https://app.transifex.com/mysociety/teams/" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 mánuðir" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -123,6 +111,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -189,6 +180,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Bætt við" @@ -201,6 +207,12 @@ msgstr "Allar beiðnir" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -258,6 +270,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -267,9 +282,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Skoða opinberar upplýsingabeiðnir" - msgid "CSV" msgstr "" @@ -312,6 +324,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -321,12 +336,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -369,6 +396,9 @@ msgstr "Drög" msgid "Drafts" msgstr "Drög" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -390,6 +420,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -453,6 +486,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -513,6 +549,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -564,6 +606,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Útbúa beiðni" @@ -621,6 +666,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -660,6 +708,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -684,6 +735,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -774,6 +828,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -803,6 +860,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -815,6 +875,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -883,6 +952,9 @@ msgstr "Leita að stjórnvaldi" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -938,8 +1010,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -952,6 +1024,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1139,6 +1214,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1168,6 +1246,9 @@ msgstr "" msgid "View authorities" msgstr "Skoða" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1255,6 +1336,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1378,6 +1462,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1479,3 +1569,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/it/app.po b/locale_alaveteli_pro/it/app.po index 11b99bfadd..33dc4d5183 100644 --- a/locale_alaveteli_pro/it/app.po +++ b/locale_alaveteli_pro/it/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Italian (https://app.transifex.com/mysociety/teams/33529/it/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/it_IT/app.po b/locale_alaveteli_pro/it_IT/app.po index 31e2a119fe..0a0f1b54c0 100644 --- a/locale_alaveteli_pro/it_IT/app.po +++ b/locale_alaveteli_pro/it_IT/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Italian (Italy) (https://app.transifex.com/mysociety/teams/3352" "9/it_IT/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ka/app.po b/locale_alaveteli_pro/ka/app.po index 1439d107e7..7e346d23c9 100644 --- a/locale_alaveteli_pro/ka/app.po +++ b/locale_alaveteli_pro/ka/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Lela Merabishvili, 2021\n" "Language-Team: Georgian (https://app.transifex.com/mysociety/teams/33529/ka/)\n" @@ -37,9 +37,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -61,12 +58,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -76,9 +67,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -121,6 +109,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -187,6 +178,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -199,6 +205,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -256,6 +268,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -265,9 +280,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -310,6 +322,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -319,12 +334,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -367,6 +394,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -388,6 +418,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -451,6 +484,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -511,6 +547,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -562,6 +604,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -619,6 +664,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -658,6 +706,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -682,6 +733,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -772,6 +826,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -801,6 +858,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -813,6 +873,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -881,6 +950,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -936,8 +1008,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -950,6 +1022,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1137,6 +1212,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1166,6 +1244,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1253,6 +1334,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1376,6 +1460,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1477,3 +1567,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/mk/app.po b/locale_alaveteli_pro/mk/app.po index 4a163d16d7..8e2c6e664a 100644 --- a/locale_alaveteli_pro/mk/app.po +++ b/locale_alaveteli_pro/mk/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Macedonian (https://app.transifex.com/mysociety/teams/33529/mk/" ")\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/mk_MK/app.po b/locale_alaveteli_pro/mk_MK/app.po index dd32affd16..d7629ee6a3 100644 --- a/locale_alaveteli_pro/mk_MK/app.po +++ b/locale_alaveteli_pro/mk_MK/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Macedonian (Macedonia) (https://app.transifex.com/mysociety/tea" "ms/33529/mk_MK/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/nb/app.po b/locale_alaveteli_pro/nb/app.po index 0edbe3c187..887f7fbf8e 100644 --- a/locale_alaveteli_pro/nb/app.po +++ b/locale_alaveteli_pro/nb/app.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: 1bb8f5eb4bc72723d4109decfd20c765, 2019\n" "Language-Team: Norwegian Bokmål (https://app.transifex.com/mysociety/teams/335" @@ -41,9 +41,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(ingen tittel)" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 måneder" @@ -65,12 +62,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -80,9 +71,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -125,6 +113,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} sortert av {{order_description}} clear" @@ -191,6 +182,21 @@ msgstr "Legg til myndigheter i din rekkefølge" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Lagt til" @@ -203,6 +209,12 @@ msgstr "Alle forespørsler" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Også kalt {{other_name}}." @@ -260,6 +272,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -269,9 +284,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Å søke i offentlige henvendelser" - msgid "CSV" msgstr "" @@ -314,6 +326,9 @@ msgstr "Sjekk at du ikke har tatt med personlig informasjon." msgid "Choose a duration" msgstr "Velg en varighet" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -323,12 +338,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Laget" @@ -371,6 +398,9 @@ msgstr "Utkast" msgid "Drafts" msgstr "Utkast" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Rediger forespøreselen din" @@ -392,6 +422,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -455,6 +488,9 @@ msgstr "Fra dette skjermbildet kan du se hva du trenger å gjøre for å komme v msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -515,6 +551,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -566,6 +608,9 @@ msgstr "" msgid "Make a batch request" msgstr "Lag en henvendelse om rekkefølge" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Lag en forespørsel" @@ -623,6 +668,9 @@ msgstr "" msgid "No bodies selected" msgstr "Innhold/tekst ikke valgt" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -662,6 +710,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -686,6 +737,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -776,6 +830,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Lag en ekstra kontekst til forespørselen og grunnene dine for å lage den." @@ -805,6 +862,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Husk, offentlige myndigheter har {{late_number_of_days}} kalenderdager til å svare på FOI-forespørsler." @@ -817,6 +877,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -885,6 +954,9 @@ msgstr "Søk etter en myndighet" msgid "Search for an authority by name" msgstr "Søk etter en myndighet ved navn" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Søk etter {{search_term}} i {{filter_description}} sortert etter {{order_description}} clear" @@ -940,8 +1012,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -954,6 +1026,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Beklager, ingen myndigheter stemte på det søket" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Beklager, noe gikk galt med å finne resultatene dine, prøv å søke igjen." @@ -1141,6 +1216,9 @@ msgstr "Oppdatering" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Oppdater statusene." @@ -1170,6 +1248,9 @@ msgstr "" msgid "View authorities" msgstr "Se myndigheter" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1257,6 +1338,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "Du har ikke lagt til noen myndigheter i rekkefølgen din ennå" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Du vet hva som forårsaket feilen, og kan foreslå en løsning, for eksempel en fungerende e-postadresse. " @@ -1380,6 +1464,12 @@ msgstr "sist oppdatert" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "forespørsler som snart vil bli offentliggjort" @@ -1481,3 +1571,6 @@ msgstr "{{public_body_name}} er forsinket i å svare på forespørselen din \"{{ msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} ble langt over tiden til å svare på forespørselen din \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ne/app.po b/locale_alaveteli_pro/ne/app.po index 777711bca2..cb57282b42 100644 --- a/locale_alaveteli_pro/ne/app.po +++ b/locale_alaveteli_pro/ne/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: louisecrow , 2017\n" "Language-Team: Nepali (https://app.transifex.com/mysociety/teams/33529/ne/)\n" @@ -37,9 +37,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "बाह्र महिना " @@ -61,12 +58,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -76,9 +67,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -121,6 +109,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -187,6 +178,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "थपियो " @@ -199,6 +205,12 @@ msgstr "सबै अनुरोधहरु " msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -256,6 +268,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -265,9 +280,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "सार्वजनिक अनुरोधहरू हेर्नुहोस् " - msgid "CSV" msgstr "" @@ -310,6 +322,9 @@ msgstr "" msgid "Choose a duration" msgstr "एक अवधि चयन गर्नुहोस् " +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -319,12 +334,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "बनाइयो " @@ -367,6 +394,9 @@ msgstr "मस्यौदा" msgid "Drafts" msgstr "मस्यौदाहरु " +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "तपाइको अनुरोध सम्पादन गर्नुहोस् " @@ -388,6 +418,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -451,6 +484,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -511,6 +547,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -562,6 +604,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "अनुरोध गर्नुहोस् " @@ -619,6 +664,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -658,6 +706,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -682,6 +733,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -772,6 +826,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -801,6 +858,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -813,6 +873,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -881,6 +950,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -936,8 +1008,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -950,6 +1022,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1137,6 +1212,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1166,6 +1244,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1253,6 +1334,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1376,6 +1460,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1477,3 +1567,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ne_NP/app.po b/locale_alaveteli_pro/ne_NP/app.po index 75e9e81aa7..21c4b628eb 100644 --- a/locale_alaveteli_pro/ne_NP/app.po +++ b/locale_alaveteli_pro/ne_NP/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Nepali (Nepal) (https://app.transifex.com/mysociety/teams/33529" "/ne_NP/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/nl/app.po b/locale_alaveteli_pro/nl/app.po index 7a7635132c..430ac9d3f8 100644 --- a/locale_alaveteli_pro/nl/app.po +++ b/locale_alaveteli_pro/nl/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Liset Hamming , 2022\n" "Language-Team: Dutch (https://app.transifex.com/mysociety/teams/33529/nl/)\n" @@ -38,9 +38,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(geen titel)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(met {{discount_name}}korting toegepast)" - msgid "12 Months" msgstr "12 maanden" @@ -62,12 +59,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -77,9 +68,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -122,6 +110,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}}eindigend met {{last4}}, verstrijkt op {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} geordend op {{order_description}} wis" @@ -188,6 +179,21 @@ msgstr "Voeg overheidsinstanties aan je bulkverzoek toe" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Toegevoegd" @@ -200,6 +206,12 @@ msgstr "Alle verzoeken" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Alle verzoeken in dit bulkverzoek zullen even lang privé blijven. Wanneer de gebruiker één van deze verzoeken op 'zichtbaar' zet worden alle andere verzoeken uit het bulkverzoek ook zichtbaar op {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Ook genoemd {{other_name}}" @@ -257,6 +269,9 @@ msgstr "Betaling: Maandelijks" msgid "Billed: Weekly" msgstr "Betaling: Wekelijks" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Facturering" @@ -266,9 +281,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Doorzoek alle zichtbare verzoeken" - msgid "CSV" msgstr "" @@ -311,6 +323,9 @@ msgstr "Controleer of je geen persoonlijke informatie hebt inge msgid "Choose a duration" msgstr "Kies een periode" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -320,12 +335,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Doorgaan naar checkout vereist dat je browser JavaScript toelaat" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Je kortingscode is vervallen" msgid "Coupon code is invalid." msgstr "Je kortingscode is niet geldig" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Gecreëerd" @@ -368,6 +395,9 @@ msgstr "Conceptversie" msgid "Drafts" msgstr "Conceptversies" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Wijzig je verzoek" @@ -389,6 +419,9 @@ msgstr "" msgid "Expires soon" msgstr "Vervalt binnenkort" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -452,6 +485,9 @@ msgstr "Op deze pagina kun je zien welke volgende stap je bij deze verzoeken moe msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -512,6 +548,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -563,6 +605,9 @@ msgstr "" msgid "Make a batch request" msgstr "Doe een bulkverzoek" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Doe een verzoek" @@ -620,6 +665,9 @@ msgstr "Nee" msgid "No bodies selected" msgstr "Geen overheidsinstantie geselecteerd " +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -659,6 +707,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Nadat de periode die je voor de afscherming van je verzoek hebt ingesteld eindigt, zal alles wat je op deze pagina achterlaat, waaronder je naam, zichtbaar gemaakt wordenop deze website." @@ -683,6 +734,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -773,6 +827,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Verstrek context bij je verzoek en de reden(en) om het in te dienen." @@ -802,6 +859,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Houd er rekening mee dat overheden {{late_number_of_days}} kalenderdagen de tijd hebben om op Woo-verzoeken te beslissen." @@ -814,6 +874,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Antwoorden" @@ -882,6 +951,9 @@ msgstr "Zoek een overheidsinstantie" msgid "Search for an authority by name" msgstr "Zoek een overheidsinstantie op naam" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Zoek naar{{search_term}} in {{filter_description}} geordend op {{order_description}} wis" @@ -937,10 +1009,10 @@ msgstr "Instellingen" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "toon {{count}} verzoek in detail" -msgstr[1] "Toon details van {{count}} verzoeken" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Geef je op" @@ -951,6 +1023,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Sorry, geen overheidsinstanties gevonden" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Er ging iets mis bij het ophalen van de resultaten, probeer opnieuw." @@ -1138,6 +1213,9 @@ msgstr "Update" msgid "Update Card Details" msgstr "Wijzig betaalkaartgegevens" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "update het status" @@ -1167,6 +1245,9 @@ msgstr "" msgid "View authorities" msgstr "Bekijk de overheidsinstanties" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Muur" @@ -1254,6 +1335,9 @@ msgstr "Je hebt je abonnement op {{pro_site_name}} succesvol geannuleerd" msgid "You haven't added any authorities to your batch yet" msgstr "Je hebt nog geen overheidsinstanties geselecteerd voor je bulkverzoek" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Je kent de oorzaak van de fout en kunt een oplossing voorstellen, zoals een werkend e-mailadres." @@ -1379,6 +1463,12 @@ msgstr "meest recente update " msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "verzoeken die binnenkort gepubliceerd zullen worden op de site" @@ -1480,3 +1570,6 @@ msgstr "{{public_body_name}} is te laat met het nemen van een beslissing over je msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} heeft de termijn om je verzoek \"{{info_request_title}}\" te beantwoorden ruimschoots overschreden." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/nl_BE/app.po b/locale_alaveteli_pro/nl_BE/app.po index 302554cc31..a8b4d74ce7 100644 --- a/locale_alaveteli_pro/nl_BE/app.po +++ b/locale_alaveteli_pro/nl_BE/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: claude transparencia , 2020" "\n" @@ -40,9 +40,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(geen titel)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(met {{discount_name}}korting toegepast)" - msgid "12 Months" msgstr "12 maanden" @@ -64,12 +61,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}}van {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -79,9 +70,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -124,6 +112,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}}eindigt in {{last4}}, verstrijkt op {{exp_month}}/{{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} gesorteerd op {{order_description}} wis" @@ -190,6 +181,21 @@ msgstr "Voeg overheiden aan je batch toe" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Toegevoegd" @@ -202,6 +208,12 @@ msgstr "Alle aanvragen" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Alle aanvragen in deze batch zullen privé blijven voor dezelfde duurtijd. Wanneer een individuele aanvraag publiek gemaakt wordt zullen alle andere aanvragen van deze batch ook gepubliceerd worden op {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Ook genaamd {{other_name}}" @@ -259,6 +271,9 @@ msgstr "Betaling: Maandelijks" msgid "Billed: Weekly" msgstr "Betaling: Wekelijks" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Facturatie" @@ -268,9 +283,6 @@ msgstr "" msgid "Browse by category" msgstr "Blader door categorie " -msgid "Browse public requests" -msgstr "Doorzoek de openbare aanvragen" - msgid "CSV" msgstr "" @@ -313,6 +325,9 @@ msgstr "Kijk na of u geen persoonlijke informatie invoerde." msgid "Choose a duration" msgstr "Kies een periode" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Alle correspondentie samenvouwen" @@ -322,12 +337,24 @@ msgstr "Bevestigd jouw account op {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "Doordoen met checkout noodzaakt dat uw browser JavaScript toelaat" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Uw code is vervallen" msgid "Coupon code is invalid." msgstr "Uw code is niet geldig" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Gecreëerd" @@ -370,6 +397,9 @@ msgstr "Klad-ontwerp" msgid "Drafts" msgstr "Klad-ontwerpen" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Schrijf je vraag" @@ -391,6 +421,9 @@ msgstr "Alle boodschappen tonen" msgid "Expires soon" msgstr "Vervalt binnenkort" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -454,6 +487,9 @@ msgstr "Via dit scherm kan u zien wat verder te doen om uw vragen vooruit te lat msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -516,6 +552,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -567,6 +609,9 @@ msgstr "" msgid "Make a batch request" msgstr "Maak een batch-aanvraag" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Maak een aanvraag" @@ -624,6 +669,9 @@ msgstr "Nee" msgid "No bodies selected" msgstr "Geen overheid geselecteerd " +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Geen overheid mag in deze batch worden toegevoegd" @@ -663,6 +711,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Eens de privé-periode eindigt, zal alles wat u hier op deze bladzijde inbrengt, inclusief uw naam, publiek gemaakt wordenop deze website" @@ -687,6 +738,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -777,6 +831,9 @@ msgstr "" msgid "Profile" msgstr "Profiel" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Geef ons extra context over uw vraag en de redenen om die te stellen." @@ -806,6 +863,9 @@ msgstr "" msgid "Refer a friend" msgstr "Verwijs een vriend" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Hou er rekening mee dat overheden {{late_number_of_days}} kalenderdagen de tijd hebben om zo’n WOB-aanvragen te beantwoorden." @@ -818,6 +878,15 @@ msgstr "" msgid "Remove" msgstr "Verwijderen" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Antwoorden" @@ -886,6 +955,9 @@ msgstr "Zoek een overheid" msgid "Search for an authority by name" msgstr "Zoek een overheid per naam" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Zoek naar{{search_term}} in {{filter_description}} gesorteerd op {{order_description}} wis" @@ -941,10 +1013,10 @@ msgstr "Instellingen" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Deel de code {{discount_code}} met een vriend om hem {{discount_terms}} te geven bij het aanmelden." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "toon {{count}} verzoek in detail" -msgstr[1] "Toon {{count}} aanvragen in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Teken in" @@ -955,6 +1027,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Jammer, maar geen overheden beantwoorden aan uw zoekcriteria" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Tot onze spijt ging iets fout bij het ophalen van uw resultaten. Probeer opnieuw aub." @@ -1142,6 +1217,9 @@ msgstr "Update" msgid "Update Card Details" msgstr "Update betaalkaartgegevens" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "update het status" @@ -1171,6 +1249,9 @@ msgstr "" msgid "View authorities" msgstr "Zie de overheden" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Muur" @@ -1258,6 +1339,9 @@ msgstr "U heeft uw inschrijving op {{pro_site_name}} succesvol geannuleerd" msgid "You haven't added any authorities to your batch yet" msgstr "U heeft nog geen overheid toegevoegd aan uw batch" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "U kent de oorzaak van de fout, en u kan een oplossing voorstellen, zoals een functioneel e-mail adres." @@ -1383,6 +1467,12 @@ msgstr "laatste update " msgid "or start a batch request" msgstr "ofwel begin met een batchverzoek" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "aanvragen die binnenkort zullen publiek gemaakt worden" @@ -1484,3 +1574,6 @@ msgstr "{{public_body_name}} is te laat met antwoord op uw aanvraag \"{{info_req msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} is veel te laat om uw aanvraag \"{{info_request_title}}\" te beantwoorden." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/nn/app.po b/locale_alaveteli_pro/nn/app.po index a27a40dcde..34d5d67a15 100644 --- a/locale_alaveteli_pro/nn/app.po +++ b/locale_alaveteli_pro/nn/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Norwegian Nynorsk (https://app.transifex.com/mysociety/teams/33" "529/nn/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/pap/app.po b/locale_alaveteli_pro/pap/app.po index c2c412122f..bbfc2b47f5 100644 --- a/locale_alaveteli_pro/pap/app.po +++ b/locale_alaveteli_pro/pap/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Luis Villegas, 2022\n" "Language-Team: Papiamento (https://app.transifex.com/mysociety/teams/33529/pap" @@ -38,9 +38,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -62,12 +59,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -77,9 +68,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -122,6 +110,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -188,6 +179,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -200,6 +206,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -257,6 +269,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -266,9 +281,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -311,6 +323,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -320,12 +335,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -368,6 +395,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -389,6 +419,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -452,6 +485,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -512,6 +548,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -563,6 +605,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -620,6 +665,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -659,6 +707,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -683,6 +734,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -773,6 +827,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -802,6 +859,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -814,6 +874,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -882,6 +951,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -937,8 +1009,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -951,6 +1023,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1138,6 +1213,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1167,6 +1245,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1254,6 +1335,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1377,6 +1461,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1478,3 +1568,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/pl/app.po b/locale_alaveteli_pro/pl/app.po index 58a7184fbc..3917a5e91f 100644 --- a/locale_alaveteli_pro/pl/app.po +++ b/locale_alaveteli_pro/pl/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Polish (https://app.transifex.com/mysociety/teams/33529/pl/)\n" "MIME-Version: 1.0\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/pl_PL/app.po b/locale_alaveteli_pro/pl_PL/app.po index d4b4e6aac8..5ae7c80132 100644 --- a/locale_alaveteli_pro/pl_PL/app.po +++ b/locale_alaveteli_pro/pl_PL/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Polish (Poland) (https://app.transifex.com/mysociety/teams/3352" "9/pl_PL/)\n" @@ -36,9 +36,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -60,12 +57,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -75,9 +66,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -120,6 +108,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -186,6 +177,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -198,6 +204,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -255,6 +267,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -264,9 +279,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -309,6 +321,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -318,12 +333,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -366,6 +393,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -387,6 +417,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -450,6 +483,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -510,6 +546,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -561,6 +603,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -618,6 +663,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -657,6 +705,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -681,6 +732,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -771,6 +825,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -800,6 +857,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -812,6 +872,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -880,6 +949,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -935,8 +1007,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -949,6 +1021,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1136,6 +1211,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1165,6 +1243,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1252,6 +1333,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1375,6 +1459,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1476,3 +1566,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/pt_BR/app.po b/locale_alaveteli_pro/pt_BR/app.po index 137b8ab022..8114a0a6d7 100644 --- a/locale_alaveteli_pro/pt_BR/app.po +++ b/locale_alaveteli_pro/pt_BR/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Portuguese (Brazil) (https://app.transifex.com/mysociety/teams/" "33529/pt_BR/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/pt_PT/app.po b/locale_alaveteli_pro/pt_PT/app.po index e82fdda9d8..036986768a 100644 --- a/locale_alaveteli_pro/pt_PT/app.po +++ b/locale_alaveteli_pro/pt_PT/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Portuguese (Portugal) (https://app.transifex.com/mysociety/team" "s/33529/pt_PT/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/ro_RO/app.po b/locale_alaveteli_pro/ro_RO/app.po index 955783ac51..7c943faec5 100644 --- a/locale_alaveteli_pro/ro_RO/app.po +++ b/locale_alaveteli_pro/ro_RO/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Romanian (Romania) (https://app.transifex.com/mysociety/teams/3" "3529/ro_RO/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/rw/app.po b/locale_alaveteli_pro/rw/app.po index eba6d93366..5fd2f168e3 100644 --- a/locale_alaveteli_pro/rw/app.po +++ b/locale_alaveteli_pro/rw/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Kinyarwanda (https://app.transifex.com/mysociety/teams/33529/rw" "/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/se/app.po b/locale_alaveteli_pro/se/app.po index 1528c1d1a0..ad5d9ea869 100644 --- a/locale_alaveteli_pro/se/app.po +++ b/locale_alaveteli_pro/se/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Northern Sami (https://app.transifex.com/mysociety/teams/33529/" "se/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/si/app.po b/locale_alaveteli_pro/si/app.po index 86d882a61d..7d78a38fbc 100644 --- a/locale_alaveteli_pro/si/app.po +++ b/locale_alaveteli_pro/si/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Sinhala (https://app.transifex.com/mysociety/teams/33529/si/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sk/app.po b/locale_alaveteli_pro/sk/app.po index 121b7e45a4..0670895353 100644 --- a/locale_alaveteli_pro/sk/app.po +++ b/locale_alaveteli_pro/sk/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Slovak (https://app.transifex.com/mysociety/teams/33529/sk/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sl/app.po b/locale_alaveteli_pro/sl/app.po index cc8a8dbc62..7a26228826 100644 --- a/locale_alaveteli_pro/sl/app.po +++ b/locale_alaveteli_pro/sl/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Jernej Trebežnik, 2023\n" "Language-Team: Slovenian (https://app.transifex.com/mysociety/teams/33529/sl/)" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 mesecev" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -78,9 +69,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -125,6 +113,9 @@ msgstr "Nekaterim navedenim organom ste na {{date}} že poslali zahtevo< msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -191,6 +182,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -203,6 +209,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -260,6 +272,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -269,9 +284,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "Brskajte med zadnjimi zahtevki" - msgid "CSV" msgstr "" @@ -314,6 +326,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -323,12 +338,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -371,6 +398,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -392,6 +422,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -455,6 +488,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -515,6 +551,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -566,6 +608,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Ustvarite zahtevek" @@ -623,6 +668,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -662,6 +710,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -686,6 +737,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -776,6 +830,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -805,6 +862,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -817,6 +877,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -885,6 +954,9 @@ msgstr "Najdite organ" msgid "Search for an authority by name" msgstr "Iščite po nazivu organa" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -940,8 +1012,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -954,6 +1026,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Oprostite, našli nismo nobenega organa s tem nazivom" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Oprostite, nekaj je šlo narobe. Poskusite spet kasneje." @@ -1141,6 +1216,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1170,6 +1248,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1257,6 +1338,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1380,6 +1464,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1481,3 +1571,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sq/app.po b/locale_alaveteli_pro/sq/app.po index 8aad6057f2..6ef2ba4d6a 100644 --- a/locale_alaveteli_pro/sq/app.po +++ b/locale_alaveteli_pro/sq/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Albanian (https://app.transifex.com/mysociety/teams/33529/sq/)\n" "MIME-Version: 1.0\n" @@ -33,9 +33,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -57,12 +54,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -117,6 +105,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -183,6 +174,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -195,6 +201,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -252,6 +264,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -261,9 +276,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -306,6 +318,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -315,12 +330,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -363,6 +390,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -384,6 +414,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -447,6 +480,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -507,6 +543,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -558,6 +600,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -615,6 +660,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -654,6 +702,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -678,6 +729,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -768,6 +822,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -797,6 +854,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -809,6 +869,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -877,6 +946,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -932,8 +1004,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -946,6 +1018,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1133,6 +1208,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1162,6 +1240,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1249,6 +1330,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1372,6 +1456,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1473,3 +1563,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sr/app.po b/locale_alaveteli_pro/sr/app.po index 0cb89f1a03..f43c5222c0 100644 --- a/locale_alaveteli_pro/sr/app.po +++ b/locale_alaveteli_pro/sr/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Serbian (https://app.transifex.com/mysociety/teams/33529/sr/)\n" "MIME-Version: 1.0\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sr@latin/app.po b/locale_alaveteli_pro/sr@latin/app.po index 3eb3d511f0..ff09baaba4 100644 --- a/locale_alaveteli_pro/sr@latin/app.po +++ b/locale_alaveteli_pro/sr@latin/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Serbian (Latin) (https://app.transifex.com/mysociety/teams/3352" "9/sr@latin/)\n" @@ -35,9 +35,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -59,12 +56,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -74,9 +65,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -119,6 +107,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -185,6 +176,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -197,6 +203,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -254,6 +266,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -263,9 +278,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -308,6 +320,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -317,12 +332,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -365,6 +392,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -386,6 +416,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -449,6 +482,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -509,6 +545,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -560,6 +602,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -617,6 +662,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -656,6 +704,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -680,6 +731,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -770,6 +824,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -799,6 +856,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -811,6 +871,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -879,6 +948,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -934,8 +1006,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -948,6 +1020,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1135,6 +1210,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1164,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1251,6 +1332,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1374,6 +1458,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1475,3 +1565,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sv/app.po b/locale_alaveteli_pro/sv/app.po index 7d8c6ed30c..c985af6a90 100644 --- a/locale_alaveteli_pro/sv/app.po +++ b/locale_alaveteli_pro/sv/app.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Graeme Porteous , 2024\n" "Language-Team: Swedish (https://app.transifex.com/mysociety/teams/33529/sv/)\n" @@ -42,9 +42,6 @@ msgstr[1] "(inkluderar {{count}} återkommande prenumeranter)" msgid "(no title)" msgstr "(ingen titel)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(med {{discount_name}} har rabatt tillämpats)" - msgid "12 Months" msgstr "12 månader" @@ -66,12 +63,6 @@ msgstr "Sold From Under You - Byrån för granskan msgid "{{current_page}} of {{total_pages}}" msgstr "{{current_page}} av {{total_pages}}" -msgid "{{monthly_price}} per user, per month" -msgstr "{{monthly_price}} per användare, per månad" - -msgid "{{yearly_price}} per user, per year" -msgstr "{{yearly_price}} per användare, per år" - msgid "Action alerts: know when it’s time to take the next step" msgstr "Åtgärdsnotiser: Handlingar Pro uppmärksammar dig när det är dags att ta nästa steg" @@ -81,9 +72,6 @@ msgstr "Dagliga sammanfattande me msgid "Delivery verification for proof of receipt" msgstr "Leveransbekräftelse för kvitto på mottagande" -msgid "Delivery verification for proof of receipt" -msgstr "Leveransbekräftelse för kvitto på mottagande" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "Få regelbundna uppdateringar när svaren kommer in - utan att översvämma din inkorg" @@ -126,6 +114,9 @@ msgstr "Du har redan skickat denna förfrågan till vissa myndi msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "{{brand}} slutar om {{last4}}, upphörande {{exp_month}} / {{exp_year}}" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}} sorterat efter {{order_description}} rensa" @@ -192,6 +183,21 @@ msgstr "Lägg till myndigheter till din serieförfrågan" msgid "Add credibility" msgstr "Öka trovärdigheten " +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Tillagd" @@ -204,6 +210,12 @@ msgstr "Alla förfrågningar" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Alla förfrågningar gjorda inom denna serieförfrågan kommer förbli privata under samma längd. När en individuell begäran offentliggörs kommer alla andra i serieförfrågan också publiceras på {{site_name}}." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "Även kallad {{other_name}}" @@ -261,6 +273,9 @@ msgstr "Betalning: Månatlig" msgid "Billed: Weekly" msgstr "Betalning: Veckovis" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "Betalning" @@ -270,9 +285,6 @@ msgstr "Ger fakta om kampanjer med överskott med sekretessfunktionerna" msgid "Browse by category" msgstr "Bläddra enligt kategori" -msgid "Browse public requests" -msgstr "Bläddra bland offentliga förfrågningar" - msgid "CSV" msgstr "CSV" @@ -315,6 +327,9 @@ msgstr "Kontrollera att du inte har inkluderat någon personlig informat msgid "Choose a duration" msgstr "Välj en varaktighet" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Dölj all korrespondens" @@ -324,12 +339,24 @@ msgstr "Bekräfta ditt konto på {{site_name}}" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "För att fortsätta i kassan krävs det att din webbläsare har JavaScript aktiverat." +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "Rabattkoden har löpt ut." msgid "Coupon code is invalid." msgstr "Rabattkoden är ogiltig." +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Skapad" @@ -372,6 +399,9 @@ msgstr "Utkast" msgid "Drafts" msgstr "Utkast" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Redigera din begäran" @@ -393,6 +423,9 @@ msgstr "Expandera all korrespondens" msgid "Expires soon" msgstr "Förfaller snart" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "Researchverktyg om offentlig sektor för journalister, föreningar, forskare och företagare" @@ -456,6 +489,9 @@ msgstr "Av den skärmbilden ser du vad du behöver göra härnäst för att dina msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait undersökte 350 myndigheter för att ta reda på vilka kommersiella lokaler som var tomma för att ge en hjälpande hand till nystartade företag." +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Få e-postuppdateringar om {{pro_site_name}}?" @@ -516,6 +552,12 @@ msgstr "Undersöker användning av asbest i skolor" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "Den grävande journalisten Jenna Corderoy har använt sekretessfunktioner med Pro bra, och höll hennes omfattande Brexit-relaterade granskningar privata tills hennes arbete publicerades, fakta om kampanjöverskott och ERG utredningar för allmänheten, och flera andra viktiga publiceringar." +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "Faktura {{invoice_number}} för {{invoice_amount}} " @@ -567,6 +609,9 @@ msgstr "Lucie Stephens, uppmanad av bortgången av en närstående, begärde inf msgid "Make a batch request" msgstr "Gör en serieförfrågan" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Gör en begäran" @@ -624,6 +669,9 @@ msgstr "Nej" msgid "No bodies selected" msgstr "Inga valda myndigheter" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Inga fler myndigheter kan adderas till denna serieförfrågan" @@ -663,6 +711,9 @@ msgstr "Antal gratis användare:" msgid "Number of paying users:" msgstr "Antal betalande användare:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "När sekretessperioden avslutas, allt som du anger på denna sida, inklusive ditt namn, kommer att visas offentligt på denna hemsida" @@ -687,6 +738,9 @@ msgstr "När du är redo, publicera data bakom din utredning för att få ökat msgid "Open" msgstr "Öppna" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "Överfylld inkorg?" @@ -777,6 +831,9 @@ msgstr "Pro" msgid "Profile" msgstr "Profil" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Motivera din förfrågan med extra bakgrund och skäl varför du gör den." @@ -806,6 +863,9 @@ msgstr "Redo att offentliggöra" msgid "Refer a friend" msgstr "Referera en vän" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Kom ihåg att myndigheten har {{late_number_of_days}} kalenderdagar på sig att besvara förfrågningar." @@ -818,6 +878,15 @@ msgstr "Notiser" msgid "Remove" msgstr "Ta bort" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Svar" @@ -886,6 +955,9 @@ msgstr "Sök efter en myndighet" msgid "Search for an authority by name" msgstr "Sök efter en myndighet efter namn" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Sökandes efter {{search_term}} i {{filter_description}} sorterad efter {{order_description}} rensa" @@ -941,10 +1013,10 @@ msgstr "Inställningar" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "Dela koden {{discount_code}} med en vän för att ge dem {{discount_terms}} vid registrering." -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Visa {{count}} begäran i detalj" -msgstr[1] "Visa {{count}} förfrågningar i detalj" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "Registrera dig" @@ -955,6 +1027,9 @@ msgstr "Enkelt och överkomligt pris" msgid "Sorry, no authorities matched that search" msgstr "Tyvärr, ingen myndighet matchade den sökningen" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Tyvärr, något gick snett vid din sökning, var vänlig gör ett nytt försök." @@ -1142,6 +1217,9 @@ msgstr "Uppdatera" msgid "Update Card Details" msgstr "Uppdatera kortuppgifter" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Uppdatera dess status." @@ -1171,6 +1249,9 @@ msgstr "Visa kvitto" msgid "View authorities" msgstr "Se myndigheter" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "Vägg" @@ -1258,6 +1339,9 @@ msgstr "Du har avslutat din prenumeration på {{pro_site_name}}" msgid "You haven't added any authorities to your batch yet" msgstr "Du har inte uppgivit några myndigheter till dina förfrågningar" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Du vet vad som orsakade felet och kan föreslå en lösning, såsom en giltig e-postadress." @@ -1381,6 +1465,12 @@ msgstr "sist uppdaterad" msgid "or start a batch request" msgstr "eller starta en serieförfrågan" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "förfrågningar som snart kommer att bli offentliga" @@ -1482,3 +1572,6 @@ msgstr "{{public_body_name}} är försenad med att svara till din begäran \"{{i msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "{{public_body_name}} blev mycket försenad med att svara till din begäran \"{{info_request_title}}\"." + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/sw_KE/app.po b/locale_alaveteli_pro/sw_KE/app.po index 53750e0893..7cbba3c85c 100644 --- a/locale_alaveteli_pro/sw_KE/app.po +++ b/locale_alaveteli_pro/sw_KE/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Swahili (Kenya) (https://app.transifex.com/mysociety/teams/3352" "9/sw_KE/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/tr/app.po b/locale_alaveteli_pro/tr/app.po index 03063423f1..5364168c77 100644 --- a/locale_alaveteli_pro/tr/app.po +++ b/locale_alaveteli_pro/tr/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Senol Kaya , 2018\n" "Language-Team: Turkish (https://app.transifex.com/mysociety/teams/33529/tr/)\n" @@ -37,9 +37,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(başlık yok)" -msgid "(with {{discount_name}} discount applied)" -msgstr "({{hesap_adı}}ile hesap uygulandı)" - msgid "12 Months" msgstr "12 Ay" @@ -61,12 +58,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -76,9 +67,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -121,6 +109,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -187,6 +178,21 @@ msgstr "Listenden yetkilileri ekle" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Eklendi" @@ -199,6 +205,12 @@ msgstr "Bütün başvurular" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -256,6 +268,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -265,9 +280,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -310,6 +322,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -319,12 +334,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -367,6 +394,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -388,6 +418,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -451,6 +484,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -511,6 +547,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -562,6 +604,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -619,6 +664,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -658,6 +706,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -682,6 +733,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -772,6 +826,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -801,6 +858,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -813,6 +873,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -881,6 +950,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -936,8 +1008,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -950,6 +1022,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1137,6 +1212,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1166,6 +1244,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1253,6 +1334,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1376,6 +1460,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1477,3 +1567,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/tr_TR/app.po b/locale_alaveteli_pro/tr_TR/app.po index abf36fba13..7e0401e3e2 100644 --- a/locale_alaveteli_pro/tr_TR/app.po +++ b/locale_alaveteli_pro/tr_TR/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Turkish (Turkey) (https://app.transifex.com/mysociety/teams/335" "29/tr_TR/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/uk/app.po b/locale_alaveteli_pro/uk/app.po index 7b3e8fc11f..5e270594e9 100644 --- a/locale_alaveteli_pro/uk/app.po +++ b/locale_alaveteli_pro/uk/app.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: Natalie Hiirulainen , 2021\n" "Language-Team: Ukrainian (https://app.transifex.com/mysociety/teams/33529/uk/)" @@ -41,9 +41,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(без назви)" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "12 місяців" @@ -65,12 +62,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -80,9 +71,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -125,6 +113,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "{{filter_description}}, сортування: {{order_description}}clear" @@ -191,6 +182,21 @@ msgstr "Додати розпорядників" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "Додано" @@ -203,6 +209,12 @@ msgstr "Усі запити" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "Усі запити в цій групі залишаться приватними на такий же період. Коли окремий запит буде опубліковано, решта запитів у групі також стануть публічними." +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -260,6 +272,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -269,9 +284,6 @@ msgstr "" msgid "Browse by category" msgstr "Пошук за категорією" -msgid "Browse public requests" -msgstr "Пошук серед публічних запитів" - msgid "CSV" msgstr "CSV" @@ -314,6 +326,9 @@ msgstr "Перевірте, чи не включили ви якоїсь осо msgid "Choose a duration" msgstr "Оберіть період" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "Сховати всю переписку" @@ -323,12 +338,24 @@ msgstr "Підтвердіть ваш обліковий запис на сай msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "Створено" @@ -371,6 +398,9 @@ msgstr "Чернетка" msgid "Drafts" msgstr "Чернетки" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "Редагувати запит" @@ -392,6 +422,9 @@ msgstr "Показати всю переписку" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -455,6 +488,9 @@ msgstr " " msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "Хочете отримувати на пошту оновлення щодо {{pro_site_name}}?" @@ -515,6 +551,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -566,6 +608,9 @@ msgstr "" msgid "Make a batch request" msgstr "Створити груповий запит" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "Створити запит" @@ -623,6 +668,9 @@ msgstr "Ні" msgid "No bodies selected" msgstr "Не вибрано жодного розпорядника" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "Не можна додати більше розпорядників до цього запиту" @@ -662,6 +710,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "Одразу по закнченню періоду приватності, все що ви вводите на цій сторінці, включно з вашим іменем, буде оприлюднено на цьому сайті." @@ -686,6 +737,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -776,6 +830,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "Додатковий контекст запиту та причини зробити його." @@ -805,6 +862,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "Розпорядники інформації мають {{late_number_of_days}} днів на відповідь." @@ -817,6 +877,15 @@ msgstr "" msgid "Remove" msgstr "Прибрати" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "Відповіді" @@ -887,6 +956,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "Пошук розпорядника за назвою" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "Пошук {{search_term}} серед {{filter_description}}, сортування: {{order_description}}clear" @@ -944,12 +1016,10 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "Показати {{count}} запит" -msgstr[1] "Показати {{count}} запити" -msgstr[2] "Показати {{count}} запитів" -msgstr[3] "Показати {{count}} запитів" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "" @@ -960,6 +1030,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "Нічого не знайдено" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "Щось пішло не так, спробуйте пошук ще раз." @@ -1151,6 +1224,9 @@ msgstr "Оновити" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "Оновити статус" @@ -1182,6 +1258,9 @@ msgstr "" msgid "View authorities" msgstr "Переглянути розпорядників" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1269,6 +1348,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "Ви не додали жодного розпорядника" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "Ви знаєте, чим викликана помилка та можете запропонувати рішення (наприклад, діючу електронну адресу)." @@ -1392,6 +1474,12 @@ msgstr "оновлено" msgid "or start a batch request" msgstr "або зробіть груповий запит" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1503,3 +1591,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/vi/app.po b/locale_alaveteli_pro/vi/app.po index d0e600b8ad..f8851313d0 100644 --- a/locale_alaveteli_pro/vi/app.po +++ b/locale_alaveteli_pro/vi/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Vietnamese (https://app.transifex.com/mysociety/teams/33529/vi/" ")\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/yue/app.po b/locale_alaveteli_pro/yue/app.po index b22be10057..e11fb888ac 100644 --- a/locale_alaveteli_pro/yue/app.po +++ b/locale_alaveteli_pro/yue/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Cantonese (https://app.transifex.com/mysociety/teams/33529/yue/" ")\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/zh_CN/app.po b/locale_alaveteli_pro/zh_CN/app.po index 05aaaf34b8..c61d7007d2 100644 --- a/locale_alaveteli_pro/zh_CN/app.po +++ b/locale_alaveteli_pro/zh_CN/app.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Language-Team: Chinese (China) (https://app.transifex.com/mysociety/teams/3352" "9/zh_CN/)\n" @@ -34,9 +34,6 @@ msgstr[1] "" msgid "(no title)" msgstr "" -msgid "(with {{discount_name}} discount applied)" -msgstr "" - msgid "12 Months" msgstr "" @@ -58,12 +55,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "" -msgid "{{monthly_price}} per user, per month" -msgstr "" - -msgid "{{yearly_price}} per user, per year" -msgstr "" - msgid "Action alerts: know when it’s time to take the next step" msgstr "" @@ -73,9 +64,6 @@ msgstr "" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "" @@ -118,6 +106,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -184,6 +175,21 @@ msgstr "" msgid "Add credibility" msgstr "" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "" @@ -196,6 +202,12 @@ msgstr "" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "" @@ -253,6 +265,9 @@ msgstr "" msgid "Billed: Weekly" msgstr "" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "" @@ -262,9 +277,6 @@ msgstr "" msgid "Browse by category" msgstr "" -msgid "Browse public requests" -msgstr "" - msgid "CSV" msgstr "" @@ -307,6 +319,9 @@ msgstr "" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -316,12 +331,24 @@ msgstr "" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "" msgid "Coupon code is invalid." msgstr "" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -364,6 +391,9 @@ msgstr "" msgid "Drafts" msgstr "" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "" @@ -385,6 +415,9 @@ msgstr "" msgid "Expires soon" msgstr "" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -448,6 +481,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -508,6 +544,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -559,6 +601,9 @@ msgstr "" msgid "Make a batch request" msgstr "" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "" @@ -616,6 +661,9 @@ msgstr "" msgid "No bodies selected" msgstr "" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "" @@ -655,6 +703,9 @@ msgstr "" msgid "Number of paying users:" msgstr "" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -679,6 +730,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -769,6 +823,9 @@ msgstr "" msgid "Profile" msgstr "" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -798,6 +855,9 @@ msgstr "" msgid "Refer a friend" msgstr "" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -810,6 +870,15 @@ msgstr "" msgid "Remove" msgstr "" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "" @@ -878,6 +947,9 @@ msgstr "" msgid "Search for an authority by name" msgstr "" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -933,8 +1005,8 @@ msgstr "" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" msgstr[0] "" msgstr[1] "" @@ -947,6 +1019,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "" @@ -1134,6 +1209,9 @@ msgstr "" msgid "Update Card Details" msgstr "" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "" @@ -1163,6 +1241,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1331,9 @@ msgstr "" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1457,12 @@ msgstr "" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1474,3 +1564,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" diff --git a/locale_alaveteli_pro/zh_HK/app.po b/locale_alaveteli_pro/zh_HK/app.po index 955f2007d6..004ce9593e 100644 --- a/locale_alaveteli_pro/zh_HK/app.po +++ b/locale_alaveteli_pro/zh_HK/app.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: alaveteli\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-17 16:36+0100\n" +"POT-Creation-Date: 2024-12-17 12:50+0000\n" "PO-Revision-Date: 2017-04-03 11:57+0000\n" "Last-Translator: gensitu , 2021\n" "Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mysociety/teams/" @@ -39,9 +39,6 @@ msgstr[1] "" msgid "(no title)" msgstr "(無標題)" -msgid "(with {{discount_name}} discount applied)" -msgstr "(已用{{discount_name}}優惠)" - msgid "12 Months" msgstr "12個月" @@ -63,12 +60,6 @@ msgstr "" msgid "{{current_page}} of {{total_pages}}" msgstr "{{當前頁數}}{{總頁數}}" -msgid "{{monthly_price}} per user, per month" -msgstr "每個用戶一個月{{一個月的價格}}" - -msgid "{{yearly_price}} per user, per year" -msgstr "每個用戶一年{{一年的價格}}" - msgid "Action alerts: know when it’s time to take the next step" msgstr "提醒:知道何時該採取下一步措施" @@ -78,9 +69,6 @@ msgstr "每日整理郵件以保持收件箱整潔" msgid "Delivery verification for proof of receipt" msgstr "" -msgid "Delivery verification for proof of receipt" -msgstr "" - msgid "Get regular updates as the responses come in — without overwhelming your inbox" msgstr "收到您的回應後,我們將定期發送新資訊給您-不會過量而使您的收件箱混亂" @@ -123,6 +111,9 @@ msgstr "" msgid "{{brand}} ending in {{last4}}, expiry {{exp_month}}/{{exp_year}}" msgstr "" +msgid "{{discounted_amount}} with discount {{discount_name}} applied" +msgstr "" + msgid "{{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -189,6 +180,21 @@ msgstr "添加政府部門或公營機構到你的列表" msgid "Add credibility" msgstr "增加可信度" +msgid "Add question" +msgstr "" + +msgid "Add questions to your project" +msgstr "" + +msgid "Add request" +msgstr "" + +msgid "Add requests to your project" +msgstr "" + +msgid "Add whole batch and related requests" +msgstr "" + msgid "Added" msgstr "已加入" @@ -201,6 +207,12 @@ msgstr "所有索取資料要求" msgid "All requests within this batch will remain private for the same duration. When an individual request is made public all other requests in this batch will also be published on {{site_name}}." msgstr "該組內的所有請求將同一時間內保持私密狀態。 單個請求公開後,該組內的所有其他請求也將在{{site_name}}上公開。" +msgid "Allow blank" +msgstr "" + +msgid "Allow muliple" +msgstr "" + msgid "Also called {{other_name}}." msgstr "亦稱為{{other_name}}" @@ -258,6 +270,9 @@ msgstr "每月付款" msgid "Billed: Weekly" msgstr "每週付款" +msgid "Billed: every {{interval}}" +msgstr "" + msgid "Billing" msgstr "付費" @@ -267,9 +282,6 @@ msgstr "" msgid "Browse by category" msgstr "按分類瀏覽" -msgid "Browse public requests" -msgstr "瀏覽公開的索取資料要求" - msgid "CSV" msgstr "CSV" @@ -312,6 +324,9 @@ msgstr "請確保你沒有加入任何個人資料。" msgid "Choose a duration" msgstr "" +msgid "Classify responses" +msgstr "" + msgid "Collapse all correspondence" msgstr "" @@ -321,12 +336,24 @@ msgstr "在{{site_name}}上確認您的帳戶" msgid "Continuing with checkout requires your browser to have JavaScript enabled." msgstr "要繼續付款,請先啟用JavaScript。" +msgid "Copied!" +msgstr "" + +msgid "Copy" +msgstr "" + msgid "Coupon code has expired." msgstr "優惠碼已過期。" msgid "Coupon code is invalid." msgstr "優惠碼無效。" +msgid "Create Project" +msgstr "" + +msgid "Create a new Project" +msgstr "" + msgid "Created" msgstr "" @@ -369,6 +396,9 @@ msgstr "草稿" msgid "Drafts" msgstr "草稿" +msgid "Edit your project" +msgstr "" + msgid "Edit your request" msgstr "編輯此要求" @@ -390,6 +420,9 @@ msgstr "展開所有回覆" msgid "Expires soon" msgstr "即將過期" +msgid "Extract data" +msgstr "" + msgid "FOI Management Tools for journalists, campaigners and researchers" msgstr "" @@ -453,6 +486,9 @@ msgstr "" msgid "Gavin Chait surveyed 350 local authorities to find out which commercial premises were empty, in order to give a helping hand to start-up businesses." msgstr "Gavin Chait為了協助初創企業,曾向350個地方部門詢問空置商業物業的地點。" +msgid "Generate invite link" +msgstr "" + msgid "Get email updates about {{pro_site_name}}?" msgstr "" @@ -513,6 +549,12 @@ msgstr "" msgid "Investigative journalist Jenna Corderoy has made good use of Pro’s privacy features, keeping her extensive Brexit-related investigations private until her stories broke, bringing facts about campaign overspending and ERG research to the public, among several other important stories." msgstr "" +msgid "Invite contributors" +msgstr "" + +msgid "Invite others to the project" +msgstr "" + msgid "Invoice {{invoice_number}} for {{invoice_amount}}" msgstr "" @@ -564,6 +606,9 @@ msgstr "Lucie Stephens在親人去世之後,向200個執法部門索取有關 msgid "Make a batch request" msgstr "提出多項要求" +msgid "Make a project" +msgstr "" + msgid "Make a request" msgstr "提出要求" @@ -621,6 +666,9 @@ msgstr "不" msgid "No bodies selected" msgstr "未選取公共機構" +msgid "No contributors have joined this project yet" +msgstr "" + msgid "No more authorities can be added to this batch request." msgstr "不可再加入公共機構。" @@ -660,6 +708,9 @@ msgstr "免費試用用戶數:" msgid "Number of paying users:" msgstr "付費用戶數:" +msgid "On the project" +msgstr "" + msgid "Once the privacy period ends, everything that you enter on this page, including your name, will be displayed publicly on this website." msgstr "" @@ -684,6 +735,9 @@ msgstr "" msgid "Open" msgstr "" +msgid "Options" +msgstr "" + msgid "Overflowing inbox?" msgstr "" @@ -774,6 +828,9 @@ msgstr "" msgid "Profile" msgstr "個人簡介" +msgid "Projects" +msgstr "" + msgid "Provide extra context on the request and your reasons for making it." msgstr "" @@ -803,6 +860,9 @@ msgstr "" msgid "Refer a friend" msgstr "介紹好友" +msgid "Regenerate invite link" +msgstr "" + msgid "Remember, public authorities have {{late_number_of_days}} calendar days to respond to FOI requests." msgstr "" @@ -815,6 +875,15 @@ msgstr "" msgid "Remove" msgstr "移除" +msgid "Remove question" +msgstr "" + +msgid "Remove request" +msgstr "" + +msgid "Remove whole batch" +msgstr "" + msgid "Replies" msgstr "回覆" @@ -882,6 +951,9 @@ msgstr "搜尋公共機構" msgid "Search for an authority by name" msgstr "以名稱搜尋公共機構" +msgid "Search your requests by title" +msgstr "" + msgid "Searching for {{search_term}} in {{filter_description}} sorted by {{order_description}} clear" msgstr "" @@ -935,9 +1007,10 @@ msgstr "設定" msgid "Share the code {{discount_code}} with a friend to give them {{discount_terms}} on signup." msgstr "" -msgid "Show {{count}} request in detail" -msgid_plural "Show {{count}} requests in detail" -msgstr[0] "顯示{{count}}項要求的詳情" +msgid "Show {{count}} request in detail" +msgid_plural "Show {{count}} requests in detail" +msgstr[0] "" +msgstr[1] "" msgid "Sign up" msgstr "註冊" @@ -948,6 +1021,9 @@ msgstr "" msgid "Sorry, no authorities matched that search" msgstr "抱歉,沒有公共機構在搜尋範圍內" +msgid "Sorry, no requests matched that search" +msgstr "" + msgid "Sorry, something went wrong getting your results, please try searching again." msgstr "抱歉,搜尋出現問題,請再次搜尋。" @@ -1135,6 +1211,9 @@ msgstr "更新" msgid "Update Card Details" msgstr "更新付款卡資料" +msgid "Update Project" +msgstr "" + msgid "Update its status." msgid_plural "Update statuses." msgstr[0] "更新狀態。" @@ -1163,6 +1242,9 @@ msgstr "" msgid "View authorities" msgstr "" +msgid "View public requests" +msgstr "" + msgid "Wall" msgstr "" @@ -1250,6 +1332,9 @@ msgstr "你已取消訂閲{{pro_site_name}}" msgid "You haven't added any authorities to your batch yet" msgstr "" +msgid "You haven't added any reqeusts to your project yet" +msgstr "" + msgid "You know what caused the error, and can suggest a solution, such as a working email address." msgstr "" @@ -1373,6 +1458,12 @@ msgstr "最新更新" msgid "or start a batch request" msgstr "" +msgid "per user, every {{interval}}" +msgstr "" + +msgid "per user, per {{interval}}" +msgstr "" + msgid "requests that will be made public soon" msgstr "" @@ -1470,3 +1561,6 @@ msgstr "" msgid "{{public_body_name}} became long overdue in responding to your request \"{{info_request_title}}\"." msgstr "" + +msgid "{{site_name}} Projects is a early beta feature." +msgstr "" From 84e56e88804363ac3549ce01edd1bd5a05ac42c4 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Wed, 8 Jan 2025 10:09:38 +0000 Subject: [PATCH 4/4] Bump Alaveteli to 0.45.0.0 --- config/initializers/alaveteli.rb | 2 +- doc/CHANGES.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/initializers/alaveteli.rb b/config/initializers/alaveteli.rb index 4979bcb795..49b5faca9d 100644 --- a/config/initializers/alaveteli.rb +++ b/config/initializers/alaveteli.rb @@ -10,7 +10,7 @@ load "util.rb" # Application version -ALAVETELI_VERSION = '0.44.0.2' +ALAVETELI_VERSION = '0.45.0.0' # Add new inflection rules using the following format # (all these examples are active by default): diff --git a/doc/CHANGES.md b/doc/CHANGES.md index f6603e6e45..acef21c62d 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -1,4 +1,4 @@ -# develop +# 0.45.0.0 ## Highlighted Features