decidim-conferences 0.28.5 → 0.29.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/conference_g_cell.rb +2 -2
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +1 -1
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +0 -2
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +0 -1
- data/app/cells/decidim/conferences/media_link/show.erb +1 -1
- data/app/cells/decidim/conferences/media_link_cell.rb +0 -3
- data/app/cells/decidim/conferences/partner/image.erb +1 -1
- data/app/cells/decidim/conferences/partner_cell.rb +1 -1
- data/app/cells/decidim/conferences/registration_type_cell.rb +1 -5
- data/app/commands/decidim/conferences/admin/create_conference.rb +20 -65
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +17 -81
- data/app/commands/decidim/conferences/admin/create_media_link.rb +10 -44
- data/app/commands/decidim/conferences/admin/create_partner.rb +9 -62
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +15 -51
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +6 -38
- data/app/commands/decidim/conferences/admin/publish_conference_speaker.rb +51 -0
- data/app/commands/decidim/conferences/admin/unpublish_conference_speaker.rb +44 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +35 -93
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +17 -74
- data/app/commands/decidim/conferences/admin/update_media_link.rb +8 -44
- data/app/commands/decidim/conferences/admin/update_partner.rb +10 -61
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +12 -47
- data/app/controllers/concerns/decidim/conferences/admin/conferences_invites/filterable.rb +41 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +8 -3
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +33 -1
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +4 -1
- data/app/controllers/decidim/conferences/conference_program_controller.rb +1 -2
- data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -4
- data/app/controllers/decidim/conferences/conferences_controller.rb +1 -4
- data/app/controllers/decidim/conferences/media_controller.rb +1 -4
- data/app/controllers/decidim/conferences/registration_types_controller.rb +0 -3
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +0 -5
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -5
- 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_helper.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +5 -9
- data/app/models/decidim/conference.rb +2 -2
- data/app/models/decidim/conference_speaker.rb +2 -0
- data/app/permissions/decidim/conferences/permissions.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -1
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +5 -5
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +1 -33
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +2 -4
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +11 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -3
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +7 -11
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +1 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +1 -0
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +5 -3
- data/app/views/decidim/conferences/media/index.html.erb +1 -0
- data/app/views/decidim/conferences/registration_types/index.html.erb +2 -1
- data/app/views/devise/mailer/join_conference.html.erb +1 -1
- data/app/views/devise/mailer/join_conference.text.erb +1 -1
- data/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/initializers/wicked_pdf.rb +6 -4
- data/config/locales/ar.yml +21 -4
- data/config/locales/bg.yml +27 -6
- data/config/locales/ca.yml +18 -20
- data/config/locales/cs.yml +18 -21
- data/config/locales/de.yml +19 -21
- data/config/locales/el.yml +21 -6
- data/config/locales/en.yml +25 -27
- data/config/locales/es-MX.yml +18 -20
- data/config/locales/es-PY.yml +21 -23
- data/config/locales/es.yml +14 -16
- data/config/locales/eu.yml +169 -171
- data/config/locales/fi-plain.yml +17 -19
- data/config/locales/fi.yml +23 -25
- data/config/locales/fr-CA.yml +19 -21
- data/config/locales/fr.yml +19 -21
- data/config/locales/ga-IE.yml +0 -6
- data/config/locales/gl.yml +21 -4
- data/config/locales/hu.yml +21 -6
- data/config/locales/id-ID.yml +21 -4
- data/config/locales/it.yml +21 -4
- data/config/locales/ja.yml +17 -17
- data/config/locales/lb.yml +19 -6
- data/config/locales/lt.yml +21 -6
- data/config/locales/lv.yml +21 -6
- data/config/locales/nl.yml +21 -4
- data/config/locales/no.yml +21 -6
- data/config/locales/pl.yml +27 -6
- data/config/locales/pt-BR.yml +21 -51
- data/config/locales/pt.yml +21 -6
- data/config/locales/ro-RO.yml +12 -19
- data/config/locales/sk.yml +21 -6
- data/config/locales/sv.yml +52 -37
- data/config/locales/tr-TR.yml +21 -4
- data/config/locales/zh-CN.yml +21 -4
- data/config/locales/zh-TW.yml +21 -6
- data/db/migrate/20240613095855_add_published_at_to_conference_speakers.rb +7 -0
- data/decidim-conferences.gemspec +3 -2
- data/lib/decidim/api/conference_partner_type.rb +1 -1
- data/lib/decidim/api/conference_speaker_type.rb +1 -1
- data/lib/decidim/api/conference_type.rb +6 -2
- data/lib/decidim/conferences/admin_engine.rb +6 -1
- data/lib/decidim/conferences/engine.rb +1 -0
- data/lib/decidim/conferences/menu.rb +11 -0
- data/lib/decidim/conferences/seeds.rb +4 -22
- data/lib/decidim/conferences/test/factories.rb +5 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +33 -23
- data/app/cells/decidim/conference_activity_cell.rb +0 -10
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -19
- data/app/helpers/decidim/conferences/partners_helper.rb +0 -17
- data/app/uploaders/decidim/cw/conferences/diploma_uploader.rb +0 -14
- data/app/uploaders/decidim/cw/conferences/partner_logo_uploader.rb +0 -15
- data/app/views/layouts/decidim/conference.html.erb +0 -17
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -14
data/config/locales/pt-BR.yml
CHANGED
@@ -28,23 +28,19 @@ pt-BR:
|
|
28
28
|
show_statistics: Mostre estatisticas
|
29
29
|
sign_date: Data de assinatura
|
30
30
|
signature: Assinatura
|
31
|
-
signature_name: Nome da assinatura
|
32
31
|
slogan: Slogan
|
33
32
|
slug: Lesma de URL
|
34
33
|
start_date: Data de início
|
35
34
|
title: Título
|
36
|
-
weight: Posição de ordem
|
37
35
|
conference_media_link:
|
38
36
|
date: Data
|
39
37
|
link: Link
|
40
38
|
title: Título
|
41
|
-
weight: Posição de ordem
|
42
39
|
conference_partner:
|
43
40
|
link: Link
|
44
41
|
logo: Logo
|
45
42
|
name: Nome
|
46
43
|
partner_type: Tipo de parceiro
|
47
|
-
weight: Posição de ordem
|
48
44
|
conference_registration_invite:
|
49
45
|
email: E-mail
|
50
46
|
name: Nome
|
@@ -54,26 +50,17 @@ pt-BR:
|
|
54
50
|
description: Descrição
|
55
51
|
price: Preço
|
56
52
|
title: Título
|
57
|
-
weight: Posição de ordem
|
58
53
|
conference_speaker:
|
59
54
|
affiliation: Afiliação
|
60
55
|
avatar: Avatar
|
61
56
|
conference_meeting_ids: Reuniões relacionadas
|
62
57
|
full_name: Nome completo
|
63
|
-
personal_url: URL pessoal
|
64
58
|
position: Posição
|
65
|
-
short_bio: Perfil curto
|
66
59
|
user_id: Usuário
|
67
60
|
conference_user_role:
|
68
61
|
email: O email
|
69
62
|
name: Nome
|
70
63
|
role: Função
|
71
|
-
errors:
|
72
|
-
models:
|
73
|
-
conference_registration_invite:
|
74
|
-
attributes:
|
75
|
-
email:
|
76
|
-
already_invited: Este email já foi convidado.
|
77
64
|
activerecord:
|
78
65
|
models:
|
79
66
|
decidim/conference:
|
@@ -89,12 +76,6 @@ pt-BR:
|
|
89
76
|
admin:
|
90
77
|
actions:
|
91
78
|
confirm: confirme
|
92
|
-
new_conference: Nova conferência
|
93
|
-
new_conference_user_role: Novo usuário da conferência
|
94
|
-
new_media_link: Novo link de mídia
|
95
|
-
new_partner: Novo parceiro
|
96
|
-
new_registration_type: Novo tipo de registro
|
97
|
-
new_speaker: Novo Pregador
|
98
79
|
send_diplomas: Envie certificados de participação
|
99
80
|
conference_copies:
|
100
81
|
new:
|
@@ -119,11 +100,13 @@ pt-BR:
|
|
119
100
|
destroy:
|
120
101
|
success: Alto-falante excluído com sucesso para esta conferência.
|
121
102
|
edit:
|
103
|
+
title: Atualize o orador da conferência.
|
122
104
|
update: Atualizar
|
123
105
|
index:
|
124
106
|
conference_speakers_title: Alto-falantes da conferência
|
125
107
|
new:
|
126
108
|
create: Crio
|
109
|
+
title: Novo orador da conferência.
|
127
110
|
update:
|
128
111
|
error: Houve um erro ao atualizar o palestrante para esta conferência.
|
129
112
|
success: Speaker atualizado com sucesso para esta conferência.
|
@@ -134,11 +117,11 @@ pt-BR:
|
|
134
117
|
destroy:
|
135
118
|
success: Usuário removido com sucesso desta conferência.
|
136
119
|
edit:
|
120
|
+
title: Atualize o usuário da conferência.
|
137
121
|
update: Atualizar
|
138
|
-
index:
|
139
|
-
conference_admins_title: Administradores da conferência
|
140
122
|
new:
|
141
123
|
create: Crio
|
124
|
+
title: Novo usuário da conferência.
|
142
125
|
update:
|
143
126
|
error: Houve um erro ao atualizar um usuário para esta conferência.
|
144
127
|
success: Usuário atualizado com sucesso para esta conferência.
|
@@ -154,7 +137,6 @@ pt-BR:
|
|
154
137
|
title: Informação geral
|
155
138
|
index:
|
156
139
|
published: Publicados
|
157
|
-
unpublished: Despublicado
|
158
140
|
new:
|
159
141
|
create: Crio
|
160
142
|
title: Conferência
|
@@ -168,12 +150,20 @@ pt-BR:
|
|
168
150
|
media_links:
|
169
151
|
create:
|
170
152
|
error: Ocorreu um erro ao criar um novo link de mídia.
|
153
|
+
success: Link de mídia criado com êxito.
|
154
|
+
destroy:
|
155
|
+
success: Recurso excluído com sucesso.
|
171
156
|
edit:
|
157
|
+
title: Atualize o link de mídia.
|
172
158
|
update: Atualizar
|
159
|
+
index:
|
160
|
+
media_links_title: Links de Mídia
|
173
161
|
new:
|
174
162
|
create: Criar
|
163
|
+
title: Links de Mídia
|
175
164
|
update:
|
176
165
|
error: Houve um erro ao atualizar este link de mídia.
|
166
|
+
success: Link de mídia atualizado com êxito.
|
177
167
|
menu:
|
178
168
|
conferences: Conferências
|
179
169
|
conferences_submenu:
|
@@ -185,10 +175,13 @@ pt-BR:
|
|
185
175
|
conference_admins: Administradores da conferência
|
186
176
|
conference_invites: Convites
|
187
177
|
conference_speakers: caixas de som
|
188
|
-
|
178
|
+
diploma: Certificado de participação
|
179
|
+
media_links: Links de Mídia
|
189
180
|
moderations: Moderações
|
190
181
|
partners: Parceiros
|
182
|
+
registration_types: Tipos de registro
|
191
183
|
registrations: Inscrições
|
184
|
+
user_registrations: Registros de usuários
|
192
185
|
models:
|
193
186
|
conference:
|
194
187
|
fields:
|
@@ -217,6 +210,7 @@ pt-BR:
|
|
217
210
|
date: Encontro
|
218
211
|
link: Link
|
219
212
|
title: Título
|
213
|
+
name: Links de Mídia
|
220
214
|
partner:
|
221
215
|
fields:
|
222
216
|
link: Link
|
@@ -242,6 +236,7 @@ pt-BR:
|
|
242
236
|
destroy:
|
243
237
|
success: Alto-falante excluído com sucesso para esta conferência.
|
244
238
|
edit:
|
239
|
+
title: Atualizar parceiro.
|
245
240
|
update: Atualizar
|
246
241
|
new:
|
247
242
|
create: Criar
|
@@ -263,6 +258,7 @@ pt-BR:
|
|
263
258
|
destroy:
|
264
259
|
success: Tipo de registro removido com sucesso desta conferência.
|
265
260
|
edit:
|
261
|
+
title: Atualize o tipo de registro.
|
266
262
|
update: Atualizar
|
267
263
|
new:
|
268
264
|
create: Crio
|
@@ -327,16 +323,9 @@ pt-BR:
|
|
327
323
|
non_user: Usuário não existente
|
328
324
|
select_user: Selecione o usuário
|
329
325
|
index:
|
330
|
-
filter:
|
331
|
-
accepted: Aceitaram
|
332
|
-
all: Todos
|
333
|
-
rejected: Rejeitado
|
334
|
-
sent: Enviei
|
335
326
|
invite_attendee: Convidar participante
|
336
327
|
invites: Convites
|
337
|
-
search: Pesquisa
|
338
328
|
new:
|
339
|
-
explanation: O usuário será convidado a participar de uma conferência. Se o email não estiver registrado, ele será convidado para a organização também.
|
340
329
|
invite: Convite
|
341
330
|
new_invite: Convidar Usuário
|
342
331
|
conference_registrations:
|
@@ -357,12 +346,10 @@ pt-BR:
|
|
357
346
|
one: Houve 1 registro.
|
358
347
|
other: Houve %{count} inscrições.
|
359
348
|
slug_help_html: 'Os slugs de URL são usados para gerar as URLs que apontam para esta conferência. Aceita apenas letras, números e traços e deve começar com uma letra. Exemplo: %{url}'
|
360
|
-
content_blocks:
|
361
|
-
highlighted_conferences:
|
362
|
-
max_results: Quantidade máxima de elementos para mostrar
|
363
349
|
diplomas:
|
364
350
|
edit:
|
365
351
|
save: Salve
|
352
|
+
title: Certificado de participação
|
366
353
|
invite_join_conference_mailer:
|
367
354
|
invite:
|
368
355
|
decline: Recusar convite '%{conference_title}'
|
@@ -382,6 +369,7 @@ pt-BR:
|
|
382
369
|
diploma_html: Você encontrará o certificado de participação para a conferência <a href="%{url}">%{title}</a> nos anexos.
|
383
370
|
diploma_user:
|
384
371
|
attendance_verified_by: Atendimento verificado por
|
372
|
+
certificate_of_attendance: Certificado de participação
|
385
373
|
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>
|
386
374
|
send_diploma:
|
387
375
|
error: Houve um problema ao enviar os certificados de participação da conferência.
|
@@ -410,11 +398,9 @@ pt-BR:
|
|
410
398
|
create:
|
411
399
|
invalid: Houve um problema em participar desta conferência.
|
412
400
|
success: Você ingressou na conferência com sucesso.
|
413
|
-
unauthorized: Você precisa fazer login antes de se registrar na conferência.
|
414
401
|
decline_invitation:
|
415
402
|
invalid: Houve um problema ao recusar o convite.
|
416
403
|
success: Você recusou o convite com sucesso.
|
417
|
-
unauthorized: Você precisa fazer login antes de recusar o convite.
|
418
404
|
destroy:
|
419
405
|
invalid: Houve um problema ao sair desta conferência.
|
420
406
|
success: Você saiu da conferência com sucesso.
|
@@ -433,25 +419,14 @@ pt-BR:
|
|
433
419
|
collaborators: Parceiros
|
434
420
|
main_promotors: Organizadores
|
435
421
|
show:
|
436
|
-
already_have_an_account?: Você já tem uma conta?
|
437
|
-
are_you_new?: Novo participante
|
438
422
|
login_as: Você está logado como %{name} <%{email}>
|
439
|
-
make_conference_registration: Entre para se inscrever na conferência
|
440
|
-
manage_registration: Gerenciar seu registro
|
441
423
|
register: Registrar-se
|
442
|
-
sign_in_description: Entre para se inscrever na conferência
|
443
|
-
sign_up_description: Crie uma conta no decidim para se inscrever na conferência
|
444
424
|
content_blocks:
|
445
425
|
highlighted_conferences:
|
446
426
|
name: Conferências destacadas
|
447
427
|
index:
|
448
428
|
title: Conferências
|
449
429
|
mailer:
|
450
|
-
conference_registration_mailer:
|
451
|
-
confirmation:
|
452
|
-
subject: O registro da sua conferência foi confirmado.
|
453
|
-
pending_validation:
|
454
|
-
subject: O registro da sua conferência está pendente de confirmação.
|
455
430
|
invite_join_conference_mailer:
|
456
431
|
invite:
|
457
432
|
subject: Convite para participar de uma conferência
|
@@ -533,10 +508,6 @@ pt-BR:
|
|
533
508
|
contextual: "<p>Uma <strong>conferência</strong> é uma coleção de reuniões organizadas em um programa, com várias pessoas convidadas como palestrantes, e outros campos de informação típicos de grandes congressos ou eventos sociais (registro, lista de organizações que apoiam ou patrocinam o evento, etc.).</p> <p>Exemplos: Uma conferência pode ser um evento relevante para uma organização e seus membros, ou realiza como parte de um processo participativo ou segue uma consulta.</p>\n"
|
534
509
|
page: "<p>Uma <strong>conferência</strong> é uma coleção de reuniões organizadas em um programa, com várias pessoas convidadas como palestrantes, e outros campos de informação típicos de grandes congressos ou eventos sociais (registro, lista de organizações que apoiam ou patrocinam o evento, etc.).</p> <p>Exemplos: Uma conferência pode ser um evento relevante para uma organização e seus membros, ou realiza como parte de um processo participativo ou segue uma consulta.</p>\n"
|
535
510
|
title: O que são conferências?
|
536
|
-
log:
|
537
|
-
value_types:
|
538
|
-
conference_presenter:
|
539
|
-
not_found: 'A conferência não foi encontrada no banco de dados (ID: %{id}).'
|
540
511
|
media:
|
541
512
|
index:
|
542
513
|
description: Links sobre esta conferência
|
@@ -552,7 +523,6 @@ pt-BR:
|
|
552
523
|
layouts:
|
553
524
|
decidim:
|
554
525
|
conference_hero:
|
555
|
-
manage_registration: Gerenciar seu registro
|
556
526
|
register: registo
|
557
527
|
conferences:
|
558
528
|
conference:
|
data/config/locales/pt.yml
CHANGED
@@ -100,11 +100,13 @@ pt:
|
|
100
100
|
destroy:
|
101
101
|
success: Orador da conferência eliminado corretamente.
|
102
102
|
edit:
|
103
|
+
title: Atualizar orador da conferência.
|
103
104
|
update: Atualizar
|
104
105
|
index:
|
105
106
|
conference_speakers_title: Oradores da conferência
|
106
107
|
new:
|
107
108
|
create: Criar
|
109
|
+
title: Novo orador da conferência.
|
108
110
|
update:
|
109
111
|
error: Ocorreu um problema ao atualizar o orador desta conferência.
|
110
112
|
success: Orador da conferência atualizado corretamente.
|
@@ -115,9 +117,11 @@ pt:
|
|
115
117
|
destroy:
|
116
118
|
success: Administrador da conferência eliminado corretamente.
|
117
119
|
edit:
|
120
|
+
title: Atualizar administrador da conferência.
|
118
121
|
update: Atualizar
|
119
122
|
new:
|
120
123
|
create: Criar
|
124
|
+
title: Novo administrador da conferência.
|
121
125
|
update:
|
122
126
|
error: Ocorreu um problema ao atualizar o administrador desta conferência.
|
123
127
|
success: Administrador da conferência atualizado corretamente.
|
@@ -146,12 +150,20 @@ pt:
|
|
146
150
|
media_links:
|
147
151
|
create:
|
148
152
|
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.
|
149
156
|
edit:
|
157
|
+
title: Atualizar hiperligação de multimédia.
|
150
158
|
update: Atualizar
|
159
|
+
index:
|
160
|
+
media_links_title: Hiperligação de Multimédia
|
151
161
|
new:
|
152
162
|
create: Criar
|
163
|
+
title: Hiperligação de Multimédia
|
153
164
|
update:
|
154
165
|
error: Ocorreu um problema ao atualizar esta hiperligação de multimédia.
|
166
|
+
success: Hiperligação de multimédia atualizada corretamente.
|
155
167
|
menu:
|
156
168
|
conferences: Conferências
|
157
169
|
conferences_submenu:
|
@@ -163,9 +175,13 @@ pt:
|
|
163
175
|
conference_admins: Administradores da conferência
|
164
176
|
conference_invites: Convites
|
165
177
|
conference_speakers: Oradores
|
178
|
+
diploma: Certificado de Participação
|
179
|
+
media_links: Hiperligações de Multimédia
|
166
180
|
moderations: Moderações
|
167
181
|
partners: Parceiros
|
182
|
+
registration_types: Tipos de Registo
|
168
183
|
registrations: Registos
|
184
|
+
user_registrations: Registos de Utilizador
|
169
185
|
models:
|
170
186
|
conference:
|
171
187
|
fields:
|
@@ -194,6 +210,7 @@ pt:
|
|
194
210
|
date: Data
|
195
211
|
link: Hiperligação
|
196
212
|
title: Título
|
213
|
+
name: Hiperligação de Multimédia
|
197
214
|
partner:
|
198
215
|
fields:
|
199
216
|
link: Hiperligação
|
@@ -219,6 +236,7 @@ pt:
|
|
219
236
|
destroy:
|
220
237
|
success: Parceiro da conferência eliminado corretamente.
|
221
238
|
edit:
|
239
|
+
title: Atualizar parceiro.
|
222
240
|
update: Atualizar
|
223
241
|
new:
|
224
242
|
create: Criar
|
@@ -240,6 +258,7 @@ pt:
|
|
240
258
|
destroy:
|
241
259
|
success: Tipo de registo da conferência eliminado corretamente.
|
242
260
|
edit:
|
261
|
+
title: Atualizar tipo de registo.
|
243
262
|
update: Atualizar
|
244
263
|
new:
|
245
264
|
create: Criar
|
@@ -300,14 +319,8 @@ pt:
|
|
300
319
|
non_user: Participante inexistente
|
301
320
|
select_user: Selecione participante
|
302
321
|
index:
|
303
|
-
filter:
|
304
|
-
accepted: Aceite
|
305
|
-
all: Todos
|
306
|
-
rejected: Rejeitado
|
307
|
-
sent: Enviado
|
308
322
|
invite_attendee: Convidar participante
|
309
323
|
invites: Convites
|
310
|
-
search: Pesquisar
|
311
324
|
new:
|
312
325
|
invite: Convidar
|
313
326
|
new_invite: Convidar participante
|
@@ -331,6 +344,7 @@ pt:
|
|
331
344
|
diplomas:
|
332
345
|
edit:
|
333
346
|
save: Guardar
|
347
|
+
title: Certificado de Participação
|
334
348
|
invite_join_conference_mailer:
|
335
349
|
invite:
|
336
350
|
decline: Recusar convite '%{conference_title}'
|
@@ -349,6 +363,7 @@ pt:
|
|
349
363
|
diploma_html: Encontrará o certificado de participação para a conferência <a href="%{url}">%{title}</a> nos anexos.
|
350
364
|
diploma_user:
|
351
365
|
attendance_verified_by: Participação verificada por
|
366
|
+
certificate_of_attendance: Certificado de Participação
|
352
367
|
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>
|
353
368
|
send_diploma:
|
354
369
|
error: Ocorreu um problema ao enviar os certificados de participação da conferência.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -116,13 +116,13 @@ ro:
|
|
116
116
|
destroy:
|
117
117
|
success: Difuzorul conferinţei a fost şters.
|
118
118
|
edit:
|
119
|
-
title: Actualizați
|
119
|
+
title: Actualizați difuzorul conferinței.
|
120
120
|
update: Actualizare
|
121
121
|
index:
|
122
122
|
conference_speakers_title: Vorbitori de conferințe
|
123
123
|
new:
|
124
124
|
create: Creează
|
125
|
-
title:
|
125
|
+
title: Un nou vorbitor de conferinţă.
|
126
126
|
update:
|
127
127
|
error: A apărut o problemă la actualizarea difuzorului conferinţei.
|
128
128
|
success: Difuzor conferință actualizat cu succes.
|
@@ -133,13 +133,13 @@ ro:
|
|
133
133
|
destroy:
|
134
134
|
success: Administratorul conferinței a fost șters.
|
135
135
|
edit:
|
136
|
-
title:
|
136
|
+
title: Actualizează administratorul conferinţei.
|
137
137
|
update: Actualizare
|
138
138
|
index:
|
139
139
|
conference_admins_title: Administratori ai conferinţei
|
140
140
|
new:
|
141
141
|
create: Creează
|
142
|
-
title:
|
142
|
+
title: Admin de conferință nouă.
|
143
143
|
update:
|
144
144
|
error: A apărut o problemă la actualizarea administratorului conferinței.
|
145
145
|
success: Administratorul conferinței a fost actualizat.
|
@@ -168,20 +168,20 @@ ro:
|
|
168
168
|
media_links:
|
169
169
|
create:
|
170
170
|
error: A apărut o problemă la crearea unei noi legături media.
|
171
|
-
success:
|
171
|
+
success: Link media creat cu succes.
|
172
172
|
destroy:
|
173
|
-
success:
|
173
|
+
success: Link media şters cu succes.
|
174
174
|
edit:
|
175
|
-
title: Actualizare link media
|
175
|
+
title: Actualizare link media.
|
176
176
|
update: Actualizare
|
177
177
|
index:
|
178
178
|
media_links_title: Link-uri media
|
179
179
|
new:
|
180
180
|
create: Creează
|
181
|
-
title:
|
181
|
+
title: Link media
|
182
182
|
update:
|
183
183
|
error: A apărut o eroare la actualizarea acestui link media.
|
184
|
-
success:
|
184
|
+
success: Link media actualizat cu succes.
|
185
185
|
menu:
|
186
186
|
conferences: Conferințe
|
187
187
|
conferences_submenu:
|
@@ -199,7 +199,7 @@ ro:
|
|
199
199
|
partners: Parteneri
|
200
200
|
registration_types: Tipuri de înregistrare
|
201
201
|
registrations: Înregistrări
|
202
|
-
user_registrations:
|
202
|
+
user_registrations: Înregistrări utilizator
|
203
203
|
models:
|
204
204
|
conference:
|
205
205
|
fields:
|
@@ -254,7 +254,7 @@ ro:
|
|
254
254
|
destroy:
|
255
255
|
success: Partenerul conferinței a fost eliminat.
|
256
256
|
edit:
|
257
|
-
title:
|
257
|
+
title: Actualizare partener.
|
258
258
|
update: Actualizare
|
259
259
|
new:
|
260
260
|
create: Creează
|
@@ -276,7 +276,7 @@ ro:
|
|
276
276
|
destroy:
|
277
277
|
success: Tipul de înregistrare a conferinței a fost eliminat.
|
278
278
|
edit:
|
279
|
-
title: Actualizați tipul de înregistrare
|
279
|
+
title: Actualizați tipul de înregistrare.
|
280
280
|
update: Actualizare
|
281
281
|
new:
|
282
282
|
create: Creează
|
@@ -338,12 +338,8 @@ ro:
|
|
338
338
|
non_user: Participant neexistent
|
339
339
|
select_user: Selectați un participant
|
340
340
|
index:
|
341
|
-
filter:
|
342
|
-
all: Toate
|
343
|
-
sent: Trimis
|
344
341
|
invite_attendee: Invite participant
|
345
342
|
invites: Invitații
|
346
|
-
search: Caută
|
347
343
|
new:
|
348
344
|
explanation: Participantul va fi invitat să participe la o conferință. În cazul în care e-mailul său nu este înregistrat, ea va fi de asemenea invitată la organizație.
|
349
345
|
invite: Invită
|
@@ -452,8 +448,6 @@ ro:
|
|
452
448
|
name: Conferințe evidențiate
|
453
449
|
index:
|
454
450
|
title: Conferințe
|
455
|
-
last_activity:
|
456
|
-
new_conference: 'Conferință nouă:'
|
457
451
|
mailer:
|
458
452
|
conference_registration_mailer:
|
459
453
|
confirmation:
|
@@ -491,7 +485,6 @@ ro:
|
|
491
485
|
home:
|
492
486
|
highlighted_conferences:
|
493
487
|
active_spaces: Conferințe active
|
494
|
-
see_all_spaces: Vedeți toate
|
495
488
|
registration_types:
|
496
489
|
index:
|
497
490
|
choose_an_option: 'Alegeți opțiunea de înregistrare:'
|
data/config/locales/sk.yml
CHANGED
@@ -73,11 +73,13 @@ sk:
|
|
73
73
|
destroy:
|
74
74
|
success: Rečník úspešne odstránený.
|
75
75
|
edit:
|
76
|
+
title: Aktualizovať rečníka.
|
76
77
|
update: Aktualizovať
|
77
78
|
index:
|
78
79
|
conference_speakers_title: Rečníci na konferencii
|
79
80
|
new:
|
80
81
|
create: Vytvoriť
|
82
|
+
title: Nový rečník.
|
81
83
|
update:
|
82
84
|
error: Vyskytol sa problém so zmenou rečníka na konferencii.
|
83
85
|
success: Rečník úspešne zmenený.
|
@@ -88,9 +90,11 @@ sk:
|
|
88
90
|
destroy:
|
89
91
|
success: Administrátor konferencie úspešne odstránený.
|
90
92
|
edit:
|
93
|
+
title: Aktualizovať administrátora konferencie.
|
91
94
|
update: Aktualizovať
|
92
95
|
new:
|
93
96
|
create: Vytvoriť
|
97
|
+
title: Nový administrátor konferencie.
|
94
98
|
update:
|
95
99
|
error: Vyskytol sa problém so zmenou rečníka na konferencii.
|
96
100
|
success: Administrátor konferencie úspešne zmenený.
|
@@ -119,12 +123,20 @@ sk:
|
|
119
123
|
media_links:
|
120
124
|
create:
|
121
125
|
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ý.
|
122
129
|
edit:
|
130
|
+
title: Aktualizovať mediálny odkaz.
|
123
131
|
update: Aktualizovať
|
132
|
+
index:
|
133
|
+
media_links_title: Mediálne odkazy
|
124
134
|
new:
|
125
135
|
create: Vytvoriť
|
136
|
+
title: Mediálny odkaz
|
126
137
|
update:
|
127
138
|
error: Pri aktualizácii mediálneho odkazu nastala chyba.
|
139
|
+
success: Mediálny odkaz bol úspešne aktualizovaný.
|
128
140
|
menu:
|
129
141
|
conferences: Konferencie
|
130
142
|
conferences_submenu:
|
@@ -136,9 +148,13 @@ sk:
|
|
136
148
|
conference_admins: Administrátori konferencie
|
137
149
|
conference_invites: Pozvánky
|
138
150
|
conference_speakers: Rečníci
|
151
|
+
diploma: Certifikát účasti
|
152
|
+
media_links: Mediálne odkazy
|
139
153
|
moderations: Moderácia
|
140
154
|
partners: Partneri
|
155
|
+
registration_types: Typy registrácie
|
141
156
|
registrations: Registrácie
|
157
|
+
user_registrations: Registrácie užívateľov
|
142
158
|
models:
|
143
159
|
conference:
|
144
160
|
fields:
|
@@ -167,6 +183,7 @@ sk:
|
|
167
183
|
date: Dátum
|
168
184
|
link: Odkaz
|
169
185
|
title: Názov
|
186
|
+
name: Mediálny odkaz
|
170
187
|
partner:
|
171
188
|
fields:
|
172
189
|
link: Odkaz
|
@@ -191,6 +208,7 @@ sk:
|
|
191
208
|
destroy:
|
192
209
|
success: Partner konferencie úspešne odstránený.
|
193
210
|
edit:
|
211
|
+
title: Zmeniť partnera.
|
194
212
|
update: Aktualizovať
|
195
213
|
new:
|
196
214
|
create: Vytvoriť
|
@@ -212,6 +230,7 @@ sk:
|
|
212
230
|
destroy:
|
213
231
|
success: Typ registrácie na konferenciu úspešne odstránený.
|
214
232
|
edit:
|
233
|
+
title: Zmeniť typ registrácie.
|
215
234
|
update: Aktualizovať
|
216
235
|
new:
|
217
236
|
create: Vytvoriť
|
@@ -268,14 +287,8 @@ sk:
|
|
268
287
|
non_user: Neexistujúci účastník
|
269
288
|
select_user: Vybrať účastníka
|
270
289
|
index:
|
271
|
-
filter:
|
272
|
-
accepted: Potvrdené
|
273
|
-
all: Všetko
|
274
|
-
rejected: Odmietnuté
|
275
|
-
sent: Odoslané
|
276
290
|
invite_attendee: Pozvať účastníka
|
277
291
|
invites: Pozvánky
|
278
|
-
search: Hľadať
|
279
292
|
new:
|
280
293
|
invite: Pozvať
|
281
294
|
new_invite: Pozvať účastníka
|
@@ -301,6 +314,7 @@ sk:
|
|
301
314
|
diplomas:
|
302
315
|
edit:
|
303
316
|
save: Uložiť
|
317
|
+
title: Certifikát účasti
|
304
318
|
invite_join_conference_mailer:
|
305
319
|
invite:
|
306
320
|
decline: Odmietnuť pozvánku na "%{conference_title}"
|
@@ -319,6 +333,7 @@ sk:
|
|
319
333
|
diploma_html: Certifikát účasti na konferencii <a href="%{url}">%{title}</a> nájdete v prílohách.
|
320
334
|
diploma_user:
|
321
335
|
attendance_verified_by: Účasť potvrdená
|
336
|
+
certificate_of_attendance: Certifikát účasti
|
322
337
|
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>.
|
323
338
|
send_diploma:
|
324
339
|
error: Vyskytol sa účasť so zasielaním certifikátov účasti.
|