decidim-meetings 0.19.1 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_meetings_manifest.js +2 -0
- data/app/assets/images/decidim/gamification/badges/attended_meetings.svg +1 -106
- data/app/assets/images/decidim/meetings/icon.svg +1 -5
- data/app/assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 +16 -0
- data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +3 -0
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +9 -0
- data/app/cells/decidim/meetings/content_blocks/upcoming_events_cell.rb +2 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +7 -7
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -2
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -0
- data/app/cells/decidim/meetings/meeting_list_item/show.erb +3 -3
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_m/date.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/footer.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +9 -1
- data/app/cells/decidim/meetings/meeting_s/show.erb +6 -6
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -2
- data/app/cells/decidim/meetings/meetings_map_cell.rb +3 -1
- data/app/commands/decidim/meetings/admin/close_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +38 -28
- data/app/commands/decidim/meetings/admin/create_meeting.rb +36 -24
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +6 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +9 -3
- data/app/commands/decidim/meetings/create_meeting.rb +78 -0
- data/app/commands/decidim/meetings/join_meeting.rb +11 -0
- data/app/commands/decidim/meetings/update_meeting.rb +94 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -0
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +21 -7
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +4 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +1 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +75 -12
- data/app/controllers/decidim/meetings/registrations_controller.rb +2 -2
- data/app/controllers/decidim/meetings/versions_controller.rb +14 -0
- data/app/controllers/decidim/meetings/{meeting_widgets_controller.rb → widgets_controller.rb} +2 -2
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +7 -1
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +2 -8
- data/app/forms/decidim/meetings/admin/meeting_form.rb +24 -23
- data/app/forms/decidim/meetings/meeting_form.rb +78 -0
- data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -6
- data/app/helpers/decidim/meetings/application_helper.rb +26 -0
- data/app/helpers/decidim/meetings/map_helper.rb +2 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +13 -1
- data/app/models/decidim/meetings/agenda.rb +3 -0
- data/app/models/decidim/meetings/agenda_item.rb +3 -0
- data/app/models/decidim/meetings/meeting.rb +43 -15
- data/app/models/decidim/meetings/minutes.rb +3 -0
- data/app/models/decidim/meetings/service.rb +13 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -0
- data/app/permissions/decidim/meetings/permissions.rb +20 -0
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -2
- data/app/presenters/decidim/meetings/meeting_presenter.rb +21 -6
- data/app/presenters/decidim/meetings/official_author_presenter.rb +14 -0
- data/app/queries/decidim/meetings/filtered_meetings.rb +37 -0
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +2 -8
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +3 -3
- data/app/services/decidim/meetings/diff_renderer.rb +21 -0
- data/app/services/decidim/meetings/meeting_search.rb +3 -25
- data/app/types/decidim/meetings/agenda_item_type.rb +28 -0
- data/app/types/decidim/meetings/agenda_type.rb +25 -0
- data/app/types/decidim/meetings/meeting_type.rb +35 -8
- data/app/types/decidim/meetings/meetings_type.rb +1 -1
- data/app/types/decidim/meetings/minutes_type.rb +26 -0
- data/app/types/decidim/meetings/service_type.rb +13 -0
- data/app/views/decidim/meetings/_calendar_modal.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -6
- data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +1 -0
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +2 -9
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +8 -12
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +22 -3
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +4 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +5 -3
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +11 -4
- data/app/views/decidim/meetings/meetings/_count.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +13 -7
- data/app/views/decidim/meetings/meetings/_form.html.erb +51 -0
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +8 -8
- data/app/views/decidim/meetings/meetings/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +16 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +13 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +30 -8
- data/app/views/decidim/meetings/versions/index.html.erb +8 -0
- data/app/views/decidim/meetings/versions/show.html.erb +10 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -3
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -8
- data/config/locales/bg-BG.yml +21 -0
- data/config/locales/bg.yml +21 -0
- data/config/locales/ca.yml +64 -8
- data/config/locales/cs.yml +70 -8
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +64 -7
- data/config/locales/el-GR.yml +1 -0
- data/config/locales/el.yml +449 -0
- data/config/locales/en.yml +65 -9
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +63 -7
- data/config/locales/es-PY.yml +63 -7
- data/config/locales/es.yml +65 -9
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +63 -7
- data/config/locales/fi.yml +89 -33
- data/config/locales/fr-CA.yml +504 -0
- data/config/locales/fr.yml +63 -7
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +0 -8
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +14 -7
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +228 -0
- data/config/locales/is.yml +228 -0
- data/config/locales/it.yml +62 -8
- data/config/locales/ja-JP.yml +494 -0
- data/config/locales/ja.yml +496 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +452 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +95 -47
- data/config/locales/no.yml +358 -1
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +210 -147
- data/config/locales/pt-BR.yml +1 -9
- data/config/locales/pt.yml +232 -177
- data/config/locales/ro-RO.yml +500 -0
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk-SK.yml +463 -0
- data/config/locales/sk.yml +458 -0
- data/config/locales/sl.yml +29 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +13 -0
- data/config/locales/sv.yml +67 -13
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +0 -8
- data/config/locales/uk.yml +0 -8
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +496 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200320105922_index_foreign_keys_in_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20200526110940_add_author_to_meetings.rb +30 -0
- data/db/migrate/20200702123209_create_meeting_services_table.rb +13 -0
- data/db/migrate/20200702123210_move_meeting_services_to_own_model.rb +31 -0
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +9 -0
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +29 -0
- data/lib/decidim/api/linked_resources_interface.rb +17 -0
- data/lib/decidim/api/services_interface.rb +13 -0
- data/lib/decidim/meetings.rb +1 -0
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/api.rb +8 -0
- data/lib/decidim/meetings/component.rb +69 -14
- data/lib/decidim/meetings/engine.rb +3 -6
- data/lib/decidim/meetings/meeting_serializer.rb +1 -1
- data/lib/decidim/meetings/seeds/city.jpeg +0 -0
- data/lib/decidim/meetings/test/factories.rb +45 -8
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +16 -0
- metadata +92 -20
- data/app/presenters/decidim/meetings/admin_log/value_types/organizer_presenter.rb +0 -70
- data/app/views/decidim/meetings/meeting_widgets/show.html.erb +0 -9
@@ -1,6 +1,4 @@
|
|
1
1
|
<div class="card__block">
|
2
|
-
|
3
|
-
<strong class="text-uppercase text-small"><%= t("upcoming_meeting", scope: "decidim.participatory_spaces.upcoming_meeting_for_card") %></strong>
|
4
|
-
</h6>
|
2
|
+
<strong class="text-small"><%= t("upcoming_meeting", scope: "decidim.participatory_spaces.upcoming_meeting_for_card") %></strong>
|
5
3
|
<%= cell("decidim/meetings/meeting_m", upcoming_meeting).date %>
|
6
4
|
</div>
|
@@ -0,0 +1 @@
|
|
1
|
+
am:
|
data/config/locales/ar.yml
CHANGED
@@ -105,8 +105,12 @@ ar:
|
|
105
105
|
affected_user:
|
106
106
|
email_intro: 'تم إغلاق اجتماعك "%{resource_title}". يمكنك قراءة الاستنتاجات من صفحتها:'
|
107
107
|
email_outro: لقد تلقيت هذا الإشعار لأنك نظمت اجتماع "%{resource_title}".
|
108
|
+
email_subject: لقد تم اغلاق الملتقى "%{resource_title}"
|
109
|
+
notification_title: لقد تم إغلاق الملتقى <a href="%{resource_path}">%{resource_title}</a>.
|
108
110
|
follower:
|
109
111
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع اجتماع "%{resource_title}". يمكنك إلغاء تتبعه من الرابط السابق.
|
112
|
+
email_subject: لقد تم اغلاق الملتقى "%{resource_title}"
|
113
|
+
notification_title: لقد تم إغلاق الملتقى <a href="%{resource_path}">%{resource_title}</a>.
|
110
114
|
meeting_created:
|
111
115
|
email_intro: تمت إضافة الاجتماع "%{resource_title}" إلى "%{participatory_space_title}" الذي تتابعه.
|
112
116
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع "%{participatory_space_title}". يمكنك إلغاء تتبعه من الرابط السابق.
|
@@ -230,9 +234,6 @@ ar:
|
|
230
234
|
edit:
|
231
235
|
close: قريب
|
232
236
|
title: اجتماع قريب
|
233
|
-
meeting_copies:
|
234
|
-
form:
|
235
|
-
select_organizer: اختر المنظم
|
236
237
|
meetings:
|
237
238
|
close:
|
238
239
|
invalid: حدثت مشكلة أثناء اختتام هذا الاجتماع
|
@@ -244,8 +245,6 @@ ar:
|
|
244
245
|
success: تم حذف الاجتماع بنجاح
|
245
246
|
edit:
|
246
247
|
update: تحديث
|
247
|
-
form:
|
248
|
-
select_organizer: اختر المنظم
|
249
248
|
index:
|
250
249
|
title: اجتماعات
|
251
250
|
new:
|
@@ -355,11 +354,8 @@ ar:
|
|
355
354
|
meetings:
|
356
355
|
filters:
|
357
356
|
category: الفئة
|
358
|
-
category_prompt: اختر تصنيف
|
359
357
|
date: تاريخ
|
360
|
-
past: الماضي
|
361
358
|
search: بحث
|
362
|
-
upcoming: القادمة
|
363
359
|
filters_small_view:
|
364
360
|
close_modal: إغلاق مشروط
|
365
361
|
filter: منقي
|
@@ -0,0 +1,21 @@
|
|
1
|
+
bg:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
agenda:
|
5
|
+
description: Описание
|
6
|
+
duration: Продължителност
|
7
|
+
title: Заглавие
|
8
|
+
decidim:
|
9
|
+
meetings:
|
10
|
+
actions:
|
11
|
+
invalid_destroy:
|
12
|
+
proposals_count:
|
13
|
+
one: 'Срещата не може да бъде премахната, понеже има %{count} участник свързан с нея:'
|
14
|
+
other: 'Срещата не може да бъде премахната, понеже има %{count} участника свързани с нея:'
|
15
|
+
admin:
|
16
|
+
meetings:
|
17
|
+
destroy:
|
18
|
+
invalid:
|
19
|
+
proposals_count:
|
20
|
+
one: Срещата не може да бъде премахната, понеже има %{count} участник свързан с нея
|
21
|
+
other: Срещата не може да бъде премахната, понеже има %{count} участника свързани с нея
|
@@ -0,0 +1,21 @@
|
|
1
|
+
bg:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
agenda:
|
5
|
+
description: Описание
|
6
|
+
duration: Продължителност
|
7
|
+
title: Заглавие
|
8
|
+
decidim:
|
9
|
+
meetings:
|
10
|
+
actions:
|
11
|
+
invalid_destroy:
|
12
|
+
proposals_count:
|
13
|
+
one: 'Срещата не може да бъде премахната, понеже има %{count} участник свързан с нея:'
|
14
|
+
other: 'Срещата не може да бъде премахната, понеже има %{count} участника свързани с нея:'
|
15
|
+
admin:
|
16
|
+
meetings:
|
17
|
+
destroy:
|
18
|
+
invalid:
|
19
|
+
proposals_count:
|
20
|
+
one: Срещата не може да бъде премахната, понеже има %{count} участник свързан с нея
|
21
|
+
other: Срещата не може да бъде премахната, понеже има %{count} участника свързани с нея
|
data/config/locales/ca.yml
CHANGED
@@ -16,10 +16,12 @@ ca:
|
|
16
16
|
available_slots: Espais disponibles per a aquesta trobada
|
17
17
|
decidim_category_id: Categoria
|
18
18
|
decidim_scope_id: Àmbit
|
19
|
+
decidim_user_group_id: Grup d'usuàries
|
19
20
|
description: Descripció
|
20
21
|
end_time: Hora de finalització
|
21
22
|
location: Ubicació
|
22
23
|
location_hints: Detalls d'ubicació
|
24
|
+
organizer_gid: Crear com a
|
23
25
|
organizer_id: Organitzador
|
24
26
|
private_meeting: Trobada privada
|
25
27
|
registration_form_enabled: Formulari d'inscripcions habilitat
|
@@ -81,12 +83,18 @@ ca:
|
|
81
83
|
global:
|
82
84
|
announcement: Avís
|
83
85
|
comments_enabled: Comentaris habilitats
|
86
|
+
comments_max_length: Longitud màxima dels comentaris (deixa 0 si vols mantenir la configuració per defecte)
|
87
|
+
creation_enabled_for_participants: Les participants poden crear trobades
|
84
88
|
default_registration_terms: Termes de registre per defecte
|
85
89
|
enable_pads_creation: Habilitar la creació de pads
|
86
90
|
resources_permissions_enabled: Es poden establir permisos d'accions per a cada trobada
|
91
|
+
scope_id: Àmbit
|
92
|
+
scopes_enabled: Àmbits habilitats
|
87
93
|
step:
|
88
94
|
announcement: Avís
|
89
95
|
comments_blocked: Comentaris bloquejats
|
96
|
+
creation_enabled_for_participants: Habilitar la creació de trobades per part de les participants
|
97
|
+
creation_enabled_for_user_groups: Habilitar la creació de trobades per part dels grups d'usuàries
|
90
98
|
events:
|
91
99
|
meetings:
|
92
100
|
meeting_closed:
|
@@ -153,6 +161,10 @@ ca:
|
|
153
161
|
confirm_destroy: Segur que vols suprimir aquesta trobada?
|
154
162
|
destroy: Esborra
|
155
163
|
edit: Edita
|
164
|
+
invalid_destroy:
|
165
|
+
proposals_count:
|
166
|
+
one: 'No es pot destruir la trobada perquè té %{count} proposta associades:'
|
167
|
+
other: 'No es pot destruir la trobada perquè té %{count} propostes associades:'
|
156
168
|
minutes: Acta
|
157
169
|
new: Nova trobada
|
158
170
|
preview: Previsualitzar
|
@@ -223,9 +235,6 @@ ca:
|
|
223
235
|
edit:
|
224
236
|
close: Tancar
|
225
237
|
title: Tancar trobada
|
226
|
-
meeting_copies:
|
227
|
-
form:
|
228
|
-
select_organizer: Selecciona l'organitzador
|
229
238
|
meetings:
|
230
239
|
close:
|
231
240
|
invalid: S'ha produït un error en tancar aquesta trobada
|
@@ -234,11 +243,17 @@ ca:
|
|
234
243
|
invalid: S'ha produït un error en crear aquesta trobada
|
235
244
|
success: Trobada creada amb èxit
|
236
245
|
destroy:
|
246
|
+
invalid:
|
247
|
+
proposals_count:
|
248
|
+
one: No es pot destruir la trobada perquè té %{count} proposta associades
|
249
|
+
other: No es pot destruir la trobada perquè té %{count} propostes associades
|
237
250
|
success: La trobada s'ha eliminat correctament
|
238
251
|
edit:
|
239
252
|
update: Actualitzar
|
240
253
|
form:
|
241
|
-
|
254
|
+
address_help: 'Adreça: que farà servir per Geocoder per a trobar la localització'
|
255
|
+
location_help: 'Localització: missatge dirigit a les participants indicant el lloc on trobar-se'
|
256
|
+
location_hints_help: 'Ajuda de localització: informació addicional. Per exemple: la planta de l''edifici'
|
242
257
|
index:
|
243
258
|
title: Trobades
|
244
259
|
new:
|
@@ -280,6 +295,7 @@ ca:
|
|
280
295
|
form:
|
281
296
|
available_slots_help: Deixar a 0 si les inscripcions són il·limitades.
|
282
297
|
invites: Invitacions
|
298
|
+
recommendation_message: Per raons de privacitat et recomanem que esborris aquest formulari d'inscripció quan ja no el necessitis. Per defecte això és 3 mesos després que la reunió hagi finalitzat.
|
283
299
|
registration_form: Formulari d'inscripció
|
284
300
|
registrations_count:
|
285
301
|
one: Hi ha hagut %{count} inscripció.
|
@@ -342,30 +358,64 @@ ca:
|
|
342
358
|
meeting:
|
343
359
|
not_allowed: No tens permís per veure aquesta trobada
|
344
360
|
meetings:
|
361
|
+
count:
|
362
|
+
meetings_count:
|
363
|
+
one: "%{count} trobada"
|
364
|
+
other: "%{count} trobades"
|
365
|
+
create:
|
366
|
+
invalid: S'ha produït un error al crear aquesta trobada.
|
367
|
+
success: Has creat la trobada amb èxit.
|
368
|
+
edit:
|
369
|
+
back: Enrere
|
370
|
+
title: Editar la trobada
|
371
|
+
update: Actualitzar
|
345
372
|
filters:
|
346
373
|
category: Categoria
|
347
|
-
category_prompt: Selecciona una categoria
|
348
374
|
date: Data
|
349
|
-
|
375
|
+
date_values:
|
376
|
+
all: Totes
|
377
|
+
past: Passades
|
378
|
+
upcoming: Properes
|
379
|
+
origin: Origen
|
380
|
+
origin_values:
|
381
|
+
all: Tots
|
382
|
+
citizens: Ciutadania
|
383
|
+
official: Oficial
|
384
|
+
user_groups: Grups
|
385
|
+
scope: Àmbit
|
350
386
|
search: Cerca
|
351
|
-
upcoming: Properes
|
352
387
|
filters_small_view:
|
353
388
|
close_modal: Tancar finestra
|
354
389
|
filter: Filtra
|
355
390
|
filter_by: Filtra per
|
356
391
|
unfold: Desplegar
|
392
|
+
form:
|
393
|
+
address_help: 'Adreça: que farà servir per Geocoder per a trobar la localització'
|
394
|
+
create_as: Crear trobada com a
|
395
|
+
location_help: 'Localització: missatge dirigit a les participants indicant el lloc on trobar-se'
|
396
|
+
location_hints_help: 'Ajuda de localització: informació addicional. Per exemple: la planta de l''edifici'
|
397
|
+
select_a_category: Si us plau, selecciona una categoria
|
398
|
+
index:
|
399
|
+
new_meeting: Nova trobada
|
357
400
|
meeting_minutes:
|
358
401
|
meeting_minutes: Acta de la trobada
|
359
402
|
related_information: Informació relacionada
|
360
403
|
meetings:
|
361
404
|
no_meetings_warning: No hi ha trobades que coincideixin amb la teva cerca o no hi ha cap trobada programada.
|
362
405
|
upcoming_meetings_warning: Actualment no hi ha trobades programades, però pots veure les anteriors.
|
406
|
+
new:
|
407
|
+
back: Enrere
|
408
|
+
create: Crear
|
409
|
+
title: Crea la teva trobada
|
363
410
|
registration_confirm:
|
364
411
|
cancel: Cancel·lar
|
365
412
|
confirm: Confirmar
|
366
413
|
show:
|
367
414
|
attendees: Nombre d'assistents
|
415
|
+
back: Torna al llistat
|
368
416
|
contributions: Nombre d'aportacions
|
417
|
+
date: Data
|
418
|
+
edit_meeting: Editar la trobada
|
369
419
|
going: Inscrit
|
370
420
|
join: Inscriu-te a la trobada
|
371
421
|
meeting_report: Informe de la trobada
|
@@ -379,6 +429,9 @@ ca:
|
|
379
429
|
one: "%{count} plaça restant"
|
380
430
|
other: "%{count} places restants"
|
381
431
|
view: Veure
|
432
|
+
update:
|
433
|
+
invalid: Hi ha hagut un problema en actualitzar aquesta trobada.
|
434
|
+
success: Has actualitzat la trobada amb èxit.
|
382
435
|
meetings_map:
|
383
436
|
view_meeting: Veure trobada
|
384
437
|
models:
|
@@ -397,6 +450,7 @@ ca:
|
|
397
450
|
closed: Tancada
|
398
451
|
end_time: Data de finalització
|
399
452
|
map: Mapa
|
453
|
+
official_meeting: Trobada oficial
|
400
454
|
start_time: Data d'inici
|
401
455
|
title: Títol
|
402
456
|
read_more: "(llegeix més)"
|
@@ -408,7 +462,7 @@ ca:
|
|
408
462
|
registrations:
|
409
463
|
create:
|
410
464
|
invalid: S'ha produït un error en inscriure's a aquesta trobada.
|
411
|
-
success: T'has inscrit a la trobada amb èxit.
|
465
|
+
success: T'has inscrit a la trobada amb èxit. Al estar inscrita, rebràs notificacions si s'hi produeixen actualitzacions.
|
412
466
|
decline_invitation:
|
413
467
|
invalid: S'ha produït un error en declinar la invitació.
|
414
468
|
success: Has declinat la invitació amb èxit.
|
@@ -418,6 +472,8 @@ ca:
|
|
418
472
|
types:
|
419
473
|
private_meeting: Trobada privada
|
420
474
|
transparent: Transparent
|
475
|
+
versions:
|
476
|
+
back_to_resource: Tornar a la trobada
|
421
477
|
metrics:
|
422
478
|
meetings:
|
423
479
|
description: Nombre de trobades creades
|
data/config/locales/cs.yml
CHANGED
@@ -16,10 +16,12 @@ cs:
|
|
16
16
|
available_slots: Dostupné sloty pro toto schůzku
|
17
17
|
decidim_category_id: Kategorie
|
18
18
|
decidim_scope_id: Rozsah
|
19
|
+
decidim_user_group_id: Uživatelská skupina
|
19
20
|
description: Popis
|
20
21
|
end_time: Čas ukončení
|
21
22
|
location: Umístění
|
22
|
-
location_hints:
|
23
|
+
location_hints: Nápověda k poloze
|
24
|
+
organizer_gid: Vytvořit jako
|
23
25
|
organizer_id: Organizátor
|
24
26
|
private_meeting: Soukromá schůzka
|
25
27
|
registration_form_enabled: Registrační formulář je povolen
|
@@ -87,12 +89,18 @@ cs:
|
|
87
89
|
global:
|
88
90
|
announcement: Oznámení
|
89
91
|
comments_enabled: Komentáře povoleny
|
92
|
+
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
93
|
+
creation_enabled_for_participants: Účastníci mohou vytvářet schůzky
|
90
94
|
default_registration_terms: Výchozí podmínky registrace
|
91
95
|
enable_pads_creation: Povolit vytvoření sdíleného textu
|
92
96
|
resources_permissions_enabled: Nastavení oprávnění lze nastavit pro každou schůzku
|
97
|
+
scope_id: Oblast působnosti
|
98
|
+
scopes_enabled: Oblasti působnosti povoleny
|
93
99
|
step:
|
94
100
|
announcement: Oznámení
|
95
101
|
comments_blocked: Komentáře blokovány
|
102
|
+
creation_enabled_for_participants: Vytváření schůzek od účastníků povoleno
|
103
|
+
creation_enabled_for_user_groups: Vytvoření schůzky od skupin uživatelů povoleno
|
96
104
|
events:
|
97
105
|
meetings:
|
98
106
|
meeting_closed:
|
@@ -159,6 +167,12 @@ cs:
|
|
159
167
|
confirm_destroy: Opravdu chcete tuto schůzku smazat?
|
160
168
|
destroy: Odstranit
|
161
169
|
edit: Upravit
|
170
|
+
invalid_destroy:
|
171
|
+
proposals_count:
|
172
|
+
one: 'Schůzku nelze zničit, protože má k ní přidružený %{count} návrh:'
|
173
|
+
few: 'Schůzku nelze zničit, protože má k ní přidruženo %{count} návrhů:'
|
174
|
+
many: 'Schůzku nelze zničit, protože má k ní přidruženo %{count} návrhů:'
|
175
|
+
other: 'Schůzka nemůže být zničena, protože s ní je spojeno %{count} návrhů:'
|
162
176
|
minutes: Minut
|
163
177
|
new: Nové setkání
|
164
178
|
preview: Náhled
|
@@ -229,9 +243,6 @@ cs:
|
|
229
243
|
edit:
|
230
244
|
close: Zavřít
|
231
245
|
title: Zavřete schůzku
|
232
|
-
meeting_copies:
|
233
|
-
form:
|
234
|
-
select_organizer: Vyberte organizátor
|
235
246
|
meetings:
|
236
247
|
close:
|
237
248
|
invalid: Při setkání došlo k problému
|
@@ -240,11 +251,19 @@ cs:
|
|
240
251
|
invalid: Při vytváření této schůzky došlo k problému
|
241
252
|
success: Setkání bylo úspěšně vytvořeno
|
242
253
|
destroy:
|
254
|
+
invalid:
|
255
|
+
proposals_count:
|
256
|
+
one: Schůzku nelze zničit, protože má k ní přidružený %{count} návrh
|
257
|
+
few: Schůzku nelze zničit, protože má k ní přidruženo %{count} návrhů
|
258
|
+
many: Schůzka nemůže být zničena, protože s ní je spojeno %{count} návrhů
|
259
|
+
other: Schůzka nemůže být zničena, protože s ní je spojeno %{count} návrhů
|
243
260
|
success: Setkání bylo úspěšně smazáno
|
244
261
|
edit:
|
245
262
|
update: Aktualizace
|
246
263
|
form:
|
247
|
-
|
264
|
+
address_help: 'Adresa: použita Geocoderem k nalezení polohy'
|
265
|
+
location_help: 'Poloha: zpráva určená uživatelům, kteří předávají místo, aby se setkali'
|
266
|
+
location_hints_help: 'Určení polohy: dodatečné informace. Příklad: patro budovy'
|
248
267
|
index:
|
249
268
|
title: Setkání
|
250
269
|
new:
|
@@ -286,6 +305,7 @@ cs:
|
|
286
305
|
form:
|
287
306
|
available_slots_help: Nechte to na 0, pokud máte k dispozici neomezené sloty.
|
288
307
|
invites: Pozvánky
|
308
|
+
recommendation_message: Z důvodu ochrany osobních údajů doporučujeme odstranit tento nadepsaný formulář, když jej již nepotřebujete. Ve výchozím nastavení je to 3 měsíce po ukončení schůzky.
|
289
309
|
registration_form: Registrační formulář
|
290
310
|
registrations_count:
|
291
311
|
one: Byla zde registrace %{count}.
|
@@ -350,30 +370,66 @@ cs:
|
|
350
370
|
meeting:
|
351
371
|
not_allowed: Tuto schůzku není povoleno prohlížet
|
352
372
|
meetings:
|
373
|
+
count:
|
374
|
+
meetings_count:
|
375
|
+
one: "%{count} schůzka"
|
376
|
+
few: "%{count} schůzek"
|
377
|
+
many: "%{count} schůzek"
|
378
|
+
other: "%{count} schůzek"
|
379
|
+
create:
|
380
|
+
invalid: Při vytváření této schůzky došlo k chybě.
|
381
|
+
success: Úspěšně jste vytvořili schůzku.
|
382
|
+
edit:
|
383
|
+
back: Zpět
|
384
|
+
title: Upravit schůzku
|
385
|
+
update: Aktualizovat
|
353
386
|
filters:
|
354
387
|
category: Kategorie
|
355
|
-
category_prompt: Vyberte kategorii
|
356
388
|
date: datum
|
357
|
-
|
389
|
+
date_values:
|
390
|
+
all: Vše
|
391
|
+
past: Minulé
|
392
|
+
upcoming: Nadcházející
|
393
|
+
origin: Původ
|
394
|
+
origin_values:
|
395
|
+
all: Vše
|
396
|
+
citizens: Občané
|
397
|
+
official: Úředník
|
398
|
+
user_groups: Skupiny
|
399
|
+
scope: Oblast působnosti
|
358
400
|
search: Vyhledávání
|
359
|
-
upcoming: Nadcházející
|
360
401
|
filters_small_view:
|
361
402
|
close_modal: Zavřít modální
|
362
403
|
filter: Filtr
|
363
404
|
filter_by: Filtrovat podle
|
364
405
|
unfold: Rozvinout
|
406
|
+
form:
|
407
|
+
address_help: 'Adresa: použita Geocoderem k nalezení polohy'
|
408
|
+
create_as: Vytvořit schůzku jako
|
409
|
+
location_help: 'Poloha: zpráva určená uživatelům, kteří navrhují místo ke schůzce na'
|
410
|
+
location_hints_help: 'Určení polohy: dodatečné informace. Příklad: patro budovy'
|
411
|
+
select_a_category: Vyberte prosím kategorii
|
412
|
+
index:
|
413
|
+
new_meeting: Nová schůzka
|
365
414
|
meeting_minutes:
|
366
415
|
meeting_minutes: Zápis z porady
|
367
416
|
related_information: Související informace
|
368
417
|
meetings:
|
369
418
|
no_meetings_warning: Žádné schůzky neodpovídají vašim kritériím vyhledávání nebo nejsou plánovány žádné schůzky.
|
370
419
|
upcoming_meetings_warning: V současné době neexistují žádné plánované schůzky, ale naleznete zde všechny minulé schůzky.
|
420
|
+
new:
|
421
|
+
back: Zpět
|
422
|
+
create: Vytvořit
|
423
|
+
title: Vytvořte si schůzku
|
371
424
|
registration_confirm:
|
372
425
|
cancel: Zrušit
|
373
426
|
confirm: Potvrdit
|
374
427
|
show:
|
375
428
|
attendees: Počet účastníků
|
429
|
+
back: Zpět na seznam
|
376
430
|
contributions: Počet příspěvků
|
431
|
+
date: Datum
|
432
|
+
edit_meeting: Upravit schůzku
|
377
433
|
going: Chystáte se
|
378
434
|
join: Připojte se k setkání
|
379
435
|
meeting_report: Zpráva o schůzce
|
@@ -389,6 +445,9 @@ cs:
|
|
389
445
|
many: "%{count} zbývajících bloků"
|
390
446
|
other: "%{count} zbývajících bloků"
|
391
447
|
view: Zobrazení
|
448
|
+
update:
|
449
|
+
invalid: Při aktualizaci schůzky došlo k chybě.
|
450
|
+
success: Úspěšně jste aktualizovali schůzku.
|
392
451
|
meetings_map:
|
393
452
|
view_meeting: Zobrazit schůzku
|
394
453
|
models:
|
@@ -407,6 +466,7 @@ cs:
|
|
407
466
|
closed: Zavřeno
|
408
467
|
end_time: Datum ukončení
|
409
468
|
map: Mapa
|
469
|
+
official_meeting: Oficiální schůzka
|
410
470
|
start_time: Počáteční datum
|
411
471
|
title: Titul
|
412
472
|
read_more: "(Přečtěte si více)"
|
@@ -428,6 +488,8 @@ cs:
|
|
428
488
|
types:
|
429
489
|
private_meeting: Privátní setkání
|
430
490
|
transparent: Průhledný
|
491
|
+
versions:
|
492
|
+
back_to_resource: Přejít zpět na schůzku
|
431
493
|
metrics:
|
432
494
|
meetings:
|
433
495
|
description: Počet vytvořených schůzek
|