aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile7
-rw-r--r--app/controllers/request_controller.rb2
-rw-r--r--app/views/general/_responsive_topnav.html.erb2
-rw-r--r--app/views/general/_topnav.html.erb4
-rw-r--r--doc/CHANGES.md1
-rw-r--r--locale/aln/app.po4
-rw-r--r--locale/app.pot4
-rw-r--r--locale/ar/app.po4
-rw-r--r--locale/bg/app.po4
-rw-r--r--locale/bs/app.po4
-rw-r--r--locale/ca/app.po4
-rw-r--r--locale/cs/app.po4
-rw-r--r--locale/cy/app.po4
-rw-r--r--locale/de/app.po4
-rw-r--r--locale/en/app.po4
-rw-r--r--locale/en_IE/app.po4
-rw-r--r--locale/en_UG/app.po4
-rw-r--r--locale/es/app.po4
-rw-r--r--locale/eu/app.po4
-rw-r--r--locale/fi/app.po4
-rw-r--r--locale/fr/app.po4
-rw-r--r--locale/fr_CA/app.po4
-rw-r--r--locale/gl/app.po4
-rw-r--r--locale/he_IL/app.po4
-rw-r--r--locale/hr/app.po4
-rw-r--r--locale/hr_HR/app.po4
-rw-r--r--locale/hu_HU/app.po4
-rw-r--r--locale/id/app.po4
-rw-r--r--locale/it/app.po4
-rw-r--r--locale/mk_MK/app.po4
-rw-r--r--locale/nb_NO/app.po4
-rw-r--r--locale/nl/app.po4
-rw-r--r--locale/nn/app.po4
-rw-r--r--locale/pl/app.po4
-rw-r--r--locale/pt_BR/app.po4
-rw-r--r--locale/pt_PT/app.po4
-rw-r--r--locale/ro_RO/app.po4
-rw-r--r--locale/sl/app.po4
-rw-r--r--locale/sq/app.po4
-rw-r--r--locale/sr@latin/app.po4
-rw-r--r--locale/sv/app.po4
-rw-r--r--locale/sw_KE/app.po4
-rw-r--r--locale/tr/app.po4
-rw-r--r--locale/uk/app.po4
-rw-r--r--locale/vi/app.po4
-rw-r--r--locale/zh_HK/app.po4
46 files changed, 88 insertions, 92 deletions
diff --git a/Gemfile b/Gemfile
index 418c60668..0ceae8145 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,10 +1,3 @@
-# Work around bug in Debian Squeeze - see https://github.com/mysociety/alaveteli/pull/297#issuecomment-4101012
-if File.exist? "/etc/debian_version" and File.open("/etc/debian_version").read.strip =~ /^(squeeze.*|6\.0\.[45])$/
- if File.exist? "/lib/libuuid.so.1"
- require 'dl'
- DL::dlopen('/lib/libuuid.so.1')
- end
-end
source 'https://rubygems.org'
gem 'rails', '3.2.19'
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb
index 6281959fb..3fa0ef0ce 100644
--- a/app/controllers/request_controller.rb
+++ b/app/controllers/request_controller.rb
@@ -181,7 +181,7 @@ class RequestController < ApplicationController
end
@filters = params.merge(:latest_status => @view)
- @title = _("View and search requests")
+ @title = _('Browse and search requests')
@title = @title + " (page " + @page.to_s + ")" if (@page > 1)
@track_thing = TrackThing.create_track_for_search_query(InfoRequestEvent.make_query_from_params(@filters))
diff --git a/app/views/general/_responsive_topnav.html.erb b/app/views/general/_responsive_topnav.html.erb
index e726c17f4..0ece0da9a 100644
--- a/app/views/general/_responsive_topnav.html.erb
+++ b/app/views/general/_responsive_topnav.html.erb
@@ -6,7 +6,7 @@
</li>
<li class="<%= 'selected' if params[:controller] == 'request' and !['new', 'select_authority'].include?(params[:action]) %>">
- <%= link_to _("View requests"), request_list_successful_path %>
+ <%= link_to _("Browse requests"), request_list_successful_path %>
</li>
<li class="<%= 'selected' if params[:controller] == 'public_body' %>">
diff --git a/app/views/general/_topnav.html.erb b/app/views/general/_topnav.html.erb
index d37bd97d1..04ca07fa9 100644
--- a/app/views/general/_topnav.html.erb
+++ b/app/views/general/_topnav.html.erb
@@ -2,7 +2,9 @@
<ul id="navigation">
<li class="<%= 'selected' if params[:controller] == 'general' and params[:action] != 'blog' and params[:action] != 'search' %>"><%= link_to _("Home"), frontpage_path %></li>
<li class="<%= 'selected' if params[:controller] == 'request' and ['new', 'select_authority'].include?(params[:action]) %>"><%= link_to _("Make a request"), select_authority_path, :id => 'make-request-link' %></li>
- <li class="<%= 'selected' if params[:controller] == 'request' and !['new', 'select_authority'].include?(params[:action]) %>"><%= link_to _("View requests"), request_list_successful_path %></li>
+ <li class="<%= 'selected' if params[:controller] == 'request' and !['new', 'select_authority'].include?(params[:action]) %>">
+ <%= link_to _("Browse requests"), request_list_successful_path %>
+ </li>
<li class="<%= 'selected' if params[:controller] == 'public_body' %>"><%= link_to _("View authorities"), list_public_bodies_default_path %></li>
<% unless AlaveteliConfiguration::blog_feed.empty? %>
<li class="<%= 'selected' if params[:controller] == 'general' and params[:action] == 'blog' %>"><%= link_to _("Read blog"), blog_path %></li>
diff --git a/doc/CHANGES.md b/doc/CHANGES.md
index b906ea368..e897c8452 100644
--- a/doc/CHANGES.md
+++ b/doc/CHANGES.md
@@ -28,6 +28,7 @@
<%= text_field_tag 'public_body_change_request[comment]' %>
</p>
This is the anti-spam honeypot.
+* The workaround for an old [bug](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637239) in libc6 in squeeze has been removed. If you're running on squeeze, please make sure you're using the latest version of libc6 (2.11.3-4) to prevent the risk of segfaults.
* The capistrano `stop`, `start` and `restart` tasks now restart the app
server via the service `/etc/init.d/alaveteli`. If you're using
capistrano for deployment, make sure `/etc/init.d/alaveteli` exists
diff --git a/locale/aln/app.po b/locale/aln/app.po
index 142732828..e9975e50b 100644
--- a/locale/aln/app.po
+++ b/locale/aln/app.po
@@ -3049,7 +3049,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3058,7 +3058,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/app.pot b/locale/app.pot
index f92750da2..bf3c50630 100644
--- a/locale/app.pot
+++ b/locale/app.pot
@@ -3046,7 +3046,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3055,7 +3055,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/ar/app.po b/locale/ar/app.po
index 7302b4c82..c049a41b1 100644
--- a/locale/ar/app.po
+++ b/locale/ar/app.po
@@ -3078,7 +3078,7 @@ msgstr "رؤية البريد الالكتروني لحرية النفاذ ال
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "الاطلاع على طلبات حرية النفاذ الى المعلومة المقدمة من قبل {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "عرض والبحث عن الطلبات"
msgid "View authorities"
@@ -3087,7 +3087,7 @@ msgstr "عرض السلطات"
msgid "View email"
msgstr "عرض البريد الالكتروني"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "عرض الطلبات"
msgid "Waiting clarification."
diff --git a/locale/bg/app.po b/locale/bg/app.po
index f57598183..76e57f5b3 100644
--- a/locale/bg/app.po
+++ b/locale/bg/app.po
@@ -3052,7 +3052,7 @@ msgstr "Показване ДдИ имейл адрес за {{public_body_name}
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Преглед на Заявленията за Достъп до информация, направени от {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Преглед и търсене на заявления"
msgid "View authorities"
@@ -3061,7 +3061,7 @@ msgstr "Преглед на органите"
msgid "View email"
msgstr "Преглед на имейл"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Преглед на заявления"
msgid "Waiting clarification."
diff --git a/locale/bs/app.po b/locale/bs/app.po
index e8689782e..d802bd86b 100644
--- a/locale/bs/app.po
+++ b/locale/bs/app.po
@@ -3206,7 +3206,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Pregledaj i pretraži zahtjeve"
msgid "View authorities"
@@ -3215,7 +3215,7 @@ msgstr "Vidjeti ustanove"
msgid "View email"
msgstr "Pogledati e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Vidjeti zahtjeve"
msgid "Waiting clarification."
diff --git a/locale/ca/app.po b/locale/ca/app.po
index 09e8e19ea..e66874958 100644
--- a/locale/ca/app.po
+++ b/locale/ca/app.po
@@ -3229,7 +3229,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Ver y buscar solicitudes"
msgid "View authorities"
@@ -3238,7 +3238,7 @@ msgstr "Ver organismos públicos"
msgid "View email"
msgstr "Veure el correu"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ver solicitudes"
msgid "Waiting clarification."
diff --git a/locale/cs/app.po b/locale/cs/app.po
index abf46d006..181665862 100644
--- a/locale/cs/app.po
+++ b/locale/cs/app.po
@@ -3209,7 +3209,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Prohledávejte a prohlížejte dotazy"
msgid "View authorities"
@@ -3218,7 +3218,7 @@ msgstr "Zobrazit instituce"
msgid "View email"
msgstr "Zobrazit e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Zobrazit dotazy"
msgid "Waiting clarification."
diff --git a/locale/cy/app.po b/locale/cy/app.po
index 07c94e092..1522afe12 100644
--- a/locale/cy/app.po
+++ b/locale/cy/app.po
@@ -3072,7 +3072,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Gweld a chwilio ceisiadau"
msgid "View authorities"
@@ -3081,7 +3081,7 @@ msgstr "Gweld yr awdurdodau"
msgid "View email"
msgstr "Gweld e-bost"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Gweld ceisiadau"
msgid "Waiting clarification."
diff --git a/locale/de/app.po b/locale/de/app.po
index 9045510f6..7c884fb92 100644
--- a/locale/de/app.po
+++ b/locale/de/app.po
@@ -3124,7 +3124,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Ansehen und Suchen von Anfragen"
msgid "View authorities"
@@ -3133,7 +3133,7 @@ msgstr "Behörden ansehen"
msgid "View email"
msgstr "Email ansehen"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Anfragen ansehen"
msgid "Waiting clarification."
diff --git a/locale/en/app.po b/locale/en/app.po
index 11bd6dd22..1570a97b5 100644
--- a/locale/en/app.po
+++ b/locale/en/app.po
@@ -3047,7 +3047,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3056,7 +3056,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/en_IE/app.po b/locale/en_IE/app.po
index 94f6c4c05..ad06b2750 100644
--- a/locale/en_IE/app.po
+++ b/locale/en_IE/app.po
@@ -3051,7 +3051,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3060,7 +3060,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/en_UG/app.po b/locale/en_UG/app.po
index 122de1d4a..54b2f27b3 100644
--- a/locale/en_UG/app.po
+++ b/locale/en_UG/app.po
@@ -3047,7 +3047,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3056,7 +3056,7 @@ msgstr "View agencies"
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/es/app.po b/locale/es/app.po
index fbc00c834..014ed2fd7 100644
--- a/locale/es/app.po
+++ b/locale/es/app.po
@@ -3256,7 +3256,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Ver y buscar solicitudes"
msgid "View authorities"
@@ -3265,7 +3265,7 @@ msgstr "Ver organismos públicos"
msgid "View email"
msgstr "Ver correo"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ver solicitudes"
msgid "Waiting clarification."
diff --git a/locale/eu/app.po b/locale/eu/app.po
index a0a67c8f0..ea8755583 100644
--- a/locale/eu/app.po
+++ b/locale/eu/app.po
@@ -3115,7 +3115,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Ikusi eta bilatu eskabideak"
msgid "View authorities"
@@ -3124,7 +3124,7 @@ msgstr "Ikusi erakunde publikoak"
msgid "View email"
msgstr "Ikusi posta"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ikusi eskabideak"
msgid "Waiting clarification."
diff --git a/locale/fi/app.po b/locale/fi/app.po
index 237d05316..9652dd496 100644
--- a/locale/fi/app.po
+++ b/locale/fi/app.po
@@ -3051,7 +3051,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3060,7 +3060,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/fr/app.po b/locale/fr/app.po
index f413c5e88..3f86e8e1a 100644
--- a/locale/fr/app.po
+++ b/locale/fr/app.po
@@ -3077,7 +3077,7 @@ msgstr "Voir l'adresse mail des demandes d'accès à l'information pour {{publi
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Voir les demandes faites par {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Visualiser et parcourir les demandes d'information"
msgid "View authorities"
@@ -3086,7 +3086,7 @@ msgstr "Voir les institutions publiques"
msgid "View email"
msgstr "Voir l'email "
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Voir les demandes"
msgid "Waiting clarification."
diff --git a/locale/fr_CA/app.po b/locale/fr_CA/app.po
index ce2ed9c3b..924cc2048 100644
--- a/locale/fr_CA/app.po
+++ b/locale/fr_CA/app.po
@@ -3060,7 +3060,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Parcourir les demandes passées"
msgid "View authorities"
@@ -3069,7 +3069,7 @@ msgstr "Voir les organismes"
msgid "View email"
msgstr "Voir le courriel"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Voir les demandes"
msgid "Waiting clarification."
diff --git a/locale/gl/app.po b/locale/gl/app.po
index 6c8ad54cc..bc568166f 100644
--- a/locale/gl/app.po
+++ b/locale/gl/app.po
@@ -3234,7 +3234,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Ver y buscar solicitudes"
msgid "View authorities"
@@ -3243,7 +3243,7 @@ msgstr "Ver organismos públicos"
msgid "View email"
msgstr "Ver correo"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ver solicitudes"
msgid "Waiting clarification."
diff --git a/locale/he_IL/app.po b/locale/he_IL/app.po
index c05cd1293..bf550d7b6 100644
--- a/locale/he_IL/app.po
+++ b/locale/he_IL/app.po
@@ -3065,7 +3065,7 @@ msgstr "צפו בדוא\"ל של בקשות מידע ל- '{{public_body_name}}'"
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "צפו בבקשות מידע שהוגשו על-ידי {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "צפו וחפשו בקשות מידע"
msgid "View authorities"
@@ -3074,7 +3074,7 @@ msgstr "רשויות"
msgid "View email"
msgstr "צפו בדואר האלקטרוני"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "בקשות מידע"
msgid "Waiting clarification."
diff --git a/locale/hr/app.po b/locale/hr/app.po
index 99bb74255..9fd826c47 100644
--- a/locale/hr/app.po
+++ b/locale/hr/app.po
@@ -3204,7 +3204,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Pregledaj i pretraži zahtjeve"
msgid "View authorities"
@@ -3213,7 +3213,7 @@ msgstr "Vidjeti ustanove"
msgid "View email"
msgstr "Pogledati e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Vidjeti zahtjeve"
msgid "Waiting clarification."
diff --git a/locale/hr_HR/app.po b/locale/hr_HR/app.po
index eab9f643e..64550864b 100644
--- a/locale/hr_HR/app.po
+++ b/locale/hr_HR/app.po
@@ -3057,7 +3057,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3066,7 +3066,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/hu_HU/app.po b/locale/hu_HU/app.po
index 289eea574..4b06e9d89 100644
--- a/locale/hu_HU/app.po
+++ b/locale/hu_HU/app.po
@@ -3237,7 +3237,7 @@ msgstr "{{public_body_name}} közérdekűadat-igényléshez használt e-mail cí
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 and search requests"
+msgid "Browse and search requests"
msgstr "Böngészés az adatigénylések között"
msgid "View authorities"
@@ -3246,7 +3246,7 @@ msgstr "Adatgazdák "
msgid "View email"
msgstr "E-mail megtekintése "
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Adatigénylések"
msgid "Waiting clarification."
diff --git a/locale/id/app.po b/locale/id/app.po
index d9043ca1b..8c35fc006 100644
--- a/locale/id/app.po
+++ b/locale/id/app.po
@@ -3255,7 +3255,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Tampilkan dan cari permintaan"
msgid "View authorities"
@@ -3264,7 +3264,7 @@ msgstr "Tampilkan otoritas"
msgid "View email"
msgstr "Tampilkan email"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Tampilkan permintaan"
msgid "Waiting clarification."
diff --git a/locale/it/app.po b/locale/it/app.po
index 662881858..66effc511 100644
--- a/locale/it/app.po
+++ b/locale/it/app.po
@@ -3051,7 +3051,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Guarda e cerca richieste"
msgid "View authorities"
@@ -3060,7 +3060,7 @@ msgstr "Guarda autorità"
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Guarda richieste"
msgid "Waiting clarification."
diff --git a/locale/mk_MK/app.po b/locale/mk_MK/app.po
index 2f55357d5..5eff5857a 100644
--- a/locale/mk_MK/app.po
+++ b/locale/mk_MK/app.po
@@ -3052,7 +3052,7 @@ msgstr "Видете ја адресата за е-пошта за слобод
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Видете ги барањата за слободен пристап до информации од јавен карактер направени од {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Видете и пребарајте барања"
msgid "View authorities"
@@ -3061,7 +3061,7 @@ msgstr "Видете ги имателите"
msgid "View email"
msgstr "Видете е-пошта"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Видете барања"
msgid "Waiting clarification."
diff --git a/locale/nb_NO/app.po b/locale/nb_NO/app.po
index 09f5c331c..f43bd8b45 100644
--- a/locale/nb_NO/app.po
+++ b/locale/nb_NO/app.po
@@ -3062,7 +3062,7 @@ msgstr "Vis e-post adresse for innsyn mot {{public_body_name}}"
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Vis innsynsbegjæringer som er opprettet av {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Vis og søk i henvendelser"
msgid "View authorities"
@@ -3071,7 +3071,7 @@ msgstr "Vis myndigheter"
msgid "View email"
msgstr "Les epost"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Vis henvendelser"
msgid "Waiting clarification."
diff --git a/locale/nl/app.po b/locale/nl/app.po
index b1b0767cf..2df1b1d9c 100644
--- a/locale/nl/app.po
+++ b/locale/nl/app.po
@@ -3050,7 +3050,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Bekijk de Wet Openbaarheid Bestuur verzoeken van {{gebruikersnaam}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3059,7 +3059,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/nn/app.po b/locale/nn/app.po
index abd22f8b1..52a763dfb 100644
--- a/locale/nn/app.po
+++ b/locale/nn/app.po
@@ -3047,7 +3047,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3056,7 +3056,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/pl/app.po b/locale/pl/app.po
index b85fc7154..24620f926 100644
--- a/locale/pl/app.po
+++ b/locale/pl/app.po
@@ -3055,7 +3055,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3064,7 +3064,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/pt_BR/app.po b/locale/pt_BR/app.po
index 8def6af2d..a119a1962 100644
--- a/locale/pt_BR/app.po
+++ b/locale/pt_BR/app.po
@@ -3122,7 +3122,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Visualizar ou buscar pedidos"
msgid "View authorities"
@@ -3131,7 +3131,7 @@ msgstr "Ver órgãos públicos"
msgid "View email"
msgstr "Ver e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ver pedidos"
msgid "Waiting clarification."
diff --git a/locale/pt_PT/app.po b/locale/pt_PT/app.po
index 7e7d384d4..b8d20ff2b 100644
--- a/locale/pt_PT/app.po
+++ b/locale/pt_PT/app.po
@@ -3106,7 +3106,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Visualizar ou buscar pedidos"
msgid "View authorities"
@@ -3115,7 +3115,7 @@ msgstr "Ver órgãos públicos"
msgid "View email"
msgstr "Ver e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Ver pedidos"
msgid "Waiting clarification."
diff --git a/locale/ro_RO/app.po b/locale/ro_RO/app.po
index 25a622935..1a57f6175 100644
--- a/locale/ro_RO/app.po
+++ b/locale/ro_RO/app.po
@@ -3069,7 +3069,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Vezi şi caută cereri"
msgid "View authorities"
@@ -3078,7 +3078,7 @@ msgstr "Vezi autorităţi"
msgid "View email"
msgstr "Vezi email"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Vezi cereri"
msgid "Waiting clarification."
diff --git a/locale/sl/app.po b/locale/sl/app.po
index 50b390f01..d143f3248 100644
--- a/locale/sl/app.po
+++ b/locale/sl/app.po
@@ -3061,7 +3061,7 @@ 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 zahtevke za informacije javnega značaja, ki jih je naredil {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Preglejte in iščite po zahtevkih"
msgid "View authorities"
@@ -3070,7 +3070,7 @@ msgstr "Poglejte organe"
msgid "View email"
msgstr "Poglejte e-poštni naslov"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Poglejte zahtevke"
msgid "Waiting clarification."
diff --git a/locale/sq/app.po b/locale/sq/app.po
index 619fe808e..953bdf25c 100644
--- a/locale/sq/app.po
+++ b/locale/sq/app.po
@@ -3179,7 +3179,7 @@ msgstr "Shiko adresën e emailit për Informatë Zyrtare {{public_body_name}}"
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Shiko kërkesat për informata zyrtare të bëra nga {{user_name}}: "
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Shiko dhe kërko kërkesat"
msgid "View authorities"
@@ -3188,7 +3188,7 @@ msgstr "Shiko autoritetet"
msgid "View email"
msgstr "Shiko adresën e emailit"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Shiko kërkesat"
msgid "Waiting clarification."
diff --git a/locale/sr@latin/app.po b/locale/sr@latin/app.po
index 27dd57a5d..7275c8283 100644
--- a/locale/sr@latin/app.po
+++ b/locale/sr@latin/app.po
@@ -3136,7 +3136,7 @@ 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 and search requests"
+msgid "Browse and search requests"
msgstr "Pregledaj i pretraži zahteve"
msgid "View authorities"
@@ -3145,7 +3145,7 @@ msgstr "Pregledaj ustanove"
msgid "View email"
msgstr "Prikaži e-mail"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Pregled zahteva"
msgid "Waiting clarification."
diff --git a/locale/sv/app.po b/locale/sv/app.po
index 339500298..ef8213c88 100644
--- a/locale/sv/app.po
+++ b/locale/sv/app.po
@@ -3047,7 +3047,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3056,7 +3056,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/sw_KE/app.po b/locale/sw_KE/app.po
index a05e51afa..6088c1692 100644
--- a/locale/sw_KE/app.po
+++ b/locale/sw_KE/app.po
@@ -3047,7 +3047,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3056,7 +3056,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/tr/app.po b/locale/tr/app.po
index 5d6ea1fe0..6e8f2ee2b 100644
--- a/locale/tr/app.po
+++ b/locale/tr/app.po
@@ -3049,7 +3049,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3058,7 +3058,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/uk/app.po b/locale/uk/app.po
index 934238d2e..97baba60c 100644
--- a/locale/uk/app.po
+++ b/locale/uk/app.po
@@ -3168,7 +3168,7 @@ msgstr "Електронна адреса розпорядника інформ
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr "Переглянути запити, зроблені користувачем {{user_name}}:"
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr "Переглядати та шукати запити"
msgid "View authorities"
@@ -3177,7 +3177,7 @@ msgstr "Показати розпорядників інформації"
msgid "View email"
msgstr "Показати емейли"
-msgid "View requests"
+msgid "Browse Requests"
msgstr "Показати запити"
msgid "Waiting clarification."
diff --git a/locale/vi/app.po b/locale/vi/app.po
index 813aae007..cc6645ec9 100644
--- a/locale/vi/app.po
+++ b/locale/vi/app.po
@@ -3045,7 +3045,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3054,7 +3054,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."
diff --git a/locale/zh_HK/app.po b/locale/zh_HK/app.po
index cf2c0734d..51bea486d 100644
--- a/locale/zh_HK/app.po
+++ b/locale/zh_HK/app.po
@@ -3043,7 +3043,7 @@ msgstr ""
msgid "View Freedom of Information requests made by {{user_name}}:"
msgstr ""
-msgid "View and search requests"
+msgid "Browse and search requests"
msgstr ""
msgid "View authorities"
@@ -3052,7 +3052,7 @@ msgstr ""
msgid "View email"
msgstr ""
-msgid "View requests"
+msgid "Browse Requests"
msgstr ""
msgid "Waiting clarification."