decidim-meetings 0.31.5 → 0.31.6
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 +0 -3
- data/config/locales/de.yml +0 -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 +12 -14
- 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 +1 -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/lib/decidim/meetings/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70eae741cc56bc63c12aa68a015da6047d208b1f75ddcebe212ee43affb150f2
|
|
4
|
+
data.tar.gz: 71edbdbb76dfd78b06b71a88f6ace88788aa886182f2bb7667cf3d676b750737
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2a7c95a26291d7289ca4a1fed3cf4276f75d6ac3cfa51b31a8aabf595892cf49db9f5fad31d2d9580d24b4aa41aa8815c26d277d4b795eefbda0b87559e9624
|
|
7
|
+
data.tar.gz: 8652904969bf27e943cfb57ea1f73118960c5ebc26a9a84bb70e75184cd26038024fa3ed9f55cfbf7cfc8ef97485f58f423fbacde95f73d0e100c24046c1b4b9
|
|
@@ -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 %>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<th><%= t("models.meeting.fields.map", scope: "decidim.meetings") %></th>
|
|
20
20
|
<% end %>
|
|
21
21
|
<th>
|
|
22
|
-
<%= sort_link(query, :
|
|
22
|
+
<%= sort_link(query, :taxonomies_name, t("models.meeting.fields.taxonomies", scope: "decidim.meetings") ) %>
|
|
23
23
|
</th>
|
|
24
24
|
<th>
|
|
25
25
|
<%= 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>
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
<li class="dropdown__item">
|
|
99
99
|
<% if presenter.validated? %>
|
|
100
100
|
<div class="dropdown__button-disabled">
|
|
101
|
-
<%= with_tooltip t("tooltips.cannot_mark_attendee", scope: "decidim.admin") do %>
|
|
101
|
+
<%= with_tooltip t("tooltips.cannot_mark_attendee", scope: "decidim.admin"), class: :left do %>
|
|
102
102
|
<%= icon "user-follow-line", class: "text-gray" %>
|
|
103
103
|
<span>
|
|
104
104
|
<%= 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:
|
|
@@ -175,7 +173,6 @@ cs:
|
|
|
175
173
|
announcement: Oznámení
|
|
176
174
|
clear_all: Vymazat vše
|
|
177
175
|
comments_enabled: Komentáře povoleny
|
|
178
|
-
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
|
179
176
|
creation_enabled_for_participants: Účastníci mohou vytvářet schůzky
|
|
180
177
|
default_registration_terms: Výchozí podmínky registrace
|
|
181
178
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
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:
|
|
@@ -168,7 +166,6 @@ de:
|
|
|
168
166
|
announcement: Ankündigung
|
|
169
167
|
clear_all: Alles löschen
|
|
170
168
|
comments_enabled: Kommentare aktiviert
|
|
171
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
172
169
|
creation_enabled_for_participants: Teilnehmende können Veranstaltungen erstellen
|
|
173
170
|
default_registration_terms: Standard-Registrierungsbedingungen
|
|
174
171
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
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.
|
|
@@ -503,7 +501,7 @@ eu:
|
|
|
503
501
|
copy_calendar_url: Kopiatu
|
|
504
502
|
copy_calendar_url_clarification: Kopiatu URL egutegia arbelera
|
|
505
503
|
copy_calendar_url_copied: Kopiatuta!
|
|
506
|
-
copy_calendar_url_description: Argitaratutako batzar guztiak zure egutegi-aplikazioan edo hornitzailean ikus ditzakezu. Kopiatu eta itsatsi URL hau "
|
|
504
|
+
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.
|
|
507
505
|
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.
|
|
508
506
|
copy_calendar_url_message: URL hau zuzen kopiatu da zure arbelean.
|
|
509
507
|
export_calendar: Egutegia esportatu
|
|
@@ -593,7 +591,7 @@ eu:
|
|
|
593
591
|
online: On-line
|
|
594
592
|
form:
|
|
595
593
|
address_help: 'Helbidea: Geocoderrek erabilia kokapena aurkitzeko'
|
|
596
|
-
available_slots_help:
|
|
594
|
+
available_slots_help: Uzti 0an erabiltzeko espazio mugatua baduzu
|
|
597
595
|
disclaimer: 'Erantzukizun-deskargua: Kanpoko inskripzio-sistema bat erabiliz, onartzen duzu %{organization} ko antolatzaileak ez direla kanpo-zerbitzuko parte-hartzaileek emandako datuen erantzule.'
|
|
598
596
|
iframe_embed_type_html: 'Zerbitzu gutxi batzuek baino ez dute uzten topaketan edo zuzeneko gertakarietan txertatzen honako domeinu hauetatik:%{domains}'
|
|
599
597
|
location_help: 'Kokapena: mezua parte-hartzaileei zuzendua biltzeko lekua adieraziz'
|
|
@@ -613,7 +611,7 @@ eu:
|
|
|
613
611
|
close_meeting: Itxi
|
|
614
612
|
edit_close_meeting: Editatu topaketaren txostena
|
|
615
613
|
edit_meeting: Editatu
|
|
616
|
-
join_meeting: Izena eman
|
|
614
|
+
join_meeting: Izena eman topaketan
|
|
617
615
|
reply_poll: Erantzun inkesta
|
|
618
616
|
view_poll: Ikusi inkesta
|
|
619
617
|
meetings:
|
|
@@ -629,7 +627,7 @@ eu:
|
|
|
629
627
|
show:
|
|
630
628
|
attendees: Bertaratuen kopurua
|
|
631
629
|
contributions: Ekarpen-kopurua
|
|
632
|
-
join:
|
|
630
|
+
join: Eman izena
|
|
633
631
|
join_waitlist: Sartu itxarote-zerrendan
|
|
634
632
|
leave: Baliogabetu zure izen-ematea
|
|
635
633
|
leave_confirmation: Ziur zaude topaketa honetarako zure izen-ematea indargabetu nahi duzula?
|
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: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
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:
|
|
@@ -168,7 +166,6 @@ sv:
|
|
|
168
166
|
announcement: Meddelande
|
|
169
167
|
clear_all: Återställ
|
|
170
168
|
comments_enabled: Aktivera kommentarer
|
|
171
|
-
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
|
172
169
|
creation_enabled_for_participants: Deltagarna kan skapa möten
|
|
173
170
|
default_registration_terms: Villkor för standardanmälan
|
|
174
171
|
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
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.31.
|
|
4
|
+
version: 0.31.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2026-
|
|
13
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,28 +18,28 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.31.
|
|
21
|
+
version: 0.31.6
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.31.
|
|
28
|
+
version: 0.31.6
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-forms
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.31.
|
|
35
|
+
version: 0.31.6
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.31.
|
|
42
|
+
version: 0.31.6
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: icalendar
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,56 +60,56 @@ dependencies:
|
|
|
60
60
|
requirements:
|
|
61
61
|
- - '='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: 0.31.
|
|
63
|
+
version: 0.31.6
|
|
64
64
|
type: :development
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - '='
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 0.31.
|
|
70
|
+
version: 0.31.6
|
|
71
71
|
- !ruby/object:Gem::Dependency
|
|
72
72
|
name: decidim-assemblies
|
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - '='
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 0.31.
|
|
77
|
+
version: 0.31.6
|
|
78
78
|
type: :development
|
|
79
79
|
prerelease: false
|
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - '='
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
|
-
version: 0.31.
|
|
84
|
+
version: 0.31.6
|
|
85
85
|
- !ruby/object:Gem::Dependency
|
|
86
86
|
name: decidim-dev
|
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
89
|
- - '='
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: 0.31.
|
|
91
|
+
version: 0.31.6
|
|
92
92
|
type: :development
|
|
93
93
|
prerelease: false
|
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
|
96
96
|
- - '='
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 0.31.
|
|
98
|
+
version: 0.31.6
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: decidim-participatory_processes
|
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
103
|
- - '='
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: 0.31.
|
|
105
|
+
version: 0.31.6
|
|
106
106
|
type: :development
|
|
107
107
|
prerelease: false
|
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
|
109
109
|
requirements:
|
|
110
110
|
- - '='
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: 0.31.
|
|
112
|
+
version: 0.31.6
|
|
113
113
|
description: A meetings component for decidim's participatory spaces.
|
|
114
114
|
email:
|
|
115
115
|
- josepjaume@gmail.com
|