decidim-conferences 0.29.1 → 0.30.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +1 -1
- data/app/commands/decidim/conferences/admin/copy_conference.rb +2 -12
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/controllers/decidim/conferences/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +17 -4
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +0 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +7 -12
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -7
- data/app/models/decidim/conference.rb +19 -0
- data/app/models/decidim/conferences/conference_invite.rb +10 -0
- data/app/permissions/decidim/conferences/permissions.rb +11 -4
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/conference_presenter.rb +19 -0
- data/app/serializers/decidim/conferences/conference_serializer.rb +24 -0
- data/app/serializers/decidim/conferences/download_your_data_conference_invite_serializer.rb +3 -4
- data/app/serializers/decidim/conferences/download_your_data_conference_registration_serializer.rb +4 -4
- data/app/serializers/decidim/conferences/open_data_conference_serializer.rb +30 -0
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +0 -3
- data/app/views/decidim/conferences/admin/conferences/_actions.html.erb +35 -0
- data/app/views/decidim/conferences/admin/conferences/_conference_row.html.erb +28 -0
- data/app/views/decidim/conferences/admin/conferences/_conferences_thead.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +27 -8
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +14 -52
- data/app/views/decidim/conferences/admin/conferences/manage_trash.html.erb +20 -0
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +13 -7
- data/app/views/decidim/conferences/conference_program/show.html.erb +3 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +4 -1
- data/app/views/decidim/conferences/conferences/index.html.erb +3 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +6 -6
- data/app/views/decidim/conferences/media/index.html.erb +3 -1
- data/app/views/decidim/conferences/registration_types/index.html.erb +3 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +1 -1
- data/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/locales/ar.yml +12 -24
- data/config/locales/bg.yml +0 -24
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +14 -0
- data/config/locales/ca.yml +74 -14
- data/config/locales/cs.yml +76 -16
- data/config/locales/de.yml +75 -15
- data/config/locales/el.yml +0 -24
- data/config/locales/en.yml +82 -22
- data/config/locales/es-MX.yml +75 -15
- data/config/locales/es-PY.yml +78 -18
- data/config/locales/es.yml +71 -11
- data/config/locales/eu.yml +229 -169
- data/config/locales/fi-plain.yml +76 -16
- data/config/locales/fi.yml +82 -22
- data/config/locales/fr-CA.yml +35 -16
- data/config/locales/fr.yml +35 -16
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -24
- data/config/locales/hu.yml +0 -24
- data/config/locales/id-ID.yml +0 -24
- data/config/locales/it.yml +0 -24
- data/config/locales/ja.yml +73 -13
- data/config/locales/lb.yml +0 -22
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -24
- data/config/locales/nl.yml +0 -24
- data/config/locales/no.yml +0 -24
- data/config/locales/pl.yml +0 -24
- data/config/locales/pt-BR.yml +0 -24
- data/config/locales/pt.yml +0 -24
- data/config/locales/ro-RO.yml +13 -15
- data/config/locales/sk.yml +0 -24
- data/config/locales/sv.yml +66 -25
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/zh-CN.yml +0 -24
- data/config/locales/zh-TW.yml +0 -24
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +1 -1
- data/db/migrate/20240822161330_add_deleted_at_to_decidim_conferences.rb +8 -0
- data/decidim-conferences.gemspec +2 -7
- data/lib/decidim/api/conference_media_link_type.rb +4 -4
- data/lib/decidim/api/conference_partner_type.rb +4 -4
- data/lib/decidim/api/conference_speaker_type.rb +7 -8
- data/lib/decidim/api/conference_type.rb +17 -19
- data/lib/decidim/conferences/admin_engine.rb +87 -58
- data/lib/decidim/conferences/conference_diploma_pdf.rb +242 -0
- data/lib/decidim/conferences/engine.rb +6 -1
- data/lib/decidim/conferences/menu.rb +23 -9
- data/lib/decidim/conferences/participatory_space.rb +13 -0
- data/lib/decidim/conferences/seeds.rb +134 -115
- data/lib/decidim/conferences/test/factories.rb +10 -9
- data/lib/decidim/conferences/version.rb +1 -1
- data/lib/decidim/conferences.rb +1 -0
- metadata +26 -43
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -23
data/config/locales/no.yml
CHANGED
@@ -22,8 +22,6 @@
|
|
22
22
|
published_at: Publisert på
|
23
23
|
registration_terms: Registreringsvilkår
|
24
24
|
registrations_enabled: Registreringer aktivert
|
25
|
-
scope_id: Tema
|
26
|
-
scopes_enabled: Aktiverte temaer
|
27
25
|
short_description: Kort beskrivelse
|
28
26
|
show_statistics: Vis statistikk
|
29
27
|
sign_date: Underskriftsdato
|
@@ -100,13 +98,11 @@
|
|
100
98
|
destroy:
|
101
99
|
success: Konferansetaler ble slettet.
|
102
100
|
edit:
|
103
|
-
title: Oppdater konferansetaler.
|
104
101
|
update: Oppdater
|
105
102
|
index:
|
106
103
|
conference_speakers_title: Konferansetalere
|
107
104
|
new:
|
108
105
|
create: Opprett
|
109
|
-
title: Ny konferansetaler.
|
110
106
|
update:
|
111
107
|
error: Det oppstod et problem med å oppdatere denne konferansetaleren.
|
112
108
|
success: Konferansetaler ble oppdatert.
|
@@ -117,11 +113,9 @@
|
|
117
113
|
destroy:
|
118
114
|
success: Konferanse administrator ble fjernet.
|
119
115
|
edit:
|
120
|
-
title: Oppdater konferanse administrator.
|
121
116
|
update: Oppdater
|
122
117
|
new:
|
123
118
|
create: Opprett
|
124
|
-
title: Ny konferanse administrator.
|
125
119
|
update:
|
126
120
|
error: Det oppstod et problem med å oppdatere denne konferanse administratoren.
|
127
121
|
success: Konferanse administrator ble oppdatert.
|
@@ -150,38 +144,25 @@
|
|
150
144
|
media_links:
|
151
145
|
create:
|
152
146
|
error: Det oppstod et problem med å opprette en ny media lenke.
|
153
|
-
success: Media Lenke opprettet.
|
154
|
-
destroy:
|
155
|
-
success: Media Lenke slettet.
|
156
147
|
edit:
|
157
|
-
title: Oppdater media lenke.
|
158
148
|
update: Oppdater
|
159
|
-
index:
|
160
|
-
media_links_title: Media Lenker
|
161
149
|
new:
|
162
150
|
create: Opprett
|
163
|
-
title: Media Lenke
|
164
151
|
update:
|
165
152
|
error: Det oppstod et problem med å oppdatere denne media lenken.
|
166
|
-
success: Media Lenke ble oppdatert.
|
167
153
|
menu:
|
168
154
|
conferences: Konferanser
|
169
155
|
conferences_submenu:
|
170
156
|
attachment_collections: Mapper
|
171
157
|
attachment_files: Filer
|
172
158
|
attachments: Vedlegg
|
173
|
-
categories: Kategorier
|
174
159
|
components: Komponenter
|
175
160
|
conference_admins: Konferanse administratorer
|
176
161
|
conference_invites: Invitasjoner
|
177
162
|
conference_speakers: Talere
|
178
|
-
diploma: Sertifikat for Oppmøte
|
179
|
-
media_links: Media Lenker
|
180
163
|
moderations: Moderering
|
181
164
|
partners: Partnere
|
182
|
-
registration_types: Registrerings Typer
|
183
165
|
registrations: Registreringer
|
184
|
-
user_registrations: Bruker Registreringer
|
185
166
|
models:
|
186
167
|
conference:
|
187
168
|
fields:
|
@@ -210,7 +191,6 @@
|
|
210
191
|
date: Dato
|
211
192
|
link: Lenke
|
212
193
|
title: Tittel
|
213
|
-
name: Media Lenke
|
214
194
|
partner:
|
215
195
|
fields:
|
216
196
|
link: Lenke
|
@@ -236,7 +216,6 @@
|
|
236
216
|
destroy:
|
237
217
|
success: Konferansepartner ble fjernet.
|
238
218
|
edit:
|
239
|
-
title: Oppdater partner.
|
240
219
|
update: Oppdater
|
241
220
|
new:
|
242
221
|
create: Opprett
|
@@ -258,7 +237,6 @@
|
|
258
237
|
destroy:
|
259
238
|
success: Konferanse registrerings-typen ble fjernet.
|
260
239
|
edit:
|
261
|
-
title: Oppdater registreringstype.
|
262
240
|
update: Oppdater
|
263
241
|
new:
|
264
242
|
create: Opprett
|
@@ -344,7 +322,6 @@
|
|
344
322
|
diplomas:
|
345
323
|
edit:
|
346
324
|
save: Lagre
|
347
|
-
title: Sertifikat for Oppmøte
|
348
325
|
invite_join_conference_mailer:
|
349
326
|
invite:
|
350
327
|
decline: Avvis invitasjon '%{conference_title}'
|
@@ -363,7 +340,6 @@
|
|
363
340
|
diploma_html: Du finner sertifikatet for deltagelse for konferansen <a href="%{url}">%{title}</a> i vedleggene.
|
364
341
|
diploma_user:
|
365
342
|
attendance_verified_by: Oppmøte verifisert av
|
366
|
-
certificate_of_attendance: Sertifikat for Oppmøte
|
367
343
|
certificate_of_attendance_description: Dette er for å bekrefte at <strong>%{user}</strong> har møtt opp og deltatt i <strong>%{title}</strong> holdt på <strong>%{location}</strong> på <strong>%{start} - %{end}</strong>
|
368
344
|
send_diploma:
|
369
345
|
error: Det oppstod et problem med å sende konferanses deltakelsesbevis.
|
data/config/locales/pl.yml
CHANGED
@@ -22,8 +22,6 @@ pl:
|
|
22
22
|
published_at: Opublikowano
|
23
23
|
registration_terms: Warunki rejestracji
|
24
24
|
registrations_enabled: Rejestracja włączona
|
25
|
-
scope_id: Zakres
|
26
|
-
scopes_enabled: Zakresy dozwolone
|
27
25
|
short_description: Krótki opis
|
28
26
|
show_statistics: Pokaż statystyki
|
29
27
|
sign_date: Data podpisania
|
@@ -126,13 +124,11 @@ pl:
|
|
126
124
|
destroy:
|
127
125
|
success: Prelegent został pomyślnie usunięty z tej konferencji.
|
128
126
|
edit:
|
129
|
-
title: Zaktualizuj prelegenta konferencji.
|
130
127
|
update: Aktualizuj
|
131
128
|
index:
|
132
129
|
conference_speakers_title: Prelegenci konferencyjni
|
133
130
|
new:
|
134
131
|
create: Utwórz
|
135
|
-
title: Nowy prelegent konferencyjny.
|
136
132
|
publish:
|
137
133
|
invalid: Podczas publikowania tego zespołu wystąpił błąd.
|
138
134
|
success: Opublikowano mówcę konferencyjnego.
|
@@ -149,13 +145,11 @@ pl:
|
|
149
145
|
destroy:
|
150
146
|
success: Administrator konferencji usunięty pomyślnie.
|
151
147
|
edit:
|
152
|
-
title: Zaktualizuj administratora konferencji.
|
153
148
|
update: Aktualizuj
|
154
149
|
index:
|
155
150
|
conference_admins_title: Administratorzy konferencji
|
156
151
|
new:
|
157
152
|
create: Utwórz
|
158
|
-
title: Nowy administrator konferencji.
|
159
153
|
update:
|
160
154
|
error: Wystąpił błąd podczas aktualizacji administratora konferencji.
|
161
155
|
success: Administrator konferencji zaktualizowany pomyślnie.
|
@@ -185,40 +179,27 @@ pl:
|
|
185
179
|
media_links:
|
186
180
|
create:
|
187
181
|
error: Podczas tworzenia nowego linku do multimediów wystąpił błąd.
|
188
|
-
success: Link do multimediów został utworzony.
|
189
|
-
destroy:
|
190
|
-
success: Link do multimediów został usunięty.
|
191
182
|
edit:
|
192
|
-
title: Zaktualizuj link do multimediów.
|
193
183
|
update: Aktualizuj
|
194
|
-
index:
|
195
|
-
media_links_title: Linki do multimediów
|
196
184
|
new:
|
197
185
|
create: Utwórz
|
198
|
-
title: Link do multimediów
|
199
186
|
update:
|
200
187
|
error: Wystąpił błąd podczas aktualizowania tego linku multimedialnego.
|
201
|
-
success: Link do multimediów został pomyślnie zaktualizowany.
|
202
188
|
menu:
|
203
189
|
conferences: Konferencje
|
204
190
|
conferences_submenu:
|
205
191
|
attachment_collections: Foldery
|
206
192
|
attachment_files: Pliki
|
207
193
|
attachments: Załączniki
|
208
|
-
categories: Kategorie
|
209
194
|
components: Komponenty
|
210
195
|
conference_admins: Administratorzy konferencji
|
211
196
|
conference_invites: Zaprasza
|
212
197
|
conference_speakers: Prelegenci
|
213
|
-
diploma: Certyfikat uczestnictwa
|
214
198
|
info: O tej konferencji
|
215
|
-
media_links: Linki do multimediów
|
216
199
|
moderations: Moderacje
|
217
200
|
partners: Partnerzy
|
218
|
-
registration_types: Typ rejestracji
|
219
201
|
registrations: Rejestracje
|
220
202
|
see_conference: Zobacz konferencję
|
221
|
-
user_registrations: Rejestracje użytkowników
|
222
203
|
models:
|
223
204
|
conference:
|
224
205
|
fields:
|
@@ -247,7 +228,6 @@ pl:
|
|
247
228
|
date: Data
|
248
229
|
link: Link
|
249
230
|
title: Tytuł
|
250
|
-
name: Link do multimediów
|
251
231
|
partner:
|
252
232
|
fields:
|
253
233
|
link: Link
|
@@ -273,7 +253,6 @@ pl:
|
|
273
253
|
destroy:
|
274
254
|
success: Partner został usunięty z tej konferencji.
|
275
255
|
edit:
|
276
|
-
title: Zaktualizuj partnera.
|
277
256
|
update: Aktualizuj
|
278
257
|
new:
|
279
258
|
create: Utwórz
|
@@ -295,7 +274,6 @@ pl:
|
|
295
274
|
destroy:
|
296
275
|
success: Typ rejestracji został usunięty.
|
297
276
|
edit:
|
298
|
-
title: Zaktualizuj typ rejestracji.
|
299
277
|
update: Aktualizuj
|
300
278
|
new:
|
301
279
|
create: Utwórz
|
@@ -392,7 +370,6 @@ pl:
|
|
392
370
|
diplomas:
|
393
371
|
edit:
|
394
372
|
save: Zapisz
|
395
|
-
title: Certyfikat uczestnictwa
|
396
373
|
invite_join_conference_mailer:
|
397
374
|
invite:
|
398
375
|
decline: Odrzuć zaproszenie "%{conference_title}"
|
@@ -412,7 +389,6 @@ pl:
|
|
412
389
|
diploma_html: W załącznikach znajdziesz certyfikat uczestnictwa w konferencji <a href="%{url}">%{title}</a>.
|
413
390
|
diploma_user:
|
414
391
|
attendance_verified_by: Uczestnictwo zweryfikowane przez
|
415
|
-
certificate_of_attendance: Certyfikat uczestnictwa
|
416
392
|
certificate_of_attendance_description: 'Zaświadcza się, że <strong>%{user}</strong> wziął/wzięła udział w konferencji <strong>%{title}</strong>, która odbyła się w <strong>%{location}</strong> w terminie: <strong>%{start} - %{end}</strong>'
|
417
393
|
send_diploma:
|
418
394
|
error: Wystąpił błąd podczas wysyłania certyfikatów uczestnictwa.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -22,8 +22,6 @@ pt-BR:
|
|
22
22
|
published_at: Publicado em
|
23
23
|
registration_terms: Termos de registro
|
24
24
|
registrations_enabled: Inscrições habilitadas
|
25
|
-
scope_id: Escopo
|
26
|
-
scopes_enabled: Escopos habilitados
|
27
25
|
short_description: Pequena descrição
|
28
26
|
show_statistics: Mostre estatisticas
|
29
27
|
sign_date: Data de assinatura
|
@@ -119,13 +117,11 @@ pt-BR:
|
|
119
117
|
destroy:
|
120
118
|
success: Alto-falante excluído com sucesso para esta conferência.
|
121
119
|
edit:
|
122
|
-
title: Atualize o orador da conferência.
|
123
120
|
update: Atualizar
|
124
121
|
index:
|
125
122
|
conference_speakers_title: Alto-falantes da conferência
|
126
123
|
new:
|
127
124
|
create: Crio
|
128
|
-
title: Novo orador da conferência.
|
129
125
|
publish:
|
130
126
|
invalid: Ocorreu um problema ao publicar esta reunião.
|
131
127
|
success: Alto-falante excluído com sucesso para esta conferência.
|
@@ -142,13 +138,11 @@ pt-BR:
|
|
142
138
|
destroy:
|
143
139
|
success: Usuário removido com sucesso desta conferência.
|
144
140
|
edit:
|
145
|
-
title: Atualize o usuário da conferência.
|
146
141
|
update: Atualizar
|
147
142
|
index:
|
148
143
|
conference_admins_title: Administradores da conferência
|
149
144
|
new:
|
150
145
|
create: Crio
|
151
|
-
title: Novo usuário da conferência.
|
152
146
|
update:
|
153
147
|
error: Houve um erro ao atualizar um usuário para esta conferência.
|
154
148
|
success: Usuário atualizado com sucesso para esta conferência.
|
@@ -178,39 +172,26 @@ pt-BR:
|
|
178
172
|
media_links:
|
179
173
|
create:
|
180
174
|
error: Ocorreu um erro ao criar um novo link de mídia.
|
181
|
-
success: Link de mídia criado com êxito.
|
182
|
-
destroy:
|
183
|
-
success: Recurso excluído com sucesso.
|
184
175
|
edit:
|
185
|
-
title: Atualize o link de mídia.
|
186
176
|
update: Atualizar
|
187
|
-
index:
|
188
|
-
media_links_title: Links de Mídia
|
189
177
|
new:
|
190
178
|
create: Criar
|
191
|
-
title: Links de Mídia
|
192
179
|
update:
|
193
180
|
error: Houve um erro ao atualizar este link de mídia.
|
194
|
-
success: Link de mídia atualizado com êxito.
|
195
181
|
menu:
|
196
182
|
conferences: Conferências
|
197
183
|
conferences_submenu:
|
198
184
|
attachment_collections: Pastas
|
199
185
|
attachment_files: arquivos
|
200
186
|
attachments: Anexos
|
201
|
-
categories: Categorias
|
202
187
|
components: Componentes
|
203
188
|
conference_admins: Administradores da conferência
|
204
189
|
conference_invites: Convites
|
205
190
|
conference_speakers: caixas de som
|
206
|
-
diploma: Certificado de participação
|
207
191
|
info: Links sobre esta conferência
|
208
|
-
media_links: Links de Mídia
|
209
192
|
moderations: Moderações
|
210
193
|
partners: Parceiros
|
211
|
-
registration_types: Tipos de registro
|
212
194
|
registrations: Inscrições
|
213
|
-
user_registrations: Registros de usuários
|
214
195
|
models:
|
215
196
|
conference:
|
216
197
|
fields:
|
@@ -239,7 +220,6 @@ pt-BR:
|
|
239
220
|
date: Encontro
|
240
221
|
link: Link
|
241
222
|
title: Título
|
242
|
-
name: Links de Mídia
|
243
223
|
partner:
|
244
224
|
fields:
|
245
225
|
link: Link
|
@@ -265,7 +245,6 @@ pt-BR:
|
|
265
245
|
destroy:
|
266
246
|
success: Alto-falante excluído com sucesso para esta conferência.
|
267
247
|
edit:
|
268
|
-
title: Atualizar parceiro.
|
269
248
|
update: Atualizar
|
270
249
|
new:
|
271
250
|
create: Criar
|
@@ -287,7 +266,6 @@ pt-BR:
|
|
287
266
|
destroy:
|
288
267
|
success: Tipo de registro removido com sucesso desta conferência.
|
289
268
|
edit:
|
290
|
-
title: Atualize o tipo de registro.
|
291
269
|
update: Atualizar
|
292
270
|
new:
|
293
271
|
create: Crio
|
@@ -382,7 +360,6 @@ pt-BR:
|
|
382
360
|
diplomas:
|
383
361
|
edit:
|
384
362
|
save: Salve
|
385
|
-
title: Certificado de participação
|
386
363
|
invite_join_conference_mailer:
|
387
364
|
invite:
|
388
365
|
decline: Recusar convite '%{conference_title}'
|
@@ -402,7 +379,6 @@ pt-BR:
|
|
402
379
|
diploma_html: Você encontrará o certificado de participação para a conferência <a href="%{url}">%{title}</a> nos anexos.
|
403
380
|
diploma_user:
|
404
381
|
attendance_verified_by: Atendimento verificado por
|
405
|
-
certificate_of_attendance: Certificado de participação
|
406
382
|
certificate_of_attendance_description: Certifica-se que <strong>%{user}</strong> participou e participou nos <strong>%{title}</strong> realizados em <strong>%{location}</strong> em <strong>%{start} - %{end}</strong>
|
407
383
|
send_diploma:
|
408
384
|
error: Houve um problema ao enviar os certificados de participação da conferência.
|
data/config/locales/pt.yml
CHANGED
@@ -22,8 +22,6 @@ pt:
|
|
22
22
|
published_at: Publicado em
|
23
23
|
registration_terms: Termos de registo
|
24
24
|
registrations_enabled: Registos ativados
|
25
|
-
scope_id: Âmbito
|
26
|
-
scopes_enabled: Âmbitos ativados
|
27
25
|
short_description: Breve descrição
|
28
26
|
show_statistics: Mostrar estatísticas
|
29
27
|
sign_date: Data de assinatura
|
@@ -100,13 +98,11 @@ pt:
|
|
100
98
|
destroy:
|
101
99
|
success: Orador da conferência eliminado corretamente.
|
102
100
|
edit:
|
103
|
-
title: Atualizar orador da conferência.
|
104
101
|
update: Atualizar
|
105
102
|
index:
|
106
103
|
conference_speakers_title: Oradores da conferência
|
107
104
|
new:
|
108
105
|
create: Criar
|
109
|
-
title: Novo orador da conferência.
|
110
106
|
update:
|
111
107
|
error: Ocorreu um problema ao atualizar o orador desta conferência.
|
112
108
|
success: Orador da conferência atualizado corretamente.
|
@@ -117,11 +113,9 @@ pt:
|
|
117
113
|
destroy:
|
118
114
|
success: Administrador da conferência eliminado corretamente.
|
119
115
|
edit:
|
120
|
-
title: Atualizar administrador da conferência.
|
121
116
|
update: Atualizar
|
122
117
|
new:
|
123
118
|
create: Criar
|
124
|
-
title: Novo administrador da conferência.
|
125
119
|
update:
|
126
120
|
error: Ocorreu um problema ao atualizar o administrador desta conferência.
|
127
121
|
success: Administrador da conferência atualizado corretamente.
|
@@ -150,38 +144,25 @@ pt:
|
|
150
144
|
media_links:
|
151
145
|
create:
|
152
146
|
error: Ocorreu um problema ao criar uma nova hiperligação de multimédia.
|
153
|
-
success: Hiperligação de multimédia criado corretamente.
|
154
|
-
destroy:
|
155
|
-
success: Hiperligação de Multimédia eliminado corretamente.
|
156
147
|
edit:
|
157
|
-
title: Atualizar hiperligação de multimédia.
|
158
148
|
update: Atualizar
|
159
|
-
index:
|
160
|
-
media_links_title: Hiperligação de Multimédia
|
161
149
|
new:
|
162
150
|
create: Criar
|
163
|
-
title: Hiperligação de Multimédia
|
164
151
|
update:
|
165
152
|
error: Ocorreu um problema ao atualizar esta hiperligação de multimédia.
|
166
|
-
success: Hiperligação de multimédia atualizada corretamente.
|
167
153
|
menu:
|
168
154
|
conferences: Conferências
|
169
155
|
conferences_submenu:
|
170
156
|
attachment_collections: Pastas
|
171
157
|
attachment_files: Ficheiros
|
172
158
|
attachments: Anexos
|
173
|
-
categories: Categorias
|
174
159
|
components: Componentes
|
175
160
|
conference_admins: Administradores da conferência
|
176
161
|
conference_invites: Convites
|
177
162
|
conference_speakers: Oradores
|
178
|
-
diploma: Certificado de Participação
|
179
|
-
media_links: Hiperligações de Multimédia
|
180
163
|
moderations: Moderações
|
181
164
|
partners: Parceiros
|
182
|
-
registration_types: Tipos de Registo
|
183
165
|
registrations: Registos
|
184
|
-
user_registrations: Registos de Utilizador
|
185
166
|
models:
|
186
167
|
conference:
|
187
168
|
fields:
|
@@ -210,7 +191,6 @@ pt:
|
|
210
191
|
date: Data
|
211
192
|
link: Hiperligação
|
212
193
|
title: Título
|
213
|
-
name: Hiperligação de Multimédia
|
214
194
|
partner:
|
215
195
|
fields:
|
216
196
|
link: Hiperligação
|
@@ -236,7 +216,6 @@ pt:
|
|
236
216
|
destroy:
|
237
217
|
success: Parceiro da conferência eliminado corretamente.
|
238
218
|
edit:
|
239
|
-
title: Atualizar parceiro.
|
240
219
|
update: Atualizar
|
241
220
|
new:
|
242
221
|
create: Criar
|
@@ -258,7 +237,6 @@ pt:
|
|
258
237
|
destroy:
|
259
238
|
success: Tipo de registo da conferência eliminado corretamente.
|
260
239
|
edit:
|
261
|
-
title: Atualizar tipo de registo.
|
262
240
|
update: Atualizar
|
263
241
|
new:
|
264
242
|
create: Criar
|
@@ -344,7 +322,6 @@ pt:
|
|
344
322
|
diplomas:
|
345
323
|
edit:
|
346
324
|
save: Guardar
|
347
|
-
title: Certificado de Participação
|
348
325
|
invite_join_conference_mailer:
|
349
326
|
invite:
|
350
327
|
decline: Recusar convite '%{conference_title}'
|
@@ -363,7 +340,6 @@ pt:
|
|
363
340
|
diploma_html: Encontrará o certificado de participação para a conferência <a href="%{url}">%{title}</a> nos anexos.
|
364
341
|
diploma_user:
|
365
342
|
attendance_verified_by: Participação verificada por
|
366
|
-
certificate_of_attendance: Certificado de Participação
|
367
343
|
certificate_of_attendance_description: Certifica-se que <strong>%{user}</strong> participou e fez parte de <strong>%{title}</strong> que tomou lugar em <strong>%{location}</strong> em <strong>%{start} - %{end}</strong>
|
368
344
|
send_diploma:
|
369
345
|
error: Ocorreu um problema ao enviar os certificados de participação da conferência.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -22,8 +22,6 @@ ro:
|
|
22
22
|
published_at: Publicat la
|
23
23
|
registration_terms: Condiții de înscriere
|
24
24
|
registrations_enabled: Înregistrare activată
|
25
|
-
scope_id: Domeniu de interes
|
26
|
-
scopes_enabled: Domenii activate
|
27
25
|
short_description: Descriere scurtă
|
28
26
|
show_statistics: Arată statistici
|
29
27
|
sign_date: Data semnării
|
@@ -116,13 +114,13 @@ ro:
|
|
116
114
|
destroy:
|
117
115
|
success: Difuzorul conferinţei a fost şters.
|
118
116
|
edit:
|
119
|
-
title: Actualizați
|
117
|
+
title: Actualizați vorbitorul în cadrul conferinței
|
120
118
|
update: Actualizare
|
121
119
|
index:
|
122
120
|
conference_speakers_title: Vorbitori de conferințe
|
123
121
|
new:
|
124
122
|
create: Creează
|
125
|
-
title:
|
123
|
+
title: Creați vorbitor în cadrul conferinței
|
126
124
|
update:
|
127
125
|
error: A apărut o problemă la actualizarea difuzorului conferinţei.
|
128
126
|
success: Difuzor conferință actualizat cu succes.
|
@@ -133,13 +131,13 @@ ro:
|
|
133
131
|
destroy:
|
134
132
|
success: Administratorul conferinței a fost șters.
|
135
133
|
edit:
|
136
|
-
title:
|
134
|
+
title: Actualizați administratorul conferinței
|
137
135
|
update: Actualizare
|
138
136
|
index:
|
139
137
|
conference_admins_title: Administratori ai conferinţei
|
140
138
|
new:
|
141
139
|
create: Creează
|
142
|
-
title:
|
140
|
+
title: Administrator nou al conferinței
|
143
141
|
update:
|
144
142
|
error: A apărut o problemă la actualizarea administratorului conferinței.
|
145
143
|
success: Administratorul conferinței a fost actualizat.
|
@@ -168,27 +166,26 @@ ro:
|
|
168
166
|
media_links:
|
169
167
|
create:
|
170
168
|
error: A apărut o problemă la crearea unei noi legături media.
|
171
|
-
success:
|
169
|
+
success: Linkul media a fost creat cu succes.
|
172
170
|
destroy:
|
173
|
-
success:
|
171
|
+
success: Linkul media a fost șters cu succes.
|
174
172
|
edit:
|
175
|
-
title: Actualizare link media
|
173
|
+
title: Actualizare link media
|
176
174
|
update: Actualizare
|
177
175
|
index:
|
178
176
|
media_links_title: Link-uri media
|
179
177
|
new:
|
180
178
|
create: Creează
|
181
|
-
title:
|
179
|
+
title: Creare legătură media
|
182
180
|
update:
|
183
181
|
error: A apărut o eroare la actualizarea acestui link media.
|
184
|
-
success:
|
182
|
+
success: Linkul media a fost actualizat cu succes.
|
185
183
|
menu:
|
186
184
|
conferences: Conferințe
|
187
185
|
conferences_submenu:
|
188
186
|
attachment_collections: Dosare
|
189
187
|
attachment_files: Fișiere
|
190
188
|
attachments: Atașamente
|
191
|
-
categories: Categorii
|
192
189
|
components: Componente
|
193
190
|
conference_admins: Administratori ai conferinţei
|
194
191
|
conference_invites: Invitații
|
@@ -199,7 +196,7 @@ ro:
|
|
199
196
|
partners: Parteneri
|
200
197
|
registration_types: Tipuri de înregistrare
|
201
198
|
registrations: Înregistrări
|
202
|
-
user_registrations:
|
199
|
+
user_registrations: Inregistrari utilizatori
|
203
200
|
models:
|
204
201
|
conference:
|
205
202
|
fields:
|
@@ -254,7 +251,7 @@ ro:
|
|
254
251
|
destroy:
|
255
252
|
success: Partenerul conferinței a fost eliminat.
|
256
253
|
edit:
|
257
|
-
title:
|
254
|
+
title: Actualizați partenerul
|
258
255
|
update: Actualizare
|
259
256
|
new:
|
260
257
|
create: Creează
|
@@ -276,7 +273,7 @@ ro:
|
|
276
273
|
destroy:
|
277
274
|
success: Tipul de înregistrare a conferinței a fost eliminat.
|
278
275
|
edit:
|
279
|
-
title: Actualizați tipul de înregistrare
|
276
|
+
title: Actualizați tipul de înregistrare
|
280
277
|
update: Actualizare
|
281
278
|
new:
|
282
279
|
create: Creează
|
@@ -487,6 +484,7 @@ ro:
|
|
487
484
|
home:
|
488
485
|
highlighted_conferences:
|
489
486
|
active_spaces: Conferințe active
|
487
|
+
see_all_spaces: Vedeți toate
|
490
488
|
registration_types:
|
491
489
|
index:
|
492
490
|
choose_an_option: 'Alegeți opțiunea de înregistrare:'
|
data/config/locales/sk.yml
CHANGED
@@ -15,8 +15,6 @@ sk:
|
|
15
15
|
participatory_processes_ids: Podobné participatívne procesy
|
16
16
|
promoted: Zvýraznené
|
17
17
|
published_at: Publikované na
|
18
|
-
scope_id: Rozsah
|
19
|
-
scopes_enabled: Povolené rozsahy
|
20
18
|
short_description: Krátky popis
|
21
19
|
show_statistics: Zobrazenie štatistík
|
22
20
|
slogan: Slogan
|
@@ -73,13 +71,11 @@ sk:
|
|
73
71
|
destroy:
|
74
72
|
success: Rečník úspešne odstránený.
|
75
73
|
edit:
|
76
|
-
title: Aktualizovať rečníka.
|
77
74
|
update: Aktualizovať
|
78
75
|
index:
|
79
76
|
conference_speakers_title: Rečníci na konferencii
|
80
77
|
new:
|
81
78
|
create: Vytvoriť
|
82
|
-
title: Nový rečník.
|
83
79
|
update:
|
84
80
|
error: Vyskytol sa problém so zmenou rečníka na konferencii.
|
85
81
|
success: Rečník úspešne zmenený.
|
@@ -90,11 +86,9 @@ sk:
|
|
90
86
|
destroy:
|
91
87
|
success: Administrátor konferencie úspešne odstránený.
|
92
88
|
edit:
|
93
|
-
title: Aktualizovať administrátora konferencie.
|
94
89
|
update: Aktualizovať
|
95
90
|
new:
|
96
91
|
create: Vytvoriť
|
97
|
-
title: Nový administrátor konferencie.
|
98
92
|
update:
|
99
93
|
error: Vyskytol sa problém so zmenou rečníka na konferencii.
|
100
94
|
success: Administrátor konferencie úspešne zmenený.
|
@@ -123,38 +117,25 @@ sk:
|
|
123
117
|
media_links:
|
124
118
|
create:
|
125
119
|
error: Pri tvorbe mediálneho odkazu nastala chyba.
|
126
|
-
success: Mediálny odkaz bol úspešne vytvorený.
|
127
|
-
destroy:
|
128
|
-
success: Mediálny odkaz bol úspešne zmazaný.
|
129
120
|
edit:
|
130
|
-
title: Aktualizovať mediálny odkaz.
|
131
121
|
update: Aktualizovať
|
132
|
-
index:
|
133
|
-
media_links_title: Mediálne odkazy
|
134
122
|
new:
|
135
123
|
create: Vytvoriť
|
136
|
-
title: Mediálny odkaz
|
137
124
|
update:
|
138
125
|
error: Pri aktualizácii mediálneho odkazu nastala chyba.
|
139
|
-
success: Mediálny odkaz bol úspešne aktualizovaný.
|
140
126
|
menu:
|
141
127
|
conferences: Konferencie
|
142
128
|
conferences_submenu:
|
143
129
|
attachment_collections: Priečinky
|
144
130
|
attachment_files: Súbory
|
145
131
|
attachments: Prílohy
|
146
|
-
categories: Kategórie
|
147
132
|
components: Súčasti
|
148
133
|
conference_admins: Administrátori konferencie
|
149
134
|
conference_invites: Pozvánky
|
150
135
|
conference_speakers: Rečníci
|
151
|
-
diploma: Certifikát účasti
|
152
|
-
media_links: Mediálne odkazy
|
153
136
|
moderations: Moderácia
|
154
137
|
partners: Partneri
|
155
|
-
registration_types: Typy registrácie
|
156
138
|
registrations: Registrácie
|
157
|
-
user_registrations: Registrácie užívateľov
|
158
139
|
models:
|
159
140
|
conference:
|
160
141
|
fields:
|
@@ -183,7 +164,6 @@ sk:
|
|
183
164
|
date: Dátum
|
184
165
|
link: Odkaz
|
185
166
|
title: Názov
|
186
|
-
name: Mediálny odkaz
|
187
167
|
partner:
|
188
168
|
fields:
|
189
169
|
link: Odkaz
|
@@ -208,7 +188,6 @@ sk:
|
|
208
188
|
destroy:
|
209
189
|
success: Partner konferencie úspešne odstránený.
|
210
190
|
edit:
|
211
|
-
title: Zmeniť partnera.
|
212
191
|
update: Aktualizovať
|
213
192
|
new:
|
214
193
|
create: Vytvoriť
|
@@ -230,7 +209,6 @@ sk:
|
|
230
209
|
destroy:
|
231
210
|
success: Typ registrácie na konferenciu úspešne odstránený.
|
232
211
|
edit:
|
233
|
-
title: Zmeniť typ registrácie.
|
234
212
|
update: Aktualizovať
|
235
213
|
new:
|
236
214
|
create: Vytvoriť
|
@@ -314,7 +292,6 @@ sk:
|
|
314
292
|
diplomas:
|
315
293
|
edit:
|
316
294
|
save: Uložiť
|
317
|
-
title: Certifikát účasti
|
318
295
|
invite_join_conference_mailer:
|
319
296
|
invite:
|
320
297
|
decline: Odmietnuť pozvánku na "%{conference_title}"
|
@@ -333,7 +310,6 @@ sk:
|
|
333
310
|
diploma_html: Certifikát účasti na konferencii <a href="%{url}">%{title}</a> nájdete v prílohách.
|
334
311
|
diploma_user:
|
335
312
|
attendance_verified_by: Účasť potvrdená
|
336
|
-
certificate_of_attendance: Certifikát účasti
|
337
313
|
certificate_of_attendance_description: Týmto potvrdzujeme, že <strong>%{user}</strong> sa zúčastnil na konferencii <strong>%{title}</strong>, ktorá sa konala na mieste <strong>%{location}</strong> od %{start} do %{end}</strong>.
|
338
314
|
send_diploma:
|
339
315
|
error: Vyskytol sa účasť so zasielaním certifikátov účasti.
|