decidim-conferences 0.26.4 → 0.26.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +16 -10
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +1 -1
- data/config/locales/ar.yml +1 -7
- data/config/locales/ca.yml +5 -4
- data/config/locales/cs.yml +7 -6
- data/config/locales/de.yml +4 -7
- data/config/locales/el.yml +0 -6
- data/config/locales/en.yml +6 -5
- data/config/locales/es-MX.yml +8 -7
- data/config/locales/es-PY.yml +9 -8
- data/config/locales/es.yml +5 -4
- data/config/locales/eu.yml +1 -7
- data/config/locales/fi-plain.yml +6 -5
- data/config/locales/fi.yml +6 -5
- data/config/locales/fr-CA.yml +3 -2
- data/config/locales/fr.yml +3 -2
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +0 -6
- data/config/locales/hu.yml +2 -11
- data/config/locales/id-ID.yml +0 -9
- data/config/locales/it.yml +1 -7
- data/config/locales/ja.yml +4 -3
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/lb.yml +1 -4
- data/config/locales/lt.yml +1 -7
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +2 -8
- data/config/locales/no.yml +1 -7
- data/config/locales/pl.yml +1 -6
- data/config/locales/pt-BR.yml +1 -7
- data/config/locales/pt.yml +0 -6
- data/config/locales/ro-RO.yml +13 -7
- data/config/locales/sk.yml +0 -9
- data/config/locales/sv.yml +5 -6
- data/config/locales/tr-TR.yml +2 -11
- data/config/locales/zh-CN.yml +0 -9
- data/lib/decidim/conferences/test/factories.rb +4 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +11 -11
- data/app/helpers/decidim/conferences/admin/conference_speakers_helper.rb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6575c3f35191e92d5407f36b6c0695fbc26b1171641810e4084b6b418df8d65b
|
4
|
+
data.tar.gz: 6a5d014a01d97c9a6cebc36b81d49f85ac484282eef596c4a288b3ee0b008abf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c93478e77107b4b8c316b776d8d522a3f593bcbf8c690aba7061938190b0aff350e791120c12427c849bd69d0a44d05dc7607d55857e36cad861d53c3bcf9680
|
7
|
+
data.tar.gz: fedc5e941a7a16844246650f2cbe5f17daf32f711bdb1453e5a22db25eecd0d65ed09ffac83a20993e62c86d79c9d4fd31f73e56bb9a811232498cd4c4cf5b7c
|
@@ -6,10 +6,11 @@ module Decidim
|
|
6
6
|
# Controller that allows managing conference speakers.
|
7
7
|
#
|
8
8
|
class ConferenceSpeakersController < Decidim::Conferences::Admin::ApplicationController
|
9
|
-
helper Decidim::Conferences::Admin::ConferenceSpeakersHelper
|
10
9
|
include Concerns::ConferenceAdmin
|
11
10
|
include Decidim::Paginable
|
12
11
|
|
12
|
+
helper_method :conference_speaker, :meetings_selected
|
13
|
+
|
13
14
|
def index
|
14
15
|
enforce_permission_to :index, :conference_speaker
|
15
16
|
|
@@ -41,17 +42,15 @@ module Decidim
|
|
41
42
|
end
|
42
43
|
|
43
44
|
def edit
|
44
|
-
|
45
|
-
|
46
|
-
@form = form(ConferenceSpeakerForm).from_model(@item)
|
45
|
+
enforce_permission_to :update, :conference_speaker, speaker: conference_speaker
|
46
|
+
@form = form(ConferenceSpeakerForm).from_model(conference_speaker)
|
47
47
|
end
|
48
48
|
|
49
49
|
def update
|
50
|
-
|
51
|
-
enforce_permission_to :update, :conference_speaker, speaker: @conference_speaker
|
50
|
+
enforce_permission_to :update, :conference_speaker, speaker: conference_speaker
|
52
51
|
@form = form(ConferenceSpeakerForm).from_params(params)
|
53
52
|
|
54
|
-
UpdateConferenceSpeaker.call(@form,
|
53
|
+
UpdateConferenceSpeaker.call(@form, conference_speaker) do
|
55
54
|
on(:ok) do
|
56
55
|
flash[:notice] = I18n.t("conference_speakers.update.success", scope: "decidim.admin")
|
57
56
|
redirect_to conference_speakers_path(current_conference)
|
@@ -65,10 +64,9 @@ module Decidim
|
|
65
64
|
end
|
66
65
|
|
67
66
|
def destroy
|
68
|
-
|
69
|
-
enforce_permission_to :destroy, :conference_speaker, speaker: @conference_speaker
|
67
|
+
enforce_permission_to :destroy, :conference_speaker, speaker: conference_speaker
|
70
68
|
|
71
|
-
DestroyConferenceSpeaker.call(
|
69
|
+
DestroyConferenceSpeaker.call(conference_speaker, current_user) do
|
72
70
|
on(:ok) do
|
73
71
|
flash[:notice] = I18n.t("conference_speakers.destroy.success", scope: "decidim.admin")
|
74
72
|
redirect_to conference_speakers_path(current_conference)
|
@@ -78,6 +76,14 @@ module Decidim
|
|
78
76
|
|
79
77
|
private
|
80
78
|
|
79
|
+
def meetings_selected
|
80
|
+
@meetings_selected ||= @conference_speaker.conference_meetings.pluck(:id) if @conference_speaker.present?
|
81
|
+
end
|
82
|
+
|
83
|
+
def conference_speaker
|
84
|
+
@conference_speaker ||= collection.find(params[:id])
|
85
|
+
end
|
86
|
+
|
81
87
|
def collection
|
82
88
|
@collection ||= Decidim::ConferenceSpeaker.where(conference: current_conference)
|
83
89
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= decidim_form_for(@form, url: conference_speaker_path(
|
1
|
+
<%= decidim_form_for(@form, url: conference_speaker_path(conference_speaker.conference, conference_speaker), html: { class: "form edit_conference_speaker" }) do |f| %>
|
2
2
|
<%= render partial: "form", object: f, locals: { title: t("conference_speakers.edit.title", scope: "decidim.admin") } %>
|
3
3
|
|
4
4
|
<div class="button--double form-general-submit">
|
data/config/locales/ar.yml
CHANGED
@@ -28,7 +28,6 @@ ar:
|
|
28
28
|
show_statistics: عرض الإحصائيات
|
29
29
|
sign_date: تاريخ التوقيع
|
30
30
|
signature: التوقيع
|
31
|
-
signature_name: اسم التوقيع
|
32
31
|
slogan: شعار
|
33
32
|
slug: سبيكة العنوان الشبكي
|
34
33
|
start_date: تاريخ البداية
|
@@ -37,13 +36,11 @@ ar:
|
|
37
36
|
date: التاريخ
|
38
37
|
link: الرابط
|
39
38
|
title: العنوان
|
40
|
-
weight: وزن
|
41
39
|
conference_partner:
|
42
40
|
link: الرابط
|
43
41
|
logo: الشعار
|
44
42
|
name: الإسم
|
45
43
|
partner_type: نوع الشريك
|
46
|
-
weight: وزن
|
47
44
|
conference_registration_invite:
|
48
45
|
email: البريد الإلكتروني
|
49
46
|
name: الإسم
|
@@ -53,7 +50,6 @@ ar:
|
|
53
50
|
description: الوصف
|
54
51
|
price: السعر
|
55
52
|
title: العنوان
|
56
|
-
weight: وزن
|
57
53
|
conference_speaker:
|
58
54
|
affiliation: الانتساب
|
59
55
|
avatar: الصورة الرمزية
|
@@ -143,8 +139,6 @@ ar:
|
|
143
139
|
edit:
|
144
140
|
title: تحديث مسؤول المؤتمر.
|
145
141
|
update: تحديث
|
146
|
-
index:
|
147
|
-
conference_admins_title: مدراء المؤتمر
|
148
142
|
new:
|
149
143
|
create: إنشاء
|
150
144
|
title: مشرف المؤتمر الجديد.
|
@@ -425,7 +419,7 @@ ar:
|
|
425
419
|
conference_program:
|
426
420
|
program_meeting:
|
427
421
|
content: المحتوى
|
428
|
-
location:
|
422
|
+
location: الموقع
|
429
423
|
speakers: مكبرات الصوت
|
430
424
|
streaming: تدفق
|
431
425
|
show:
|
data/config/locales/ca.yml
CHANGED
@@ -28,7 +28,7 @@ ca:
|
|
28
28
|
show_statistics: Mostrar estadístiques
|
29
29
|
sign_date: Data de signatura
|
30
30
|
signature: Signatura
|
31
|
-
signature_name:
|
31
|
+
signature_name: Nom de la signatura
|
32
32
|
slogan: Eslògan
|
33
33
|
slug: URL amigable
|
34
34
|
start_date: Data d'inici
|
@@ -53,7 +53,7 @@ ca:
|
|
53
53
|
description: Descripció
|
54
54
|
price: Cost
|
55
55
|
title: Títol
|
56
|
-
weight:
|
56
|
+
weight: Ordre de posició
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Afiliació
|
59
59
|
avatar: Imatge de perfil
|
@@ -134,7 +134,7 @@ ca:
|
|
134
134
|
title: Actualitzar administradora de la jornada.
|
135
135
|
update: Actualitzar
|
136
136
|
index:
|
137
|
-
conference_admins_title:
|
137
|
+
conference_admins_title: Administradores de la jornada
|
138
138
|
new:
|
139
139
|
create: Crear
|
140
140
|
title: Nova administradora de jornada.
|
@@ -312,6 +312,7 @@ ca:
|
|
312
312
|
update: "%{user_name} ha actualitzat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
313
313
|
registration_type:
|
314
314
|
create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
315
|
+
delete: "%{user_name} ha eliminat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
315
316
|
publish: "%{user_name} ha publicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
316
317
|
unpublish: "%{user_name} ha despublicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
317
318
|
update: "%{user_name} ha actualitzat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
@@ -431,7 +432,7 @@ 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.
|
434
|
-
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la
|
435
|
+
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la jornada.
|
435
436
|
decline_invitation:
|
436
437
|
invalid: S'ha produït un error en rebutjar la invitació.
|
437
438
|
success: Has rebutjat la invitació correctament.
|
data/config/locales/cs.yml
CHANGED
@@ -28,7 +28,7 @@ cs:
|
|
28
28
|
show_statistics: Zobrazit statistiky
|
29
29
|
sign_date: Datum podpisu
|
30
30
|
signature: Podpis
|
31
|
-
signature_name:
|
31
|
+
signature_name: Podpisové jméno
|
32
32
|
slogan: Motto
|
33
33
|
slug: URL slug
|
34
34
|
start_date: Datum zahájení
|
@@ -37,13 +37,13 @@ cs:
|
|
37
37
|
date: Datum
|
38
38
|
link: Odkaz
|
39
39
|
title: Název
|
40
|
-
weight:
|
40
|
+
weight: Pozice v řazení
|
41
41
|
conference_partner:
|
42
42
|
link: Odkaz
|
43
43
|
logo: Logo
|
44
44
|
name: Název
|
45
45
|
partner_type: Typ partnera
|
46
|
-
weight:
|
46
|
+
weight: Pozice v řazení
|
47
47
|
conference_registration_invite:
|
48
48
|
email: E-mail
|
49
49
|
name: Jméno
|
@@ -53,7 +53,7 @@ cs:
|
|
53
53
|
description: Popis
|
54
54
|
price: Cena
|
55
55
|
title: Oslovení
|
56
|
-
weight:
|
56
|
+
weight: Pozice v řazení
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Příslušnost
|
59
59
|
avatar: Avatar
|
@@ -140,7 +140,7 @@ cs:
|
|
140
140
|
title: Aktualizovat uživatele konference.
|
141
141
|
update: Aktualizace
|
142
142
|
index:
|
143
|
-
conference_admins_title:
|
143
|
+
conference_admins_title: Administrátoři konference
|
144
144
|
new:
|
145
145
|
create: Vytvořit
|
146
146
|
title: Nový administrátor konference.
|
@@ -318,6 +318,7 @@ cs:
|
|
318
318
|
update: "%{user_name} aktualizoval partnera %{resource_name} na konferenci %{space_name}"
|
319
319
|
registration_type:
|
320
320
|
create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
|
321
|
+
delete: "%{user_name} odstranil typ registrace %{resource_name} z konference %{space_name}"
|
321
322
|
publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
|
322
323
|
unpublish: "%{user_name} nepublikováno %{resource_name} typ registrace na %{space_name} konferencích"
|
323
324
|
update: "%{user_name} aktualizoval typ registrace %{resource_name} na konferenci %{space_name}"
|
@@ -420,7 +421,7 @@ cs:
|
|
420
421
|
conference_program:
|
421
422
|
program_meeting:
|
422
423
|
content: Obsah
|
423
|
-
location:
|
424
|
+
location: Lokalita
|
424
425
|
speakers: Řečníci
|
425
426
|
streaming: Streamování
|
426
427
|
show:
|
data/config/locales/de.yml
CHANGED
@@ -28,7 +28,6 @@ de:
|
|
28
28
|
show_statistics: Zeige Statistiken
|
29
29
|
sign_date: Unterzeichnungsdatum
|
30
30
|
signature: Unterschrift
|
31
|
-
signature_name: Signaturname
|
32
31
|
slogan: Slogan
|
33
32
|
slug: URL-Block
|
34
33
|
start_date: Startdatum
|
@@ -37,13 +36,13 @@ de:
|
|
37
36
|
date: Datum
|
38
37
|
link: Link
|
39
38
|
title: Titel
|
40
|
-
weight:
|
39
|
+
weight: Reihenfolge
|
41
40
|
conference_partner:
|
42
41
|
link: Link
|
43
42
|
logo: Logo
|
44
43
|
name: Name
|
45
44
|
partner_type: Partnertyp
|
46
|
-
weight:
|
45
|
+
weight: Reihenfolge
|
47
46
|
conference_registration_invite:
|
48
47
|
email: E-Mail
|
49
48
|
name: Name
|
@@ -53,7 +52,7 @@ de:
|
|
53
52
|
description: Beschreibung
|
54
53
|
price: Preis
|
55
54
|
title: Titel
|
56
|
-
weight:
|
55
|
+
weight: Reihenfolge
|
57
56
|
conference_speaker:
|
58
57
|
affiliation: Zugehörigkeit
|
59
58
|
avatar: Profilbild
|
@@ -133,8 +132,6 @@ de:
|
|
133
132
|
edit:
|
134
133
|
title: Aktualisieren Sie den Konferenzbenutzer.
|
135
134
|
update: Aktualisieren
|
136
|
-
index:
|
137
|
-
conference_admins_title: Konferenzbenutzer
|
138
135
|
new:
|
139
136
|
create: Erstellen
|
140
137
|
title: Neuer Konferenzbenutzer
|
@@ -246,7 +243,7 @@ de:
|
|
246
243
|
price: Preis
|
247
244
|
registrations_count: Registrierungen zählen
|
248
245
|
title: Titel
|
249
|
-
weight:
|
246
|
+
weight: Reihenfolge
|
250
247
|
name: Registrierungstyp
|
251
248
|
partners:
|
252
249
|
create:
|
data/config/locales/el.yml
CHANGED
@@ -28,7 +28,6 @@ el:
|
|
28
28
|
show_statistics: Εμφάνιση στατιστικών
|
29
29
|
sign_date: Ημερομηνία υπογραφής
|
30
30
|
signature: Υπογραφή
|
31
|
-
signature_name: όνομα υπογραφής
|
32
31
|
slogan: Σύνθημα
|
33
32
|
slug: Slug διεύθυνσης URL
|
34
33
|
start_date: Ημερομηνία έναρξης
|
@@ -37,13 +36,11 @@ el:
|
|
37
36
|
date: Ημερομηνία
|
38
37
|
link: Σύνδεσμος
|
39
38
|
title: Τίτλος
|
40
|
-
weight: Βάρος
|
41
39
|
conference_partner:
|
42
40
|
link: Σύνδεσμος
|
43
41
|
logo: Λογότυπο
|
44
42
|
name: Όνομα
|
45
43
|
partner_type: Τύπος εταίρου
|
46
|
-
weight: Βάρος
|
47
44
|
conference_registration_invite:
|
48
45
|
name: Όνομα
|
49
46
|
registration_type_id: Τύπος εγγραφής
|
@@ -52,7 +49,6 @@ el:
|
|
52
49
|
description: Περιγραφή
|
53
50
|
price: Τιμή
|
54
51
|
title: Τίτλος
|
55
|
-
weight: Βάρος
|
56
52
|
conference_speaker:
|
57
53
|
affiliation: Δεσμός
|
58
54
|
avatar: Εικόνα Χρήστη
|
@@ -130,8 +126,6 @@ el:
|
|
130
126
|
edit:
|
131
127
|
title: Ενημέρωση διαχειριστή διάσκεψης.
|
132
128
|
update: Ενημέρωση
|
133
|
-
index:
|
134
|
-
conference_admins_title: διαχειριστές διάσκεψης
|
135
129
|
new:
|
136
130
|
create: Δημιουργία
|
137
131
|
title: Νέος διαχειριστής διάσκεψης.
|
data/config/locales/en.yml
CHANGED
@@ -29,7 +29,7 @@ en:
|
|
29
29
|
show_statistics: Show statistics
|
30
30
|
sign_date: Sign date
|
31
31
|
signature: Signature
|
32
|
-
signature_name:
|
32
|
+
signature_name: Signature name
|
33
33
|
slogan: Slogan
|
34
34
|
slug: URL slug
|
35
35
|
start_date: Start date
|
@@ -38,13 +38,13 @@ en:
|
|
38
38
|
date: Date
|
39
39
|
link: Link
|
40
40
|
title: Title
|
41
|
-
weight:
|
41
|
+
weight: Order position
|
42
42
|
conference_partner:
|
43
43
|
link: Link
|
44
44
|
logo: Logo
|
45
45
|
name: Name
|
46
46
|
partner_type: Partner type
|
47
|
-
weight:
|
47
|
+
weight: Order position
|
48
48
|
conference_registration_invite:
|
49
49
|
email: Email
|
50
50
|
name: Name
|
@@ -54,7 +54,7 @@ en:
|
|
54
54
|
description: Description
|
55
55
|
price: Price
|
56
56
|
title: Title
|
57
|
-
weight:
|
57
|
+
weight: Order position
|
58
58
|
conference_speaker:
|
59
59
|
affiliation: Affiliation
|
60
60
|
avatar: Avatar
|
@@ -135,7 +135,7 @@ en:
|
|
135
135
|
title: Update conference admin.
|
136
136
|
update: Update
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: Conference admins
|
139
139
|
new:
|
140
140
|
create: Create
|
141
141
|
title: New conference admin.
|
@@ -313,6 +313,7 @@ en:
|
|
313
313
|
update: "%{user_name} updated the partner %{resource_name} in the %{space_name} conference"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
|
316
|
+
delete: "%{user_name} removed the %{resource_name} registration type from the %{space_name} conference"
|
316
317
|
publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
|
317
318
|
unpublish: "%{user_name} unpublished the %{resource_name} registration type in the %{space_name} conference"
|
318
319
|
update: "%{user_name} updated the %{resource_name} registration type in the %{space_name} conference"
|
data/config/locales/es-MX.yml
CHANGED
@@ -28,7 +28,7 @@ es-MX:
|
|
28
28
|
show_statistics: Mostrar estadísticas
|
29
29
|
sign_date: Fecha de firma
|
30
30
|
signature: Firma
|
31
|
-
signature_name:
|
31
|
+
signature_name: Nombre de la firma
|
32
32
|
slogan: Eslogan
|
33
33
|
slug: URL amigable
|
34
34
|
start_date: Fecha de inicio
|
@@ -37,13 +37,13 @@ es-MX:
|
|
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-MX:
|
|
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
|
@@ -134,7 +134,7 @@ es-MX:
|
|
134
134
|
title: Actualizar usuario de la conferencia.
|
135
135
|
update: Actualizar
|
136
136
|
index:
|
137
|
-
conference_admins_title:
|
137
|
+
conference_admins_title: Administradoras de la jornada
|
138
138
|
new:
|
139
139
|
create: Crear
|
140
140
|
title: Nuevo usuario de la conferencia.
|
@@ -312,6 +312,7 @@ es-MX:
|
|
312
312
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
313
|
registration_type:
|
314
314
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
315
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
315
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
316
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -412,7 +413,7 @@ es-MX:
|
|
412
413
|
conference_program:
|
413
414
|
program_meeting:
|
414
415
|
content: Contenido
|
415
|
-
location:
|
416
|
+
location: Localización
|
416
417
|
speakers: Ponentes
|
417
418
|
streaming: Retransmisión
|
418
419
|
show:
|
@@ -431,7 +432,7 @@ 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.
|
434
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
435
436
|
decline_invitation:
|
436
437
|
invalid: Ha habido un problema al rechazar la invitación.
|
437
438
|
success: Has rechazado la invitación con éxito.
|
data/config/locales/es-PY.yml
CHANGED
@@ -28,7 +28,7 @@ es-PY:
|
|
28
28
|
show_statistics: Mostrar estadísticas
|
29
29
|
sign_date: Fecha de firma
|
30
30
|
signature: Firma
|
31
|
-
signature_name:
|
31
|
+
signature_name: Nombre de la firma
|
32
32
|
slogan: Eslogan
|
33
33
|
slug: URL amigable
|
34
34
|
start_date: Fecha de inicio
|
@@ -37,13 +37,13 @@ es-PY:
|
|
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-PY:
|
|
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
|
@@ -134,7 +134,7 @@ es-PY:
|
|
134
134
|
title: Actualizar el usuario de la conferencia.
|
135
135
|
update: Actualizar
|
136
136
|
index:
|
137
|
-
conference_admins_title:
|
137
|
+
conference_admins_title: Administradoras de la jornada
|
138
138
|
new:
|
139
139
|
create: Crear
|
140
140
|
title: Nuevo usuario de la conferencia.
|
@@ -312,6 +312,7 @@ es-PY:
|
|
312
312
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
313
|
registration_type:
|
314
314
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
315
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
315
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
316
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -412,7 +413,7 @@ es-PY:
|
|
412
413
|
conference_program:
|
413
414
|
program_meeting:
|
414
415
|
content: Contenido
|
415
|
-
location:
|
416
|
+
location: Localización
|
416
417
|
speakers: Ponentes
|
417
418
|
streaming: Transmisión
|
418
419
|
show:
|
@@ -431,7 +432,7 @@ 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.
|
434
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
435
436
|
decline_invitation:
|
436
437
|
invalid: Ha habido un problema al rechazar la invitación.
|
437
438
|
success: Has rechazado la invitación con éxito.
|
@@ -453,7 +454,7 @@ es-PY:
|
|
453
454
|
go_to_twitter: Ir a twitter
|
454
455
|
conference_speakers:
|
455
456
|
index:
|
456
|
-
speakers:
|
457
|
+
speakers: Ponentes
|
457
458
|
conferences:
|
458
459
|
partners:
|
459
460
|
collaborators: Fogonadura
|
data/config/locales/es.yml
CHANGED
@@ -28,7 +28,7 @@ es:
|
|
28
28
|
show_statistics: Mostrar estadísticas
|
29
29
|
sign_date: Fecha de firma
|
30
30
|
signature: Firma
|
31
|
-
signature_name:
|
31
|
+
signature_name: Nombre de la firma
|
32
32
|
slogan: Eslogan
|
33
33
|
slug: URL amigable
|
34
34
|
start_date: Fecha de inicio
|
@@ -134,7 +134,7 @@ es:
|
|
134
134
|
title: Actualizar administradora de la jornada.
|
135
135
|
update: Actualizar
|
136
136
|
index:
|
137
|
-
conference_admins_title:
|
137
|
+
conference_admins_title: Administradoras de la jornada
|
138
138
|
new:
|
139
139
|
create: Crear
|
140
140
|
title: Nueva administradora de la jornada.
|
@@ -312,6 +312,7 @@ es:
|
|
312
312
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
313
|
registration_type:
|
314
314
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
315
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
315
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
316
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
317
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
@@ -412,7 +413,7 @@ es:
|
|
412
413
|
conference_program:
|
413
414
|
program_meeting:
|
414
415
|
content: Contenido
|
415
|
-
location:
|
416
|
+
location: Localización
|
416
417
|
speakers: Ponentes
|
417
418
|
streaming: Streaming
|
418
419
|
show:
|
@@ -431,7 +432,7 @@ 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.
|
434
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
435
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
435
436
|
decline_invitation:
|
436
437
|
invalid: Se ha producido un error al declinar la invitación.
|
437
438
|
success: Has declinado la invitación correctamente.
|
data/config/locales/eu.yml
CHANGED
@@ -28,7 +28,6 @@ eu:
|
|
28
28
|
show_statistics: Erakutsi estatistikak
|
29
29
|
sign_date: Sinatze-data
|
30
30
|
signature: Sinadura
|
31
|
-
signature_name: sinaduraren izena
|
32
31
|
slogan: Leloa
|
33
32
|
slug: URL laburra
|
34
33
|
start_date: Hasiera-data
|
@@ -37,13 +36,11 @@ eu:
|
|
37
36
|
date: Data
|
38
37
|
link: Lotura
|
39
38
|
title: Izenburua
|
40
|
-
weight: Pisua
|
41
39
|
conference_partner:
|
42
40
|
link: Lotura
|
43
41
|
logo: Logoa
|
44
42
|
name: Izena
|
45
43
|
partner_type: Lankidetza mota
|
46
|
-
weight: Pisua
|
47
44
|
conference_registration_invite:
|
48
45
|
email: Helbide elektronikoa
|
49
46
|
name: Izena
|
@@ -53,7 +50,6 @@ eu:
|
|
53
50
|
description: Deskribapena
|
54
51
|
price: Prezioa
|
55
52
|
title: Izenburua
|
56
|
-
weight: Pisua
|
57
53
|
conference_speaker:
|
58
54
|
affiliation: Kidetza
|
59
55
|
avatar: Avatarra
|
@@ -131,8 +127,6 @@ eu:
|
|
131
127
|
edit:
|
132
128
|
title: Eguneratu konferentzia erabiltzaileak.
|
133
129
|
update: eguneratzearen
|
134
|
-
index:
|
135
|
-
conference_admins_title: konferentzia erabiltzaileak
|
136
130
|
new:
|
137
131
|
create: Sortu
|
138
132
|
title: Konferentzia erabiltzaile berria.
|
@@ -409,7 +403,7 @@ eu:
|
|
409
403
|
conference_program:
|
410
404
|
program_meeting:
|
411
405
|
content: Edukia
|
412
|
-
location:
|
406
|
+
location: Kokapena
|
413
407
|
speakers: Hizlariak
|
414
408
|
streaming: Streaming
|
415
409
|
show:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -28,7 +28,7 @@ fi-pl:
|
|
28
28
|
show_statistics: Näytä tilastot
|
29
29
|
sign_date: Allekirjoituksen päivämäärä
|
30
30
|
signature: Allekirjoitus
|
31
|
-
signature_name:
|
31
|
+
signature_name: Allekirjoituksen nimi
|
32
32
|
slogan: Iskulause
|
33
33
|
slug: URL-tunniste
|
34
34
|
start_date: Alkamispäivä
|
@@ -37,13 +37,13 @@ fi-pl:
|
|
37
37
|
date: Päivämäärä
|
38
38
|
link: Linkki
|
39
39
|
title: Otsikko
|
40
|
-
weight:
|
40
|
+
weight: Järjestysnumero
|
41
41
|
conference_partner:
|
42
42
|
link: Linkki
|
43
43
|
logo: Logo
|
44
44
|
name: Nimi
|
45
45
|
partner_type: Kumppanin tyyppi
|
46
|
-
weight:
|
46
|
+
weight: Järjestysnumero
|
47
47
|
conference_registration_invite:
|
48
48
|
email: Sähköposti
|
49
49
|
name: Nimi
|
@@ -53,7 +53,7 @@ fi-pl:
|
|
53
53
|
description: Kuvaus
|
54
54
|
price: Hinta
|
55
55
|
title: Otsikko
|
56
|
-
weight:
|
56
|
+
weight: Järjestysnumero
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Jäsenyys
|
59
59
|
avatar: Avatar
|
@@ -134,7 +134,7 @@ fi-pl:
|
|
134
134
|
title: Päivitä konferenssin käyttäjä.
|
135
135
|
update: Päivitä
|
136
136
|
index:
|
137
|
-
conference_admins_title:
|
137
|
+
conference_admins_title: Konferenssin ylläpitäjät
|
138
138
|
new:
|
139
139
|
create: Luo
|
140
140
|
title: Uusi konferenssin käyttäjä.
|
@@ -312,6 +312,7 @@ fi-pl:
|
|
312
312
|
update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
|
313
313
|
registration_type:
|
314
314
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
315
|
+
delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
|
315
316
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
316
317
|
unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
|
317
318
|
update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"
|