decidim-conferences 0.27.0 → 0.27.1
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/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +5 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +17 -0
- data/app/permissions/decidim/conferences/permissions.rb +1 -0
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +3 -3
- data/app/views/decidim/conferences/conferences/show.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.text.erb +2 -2
- data/config/locales/ar.yml +1 -1
- data/config/locales/ca.yml +7 -4
- data/config/locales/cs.yml +4 -1
- 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 +4 -1
- 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 +1 -1
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/no.yml +1 -1
- 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 +12 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 843e0ed4d19cf5c9e131a8c36820647d95112b5c8f7ae3f29fcd163b229dffaf
|
|
4
|
+
data.tar.gz: 2ebe0b8b09ec362f38383e9cb917331432b24d87a07dec8190fd6d7b00e69026
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec8473aa85fcf604334fb746e1a3196c22c815f7f4cc121921468b6fc557a40dec2aabee87d9527e12cfab3d7fb8ef5a057da9d50603989d7a939451b3b2d2a
|
|
7
|
+
data.tar.gz: 1d7500d44594d5f21cf1bb68583b84babe0e65648ff925f8fef51c82846ac9082c6d0102e5e8370c624ed5f23c1c24b676089aa326d470fca1bef7adaae0a2fa
|
|
@@ -98,7 +98,7 @@ module Decidim
|
|
|
98
98
|
|
|
99
99
|
def invite_user_to_sign_up
|
|
100
100
|
user.skip_reconfirmation!
|
|
101
|
-
user.invite!(invited_by, invitation_instructions: "join_conference", conference: conference)
|
|
101
|
+
user.invite!(invited_by, invitation_instructions: "join_conference", conference: conference, registration_type: form.registration_type)
|
|
102
102
|
end
|
|
103
103
|
end
|
|
104
104
|
end
|
|
@@ -21,6 +21,7 @@ module Decidim
|
|
|
21
21
|
# Broadcasts :ok if successful, :invalid otherwise.
|
|
22
22
|
def call
|
|
23
23
|
return broadcast(:invalid) unless can_join_conference?
|
|
24
|
+
return broadcast(:ok) if already_joined_conference?
|
|
24
25
|
|
|
25
26
|
conference.with_lock do
|
|
26
27
|
create_registration
|
|
@@ -58,6 +59,10 @@ module Decidim
|
|
|
58
59
|
conference.registrations_enabled? && conference.has_available_slots?
|
|
59
60
|
end
|
|
60
61
|
|
|
62
|
+
def already_joined_conference?
|
|
63
|
+
conference.conference_registrations.where(user: user).any?
|
|
64
|
+
end
|
|
65
|
+
|
|
61
66
|
def send_email_pending_validation
|
|
62
67
|
Decidim::Conferences::ConferenceRegistrationMailer.pending_validation(user, conference, @registration_type).deliver_later
|
|
63
68
|
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>
|
|
@@ -20,12 +20,12 @@ edit_link(
|
|
|
20
20
|
<div class="columns mediumlarge-12">
|
|
21
21
|
<section class="section">
|
|
22
22
|
<h3 class="section-heading"><%= t("conferences.show.introduction", scope: "decidim") %></h3>
|
|
23
|
-
<%=
|
|
23
|
+
<%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.short_description) %>
|
|
24
24
|
</section>
|
|
25
25
|
<hr class="reset mt-none mb-m">
|
|
26
26
|
<section class="section">
|
|
27
27
|
<h3 class="section-heading"><%= t("conferences.show.details", scope: "decidim") %></h3>
|
|
28
|
-
<%=
|
|
28
|
+
<%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.description) %>
|
|
29
29
|
<div class="row mt-l mb-l">
|
|
30
30
|
<div class="column medium-9 medium-centered">
|
|
31
31
|
<% if current_participatory_space.registrations_enabled? %>
|
|
@@ -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)) %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -394,7 +394,7 @@ ar:
|
|
|
394
394
|
invite_join_conference_mailer:
|
|
395
395
|
invite:
|
|
396
396
|
decline: رفض الدعوة "%{conference_title}"
|
|
397
|
-
|
|
397
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} للانضمام إلى مؤتمر في %{application}. يمكنك رفضه أو قبوله من خلال الروابط أدناه."
|
|
398
398
|
registration: التسجيل لـ "%{conference_title}"
|
|
399
399
|
partners:
|
|
400
400
|
index:
|
data/config/locales/ca.yml
CHANGED
|
@@ -38,13 +38,13 @@ ca:
|
|
|
38
38
|
date: Data
|
|
39
39
|
link: Enllaç
|
|
40
40
|
title: Títol
|
|
41
|
-
weight:
|
|
41
|
+
weight: Ordre de posició
|
|
42
42
|
conference_partner:
|
|
43
43
|
link: Enllaç
|
|
44
44
|
logo: Logo
|
|
45
45
|
name: Nom
|
|
46
46
|
partner_type: Tipus de col·laboració
|
|
47
|
-
weight:
|
|
47
|
+
weight: Ordre de posició
|
|
48
48
|
conference_registration_invite:
|
|
49
49
|
email: Correu electrònic
|
|
50
50
|
name: Nom
|
|
@@ -54,7 +54,7 @@ ca:
|
|
|
54
54
|
description: Descripció
|
|
55
55
|
price: Cost
|
|
56
56
|
title: Títol
|
|
57
|
-
weight:
|
|
57
|
+
weight: Odre de posició
|
|
58
58
|
conference_speaker:
|
|
59
59
|
affiliation: Afiliació
|
|
60
60
|
avatar: Imatge de perfil
|
|
@@ -380,7 +380,8 @@ ca:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Rebutjar la invitació a '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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ó."
|
|
384
|
+
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ç."
|
|
384
385
|
registration: Inscripció a '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ ca:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: S'ha produït un error en inscriure't a aquesta jornada.
|
|
433
434
|
success: T'has inscrit a la jornada correctament.
|
|
435
|
+
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la conferència.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: S'ha produït un error en rebutjar la invitació.
|
|
436
438
|
success: Has rebutjat la invitació correctament.
|
|
439
|
+
unauthorized: Cal que iniciïs la teva sessió abans de rebutjar la invitació.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: S'ha produït un error en abandonar aquesta jornada.
|
|
439
442
|
success: Has abandonat la jornada correctament.
|
data/config/locales/cs.yml
CHANGED
|
@@ -388,7 +388,8 @@ cs:
|
|
|
388
388
|
invite_join_conference_mailer:
|
|
389
389
|
invite:
|
|
390
390
|
decline: Odmítnout pozvánku '%{conference_title}'
|
|
391
|
-
|
|
391
|
+
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ů."
|
|
392
|
+
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."
|
|
392
393
|
registration: Registrace pro "%{conference_title}"
|
|
393
394
|
partners:
|
|
394
395
|
index:
|
|
@@ -439,9 +440,11 @@ cs:
|
|
|
439
440
|
create:
|
|
440
441
|
invalid: Do této konference došlo k problému.
|
|
441
442
|
success: Do konference jste se úspěšně připojili.
|
|
443
|
+
unauthorized: Před registrací na konferenci se musíte přihlásit.
|
|
442
444
|
decline_invitation:
|
|
443
445
|
invalid: Došlo k potížím s odmítnutím pozvánky.
|
|
444
446
|
success: Odmítli jste pozvánku úspěšně.
|
|
447
|
+
unauthorized: Před odmítnutím pozvání se musíte přihlásit.
|
|
445
448
|
destroy:
|
|
446
449
|
invalid: Při této konferenci došlo k problému.
|
|
447
450
|
success: Konference jste úspěšně opustili.
|
data/config/locales/de.yml
CHANGED
|
@@ -380,7 +380,7 @@ de:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Einladung '%{conference_title}' ablehnen
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
384
|
registration: Registrierung für '%{conference_title}'
|
|
385
385
|
partners:
|
|
386
386
|
index:
|
data/config/locales/el.yml
CHANGED
|
@@ -377,7 +377,7 @@ el:
|
|
|
377
377
|
invite_join_conference_mailer:
|
|
378
378
|
invite:
|
|
379
379
|
decline: Απόρριψη πρόσκλησης «%{conference_title}»
|
|
380
|
-
|
|
380
|
+
invited_existing_user_to_join_a_conference: "Ο χρήστης %{invited_by} σάς προσκάλεσε να συμμετάσχετε σε μια διάσκεψη στην εφαρμογή %{application}. Μπορείτε να την απορρίψετε ή να την αποδεχτείτε μέσω των παρακάτω συνδέσμων."
|
|
381
381
|
registration: Εγγραφή για τη διάσκεψη «%{conference_title}»
|
|
382
382
|
partners:
|
|
383
383
|
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
|
@@ -380,7 +380,8 @@ es-MX:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Rechazar invitación a '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
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."
|
|
384
385
|
registration: Inscripción para '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ es-MX:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
|
433
434
|
success: Te has unido a la conferencia con éxito.
|
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Ha habido un problema al rechazar la invitación.
|
|
436
438
|
success: Has rechazado la invitación con éxito.
|
|
439
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
|
439
442
|
success: Has abandonado la conferencia con éxito.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -380,7 +380,8 @@ es-PY:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Rechazar invitación '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
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."
|
|
384
385
|
registration: Registro para '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ es-PY:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
|
433
434
|
success: Te has unido a la conferencia con éxito.
|
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Ha habido un problema al rechazar la invitación.
|
|
436
438
|
success: Has rechazado la invitación con éxito.
|
|
439
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
|
439
442
|
success: Usted ha abandonado la conferencia con éxito.
|
data/config/locales/es.yml
CHANGED
|
@@ -38,13 +38,13 @@ es:
|
|
|
38
38
|
date: Fecha
|
|
39
39
|
link: Enlace
|
|
40
40
|
title: Título
|
|
41
|
-
weight:
|
|
41
|
+
weight: Orden de posición
|
|
42
42
|
conference_partner:
|
|
43
43
|
link: Enlace
|
|
44
44
|
logo: Logo
|
|
45
45
|
name: Nombre
|
|
46
46
|
partner_type: Tipo de colaboración
|
|
47
|
-
weight:
|
|
47
|
+
weight: Orden de posición
|
|
48
48
|
conference_registration_invite:
|
|
49
49
|
email: Correo electrónico
|
|
50
50
|
name: Nombre
|
|
@@ -54,7 +54,7 @@ es:
|
|
|
54
54
|
description: Descripción
|
|
55
55
|
price: Coste
|
|
56
56
|
title: Título
|
|
57
|
-
weight:
|
|
57
|
+
weight: Orden de posición
|
|
58
58
|
conference_speaker:
|
|
59
59
|
affiliation: Afiliación
|
|
60
60
|
avatar: Avatar
|
|
@@ -380,7 +380,8 @@ es:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Rechazar invitación a '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
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."
|
|
384
385
|
registration: Inscripción para '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ es:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Se ha producido un error al inscribirte a esta jornada.
|
|
433
434
|
success: Te has inscrito a la jornada correctamente.
|
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la conferencia.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Se ha producido un error al declinar la invitación.
|
|
436
438
|
success: Has declinado la invitación correctamente.
|
|
439
|
+
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Se ha producido un error al abandonar esta jornada.
|
|
439
442
|
success: Has abandonado la jornada correctamente.
|
data/config/locales/eu.yml
CHANGED
|
@@ -378,7 +378,7 @@ eu:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Baztertu gonbidapena '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} gonbidatu zaitu hitzaldi batean %{application}. Beheko esteken bidez baztertu edo onartu dezakezu."
|
|
382
382
|
registration: '''%{conference_title}'' izen-ematea'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -380,7 +380,8 @@ fi-pl:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Hylkää kutsu "%{conference_title}"
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
|
384
385
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ fi-pl:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Konferenssiin ilmoittautumisessa tapahtui virhe.
|
|
433
434
|
success: Olet ilmoittautunut konferenssiin onnistuneesti.
|
|
435
|
+
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Kutsun hyläämisessä esiintyi ongelma.
|
|
436
438
|
success: Olet hylännyt kutsun onnistuneesti.
|
|
439
|
+
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Konferenssista poistumisessa on tapahtunut virhe.
|
|
439
442
|
success: Olet poistunut konferenssista onnistuneeksi.
|
data/config/locales/fi.yml
CHANGED
|
@@ -380,7 +380,8 @@ fi:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Hylkää kutsu "%{conference_title}"
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
|
384
385
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ fi:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Konferenssiin ilmoittautuminen epäonnistui.
|
|
433
434
|
success: Ilmoittautuminen konferenssiin onnistui.
|
|
435
|
+
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Kutsun hylkääminen epäonnistui.
|
|
436
438
|
success: Kutsun hylkääminen onnistui.
|
|
439
|
+
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Konferenssista poistuminen epäonnistui.
|
|
439
442
|
success: Konferenssista poistuminen onnistui.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -380,7 +380,8 @@ fr-CA:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Refuser l'invitation '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
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."
|
|
384
385
|
registration: Inscription pour '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ fr-CA:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
|
433
434
|
success: Vous avez rejoint la conférence avec succès.
|
|
435
|
+
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
|
436
438
|
success: Vous avez refusé l'invitation avec succès.
|
|
439
|
+
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
|
439
442
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/fr.yml
CHANGED
|
@@ -380,7 +380,8 @@ fr:
|
|
|
380
380
|
invite_join_conference_mailer:
|
|
381
381
|
invite:
|
|
382
382
|
decline: Refuser l'invitation '%{conference_title}'
|
|
383
|
-
|
|
383
|
+
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."
|
|
384
|
+
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."
|
|
384
385
|
registration: Inscription pour '%{conference_title}'
|
|
385
386
|
partners:
|
|
386
387
|
index:
|
|
@@ -431,9 +432,11 @@ fr:
|
|
|
431
432
|
create:
|
|
432
433
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
|
433
434
|
success: Vous avez rejoint la conférence avec succès.
|
|
435
|
+
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
|
434
436
|
decline_invitation:
|
|
435
437
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
|
436
438
|
success: Vous avez refusé l'invitation avec succès.
|
|
439
|
+
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
|
437
440
|
destroy:
|
|
438
441
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
|
439
442
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/gl.yml
CHANGED
|
@@ -374,7 +374,7 @@ gl:
|
|
|
374
374
|
invite_join_conference_mailer:
|
|
375
375
|
invite:
|
|
376
376
|
decline: Declina a invitación '%{conference_title}'
|
|
377
|
-
|
|
377
|
+
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."
|
|
378
378
|
registration: Rexistro para '%{conference_title}'
|
|
379
379
|
partners:
|
|
380
380
|
index:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gn:
|
data/config/locales/hu.yml
CHANGED
|
@@ -341,7 +341,7 @@ hu:
|
|
|
341
341
|
invite_join_conference_mailer:
|
|
342
342
|
invite:
|
|
343
343
|
decline: A "%{conference_title}" meghívása
|
|
344
|
-
|
|
344
|
+
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."
|
|
345
345
|
registration: Regisztráció a '%{conference_title}' -ra
|
|
346
346
|
partners:
|
|
347
347
|
index:
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -336,7 +336,7 @@ id:
|
|
|
336
336
|
invite_join_conference_mailer:
|
|
337
337
|
invite:
|
|
338
338
|
decline: Tolak undangan '%{conference_title}'
|
|
339
|
-
|
|
339
|
+
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."
|
|
340
340
|
registration: Registrasi untuk '%{conference_title}'
|
|
341
341
|
partners:
|
|
342
342
|
index:
|
data/config/locales/it.yml
CHANGED
|
@@ -378,7 +378,7 @@ it:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Rifiuta l'invito '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} ti ha invitato a partecipare alla conferenza %{application}. Puoi rifiutare o accettare tramite i link sottostanti."
|
|
382
382
|
registration: Registrazione a '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/ja.yml
CHANGED
|
@@ -376,7 +376,8 @@ ja:
|
|
|
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
|
+
invited_user_to_join_a_conference: "%{invited_by} があなたを %{application} のカンファレンスに招待しました。以下のリンクから受付ができます。"
|
|
380
381
|
registration: '''%{conference_title} '' の登録'
|
|
381
382
|
partners:
|
|
382
383
|
index:
|
|
@@ -427,9 +428,11 @@ ja:
|
|
|
427
428
|
create:
|
|
428
429
|
invalid: このカンファレンスに参加するのに問題がありました。
|
|
429
430
|
success: カンファレンスに参加しました。
|
|
431
|
+
unauthorized: カンファレンスに登録する前にサインインする必要があります。
|
|
430
432
|
decline_invitation:
|
|
431
433
|
invalid: 招待を辞退するのに問題があった。
|
|
432
434
|
success: 招待を拒否しました。
|
|
435
|
+
unauthorized: 招待を辞退する前にサインインする必要があります。
|
|
433
436
|
destroy:
|
|
434
437
|
invalid: このカンファレンスから退会するのに問題がありました。
|
|
435
438
|
success: カンファレンスから退会しました。
|
data/config/locales/lb.yml
CHANGED
|
@@ -298,7 +298,7 @@ lb:
|
|
|
298
298
|
invite_join_conference_mailer:
|
|
299
299
|
invite:
|
|
300
300
|
decline: Einladung '%{conference_title}' ablehnen
|
|
301
|
-
|
|
301
|
+
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."
|
|
302
302
|
registration: Registrierung für '%{conference_title}'
|
|
303
303
|
partners:
|
|
304
304
|
index:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lo:
|
data/config/locales/lt.yml
CHANGED
|
@@ -388,7 +388,7 @@ lt:
|
|
|
388
388
|
invite_join_conference_mailer:
|
|
389
389
|
invite:
|
|
390
390
|
decline: Atmesti kvietimą į „%{conference_title}“
|
|
391
|
-
|
|
391
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} jus pakvietė dalyvauti konferencijoje %{application}. Kvietimą galite atmesti arba priimti spustelėję toliau pateikiamas nuorodas."
|
|
392
392
|
registration: Registracija į „%{conference_title}“
|
|
393
393
|
partners:
|
|
394
394
|
index:
|
data/config/locales/lv.yml
CHANGED
|
@@ -345,7 +345,7 @@ lv:
|
|
|
345
345
|
invite_join_conference_mailer:
|
|
346
346
|
invite:
|
|
347
347
|
decline: Noraidīt ielūgumu '%{conference_title}'
|
|
348
|
-
|
|
348
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} jūs aicina piedalīties konferencē %{application}. Jūs varat pieņemt vai noraidīt ielūgumu, izmantojot vienu no turpmāk esošajām saitēm."
|
|
349
349
|
registration: Reģistrācija dalībai '%{conference_title}'
|
|
350
350
|
partners:
|
|
351
351
|
index:
|
data/config/locales/nl.yml
CHANGED
|
@@ -378,7 +378,7 @@ nl:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Uitnodiging '%{conference_title}' weigeren
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} heeft je uitgenodigd om deel te nemen aan een conferentie op %{application}. U kunt het weigeren of accepteren via de onderstaande links."
|
|
382
382
|
registration: Registratie voor '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/no.yml
CHANGED
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Avvis invitasjon '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} har invitert deg til å delta et foredrag på %{application}. Du kan avvise eller godta gjennom lenkene nedenfor."
|
|
382
382
|
registration: Påmelding til '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/pl.yml
CHANGED
|
@@ -384,7 +384,7 @@ pl:
|
|
|
384
384
|
invite_join_conference_mailer:
|
|
385
385
|
invite:
|
|
386
386
|
decline: Odrzuć zaproszenie "%{conference_title}"
|
|
387
|
-
|
|
387
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} zaprosił(a) Cię do udziału w konferencji %{application}. Możesz odrzucić lub zaakceptować zaproszenie korzystając z poniższych linków."
|
|
388
388
|
registration: Rejestracja na "%{conference_title}"
|
|
389
389
|
partners:
|
|
390
390
|
index:
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -378,7 +378,7 @@ pt-BR:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Recusar convite '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} convidou você para participar de uma conferência em %{application}. Você pode recusar ou aceitá-lo através dos links abaixo."
|
|
382
382
|
registration: Registro para '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/pt.yml
CHANGED
|
@@ -378,7 +378,7 @@ pt:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Recusar convite '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} convido-o para participar numa conferência em %{application}. Pode recusá-lo ou aceitá-lo através dos links abaixo."
|
|
382
382
|
registration: Registo para '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -382,7 +382,7 @@ ro:
|
|
|
382
382
|
invite_join_conference_mailer:
|
|
383
383
|
invite:
|
|
384
384
|
decline: Refuzați invitația '%{conference_title}'
|
|
385
|
-
|
|
385
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} te-a invitat să participi la o conferință la %{application}. Puteți să o refuzați sau să o acceptați prin intermediul linkurilor de mai jos."
|
|
386
386
|
registration: Înregistrare pentru '%{conference_title}'
|
|
387
387
|
partners:
|
|
388
388
|
index:
|
data/config/locales/sk.yml
CHANGED
|
@@ -349,7 +349,7 @@ sk:
|
|
|
349
349
|
invite_join_conference_mailer:
|
|
350
350
|
invite:
|
|
351
351
|
decline: Odmietnuť pozvánku na "%{conference_title}"
|
|
352
|
-
|
|
352
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} Vás pozval na účasť na konferencii na %{application}. Účasť môžete potvrdiť alebo odmietnuť kliknutím na odkaz nižšie."
|
|
353
353
|
registration: Registrácia na konferenciu "%{conference_title}"
|
|
354
354
|
partners:
|
|
355
355
|
index:
|
data/config/locales/sv.yml
CHANGED
|
@@ -378,7 +378,7 @@ sv:
|
|
|
378
378
|
invite_join_conference_mailer:
|
|
379
379
|
invite:
|
|
380
380
|
decline: Avböj inbjudan till '%{conference_title}'
|
|
381
|
-
|
|
381
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} har bjudit in dig till en konferens på %{application}. Du kan avböja eller godkänna den via länkarna nedan."
|
|
382
382
|
registration: Registrering till '%{conference_title}'
|
|
383
383
|
partners:
|
|
384
384
|
index:
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -341,7 +341,7 @@ tr:
|
|
|
341
341
|
invite_join_conference_mailer:
|
|
342
342
|
invite:
|
|
343
343
|
decline: '''%{conference_title}'' davetiyesini reddet'
|
|
344
|
-
|
|
344
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} sizi %{application}bir konferansa katılmaya davet etti. Aşağıdaki bağlantılardan reddedebilir veya kabul edebilirsiniz."
|
|
345
345
|
registration: '''%{conference_title}'' için kayıt'
|
|
346
346
|
partners:
|
|
347
347
|
index:
|
data/config/locales/zh-CN.yml
CHANGED
|
@@ -337,7 +337,7 @@ zh-CN:
|
|
|
337
337
|
invite_join_conference_mailer:
|
|
338
338
|
invite:
|
|
339
339
|
decline: 拒绝邀请 '%{conference_title}'
|
|
340
|
-
|
|
340
|
+
invited_existing_user_to_join_a_conference: "%{invited_by} 邀请您在 %{application}加入会议。您可以拒绝或接受以下链接。"
|
|
341
341
|
registration: 注册%{conference_title}'
|
|
342
342
|
partners:
|
|
343
343
|
index:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-conferences
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.27.
|
|
4
|
+
version: 0.27.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Isaac Massot Gil
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: decidim-core
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.27.
|
|
19
|
+
version: 0.27.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.27.
|
|
26
|
+
version: 0.27.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: decidim-meetings
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.27.
|
|
33
|
+
version: 0.27.1
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.27.
|
|
40
|
+
version: 0.27.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: wicked_pdf
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,28 +72,28 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.27.
|
|
75
|
+
version: 0.27.1
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.27.
|
|
82
|
+
version: 0.27.1
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: decidim-dev
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - '='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.27.
|
|
89
|
+
version: 0.27.1
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - '='
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.27.
|
|
96
|
+
version: 0.27.1
|
|
97
97
|
description: Conferences component for decidim.
|
|
98
98
|
email:
|
|
99
99
|
- isaac.mg@coditramuntana.com
|
|
@@ -365,6 +365,7 @@ files:
|
|
|
365
365
|
- config/locales/fr.yml
|
|
366
366
|
- config/locales/ga-IE.yml
|
|
367
367
|
- config/locales/gl.yml
|
|
368
|
+
- config/locales/gn-PY.yml
|
|
368
369
|
- config/locales/hr-HR.yml
|
|
369
370
|
- config/locales/hr.yml
|
|
370
371
|
- config/locales/hu.yml
|
|
@@ -377,6 +378,7 @@ files:
|
|
|
377
378
|
- config/locales/ko.yml
|
|
378
379
|
- config/locales/lb-LU.yml
|
|
379
380
|
- config/locales/lb.yml
|
|
381
|
+
- config/locales/lo-LA.yml
|
|
380
382
|
- config/locales/lt-LT.yml
|
|
381
383
|
- config/locales/lt.yml
|
|
382
384
|
- config/locales/lv.yml
|