decidim-meetings 0.32.0.rc2 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -0
- data/app/controllers/decidim/meetings/meetings_controller.rb +1 -0
- data/app/models/decidim/meetings/meeting.rb +7 -1
- data/app/permissions/decidim/meetings/meeting_permissions.rb +0 -2
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +9 -9
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +1 -1
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +1 -1
- data/app/views/decidim/meetings/layouts/live_event.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +6 -5
- data/config/locales/ar.yml +0 -1
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca-IT.yml +1 -3
- data/config/locales/ca.yml +1 -3
- data/config/locales/cs.yml +1 -3
- data/config/locales/de.yml +2 -3
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +1 -3
- data/config/locales/es-MX.yml +1 -3
- data/config/locales/es-PY.yml +1 -3
- data/config/locales/es.yml +1 -3
- data/config/locales/eu.yml +14 -16
- data/config/locales/fi-plain.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr-CA.yml +1 -3
- data/config/locales/fr.yml +1 -3
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +2 -3
- data/config/locales/lb.yml +0 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/sk.yml +0 -3
- data/config/locales/sv.yml +0 -3
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -1
- data/decidim-meetings.gemspec +1 -1
- data/lib/decidim/api/mutations/create_meeting_type.rb +1 -1
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +13 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2bce4805dd0febb7c55b8beecf3313a3716c1b686d0bde5ae025cd3fbb9ad65
|
|
4
|
+
data.tar.gz: 52089a3f97b12841149790d927431262dac3a8ad45badf8481df716eabc3920f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1124e09ce4f911c0d6633760de6399828d1263f6d125bd0d05aceb7c866b16f2841fd785ffce44530291157f1c74888c68505edbac10dd01632ee5c66473e42
|
|
7
|
+
data.tar.gz: bce130537f035c9f40204dc96fae1adc41a78bdec6962fcd08f1766ee33cfe60cfd2ec2a6e40648697c3fe70f5d110f28d6612549ecee0bbf7d5a76fb57b7737
|
|
@@ -20,6 +20,7 @@ module Decidim
|
|
|
20
20
|
def create
|
|
21
21
|
enforce_permission_to(:invite_attendee, :meeting, meeting:)
|
|
22
22
|
|
|
23
|
+
@invites = filtered_collection
|
|
23
24
|
@form = form(MeetingRegistrationInviteForm).from_params(params)
|
|
24
25
|
|
|
25
26
|
InviteUserToJoinMeeting.call(@form, meeting, current_user) do
|
|
@@ -21,6 +21,7 @@ module Decidim
|
|
|
21
21
|
helper_method :meetings, :meeting, :registration, :registration_qr_code_image, :search, :tab_panel_items, :withdrawn_meetings?
|
|
22
22
|
|
|
23
23
|
before_action :add_additional_csp_directives, only: [:show]
|
|
24
|
+
before_action :authenticate_user!, only: [:new, :create, :edit, :update, :withdraw]
|
|
24
25
|
|
|
25
26
|
def new
|
|
26
27
|
enforce_permission_to :create, :meeting
|
|
@@ -377,6 +377,12 @@ module Decidim
|
|
|
377
377
|
Arel.sql("(start_time > NOW())")
|
|
378
378
|
end
|
|
379
379
|
|
|
380
|
+
ransacker :closed do
|
|
381
|
+
Arel.sql("(closed_at IS NOT NULL)")
|
|
382
|
+
end
|
|
383
|
+
|
|
384
|
+
ransacker_i18n :translated_title, :title
|
|
385
|
+
|
|
380
386
|
def self.ransackable_scopes(_auth_object = nil)
|
|
381
387
|
[:with_any_type, :with_any_date, :with_any_space, :with_any_origin, :with_any_taxonomies, :with_any_global_category]
|
|
382
388
|
end
|
|
@@ -386,7 +392,7 @@ module Decidim
|
|
|
386
392
|
|
|
387
393
|
return base unless auth_object&.admin?
|
|
388
394
|
|
|
389
|
-
base + %w(is_upcoming closed_at)
|
|
395
|
+
base + %w(is_upcoming closed_at closed start_time end_time translated_title)
|
|
390
396
|
end
|
|
391
397
|
|
|
392
398
|
def self.ransackable_associations(_auth_object = nil)
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<% end %>
|
|
21
21
|
<% else %>
|
|
22
22
|
<div class="dropdown__button-disabled">
|
|
23
|
-
<%= with_tooltip t("tooltips.cannot_edit_meetings", scope: "decidim.admin") do %>
|
|
23
|
+
<%= with_tooltip t("tooltips.cannot_edit_meetings", scope: "decidim.admin"), class: :left do %>
|
|
24
24
|
<%= icon "pencil-line", class: "text-gray" %>
|
|
25
25
|
<span><%= t("actions.edit", scope: "decidim.meetings") %></span>
|
|
26
26
|
<% end %>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<% end %>
|
|
39
39
|
<% else %>
|
|
40
40
|
<div class="dropdown__button-disabled">
|
|
41
|
-
<%= with_tooltip t("tooltips.cannot_duplicate_meetings", scope: "decidim.admin") do %>
|
|
41
|
+
<%= with_tooltip t("tooltips.cannot_duplicate_meetings", scope: "decidim.admin"), class: :left do %>
|
|
42
42
|
<%= icon "file-copy-line", class: "text-gray" %>
|
|
43
43
|
<span><%= t("actions.duplicate", scope: "decidim.admin") %></span>
|
|
44
44
|
<% end %>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
<% end %>
|
|
57
57
|
<% else %>
|
|
58
58
|
<div class="dropdown__button-disabled">
|
|
59
|
-
<%= with_tooltip t("tooltips.cannot_manage_attachments_meetings", scope: "decidim.admin") do %>
|
|
59
|
+
<%= with_tooltip t("tooltips.cannot_manage_attachments_meetings", scope: "decidim.admin"), class: :left do %>
|
|
60
60
|
<%= icon "attachment-line", class: "text-gray" %>
|
|
61
61
|
<span><%= t("actions.attachments", scope: "decidim.admin") %></span>
|
|
62
62
|
<% end %>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<% end %>
|
|
73
73
|
<% else %>
|
|
74
74
|
<div class="dropdown__button-disabled">
|
|
75
|
-
<%= with_tooltip t("tooltips.cannot_manage_attachments_meetings", scope: "decidim.admin") do %>
|
|
75
|
+
<%= with_tooltip t("tooltips.cannot_manage_attachments_meetings", scope: "decidim.admin"), class: :left do %>
|
|
76
76
|
<%= icon "folder-line", class: "text-gray" %>
|
|
77
77
|
<span><%= t("actions.attachment_collections", scope: "decidim.admin") %></span>
|
|
78
78
|
<% end %>
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
<% end %>
|
|
91
91
|
<% else %>
|
|
92
92
|
<div class="dropdown__button-disabled">
|
|
93
|
-
<%= with_tooltip t("tooltips.cannot_manage_registrations_meetings", scope: "decidim.admin") do %>
|
|
93
|
+
<%= with_tooltip t("tooltips.cannot_manage_registrations_meetings", scope: "decidim.admin"), class: :left do %>
|
|
94
94
|
<%= icon "group-line", class: "text-gray" %>
|
|
95
95
|
<span><%= t("actions.registrations", scope: "decidim.meetings") %></span>
|
|
96
96
|
<% end %>
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
<% end %>
|
|
107
107
|
<% else %>
|
|
108
108
|
<div class="dropdown__button-disabled">
|
|
109
|
-
<%= with_tooltip t("tooltips.cannot_manage_agenda_meetings", scope: "decidim.admin") do %>
|
|
109
|
+
<%= with_tooltip t("tooltips.cannot_manage_agenda_meetings", scope: "decidim.admin"), class: :left do %>
|
|
110
110
|
<%= icon "calendar-line", class: "text-gray" %>
|
|
111
111
|
<span><%= t("actions.agenda", scope: "decidim.meetings") %></span>
|
|
112
112
|
<% end %>
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
<% end %>
|
|
123
123
|
<% else %>
|
|
124
124
|
<div class="dropdown__button-disabled">
|
|
125
|
-
<%= with_tooltip t("tooltips.cannot_manage_poll_meetings", scope: "decidim.admin") do %>
|
|
125
|
+
<%= with_tooltip t("tooltips.cannot_manage_poll_meetings", scope: "decidim.admin"), class: :left do %>
|
|
126
126
|
<%= icon "list-check", class: "text-gray" %>
|
|
127
127
|
<span><%= t("actions.manage_poll", scope: "decidim.meetings") %></span>
|
|
128
128
|
<% end %>
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
<% end %>
|
|
139
139
|
<% else %>
|
|
140
140
|
<div class="dropdown__button-disabled">
|
|
141
|
-
<%= with_tooltip t("tooltips.cannot_close_meetings", scope: "decidim.admin") do %>
|
|
141
|
+
<%= with_tooltip t("tooltips.cannot_close_meetings", scope: "decidim.admin"), class: :left do %>
|
|
142
142
|
<%= icon "lock-line", class: "text-gray" %>
|
|
143
143
|
<span><%= t("actions.close", scope: "decidim.meetings") %></span>
|
|
144
144
|
<% end %>
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
<% end %>
|
|
190
190
|
<% else %>
|
|
191
191
|
<div class="dropdown__button-disabled">
|
|
192
|
-
<%= with_tooltip t("tooltips.deleted_meetings_info", scope: "decidim.admin") do %>
|
|
192
|
+
<%= with_tooltip t("tooltips.deleted_meetings_info", scope: "decidim.admin"), class: :left do %>
|
|
193
193
|
<%= icon "delete-bin-line", class: "text-gray" %>
|
|
194
194
|
<span><%= t("actions.soft_delete", scope: "decidim.admin") %></span>
|
|
195
195
|
<% end %>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<th><%= t("models.meeting.fields.map", scope: "decidim.meetings") %></th>
|
|
17
17
|
<% end %>
|
|
18
18
|
<th>
|
|
19
|
-
<%= sort_link(query, :
|
|
19
|
+
<%= sort_link(query, :taxonomies_name, t("models.meeting.fields.taxonomies", scope: "decidim.meetings") ) %>
|
|
20
20
|
</th>
|
|
21
21
|
<th>
|
|
22
22
|
<%= t("models.meeting.fields.published", scope: "decidim.meetings") %>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<div class="row column">
|
|
11
11
|
<%= form.check_box :reminder_enabled, label: t(".reminder_enabled"), data: { controller: :toggle, "toggle-toggle-value": "customize_reminder_times" } %>
|
|
12
12
|
</div>
|
|
13
|
-
<div id="customize_reminder_times"
|
|
13
|
+
<div id="customize_reminder_times" class="row column <%= @form.reminder_enabled ? nil : "hide" %>">
|
|
14
14
|
<%= form.number_field :send_reminders_before_hours, label: t(".send_reminder"), help_text: t(".send_reminder_help_text"), min: 1, step: 1, class: "mb-2" %>
|
|
15
15
|
<%= form.translated :text_area, :reminder_message_custom_content, label: t(".reminder_message"), help_text: t(".reminder_message_help_text") %>
|
|
16
16
|
</div>
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<li class="dropdown__item">
|
|
100
100
|
<% if presenter.validated? %>
|
|
101
101
|
<div class="dropdown__button-disabled">
|
|
102
|
-
<%= with_tooltip t("tooltips.cannot_mark_attendee", scope: "decidim.admin") do %>
|
|
102
|
+
<%= with_tooltip t("tooltips.cannot_mark_attendee", scope: "decidim.admin"), class: :left do %>
|
|
103
103
|
<%= icon "user-follow-line", class: "text-gray" %>
|
|
104
104
|
<span>
|
|
105
105
|
<%= t("actions.mark_as_attendee", scope: "decidim.meetings") %>
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<body class="meeting-polls__body">
|
|
14
14
|
<%= render partial: "layouts/decidim/timeout_modal" %>
|
|
15
15
|
|
|
16
|
-
<header class="meeting-polls__header">
|
|
16
|
+
<header class="meeting-polls__header" role="banner">
|
|
17
17
|
<div>
|
|
18
18
|
<strong class="text-secondary"><%= current_organization_name %></strong> / <strong><%= present(meeting).title(html_escape: true) %></strong>
|
|
19
19
|
</div>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</div>
|
|
31
31
|
</header>
|
|
32
32
|
|
|
33
|
-
<main class="meeting-polls__main">
|
|
33
|
+
<main class="meeting-polls__main" role="main">
|
|
34
34
|
<%= yield %>
|
|
35
35
|
</main>
|
|
36
36
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<% if allowed_to?(:update, :meeting, meeting: meeting) %>
|
|
2
|
-
<li class="dropdown__item" role="
|
|
3
|
-
<%= link_to edit_meeting_path(meeting), class: "dropdown__button" do %>
|
|
2
|
+
<li class="dropdown__item" role="presentation">
|
|
3
|
+
<%= link_to edit_meeting_path(meeting), class: "dropdown__button", role: "menuitem" do %>
|
|
4
4
|
<span><%= t("edit_meeting", scope: "decidim.meetings.meetings.meeting") %></span>
|
|
5
5
|
<%= icon "pencil-line" %>
|
|
6
6
|
<% end %>
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
<% if allowed_to?(:close, :meeting, meeting: meeting) %>
|
|
11
11
|
<% caption = meeting.closed? ? t("edit_close_meeting", scope: "decidim.meetings.meetings.meeting") : t("close_meeting", scope: "decidim.meetings.meetings.meeting") %>
|
|
12
|
-
<li class="dropdown__item" role="
|
|
13
|
-
<%= link_to edit_meeting_meeting_close_path(meeting_id: meeting.id, id: meeting.id), class: "dropdown__button" do %>
|
|
12
|
+
<li class="dropdown__item" role="presentation">
|
|
13
|
+
<%= link_to edit_meeting_meeting_close_path(meeting_id: meeting.id, id: meeting.id), class: "dropdown__button", role: "menuitem" do %>
|
|
14
14
|
<span><%= caption %></span>
|
|
15
15
|
<%= icon "lock-line" %>
|
|
16
16
|
<% end %>
|
|
@@ -18,12 +18,13 @@
|
|
|
18
18
|
<% end %>
|
|
19
19
|
|
|
20
20
|
<% if meeting.withdrawable_by?(current_user) %>
|
|
21
|
-
<li class="dropdown__item" role="
|
|
21
|
+
<li class="dropdown__item" role="presentation">
|
|
22
22
|
<%= action_authorized_link_to(
|
|
23
23
|
:withdraw,
|
|
24
24
|
withdraw_meeting_path(meeting),
|
|
25
25
|
method: :put,
|
|
26
26
|
class: "dropdown__button" ,
|
|
27
|
+
role: "menuitem",
|
|
27
28
|
title: t("withdraw_btn_hint", scope: "decidim.meetings.meetings.show"),
|
|
28
29
|
data: { confirm: t("withdraw_confirmation_html", scope: "decidim.meetings.meetings.show") }
|
|
29
30
|
) do %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -121,7 +121,6 @@ ar:
|
|
|
121
121
|
global:
|
|
122
122
|
announcement: إعلان
|
|
123
123
|
comments_enabled: تم تمكين التعليقات
|
|
124
|
-
comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال القيمة الافتراضية)
|
|
125
124
|
creation_enabled_for_participants: يمكن للمشاركين إنشاء اجتماعات
|
|
126
125
|
default_registration_terms: شروط التسجيل الافتراضية
|
|
127
126
|
enable_pads_creation: تمكين إنشاء منصات
|
data/config/locales/bg.yml
CHANGED
|
@@ -146,7 +146,6 @@ bg:
|
|
|
146
146
|
global:
|
|
147
147
|
announcement: Обявление
|
|
148
148
|
comments_enabled: Коментарите са активирани
|
|
149
|
-
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
|
150
149
|
creation_enabled_for_participants: Участниците могат да създават срещи
|
|
151
150
|
default_registration_terms: Условия за регистрация по подразбиране
|
|
152
151
|
enable_pads_creation: Активирай създаване на бележки
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -50,8 +50,6 @@ ca-IT:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Correu electrònic
|
|
52
52
|
name: Nom
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Afegir documents
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Codi
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ ca-IT:
|
|
|
169
167
|
announcement: Avís
|
|
170
168
|
clear_all: Netejar-ho tot
|
|
171
169
|
comments_enabled: Comentaris habilitats
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
173
171
|
creation_enabled_for_participants: Les participants poden crear trobades
|
|
174
172
|
default_registration_terms: Termes de registre per defecte
|
|
175
173
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
data/config/locales/ca.yml
CHANGED
|
@@ -50,8 +50,6 @@ ca:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Correu electrònic
|
|
52
52
|
name: Nom
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Afegir documents
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Codi
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ ca:
|
|
|
169
167
|
announcement: Avís
|
|
170
168
|
clear_all: Netejar-ho tot
|
|
171
169
|
comments_enabled: Comentaris habilitats
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
173
171
|
creation_enabled_for_participants: Les participants poden crear trobades
|
|
174
172
|
default_registration_terms: Termes de registre per defecte
|
|
175
173
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
data/config/locales/cs.yml
CHANGED
|
@@ -50,8 +50,6 @@ cs:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: E-mail
|
|
52
52
|
name: Jméno
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Přidat dokumenty
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Kód
|
|
57
55
|
errors:
|
|
@@ -174,7 +172,6 @@ cs:
|
|
|
174
172
|
announcement: Oznámení
|
|
175
173
|
clear_all: Vymazat vše
|
|
176
174
|
comments_enabled: Komentáře povoleny
|
|
177
|
-
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
|
178
175
|
creation_enabled_for_participants: Účastníci mohou vytvářet schůzky
|
|
179
176
|
default_registration_terms: Výchozí podmínky registrace
|
|
180
177
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
@@ -397,6 +394,7 @@ cs:
|
|
|
397
394
|
assign: Přiřadit
|
|
398
395
|
link_a_space: Propojit prostor
|
|
399
396
|
private_meeting_warning: Propojené prostory nebudou použity, pokud je schůzka soukromá a netransparentní.
|
|
397
|
+
restricted_space_warning: Propojené prostory nebudou použity, pokud schůzka patří do soukromého netransparentního prostoru.
|
|
400
398
|
select: Vyberte prostor
|
|
401
399
|
table:
|
|
402
400
|
actions: Akce
|
data/config/locales/de.yml
CHANGED
|
@@ -50,8 +50,6 @@ de:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: E-Mail
|
|
52
52
|
name: Name
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Dokumente hinzufügen
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Code
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,6 @@ de:
|
|
|
169
167
|
announcement: Ankündigung
|
|
170
168
|
clear_all: Alles löschen
|
|
171
169
|
comments_enabled: Kommentare aktiviert
|
|
172
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
173
170
|
creation_enabled_for_participants: Teilnehmende können Veranstaltungen erstellen
|
|
174
171
|
default_registration_terms: Standard-Registrierungsbedingungen
|
|
175
172
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
@@ -728,6 +725,8 @@ de:
|
|
|
728
725
|
hidden_participants_count:
|
|
729
726
|
one: und %{count} weitere Person
|
|
730
727
|
other: und %{count} weitere Personen
|
|
728
|
+
show_less: Weniger anzeigen
|
|
729
|
+
show_more: Mehr anzeigen
|
|
731
730
|
read_more: "(Weiterlesen)"
|
|
732
731
|
registration_mailer:
|
|
733
732
|
confirmation:
|
data/config/locales/el.yml
CHANGED
|
@@ -123,7 +123,6 @@ el:
|
|
|
123
123
|
global:
|
|
124
124
|
announcement: Ανακοίνωση
|
|
125
125
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
126
|
-
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για την προκαθορισμένη τιμή)
|
|
127
126
|
creation_enabled_for_participants: Οι συμμετέχοντες μπορούν να δημιουργήσουν συναντήσεις
|
|
128
127
|
default_registration_terms: Προεπιλεγμένοι όροι εγγραφής
|
|
129
128
|
enable_pads_creation: Ενεργοποίηση δημιουργίας πινάκων σημειώσεων
|
data/config/locales/en.yml
CHANGED
|
@@ -50,8 +50,6 @@ en:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Email
|
|
52
52
|
name: Name
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Add documents
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Code
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ en:
|
|
|
169
167
|
announcement: Announcement
|
|
170
168
|
clear_all: Clear all
|
|
171
169
|
comments_enabled: Comments enabled
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Max characters per comment (Leave 0 for default value)
|
|
173
171
|
creation_enabled_for_participants: Participants can create meetings
|
|
174
172
|
default_registration_terms: Default registration terms
|
|
175
173
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -50,8 +50,6 @@ es-MX:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Correo electrónico
|
|
52
52
|
name: Nombre
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Añadir documentos
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Código
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ es-MX:
|
|
|
169
167
|
announcement: Anuncio
|
|
170
168
|
clear_all: Limpiar todo
|
|
171
169
|
comments_enabled: Comentarios habilitados
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
173
171
|
creation_enabled_for_participants: Las participantes pueden crear encuentros
|
|
174
172
|
default_registration_terms: Términos de registro predeterminados
|
|
175
173
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -50,8 +50,6 @@ es-PY:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Correo electrónico
|
|
52
52
|
name: Nombre
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Añadir documentos
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Código
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ es-PY:
|
|
|
169
167
|
announcement: Anuncio
|
|
170
168
|
clear_all: Limpiar todo
|
|
171
169
|
comments_enabled: Comentarios habilitados
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
173
171
|
creation_enabled_for_participants: Las participantes pueden crear encuentros
|
|
174
172
|
default_registration_terms: Términos de registro predeterminados
|
|
175
173
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
data/config/locales/es.yml
CHANGED
|
@@ -50,8 +50,6 @@ es:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Correo electrónico
|
|
52
52
|
name: Nombre
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Añadir documentos
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Código
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,7 @@ es:
|
|
|
169
167
|
announcement: Aviso
|
|
170
168
|
clear_all: Limpiar todo
|
|
171
169
|
comments_enabled: Comentarios habilitados
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
173
171
|
creation_enabled_for_participants: Las participantes pueden crear encuentros
|
|
174
172
|
default_registration_terms: Términos de registro predeterminados
|
|
175
173
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
data/config/locales/eu.yml
CHANGED
|
@@ -18,7 +18,7 @@ eu:
|
|
|
18
18
|
decidim_category_id: Kategoria
|
|
19
19
|
decidim_scope_id: Eremua
|
|
20
20
|
description: Deskribapena
|
|
21
|
-
end_time:
|
|
21
|
+
end_time: Amaiera-ordua
|
|
22
22
|
id: ID
|
|
23
23
|
iframe_access_level: Iframe sarbide-maila
|
|
24
24
|
iframe_embed_type: Txertatutako iframe mota
|
|
@@ -36,7 +36,7 @@ eu:
|
|
|
36
36
|
registration_url: Izena ematearen URLa
|
|
37
37
|
registrations_enabled: Izen-emateak gaituta
|
|
38
38
|
reserved_slots: Erreserbatuta dauden plazak
|
|
39
|
-
start_time: Hasiera
|
|
39
|
+
start_time: Hasiera-ordua
|
|
40
40
|
title: Titulua
|
|
41
41
|
transparent: Gardena
|
|
42
42
|
type_of_meeting: Mota
|
|
@@ -50,8 +50,6 @@ eu:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Helbide elektronikoa
|
|
52
52
|
name: Izena
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Dokumentuak gehitu
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Kodea
|
|
57
55
|
errors:
|
|
@@ -102,7 +100,7 @@ eu:
|
|
|
102
100
|
accepted_at_not_null:
|
|
103
101
|
label: Onartua
|
|
104
102
|
values:
|
|
105
|
-
'false': Ez
|
|
103
|
+
'false': Ez onartua
|
|
106
104
|
'true': Onartua
|
|
107
105
|
meetings:
|
|
108
106
|
closed_at_present:
|
|
@@ -169,7 +167,7 @@ eu:
|
|
|
169
167
|
announcement: Iragarpena
|
|
170
168
|
clear_all: Garbitu dena
|
|
171
169
|
comments_enabled: Iruzkinak gaituta
|
|
172
|
-
comments_max_length:
|
|
170
|
+
comments_max_length: Iruzkin bakoitzeko gehieneko karaktereak (utzi 0 aurrez zehaztutako baliorako)
|
|
173
171
|
creation_enabled_for_participants: Parte-hartzaileek topaketak sortu ahal dituzte
|
|
174
172
|
default_registration_terms: Izen-emate baldintzak lehenetsiak
|
|
175
173
|
define_taxonomy_filters: Mesedez, eszenatoki hau erabili aurretik, zehaztu partaidetza-espazio honetarako iragazki batzuk.
|
|
@@ -221,7 +219,7 @@ eu:
|
|
|
221
219
|
email_subject: '"%{resource_title}" topaketa itxi egin da'
|
|
222
220
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa itxi egin da.
|
|
223
221
|
meeting_created:
|
|
224
|
-
button_text: Eman izena
|
|
222
|
+
button_text: Eman izena bileran
|
|
225
223
|
email_intro: '"%{resource_title}" topaketa jarraitzen duzun "%{participatory_space_title}" espazioan gehitu da.'
|
|
226
224
|
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" prozesua jarraitzen ari zarelako. Aureko estekan utzi ahal diozu jarraitzeari.
|
|
227
225
|
email_subject: 'Beste topaketa bat gehituta honi: %{participatory_space_title}'
|
|
@@ -306,13 +304,13 @@ eu:
|
|
|
306
304
|
add_agenda_item_child: Gai-zerrendan azpi-gai bat gehitu
|
|
307
305
|
agenda_item: Gai zerrendaren gaia
|
|
308
306
|
agenda_item_children: Gai zerrenda azpi gaiak
|
|
309
|
-
down:
|
|
310
|
-
remove:
|
|
307
|
+
down: Jaitsi
|
|
308
|
+
remove: Ezabatu
|
|
311
309
|
up: Gora
|
|
312
310
|
agenda_item_child:
|
|
313
311
|
agenda_item_child: Gai zerrenda azpi-gaia
|
|
314
312
|
down: Behera
|
|
315
|
-
remove:
|
|
313
|
+
remove: Ezabatu
|
|
316
314
|
up: Gora
|
|
317
315
|
create:
|
|
318
316
|
invalid: Arazo bat egon da gai-zerrenda hau sortzean.
|
|
@@ -511,7 +509,7 @@ eu:
|
|
|
511
509
|
copy_calendar_url: Kopiatu
|
|
512
510
|
copy_calendar_url_clarification: Kopiatu URL egutegia arbelera
|
|
513
511
|
copy_calendar_url_copied: Kopiatuta!
|
|
514
|
-
copy_calendar_url_description: Argitaratutako batzar guztiak zure egutegi-aplikazioan edo hornitzailean ikus ditzakezu. Kopiatu eta itsatsi URL hau "
|
|
512
|
+
copy_calendar_url_description: Argitaratutako batzar guztiak zure egutegi-aplikazioan edo hornitzailean ikus ditzakezu. Kopiatu eta itsatsi URL hau "Gehitu egutegi berria URL batetik" aukera erabiliz.
|
|
515
513
|
copy_calendar_url_explanation: Mesedez, kontuan izan aukeratutako topaketa multzo bat esportatzen ari zarela eta iragazkiak aktibatuta daudela. Denak esportatu nahi badituzu, lehenengo kendu irakazkiak.
|
|
516
514
|
copy_calendar_url_message: URL hau zuzen kopiatu da zure arbelean.
|
|
517
515
|
export_calendar: Egutegia esportatu
|
|
@@ -601,7 +599,7 @@ eu:
|
|
|
601
599
|
online: On-line
|
|
602
600
|
form:
|
|
603
601
|
address_help: 'Helbidea: Geocoderrek erabilia kokapena aurkitzeko'
|
|
604
|
-
available_slots_help:
|
|
602
|
+
available_slots_help: Uzti 0an erabiltzeko espazio mugatua baduzu
|
|
605
603
|
disclaimer: 'Erantzukizun-deskargua: Kanpoko inskripzio-sistema bat erabiliz, onartzen duzu %{organization} ko antolatzaileak ez direla kanpo-zerbitzuko parte-hartzaileek emandako datuen erantzule.'
|
|
606
604
|
iframe_embed_type_html: 'Zerbitzu gutxi batzuek baino ez dute uzten topaketan edo zuzeneko gertakarietan txertatzen honako domeinu hauetatik:%{domains}'
|
|
607
605
|
location_help: 'Kokapena: mezua parte-hartzaileei zuzendua biltzeko lekua adieraziz'
|
|
@@ -621,7 +619,7 @@ eu:
|
|
|
621
619
|
close_meeting: Itxi
|
|
622
620
|
edit_close_meeting: Editatu topaketaren txostena
|
|
623
621
|
edit_meeting: Editatu
|
|
624
|
-
join_meeting: Izena eman
|
|
622
|
+
join_meeting: Izena eman topaketan
|
|
625
623
|
reply_poll: Erantzun inkesta
|
|
626
624
|
view_poll: Ikusi inkesta
|
|
627
625
|
meetings:
|
|
@@ -637,7 +635,7 @@ eu:
|
|
|
637
635
|
show:
|
|
638
636
|
attendees: Bertaratuen kopurua
|
|
639
637
|
contributions: Ekarpen-kopurua
|
|
640
|
-
join:
|
|
638
|
+
join: Eman izena
|
|
641
639
|
join_waitlist: Sartu itxarote-zerrendan
|
|
642
640
|
leave: Baliogabetu zure izen-ematea
|
|
643
641
|
leave_confirmation: Ziur zaude topaketa honetarako zure izen-ematea indargabetu nahi duzula?
|
|
@@ -739,8 +737,8 @@ eu:
|
|
|
739
737
|
hidden_participants_count:
|
|
740
738
|
one: eta pertsona bat ehiago
|
|
741
739
|
other: eta %{count} pertsona gehiago
|
|
742
|
-
show_less:
|
|
743
|
-
show_more:
|
|
740
|
+
show_less: Erakutsi gutxiago
|
|
741
|
+
show_more: Erakutsi gehiago
|
|
744
742
|
read_more: "(gehiago irakurri)"
|
|
745
743
|
registration_mailer:
|
|
746
744
|
confirmation:
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
|
@@ -50,8 +50,6 @@ fr-CA:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Email
|
|
52
52
|
name: Nom
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Ajouter des documents
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Code
|
|
57
55
|
errors:
|
|
@@ -168,7 +166,7 @@ fr-CA:
|
|
|
168
166
|
global:
|
|
169
167
|
announcement: Annonce
|
|
170
168
|
comments_enabled: Activer le module de commentaire
|
|
171
|
-
comments_max_length:
|
|
169
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
172
170
|
creation_enabled_for_participants: Les participants peuvent créer des réunions
|
|
173
171
|
default_registration_terms: Conditions d'inscription par défaut
|
|
174
172
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
data/config/locales/fr.yml
CHANGED
|
@@ -50,8 +50,6 @@ fr:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Email
|
|
52
52
|
name: Nom
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Ajouter des documents
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Code
|
|
57
55
|
errors:
|
|
@@ -168,7 +166,7 @@ fr:
|
|
|
168
166
|
global:
|
|
169
167
|
announcement: Annonce
|
|
170
168
|
comments_enabled: Activer le module de commentaire
|
|
171
|
-
comments_max_length:
|
|
169
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
172
170
|
creation_enabled_for_participants: Les participants peuvent créer des rencontres
|
|
173
171
|
default_registration_terms: Conditions d'inscription par défaut
|
|
174
172
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
data/config/locales/hu.yml
CHANGED
|
@@ -92,7 +92,6 @@ hu:
|
|
|
92
92
|
global:
|
|
93
93
|
announcement: Közlemény
|
|
94
94
|
comments_enabled: Megjegyzések engedélyezve
|
|
95
|
-
comments_max_length: Kommentek maximális hossza (Hagyjon 0 -t az alapértékhez)
|
|
96
95
|
creation_enabled_for_participants: A résztvevők létrehozhatnak találkozókat
|
|
97
96
|
default_registration_terms: Alapértelmezett regisztrációs feltételek
|
|
98
97
|
enable_pads_creation: A közös dokumentum létrehozásának engedélyezése
|
data/config/locales/it.yml
CHANGED
|
@@ -86,7 +86,6 @@ it:
|
|
|
86
86
|
global:
|
|
87
87
|
announcement: Annuncio
|
|
88
88
|
comments_enabled: Commenti abilitati
|
|
89
|
-
comments_max_length: Lunghezza massima dei commenti (Lasciare 0 per il valore predefinito)
|
|
90
89
|
creation_enabled_for_participants: I partecipanti possono creare riunioni
|
|
91
90
|
default_registration_terms: Termini di registrazione predefiniti
|
|
92
91
|
enable_pads_creation: Abilita la creazione di pad
|
data/config/locales/ja.yml
CHANGED
|
@@ -50,8 +50,6 @@ ja:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: Eメールアドレス
|
|
52
52
|
name: 名前
|
|
53
|
-
response:
|
|
54
|
-
add_documents: ドキュメントを追加
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: コード
|
|
57
55
|
errors:
|
|
@@ -166,7 +164,7 @@ ja:
|
|
|
166
164
|
announcement: お知らせ
|
|
167
165
|
clear_all: すべてクリア
|
|
168
166
|
comments_enabled: コメントが有効
|
|
169
|
-
comments_max_length:
|
|
167
|
+
comments_max_length: 各コメントの最大文字数 (0はデフォルト値のまま)
|
|
170
168
|
creation_enabled_for_participants: 出席者はミーティングを作成できます
|
|
171
169
|
default_registration_terms: デフォルトの登録条件
|
|
172
170
|
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
@@ -392,6 +390,7 @@ ja:
|
|
|
392
390
|
assign: 割り当て
|
|
393
391
|
link_a_space: スペースをリンク
|
|
394
392
|
private_meeting_warning: ミーティングが非公開で透明性のない場合、リンクされたスペースは適用されません。
|
|
393
|
+
restricted_space_warning: ミーティングが制限されたスペースに属している場合、リンクされたスペースは適用されません。
|
|
395
394
|
select: スペースを選択
|
|
396
395
|
table:
|
|
397
396
|
actions: アクション
|
data/config/locales/lb.yml
CHANGED
|
@@ -83,7 +83,6 @@ lb:
|
|
|
83
83
|
global:
|
|
84
84
|
announcement: Ankündigung
|
|
85
85
|
comments_enabled: Kommentare aktiviert
|
|
86
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
87
86
|
creation_enabled_for_participants: Teilnehmer können Besprechungen erstellen
|
|
88
87
|
default_registration_terms: Standard-Registrierungsbedingungen
|
|
89
88
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
data/config/locales/lt.yml
CHANGED
|
@@ -132,7 +132,6 @@ lt:
|
|
|
132
132
|
global:
|
|
133
133
|
announcement: Pranešimas
|
|
134
134
|
comments_enabled: Komentarai aktyvuoti
|
|
135
|
-
comments_max_length: Maksimalus komentarų ilgis (numatytoji vertė – 0)
|
|
136
135
|
creation_enabled_for_participants: Dalyviai gali sukurti susitikimus
|
|
137
136
|
default_registration_terms: Numatytos registracijos sąlygos
|
|
138
137
|
enable_pads_creation: Leisti bendrų dokumentų kūrimą
|
data/config/locales/nl.yml
CHANGED
|
@@ -92,7 +92,6 @@ nl:
|
|
|
92
92
|
global:
|
|
93
93
|
announcement: Aankondiging
|
|
94
94
|
comments_enabled: Reacties ingeschakeld
|
|
95
|
-
comments_max_length: Commentaar maximale lengte (laat 0 voor standaard waarde)
|
|
96
95
|
creation_enabled_for_participants: Deelnemers kunnen vergaderingen aanmaken
|
|
97
96
|
default_registration_terms: Standaard registratievoorwaarden
|
|
98
97
|
enable_pads_creation: Schakel het maken van pads in
|
data/config/locales/no.yml
CHANGED
|
@@ -84,7 +84,6 @@
|
|
|
84
84
|
global:
|
|
85
85
|
announcement: Kunngjøring
|
|
86
86
|
comments_enabled: Kommentarer aktivert
|
|
87
|
-
comments_max_length: Maks lengde på kommentarer (Sett 0 for standardverdi)
|
|
88
87
|
creation_enabled_for_participants: Deltakere kan opprette møter
|
|
89
88
|
default_registration_terms: Standard registreringsvilkår
|
|
90
89
|
enable_pads_creation: Aktiver oppretting av pads
|
data/config/locales/pl.yml
CHANGED
|
@@ -152,7 +152,6 @@ pl:
|
|
|
152
152
|
global:
|
|
153
153
|
announcement: Ogłoszenie
|
|
154
154
|
comments_enabled: Komentarze włączone
|
|
155
|
-
comments_max_length: Maksymalna długość komentarzy (Pozostaw 0 dla wartości domyślnej)
|
|
156
155
|
creation_enabled_for_participants: Uczestnicy mogą tworzyć spotkania
|
|
157
156
|
default_registration_terms: Domyślne warunki rejestracji
|
|
158
157
|
enable_pads_creation: Włącz tworzenie padów
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -50,8 +50,6 @@ pt-BR:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: E-mail
|
|
52
52
|
name: Nome
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Adicionar documentos
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Código
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,6 @@ pt-BR:
|
|
|
169
167
|
announcement: Anúncio
|
|
170
168
|
clear_all: Limpar tudo
|
|
171
169
|
comments_enabled: Comentários ativados
|
|
172
|
-
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
|
173
170
|
creation_enabled_for_participants: Os participantes podem criar reuniões
|
|
174
171
|
default_registration_terms: Termos de registro padrão
|
|
175
172
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
data/config/locales/pt.yml
CHANGED
|
@@ -85,7 +85,6 @@ pt:
|
|
|
85
85
|
global:
|
|
86
86
|
announcement: Anúncio
|
|
87
87
|
comments_enabled: Comentários ativados
|
|
88
|
-
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
|
89
88
|
creation_enabled_for_participants: Os participantes podem criar reuniões
|
|
90
89
|
default_registration_terms: Termos de registo predefinidos
|
|
91
90
|
enable_pads_creation: Ativar criação de blocos
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -127,7 +127,6 @@ ro:
|
|
|
127
127
|
global:
|
|
128
128
|
announcement: Anunţ
|
|
129
129
|
comments_enabled: Comentarii activate
|
|
130
|
-
comments_max_length: Lungimea maximă a comentariilor (Leave 0 pentru valoarea implicită)
|
|
131
130
|
creation_enabled_for_participants: Participanții pot crea întâlniri
|
|
132
131
|
default_registration_terms: Condiții de înregistrare implicite
|
|
133
132
|
enable_pads_creation: Activează crearea de pad-uri
|
data/config/locales/sk.yml
CHANGED
|
@@ -50,8 +50,6 @@ sk:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: E-mail
|
|
52
52
|
name: Meno
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Pridať dokumenty
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Kód
|
|
57
55
|
errors:
|
|
@@ -175,7 +173,6 @@ sk:
|
|
|
175
173
|
announcement: Oznámenie
|
|
176
174
|
clear_all: Vymazať všetko
|
|
177
175
|
comments_enabled: Komentáre povolené
|
|
178
|
-
comments_max_length: Maximálna dĺžka komentárov (Ponechajte 0 pre predvolenú hodnotu)
|
|
179
176
|
creation_enabled_for_participants: Účastníci môžu vytvárať stretnutia
|
|
180
177
|
default_registration_terms: Východiskové podmienky registrácia
|
|
181
178
|
define_taxonomy_filters: Pred použitím tohto nastavenia definujte nejaké filtre pre tento participatívny priestor.
|
data/config/locales/sv.yml
CHANGED
|
@@ -50,8 +50,6 @@ sv:
|
|
|
50
50
|
meeting_registration_invite:
|
|
51
51
|
email: E-post
|
|
52
52
|
name: Namn
|
|
53
|
-
response:
|
|
54
|
-
add_documents: Lägg till dokument
|
|
55
53
|
validate_registration_code:
|
|
56
54
|
code: Kod
|
|
57
55
|
errors:
|
|
@@ -169,7 +167,6 @@ sv:
|
|
|
169
167
|
announcement: Meddelande
|
|
170
168
|
clear_all: Återställ
|
|
171
169
|
comments_enabled: Aktivera kommentarer
|
|
172
|
-
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
|
173
170
|
creation_enabled_for_participants: Deltagarna kan skapa möten
|
|
174
171
|
default_registration_terms: Villkor för standardanmälan
|
|
175
172
|
define_taxonomy_filters: Ställ in filter innan du använder den här inställningen.
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -65,7 +65,6 @@ tr:
|
|
|
65
65
|
global:
|
|
66
66
|
announcement: Duyuru
|
|
67
67
|
comments_enabled: Yorumlar etkin
|
|
68
|
-
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
|
69
68
|
creation_enabled_for_participants: Katılımcılar toplantı oluşturabilir
|
|
70
69
|
default_registration_terms: Varsayılan kayıt şartları
|
|
71
70
|
enable_pads_creation: Altlık oluşturmayı etkinleştirin
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
data/decidim-meetings.gemspec
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$LOAD_PATH.push File.expand_path("lib", __dir__)
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
version = "0.32.0
|
|
6
|
+
version = "0.32.0"
|
|
7
7
|
s.version = version
|
|
8
8
|
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
|
|
9
9
|
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
|
|
@@ -52,7 +52,7 @@ module Decidim
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
def authorized?(attributes:, locale:, toggle_translations:)
|
|
55
|
-
unless super && allowed_to?(:create, :meeting, Meeting.new(component: current_component), { current_user:, current_component: })
|
|
55
|
+
unless super && current_user.present? && allowed_to?(:create, :meeting, Meeting.new(component: current_component), { current_user:, current_component: })
|
|
56
56
|
raise Decidim::Api::Errors::MutationNotAuthorizedError, I18n.t("decidim.api.errors.unauthorized_mutation")
|
|
57
57
|
end
|
|
58
58
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-meetings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.32.0
|
|
4
|
+
version: 0.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -17,28 +17,28 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.32.0
|
|
20
|
+
version: 0.32.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 0.32.0
|
|
27
|
+
version: 0.32.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: decidim-forms
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.32.0
|
|
34
|
+
version: 0.32.0
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 0.32.0
|
|
41
|
+
version: 0.32.0
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: icalendar
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -59,56 +59,56 @@ dependencies:
|
|
|
59
59
|
requirements:
|
|
60
60
|
- - '='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.32.0
|
|
62
|
+
version: 0.32.0
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - '='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.32.0
|
|
69
|
+
version: 0.32.0
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
71
|
name: decidim-assemblies
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - '='
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 0.32.0
|
|
76
|
+
version: 0.32.0
|
|
77
77
|
type: :development
|
|
78
78
|
prerelease: false
|
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
81
|
- - '='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: 0.32.0
|
|
83
|
+
version: 0.32.0
|
|
84
84
|
- !ruby/object:Gem::Dependency
|
|
85
85
|
name: decidim-dev
|
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
|
88
88
|
- - '='
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
|
-
version: 0.32.0
|
|
90
|
+
version: 0.32.0
|
|
91
91
|
type: :development
|
|
92
92
|
prerelease: false
|
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
|
94
94
|
requirements:
|
|
95
95
|
- - '='
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 0.32.0
|
|
97
|
+
version: 0.32.0
|
|
98
98
|
- !ruby/object:Gem::Dependency
|
|
99
99
|
name: decidim-participatory_processes
|
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
102
|
- - '='
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.32.0
|
|
104
|
+
version: 0.32.0
|
|
105
105
|
type: :development
|
|
106
106
|
prerelease: false
|
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
109
|
- - '='
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 0.32.0
|
|
111
|
+
version: 0.32.0
|
|
112
112
|
description: A meetings component for decidim's participatory spaces.
|
|
113
113
|
email:
|
|
114
114
|
- josepjaume@gmail.com
|