decidim-conferences 0.17.2 → 0.20.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/stylesheet/decidim/conferences/conferences.scss +3 -0
- data/app/cells/decidim/conferences/conference_address/show.erb +1 -1
- data/app/cells/decidim/conferences/conference_m/footer.erb +1 -1
- data/app/cells/decidim/conferences/conference_speaker/show.erb +2 -2
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +6 -2
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +6 -0
- data/app/cells/decidim/conferences/partner_cell.rb +2 -0
- data/app/cells/decidim/conferences/photos_list_cell.rb +1 -0
- data/app/cells/decidim/conferences/registration_type_cell.rb +2 -0
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +1 -0
- data/app/commands/decidim/conferences/admin/create_conference.rb +0 -10
- data/app/commands/decidim/conferences/admin/create_conference_admin.rb +1 -0
- data/app/commands/decidim/conferences/admin/publish_conference.rb +12 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +6 -2
- data/app/commands/decidim/conferences/admin/update_diploma.rb +1 -0
- data/app/commands/decidim/conferences/join_conference.rb +2 -0
- data/app/commands/decidim/conferences/leave_conference.rb +1 -0
- data/app/controllers/decidim/conferences/admin/application_controller.rb +5 -4
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +6 -4
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +3 -1
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +2 -1
- data/app/controllers/decidim/conferences/application_controller.rb +6 -5
- data/app/controllers/decidim/conferences/conference_program_controller.rb +4 -1
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -0
- data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -0
- data/app/controllers/decidim/conferences/media_controller.rb +1 -0
- data/app/controllers/decidim/conferences/registration_types_controller.rb +1 -0
- data/app/forms/decidim/conferences/admin/conference_form.rb +4 -0
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -0
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -0
- data/app/helpers/decidim/conferences/conference_helper.rb +1 -0
- data/app/models/decidim/conference.rb +22 -4
- data/app/models/decidim/conference_user_role.rb +1 -0
- data/app/permissions/decidim/conferences/permissions.rb +6 -0
- data/app/presenters/decidim/conferences/admin_log/value_types/role_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/conference_presenter.rb +1 -0
- data/app/queries/decidim/conferences/admin/admin_users.rb +8 -1
- data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -0
- data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -0
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +4 -3
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +4 -3
- data/app/views/decidim/conferences/admin/partners/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +1 -1
- data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/_partners.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +3 -3
- data/app/views/decidim/conferences/media/index.html.erb +2 -2
- data/app/views/layouts/decidim/_conference_hero.html.erb +2 -2
- data/app/views/layouts/decidim/diploma.html.erb +2 -2
- data/config/locales/ar-SA.yml +1 -0
- data/config/locales/ar.yml +589 -0
- data/config/locales/ca.yml +1 -0
- data/config/locales/cs.yml +56 -55
- data/config/locales/de.yml +10 -9
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +1 -0
- data/config/locales/es-PY.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/eu.yml +1 -0
- data/config/locales/fi-plain.yml +1 -0
- data/config/locales/fi.yml +1 -0
- data/config/locales/fr.yml +95 -94
- data/config/locales/gl.yml +1 -0
- data/config/locales/hu.yml +2 -1
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/it.yml +4 -3
- data/config/locales/nl.yml +3 -2
- data/config/locales/no.yml +117 -0
- data/config/locales/pl.yml +1 -0
- data/config/locales/pt-BR.yml +1 -0
- data/config/locales/pt.yml +1 -0
- data/config/locales/sv.yml +1 -0
- data/config/locales/tr-TR.yml +1 -0
- data/lib/decidim/conferences/participatory_space.rb +3 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +22 -20
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
@@ -2,7 +2,7 @@ cs:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
|
-
assemblies_ids: Související
|
5
|
+
assemblies_ids: Související shromáždění
|
6
6
|
banner_image: Obrázek banneru
|
7
7
|
consultations_ids: Související konzultace
|
8
8
|
copy_categories: Kopírovat kategorie
|
@@ -11,7 +11,7 @@ cs:
|
|
11
11
|
decidim_scope_id: Rozsah
|
12
12
|
description: Popis
|
13
13
|
hashtag: Hashtag
|
14
|
-
hero_image:
|
14
|
+
hero_image: Obrázek na hlavní stránce
|
15
15
|
participatory_processes_ids: Související procesy účasti
|
16
16
|
promoted: Propagováno
|
17
17
|
published_at: Publikováno v
|
@@ -25,7 +25,7 @@ cs:
|
|
25
25
|
conference_speaker:
|
26
26
|
full_name: Celé jméno
|
27
27
|
conference_user_role:
|
28
|
-
email: E-
|
28
|
+
email: E-mail
|
29
29
|
name: název
|
30
30
|
role: Role
|
31
31
|
errors:
|
@@ -42,10 +42,10 @@ cs:
|
|
42
42
|
many: Konference
|
43
43
|
other: Konference
|
44
44
|
decidim/conference_speaker:
|
45
|
-
one:
|
46
|
-
few:
|
47
|
-
many:
|
48
|
-
other:
|
45
|
+
one: Řečník Konference
|
46
|
+
few: Řečnící Konference
|
47
|
+
many: Řečníci Konference
|
48
|
+
other: Řečníci Konference
|
49
49
|
decidim/conference_user_role:
|
50
50
|
one: Uživatelská role konference
|
51
51
|
few: Konference uživatelských rolí
|
@@ -61,13 +61,13 @@ cs:
|
|
61
61
|
new:
|
62
62
|
copy: kopírovat
|
63
63
|
select: Vyberte, která data chcete duplikovat
|
64
|
-
title:
|
64
|
+
title: Duplikovat konferenci
|
65
65
|
conference_publications:
|
66
66
|
create:
|
67
67
|
error: Při publikování této konference došlo k chybě.
|
68
68
|
success: Konference byla úspěšně publikována.
|
69
69
|
destroy:
|
70
|
-
error: Při
|
70
|
+
error: Při odebrání této konference došlo k chybě.
|
71
71
|
success: Konference byla nepublikována úspěšně.
|
72
72
|
conference_registration:
|
73
73
|
confirm:
|
@@ -80,32 +80,32 @@ cs:
|
|
80
80
|
destroy:
|
81
81
|
success: Reproduktor byl úspěšně smazán pro tuto konferenci.
|
82
82
|
edit:
|
83
|
-
title: Aktualizovat
|
83
|
+
title: Aktualizovat řečníka konference.
|
84
84
|
update: Aktualizace
|
85
85
|
index:
|
86
|
-
conference_speakers_title:
|
86
|
+
conference_speakers_title: Řečnící konference
|
87
87
|
new:
|
88
88
|
create: Vytvořit
|
89
|
-
title: Nový
|
89
|
+
title: Nový řečník konference.
|
90
90
|
update:
|
91
|
-
error: Při této konferenci došlo k chybě při aktualizaci
|
91
|
+
error: Při této konferenci došlo k chybě při aktualizaci řečníka.
|
92
92
|
success: Speaker se úspěšně pro tuto konferenci úspěšně aktualizoval.
|
93
93
|
conference_user_roles:
|
94
94
|
create:
|
95
|
-
error: Při přidávání
|
95
|
+
error: Při přidávání administrátora této konference došlo k chybě.
|
96
96
|
success: Uživatel úspěšně přidal tuto konferenci.
|
97
97
|
destroy:
|
98
|
-
success:
|
98
|
+
success: Administrátor konference byl úspěšně odstraněn.
|
99
99
|
edit:
|
100
100
|
title: Aktualizovat uživatele konference.
|
101
101
|
update: Aktualizace
|
102
102
|
index:
|
103
|
-
conference_admins_title:
|
103
|
+
conference_admins_title: administrátoři konference
|
104
104
|
new:
|
105
105
|
create: Vytvořit
|
106
|
-
title: Nový
|
106
|
+
title: Nový administrátor konference.
|
107
107
|
update:
|
108
|
-
error:
|
108
|
+
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
109
109
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
110
110
|
conferences:
|
111
111
|
create:
|
@@ -133,17 +133,17 @@ cs:
|
|
133
133
|
media_links:
|
134
134
|
create:
|
135
135
|
error: Při vytváření nového odkazu na média došlo k chybě.
|
136
|
-
success:
|
136
|
+
success: Odkaz na media byl úspěšně vytvořen.
|
137
137
|
destroy:
|
138
|
-
success:
|
138
|
+
success: Odkaz na media byl úspěšně smazán.
|
139
139
|
edit:
|
140
|
-
title: Aktualizovat
|
140
|
+
title: Aktualizovat odkaz na media.
|
141
141
|
update: Aktualizace
|
142
142
|
index:
|
143
143
|
media_links_title: Odkazy na média
|
144
144
|
new:
|
145
145
|
create: Vytvořit
|
146
|
-
title:
|
146
|
+
title: Odkaz na media
|
147
147
|
update:
|
148
148
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
149
149
|
success: Media Link byl úspěšně aktualizován.
|
@@ -155,13 +155,13 @@ cs:
|
|
155
155
|
attachments: Přílohy
|
156
156
|
categories: Kategorie
|
157
157
|
components: Komponenty
|
158
|
-
conference_admins:
|
158
|
+
conference_admins: Administrátoři konference
|
159
159
|
conference_invites: Pozvánky
|
160
|
-
conference_speakers:
|
160
|
+
conference_speakers: Řečníci
|
161
161
|
diploma: Potvrzení o účasti
|
162
162
|
info: Info
|
163
163
|
media_links: Odkazy na média
|
164
|
-
moderations:
|
164
|
+
moderations: Moderátoři
|
165
165
|
partners: Partneři
|
166
166
|
registration_types: Typy registrace
|
167
167
|
registrations: Registrace
|
@@ -172,19 +172,19 @@ cs:
|
|
172
172
|
created_at: Vytvořeno u
|
173
173
|
promoted: Propagováno
|
174
174
|
published: Publikováno
|
175
|
-
title:
|
175
|
+
title: Název
|
176
176
|
conference_speaker:
|
177
177
|
fields:
|
178
178
|
affiliation: Přidružení
|
179
179
|
full_name: Celé jméno
|
180
180
|
position: Pozice
|
181
|
-
name:
|
181
|
+
name: Řečník Konference
|
182
182
|
conference_user_role:
|
183
183
|
fields:
|
184
|
-
email: E-
|
184
|
+
email: E-mail
|
185
185
|
name: název
|
186
186
|
role: Role
|
187
|
-
name:
|
187
|
+
name: Administrátor konference
|
188
188
|
roles:
|
189
189
|
admin: Správce
|
190
190
|
collaborator: Spolupracovník
|
@@ -193,7 +193,7 @@ cs:
|
|
193
193
|
fields:
|
194
194
|
date: datum
|
195
195
|
link: Odkaz
|
196
|
-
title:
|
196
|
+
title: Název
|
197
197
|
name: Media Link
|
198
198
|
partner:
|
199
199
|
fields:
|
@@ -204,19 +204,19 @@ cs:
|
|
204
204
|
name: Partner
|
205
205
|
types:
|
206
206
|
collaborator: Spolupracovník
|
207
|
-
main_promotor: Hlavní
|
207
|
+
main_promotor: Hlavní podporovatel
|
208
208
|
registration_type:
|
209
209
|
fields:
|
210
210
|
conference_meetings: Setkání konference
|
211
211
|
price: Cena
|
212
212
|
registrations_count: Registrace se počítají
|
213
|
-
title:
|
213
|
+
title: Název
|
214
214
|
weight: Hmotnost
|
215
215
|
name: Typ registrace
|
216
216
|
partners:
|
217
217
|
create:
|
218
218
|
error: Při přidávání partnera pro tuto konferenci došlo k chybě.
|
219
|
-
success:
|
219
|
+
success: Konferenční partner byl úspěšně přidán.
|
220
220
|
destroy:
|
221
221
|
success: Partner byl úspěšně odstraněn z této konference.
|
222
222
|
edit:
|
@@ -233,12 +233,12 @@ cs:
|
|
233
233
|
error: Při publikování tohoto typu registrace došlo k chybě.
|
234
234
|
success: Typ registrace byl úspěšně publikován.
|
235
235
|
destroy:
|
236
|
-
error:
|
237
|
-
success: Typ registrace byl
|
236
|
+
error: Při zrušení publikování tohoto typu registrace došlo k potížím.
|
237
|
+
success: Typ registrace byl úspěšně nezveřejněn.
|
238
238
|
registration_types:
|
239
239
|
create:
|
240
240
|
error: Při přidávání typu registrace pro tuto konferenci došlo k chybě.
|
241
|
-
success: Typ
|
241
|
+
success: Typ registrace byl úspěšně přidán na tuto konferenci.
|
242
242
|
destroy:
|
243
243
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
244
244
|
edit:
|
@@ -254,32 +254,32 @@ cs:
|
|
254
254
|
conferences: Konference
|
255
255
|
admin_log:
|
256
256
|
conference:
|
257
|
-
create: "%{user_name}
|
257
|
+
create: "%{user_name} vytvořil konferenci %{resource_name}"
|
258
258
|
publish: "%{user_name} zveřejnila %{resource_name} konferenci"
|
259
|
-
send_conference_diplomas: "%{user_name}
|
259
|
+
send_conference_diplomas: "%{user_name} zaslal certifikaci o účasti na konferenci %{resource_name}"
|
260
260
|
unpublish: "%{user_name} nepublikováno %{resource_name} konferenci"
|
261
|
-
update: "%{user_name}
|
261
|
+
update: "%{user_name} aktualizoval konferenci %{resource_name}"
|
262
262
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
263
263
|
conference_speaker:
|
264
|
-
create: "%{user_name}
|
264
|
+
create: "%{user_name} vytvořil %{resource_name} řečníka na konferenci %{space_name}"
|
265
265
|
delete: "%{user_name} odstranila %{resource_name} reproduktor z %{space_name} konferencí"
|
266
|
-
update: "%{user_name} aktualizoval %{resource_name}
|
266
|
+
update: "%{user_name} aktualizoval %{resource_name} řečníka na konferenci %{space_name}"
|
267
267
|
conference_user_role:
|
268
|
-
create: "%{user_name}
|
269
|
-
delete: "%{user_name} odstranil uživatele %{resource_name} z %{space_name}
|
270
|
-
update: "%{user_name}
|
268
|
+
create: "%{user_name} pozval %{resource_name} na konferenci %{space_name}"
|
269
|
+
delete: "%{user_name} odstranil uživatele %{resource_name} z konference %{space_name}"
|
270
|
+
update: "%{user_name} změnil roli %{resource_name} na konferenci %{space_name}"
|
271
271
|
conferences:
|
272
272
|
conference_registration:
|
273
|
-
confirm: "%{user_name}
|
273
|
+
confirm: "%{user_name} potvrdil registraci konference na konferenci %{resource_name}"
|
274
274
|
partner:
|
275
275
|
create: "%{user_name} vytvořeno %{resource_name} na %{space_name} konferenci"
|
276
|
-
delete: "%{user_name} odstranil uživatele %{resource_name} z %{space_name}
|
277
|
-
update: "%{user_name}
|
276
|
+
delete: "%{user_name} odstranil uživatele %{resource_name} z konference %{space_name}"
|
277
|
+
update: "%{user_name} aktualizoval %{resource_name} v konferenci %{space_name}"
|
278
278
|
registration_type:
|
279
|
-
create: "%{user_name} vytvořil %{resource_name}
|
279
|
+
create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
|
280
280
|
publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
|
281
281
|
unpublish: "%{user_name} nepublikováno %{resource_name} typ registrace na %{space_name} konferencích"
|
282
|
-
update: "%{user_name} aktualizoval %{resource_name}
|
282
|
+
update: "%{user_name} aktualizoval typ registrace %{resource_name} na konferenci %{space_name}"
|
283
283
|
media_link:
|
284
284
|
create: "%{user_name} vytvořilo %{resource_name} mediální odkaz na konferenci %{space_name}"
|
285
285
|
delete: "%{user_name} odstranilo %{resource_name} odkaz na média z %{space_name} konferencí"
|
@@ -289,12 +289,12 @@ cs:
|
|
289
289
|
title: Program
|
290
290
|
conference_speakers:
|
291
291
|
index:
|
292
|
-
title:
|
292
|
+
title: Řečníci
|
293
293
|
conferences:
|
294
294
|
admin:
|
295
295
|
conference_copies:
|
296
296
|
form:
|
297
|
-
slug_help: '
|
297
|
+
slug_help: 'URL slugs se používají k vygenerování adres URL, které odkazují na tuto konferenci. Přijme pouze písmena, čísla a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
298
298
|
conference_invites:
|
299
299
|
create:
|
300
300
|
error: Při pozvání uživatele do konference došlo k problému.
|
@@ -310,7 +310,7 @@ cs:
|
|
310
310
|
accepted: Přijato
|
311
311
|
all: Všechno
|
312
312
|
rejected: Odmítnuto
|
313
|
-
sent:
|
313
|
+
sent: Odesláno
|
314
314
|
filter_by: Filtrovat podle
|
315
315
|
invite_attendee: Pozvat účastníka
|
316
316
|
invites: Pozvánky
|
@@ -324,9 +324,9 @@ cs:
|
|
324
324
|
registrations: Registrace
|
325
325
|
conference_speakers:
|
326
326
|
form:
|
327
|
-
existing_user: Existující
|
328
|
-
non_user: Není
|
329
|
-
select_user:
|
327
|
+
existing_user: Existující účastník
|
328
|
+
non_user: Není účastníkem
|
329
|
+
select_user: Vybrat účastníka
|
330
330
|
user_type: Typ uživatele
|
331
331
|
index:
|
332
332
|
search: Vyhledávání
|
@@ -560,6 +560,7 @@ cs:
|
|
560
560
|
take_part: Zúčastnit se
|
561
561
|
conferences:
|
562
562
|
conference:
|
563
|
+
more_info: Více informací
|
563
564
|
take_part: Zúčastnit se
|
564
565
|
index:
|
565
566
|
promoted_conferences: Propagované konference
|
data/config/locales/de.yml
CHANGED
@@ -3,7 +3,7 @@ de:
|
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
5
|
assemblies_ids: Ähnliche Assemblies
|
6
|
-
banner_image:
|
6
|
+
banner_image: Banner-Bild
|
7
7
|
consultations_ids: Verwandte Konsultationen
|
8
8
|
copy_categories: Kategorien kopieren
|
9
9
|
copy_components: Kopieren Sie Komponenten
|
@@ -12,7 +12,7 @@ de:
|
|
12
12
|
description: Beschreibung
|
13
13
|
hashtag: Hashtag
|
14
14
|
hero_image: Hauptbild
|
15
|
-
participatory_processes_ids:
|
15
|
+
participatory_processes_ids: Ähnliche Beteiligungsprozesse
|
16
16
|
promoted: Gefördert
|
17
17
|
published_at: Veröffentlicht unter
|
18
18
|
scope_id: Umfang
|
@@ -333,7 +333,7 @@ de:
|
|
333
333
|
slug_help: 'URL-Slugs werden verwendet, um URLs zu generieren, die auf diese Konferenz verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
334
334
|
diplomas:
|
335
335
|
edit:
|
336
|
-
save:
|
336
|
+
save: Speichern
|
337
337
|
title: Teilnahmebestätigung
|
338
338
|
invite_join_conference_mailer:
|
339
339
|
invite:
|
@@ -397,10 +397,10 @@ de:
|
|
397
397
|
success: Sie haben die Konferenz erfolgreich verlassen.
|
398
398
|
conference_speaker:
|
399
399
|
go_to_twitter: Gehe zu Twitter
|
400
|
-
more_info: Mehr
|
400
|
+
more_info: Mehr Informationen
|
401
401
|
personal_website: Persönliche Webseite
|
402
402
|
show:
|
403
|
-
more_info: Mehr
|
403
|
+
more_info: Mehr Informationen
|
404
404
|
conference_speaker_cell:
|
405
405
|
personal_url:
|
406
406
|
personal_website: Persönliche Webseite
|
@@ -463,10 +463,10 @@ de:
|
|
463
463
|
photo:
|
464
464
|
show:
|
465
465
|
close_modal: Modal schließen
|
466
|
-
photo:
|
466
|
+
photo: Bild
|
467
467
|
photos_list:
|
468
468
|
show:
|
469
|
-
related_photos:
|
469
|
+
related_photos: Bilder
|
470
470
|
registration_types:
|
471
471
|
index:
|
472
472
|
choose_an_option: 'Wählen Sie Ihre Registrierungsoption:'
|
@@ -485,7 +485,7 @@ de:
|
|
485
485
|
objectives: Ziele
|
486
486
|
related_assemblies: Ähnliche Assemblies
|
487
487
|
related_consultations: Verwandte Konsultationen
|
488
|
-
related_participatory_processes:
|
488
|
+
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
489
489
|
statistics:
|
490
490
|
answers_count: Antworten
|
491
491
|
comments_count: Bemerkungen
|
@@ -552,6 +552,7 @@ de:
|
|
552
552
|
take_part: Teilnehmen
|
553
553
|
conferences:
|
554
554
|
conference:
|
555
|
+
more_info: Mehr Informationen
|
555
556
|
take_part: Teilnehmen
|
556
557
|
index:
|
557
558
|
promoted_conferences: Geförderte Konferenzen
|
@@ -560,7 +561,7 @@ de:
|
|
560
561
|
one: "%{count} Konferenz"
|
561
562
|
other: "%{count} Konferenzen"
|
562
563
|
promoted_conference:
|
563
|
-
more_info: Mehr
|
564
|
+
more_info: Mehr Informationen
|
564
565
|
take_part: Teilnehmen
|
565
566
|
conferences_nav:
|
566
567
|
conference_menu_item: Information
|
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/eu.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr.yml
CHANGED
@@ -2,23 +2,23 @@ fr:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
|
-
assemblies_ids: Assemblées
|
6
|
-
banner_image: Image
|
7
|
-
consultations_ids:
|
8
|
-
copy_categories: Copier
|
9
|
-
copy_components: Copier
|
10
|
-
copy_features:
|
11
|
-
decidim_scope_id:
|
12
|
-
description:
|
5
|
+
assemblies_ids: Assemblées associées
|
6
|
+
banner_image: Image d'en-tête
|
7
|
+
consultations_ids: Votations associées
|
8
|
+
copy_categories: Copier les catégories
|
9
|
+
copy_components: Copier les fonctionnalités
|
10
|
+
copy_features: Copier les fonctionnalités
|
11
|
+
decidim_scope_id: Périmètre
|
12
|
+
description: Description
|
13
13
|
hashtag: Hashtag
|
14
|
-
hero_image: Image de la
|
15
|
-
participatory_processes_ids:
|
16
|
-
promoted:
|
14
|
+
hero_image: Image de la page d'accueil
|
15
|
+
participatory_processes_ids: Concertations associées
|
16
|
+
promoted: Mise en avant
|
17
17
|
published_at: Publié à
|
18
|
-
scope_id:
|
19
|
-
scopes_enabled:
|
18
|
+
scope_id: Périmètre
|
19
|
+
scopes_enabled: Périmètres d'application activés
|
20
20
|
short_description: Brève description
|
21
|
-
show_statistics:
|
21
|
+
show_statistics: Montrer les statistiques
|
22
22
|
slogan: Slogan
|
23
23
|
slug: Slug URL
|
24
24
|
title: Titre
|
@@ -26,7 +26,7 @@ fr:
|
|
26
26
|
full_name: Nom complet
|
27
27
|
conference_user_role:
|
28
28
|
email: Email
|
29
|
-
name:
|
29
|
+
name: Nom
|
30
30
|
role: Rôle
|
31
31
|
errors:
|
32
32
|
models:
|
@@ -44,7 +44,7 @@ fr:
|
|
44
44
|
other: Conférenciers
|
45
45
|
decidim/conference_user_role:
|
46
46
|
one: Rôle d'utilisateur de la conférence
|
47
|
-
other:
|
47
|
+
other: Rôles d'utilisateur de la conférence
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
@@ -53,26 +53,26 @@ fr:
|
|
53
53
|
send_diplomas: Envoyer des certificats de présence
|
54
54
|
conference_copies:
|
55
55
|
new:
|
56
|
-
copy:
|
56
|
+
copy: Copier
|
57
57
|
select: Sélectionnez les données que vous souhaitez dupliquer
|
58
|
-
title:
|
58
|
+
title: Dupliquer la conférence
|
59
59
|
conference_publications:
|
60
60
|
create:
|
61
61
|
error: Une erreur s'est produite lors de la publication de cette conférence.
|
62
62
|
success: Conférence publiée avec succès.
|
63
63
|
destroy:
|
64
64
|
error: Une erreur s'est produite lors de la publication de cette conférence.
|
65
|
-
success: Conférence
|
65
|
+
success: Conférence dépubliée avec succès.
|
66
66
|
conference_registration:
|
67
67
|
confirm:
|
68
68
|
error: Une erreur s'est produite lors de la confirmation de cette inscription à la conférence.
|
69
69
|
success: Inscription à la conférence confirmée avec succès.
|
70
70
|
conference_speakers:
|
71
71
|
create:
|
72
|
-
error: Une erreur s'est produite lors de l'ajout d'un
|
72
|
+
error: Une erreur s'est produite lors de l'ajout d'un conférencier pour cette conférence.
|
73
73
|
success: Conférencier créé avec succès pour cette conférence.
|
74
74
|
destroy:
|
75
|
-
success:
|
75
|
+
success: Conférencier supprimé avec succès pour cette conférence.
|
76
76
|
edit:
|
77
77
|
title: Mettre à jour le conférencier.
|
78
78
|
update: Mettre à jour
|
@@ -82,25 +82,25 @@ fr:
|
|
82
82
|
create: Créer
|
83
83
|
title: Nouveau conférencier
|
84
84
|
update:
|
85
|
-
error: Une erreur s'est produite lors de la mise à jour du
|
86
|
-
success:
|
85
|
+
error: Une erreur s'est produite lors de la mise à jour du conférencier pour cette conférence.
|
86
|
+
success: Conférencier mis à jour avec succès pour cette conférence.
|
87
87
|
conference_user_roles:
|
88
88
|
create:
|
89
|
-
error: Une erreur s'est produite lors de l'ajout d'un
|
90
|
-
success:
|
89
|
+
error: Une erreur s'est produite lors de l'ajout d'un administrateur pour cette conférence.
|
90
|
+
success: Administrateur ajouté avec succès à cette conférence.
|
91
91
|
destroy:
|
92
|
-
success:
|
92
|
+
success: Administrateur supprimé de cette conférence.
|
93
93
|
edit:
|
94
|
-
title: Mettre à jour l'
|
94
|
+
title: Mettre à jour l'administrateur de la conférence.
|
95
95
|
update: Mettre à jour
|
96
96
|
index:
|
97
|
-
conference_admins_title:
|
97
|
+
conference_admins_title: administrateurs de la conférence
|
98
98
|
new:
|
99
99
|
create: Créer
|
100
|
-
title: Nouvel
|
100
|
+
title: Nouvel administrateur de conférence.
|
101
101
|
update:
|
102
|
-
error: Il y avait une erreur mise à jour d'un
|
103
|
-
success:
|
102
|
+
error: Il y avait une erreur mise à jour d'un administrateur pour cette conférence.
|
103
|
+
success: Administrateur mis à jour avec succès pour cette conférence.
|
104
104
|
conferences:
|
105
105
|
create:
|
106
106
|
error: Une erreur s'est produite lors de la création d'une nouvelle conférence.
|
@@ -127,11 +127,11 @@ fr:
|
|
127
127
|
media_links:
|
128
128
|
create:
|
129
129
|
error: Une erreur s'est produite lors de la création d'un nouveau lien multimédia.
|
130
|
-
success:
|
130
|
+
success: Lien média créé avec succès.
|
131
131
|
destroy:
|
132
|
-
success:
|
132
|
+
success: Lien média supprimé avec succès.
|
133
133
|
edit:
|
134
|
-
title: Mettre à jour le lien
|
134
|
+
title: Mettre à jour le lien média.
|
135
135
|
update: Mettre à jour
|
136
136
|
index:
|
137
137
|
media_links_title: Liens médias
|
@@ -140,52 +140,52 @@ fr:
|
|
140
140
|
title: Lien média
|
141
141
|
update:
|
142
142
|
error: Une erreur s'est produite lors de la mise à jour de ce lien multimédia.
|
143
|
-
success:
|
143
|
+
success: Lien média mis à jour avec succès.
|
144
144
|
menu:
|
145
145
|
conferences: Conférences
|
146
146
|
conferences_submenu:
|
147
147
|
attachment_collections: Dossiers
|
148
|
-
attachment_files:
|
148
|
+
attachment_files: Fichiers
|
149
149
|
attachments: Pièces jointes
|
150
150
|
categories: Catégories
|
151
151
|
components: Composants
|
152
152
|
conference_admins: Administrateurs de conférence
|
153
|
-
conference_invites:
|
154
|
-
conference_speakers:
|
153
|
+
conference_invites: Invitations
|
154
|
+
conference_speakers: Conférenciers
|
155
155
|
diploma: Certificat de participation
|
156
156
|
info: Info
|
157
157
|
media_links: Liens médias
|
158
158
|
moderations: Modération
|
159
|
-
partners:
|
159
|
+
partners: Partenaires
|
160
160
|
registration_types: Types d'inscription
|
161
161
|
registrations: Inscriptions
|
162
|
-
user_registrations:
|
162
|
+
user_registrations: Utilisateurs inscrits
|
163
163
|
models:
|
164
164
|
conference:
|
165
165
|
fields:
|
166
166
|
created_at: Créé à
|
167
|
-
promoted:
|
167
|
+
promoted: Mise en avant
|
168
168
|
published: Publié
|
169
169
|
title: Titre
|
170
170
|
conference_speaker:
|
171
171
|
fields:
|
172
|
-
affiliation:
|
172
|
+
affiliation: Organisme
|
173
173
|
full_name: Nom complet
|
174
|
-
position:
|
174
|
+
position: Profession
|
175
175
|
name: Conférencier
|
176
176
|
conference_user_role:
|
177
177
|
fields:
|
178
178
|
email: Email
|
179
|
-
name:
|
179
|
+
name: Nom
|
180
180
|
role: Rôle
|
181
|
-
name:
|
181
|
+
name: Administrateur de la conférence
|
182
182
|
roles:
|
183
183
|
admin: Administrateur
|
184
184
|
collaborator: Collaborateur
|
185
185
|
moderator: Modérateur
|
186
186
|
media_link:
|
187
187
|
fields:
|
188
|
-
date:
|
188
|
+
date: Date
|
189
189
|
link: Lien
|
190
190
|
title: Titre
|
191
191
|
name: Lien média
|
@@ -193,7 +193,7 @@ fr:
|
|
193
193
|
fields:
|
194
194
|
link: Lien
|
195
195
|
logo: Logo
|
196
|
-
name:
|
196
|
+
name: Nom
|
197
197
|
partner_type: Type
|
198
198
|
name: Partenaire
|
199
199
|
types:
|
@@ -201,11 +201,11 @@ fr:
|
|
201
201
|
main_promotor: Promoteur principal
|
202
202
|
registration_type:
|
203
203
|
fields:
|
204
|
-
conference_meetings:
|
204
|
+
conference_meetings: Rencontres de la conférence
|
205
205
|
price: Prix
|
206
206
|
registrations_count: Nombre d'inscriptions
|
207
207
|
title: Titre
|
208
|
-
weight:
|
208
|
+
weight: Rang d'affichage
|
209
209
|
name: Type d'inscription
|
210
210
|
partners:
|
211
211
|
create:
|
@@ -283,7 +283,7 @@ fr:
|
|
283
283
|
title: Programme
|
284
284
|
conference_speakers:
|
285
285
|
index:
|
286
|
-
title:
|
286
|
+
title: Conférenciers
|
287
287
|
conferences:
|
288
288
|
admin:
|
289
289
|
conference_copies:
|
@@ -326,9 +326,9 @@ fr:
|
|
326
326
|
search: Chercher
|
327
327
|
conferences:
|
328
328
|
form:
|
329
|
-
available_slots_help: Laissez
|
329
|
+
available_slots_help: Laissez à 0 si vous avez un nombre illimité de places disponibles.
|
330
330
|
registrations_count:
|
331
|
-
one: Il y a eu
|
331
|
+
one: Il y a eu une inscription.
|
332
332
|
other: Il y a eu %{count} inscriptions.
|
333
333
|
slug_help: 'Les slugs d''URL sont utilisés pour générer les URL qui pointent vers cette conférence. N''accepte que les lettres, les chiffres et les tirets et doit commencer par une lettre. Exemple: %{url}'
|
334
334
|
diplomas:
|
@@ -342,10 +342,10 @@ fr:
|
|
342
342
|
registration: Inscription pour '%{conference_title}'
|
343
343
|
partners:
|
344
344
|
index:
|
345
|
-
title:
|
345
|
+
title: Partenaires
|
346
346
|
registration_types:
|
347
347
|
form:
|
348
|
-
select_conference_meetings: Sélectionner des
|
348
|
+
select_conference_meetings: Sélectionner des rencontres
|
349
349
|
index:
|
350
350
|
title: Types d'inscription
|
351
351
|
send_conference_diploma_mailer:
|
@@ -364,17 +364,17 @@ fr:
|
|
364
364
|
confirm: Confirmer
|
365
365
|
show:
|
366
366
|
free: Libre
|
367
|
-
going:
|
368
|
-
no_slots_available:
|
369
|
-
registration:
|
367
|
+
going: Participe
|
368
|
+
no_slots_available: Il ne reste plus de place
|
369
|
+
registration: Inscription
|
370
370
|
conference_program:
|
371
371
|
program_meeting:
|
372
372
|
content: Contenu
|
373
|
-
location:
|
374
|
-
speakers:
|
373
|
+
location: Lieu
|
374
|
+
speakers: Conférenciers
|
375
375
|
streaming: Diffusion
|
376
376
|
show:
|
377
|
-
day:
|
377
|
+
day: Jour
|
378
378
|
program: Programme
|
379
379
|
conference_registration_mailer:
|
380
380
|
confirmation:
|
@@ -408,26 +408,26 @@ fr:
|
|
408
408
|
go_to_twitter: Aller sur Twitter
|
409
409
|
conference_speakers:
|
410
410
|
index:
|
411
|
-
speakers:
|
411
|
+
speakers: Conférenciers
|
412
412
|
conferences:
|
413
413
|
partners:
|
414
|
-
collaborators:
|
415
|
-
main_promotors:
|
414
|
+
collaborators: Partenaires
|
415
|
+
main_promotors: Organisateurs
|
416
416
|
show:
|
417
417
|
login_as: Vous êtes connecté en tant que %{name} <%{email}>
|
418
|
-
make_conference_registration: '
|
419
|
-
register:
|
418
|
+
make_conference_registration: 'Inscrivez-vous à la conférence:'
|
419
|
+
register: S'inscrire
|
420
420
|
content_blocks:
|
421
421
|
highlighted_conferences:
|
422
|
-
name:
|
422
|
+
name: Conférences mises en avant
|
423
423
|
index:
|
424
424
|
title: Conférences
|
425
425
|
mailer:
|
426
426
|
conference_registration_mailer:
|
427
427
|
confirmation:
|
428
|
-
subject:
|
428
|
+
subject: Votre inscription à la conférence a été confirmée
|
429
429
|
pending_validation:
|
430
|
-
subject:
|
430
|
+
subject: Votre inscription à la conférence est en attente de confirmation
|
431
431
|
invite_join_conference_mailer:
|
432
432
|
invite:
|
433
433
|
subject: Invitation à participer à une conférence
|
@@ -438,7 +438,7 @@ fr:
|
|
438
438
|
conference_invite:
|
439
439
|
fields:
|
440
440
|
email: Email
|
441
|
-
name:
|
441
|
+
name: Nom
|
442
442
|
registration_type: Type d'inscription
|
443
443
|
sent_at: Envoyé à
|
444
444
|
status: Statut
|
@@ -449,12 +449,12 @@ fr:
|
|
449
449
|
conference_registration:
|
450
450
|
fields:
|
451
451
|
email: Email
|
452
|
-
name:
|
452
|
+
name: Nom
|
453
453
|
registration_type: Type d'inscription
|
454
454
|
state: Etat
|
455
455
|
states:
|
456
456
|
confirmed: Confirmé
|
457
|
-
pending:
|
457
|
+
pending: En attente
|
458
458
|
pages:
|
459
459
|
home:
|
460
460
|
highlighted_conferences:
|
@@ -462,7 +462,7 @@ fr:
|
|
462
462
|
see_all_conferences: Voir toutes les conférences
|
463
463
|
photo:
|
464
464
|
show:
|
465
|
-
close_modal: Fermer
|
465
|
+
close_modal: Fermer la fenêtre
|
466
466
|
photo: Photo
|
467
467
|
photos_list:
|
468
468
|
show:
|
@@ -471,12 +471,12 @@ fr:
|
|
471
471
|
index:
|
472
472
|
choose_an_option: 'Choisissez votre option d''inscription:'
|
473
473
|
login_as: Vous êtes connecté en tant que %{name} <%{email}>
|
474
|
-
register:
|
474
|
+
register: S'inscrire
|
475
475
|
title: Types d'inscription
|
476
476
|
shared:
|
477
477
|
conference_user_login:
|
478
478
|
already_account: Avez-vous déjà un compte dans decidim?
|
479
|
-
new_user: Nouvel utilisateur?
|
479
|
+
new_user: Nouvel utilisateur ?
|
480
480
|
sign_in: Connectez-vous pour vous inscrire à la conférence
|
481
481
|
sign_up: Créez un compte dans decidim pour vous inscrire à la conférence
|
482
482
|
show:
|
@@ -484,22 +484,22 @@ fr:
|
|
484
484
|
introduction: introduction
|
485
485
|
objectives: Objectifs
|
486
486
|
related_assemblies: Assemblées connexes
|
487
|
-
related_consultations:
|
488
|
-
related_participatory_processes:
|
487
|
+
related_consultations: Votations connexes
|
488
|
+
related_participatory_processes: Concertations associées
|
489
489
|
statistics:
|
490
490
|
answers_count: Réponses
|
491
|
-
comments_count:
|
491
|
+
comments_count: Commentaires
|
492
492
|
conference_count: Conférences
|
493
|
-
debates_count:
|
494
|
-
endorsements_count:
|
493
|
+
debates_count: Débats
|
494
|
+
endorsements_count: Soutiens
|
495
495
|
headline: Activité
|
496
|
-
meetings_count:
|
496
|
+
meetings_count: Rencontres
|
497
497
|
orders_count: Votes
|
498
498
|
pages_count: Pages
|
499
|
-
posts_count:
|
499
|
+
posts_count: Articles
|
500
500
|
projects_count: Projets
|
501
|
-
proposals_count:
|
502
|
-
results_count:
|
501
|
+
proposals_count: Propositions
|
502
|
+
results_count: Réalisations
|
503
503
|
surveys_count: Enquêtes
|
504
504
|
users_count: Participants
|
505
505
|
votes_count: Votes
|
@@ -510,17 +510,17 @@ fr:
|
|
510
510
|
conference_registration_validation_pending:
|
511
511
|
notification_title: Votre inscription à la conférence <a href="%{resource_url}">%{resource_title}</a> est en attente de confirmation.
|
512
512
|
conference_registrations_over_percentage:
|
513
|
-
email_intro: Les
|
513
|
+
email_intro: Les places réservées pour la conférence "%{resource_title}" dépassent %{percentage}%.
|
514
514
|
email_outro: Vous avez reçu cette notification car vous êtes administrateur de l'espace participatif de la conférence.
|
515
|
-
email_subject: Les
|
516
|
-
notification_title: Les
|
515
|
+
email_subject: Les places réservées pour la conférence "%{resource_title}" dépassent %{percentage}%
|
516
|
+
notification_title: Les places réservées pour la conférence <a href="%{resource_path}">%{resource_title}</a> dépassent %{percentage}%.
|
517
517
|
conference_updated:
|
518
518
|
email_intro: 'La conférence "%{resource_title}" a été mise à jour. Vous pouvez lire la nouvelle version depuis sa page:'
|
519
519
|
email_outro: Vous avez reçu cette notification car vous suivez la conférence "%{resource_title}". Vous pouvez le retirer du lien précédent.
|
520
520
|
email_subject: La conférence "%{resource_title}" a été mise à jour
|
521
521
|
notification_title: La conférence <a href="%{resource_path}">%{resource_title}</a> été mise à jour.
|
522
522
|
registrations_enabled:
|
523
|
-
email_intro: 'La conférence "%{resource_title}" a
|
523
|
+
email_intro: 'La conférence "%{resource_title}" a autorisé les inscriptions. Vous pouvez vous inscrire sur sa page:'
|
524
524
|
email_outro: Vous avez reçu cette notification car vous suivez la conférence "%{resource_title}". Vous pouvez le retirer du lien précédent.
|
525
525
|
email_subject: La conférence "%{resource_title}" a permis les enregistrements.
|
526
526
|
notification_title: La conférence <a href="%{resource_path}">%{resource_title}</a> a permis les enregistrements.
|
@@ -546,25 +546,26 @@ fr:
|
|
546
546
|
layouts:
|
547
547
|
decidim:
|
548
548
|
conference_hero:
|
549
|
-
register:
|
549
|
+
register: S'inscrire
|
550
550
|
conference_widgets:
|
551
551
|
show:
|
552
|
-
take_part:
|
552
|
+
take_part: Participer
|
553
553
|
conferences:
|
554
554
|
conference:
|
555
|
-
|
555
|
+
more_info: Plus d'informations
|
556
|
+
take_part: Participer
|
556
557
|
index:
|
557
|
-
promoted_conferences: Conférences
|
558
|
+
promoted_conferences: Conférences mises en avant
|
558
559
|
order_by_conferences:
|
559
560
|
conferences:
|
560
561
|
one: "%{count} conférence"
|
561
562
|
other: "%{count} conférences"
|
562
563
|
promoted_conference:
|
563
564
|
more_info: Plus d'informations
|
564
|
-
take_part:
|
565
|
+
take_part: Participer
|
565
566
|
conferences_nav:
|
566
567
|
conference_menu_item: Information
|
567
|
-
conference_partners_menu_item:
|
568
|
-
conference_speaker_menu_item:
|
568
|
+
conference_partners_menu_item: Partenaires
|
569
|
+
conference_speaker_menu_item: Conférenciers
|
569
570
|
media: Médias
|
570
571
|
venues: Lieux
|