decidim-conferences 0.26.2 → 0.26.4
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/show.erb +1 -1
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +1 -0
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +7 -0
- data/app/controllers/decidim/conferences/conference_program_controller.rb +1 -1
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +17 -0
- data/app/permissions/decidim/conferences/permissions.rb +1 -0
- data/app/queries/decidim/conferences/organization_published_conferences.rb +1 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +3 -3
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +1 -1
- data/app/views/devise/mailer/join_conference.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.text.erb +2 -2
- data/app/views/layouts/decidim/_conference_hero.html.erb +1 -1
- data/config/locales/ar.yml +1 -1
- data/config/locales/ca.yml +7 -4
- data/config/locales/cs.yml +13 -10
- data/config/locales/de.yml +1 -1
- data/config/locales/el.yml +1 -1
- data/config/locales/en.yml +4 -1
- data/config/locales/es-MX.yml +4 -1
- data/config/locales/es-PY.yml +4 -1
- data/config/locales/es.yml +7 -4
- data/config/locales/eu.yml +1 -1
- data/config/locales/fi-plain.yml +4 -1
- data/config/locales/fi.yml +4 -1
- data/config/locales/fr-CA.yml +4 -1
- data/config/locales/fr.yml +5 -2
- data/config/locales/gl.yml +1 -1
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/hu.yml +1 -1
- data/config/locales/id-ID.yml +1 -1
- data/config/locales/it.yml +1 -1
- data/config/locales/ja.yml +4 -1
- data/config/locales/lb.yml +1 -1
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +623 -0
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/no.yml +1 -1
- data/config/locales/oc-FR.yml +1 -0
- data/config/locales/pl.yml +1 -1
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/pt.yml +1 -1
- data/config/locales/ro-RO.yml +1 -1
- data/config/locales/sk.yml +1 -1
- data/config/locales/sv.yml +1 -1
- data/config/locales/tr-TR.yml +1 -1
- data/config/locales/zh-CN.yml +1 -1
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +13 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b847c3d507179bbc786e33b9a81063094fa1e52811b089c6b7f81c4ccc0f9039
|
4
|
+
data.tar.gz: 0e5c595c202447b1352480bb511c2ce7b908e859ddd5866e21cbcaac4de7219e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff9cd29597410ae4c88fc890f458e0b80ef1c256c480dd813a11b4f0566ff517db8811f550492999f95bff3ab4bfbe1147f272fd9e3ae1e35bacff9943dc2d50
|
7
|
+
data.tar.gz: 8078b01d69afe9787a692a2446aa40e148ae1be01d382f4c152bf87ab05d3c6dde3fff871204f2dce0a2c9e089d8ccca85a2c80b7e49d930cad61bf60d1c9150
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<div class="column">
|
9
9
|
<%= link_to decidim_conferences.conference_path(conference), class: "card card--conference card--mini" do %>
|
10
10
|
<div aria-hidden="true" class="card__image-top"
|
11
|
-
style="background-image:url(<%= conference.attached_uploader(:hero_image).path %>)"></div>
|
11
|
+
style="background-image:url('<%= conference.attached_uploader(:hero_image).path %>')"></div>
|
12
12
|
<div class="card__content">
|
13
13
|
<span class="card__title card__link"><%= translated_attribute conference.title %></span>
|
14
14
|
</div>
|
@@ -100,7 +100,7 @@ module Decidim
|
|
100
100
|
|
101
101
|
def invite_user_to_sign_up
|
102
102
|
user.skip_reconfirmation!
|
103
|
-
user.invite!(invited_by, invitation_instructions: "join_conference", conference: conference)
|
103
|
+
user.invite!(invited_by, invitation_instructions: "join_conference", conference: conference, registration_type: form.registration_type)
|
104
104
|
end
|
105
105
|
end
|
106
106
|
end
|
@@ -20,6 +20,9 @@ module Decidim
|
|
20
20
|
#
|
21
21
|
# Broadcasts :ok if successful, :invalid otherwise.
|
22
22
|
def call
|
23
|
+
return broadcast(:invalid) unless can_join_conference?
|
24
|
+
return broadcast(:ok) if already_joined_conference?
|
25
|
+
|
23
26
|
conference.with_lock do
|
24
27
|
return broadcast(:invalid) unless can_join_conference?
|
25
28
|
|
@@ -58,6 +61,10 @@ module Decidim
|
|
58
61
|
conference.registrations_enabled? && conference.has_available_slots?
|
59
62
|
end
|
60
63
|
|
64
|
+
def already_joined_conference?
|
65
|
+
conference.conference_registrations.where(user: user).any?
|
66
|
+
end
|
67
|
+
|
61
68
|
def send_email_pending_validation
|
62
69
|
Decidim::Conferences::ConferenceRegistrationMailer.pending_validation(user, conference, @registration_type).deliver_later
|
63
70
|
end
|
@@ -26,7 +26,7 @@ module Decidim
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def meetings
|
29
|
-
return unless meeting_component
|
29
|
+
return unless meeting_component&.published? || !meeting_component.presence
|
30
30
|
|
31
31
|
@meetings ||= Decidim::Meetings::Meeting.where(component: meeting_component).visible_meeting_for(current_user).order(:start_time)
|
32
32
|
end
|
@@ -4,6 +4,8 @@ module Decidim
|
|
4
4
|
module Conferences
|
5
5
|
# Exposes the registration resource so users can join and leave conferences.
|
6
6
|
class ConferenceRegistrationsController < Decidim::Conferences::ApplicationController
|
7
|
+
before_action :ensure_signed_in
|
8
|
+
|
7
9
|
def create
|
8
10
|
enforce_permission_to :join, :conference, conference: conference
|
9
11
|
|
@@ -54,6 +56,20 @@ module Decidim
|
|
54
56
|
|
55
57
|
private
|
56
58
|
|
59
|
+
def ensure_signed_in
|
60
|
+
return if user_signed_in?
|
61
|
+
|
62
|
+
case action_name
|
63
|
+
when "create"
|
64
|
+
flash[:alert] = t("conference_registrations.create.unauthorized", scope: "decidim.conferences")
|
65
|
+
when "decline_invitation"
|
66
|
+
flash[:alert] = t("conference_registrations.decline_invitation.unauthorized", scope: "decidim.conferences")
|
67
|
+
else
|
68
|
+
raise Decidim::ActionForbidden
|
69
|
+
end
|
70
|
+
redirect_to(user_has_no_permission_referer || user_has_no_permission_path)
|
71
|
+
end
|
72
|
+
|
57
73
|
def conference
|
58
74
|
@conference ||= Conference.find_by(slug: params[:conference_slug])
|
59
75
|
end
|
@@ -65,6 +81,7 @@ module Decidim
|
|
65
81
|
def redirect_after_path
|
66
82
|
referer = request.headers["Referer"]
|
67
83
|
return redirect_to(conference_path(conference)) if referer =~ /invitation_token/
|
84
|
+
return redirect_to(conference_path(conference)) if referer =~ %r{users/sign_in}
|
68
85
|
|
69
86
|
redirect_back fallback_location: conference_path(conference)
|
70
87
|
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<p class="email-greeting"><%= t("devise.mailer.invitation_instructions.hello", email: @user.name) %></p>
|
2
2
|
|
3
3
|
<p class="email-instructions">
|
4
|
-
<%= t ".
|
4
|
+
<%= t ".invited_existing_user_to_join_a_conference", invited_by: @invited_by.name, application: @user.organization.name %>
|
5
5
|
</p>
|
6
6
|
|
7
7
|
<p class="email-button email-button__cta cta-decline">
|
8
|
-
<%= link_to t(".decline", conference_title: translated_attribute(@conference.title)),routes.
|
8
|
+
<%= link_to t(".decline", conference_title: translated_attribute(@conference.title)), routes.decline_invitation_conference_registration_type_conference_registration_url(conference_slug: @conference.slug, registration_type_id: @registration_type.id) %>
|
9
9
|
</p>
|
10
10
|
<p class="email-button email-button__cta cta-accept">
|
11
|
-
<%= link_to t(".registration", conference_title: translated_attribute(@conference.title)),routes.conference_registration_type_conference_registration_url(conference_slug: @conference.slug, registration_type_id: @registration_type.id) %>
|
11
|
+
<%= link_to t(".registration", conference_title: translated_attribute(@conference.title)), routes.conference_registration_type_conference_registration_url(conference_slug: @conference.slug, registration_type_id: @registration_type.id) %>
|
12
12
|
</p>
|
@@ -13,7 +13,7 @@
|
|
13
13
|
</div>
|
14
14
|
<div class="columns mediumlarge-8 large-6 card--process__column">
|
15
15
|
<div class="card--full__image"
|
16
|
-
style="background-image:url(<%= promoted_conference.attached_uploader(:hero_image).path %>)">
|
16
|
+
style="background-image:url('<%= promoted_conference.attached_uploader(:hero_image).path %>')">
|
17
17
|
<div class="card__content row collapse">
|
18
18
|
<div class="large-6 large-offset-6 columns">
|
19
19
|
<%= link_to conference_path(promoted_conference), class: "button expanded button--sc" do %>
|
@@ -1,10 +1,10 @@
|
|
1
1
|
<p class="email-greeting"><%= t("devise.mailer.invitation_instructions.hello", email: @resource.name) %></p>
|
2
2
|
|
3
3
|
<p class="email-instructions">
|
4
|
-
<%= t("decidim.conferences.admin.invite_join_conference_mailer.invite.
|
4
|
+
<%= t("decidim.conferences.admin.invite_join_conference_mailer.invite.invited_user_to_join_a_conference", invited_by: @resource.invited_by.name, application: @resource.organization.name) %>
|
5
5
|
</p>
|
6
6
|
|
7
|
-
<p class="email-button email-button__cta"><%= link_to t("devise.mailer.invitation_instructions.accept"), accept_invitation_url(@resource, invitation_token: @token, invite_redirect: Decidim::EngineRouter.main_proxy(@opts[:conference]).
|
7
|
+
<p class="email-button email-button__cta"><%= link_to t("devise.mailer.invitation_instructions.accept"), accept_invitation_url(@resource, invitation_token: @token, invite_redirect: Decidim::EngineRouter.main_proxy(@opts[:conference]).conference_registration_type_conference_registration_path(conference_slug: @opts[:conference], registration_type_id: @opts[:registration_type]), host: @resource.organization.host) %></p>
|
8
8
|
|
9
9
|
<% if @resource.invitation_due_at %>
|
10
10
|
<p class="email-small"><%= t("devise.mailer.invitation_instructions.accept_until", due_date: l(@resource.invitation_due_at, format: :long)) %></p>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<%= t("devise.mailer.invitation_instructions.hello", email: @resource.name) %>
|
2
2
|
|
3
|
-
<%= t("decidim.conferences.admin.invite_join_conference_mailer.invite.
|
3
|
+
<%= t("decidim.conferences.admin.invite_join_conference_mailer.invite.invited_existing_user_to_join_a_conference", invited_by: @resource.invited_by.name, application: @resource.organization.name) %>
|
4
4
|
|
5
|
-
<%= link_to t("devise.mailer.invitation_instructions.accept"), accept_invitation_url(@resource, invitation_token: @token, invite_redirect: Decidim::EngineRouter.main_proxy(@opts[:conference]).
|
5
|
+
<%= link_to t("devise.mailer.invitation_instructions.accept"), accept_invitation_url(@resource, invitation_token: @token, invite_redirect: Decidim::EngineRouter.main_proxy(@opts[:conference]).conference_registration_type_conference_registration_path(conference_slug: @opts[:conference], registration_type_id: @opts[:registration_type]), host: @resource.organization.host) %>
|
6
6
|
|
7
7
|
<% if @resource.invitation_due_at %>
|
8
8
|
<%= t("devise.mailer.invitation_instructions.accept_until", due_date: l(@resource.invitation_due_at, format: :long)) %>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<section class="extended hero"
|
2
|
-
style="background-image:url(<%= current_participatory_space.attached_uploader(:banner_image).path %>);">
|
2
|
+
style="background-image:url('<%= current_participatory_space.attached_uploader(:banner_image).path %>');">
|
3
3
|
<div class="hero__container">
|
4
4
|
<div class="row">
|
5
5
|
<div class="columns large-10 text-left">
|
data/config/locales/ar.yml
CHANGED
@@ -393,7 +393,7 @@ ar:
|
|
393
393
|
invite_join_conference_mailer:
|
394
394
|
invite:
|
395
395
|
decline: رفض الدعوة "%{conference_title}"
|
396
|
-
|
396
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} للانضمام إلى مؤتمر في %{application}. يمكنك رفضه أو قبوله من خلال الروابط أدناه."
|
397
397
|
registration: التسجيل لـ "%{conference_title}"
|
398
398
|
partners:
|
399
399
|
index:
|
data/config/locales/ca.yml
CHANGED
@@ -37,13 +37,13 @@ ca:
|
|
37
37
|
date: Data
|
38
38
|
link: Enllaç
|
39
39
|
title: Títol
|
40
|
-
weight:
|
40
|
+
weight: Ordre de posició
|
41
41
|
conference_partner:
|
42
42
|
link: Enllaç
|
43
43
|
logo: Logo
|
44
44
|
name: Nom
|
45
45
|
partner_type: Tipus de col·laboració
|
46
|
-
weight:
|
46
|
+
weight: Ordre de posició
|
47
47
|
conference_registration_invite:
|
48
48
|
email: Correu electrònic
|
49
49
|
name: Nom
|
@@ -53,7 +53,7 @@ ca:
|
|
53
53
|
description: Descripció
|
54
54
|
price: Cost
|
55
55
|
title: Títol
|
56
|
-
weight:
|
56
|
+
weight: Odre de posició
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Afiliació
|
59
59
|
avatar: Imatge de perfil
|
@@ -379,7 +379,8 @@ ca:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Rebutjar la invitació a '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} t'ha convidat a unir-te a una conferència a l'%{application}. Pots rebutjar o acceptar a través dels enllaços a continuació."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} t'ha convidat a unir-te a una conferència a %{application}. Pots acceptar-la a través del següent enllaç."
|
383
384
|
registration: Inscripció a '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ ca:
|
|
430
431
|
create:
|
431
432
|
invalid: S'ha produït un error en inscriure't a aquesta jornada.
|
432
433
|
success: T'has inscrit a la jornada correctament.
|
434
|
+
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la conferència.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: S'ha produït un error en rebutjar la invitació.
|
435
437
|
success: Has rebutjat la invitació correctament.
|
438
|
+
unauthorized: Cal que iniciïs la teva sessió abans de rebutjar la invitació.
|
436
439
|
destroy:
|
437
440
|
invalid: S'ha produït un error en abandonar aquesta jornada.
|
438
441
|
success: Has abandonat la jornada correctament.
|
data/config/locales/cs.yml
CHANGED
@@ -66,7 +66,7 @@ cs:
|
|
66
66
|
user_id: Uživatel
|
67
67
|
conference_user_role:
|
68
68
|
email: E-mail
|
69
|
-
name:
|
69
|
+
name: Název
|
70
70
|
role: Role
|
71
71
|
errors:
|
72
72
|
models:
|
@@ -99,7 +99,7 @@ cs:
|
|
99
99
|
send_diplomas: Odeslání certifikátů o účasti
|
100
100
|
conference_copies:
|
101
101
|
new:
|
102
|
-
copy:
|
102
|
+
copy: Kopírovat
|
103
103
|
select: Vyberte, která data chcete duplikovat
|
104
104
|
title: Duplikovat konferenci
|
105
105
|
conference_publications:
|
@@ -222,7 +222,7 @@ cs:
|
|
222
222
|
conference_user_role:
|
223
223
|
fields:
|
224
224
|
email: E-mail
|
225
|
-
name:
|
225
|
+
name: Název
|
226
226
|
role: Role
|
227
227
|
name: Administrátor konference
|
228
228
|
roles:
|
@@ -232,7 +232,7 @@ cs:
|
|
232
232
|
valuator: Hodnotitel
|
233
233
|
media_link:
|
234
234
|
fields:
|
235
|
-
date:
|
235
|
+
date: Datum
|
236
236
|
link: Odkaz
|
237
237
|
title: Název
|
238
238
|
name: Odkaz na média
|
@@ -240,7 +240,7 @@ cs:
|
|
240
240
|
fields:
|
241
241
|
link: Odkaz
|
242
242
|
logo: Logo
|
243
|
-
name:
|
243
|
+
name: Název
|
244
244
|
partner_type: Typ
|
245
245
|
name: Partner
|
246
246
|
types:
|
@@ -387,7 +387,8 @@ cs:
|
|
387
387
|
invite_join_conference_mailer:
|
388
388
|
invite:
|
389
389
|
decline: Odmítnout pozvánku '%{conference_title}'
|
390
|
-
|
390
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} vás zve na konferenci na %{application}. Můžete jej odmítnout nebo přijmout prostřednictvím níže uvedených odkazů."
|
391
|
+
invited_user_to_join_a_conference: "%{invited_by} vás pozval, abyste se připojili ke konferenci v %{application}. Můžete ji přijmout prostřednictvím níže uvedeného odkazu."
|
391
392
|
registration: Registrace pro "%{conference_title}"
|
392
393
|
partners:
|
393
394
|
index:
|
@@ -409,7 +410,7 @@ cs:
|
|
409
410
|
success: Konferenční certifikáty o návštěvě byly zaslány správně
|
410
411
|
conference:
|
411
412
|
registration_confirm:
|
412
|
-
cancel:
|
413
|
+
cancel: Zrušit
|
413
414
|
confirm: Potvrdit
|
414
415
|
show:
|
415
416
|
free: Volný, uvolnit
|
@@ -438,9 +439,11 @@ cs:
|
|
438
439
|
create:
|
439
440
|
invalid: Do této konference došlo k problému.
|
440
441
|
success: Do konference jste se úspěšně připojili.
|
442
|
+
unauthorized: Před registrací na konferenci se musíte přihlásit.
|
441
443
|
decline_invitation:
|
442
444
|
invalid: Došlo k potížím s odmítnutím pozvánky.
|
443
445
|
success: Odmítli jste pozvánku úspěšně.
|
446
|
+
unauthorized: Před odmítnutím pozvání se musíte přihlásit.
|
444
447
|
destroy:
|
445
448
|
invalid: Při této konferenci došlo k problému.
|
446
449
|
success: Konference jste úspěšně opustili.
|
@@ -488,7 +491,7 @@ cs:
|
|
488
491
|
conference_invite:
|
489
492
|
fields:
|
490
493
|
email: E-mail
|
491
|
-
name:
|
494
|
+
name: Název
|
492
495
|
registration_type: Typ registrace
|
493
496
|
sent_at: Odeslané
|
494
497
|
status: Postavení
|
@@ -499,12 +502,12 @@ cs:
|
|
499
502
|
conference_registration:
|
500
503
|
fields:
|
501
504
|
email: E-mail
|
502
|
-
name:
|
505
|
+
name: Název
|
503
506
|
registration_type: Typ registrace
|
504
507
|
state: Stav
|
505
508
|
states:
|
506
509
|
confirmed: Potvrzeno
|
507
|
-
pending:
|
510
|
+
pending: Čekající
|
508
511
|
pages:
|
509
512
|
home:
|
510
513
|
highlighted_conferences:
|
data/config/locales/de.yml
CHANGED
@@ -379,7 +379,7 @@ de:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Einladung '%{conference_title}' ablehnen
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} hat Sie eingeladen, an einer Konferenz um %{application}teilzunehmen. Sie können dies über die unten stehenden Links ablehnen oder akzeptieren."
|
383
383
|
registration: Registrierung für '%{conference_title}'
|
384
384
|
partners:
|
385
385
|
index:
|
data/config/locales/el.yml
CHANGED
@@ -376,7 +376,7 @@ el:
|
|
376
376
|
invite_join_conference_mailer:
|
377
377
|
invite:
|
378
378
|
decline: Απόρριψη πρόσκλησης «%{conference_title}»
|
379
|
-
|
379
|
+
invited_existing_user_to_join_a_conference: "Ο χρήστης %{invited_by} σάς προσκάλεσε να συμμετάσχετε σε μια διάσκεψη στην εφαρμογή %{application}. Μπορείτε να την απορρίψετε ή να την αποδεχτείτε μέσω των παρακάτω συνδέσμων."
|
380
380
|
registration: Εγγραφή για τη διάσκεψη «%{conference_title}»
|
381
381
|
partners:
|
382
382
|
index:
|
data/config/locales/en.yml
CHANGED
@@ -380,7 +380,8 @@ en:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Decline invitation '%{conference_title}'
|
383
|
-
|
383
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can decline or accept it through the links below."
|
384
|
+
invited_user_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can accept it through the link below."
|
384
385
|
registration: Registration for '%{conference_title}'
|
385
386
|
partners:
|
386
387
|
index:
|
@@ -431,9 +432,11 @@ en:
|
|
431
432
|
create:
|
432
433
|
invalid: There was a problem joining this conference.
|
433
434
|
success: You have successfully joined the conference.
|
435
|
+
unauthorized: You need to sign in before registering to the conference.
|
434
436
|
decline_invitation:
|
435
437
|
invalid: There was a problem declining the invitation.
|
436
438
|
success: You have successfully declined the invitation.
|
439
|
+
unauthorized: You need to sign in before declining the invitation.
|
437
440
|
destroy:
|
438
441
|
invalid: There was a problem leaving this conference.
|
439
442
|
success: You have successfully left the conference.
|
data/config/locales/es-MX.yml
CHANGED
@@ -379,7 +379,8 @@ es-MX:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Rechazar invitación a '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a una conferencia en %{application}. Puedes declinarla o aceptarla a través de los siguientes enlaces."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
384
|
registration: Inscripción para '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ es-MX:
|
|
430
431
|
create:
|
431
432
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
432
433
|
success: Te has unido a la conferencia con éxito.
|
434
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Ha habido un problema al rechazar la invitación.
|
435
437
|
success: Has rechazado la invitación con éxito.
|
438
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
436
439
|
destroy:
|
437
440
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
438
441
|
success: Has abandonado la conferencia con éxito.
|
data/config/locales/es-PY.yml
CHANGED
@@ -379,7 +379,8 @@ es-PY:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Rechazar invitación '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} ha invitado a unirse a una conferencia en %{application}. Puede rechazarlo o aceptarlo a través de los enlaces a continuación."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
384
|
registration: Registro para '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ es-PY:
|
|
430
431
|
create:
|
431
432
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
432
433
|
success: Te has unido a la conferencia con éxito.
|
434
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Ha habido un problema al rechazar la invitación.
|
435
437
|
success: Has rechazado la invitación con éxito.
|
438
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
436
439
|
destroy:
|
437
440
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
438
441
|
success: Usted ha abandonado la conferencia con éxito.
|
data/config/locales/es.yml
CHANGED
@@ -37,13 +37,13 @@ es:
|
|
37
37
|
date: Fecha
|
38
38
|
link: Enlace
|
39
39
|
title: Título
|
40
|
-
weight:
|
40
|
+
weight: Orden de posición
|
41
41
|
conference_partner:
|
42
42
|
link: Enlace
|
43
43
|
logo: Logo
|
44
44
|
name: Nombre
|
45
45
|
partner_type: Tipo de colaboración
|
46
|
-
weight:
|
46
|
+
weight: Orden de posición
|
47
47
|
conference_registration_invite:
|
48
48
|
email: Correo electrónico
|
49
49
|
name: Nombre
|
@@ -53,7 +53,7 @@ es:
|
|
53
53
|
description: Descripción
|
54
54
|
price: Coste
|
55
55
|
title: Título
|
56
|
-
weight:
|
56
|
+
weight: Orden de posición
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Afiliación
|
59
59
|
avatar: Avatar
|
@@ -379,7 +379,8 @@ es:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Rechazar invitación a '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a una conferencia en %{application}. Puedes declinar o aceptar a través de los siguientes enlaces."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
384
|
registration: Inscripción para '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ es:
|
|
430
431
|
create:
|
431
432
|
invalid: Se ha producido un error al inscribirte a esta jornada.
|
432
433
|
success: Te has inscrito a la jornada correctamente.
|
434
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Se ha producido un error al declinar la invitación.
|
435
437
|
success: Has declinado la invitación correctamente.
|
438
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
436
439
|
destroy:
|
437
440
|
invalid: Se ha producido un error al abandonar esta jornada.
|
438
441
|
success: Has abandonado la jornada correctamente.
|
data/config/locales/eu.yml
CHANGED
@@ -377,7 +377,7 @@ eu:
|
|
377
377
|
invite_join_conference_mailer:
|
378
378
|
invite:
|
379
379
|
decline: Baztertu gonbidapena '%{conference_title}'
|
380
|
-
|
380
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} gonbidatu zaitu hitzaldi batean %{application}. Beheko esteken bidez baztertu edo onartu dezakezu."
|
381
381
|
registration: '''%{conference_title}'' izen-ematea'
|
382
382
|
partners:
|
383
383
|
index:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -379,7 +379,8 @@ fi-pl:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Hylkää kutsu "%{conference_title}"
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} on kutsunut sinut konferenssiin palvelussa %{application}. Voit hylätä tai hyväksyä kutsun alla olevien linkkien avulla."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
383
384
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ fi-pl:
|
|
430
431
|
create:
|
431
432
|
invalid: Konferenssiin ilmoittautumisessa tapahtui virhe.
|
432
433
|
success: Olet ilmoittautunut konferenssiin onnistuneesti.
|
434
|
+
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Kutsun hyläämisessä esiintyi ongelma.
|
435
437
|
success: Olet hylännyt kutsun onnistuneesti.
|
438
|
+
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
436
439
|
destroy:
|
437
440
|
invalid: Konferenssista poistumisessa on tapahtunut virhe.
|
438
441
|
success: Olet poistunut konferenssista onnistuneeksi.
|
data/config/locales/fi.yml
CHANGED
@@ -379,7 +379,8 @@ fi:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Hylkää kutsu "%{conference_title}"
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} on kutsunut sinut konferenssiin palvelussa %{application}. Voit hylätä tai hyväksyä kutsun alla olevien linkkien avulla."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
383
384
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ fi:
|
|
430
431
|
create:
|
431
432
|
invalid: Konferenssiin ilmoittautuminen epäonnistui.
|
432
433
|
success: Ilmoittautuminen konferenssiin onnistui.
|
434
|
+
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Kutsun hylkääminen epäonnistui.
|
435
437
|
success: Kutsun hylkääminen onnistui.
|
438
|
+
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
436
439
|
destroy:
|
437
440
|
invalid: Konferenssista poistuminen epäonnistui.
|
438
441
|
success: Konferenssista poistuminen onnistui.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -379,7 +379,8 @@ fr-CA:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Refuser l'invitation '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} a invité à participer à une conférence à %{application}. Vous pouvez refuser ou l'accepter via les liens ci-dessous."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} vous a invité à participer à une conférence à %{application}. Vous pouvez accepter en utilisant le lien ci-dessous."
|
383
384
|
registration: Inscription pour '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ fr-CA:
|
|
430
431
|
create:
|
431
432
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
432
433
|
success: Vous avez rejoint la conférence avec succès.
|
434
|
+
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
435
437
|
success: Vous avez refusé l'invitation avec succès.
|
438
|
+
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
436
439
|
destroy:
|
437
440
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
438
441
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/fr.yml
CHANGED
@@ -23,7 +23,7 @@ fr:
|
|
23
23
|
registration_terms: Conditions d’inscription
|
24
24
|
registrations_enabled: Inscriptions ouvertes
|
25
25
|
scope_id: Périmètre
|
26
|
-
scopes_enabled:
|
26
|
+
scopes_enabled: Secteurs activés
|
27
27
|
short_description: Brève description
|
28
28
|
show_statistics: Montrer les statistiques
|
29
29
|
sign_date: Date de signature
|
@@ -379,7 +379,8 @@ fr:
|
|
379
379
|
invite_join_conference_mailer:
|
380
380
|
invite:
|
381
381
|
decline: Refuser l'invitation '%{conference_title}'
|
382
|
-
|
382
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} a invité à participer à une conférence à %{application}. Vous pouvez refuser ou l'accepter via les liens ci-dessous."
|
383
|
+
invited_user_to_join_a_conference: "%{invited_by} vous a invité à participer à une conférence à %{application}. Vous pouvez accepter en utilisant le lien ci-dessous."
|
383
384
|
registration: Inscription pour '%{conference_title}'
|
384
385
|
partners:
|
385
386
|
index:
|
@@ -430,9 +431,11 @@ fr:
|
|
430
431
|
create:
|
431
432
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
432
433
|
success: Vous avez rejoint la conférence avec succès.
|
434
|
+
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
433
435
|
decline_invitation:
|
434
436
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
435
437
|
success: Vous avez refusé l'invitation avec succès.
|
438
|
+
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
436
439
|
destroy:
|
437
440
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
438
441
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/gl.yml
CHANGED
@@ -373,7 +373,7 @@ gl:
|
|
373
373
|
invite_join_conference_mailer:
|
374
374
|
invite:
|
375
375
|
decline: Declina a invitación '%{conference_title}'
|
376
|
-
|
376
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} convidoute a unirse a unha conferencia en %{application}. Podes rexeitalo ou aceptalo a través das ligazóns a continuación."
|
377
377
|
registration: Rexistro para '%{conference_title}'
|
378
378
|
partners:
|
379
379
|
index:
|
@@ -0,0 +1 @@
|
|
1
|
+
gn:
|
data/config/locales/hu.yml
CHANGED
@@ -340,7 +340,7 @@ hu:
|
|
340
340
|
invite_join_conference_mailer:
|
341
341
|
invite:
|
342
342
|
decline: A "%{conference_title}" meghívása
|
343
|
-
|
343
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} meghívta Önt, hogy csatlakozzon egy konferenciához %{application}kor. Az alábbi linkeken keresztül visszautasíthatja vagy elfogadhatja."
|
344
344
|
registration: Regisztráció a '%{conference_title}' -ra
|
345
345
|
partners:
|
346
346
|
index:
|
data/config/locales/id-ID.yml
CHANGED
@@ -335,7 +335,7 @@ id:
|
|
335
335
|
invite_join_conference_mailer:
|
336
336
|
invite:
|
337
337
|
decline: Tolak undangan '%{conference_title}'
|
338
|
-
|
338
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} telah mengundang Anda untuk bergabung dalam konferensi di %{application}. Anda dapat menolak atau menerimanya melalui tautan di bawah ini."
|
339
339
|
registration: Registrasi untuk '%{conference_title}'
|
340
340
|
partners:
|
341
341
|
index:
|