decidim-meetings 0.12.0.pre → 0.12.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/cells/decidim/meetings/join_meeting_button_cell.rb +5 -1
- data/app/cells/decidim/meetings/meeting_m/footer.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +4 -0
- data/app/models/decidim/meetings/meeting.rb +13 -7
- data/config/locales/es-PY.yml +343 -0
- data/config/locales/fr.yml +35 -35
- data/config/locales/ru.yml +40 -8
- data/config/locales/uk.yml +2 -2
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +15 -15
- data/db/migrate/20180516102301_index_meetings_as_searchable_resources.rb +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b63baf328996348badc713d49c29d2d536347c55efb19f3fdfba538b770a59eb
|
4
|
+
data.tar.gz: 45f01ebecea23f345b58b077afbca5ad11f262698a00541de8b4a8f31b98ce79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2910903e9a949d971d53d971b79189ae7152409afafa1d4702ef31d9305288bc1ad1b9bccfaa26f313d630e8f36316a7e32a6d36237d09561012879d20dd1c29
|
7
|
+
data.tar.gz: 60ad57292e5aab268ceb7e9e438392b5f463b0203c72ec790bea5b289d4e9c0a6e3541ab9d2935e01fd28878ca992d4fd865eba5c42dd830cdb821bc9e9aaef5
|
@@ -13,7 +13,11 @@ module Decidim
|
|
13
13
|
|
14
14
|
private
|
15
15
|
|
16
|
-
delegate :current_user,
|
16
|
+
delegate :current_user, to: :controller, prefix: false
|
17
|
+
|
18
|
+
def current_component
|
19
|
+
model.component
|
20
|
+
end
|
17
21
|
|
18
22
|
def button_classes
|
19
23
|
return "button expanded button--sc" if big_button?
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="card__footer">
|
2
2
|
<div class="card__support">
|
3
|
-
<% if can_join? %>
|
3
|
+
<% if can_join? && show_footer_actions? %>
|
4
4
|
<%= cell "decidim/meetings/join_meeting_button", model %>
|
5
5
|
<% else %>
|
6
6
|
<%= link_to t("view", scope: "decidim.meetings.meetings.show"), resource_path, class: "card__button button secondary button--sc small light" %>
|
@@ -40,13 +40,15 @@ module Decidim
|
|
40
40
|
or private_meeting = ? or (private_meeting = ? and transparent = ?)", true, user, false, true, true).distinct
|
41
41
|
}
|
42
42
|
|
43
|
-
searchable_fields(
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
43
|
+
searchable_fields({
|
44
|
+
scope_id: :decidim_scope_id,
|
45
|
+
participatory_space: { component: :participatory_space },
|
46
|
+
A: :title,
|
47
|
+
D: [:description, :address],
|
48
|
+
datetime: :start_time
|
49
|
+
},
|
50
|
+
index_on_create: ->(meeting) { meeting.visible? },
|
51
|
+
index_on_update: ->(meeting) { meeting.visible? })
|
50
52
|
|
51
53
|
def self.log_presenter_class_for(_log)
|
52
54
|
Decidim::Meetings::AdminLog::MeetingPresenter
|
@@ -128,6 +130,10 @@ module Decidim
|
|
128
130
|
def meeting_duration
|
129
131
|
@meeting_duration ||= ((end_time - start_time) / 1.minute).abs
|
130
132
|
end
|
133
|
+
|
134
|
+
def resource_visible?
|
135
|
+
!private_meeting? || transparent?
|
136
|
+
end
|
131
137
|
end
|
132
138
|
end
|
133
139
|
end
|
@@ -0,0 +1,343 @@
|
|
1
|
+
es-PY:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
agenda:
|
5
|
+
description: Descripción
|
6
|
+
duration: Duración
|
7
|
+
title: Título
|
8
|
+
close_meeting:
|
9
|
+
attendees_count: Número de asistentes
|
10
|
+
attending_organizations: Lista de organizaciones que han participado
|
11
|
+
closing_report: Informe
|
12
|
+
contributions_count: Número de contribuciones
|
13
|
+
proposal_ids: Propuestas creadas en el encuentro
|
14
|
+
meeting:
|
15
|
+
address: Dirección
|
16
|
+
available_slots: Espacios disponibles para este encuentro
|
17
|
+
decidim_category_id: Categoría
|
18
|
+
decidim_scope_id: Ámbito
|
19
|
+
description: Descripción
|
20
|
+
end_time: Hora de finalización
|
21
|
+
location: Ubicación
|
22
|
+
location_hints: Pistas de ubicación
|
23
|
+
private_meeting: Encuentro privado
|
24
|
+
registration_terms: Términos y condiciones de inscripción
|
25
|
+
registrations_enabled: Inscripciones abiertas
|
26
|
+
start_time: Hora de inicio
|
27
|
+
title: Título
|
28
|
+
transparent: Transparente
|
29
|
+
minutes:
|
30
|
+
audio_url: URL del audio
|
31
|
+
description: Descripción
|
32
|
+
video_url: URL del vídeo
|
33
|
+
visible: Es visible
|
34
|
+
errors:
|
35
|
+
models:
|
36
|
+
meeting_agenda:
|
37
|
+
attributes:
|
38
|
+
base:
|
39
|
+
too_many_minutes: La duración de los ítems supera la duración del encuentro en %{count} minutos
|
40
|
+
too_many_minutes_child: La duración de los sub-ítems excede el punto "%{parent_title}" del orden del dia en %{count} minuto
|
41
|
+
models:
|
42
|
+
decidim/meetings/close_meeting_event: Encuentro cerrado
|
43
|
+
decidim/meetings/create_meeting_event: Encuentro
|
44
|
+
decidim/meetings/meeting_registrations_enabled_event: Registro habilitado
|
45
|
+
decidim/meetings/meeting_registrations_over_percentage_event: Registros por encima del límite
|
46
|
+
decidim/meetings/upcoming_meeting_event: Próximo encuentro
|
47
|
+
decidim/meetings/update_meeting_event: Encuentro actualizado
|
48
|
+
activerecord:
|
49
|
+
models:
|
50
|
+
decidim/meetings/meeting:
|
51
|
+
one: Encuentro
|
52
|
+
other: Encuentros
|
53
|
+
decidim/meetings/minutes:
|
54
|
+
one: Acta
|
55
|
+
other: Actas
|
56
|
+
decidim/meetings/registration:
|
57
|
+
one: Registro
|
58
|
+
other: Registros
|
59
|
+
decidim:
|
60
|
+
admin:
|
61
|
+
meeting_copies:
|
62
|
+
create:
|
63
|
+
error: Se ha producido un error al duplicar este encuentro.
|
64
|
+
success: El encuentro se ha duplicado con éxito.
|
65
|
+
new:
|
66
|
+
copy: Copiar
|
67
|
+
select: Selecciona qué datos quieres duplicar
|
68
|
+
title: Duplicar encuentro
|
69
|
+
components:
|
70
|
+
meetings:
|
71
|
+
actions:
|
72
|
+
join: Unirse
|
73
|
+
name: Encuentros
|
74
|
+
settings:
|
75
|
+
global:
|
76
|
+
announcement: Anuncio
|
77
|
+
comments_enabled: Comentarios habilitados
|
78
|
+
default_registration_terms: Términos de registro predeterminados
|
79
|
+
step:
|
80
|
+
announcement: Anuncio
|
81
|
+
comments_blocked: Comentarios bloqueados
|
82
|
+
events:
|
83
|
+
meetings:
|
84
|
+
meeting_closed:
|
85
|
+
email_intro: 'Se ha cerrado la reunión "%{resource_title}". Puedes leer las conclusiones en su página:'
|
86
|
+
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
87
|
+
email_subject: Se ha cerrado el encuentro "%{resource_title}"
|
88
|
+
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha sido cerrada.
|
89
|
+
meeting_created:
|
90
|
+
email_intro: Se ha añadido el encuentro "%{resource_title}" al espacio "%{participatory_space_title}" que estás siguiendo.
|
91
|
+
email_outro: Has recibido esta notificación porque sigues "%{participatory_space_title}". Puedes dejar de seguirlo en el enlace anterior.
|
92
|
+
email_subject: Nuevo encuentro añadido a %{participatory_space_title}
|
93
|
+
notification_title: Se ha añadido el encuentro <a href="%{resource_path}">%{resource_title}</a> a %{participatory_space_title}
|
94
|
+
meeting_registrations_over_percentage:
|
95
|
+
email_intro: Las inscripciones ocupadas en "%{resource_title}" son %{percentage}%.
|
96
|
+
email_outro: Has recibido esta notificación porque eres es un administrador del espacio participativo de la reunión.
|
97
|
+
email_subject: Las inscripciones en "%{resource_title}" están por encima del %{percentage}%
|
98
|
+
notification_title: Las inscripciones de <a href="%{resource_path}">%{resource_title}</a> están por encima del %{percentage}%.
|
99
|
+
meeting_updated:
|
100
|
+
email_intro: 'Se ha cerrado el encuentro "%{resource_title}". Puedes leer las conclusiones en su página:'
|
101
|
+
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
102
|
+
email_subject: Se ha actualizado el encuentro "%{resource_title}"
|
103
|
+
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha sido actualizado.
|
104
|
+
registrations_enabled:
|
105
|
+
email_intro: 'El encuentro "%{resource_title}" ha ha abierto las inscripciones. Puedes inscribirte en su página:'
|
106
|
+
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
107
|
+
email_subject: El encuentro "%{resource_title}" ha abierto las inscripciones.
|
108
|
+
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha abierto las inscripciones.
|
109
|
+
upcoming_meeting:
|
110
|
+
email_intro: El encuentro "%{resource_title}" comenzará en menos de 48 h.
|
111
|
+
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
112
|
+
email_subject: El encuentro "%{resource_title}" comenzará en menos de 48 h.
|
113
|
+
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> comenzará en menos de 48 h.
|
114
|
+
meetings:
|
115
|
+
actions:
|
116
|
+
agenda: Orden del día
|
117
|
+
attachment_collections: Colecciones
|
118
|
+
attachments: Archivos adjuntos
|
119
|
+
close: Cerrar
|
120
|
+
confirm_destroy: '¿Está seguro de que quiere eliminar este encuentro?'
|
121
|
+
destroy: Borrar
|
122
|
+
edit: Editar
|
123
|
+
minutes: Acta
|
124
|
+
new: Nuevo
|
125
|
+
preview: Previsualizar
|
126
|
+
registrations: Inscripciones
|
127
|
+
title: Acciones
|
128
|
+
admin:
|
129
|
+
agenda:
|
130
|
+
agenda_item:
|
131
|
+
add_agenda_item_child: Añadir un sub-ítem en el orden del día
|
132
|
+
agenda_item: Punto del orden del día
|
133
|
+
agenda_item_children: Sub-ítems del orden del día
|
134
|
+
down: Bajar
|
135
|
+
remove: Eliminar
|
136
|
+
up: Subir
|
137
|
+
agenda_item_child:
|
138
|
+
agenda_item_child: Sub-ítem del orden del día
|
139
|
+
down: Bajar
|
140
|
+
remove: Eliminar
|
141
|
+
up: Subir
|
142
|
+
create:
|
143
|
+
invalid: Ha habido un problema al crear este orden del día
|
144
|
+
success: Orden del día creado correctamente
|
145
|
+
edit:
|
146
|
+
title: Editar orden del día
|
147
|
+
update: Actualizar
|
148
|
+
form:
|
149
|
+
add_agenda_item: Añadir punto del orden del día
|
150
|
+
agenda_items: Puntos del orden del día
|
151
|
+
end_date: Fecha final
|
152
|
+
start_date: Fecha de inicio
|
153
|
+
new:
|
154
|
+
create: Crear
|
155
|
+
title: Nuevo orden del día
|
156
|
+
update:
|
157
|
+
invalid: Ha habido un problema al actualizar el orden del día
|
158
|
+
success: Orden del día actualizado correctamente
|
159
|
+
exports:
|
160
|
+
registrations: Inscripciones
|
161
|
+
invite_join_meeting_mailer:
|
162
|
+
invite:
|
163
|
+
invited_you_to_join_a_meeting: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarlo a través del siguiente enlace."
|
164
|
+
join: Únete al encuentro '%{meeting_title}'
|
165
|
+
invites:
|
166
|
+
create:
|
167
|
+
error: Ha habido un problema al invitar al usuario a unirse al encuentro.
|
168
|
+
success: El usuario ha sido invitado con éxito a unirse al encuentro.
|
169
|
+
new:
|
170
|
+
explanation: El usuario será invitado a unirse a un encuentro. Si el correo electrónico no está registrado, será invitado a la organización también.
|
171
|
+
invite: Invitar
|
172
|
+
new_invite: Invitar usuario
|
173
|
+
meeting_closes:
|
174
|
+
edit:
|
175
|
+
close: Cerrar
|
176
|
+
title: Cerrar encuentro
|
177
|
+
meeting_copies:
|
178
|
+
form:
|
179
|
+
select_organizer: Selecciona el organizador
|
180
|
+
meetings:
|
181
|
+
close:
|
182
|
+
invalid: Ha habido un problema al cerrar este encuentro
|
183
|
+
success: Encuentro cerrado con éxito
|
184
|
+
create:
|
185
|
+
invalid: Ha habido un problema al crear este encuentro
|
186
|
+
success: Encuentro creado con éxito
|
187
|
+
destroy:
|
188
|
+
success: El encuentro se ha eliminado correctamente
|
189
|
+
edit:
|
190
|
+
update: Actualizar
|
191
|
+
form:
|
192
|
+
select_organizer: Selecciona el organizador
|
193
|
+
index:
|
194
|
+
title: Encuentros
|
195
|
+
new:
|
196
|
+
create: Crear
|
197
|
+
title: Crear encuentro
|
198
|
+
service:
|
199
|
+
description: Descripción
|
200
|
+
down: Abajo
|
201
|
+
remove: Eliminar
|
202
|
+
service: Servicio
|
203
|
+
title: Título
|
204
|
+
up: Arriba
|
205
|
+
services:
|
206
|
+
add_service: Añadir servicio
|
207
|
+
services: Servicios
|
208
|
+
update:
|
209
|
+
invalid: Ha habido un problema al actualizar este encuentro
|
210
|
+
success: Encuentro actualizado correctamente
|
211
|
+
minutes:
|
212
|
+
create:
|
213
|
+
invalid: Ha habido un problema al crear el acta
|
214
|
+
success: Acta creada con éxito
|
215
|
+
edit:
|
216
|
+
update: Actualizar
|
217
|
+
new:
|
218
|
+
create: Crear
|
219
|
+
title: Crear acta
|
220
|
+
update:
|
221
|
+
invalid: Ha habido un problema al actualizar el acta
|
222
|
+
success: Acta actualizada con éxito
|
223
|
+
models:
|
224
|
+
meeting:
|
225
|
+
name: Encuentro
|
226
|
+
registrations:
|
227
|
+
edit:
|
228
|
+
save: Guardar
|
229
|
+
form:
|
230
|
+
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
231
|
+
invite_user: Invitar usuario
|
232
|
+
registrations_count:
|
233
|
+
one: Ha habido 1 inscripción.
|
234
|
+
other: Ha habido %{count} inscripciones.
|
235
|
+
reserved_slots_help: Déjalo en 0 si no tienes espacios reservados
|
236
|
+
reserved_slots_less_than: Debe ser menor que o igual a %{count}
|
237
|
+
update:
|
238
|
+
invalid: Se ha producido un problema al guardar la configuración de la inscripción.
|
239
|
+
success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
|
240
|
+
admin_log:
|
241
|
+
meeting:
|
242
|
+
close: "%{user_name} cerró el encuentro %{resource_name} en el espacio %{space_name}"
|
243
|
+
create: "%{user_name} creó el encuentro %{resource_name} en el espacio %{space_name}"
|
244
|
+
delete: "%{user_name} eliminó el encuentro %{resource_name} en el espacio %{space_name}"
|
245
|
+
export_registrations: "%{user_name} exportó los registros del encuentro %{resource_name} en el espacio %{space_name}"
|
246
|
+
update: "%{user_name} actualizó el encuentro %{resource_name} en el espacio %{space_name}"
|
247
|
+
value_types:
|
248
|
+
organizer_presenter:
|
249
|
+
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
250
|
+
minutes:
|
251
|
+
create: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
252
|
+
update: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
253
|
+
mailer:
|
254
|
+
invite_join_meeting_mailer:
|
255
|
+
invite:
|
256
|
+
subject: Invitación a unirse a una reunión
|
257
|
+
registration_mailer:
|
258
|
+
confirmation:
|
259
|
+
subject: La inscripción a tu encuentro ha sido confirmada
|
260
|
+
meeting:
|
261
|
+
not_allowed: No puedes ver esta reunión
|
262
|
+
meetings:
|
263
|
+
filters:
|
264
|
+
category: Categoría
|
265
|
+
category_prompt: Selecciona una categoría
|
266
|
+
date: Fecha
|
267
|
+
past: Pasadas
|
268
|
+
search: Buscar
|
269
|
+
upcoming: Próximas
|
270
|
+
filters_small_view:
|
271
|
+
close_modal: Cerrar ventana
|
272
|
+
filter: Filtrar
|
273
|
+
filter_by: Filtrar por
|
274
|
+
unfold: Desplegar
|
275
|
+
index:
|
276
|
+
view_meeting: Ver encuentro
|
277
|
+
meeting_minutes:
|
278
|
+
meeting_minutes: Acta del encuentro
|
279
|
+
related_information: Información relacionada
|
280
|
+
meetings:
|
281
|
+
no_meetings_warning: No hay encuentros que coincidan con el criterio de búsqueda o no hay ningún encuentro programado.
|
282
|
+
upcoming_meetings_warning: Actualmente no hay encuentros programados, pero puedes ver los encuentros anteriores.
|
283
|
+
registration_confirm:
|
284
|
+
cancel: Cancelar
|
285
|
+
confirm: Confirmar
|
286
|
+
show:
|
287
|
+
attendees: Número de asistentes
|
288
|
+
contributions: Número de contribuciones
|
289
|
+
going: Yendo
|
290
|
+
join: Inscribirse al encuentro
|
291
|
+
meeting_report: Informe del encuentro
|
292
|
+
no_slots_available: No hay espacio disponible
|
293
|
+
organizations: Organizaciones que han asistido
|
294
|
+
remaining_slots:
|
295
|
+
one: 1 inscripción disponible
|
296
|
+
other: "%{count} inscripciones disponibles"
|
297
|
+
view: Ver
|
298
|
+
models:
|
299
|
+
meeting:
|
300
|
+
fields:
|
301
|
+
closed: Cerrado
|
302
|
+
end_time: Fecha de finalización
|
303
|
+
map: Mapa
|
304
|
+
start_time: Fecha de inicio
|
305
|
+
title: Título
|
306
|
+
read_more: "(leer más)"
|
307
|
+
registration_mailer:
|
308
|
+
confirmation:
|
309
|
+
confirmed_html: Se ha confirmado su inscripción para el encuentro <a href="%{url}">%{title}</a>.
|
310
|
+
details: Encontrarás detalles del encuentro en el archivo adjunto.
|
311
|
+
registrations:
|
312
|
+
create:
|
313
|
+
invalid: Ha habido un problema al unirse a este encuentro.
|
314
|
+
success: Te has inscrito al encuentro con éxito.
|
315
|
+
destroy:
|
316
|
+
invalid: Ha habido un problema al salir de esta encuentro.
|
317
|
+
success: Has salido del encuentro con éxito.
|
318
|
+
types:
|
319
|
+
private_meeting: Encuentro privado
|
320
|
+
transparent: Transparente
|
321
|
+
participatory_processes:
|
322
|
+
participatory_process_groups:
|
323
|
+
highlighted_meetings:
|
324
|
+
past_meetings: Encuentros pasados
|
325
|
+
upcoming_meetings: Próximos encuentros
|
326
|
+
participatory_spaces:
|
327
|
+
highlighted_meetings:
|
328
|
+
past_meetings: Encuentros pasados
|
329
|
+
see_all_meetings: Ver todos los encuentros
|
330
|
+
upcoming_meetings: Próximos encuentros
|
331
|
+
upcoming_meeting_for_card:
|
332
|
+
upcoming_meeting: Próxima reunion
|
333
|
+
resource_links:
|
334
|
+
meetings_through_proposals:
|
335
|
+
meeting_result: 'Resultados relacionados:'
|
336
|
+
result_meeting: 'Encuentros relacionados:'
|
337
|
+
proposals_from_meeting:
|
338
|
+
meeting_proposal: 'Propuestas relacionadas:'
|
339
|
+
proposal_meeting: 'Encuentros relacionados:'
|
340
|
+
devise:
|
341
|
+
mailer:
|
342
|
+
join_meeting:
|
343
|
+
subject: Invitación a unirse a una reunión
|
data/config/locales/fr.yml
CHANGED
@@ -2,7 +2,7 @@ fr:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
agenda:
|
5
|
-
description:
|
5
|
+
description: Description
|
6
6
|
duration: Durée
|
7
7
|
title: Titre
|
8
8
|
close_meeting:
|
@@ -10,7 +10,7 @@ fr:
|
|
10
10
|
attending_organizations: Liste des organisations qui ont participé à cette rencontre
|
11
11
|
closing_report: Compte rendu
|
12
12
|
contributions_count: Nombre de contributions
|
13
|
-
proposal_ids: Propositions
|
13
|
+
proposal_ids: Propositions élaborées lors de la rencontre
|
14
14
|
meeting:
|
15
15
|
address: Adresse
|
16
16
|
available_slots: Places disponibles pour cette rencontre
|
@@ -37,7 +37,7 @@ fr:
|
|
37
37
|
attributes:
|
38
38
|
base:
|
39
39
|
too_many_minutes: La durée des éléments dépasse la durée de la réunion de %{count} minute
|
40
|
-
too_many_minutes_child: La durée
|
40
|
+
too_many_minutes_child: La durée du sous-événement dépasse la durée de l'événement concerné "%{parent_title}" de %{count} minute
|
41
41
|
models:
|
42
42
|
decidim/meetings/close_meeting_event: Rencontre terminée
|
43
43
|
decidim/meetings/create_meeting_event: Rencontre
|
@@ -93,19 +93,19 @@ fr:
|
|
93
93
|
notification_title: La rencontre <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title}
|
94
94
|
meeting_registrations_over_percentage:
|
95
95
|
email_intro: Le nombre de places occupées par la rencontre "%{resource_title}" est supérieur à %{percentage}%.
|
96
|
-
email_outro: Vous avez reçu cette notification parce que vous êtes administrateur de
|
97
|
-
email_subject: Les places
|
96
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes administrateur de la concertation à laquelle est associée la rencontre.
|
97
|
+
email_subject: Les places réservées pour la rencontre "%{resource_title}" dépassent %{percentage}%
|
98
98
|
notification_title: Les <a href="%{resource_path}">%{resource_title}</a> salles de rencontre sont occupées à plus de %{percentage}%.
|
99
99
|
meeting_updated:
|
100
|
-
email_intro: 'La rencontre "%{resource_title}" a été mise à jour. Vous pouvez accéder à la nouvelle version depuis sa page:'
|
100
|
+
email_intro: 'La rencontre "%{resource_title}" a été mise à jour. Vous pouvez accéder à la nouvelle version depuis sa page :'
|
101
101
|
email_outro: Vous avez reçu cette notification, car vous suivez la rencontre "%{resource_title}". Vous pouvez arrêter de la suivre à partir du lien précédent.
|
102
102
|
email_subject: La rencontre "%{resource_title}" a été mise à jour
|
103
103
|
notification_title: La rencontre <a href="%{resource_path}">%{resource_title}</a> a été mise à jour.
|
104
104
|
registrations_enabled:
|
105
|
-
email_intro: '
|
105
|
+
email_intro: 'Les inscriptions pour la rencontre "%{resource_title}" sont ouvertes. Vous pouvez vous inscrire sur sa page :'
|
106
106
|
email_outro: Vous avez reçu cette notification, car vous suivez la rencontre "%{resource_title}". Vous pouvez arrêter de la suivre à partir du lien précédent.
|
107
|
-
email_subject:
|
108
|
-
notification_title:
|
107
|
+
email_subject: Les inscriptions pour la rencontre "%{resource_title}" sont ouvertes.
|
108
|
+
notification_title: Les inscriptions pour la rencontre <a href="%{resource_path}">%{resource_title}</a> sont ouvertes.
|
109
109
|
upcoming_meeting:
|
110
110
|
email_intro: La rencontre "%{resource_title}" commencera dans moins de 48h.
|
111
111
|
email_outro: Vous avez reçu cette notification, car vous suivez la rencontre "%{resource_title}". Vous pouvez arrêter de la suivre à partir du lien précédent.
|
@@ -114,7 +114,7 @@ fr:
|
|
114
114
|
meetings:
|
115
115
|
actions:
|
116
116
|
agenda: Ordre du jour
|
117
|
-
attachment_collections:
|
117
|
+
attachment_collections: Dossiers
|
118
118
|
attachments: Documents liés
|
119
119
|
close: Clore
|
120
120
|
confirm_destroy: Êtes-vous certain de vouloir supprimer cette rencontre ?
|
@@ -128,34 +128,34 @@ fr:
|
|
128
128
|
admin:
|
129
129
|
agenda:
|
130
130
|
agenda_item:
|
131
|
-
add_agenda_item_child: Ajouter un
|
132
|
-
agenda_item:
|
133
|
-
agenda_item_children:
|
134
|
-
down:
|
131
|
+
add_agenda_item_child: Ajouter un point d'ordre du jour
|
132
|
+
agenda_item: Point d'ordre du jour
|
133
|
+
agenda_item_children: Points de l'ordre du jour
|
134
|
+
down: Descendre
|
135
135
|
remove: Retirer
|
136
|
-
up:
|
136
|
+
up: Vers le haut
|
137
137
|
agenda_item_child:
|
138
138
|
agenda_item_child: Point de l'ordre du jour
|
139
139
|
down: Vers le bas
|
140
140
|
remove: Retirer
|
141
|
-
up:
|
141
|
+
up: Vers le haut
|
142
142
|
create:
|
143
|
-
invalid: Un problème est survenu lors de la création de cet
|
144
|
-
success:
|
143
|
+
invalid: Un problème est survenu lors de la création de cet ordre du jour
|
144
|
+
success: Ordre du jour créé avec succès
|
145
145
|
edit:
|
146
|
-
title: Modifier l'
|
146
|
+
title: Modifier l'ordre du jour
|
147
147
|
update: Mettre à jour
|
148
148
|
form:
|
149
|
-
add_agenda_item: Ajouter un
|
150
|
-
agenda_items:
|
149
|
+
add_agenda_item: Ajouter un point d'ordre du jour
|
150
|
+
agenda_items: Points de l'ordre du jour
|
151
151
|
end_date: Date de fin
|
152
152
|
start_date: Date de début
|
153
153
|
new:
|
154
154
|
create: Créer
|
155
|
-
title: Nouvel
|
155
|
+
title: Nouvel ordre du jour
|
156
156
|
update:
|
157
|
-
invalid: Un problème est survenu lors de la mise à jour de
|
158
|
-
success:
|
157
|
+
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour
|
158
|
+
success: Ordre du jour mis à jour avec succès
|
159
159
|
exports:
|
160
160
|
registrations: Inscriptions
|
161
161
|
invite_join_meeting_mailer:
|
@@ -216,10 +216,10 @@ fr:
|
|
216
216
|
update: Mettre à jour
|
217
217
|
new:
|
218
218
|
create: Créer
|
219
|
-
title: Créer
|
219
|
+
title: Créer un compte-rendu
|
220
220
|
update:
|
221
|
-
invalid: Un problème est survenu lors de la mise à jour de ce compte
|
222
|
-
success:
|
221
|
+
invalid: Un problème est survenu lors de la mise à jour de ce compte-rendu
|
222
|
+
success: Compte-rendu mis à jour avec succès
|
223
223
|
models:
|
224
224
|
meeting:
|
225
225
|
name: Rencontre
|
@@ -232,7 +232,7 @@ fr:
|
|
232
232
|
registrations_count:
|
233
233
|
one: Il y a eu 1 inscription.
|
234
234
|
other: Il y a eu %{count} inscriptions.
|
235
|
-
reserved_slots_help: Laissez
|
235
|
+
reserved_slots_help: Laissez à 0 si vous n'avez pas de places réservées
|
236
236
|
reserved_slots_less_than: Doit être inférieur ou égal à %{count}
|
237
237
|
update:
|
238
238
|
invalid: Il y a eu un problème lors de l'enregistrement des paramètres d'inscription.
|
@@ -248,8 +248,8 @@ fr:
|
|
248
248
|
organizer_presenter:
|
249
249
|
not_found: 'L''organisateur n''a pas été trouvé dans la base de données (ID: %{id})'
|
250
250
|
minutes:
|
251
|
-
create: "%{user_name} a créé le
|
252
|
-
update: "%{user_name} a mis à jour le
|
251
|
+
create: "%{user_name} a créé le compte-rendu de la rencontre %{resource_name} sur l'espace %{space_name}"
|
252
|
+
update: "%{user_name} a mis à jour le compte-rendu de la rencontre %{resource_name} sur l'espace %{space_name}"
|
253
253
|
mailer:
|
254
254
|
invite_join_meeting_mailer:
|
255
255
|
invite:
|
@@ -271,11 +271,11 @@ fr:
|
|
271
271
|
close_modal: Fermer la fenêtre de dialogue
|
272
272
|
filter: Filtrer
|
273
273
|
filter_by: Filtrer par
|
274
|
-
unfold:
|
274
|
+
unfold: Dérouler
|
275
275
|
index:
|
276
276
|
view_meeting: Voir la rencontre
|
277
277
|
meeting_minutes:
|
278
|
-
meeting_minutes: Comptes
|
278
|
+
meeting_minutes: Comptes-rendus des rencontres
|
279
279
|
related_information: Informations connexes
|
280
280
|
meetings:
|
281
281
|
no_meetings_warning: Aucune rencontre ne correspond à vos critères de recherche ou aucune rencontre n'est prévue.
|
@@ -294,7 +294,7 @@ fr:
|
|
294
294
|
remaining_slots:
|
295
295
|
one: Il reste 1 place
|
296
296
|
other: "Il reste %{count} places"
|
297
|
-
view:
|
297
|
+
view: Voir
|
298
298
|
models:
|
299
299
|
meeting:
|
300
300
|
fields:
|
@@ -303,7 +303,7 @@ fr:
|
|
303
303
|
map: Carte
|
304
304
|
start_time: Date de début
|
305
305
|
title: Titre
|
306
|
-
read_more: "(
|
306
|
+
read_more: "(Voir la suite)"
|
307
307
|
registration_mailer:
|
308
308
|
confirmation:
|
309
309
|
confirmed_html: Votre inscription pour la rencontre <a href="%{url}">%{title}</a> a été confirmée.
|
@@ -317,7 +317,7 @@ fr:
|
|
317
317
|
success: Vous avez annulé votre inscription avec succès.
|
318
318
|
types:
|
319
319
|
private_meeting: Rencontre privée
|
320
|
-
transparent:
|
320
|
+
transparent: Visible par les non-membres
|
321
321
|
participatory_processes:
|
322
322
|
participatory_process_groups:
|
323
323
|
highlighted_meetings:
|
data/config/locales/ru.yml
CHANGED
@@ -17,7 +17,7 @@ ru:
|
|
17
17
|
decidim_category_id: Разряд
|
18
18
|
decidim_scope_id: Охват
|
19
19
|
description: Описание
|
20
|
-
end_time: Время
|
20
|
+
end_time: Время окончания
|
21
21
|
location: Место
|
22
22
|
location_hints: Как добраться
|
23
23
|
private_meeting: Частная встреча
|
@@ -66,7 +66,7 @@ ru:
|
|
66
66
|
admin:
|
67
67
|
meeting_copies:
|
68
68
|
create:
|
69
|
-
error: При
|
69
|
+
error: При попытке создать копию этой встречи произошла ошибка.
|
70
70
|
success: Успешно создана копия встречи.
|
71
71
|
new:
|
72
72
|
copy: Копировать
|
@@ -84,14 +84,14 @@ ru:
|
|
84
84
|
default_registration_terms: Условия регистрации по умолчанию
|
85
85
|
step:
|
86
86
|
announcement: Объявление
|
87
|
-
comments_blocked: Комментарии
|
87
|
+
comments_blocked: Комментарии отключены
|
88
88
|
events:
|
89
89
|
meetings:
|
90
90
|
meeting_closed:
|
91
|
-
email_intro: 'Встреча «%{resource_title}»
|
91
|
+
email_intro: 'Встреча «%{resource_title}» закончена. Вы можете прочитать итоги на странице:'
|
92
92
|
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
93
|
-
email_subject: Встреча "%{resource_title}"
|
94
|
-
notification_title: Встреча <a href="%{resource_path}">%{resource_title}</a>
|
93
|
+
email_subject: Встреча "%{resource_title}" закончена
|
94
|
+
notification_title: Встреча <a href="%{resource_path}">%{resource_title}</a> закончена.
|
95
95
|
meeting_created:
|
96
96
|
email_intro: В "%{participatory_space_title}", за которым вы следите, добавлена встреча "%{resource_title}".
|
97
97
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{participatory_space_title}». Вы можете перестать за ним следить, перейдя по приведенной выше ссылке.
|
@@ -154,7 +154,7 @@ ru:
|
|
154
154
|
form:
|
155
155
|
add_agenda_item: Добавить вопрос повестки дня
|
156
156
|
agenda_items: Вопросы повестки дня
|
157
|
-
end_date: Дата
|
157
|
+
end_date: Дата окончания
|
158
158
|
start_date: Дата начала
|
159
159
|
new:
|
160
160
|
create: Создать
|
@@ -245,6 +245,19 @@ ru:
|
|
245
245
|
update:
|
246
246
|
invalid: При попытке сохранить настройки регистрации произошла ошибка.
|
247
247
|
success: Настройки регистрации на встречу успешно сохранены.
|
248
|
+
admin_log:
|
249
|
+
meeting:
|
250
|
+
close: "%{user_name} закрыл встречу %{resource_name} в пространстве %{space_name}"
|
251
|
+
create: "%{user_name} создал встречу %{resource_name} в пространстве %{space_name}"
|
252
|
+
delete: "%{user_name} удалил встречу %{resource_name} в пространстве %{space_name}"
|
253
|
+
export_registrations: "%{user_name} сохранил в виде файла список зарегистрировавшихся на встречу %{resource_name} в пространстве %{space_name}"
|
254
|
+
update: "%{user_name} обновил встречу %{resource_name} в пространстве %{space_name}"
|
255
|
+
value_types:
|
256
|
+
organizer_presenter:
|
257
|
+
not_found: 'Организатор не найден в базе данных (ID: %{id})'
|
258
|
+
minutes:
|
259
|
+
create: "%{user_name} создал протокол встречи %{resource_name} в пространстве %{space_name}"
|
260
|
+
update: "%{user_name} обновил протокол встречи %{resource_name} в пространстве %{space_name}"
|
248
261
|
mailer:
|
249
262
|
invite_join_meeting_mailer:
|
250
263
|
invite:
|
@@ -252,6 +265,8 @@ ru:
|
|
252
265
|
registration_mailer:
|
253
266
|
confirmation:
|
254
267
|
subject: Ваша регистрация на встречу подтверждена
|
268
|
+
meeting:
|
269
|
+
not_allowed: У вас нет прав на просмотр этой встречи
|
255
270
|
meetings:
|
256
271
|
filters:
|
257
272
|
category: Разряд
|
@@ -267,6 +282,9 @@ ru:
|
|
267
282
|
unfold: Развернуть
|
268
283
|
index:
|
269
284
|
view_meeting: Посмотреть встречу
|
285
|
+
meeting_minutes:
|
286
|
+
meeting_minutes: Протокол встречи
|
287
|
+
related_information: Сопутствующие сведения
|
270
288
|
meetings:
|
271
289
|
no_meetings_warning: Нет встреч, соответствующих вашим критериям поиска, или нет ни одной запланированной встречи.
|
272
290
|
upcoming_meetings_warning: Сейчас нет запланированных встреч, но здесь вы можете найти список всех прошедших встреч.
|
@@ -286,11 +304,12 @@ ru:
|
|
286
304
|
few: "Осталось %{count} места"
|
287
305
|
many: "Осталось %{count} мест"
|
288
306
|
other: "Осталось %{count} мест"
|
307
|
+
view: Посмотреть
|
289
308
|
models:
|
290
309
|
meeting:
|
291
310
|
fields:
|
292
311
|
closed: Завершена
|
293
|
-
end_time: Дата
|
312
|
+
end_time: Дата окончания
|
294
313
|
map: Карта
|
295
314
|
start_time: Дата начала
|
296
315
|
title: Название
|
@@ -308,6 +327,19 @@ ru:
|
|
308
327
|
success: Вы успешно отменили регистрацию на встречу.
|
309
328
|
types:
|
310
329
|
private_meeting: Частная встреча
|
330
|
+
transparent: Прозрачная
|
331
|
+
participatory_processes:
|
332
|
+
participatory_process_groups:
|
333
|
+
highlighted_meetings:
|
334
|
+
past_meetings: Прошедшие встречи
|
335
|
+
upcoming_meetings: Предстоящие встречи
|
336
|
+
participatory_spaces:
|
337
|
+
highlighted_meetings:
|
338
|
+
past_meetings: Прошедшие встречи
|
339
|
+
see_all_meetings: Просмотреть все встречи
|
340
|
+
upcoming_meetings: Предстоящие встречи
|
341
|
+
upcoming_meeting_for_card:
|
342
|
+
upcoming_meeting: Предстоящая встреча
|
311
343
|
resource_links:
|
312
344
|
meetings_through_proposals:
|
313
345
|
meeting_result: 'Подобные итоги:'
|
data/config/locales/uk.yml
CHANGED
@@ -66,7 +66,7 @@ uk:
|
|
66
66
|
admin:
|
67
67
|
meeting_copies:
|
68
68
|
create:
|
69
|
-
error: При
|
69
|
+
error: При спробі створити копію цієї зустрічі сталася помилка.
|
70
70
|
success: Успішно створено копію зустрічі.
|
71
71
|
new:
|
72
72
|
copy: Скопіювати
|
@@ -317,7 +317,7 @@ uk:
|
|
317
317
|
registration_mailer:
|
318
318
|
confirmation:
|
319
319
|
confirmed_html: Вашу реєстрацію на зустріч <a href="%{url}">%{title}</a> підтверджено.
|
320
|
-
details:
|
320
|
+
details: Детальні відомості про зустріч читайте у вкладенні.
|
321
321
|
registrations:
|
322
322
|
create:
|
323
323
|
invalid: При спробі долучитися до цієї зустрічі сталася помилка.
|
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.12.0
|
4
|
+
version: 0.12.0
|
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: 2018-06-
|
13
|
+
date: 2018-06-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: cells-erb
|
@@ -46,14 +46,14 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.12.0
|
49
|
+
version: 0.12.0
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.12.0
|
56
|
+
version: 0.12.0
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: httparty
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,56 +130,56 @@ dependencies:
|
|
130
130
|
requirements:
|
131
131
|
- - '='
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.12.0
|
133
|
+
version: 0.12.0
|
134
134
|
type: :development
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
138
|
- - '='
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version: 0.12.0
|
140
|
+
version: 0.12.0
|
141
141
|
- !ruby/object:Gem::Dependency
|
142
142
|
name: decidim-assemblies
|
143
143
|
requirement: !ruby/object:Gem::Requirement
|
144
144
|
requirements:
|
145
145
|
- - '='
|
146
146
|
- !ruby/object:Gem::Version
|
147
|
-
version: 0.12.0
|
147
|
+
version: 0.12.0
|
148
148
|
type: :development
|
149
149
|
prerelease: false
|
150
150
|
version_requirements: !ruby/object:Gem::Requirement
|
151
151
|
requirements:
|
152
152
|
- - '='
|
153
153
|
- !ruby/object:Gem::Version
|
154
|
-
version: 0.12.0
|
154
|
+
version: 0.12.0
|
155
155
|
- !ruby/object:Gem::Dependency
|
156
156
|
name: decidim-dev
|
157
157
|
requirement: !ruby/object:Gem::Requirement
|
158
158
|
requirements:
|
159
159
|
- - '='
|
160
160
|
- !ruby/object:Gem::Version
|
161
|
-
version: 0.12.0
|
161
|
+
version: 0.12.0
|
162
162
|
type: :development
|
163
163
|
prerelease: false
|
164
164
|
version_requirements: !ruby/object:Gem::Requirement
|
165
165
|
requirements:
|
166
166
|
- - '='
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: 0.12.0
|
168
|
+
version: 0.12.0
|
169
169
|
- !ruby/object:Gem::Dependency
|
170
170
|
name: decidim-participatory_processes
|
171
171
|
requirement: !ruby/object:Gem::Requirement
|
172
172
|
requirements:
|
173
173
|
- - '='
|
174
174
|
- !ruby/object:Gem::Version
|
175
|
-
version: 0.12.0
|
175
|
+
version: 0.12.0
|
176
176
|
type: :development
|
177
177
|
prerelease: false
|
178
178
|
version_requirements: !ruby/object:Gem::Requirement
|
179
179
|
requirements:
|
180
180
|
- - '='
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version: 0.12.0
|
182
|
+
version: 0.12.0
|
183
183
|
description: A meetings component for decidim's participatory spaces.
|
184
184
|
email:
|
185
185
|
- josepjaume@gmail.com
|
@@ -322,6 +322,7 @@ files:
|
|
322
322
|
- app/views/devise/mailer/join_meeting.text.erb
|
323
323
|
- config/locales/ca.yml
|
324
324
|
- config/locales/en.yml
|
325
|
+
- config/locales/es-PY.yml
|
325
326
|
- config/locales/es.yml
|
326
327
|
- config/locales/eu.yml
|
327
328
|
- config/locales/fi.yml
|
@@ -352,7 +353,6 @@ files:
|
|
352
353
|
- db/migrate/20180407110934_add_services_to_meetings.rb
|
353
354
|
- db/migrate/20180419131924_create_decidim_agendas.rb
|
354
355
|
- db/migrate/20180419132104_create_decidim_agenda_items.rb
|
355
|
-
- db/migrate/20180516102301_index_meetings_as_searchable_resources.rb
|
356
356
|
- lib/decidim/meetings.rb
|
357
357
|
- lib/decidim/meetings/admin.rb
|
358
358
|
- lib/decidim/meetings/admin_engine.rb
|
@@ -377,9 +377,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
377
377
|
version: '2.3'
|
378
378
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
379
379
|
requirements:
|
380
|
-
- - "
|
380
|
+
- - ">="
|
381
381
|
- !ruby/object:Gem::Version
|
382
|
-
version:
|
382
|
+
version: '0'
|
383
383
|
requirements: []
|
384
384
|
rubyforge_project:
|
385
385
|
rubygems_version: 2.7.6
|
@@ -1,24 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
class IndexMeetingsAsSearchableResources < ActiveRecord::Migration[5.1]
|
4
|
-
class Meeting < ApplicationRecord
|
5
|
-
self.table_name = :decidim_meetings_meetings
|
6
|
-
include Decidim::Searchable
|
7
|
-
|
8
|
-
searchable_fields(
|
9
|
-
scope_id: :decidim_scope_id,
|
10
|
-
participatory_space: { component: :participatory_space },
|
11
|
-
A: :title,
|
12
|
-
D: [:description, :address],
|
13
|
-
datetime: :start_time
|
14
|
-
)
|
15
|
-
end
|
16
|
-
|
17
|
-
def up
|
18
|
-
Meeting.find_each(&:add_to_index_as_search_resource)
|
19
|
-
end
|
20
|
-
|
21
|
-
def down
|
22
|
-
Decidim::SearchableResource.where(resource_type: "Decidim::Meetings::Meeting").destroy_all
|
23
|
-
end
|
24
|
-
end
|