decidim-meetings 0.5.1 → 0.6.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/assets/config/admin/decidim_meetings_manifest.js +1 -0
- data/app/assets/images/decidim/meetings/icon.svg +5 -1
- data/app/assets/javascripts/decidim/meetings/admin/registrations_form.js.es6 +21 -0
- data/app/commands/decidim/meetings/admin/close_meeting.rb +17 -9
- data/app/commands/decidim/meetings/admin/create_meeting.rb +13 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +47 -21
- data/app/commands/decidim/meetings/admin/update_registrations.rb +60 -0
- data/app/commands/decidim/meetings/join_meeting.rb +73 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +39 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +43 -0
- data/app/controllers/decidim/meetings/registrations_controller.rb +46 -0
- data/app/events/decidim/meetings/close_meeting_event.rb +30 -0
- data/app/events/decidim/meetings/meeting_registrations_enabled_event.rb +39 -0
- data/app/events/decidim/meetings/meeting_registrations_over_percentage_event.rb +43 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +30 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +30 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +32 -0
- data/app/helpers/decidim/meetings/application_helper.rb +1 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +33 -0
- data/app/mailers/decidim/meetings/registration_mailer.rb +46 -0
- data/app/models/decidim/meetings/abilities/current_user_ability.rb +43 -0
- data/app/models/decidim/meetings/meeting.rb +42 -0
- data/app/models/decidim/meetings/registration.rb +13 -0
- data/app/serializers/decidim/meetings/registration_serializer.rb +18 -0
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -3
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +1 -0
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +33 -0
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +8 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_registration_confirm.html.erb +15 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +15 -1
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +3 -0
- data/config/locales/ca.yml +74 -0
- data/config/locales/en.yml +72 -4
- data/config/locales/es.yml +75 -1
- data/config/locales/eu.yml +78 -3
- data/config/locales/fi.yml +84 -0
- data/config/locales/fr.yml +83 -8
- data/config/locales/it.yml +87 -0
- data/config/locales/nl.yml +169 -0
- data/config/locales/pl.yml +113 -0
- data/config/locales/uk.yml +178 -0
- data/db/migrate/20170810120836_add_registration_attributes_to_meetings.rb +9 -0
- data/db/migrate/20170810131100_create_registrations.rb +14 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -0
- data/lib/decidim/meetings/engine.rb +8 -0
- data/lib/decidim/meetings/feature.rb +39 -9
- data/lib/decidim/meetings/test/factories.rb +11 -0
- metadata +65 -13
- data/config/i18n-tasks.yml +0 -10
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -20,18 +21,30 @@ es:
|
|
20
21
|
decidim:
|
21
22
|
features:
|
22
23
|
meetings:
|
24
|
+
actions:
|
25
|
+
join: Unirse
|
23
26
|
name: Lista de encuentros
|
27
|
+
settings:
|
28
|
+
global:
|
29
|
+
announcement: Aviso
|
30
|
+
comments_enabled: Comentarios habilitados
|
31
|
+
step:
|
32
|
+
announcement: Aviso
|
33
|
+
comments_blocked: Comentarios bloqueados
|
24
34
|
meetings:
|
25
35
|
actions:
|
26
36
|
attachments: Archivos adjuntos
|
27
37
|
close: Cerrar
|
28
|
-
confirm_destroy:
|
38
|
+
confirm_destroy: "¿Está seguro de que quiere eliminar este encuentro?"
|
29
39
|
destroy: Borrar
|
30
40
|
edit: Editar
|
31
41
|
new: Nuevo
|
32
42
|
preview: Previsualizar
|
43
|
+
registrations: Inscripciones
|
33
44
|
title: Acciones
|
34
45
|
admin:
|
46
|
+
exports:
|
47
|
+
registrations: Inscripciones
|
35
48
|
meeting_closes:
|
36
49
|
edit:
|
37
50
|
close: Cerrar
|
@@ -58,6 +71,47 @@ es:
|
|
58
71
|
models:
|
59
72
|
meeting:
|
60
73
|
name: Encuentro
|
74
|
+
registrations:
|
75
|
+
edit:
|
76
|
+
save: Guardar
|
77
|
+
form:
|
78
|
+
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
79
|
+
registrations_count:
|
80
|
+
one: Ha habido 1 inscripción.
|
81
|
+
other: Ha habido %{count} inscripciones.
|
82
|
+
update:
|
83
|
+
invalid: Se ha producido un problema al guardar la configuración de la inscripción.
|
84
|
+
success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
|
85
|
+
events:
|
86
|
+
close_meeting_event:
|
87
|
+
email_intro: 'Se ha cerrado la reunión "%{resource_title}". Puedes leer las conclusiones en su página:'
|
88
|
+
email_outro: Has recibido esta notificación porque sigues la reunión "%{resource_title}". Puedes dejar de seguirla en el enlace anterior.
|
89
|
+
email_subject: Se ha cerrado la reunión "%{resource_title}"
|
90
|
+
notification_title: La reunión <a href="%{resource_path}">%{resource_title}</a> ha sido cerrada.
|
91
|
+
meeting_registrations_enabled:
|
92
|
+
email_intro: 'La reunión "%{resource_title}" ha ha activado inscripciones. Puedes inscribirte en su página:'
|
93
|
+
email_outro: Ha recibido esta notificación porque usted sigue el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
94
|
+
email_subject: El encuentro "%{resource_title}" ha activado inscripciones.
|
95
|
+
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha activado inscripciones.
|
96
|
+
meeting_registrations_over_percentage:
|
97
|
+
email_intro: Las inscripciones ocupadas en "%{resource_title}" son %{percentage}%.
|
98
|
+
email_outro: Has recibido esta notificación porque eres es un administrador del espacio participativo de la reunión.
|
99
|
+
email_subject: Las inscripciones ocupadas de "%{resource_title}" son %{percentage}%
|
100
|
+
notification_title: Las inscripciones ocupadas de <a href="%{resource_path}">%{resource_title}</a> son %{percentage}%.
|
101
|
+
upcoming_meeting_event:
|
102
|
+
email_intro: La reunión "%{resource_title}" se iniciará en menos de 48h.
|
103
|
+
email_outro: Has recibido esta notificación porque sigues la reunión "%{resource_title}". Puedes dejar de seguirla en el enlace anterior.
|
104
|
+
email_subject: La reunión "%{resource_title}" comenzará en menos de 48h.
|
105
|
+
notification_title: La reunión de <a href="%{resource_path}">%{resource_title}</a> comenzará en menos de 48h.
|
106
|
+
update_meeting_event:
|
107
|
+
email_intro: 'La reunión "%{resource_title}" fue actualizada. Puedes leer la nueva versión en su página:'
|
108
|
+
email_outro: Has recibido esta notificación porque sigues la reunión "%{resource_title}". Puedes dejar de seguirla en el enlace anterior.
|
109
|
+
email_subject: La reunión "%{resource_title}" ha sido actualizada
|
110
|
+
notification_title: La reunión <a href="%{resource_path}">%{resource_title}</a> ha sido actualizada.
|
111
|
+
mailer:
|
112
|
+
registration_mailer:
|
113
|
+
confirmation:
|
114
|
+
subject: La inscripción a tu encuentro ha sido confirmada
|
61
115
|
meetings:
|
62
116
|
filters:
|
63
117
|
category: Categoría
|
@@ -78,11 +132,20 @@ es:
|
|
78
132
|
meetings:
|
79
133
|
no_meetings_warning: No hay encuentros que coincidan con el criterio de búsqueda o no hay ningún encuentro programado.
|
80
134
|
upcoming_meetings_warning: Actualmente no hay encuentros programados, pero puedes ver los encuentros anteriores.
|
135
|
+
registration_confirm:
|
136
|
+
cancel: Cancelar
|
137
|
+
confirm: Confirmar
|
81
138
|
show:
|
82
139
|
attendees: Número de asistentes
|
83
140
|
contributions: Número de contribuciones
|
141
|
+
going: Yendo
|
142
|
+
join: Inscribirse al encuentro
|
84
143
|
meeting_report: Informe del encuentro
|
144
|
+
no_slots_available: No hay espacio disponible
|
85
145
|
organizations: Organizaciones que han asistido
|
146
|
+
remaining_slots:
|
147
|
+
one: 1 inscripción disponible
|
148
|
+
other: "%{count} inscripciones disponibles"
|
86
149
|
models:
|
87
150
|
meeting:
|
88
151
|
fields:
|
@@ -92,6 +155,17 @@ es:
|
|
92
155
|
start_time: Fecha de inicio
|
93
156
|
title: Título
|
94
157
|
read_more: "(leer más)"
|
158
|
+
registration_mailer:
|
159
|
+
confirmation:
|
160
|
+
confirmed_html: Se ha confirmado su inscripción para el encuentro <a href="%{url}">%{title}</a>.
|
161
|
+
details: Encontrarás detalles del encuentro en el archivo adjunto.
|
162
|
+
registrations:
|
163
|
+
create:
|
164
|
+
invalid: Ha habido un problema al unirse a este encuentro.
|
165
|
+
success: Te has inscrito al encuentro con éxito.
|
166
|
+
destroy:
|
167
|
+
invalid: Ha habido un problema al salir de esta encuentro.
|
168
|
+
success: Has salido del encuentro con éxito.
|
95
169
|
resource_links:
|
96
170
|
meetings_through_proposals:
|
97
171
|
meeting_results: 'Resultados relacionados:'
|
data/config/locales/eu.yml
CHANGED
@@ -4,7 +4,7 @@ eu:
|
|
4
4
|
close_meeting:
|
5
5
|
attendees_count: Bertaratuen kopurua
|
6
6
|
attending_organizations: 'Parte hartu duten erakundeen zerrenda:'
|
7
|
-
closing_report:
|
7
|
+
closing_report: Salatu
|
8
8
|
contributions_count: Ekarpen-kopurua
|
9
9
|
proposal_ids: Topaketan sortutako proposamenak
|
10
10
|
meeting:
|
@@ -16,11 +16,20 @@ eu:
|
|
16
16
|
location: Kokapena
|
17
17
|
location_hints: Kokapen-argibideak
|
18
18
|
start_time: Hasiera-ordua
|
19
|
-
title:
|
19
|
+
title: Titulua
|
20
20
|
decidim:
|
21
21
|
features:
|
22
22
|
meetings:
|
23
|
+
actions:
|
24
|
+
join: Parte hartu
|
23
25
|
name: Topaketa-zerrenda
|
26
|
+
settings:
|
27
|
+
global:
|
28
|
+
announcement: Oharra
|
29
|
+
comments_enabled: Iruzkinak gaituta
|
30
|
+
step:
|
31
|
+
announcement: Oharra
|
32
|
+
comments_blocked: Iruzkinak blokeatuta
|
24
33
|
meetings:
|
25
34
|
actions:
|
26
35
|
attachments: Eranskinak
|
@@ -30,8 +39,11 @@ eu:
|
|
30
39
|
edit: Editatu
|
31
40
|
new: Berria
|
32
41
|
preview: Aurreikusi
|
42
|
+
registrations: Izen-emateak
|
33
43
|
title: Ekintzak
|
34
44
|
admin:
|
45
|
+
exports:
|
46
|
+
registrations: Izen-emateak
|
35
47
|
meeting_closes:
|
36
48
|
edit:
|
37
49
|
close: Itxi
|
@@ -58,12 +70,54 @@ eu:
|
|
58
70
|
models:
|
59
71
|
meeting:
|
60
72
|
name: Topaketa
|
73
|
+
registrations:
|
74
|
+
edit:
|
75
|
+
save: Gorde
|
76
|
+
form:
|
77
|
+
available_slots_help: Utzi 0 mugak mugagabea badaude.
|
78
|
+
registrations_count:
|
79
|
+
one: Izena eman da.
|
80
|
+
other: '%{count} matrikulazio izan dira.'
|
81
|
+
update:
|
82
|
+
invalid: Arazo bat izan da erregistroaren ezarpenak gordetzean.
|
83
|
+
success: Bilera erregistratzeen ezarpenak behar bezala gorde dira.
|
84
|
+
events:
|
85
|
+
close_meeting_event:
|
86
|
+
email_intro: '"%{resource_title}" bilera itxita zegoen. Bere orriko ondorioak irakur ditzakezu:'
|
87
|
+
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
88
|
+
email_subject: '"%{resource_title}" bilera itxita zegoen'
|
89
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilera itxita zegoen.
|
90
|
+
meeting_registrations_enabled:
|
91
|
+
email_intro: '"%{resource_title}" topaketak erregistroak gaitu ditu. Zeure burua erregistratu dezakezu bere orrialdean:'
|
92
|
+
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
93
|
+
email_subject: '"%{resource_title}" topaketak erregistroak gaitu ditu.'
|
94
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilera erregistratzeak gaitu du.
|
95
|
+
meeting_registrations_over_percentage:
|
96
|
+
email_intro: '"%{resource_title}" bilera okupatutako zirrikituak %{percentage} baino gehiagokoak dira.'
|
97
|
+
email_outro: Jakinarazpen hau jaso duzu bileraren parte hartzaileen gunea delako.
|
98
|
+
email_subject: '"%{resource_title}" bilera okupatutako zirrikituak %{percentage} baino gehiago dira.'
|
99
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilerako slot okupatuak %{percentage} baino gehiagokoak dira.
|
100
|
+
upcoming_meeting_event:
|
101
|
+
email_intro: '"%{resource_title}" topaketa 48 ordu baino gutxiagoan hasiko da.'
|
102
|
+
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
103
|
+
email_subject: '"%{resource_title}" topaketa 48 ordu baino gutxiagoan hasiko da.'
|
104
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa 48 ordu baino gutxiagoan hasiko da.
|
105
|
+
update_meeting_event:
|
106
|
+
email_intro: '"%{resource_title}" bilera eguneratu da. Bertsio berria bere orritik irakurri dezakezu:'
|
107
|
+
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
108
|
+
email_subject: '"%{resource_title}" bilera eguneratu da'
|
109
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilera eguneratu da.
|
110
|
+
mailer:
|
111
|
+
registration_mailer:
|
112
|
+
confirmation:
|
113
|
+
subject: Zure bileraren erregistroa baieztatu da
|
61
114
|
meetings:
|
62
115
|
filters:
|
63
116
|
category: Kategoria
|
64
117
|
category_prompt: Aukeratu kategoria bat
|
65
118
|
date: Data
|
66
119
|
past: Aurrekoak
|
120
|
+
scope_prompt: Hautatu esparrua
|
67
121
|
scopes: Esparruak
|
68
122
|
search: Bilatu
|
69
123
|
upcoming: Hurrengoak
|
@@ -77,11 +131,20 @@ eu:
|
|
77
131
|
meetings:
|
78
132
|
no_meetings_warning: Ez dago bilaketa-irizpidearekin bat datorren topaketarik, edo ez dago ezein topaketarik programaturik.
|
79
133
|
upcoming_meetings_warning: Orain ez dago topaketarik programaturik, baina aurreko topaketak ikus ditzakezu.
|
134
|
+
registration_confirm:
|
135
|
+
cancel: Utzi
|
136
|
+
confirm: Baieztatu
|
80
137
|
show:
|
81
138
|
attendees: Bertaratuen kopurua
|
82
139
|
contributions: Ekarpen-kopurua
|
140
|
+
going: joatean
|
141
|
+
join: Erregistratu bilera
|
83
142
|
meeting_report: Topaketaren txostena
|
143
|
+
no_slots_available: Ez dago slotarik erabilgarri
|
84
144
|
organizations: Bertaratutako erakundeak
|
145
|
+
remaining_slots:
|
146
|
+
one: 1 zutoina geratzen da
|
147
|
+
other: "%{count} zutoinak geratzen dira"
|
85
148
|
models:
|
86
149
|
meeting:
|
87
150
|
fields:
|
@@ -89,7 +152,19 @@ eu:
|
|
89
152
|
end_time: Bukaera-data
|
90
153
|
map: Mapa
|
91
154
|
start_time: Hasiera-data
|
92
|
-
title:
|
155
|
+
title: Titulua
|
156
|
+
read_more: "(geihago irakurri)"
|
157
|
+
registration_mailer:
|
158
|
+
confirmation:
|
159
|
+
confirmed_html: Zure izen-ematea <a href="%{url}">%{title}</a> topatu da.
|
160
|
+
details: Bilera xehetasunak eranskinetan aurkituko dituzu.
|
161
|
+
registrations:
|
162
|
+
create:
|
163
|
+
invalid: Arazo bat izan da bilera honetan.
|
164
|
+
success: Bilera ondo sartu zara.
|
165
|
+
destroy:
|
166
|
+
invalid: Arazo bat izan da bilera hau utzita.
|
167
|
+
success: Bilera behar bezala utzi duzu.
|
93
168
|
resource_links:
|
94
169
|
meetings_through_proposals:
|
95
170
|
meeting_results: 'Topaketaren emaitzak:'
|
data/config/locales/fi.yml
CHANGED
@@ -8,6 +8,7 @@ fi:
|
|
8
8
|
contributions_count: Kontribuutioiden määrä
|
9
9
|
proposal_ids: Ehdotusta luotu tapaamisessa
|
10
10
|
meeting:
|
11
|
+
address: Osoite
|
11
12
|
decidim_category_id: Kategoria
|
12
13
|
decidim_scope_id: Konteksti
|
13
14
|
description: Kuvaus
|
@@ -19,7 +20,16 @@ fi:
|
|
19
20
|
decidim:
|
20
21
|
features:
|
21
22
|
meetings:
|
23
|
+
actions:
|
24
|
+
join: Liittyä seuraan
|
22
25
|
name: Tapaamiset
|
26
|
+
settings:
|
27
|
+
global:
|
28
|
+
announcement: Ilmoitus
|
29
|
+
comments_enabled: Kommentointi sallittu
|
30
|
+
step:
|
31
|
+
announcement: Ilmoitus
|
32
|
+
comments_blocked: Kommentointi kielletty
|
23
33
|
meetings:
|
24
34
|
actions:
|
25
35
|
attachments: Liitteet
|
@@ -27,8 +37,13 @@ fi:
|
|
27
37
|
confirm_destroy: Haluatko varmasti poistaa tämän tapaamisen?
|
28
38
|
destroy: Poista
|
29
39
|
edit: Muokkaa
|
40
|
+
new: Uusi
|
41
|
+
preview: Esikatsele
|
42
|
+
registrations: rekisteröinnit
|
30
43
|
title: Toiminnot
|
31
44
|
admin:
|
45
|
+
exports:
|
46
|
+
registrations: rekisteröinnit
|
32
47
|
meeting_closes:
|
33
48
|
edit:
|
34
49
|
close: Lopeta
|
@@ -42,19 +57,67 @@ fi:
|
|
42
57
|
success: Tapaaminen onnistuneesti luotu
|
43
58
|
destroy:
|
44
59
|
success: Tapaaminen onnistuneesti poistettu
|
60
|
+
edit:
|
61
|
+
update: Päivitä
|
45
62
|
index:
|
46
63
|
title: Tapaamiset
|
64
|
+
new:
|
65
|
+
create: Luo
|
66
|
+
title: Luo tapaaminen
|
47
67
|
update:
|
48
68
|
invalid: Tapaamisen luonnissa tapahtui virhe
|
49
69
|
success: Tapaaminen luotu onnistuneesti
|
50
70
|
models:
|
51
71
|
meeting:
|
52
72
|
name: Tapaaminen
|
73
|
+
registrations:
|
74
|
+
edit:
|
75
|
+
save: Tallenna
|
76
|
+
form:
|
77
|
+
available_slots_help: Jätä se arvoon 0, jos sinulla on rajoittamaton lähtö.
|
78
|
+
registrations_count:
|
79
|
+
one: Rekisteröityä on ollut 1.
|
80
|
+
other: On ollut %{count} rekisteröintiä.
|
81
|
+
update:
|
82
|
+
invalid: Rekisteröintiasetusten tallentamisessa on ollut ongelma.
|
83
|
+
success: Kokousrekisteröintiasetukset tallennettiin onnistuneesti.
|
84
|
+
events:
|
85
|
+
close_meeting_event:
|
86
|
+
email_intro: '”%{resource_title}” Kokous oli suljettu. Voit lukea päätelmät sen sivulla:'
|
87
|
+
email_outro: Olet saanut ilmoituksen, koska ”%{resource_title}” kokouksen jälkeen. Voit unfollow edellisen linkin.
|
88
|
+
email_subject: '”%{resource_title}”-Kokous'
|
89
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> Kokous oli suljettu.
|
90
|
+
meeting_registrations_enabled:
|
91
|
+
email_intro: '”%{resource_title}” Kokous ansiosta rekisteröinnit. Rekisteröit itsesi sivulla:'
|
92
|
+
email_outro: Olet saanut ilmoituksen, koska ”%{resource_title}” kokouksen jälkeen. Voit unfollow edellisen linkin.
|
93
|
+
email_subject: '”%{resource_title}” Kokous ansiosta rekisteröinnit.'
|
94
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> Kokous ansiosta rekisteröinnit.
|
95
|
+
meeting_registrations_over_percentage:
|
96
|
+
email_intro: '”%{resource_title}” Kokous miehitetty lähtö on %{percentage} prosenttia.'
|
97
|
+
email_outro: Olet saanut ilmoituksen, koska olet admin osallistuva kokoustilaa.
|
98
|
+
email_subject: '”%{resource_title}” Kokous käytössä paikat ovat yli %{percentage} %'
|
99
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> Kokous miehitetty lähtö on %{percentage} prosenttia.
|
100
|
+
upcoming_meeting_event:
|
101
|
+
email_intro: '”%{resource_title}” kokous alkaa alle 48 tuntia.'
|
102
|
+
email_outro: Olet saanut ilmoituksen, koska ”%{resource_title}” kokouksen jälkeen. Voit unfollow edellisen linkin.
|
103
|
+
email_subject: '”%{resource_title}” kokous alkaa alle 48 tuntia.'
|
104
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> kokous alkaa alle 48 tuntia.
|
105
|
+
update_meeting_event:
|
106
|
+
email_intro: '”%{resource_title}” Kokous päivitettiin. Voit lukea uuden version sen sivulla:'
|
107
|
+
email_outro: Olet saanut ilmoituksen, koska ”%{resource_title}” kokouksen jälkeen. Voit unfollow edellisen linkin.
|
108
|
+
email_subject: '”%{resource_title}” Kokous päivitettiin'
|
109
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> Kokous päivitettiin.
|
110
|
+
mailer:
|
111
|
+
registration_mailer:
|
112
|
+
confirmation:
|
113
|
+
subject: Sinun Kokous rekisteröinti on vahvistettu
|
53
114
|
meetings:
|
54
115
|
filters:
|
55
116
|
category: Kategoria
|
117
|
+
category_prompt: Valitse kategoria
|
56
118
|
date: Päivämäärä
|
57
119
|
past: Menneet
|
120
|
+
scope_prompt: Valitse konteksti
|
58
121
|
scopes: Kontekstit
|
59
122
|
search: Etsi
|
60
123
|
upcoming: Tulevat
|
@@ -68,11 +131,20 @@ fi:
|
|
68
131
|
meetings:
|
69
132
|
no_meetings_warning: Yksikään tapaaminen ei vastaa hakukriteerejäsi tai yhtään tapaamista ei ole määritelty
|
70
133
|
upcoming_meetings_warning: Tällä hetkellä tapaamisia ei ole määritelty, mutta täältä löydät kaikki aikaisemmat tapaamiset.
|
134
|
+
registration_confirm:
|
135
|
+
cancel: Peruuta
|
136
|
+
confirm: Vahvista
|
71
137
|
show:
|
72
138
|
attendees: Osallistujamäärä
|
73
139
|
contributions: Kontribuutioiden määrä
|
140
|
+
going: Going
|
141
|
+
join: Liity kokoukseen
|
74
142
|
meeting_report: Tapaamisraportti
|
143
|
+
no_slots_available: Ei aikavälejä
|
75
144
|
organizations: Osallistuneet organisaatiot
|
145
|
+
remaining_slots:
|
146
|
+
one: 1 jäljellä oleva paikka
|
147
|
+
other: "%{count} jäljellä olevat paikat"
|
76
148
|
models:
|
77
149
|
meeting:
|
78
150
|
fields:
|
@@ -81,6 +153,18 @@ fi:
|
|
81
153
|
map: Kartta
|
82
154
|
start_time: Aloitusaika
|
83
155
|
title: Otsikko
|
156
|
+
read_more: "(lue lisää)"
|
157
|
+
registration_mailer:
|
158
|
+
confirmation:
|
159
|
+
confirmed_html: Kokous <a href="%{url}">%{title}</a> rekisteröinti on vahvistettu.
|
160
|
+
details: Löydät kokouksen tiedot liitetiedostona.
|
161
|
+
registrations:
|
162
|
+
create:
|
163
|
+
invalid: On tapahtunut ongelma, joka liittyy tähän kokoukseen.
|
164
|
+
success: Olet liittynyt kokoukseen onnistuneesti.
|
165
|
+
destroy:
|
166
|
+
invalid: On tapahtunut ongelma, joka jättää tämän kokouksen.
|
167
|
+
success: Olet jättänyt kokouksen onnistuneesti.
|
84
168
|
resource_links:
|
85
169
|
meetings_through_proposals:
|
86
170
|
meeting_results: 'Liittyvät tulokset:'
|
data/config/locales/fr.yml
CHANGED
@@ -20,18 +20,30 @@ fr:
|
|
20
20
|
decidim:
|
21
21
|
features:
|
22
22
|
meetings:
|
23
|
-
|
23
|
+
actions:
|
24
|
+
join: Joindre
|
25
|
+
name: Réunions
|
26
|
+
settings:
|
27
|
+
global:
|
28
|
+
announcement: Annonce
|
29
|
+
comments_enabled: Commentaires activés
|
30
|
+
step:
|
31
|
+
announcement: Annonce
|
32
|
+
comments_blocked: Commentaires bloqués
|
24
33
|
meetings:
|
25
34
|
actions:
|
26
35
|
attachments: Documents liés
|
27
|
-
close:
|
36
|
+
close: Fermer
|
28
37
|
confirm_destroy: Êtes-vous sûr de vouloir supprimer cette rencontre?
|
29
38
|
destroy: Supprimer
|
30
39
|
edit: Modifier
|
31
40
|
new: Nouveau
|
32
41
|
preview: Aperçu
|
42
|
+
registrations: Enregistrements
|
33
43
|
title: Actions
|
34
44
|
admin:
|
45
|
+
exports:
|
46
|
+
registrations: Enregistrements
|
35
47
|
meeting_closes:
|
36
48
|
edit:
|
37
49
|
close: Clore
|
@@ -48,7 +60,7 @@ fr:
|
|
48
60
|
edit:
|
49
61
|
update: Mettre à jour
|
50
62
|
index:
|
51
|
-
title:
|
63
|
+
title: Rencontre
|
52
64
|
new:
|
53
65
|
create: Créer
|
54
66
|
title: Créer une rencontre
|
@@ -58,17 +70,59 @@ fr:
|
|
58
70
|
models:
|
59
71
|
meeting:
|
60
72
|
name: Rencontre
|
73
|
+
registrations:
|
74
|
+
edit:
|
75
|
+
save: Sauvegarder
|
76
|
+
form:
|
77
|
+
available_slots_help: Laissez-le à 0 si vous avez des emplacements illimités disponibles.
|
78
|
+
registrations_count:
|
79
|
+
one: Il y a eu 1 enregistrement.
|
80
|
+
other: Il y a eu %{count} enregistrements.
|
81
|
+
update:
|
82
|
+
invalid: Il y a eu un problème pour enregistrer les paramètres d'enregistrement.
|
83
|
+
success: Réaliser les paramètres d'enregistrement enregistrés avec succès.
|
84
|
+
events:
|
85
|
+
close_meeting_event:
|
86
|
+
email_intro: 'La réunion de la « %{resource_title} » a été fermée. Vous pouvez lire les conclusions de sa page :'
|
87
|
+
email_outro: Vous avez reçu cet avis parce que vous êtes issue de la réunion de la « %{resource_title} ». Vous pouvez l’unfollow depuis le lien précédent.
|
88
|
+
email_subject: La réunion de la « %{resource_title} » a été fermée
|
89
|
+
notification_title: La réunion de <a href="%{resource_path}">%{resource_title}</a> a été fermée.
|
90
|
+
meeting_registrations_enabled:
|
91
|
+
email_intro: 'La réunion « %{resource_title} » a permis des enregistrements. Vous pouvez vous enregistrer sur sa page :'
|
92
|
+
email_outro: Vous avez reçu cet avis parce que vous êtes issue de la réunion de la « %{resource_title} ». Vous pouvez l’unfollow depuis le lien précédent.
|
93
|
+
email_subject: La réunion « %{resource_title} » a permis des enregistrements.
|
94
|
+
notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> a permis des enregistrements.
|
95
|
+
meeting_registrations_over_percentage:
|
96
|
+
email_intro: Les fentes de réunion occupée « %{resource_title} » sont plus %{percentage} %.
|
97
|
+
email_outro: Vous avez reçu cet avis parce que vous êtes un administrateur de l’espace participatif de la réunion.
|
98
|
+
email_subject: Les fentes de réunion occupée « %{resource_title} » sont plus %{percentage} %
|
99
|
+
notification_title: Les fentes de réunion occupée de <a href="%{resource_path}">%{resource_title}</a> sont plus %{percentage} %.
|
100
|
+
upcoming_meeting_event:
|
101
|
+
email_intro: La réunion de la « %{resource_title} » va commencer en moins de 48h.
|
102
|
+
email_outro: Vous avez reçu cet avis parce que vous êtes issue de la réunion de la « %{resource_title} ». Vous pouvez l’unfollow depuis le lien précédent.
|
103
|
+
email_subject: La réunion de la « %{resource_title} » va commencer en moins de 48h.
|
104
|
+
notification_title: La réunion de <a href="%{resource_path}">%{resource_title}</a> va commencer en moins de 48h.
|
105
|
+
update_meeting_event:
|
106
|
+
email_intro: 'La réunion de la « %{resource_title} » a été mis à jour. Vous pouvez lire la nouvelle version de sa page :'
|
107
|
+
email_outro: Vous avez reçu cet avis parce que vous êtes issue de la réunion de la « %{resource_title} ». Vous pouvez l’unfollow depuis le lien précédent.
|
108
|
+
email_subject: La réunion de la « %{resource_title} » a été mis à jour
|
109
|
+
notification_title: La réunion de <a href="%{resource_path}">%{resource_title}</a> a été mis à jour.
|
110
|
+
mailer:
|
111
|
+
registration_mailer:
|
112
|
+
confirmation:
|
113
|
+
subject: Enregistrement de la réunion a été confirmée
|
61
114
|
meetings:
|
62
115
|
filters:
|
63
116
|
category: Catégorie
|
64
117
|
category_prompt: Sélectionner une catégorie
|
65
118
|
date: Date
|
66
|
-
past:
|
67
|
-
|
119
|
+
past: Passés
|
120
|
+
scope_prompt: Sélectionnez une portée
|
121
|
+
scopes: Zones d'application
|
68
122
|
search: Rechercher
|
69
123
|
upcoming: À venir
|
70
124
|
filters_small_view:
|
71
|
-
close_modal: Fermer la
|
125
|
+
close_modal: Fermer la vue
|
72
126
|
filter: Filtrer
|
73
127
|
filter_by: Filtrer par
|
74
128
|
unfold: Déplier
|
@@ -77,23 +131,44 @@ fr:
|
|
77
131
|
meetings:
|
78
132
|
no_meetings_warning: Aucune rencontre ne correspond à vos critères de recherche ou aucune rencontre n'est prévue.
|
79
133
|
upcoming_meetings_warning: À l'heure actuelle, il n'y a pas de rencontre planifiées, mais ici, vous trouverez une liste de toutes les réunions passées.
|
134
|
+
registration_confirm:
|
135
|
+
cancel: Annuler
|
136
|
+
confirm: Confirmer
|
80
137
|
show:
|
81
138
|
attendees: Nombre de participants
|
82
139
|
contributions: Décompte des contributions
|
140
|
+
going: Aller
|
141
|
+
join: Rejoindre une réunion
|
83
142
|
meeting_report: Compte rendu de la rencontre
|
143
|
+
no_slots_available: Pas de machines à sous disponibles
|
84
144
|
organizations: Organisations participantes
|
145
|
+
remaining_slots:
|
146
|
+
one: 1 slot restant
|
147
|
+
other: "%{count} machines à sous restantes"
|
85
148
|
models:
|
86
149
|
meeting:
|
87
150
|
fields:
|
88
151
|
closed: Clos
|
89
|
-
end_time:
|
152
|
+
end_time: Échéance
|
90
153
|
map: Carte
|
91
154
|
start_time: Date de début
|
92
155
|
title: Titre
|
156
|
+
read_more: "(Lire la suite)"
|
157
|
+
registration_mailer:
|
158
|
+
confirmation:
|
159
|
+
confirmed_html: Votre inscription pour la réunion <a href="%{url}">%{title}</a> a été confirmée.
|
160
|
+
details: Vous trouverez les détails de la réunion dans la pièce jointe.
|
161
|
+
registrations:
|
162
|
+
create:
|
163
|
+
invalid: Il y a eu un problème pour rejoindre cette réunion.
|
164
|
+
success: Vous avez rejoint la réunion avec succès.
|
165
|
+
destroy:
|
166
|
+
invalid: Il y a eu un problème de sortir de cette réunion.
|
167
|
+
success: Vous avez quitté la réunion avec succès.
|
93
168
|
resource_links:
|
94
169
|
meetings_through_proposals:
|
95
170
|
meeting_results: 'Résultats associés :'
|
96
|
-
result_meetings: '
|
171
|
+
result_meetings: 'Rencontre connexes :'
|
97
172
|
proposals_from_meeting:
|
98
173
|
meeting_proposals: 'Propositions créées à cette rencontre :'
|
99
174
|
proposal_meetings: 'Rencontre connexes :'
|