decidim-meetings 0.13.1 → 0.14.1
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/assets/config/admin/decidim_meetings_manifest.js +1 -0
- data/app/assets/javascripts/decidim/meetings/admin/registrations_invite_form.es6 +25 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -0
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +57 -8
- data/app/commands/decidim/meetings/admin/validate_registration_code.rb +51 -0
- data/app/commands/decidim/meetings/decline_invitation.rb +45 -0
- data/app/commands/decidim/meetings/join_meeting.rb +8 -3
- data/app/controllers/decidim/meetings/admin/attachment_collections_controller.rb +0 -4
- data/app/controllers/decidim/meetings/admin/attachments_controller.rb +0 -4
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +14 -5
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +20 -0
- data/app/controllers/decidim/meetings/registrations_controller.rb +16 -0
- data/app/events/decidim/meetings/registration_code_validated_event.rb +15 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registration_invite_form.rb +9 -2
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +33 -0
- data/app/mailers/decidim/meetings/registration_mailer.rb +2 -1
- data/app/models/decidim/meetings/invite.rb +38 -0
- data/app/models/decidim/meetings/meeting.rb +6 -0
- data/app/models/decidim/meetings/registration.rb +18 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -2
- data/app/permissions/decidim/meetings/permissions.rb +8 -1
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +35 -0
- data/app/presenters/decidim/meetings/invite_presenter.rb +26 -0
- data/app/queries/decidim/meetings/admin/invites.rb +59 -0
- data/app/serializers/decidim/meetings/data_portability_invite_serializer.rb +35 -0
- data/app/serializers/decidim/meetings/data_portability_registration_serializer.rb +1 -0
- data/app/serializers/decidim/meetings/registration_serializer.rb +1 -0
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -0
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +34 -5
- data/app/views/decidim/meetings/admin/invites/index.html.erb +99 -0
- data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +2 -3
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +2 -0
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +24 -0
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +0 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +9 -0
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +2 -0
- data/app/views/decidim/participatory_spaces/_meeting.html.erb +1 -1
- data/app/views/devise/mailer/join_meeting.html.erb +1 -0
- data/app/views/devise/mailer/join_meeting.text.erb +4 -0
- data/config/locales/ca.yml +53 -5
- data/config/locales/en.yml +53 -5
- data/config/locales/es-PY.yml +52 -4
- data/config/locales/es.yml +53 -5
- data/config/locales/eu.yml +52 -4
- data/config/locales/fi.yml +164 -116
- data/config/locales/fr.yml +53 -5
- data/config/locales/gl.yml +52 -4
- data/config/locales/hu.yml +391 -0
- data/config/locales/it.yml +52 -4
- data/config/locales/nl.yml +52 -4
- data/config/locales/pl.yml +52 -4
- data/config/locales/pt-BR.yml +56 -8
- data/config/locales/pt.yml +52 -4
- data/config/locales/ru.yml +57 -9
- data/config/locales/sv.yml +135 -87
- data/config/locales/uk.yml +56 -8
- data/db/migrate/20180607142020_create_decidim_meetings_invites.rb +15 -0
- data/db/migrate/20180615160839_add_code_to_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20180711111023_add_validated_at_to_decidim_meetings_registrations.rb +7 -0
- data/lib/decidim/meetings.rb +1 -0
- data/lib/decidim/meetings/admin_engine.rb +3 -1
- data/lib/decidim/meetings/component.rb +2 -0
- data/lib/decidim/meetings/engine.rb +1 -0
- data/lib/decidim/meetings/registrations.rb +14 -0
- data/lib/decidim/meetings/registrations/code_generator.rb +39 -0
- data/lib/decidim/meetings/test/factories.rb +20 -4
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +30 -14
- data/app/views/decidim/meetings/admin/invites/new.html.erb +0 -21
data/config/locales/es.yml
CHANGED
@@ -38,6 +38,10 @@ es:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: La duración de los ítems supera la duración del encuentro en %{count} minutos
|
40
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
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Este correo electrónico ya ha sido invitado
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Encuentro cerrado
|
43
47
|
decidim/meetings/create_meeting_event: Encuentro
|
@@ -76,6 +80,7 @@ es:
|
|
76
80
|
announcement: Anuncio
|
77
81
|
comments_enabled: Comentarios habilitados
|
78
82
|
default_registration_terms: Términos de registro predeterminados
|
83
|
+
resources_permissions_enabled: Se pueden establecer permisos de acciones para cada encuentro
|
79
84
|
step:
|
80
85
|
announcement: Anuncio
|
81
86
|
comments_blocked: Comentarios bloqueados
|
@@ -101,6 +106,11 @@ es:
|
|
101
106
|
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
102
107
|
email_subject: Se ha actualizado el encuentro "%{resource_title}"
|
103
108
|
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha sido actualizado.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Su código de registro "%{registration_code}" ha sido validado.
|
111
|
+
email_outro: Recibió esta notificación porque su código de registro para el encuentro "%{resource_title}" ha sido validado.
|
112
|
+
email_subject: Su código de registro "%{registration_code}" ha sido validado
|
113
|
+
notification_title: Su código de registro "%{registration_code}" para el encuentro <a href="%{resource_path}">%{resource_title}</a> ha sido validado.
|
104
114
|
registrations_enabled:
|
105
115
|
email_intro: 'El encuentro "%{resource_title}" ha ha abierto las inscripciones. Puedes inscribirte en su página:'
|
106
116
|
email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
@@ -160,16 +170,31 @@ es:
|
|
160
170
|
registrations: Inscripciones
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
163
|
-
|
173
|
+
decline: Rechazar invitación
|
174
|
+
invited_you_to_join_a_meeting: "%{invited_by} te ha invitado a unirte a una reunión en %{application}. Puedes rechazar o aceptar la invitación a través de los enlaces a continuación."
|
164
175
|
join: Únete al encuentro '%{meeting_title}'
|
165
176
|
invites:
|
166
177
|
create:
|
167
178
|
error: Ha habido un problema al invitar al usuario a unirse al encuentro.
|
168
179
|
success: El usuario ha sido invitado con éxito a unirse al encuentro.
|
169
|
-
|
170
|
-
|
180
|
+
form:
|
181
|
+
attendee_type: Tipo de Asistente
|
182
|
+
existing_user: Usuario existente
|
171
183
|
invite: Invitar
|
172
|
-
|
184
|
+
invite_explanation: El usuario será invitado a unirse a la reunión y también a la organización.
|
185
|
+
non_user: Usuario no existente
|
186
|
+
select_user: Seleccionar usuario
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Aceptado
|
190
|
+
all: Todas
|
191
|
+
rejected: Rechazadas
|
192
|
+
sent: Expedidas
|
193
|
+
filter_by: Filtrar por
|
194
|
+
invite_attendee: Invitar a un asistente
|
195
|
+
invites: Invitaciones
|
196
|
+
registrations_disabled: No puede invitar a un asistente porque los registros están deshabilitados.
|
197
|
+
search: Buscar
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Cerrar
|
@@ -226,9 +251,11 @@ es:
|
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Guardar
|
254
|
+
validate: Validar
|
255
|
+
validate_registration_code: Validar el código de registro
|
229
256
|
form:
|
230
257
|
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
231
|
-
|
258
|
+
invites: Invitaciones
|
232
259
|
registrations_count:
|
233
260
|
one: Ha habido 1 inscripción.
|
234
261
|
other: Ha habido %{count} inscripciones.
|
@@ -237,7 +264,14 @@ es:
|
|
237
264
|
update:
|
238
265
|
invalid: Se ha producido un problema al guardar la configuración de la inscripción.
|
239
266
|
success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Este código de registro no es válido.
|
269
|
+
success: Código de registro validado con éxito.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} ha invitado a %{attendee_name} a unirse al encuentro %{resource_name} en el espacio %{space_name}"
|
273
|
+
deleted: "%{user_name} ha eliminado la invitación de %{attendee_name} de unirse al encuentro %{resource_name} en el espacio %{space_name}"
|
274
|
+
update: "%{user_name} ha invitado a %{attendee_name} a unirse al encuentro %{resource_name} en el espacio %{space_name}"
|
241
275
|
meeting:
|
242
276
|
close: "%{user_name} cerró el encuentro %{resource_name} en el espacio %{space_name}"
|
243
277
|
create: "%{user_name} creó el encuentro %{resource_name} en el espacio %{space_name}"
|
@@ -296,6 +330,16 @@ es:
|
|
296
330
|
other: "%{count} inscripciones disponibles"
|
297
331
|
view: Ver
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: Email
|
336
|
+
name: Nombre
|
337
|
+
sent_at: Enviado el
|
338
|
+
status: Estado
|
339
|
+
status:
|
340
|
+
accepted: Aceptada (%{at})
|
341
|
+
rejected: Rechazada (%{at})
|
342
|
+
sent: Expedida
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Cerrado
|
@@ -308,10 +352,14 @@ es:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Se ha confirmado su inscripción para el encuentro <a href="%{url}">%{title}</a>.
|
310
354
|
details: Encontrarás detalles del encuentro en el archivo adjunto.
|
355
|
+
registration_code: Tu código de registro es %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: Ha habido un problema al unirse a este encuentro.
|
314
359
|
success: Te has inscrito al encuentro con éxito.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Ha habido un problema al rechazar la invitación.
|
362
|
+
success: Has rechazado la invitación con éxito.
|
315
363
|
destroy:
|
316
364
|
invalid: Ha habido un problema al salir de esta encuentro.
|
317
365
|
success: Has salido del encuentro con éxito.
|
data/config/locales/eu.yml
CHANGED
@@ -38,6 +38,10 @@ eu:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: Elementuen iraupena %{count} minutuko iraupena gainditzen du
|
40
40
|
too_many_minutes_child: Elementuaren haurraren iraupena "%{parent_title}" gurasoaren iraupena gainditzen du %{count} minutuko agendako elementua
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Mezu hau dagoeneko gonbidatu da
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Bilera itxia
|
43
47
|
decidim/meetings/create_meeting_event: Bilera
|
@@ -76,6 +80,7 @@ eu:
|
|
76
80
|
announcement: Anuntzio
|
77
81
|
comments_enabled: Iruzkinak gaituta
|
78
82
|
default_registration_terms: Izen-emate baldintzak lehenetsiak
|
83
|
+
resources_permissions_enabled: Akzioen baimenak bilera bakoitzerako ezarri daitezke
|
79
84
|
step:
|
80
85
|
announcement: Anuntzio
|
81
86
|
comments_blocked: Iruzkinak blokeatuta
|
@@ -101,6 +106,11 @@ eu:
|
|
101
106
|
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
102
107
|
email_subject: '"%{resource_title}" bilera eguneratu da'
|
103
108
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilera eguneratu da.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Zure izena emateko kodea "%{registration_code}" balidatu da.
|
111
|
+
email_outro: Jakinarazpen hau jaso duzu zure "%{resource_title}" bilera-kodearen kodea erregistratu delako.
|
112
|
+
email_subject: Zure izena emateko kodea "%{registration_code}" balidatu da
|
113
|
+
notification_title: Zure erregistro-kodea "%{registration_code}" <a href="%{resource_path}">%{resource_title}</a> bilerako balioztatu da.
|
104
114
|
registrations_enabled:
|
105
115
|
email_intro: '"%{resource_title}" topaketak erregistroak gaitu ditu. Zeure burua erregistratu dezakezu bere orrialdean:'
|
106
116
|
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
@@ -160,16 +170,31 @@ eu:
|
|
160
170
|
registrations: Izen-emateak
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Deuseztatu gonbidapena
|
163
174
|
invited_you_to_join_a_meeting: "%{invited_by} gonbidatu zaitu %{application} bileran. Beheko estekan onartu dezakezu."
|
164
175
|
join: Erregistratu bilera '%{meeting_title}'
|
165
176
|
invites:
|
166
177
|
create:
|
167
178
|
error: Arazo bat izan da erabiltzaileak bileran sartzeko gonbita emanda.
|
168
179
|
success: Erabiltzailea behar bezala gonbidatu bilera batera.
|
169
|
-
|
170
|
-
|
180
|
+
form:
|
181
|
+
attendee_type: Parte-hartzaile mota
|
182
|
+
existing_user: Erabiltzaile existentea
|
171
183
|
invite: Gonbit egin
|
172
|
-
|
184
|
+
invite_explanation: Erabiltzailea bilera eta erakundean sartzeko gonbidatuko zaie.
|
185
|
+
non_user: Erabiltzailea ez dago
|
186
|
+
select_user: Aukeratu erabiltzailea
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Onartu
|
190
|
+
all: guztiak
|
191
|
+
rejected: Baztertuta
|
192
|
+
sent: bidalia
|
193
|
+
filter_by: Iragazi arabera
|
194
|
+
invite_attendee: Gonbidatu gonbidatua
|
195
|
+
invites: Gonbidapenak
|
196
|
+
registrations_disabled: Ezin duzu parte-hartzaile bat gonbidatu erregistrazioek desgaituta egon direlako.
|
197
|
+
search: Search
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Itxi
|
@@ -226,9 +251,11 @@ eu:
|
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Gorde
|
254
|
+
validate: Balidatu
|
255
|
+
validate_registration_code: Baliozkotzeko inskripzio kodea
|
229
256
|
form:
|
230
257
|
available_slots_help: Utzi 0an izen-emate mugagabeak edukiz gero.
|
231
|
-
|
258
|
+
invites: Gonbidapenak
|
232
259
|
registrations_count:
|
233
260
|
one: Izen-emate bat egin da.
|
234
261
|
other: '%{count} izen-emate egin dira.'
|
@@ -237,7 +264,14 @@ eu:
|
|
237
264
|
update:
|
238
265
|
invalid: Arazo bat izan da izen-ematearen konfigurazioa gordetzean.
|
239
266
|
success: Topaketen izen-emateen konfigurazioak zuzen gorde dira.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Izena emateko kode hau baliogabea da.
|
269
|
+
success: Izen-ematearen kodea behar bezala balioztatu da.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} gonbidatu %{attendee_name} batzeko %{resource_name} buruzko bilera %{space_name} espazio"
|
273
|
+
deleted: "%{user_name} gabeko %{attendee_name} batu batetik %{resource_name} bileraren on %{space_name} espazio"
|
274
|
+
update: "%{user_name} gonbidatu %{attendee_name} batzeko %{resource_name} buruzko bilera %{space_name} espazio"
|
241
275
|
meeting:
|
242
276
|
close: "%{user_name} %{resource_name} bilera %{space_name} espazioan itxi zen"
|
243
277
|
create: "%{user_name} %{resource_name} bilera sortu zen %{space_name} espazioan"
|
@@ -296,6 +330,16 @@ eu:
|
|
296
330
|
other: "%{count} izen-emate erabilgarri"
|
297
331
|
view: ikusi
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: Emaila
|
336
|
+
name: izena
|
337
|
+
sent_at: Bidalitakoan
|
338
|
+
status: Egoera
|
339
|
+
status:
|
340
|
+
accepted: Onartuta (%{at})
|
341
|
+
rejected: Baztertua (%{at})
|
342
|
+
sent: bidalia
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Itxita
|
@@ -308,10 +352,14 @@ eu:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Zure izen-ematea baieztatu da <a href="%{url}">%{title}</a> topaketarako.
|
310
354
|
details: Topaketaren xehetasunak aurkituko dituzu eranskinean.
|
355
|
+
registration_code: Zure izena emateko kodea %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: Arazo bat izan da topaketa honekin bat egitean.
|
314
359
|
success: Topaketan izena ongi eman duzu.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Arazo bat izan da gonbidapena gaindituz gero.
|
362
|
+
success: Gonbidapena ongi egin du.
|
315
363
|
destroy:
|
316
364
|
invalid: Arazo bat izan da topaketa honetatik ateratzean.
|
317
365
|
success: Topaketatik ongi atera zara.
|
data/config/locales/fi.yml
CHANGED
@@ -4,7 +4,7 @@ fi:
|
|
4
4
|
agenda:
|
5
5
|
description: Kuvaus
|
6
6
|
duration: Kesto
|
7
|
-
title:
|
7
|
+
title: Otsikko
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Osallistujien määrä
|
10
10
|
attending_organizations: Osallistuvien organisaatioiden lista
|
@@ -15,7 +15,7 @@ fi:
|
|
15
15
|
address: Osoite
|
16
16
|
available_slots: Tämän tapahtuman vapaiden paikkojen määrä
|
17
17
|
decidim_category_id: Aihepiiri
|
18
|
-
decidim_scope_id:
|
18
|
+
decidim_scope_id: Teema
|
19
19
|
description: Kuvaus
|
20
20
|
end_time: Lopetusaika
|
21
21
|
location: Paikka
|
@@ -25,102 +25,112 @@ fi:
|
|
25
25
|
registrations_enabled: Ilmoittautumiset ovat käytössä
|
26
26
|
start_time: Aloitusaika
|
27
27
|
title: Otsikko
|
28
|
-
transparent:
|
28
|
+
transparent: Läpinäkyvä
|
29
29
|
minutes:
|
30
|
-
audio_url:
|
30
|
+
audio_url: Äänen URL-osoite
|
31
31
|
description: Kuvaus
|
32
|
-
video_url:
|
33
|
-
visible:
|
32
|
+
video_url: Videon URL-osoite
|
33
|
+
visible: On näkyvissä
|
34
34
|
errors:
|
35
35
|
models:
|
36
36
|
meeting_agenda:
|
37
37
|
attributes:
|
38
38
|
base:
|
39
|
-
too_many_minutes: Kohteiden kesto ylittää kokouksen keston %{count}
|
40
|
-
too_many_minutes_child:
|
39
|
+
too_many_minutes: Kohteiden kesto ylittää kokouksen keston %{count} minuutilla
|
40
|
+
too_many_minutes_child: Alakohdan kesto ylittää esityslistan kohdan "%{parent_title}" keston %{count} minuutilla
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Tämä sähköposti on jo kutsuttu
|
41
45
|
models:
|
42
|
-
decidim/meetings/close_meeting_event: Kokous
|
43
|
-
decidim/meetings/create_meeting_event:
|
46
|
+
decidim/meetings/close_meeting_event: Kokous suljettu
|
47
|
+
decidim/meetings/create_meeting_event: Kokous
|
44
48
|
decidim/meetings/meeting_registrations_enabled_event: Rekisteröinnit ovat käytössä
|
45
|
-
decidim/meetings/meeting_registrations_over_percentage_event:
|
49
|
+
decidim/meetings/meeting_registrations_over_percentage_event: Ilmoittautumiset ylittävät rajan
|
46
50
|
decidim/meetings/upcoming_meeting_event: Tuleva kokous
|
47
|
-
decidim/meetings/update_meeting_event: Kokous
|
51
|
+
decidim/meetings/update_meeting_event: Kokous päivitetty
|
48
52
|
activerecord:
|
49
53
|
models:
|
50
54
|
decidim/meetings/meeting:
|
51
|
-
one:
|
52
|
-
other:
|
55
|
+
one: Kokous
|
56
|
+
other: Kokoukset
|
53
57
|
decidim/meetings/minutes:
|
54
|
-
one:
|
55
|
-
other:
|
58
|
+
one: Pöytäkirja
|
59
|
+
other: Pöytäkirjat
|
56
60
|
decidim/meetings/registration:
|
57
|
-
one:
|
58
|
-
other:
|
61
|
+
one: Rekisteröityminen
|
62
|
+
other: Rekisteröitymiset
|
59
63
|
decidim:
|
60
64
|
admin:
|
61
65
|
meeting_copies:
|
62
66
|
create:
|
63
|
-
error: Tämän kokouksen
|
64
|
-
success:
|
67
|
+
error: Tämän kokouksen monistamisessa tapahtui virhe.
|
68
|
+
success: Kokouksen monistaminen onnistui.
|
65
69
|
new:
|
66
70
|
copy: Kopio
|
67
|
-
select: Valitse, mitkä tiedot haluat
|
68
|
-
title:
|
71
|
+
select: Valitse, mitkä tiedot haluat monistaa
|
72
|
+
title: Monista kokous
|
69
73
|
components:
|
70
74
|
meetings:
|
71
75
|
actions:
|
72
76
|
join: Liittyä seuraan
|
73
|
-
name:
|
77
|
+
name: Tapahtumat
|
74
78
|
settings:
|
75
79
|
global:
|
76
80
|
announcement: Ilmoitus
|
77
81
|
comments_enabled: Kommentit ovat käytössä
|
78
|
-
default_registration_terms:
|
82
|
+
default_registration_terms: Rekisteröinnin oletussäännöt
|
83
|
+
resources_permissions_enabled: Toimintaoikeudet voidaan asettaa jokaiselle kokoukselle
|
79
84
|
step:
|
80
85
|
announcement: Ilmoitus
|
81
|
-
comments_blocked:
|
86
|
+
comments_blocked: Kommentointi on estetty
|
82
87
|
events:
|
83
88
|
meetings:
|
84
89
|
meeting_closed:
|
85
|
-
email_intro: '"%{resource_title}"
|
86
|
-
email_outro: Olet
|
87
|
-
email_subject:
|
88
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
90
|
+
email_intro: 'Kokous "%{resource_title}" suljettiin. Voit lukea johtopäätökset sen sivulta:'
|
91
|
+
email_outro: Olet vastaanottanut tämän ilmoituksen, koska seuraat kokousta "%{resource_title}". Voit lopettaa seuraamisen edellisen linkin kautta.
|
92
|
+
email_subject: Kokous "%{resource_title}" suljettiin
|
93
|
+
notification_title: Kokous <a href="%{resource_path}">%{resource_title}</a> suljettiin.
|
89
94
|
meeting_created:
|
90
|
-
email_intro: Kokous "%{resource_title}" on lisätty "%{participatory_space_title}", jota seuraat.
|
91
|
-
email_outro: Olet saanut tämän ilmoituksen, koska seuraat "%{participatory_space_title}". Voit
|
92
|
-
email_subject: Uusi kokous lisätty %{participatory_space_title}
|
93
|
-
notification_title: Kokous <a href="%{resource_path}">%{resource_title}</a> on lisätty %{participatory_space_title}
|
95
|
+
email_intro: Kokous "%{resource_title}" on lisätty kohteeseen "%{participatory_space_title}", jota seuraat.
|
96
|
+
email_outro: Olet saanut tämän ilmoituksen, koska seuraat kohdetta "%{participatory_space_title}". Voit lopettaa seuraamisen edellisen linkin kautta.
|
97
|
+
email_subject: Uusi kokous lisätty kohteeseen %{participatory_space_title}
|
98
|
+
notification_title: Kokous <a href="%{resource_path}">%{resource_title}</a> on lisätty kohtaan %{participatory_space_title}
|
94
99
|
meeting_registrations_over_percentage:
|
95
|
-
email_intro:
|
96
|
-
email_outro: Olet saanut tämän ilmoituksen, koska olet
|
97
|
-
email_subject:
|
98
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
100
|
+
email_intro: Kokouksen "%{resource_title}" varatut paikat ylittävät %{percentage}%.
|
101
|
+
email_outro: Olet saanut tämän ilmoituksen, koska olet kokouksen osallistumistilan ylläpitäjä.
|
102
|
+
email_subject: Kokouksen "%{resource_title}" varatut paikat ylittävät %{percentage}%
|
103
|
+
notification_title: Tapahtuman <a href="%{resource_path}">%{resource_title}</a> varatut paikat ovat yli %{percentage}%.
|
99
104
|
meeting_updated:
|
100
|
-
email_intro: '"%{resource_title}"
|
101
|
-
email_outro: Olet
|
102
|
-
email_subject:
|
103
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
105
|
+
email_intro: 'Tapahtuma "%{resource_title}" päivitettiin. Voit lukea uuden version sivulta:'
|
106
|
+
email_outro: Olet vastaanottanut tämän ilmoituksen, koska seuraat tapahtumaa "%{resource_title}". Voit lopettaa seuraamisen edellisen linkin kautta.
|
107
|
+
email_subject: Kokous "%{resource_title}" päivitettiin
|
108
|
+
notification_title: Tapahtuma <a href="%{resource_path}">%{resource_title}</a> päivitettiin.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Rekisteröintikoodisi "%{registration_code}" on vahvistettu.
|
111
|
+
email_outro: Olet saanut tämän ilmoituksen, koska rekisteröintikoodisi kokoukseen "%{resource_title}" on vahvistettu.
|
112
|
+
email_subject: Rekisteröintikoodisi "%{registration_code}" on vahvistettu
|
113
|
+
notification_title: Ilmoittautumiskoodisi "%{registration_code}" tapahtumaan <a href="%{resource_path}">%{resource_title}</a> on vahvistettu.
|
104
114
|
registrations_enabled:
|
105
|
-
email_intro: '"%{resource_title}"
|
106
|
-
email_outro: Olet
|
107
|
-
email_subject:
|
108
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
115
|
+
email_intro: 'Tapahtuma "%{resource_title}" on avannut ilmoittautumisen. Voit ilmoittautua tapahtuman sivuilla:'
|
116
|
+
email_outro: Olet vastaanottanut tämän ilmoituksen, koska seuraat tapahtumaa "%{resource_title}". Voit lopettaa seuraamisen edellisen linkin kautta.
|
117
|
+
email_subject: Tapahtuma "%{resource_title}" on mahdollistanut ilmoittautumiset.
|
118
|
+
notification_title: Kokous <a href="%{resource_path}">%{resource_title}</a> on avannut rekisteröinnin.
|
109
119
|
upcoming_meeting:
|
110
|
-
email_intro:
|
111
|
-
email_outro: Olet
|
112
|
-
email_subject:
|
113
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
120
|
+
email_intro: Tapahtuman "%{resource_title}" alkuun on alle 48 tuntia.
|
121
|
+
email_outro: Olet vastaanottanut tämän ilmoituksen, koska seuraat tapahtumaa "%{resource_title}". Voit lopettaa seuraamisen edellisen linkin kautta.
|
122
|
+
email_subject: Tapahtuman "%{resource_title}" alkuun on alle 48 tuntia.
|
123
|
+
notification_title: Tapahtuma <a href="%{resource_path}">%{resource_title}</a> alkaa alle 48 tuntin kuluttua.
|
114
124
|
meetings:
|
115
125
|
actions:
|
116
126
|
agenda: esityslista
|
117
127
|
attachment_collections: kansiot
|
118
128
|
attachments: Liitteet
|
119
129
|
close: Sulje
|
120
|
-
confirm_destroy: Haluatko varmasti poistaa tämän
|
130
|
+
confirm_destroy: Haluatko varmasti poistaa tämän tapahtuman?
|
121
131
|
destroy: Poista
|
122
132
|
edit: Muokkaa
|
123
|
-
minutes:
|
133
|
+
minutes: Pöytäkirja
|
124
134
|
new: Uusi kokous
|
125
135
|
preview: Esikatsele
|
126
136
|
registrations: Ilmoittautumiset
|
@@ -128,73 +138,88 @@ fi:
|
|
128
138
|
admin:
|
129
139
|
agenda:
|
130
140
|
agenda_item:
|
131
|
-
add_agenda_item_child: Lisää esityslistan
|
141
|
+
add_agenda_item_child: Lisää esityslistan alakohta
|
132
142
|
agenda_item: Esityslistan kohta
|
133
|
-
agenda_item_children:
|
143
|
+
agenda_item_children: Esityslistan alakohdat
|
134
144
|
down: Alas
|
135
145
|
remove: Poistaa
|
136
146
|
up: ylös
|
137
147
|
agenda_item_child:
|
138
|
-
agenda_item_child:
|
148
|
+
agenda_item_child: Esityslistan alakohta
|
139
149
|
down: Alas
|
140
150
|
remove: Poistaa
|
141
151
|
up: ylös
|
142
152
|
create:
|
143
|
-
invalid:
|
144
|
-
success: Esityslista
|
153
|
+
invalid: Tämän esityslistan luomisessa esiintyi ongelma
|
154
|
+
success: Esityslista luotiin onnistuneesti
|
145
155
|
edit:
|
146
156
|
title: Muokkaa esityslistaa
|
147
157
|
update: Päivittää
|
148
158
|
form:
|
149
159
|
add_agenda_item: Lisää esityslistan kohde
|
150
|
-
agenda_items: Esityslistan
|
160
|
+
agenda_items: Esityslistan kohteet
|
151
161
|
end_date: Päättymispäivä
|
152
162
|
start_date: Aloituspäivämäärä
|
153
163
|
new:
|
154
164
|
create: Luoda
|
155
165
|
title: Uusi esityslista
|
156
166
|
update:
|
157
|
-
invalid:
|
158
|
-
success: Esityslista
|
167
|
+
invalid: Tämän esityslistan päivityksessä esiintyi ongelma
|
168
|
+
success: Esityslista päivitettiin onnistuneesti
|
159
169
|
exports:
|
160
170
|
registrations: Ilmoittautumiset
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
163
|
-
|
164
|
-
|
173
|
+
decline: Hylkää kutsu
|
174
|
+
invited_you_to_join_a_meeting: "%{invited_by} on kutsunut sinut osallistumaan tapahtumaan kohdassa %{application}. Voit hyväksyä tai hylätä kutsun alla olevien linkkien kautta."
|
175
|
+
join: Liity tapahtumaan "%{meeting_title}"
|
165
176
|
invites:
|
166
177
|
create:
|
167
|
-
error: Käyttäjän kutsumisessa tapahtumaan
|
168
|
-
success: Käyttäjä
|
169
|
-
|
170
|
-
|
178
|
+
error: Käyttäjän kutsumisessa tapahtumaan esiintyi ongelma.
|
179
|
+
success: Käyttäjä kutsuttiin onnistuneesti tapahtumaan.
|
180
|
+
form:
|
181
|
+
attendee_type: Osallistujatyyppi
|
182
|
+
existing_user: Olemassa oleva käyttäjä
|
171
183
|
invite: Kutsu
|
172
|
-
|
184
|
+
invite_explanation: Käyttäjä tullaan kutsumaan mukaan tapahtumaan. Käyttäjä kutsutaan myös järjestöön.
|
185
|
+
non_user: Käyttäjää ei ole olemassa
|
186
|
+
select_user: Valitse käyttäjä
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Hyväksytyt
|
190
|
+
all: Kaikki
|
191
|
+
rejected: hylätty
|
192
|
+
sent: Lähetetyt
|
193
|
+
filter_by: Rajaa hakua
|
194
|
+
invite_attendee: Kutsu osallistuja
|
195
|
+
invites: Kutsut
|
196
|
+
registrations_disabled: Et voi kutsua osallistujaa, koska ilmoittautumiset on poistettu käytöstä.
|
197
|
+
search: Hae
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
|
-
close:
|
176
|
-
title:
|
200
|
+
close: Sulje
|
201
|
+
title: Sulje tapahtuma
|
177
202
|
meeting_copies:
|
178
203
|
form:
|
179
204
|
select_organizer: Valitse järjestäjä
|
180
205
|
meetings:
|
181
206
|
close:
|
182
|
-
invalid:
|
183
|
-
success:
|
207
|
+
invalid: Tapahtuman sulkemisessa tapahtui virhe
|
208
|
+
success: Tapahtuma onnistuneesti suljettu
|
184
209
|
create:
|
185
|
-
invalid:
|
186
|
-
success:
|
210
|
+
invalid: Tapahtuman luonnissa esiintyi ongelma
|
211
|
+
success: Tapahtuma onnistuneesti luotu
|
187
212
|
destroy:
|
188
|
-
success:
|
213
|
+
success: Tapahtuma onnistuneesti luotu
|
189
214
|
edit:
|
190
215
|
update: Päivitä
|
191
216
|
form:
|
192
217
|
select_organizer: Valitse järjestäjä
|
193
218
|
index:
|
194
|
-
title:
|
219
|
+
title: Tapahtumat
|
195
220
|
new:
|
196
221
|
create: Luo
|
197
|
-
title: Luo
|
222
|
+
title: Luo tapahtuma
|
198
223
|
service:
|
199
224
|
description: Kuvaus
|
200
225
|
down: Alas
|
@@ -206,80 +231,89 @@ fi:
|
|
206
231
|
add_service: Lisää palvelua
|
207
232
|
services: Palvelut
|
208
233
|
update:
|
209
|
-
invalid:
|
210
|
-
success: Tapaaminen
|
234
|
+
invalid: Tämän tapahtuman päivittämisessa esiintyi ongelma
|
235
|
+
success: Tapaaminen luotiin onnistuneesti
|
211
236
|
minutes:
|
212
237
|
create:
|
213
|
-
invalid:
|
214
|
-
success:
|
238
|
+
invalid: Tämän pöytäkirjan luonnissa esiintyi ongelma
|
239
|
+
success: Pöytäkirja luotiin onnistuneesti
|
215
240
|
edit:
|
216
241
|
update: Päivittää
|
217
242
|
new:
|
218
243
|
create: Luoda
|
219
|
-
title: Luo
|
244
|
+
title: Luo pöytäkirja
|
220
245
|
update:
|
221
|
-
invalid:
|
222
|
-
success:
|
246
|
+
invalid: Tämän pöytäkirjan päivityksessä esiintyi ongelma
|
247
|
+
success: Pöytäkirja päivitettiin onnistuneesti
|
223
248
|
models:
|
224
249
|
meeting:
|
225
250
|
name: Tapaaminen
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Tallenna
|
254
|
+
validate: vahvistaa
|
255
|
+
validate_registration_code: Vahvista ilmoittautumiskoodi
|
229
256
|
form:
|
230
|
-
available_slots_help:
|
231
|
-
|
257
|
+
available_slots_help: Jätä arvoksi 0, mikäli tapahtumaan on rajoittamaton määrä paikkoja.
|
258
|
+
invites: Kutsut
|
232
259
|
registrations_count:
|
233
260
|
one: 1 ilmoittautuminen.
|
234
261
|
other: '%{count} ilmoittautumista.'
|
235
|
-
reserved_slots_help: Jätä
|
236
|
-
reserved_slots_less_than:
|
262
|
+
reserved_slots_help: Jätä arvoksi 0, jos sinulla ei ole varattuja paikkoja
|
263
|
+
reserved_slots_less_than: Täytyy olla vähemmän tai yhtä paljon kuin %{count}
|
237
264
|
update:
|
238
265
|
invalid: Ilmoittautumisasetusten tallentamisessa on ollut ongelma.
|
239
266
|
success: Tapahtumailmoittautumisasetukset tallennettiin onnistuneesti.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Tämä ilmoittautumiskoodi on virheellinen.
|
269
|
+
success: Ilmoittautumiskoodi on vahvistettu onnistuneesti.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} kutsui %{attendee_name} osallistumaan tapahtumaan %{resource_name} tilassa %{space_name}"
|
273
|
+
deleted: "%{user_name} perui kutsun osallistujalle %{attendee_name} tapahtumaan %{resource_name} tilassa %{space_name}"
|
274
|
+
update: "%{user_name} kutsui %{attendee_name} osallistumaan tapahtumaan %{resource_name} tilaan %{space_name}"
|
241
275
|
meeting:
|
242
|
-
close: "%{user_name} sulki %{resource_name}
|
243
|
-
create: "%{user_name} loi %{resource_name}
|
244
|
-
delete: "%{user_name}
|
245
|
-
export_registrations: "%{user_name}
|
246
|
-
update: "%{user_name} päivitti %{resource_name}
|
276
|
+
close: "%{user_name} sulki tapahtuman %{resource_name} tilassa %{space_name}"
|
277
|
+
create: "%{user_name} loi tapahtuman %{resource_name} tilassa %{space_name}"
|
278
|
+
delete: "%{user_name} poisti tapahtuman %{resource_name} tilassa %{space_name}"
|
279
|
+
export_registrations: "%{user_name} vei tapahtuman %{resource_name} ilmoittautumiset tilaan %{space_name}"
|
280
|
+
update: "%{user_name} päivitti tapahtuman %{resource_name} tilassa %{space_name}"
|
247
281
|
value_types:
|
248
282
|
organizer_presenter:
|
249
|
-
not_found: 'Järjestäjää ei
|
283
|
+
not_found: 'Järjestäjää ei löytynyt tietokannasta (ID: %{id})'
|
250
284
|
minutes:
|
251
|
-
create: "%{user_name}
|
252
|
-
update: "%{user_name} päivitti
|
285
|
+
create: "%{user_name} loi tapahtumapöytäkirjan %{resource_name} tilassa %{space_name}"
|
286
|
+
update: "%{user_name} päivitti tapahtumapöytäkirjan %{resource_name} tilassa %{space_name}"
|
253
287
|
mailer:
|
254
288
|
invite_join_meeting_mailer:
|
255
289
|
invite:
|
256
|
-
subject: Kutsu
|
290
|
+
subject: Kutsu liittyä tapahtumaan
|
257
291
|
registration_mailer:
|
258
292
|
confirmation:
|
259
293
|
subject: Tapahtumailmoittautumisesi on vahvistettu
|
260
294
|
meeting:
|
261
|
-
not_allowed:
|
295
|
+
not_allowed: Sinulla ei ole lupaa tarkastella tätä tapahtumaa
|
262
296
|
meetings:
|
263
297
|
filters:
|
264
298
|
category: Aihepiiri
|
265
299
|
category_prompt: Valitse aihepiiri
|
266
300
|
date: Päivämäärä
|
267
301
|
past: Menneet
|
268
|
-
search:
|
302
|
+
search: Hae
|
269
303
|
upcoming: Tulevat
|
270
304
|
filters_small_view:
|
271
305
|
close_modal: Sulje ikkuna
|
272
|
-
filter:
|
273
|
-
filter_by:
|
306
|
+
filter: Rajaa
|
307
|
+
filter_by: Rajaa hakua
|
274
308
|
unfold: Avaa
|
275
309
|
index:
|
276
|
-
view_meeting: Näytä
|
310
|
+
view_meeting: Näytä tapahtuma
|
277
311
|
meeting_minutes:
|
278
|
-
meeting_minutes:
|
312
|
+
meeting_minutes: Tapahtumapöytäkirja
|
279
313
|
related_information: Liittyviä tietoja
|
280
314
|
meetings:
|
281
|
-
no_meetings_warning: Yksikään
|
282
|
-
upcoming_meetings_warning: Tällä hetkellä
|
315
|
+
no_meetings_warning: Yksikään tapahtuma ei vastaa hakukriteerejäsi tai yhtään tapaamista ei ole suunniteltu.
|
316
|
+
upcoming_meetings_warning: Tällä hetkellä ei ole suuniteltuja tapahtumia, mutta täältä löydät kaikki aikaisemmat tapahtumat.
|
283
317
|
registration_confirm:
|
284
318
|
cancel: Peruuta
|
285
319
|
confirm: Vahvista
|
@@ -288,14 +322,24 @@ fi:
|
|
288
322
|
contributions: Kontribuutioiden määrä
|
289
323
|
going: Osallistumassa
|
290
324
|
join: Liity tapahtumaan
|
291
|
-
meeting_report:
|
325
|
+
meeting_report: Tapahtumaraportti
|
292
326
|
no_slots_available: Ei paikkoja vapaana
|
293
|
-
organizations:
|
327
|
+
organizations: Osallistuvat järjestöt
|
294
328
|
remaining_slots:
|
295
329
|
one: 1 paikka jäljellä
|
296
330
|
other: "%{count} paikkaa jäljellä"
|
297
|
-
view:
|
331
|
+
view: Näytä
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: Sähköposti
|
336
|
+
name: Nimi
|
337
|
+
sent_at: Lähetetty
|
338
|
+
status: Status
|
339
|
+
status:
|
340
|
+
accepted: Hyväksytty (%{at})
|
341
|
+
rejected: Hylätty (%{at})
|
342
|
+
sent: Lähetetyt
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Suljettu
|
@@ -308,28 +352,32 @@ fi:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Ilmoittautumisesi tapahtumaan <a href="%{url}">%{title}</a> on vahvistettu.
|
310
354
|
details: Löydät tapahtuman tarkemmat tiedot liitteenä olevasta kalenterimerkinnästä.
|
355
|
+
registration_code: Rekisteröintikoodisi on %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: Tapahtumaan liittymisessä tapahtui virhe.
|
314
359
|
success: Olet liittynyt tapahtumaan onnistuneesti.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Kutsun hyläämisessä esiintyi ongelma.
|
362
|
+
success: Olet hylännyt kutsun onnistuneesti.
|
315
363
|
destroy:
|
316
|
-
invalid:
|
317
|
-
success: Olet
|
364
|
+
invalid: Tapahtumasta poistumisessa on tapahtunut virhe.
|
365
|
+
success: Olet poistunut tapahtumasta onnistuneesti.
|
318
366
|
types:
|
319
|
-
private_meeting: Yksityinen
|
367
|
+
private_meeting: Yksityinen tapahtuma
|
320
368
|
transparent: läpinäkyvä
|
321
369
|
participatory_processes:
|
322
370
|
participatory_process_groups:
|
323
371
|
highlighted_meetings:
|
324
|
-
past_meetings: Aiemmat
|
325
|
-
upcoming_meetings: Tulevat
|
372
|
+
past_meetings: Aiemmat tapahtumat
|
373
|
+
upcoming_meetings: Tulevat tapahtumat
|
326
374
|
participatory_spaces:
|
327
375
|
highlighted_meetings:
|
328
|
-
past_meetings: Aiemmat
|
329
|
-
see_all_meetings: Katso kaikki
|
330
|
-
upcoming_meetings: Tulevat
|
376
|
+
past_meetings: Aiemmat tapahtumat
|
377
|
+
see_all_meetings: Katso kaikki tapahtumat
|
378
|
+
upcoming_meetings: Tulevat tapahtumat
|
331
379
|
upcoming_meeting_for_card:
|
332
|
-
upcoming_meeting: Tuleva
|
380
|
+
upcoming_meeting: Tuleva tapahtuma
|
333
381
|
resource_links:
|
334
382
|
meetings_through_proposals:
|
335
383
|
meeting_result: 'Liittyvät tulokset:'
|
@@ -340,4 +388,4 @@ fi:
|
|
340
388
|
devise:
|
341
389
|
mailer:
|
342
390
|
join_meeting:
|
343
|
-
subject: Kutsu
|
391
|
+
subject: Kutsu tapahtumaan
|