decidim-conferences 0.27.1 → 0.27.3
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/app/views/decidim/conferences/admin/conferences/_form.html.erb +3 -3
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +2 -2
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +1 -1
- data/config/locales/ar.yml +1 -6
- data/config/locales/ca.yml +6 -5
- 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 +3 -9
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +6 -5
- data/config/locales/fi.yml +7 -6
- 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 +64 -6
- 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/kaa.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 +3 -9
- 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/config/locales/zh-TW.yml +613 -0
- data/lib/decidim/conferences/test/factories.rb +4 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +13 -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: ba703ab7058b771fdb11399da31748622c1725e2f0719734f1490ce48dbe54ef
|
4
|
+
data.tar.gz: d269d2f130079d101389ca43572775a2c3ce8a8f7fa0682a73224c911df83e57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 366cb5126a014c37da50bf6ae8382c1405ec1a8c151fb0647858bc0b4d728bb7c630a559176d2267c476e28413c980516a591739c75d86bc0aaea4e22229dde6
|
7
|
+
data.tar.gz: 3b8873290a56864cdfdb590f427884e8408b3571e1867c30bcc2de49e27a60fea770b118a613d621417e3da691f250f92f4c344e529627439dd90bd925fd261e
|
@@ -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">
|
@@ -32,11 +32,11 @@
|
|
32
32
|
</div>
|
33
33
|
|
34
34
|
<div class="row column">
|
35
|
-
<%= form.translated :editor, :description
|
35
|
+
<%= form.translated :editor, :description %>
|
36
36
|
</div>
|
37
37
|
|
38
38
|
<div class="row column">
|
39
|
-
<%= form.translated :editor, :objectives
|
39
|
+
<%= form.translated :editor, :objectives %>
|
40
40
|
</div>
|
41
41
|
|
42
42
|
<div class="row column">
|
@@ -84,7 +84,7 @@
|
|
84
84
|
</div>
|
85
85
|
|
86
86
|
<div class="row column" id="conference_registrations_terms">
|
87
|
-
<%= form.translated :editor, :registration_terms %>
|
87
|
+
<%= form.translated :editor, :registration_terms, toolbar: :content %>
|
88
88
|
</div>
|
89
89
|
|
90
90
|
<div class="row column">
|
@@ -11,13 +11,13 @@
|
|
11
11
|
<div class="card-section">
|
12
12
|
<div class="row">
|
13
13
|
<div class="columns xlarge-6">
|
14
|
-
<%= form.upload :main_logo,
|
14
|
+
<%= form.upload :main_logo, required: true %>
|
15
15
|
</div>
|
16
16
|
</div>
|
17
17
|
|
18
18
|
<div class="row">
|
19
19
|
<div class="columns xlarge-6">
|
20
|
-
<%= form.upload :signature,
|
20
|
+
<%= form.upload :signature, required: true %>
|
21
21
|
</div>
|
22
22
|
</div>
|
23
23
|
<div class="row column">
|
data/config/locales/ar.yml
CHANGED
@@ -38,13 +38,11 @@ ar:
|
|
38
38
|
date: التاريخ
|
39
39
|
link: الرابط
|
40
40
|
title: العنوان
|
41
|
-
weight: وزن
|
42
41
|
conference_partner:
|
43
42
|
link: الرابط
|
44
43
|
logo: الشعار
|
45
44
|
name: الإسم
|
46
45
|
partner_type: نوع الشريك
|
47
|
-
weight: وزن
|
48
46
|
conference_registration_invite:
|
49
47
|
email: البريد الإلكتروني
|
50
48
|
name: الإسم
|
@@ -54,7 +52,6 @@ ar:
|
|
54
52
|
description: الوصف
|
55
53
|
price: السعر
|
56
54
|
title: العنوان
|
57
|
-
weight: وزن
|
58
55
|
conference_speaker:
|
59
56
|
affiliation: الانتساب
|
60
57
|
avatar: الصورة الرمزية
|
@@ -144,8 +141,6 @@ ar:
|
|
144
141
|
edit:
|
145
142
|
title: تحديث مسؤول المؤتمر.
|
146
143
|
update: تحديث
|
147
|
-
index:
|
148
|
-
conference_admins_title: مدراء المؤتمر
|
149
144
|
new:
|
150
145
|
create: إنشاء
|
151
146
|
title: مشرف المؤتمر الجديد.
|
@@ -426,7 +421,7 @@ ar:
|
|
426
421
|
conference_program:
|
427
422
|
program_meeting:
|
428
423
|
content: المحتوى
|
429
|
-
location:
|
424
|
+
location: الموقع
|
430
425
|
speakers: مكبرات الصوت
|
431
426
|
streaming: تدفق
|
432
427
|
show:
|
data/config/locales/ca.yml
CHANGED
@@ -29,7 +29,7 @@ ca:
|
|
29
29
|
show_statistics: Mostrar estadístiques
|
30
30
|
sign_date: Data de signatura
|
31
31
|
signature: Signatura
|
32
|
-
signature_name:
|
32
|
+
signature_name: Nom de la signatura
|
33
33
|
slogan: Eslògan
|
34
34
|
slug: URL amigable
|
35
35
|
start_date: Data d'inici
|
@@ -54,7 +54,7 @@ ca:
|
|
54
54
|
description: Descripció
|
55
55
|
price: Cost
|
56
56
|
title: Títol
|
57
|
-
weight:
|
57
|
+
weight: Ordre de posició
|
58
58
|
conference_speaker:
|
59
59
|
affiliation: Afiliació
|
60
60
|
avatar: Imatge de perfil
|
@@ -135,7 +135,7 @@ ca:
|
|
135
135
|
title: Actualitzar administradora de la jornada.
|
136
136
|
update: Actualitzar
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: Administradores de la jornada
|
139
139
|
new:
|
140
140
|
create: Crear
|
141
141
|
title: Nova administradora de jornada.
|
@@ -313,6 +313,7 @@ ca:
|
|
313
313
|
update: "%{user_name} ha actualitzat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
316
|
+
delete: "%{user_name} ha eliminat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
316
317
|
publish: "%{user_name} ha publicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
317
318
|
unpublish: "%{user_name} ha despublicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
318
319
|
update: "%{user_name} ha actualitzat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
@@ -432,7 +433,7 @@ ca:
|
|
432
433
|
create:
|
433
434
|
invalid: S'ha produït un error en inscriure't a aquesta jornada.
|
434
435
|
success: T'has inscrit a la jornada correctament.
|
435
|
-
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la
|
436
|
+
unauthorized: Cal que iniciïs la teva sessió abans d'inscriure't a la jornada.
|
436
437
|
decline_invitation:
|
437
438
|
invalid: S'ha produït un error en rebutjar la invitació.
|
438
439
|
success: Has rebutjat la invitació correctament.
|
@@ -485,7 +486,7 @@ ca:
|
|
485
486
|
fields:
|
486
487
|
email: Correu electrònic
|
487
488
|
name: Nom
|
488
|
-
registration_type: Tipus
|
489
|
+
registration_type: Tipus d'inscripció
|
489
490
|
sent_at: Enviat a
|
490
491
|
status: Estat
|
491
492
|
status:
|
data/config/locales/cs.yml
CHANGED
@@ -29,7 +29,7 @@ cs:
|
|
29
29
|
show_statistics: Zobrazit statistiky
|
30
30
|
sign_date: Datum podpisu
|
31
31
|
signature: Podpis
|
32
|
-
signature_name:
|
32
|
+
signature_name: Podpisové jméno
|
33
33
|
slogan: Motto
|
34
34
|
slug: URL slug
|
35
35
|
start_date: Datum zahájení
|
@@ -38,13 +38,13 @@ cs:
|
|
38
38
|
date: Datum
|
39
39
|
link: Odkaz
|
40
40
|
title: Název
|
41
|
-
weight:
|
41
|
+
weight: Pozice v řazení
|
42
42
|
conference_partner:
|
43
43
|
link: Odkaz
|
44
44
|
logo: Logo
|
45
45
|
name: Název
|
46
46
|
partner_type: Typ partnera
|
47
|
-
weight:
|
47
|
+
weight: Pozice v řazení
|
48
48
|
conference_registration_invite:
|
49
49
|
email: E-mail
|
50
50
|
name: Jméno
|
@@ -54,7 +54,7 @@ cs:
|
|
54
54
|
description: Popis
|
55
55
|
price: Cena
|
56
56
|
title: Oslovení
|
57
|
-
weight:
|
57
|
+
weight: Pozice v řazení
|
58
58
|
conference_speaker:
|
59
59
|
affiliation: Příslušnost
|
60
60
|
avatar: Avatar
|
@@ -141,7 +141,7 @@ cs:
|
|
141
141
|
title: Aktualizovat uživatele konference.
|
142
142
|
update: Aktualizace
|
143
143
|
index:
|
144
|
-
conference_admins_title:
|
144
|
+
conference_admins_title: Administrátoři konference
|
145
145
|
new:
|
146
146
|
create: Vytvořit
|
147
147
|
title: Nový administrátor konference.
|
@@ -319,6 +319,7 @@ cs:
|
|
319
319
|
update: "%{user_name} aktualizoval partnera %{resource_name} na konferenci %{space_name}"
|
320
320
|
registration_type:
|
321
321
|
create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
|
322
|
+
delete: "%{user_name} odstranil typ registrace %{resource_name} z konference %{space_name}"
|
322
323
|
publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
|
323
324
|
unpublish: "%{user_name} nepublikováno %{resource_name} typ registrace na %{space_name} konferencích"
|
324
325
|
update: "%{user_name} aktualizoval typ registrace %{resource_name} na konferenci %{space_name}"
|
@@ -421,7 +422,7 @@ cs:
|
|
421
422
|
conference_program:
|
422
423
|
program_meeting:
|
423
424
|
content: Obsah
|
424
|
-
location:
|
425
|
+
location: Lokalita
|
425
426
|
speakers: Řečníci
|
426
427
|
streaming: Streamování
|
427
428
|
show:
|
data/config/locales/de.yml
CHANGED
@@ -29,7 +29,6 @@ de:
|
|
29
29
|
show_statistics: Zeige Statistiken
|
30
30
|
sign_date: Unterzeichnungsdatum
|
31
31
|
signature: Unterschrift
|
32
|
-
signature_name: Signaturname
|
33
32
|
slogan: Slogan
|
34
33
|
slug: URL-Block
|
35
34
|
start_date: Startdatum
|
@@ -38,13 +37,13 @@ de:
|
|
38
37
|
date: Datum
|
39
38
|
link: Link
|
40
39
|
title: Titel
|
41
|
-
weight:
|
40
|
+
weight: Reihenfolge
|
42
41
|
conference_partner:
|
43
42
|
link: Link
|
44
43
|
logo: Logo
|
45
44
|
name: Name
|
46
45
|
partner_type: Partnertyp
|
47
|
-
weight:
|
46
|
+
weight: Reihenfolge
|
48
47
|
conference_registration_invite:
|
49
48
|
email: E-Mail
|
50
49
|
name: Name
|
@@ -54,7 +53,7 @@ de:
|
|
54
53
|
description: Beschreibung
|
55
54
|
price: Preis
|
56
55
|
title: Titel
|
57
|
-
weight:
|
56
|
+
weight: Reihenfolge
|
58
57
|
conference_speaker:
|
59
58
|
affiliation: Zugehörigkeit
|
60
59
|
avatar: Profilbild
|
@@ -134,8 +133,6 @@ de:
|
|
134
133
|
edit:
|
135
134
|
title: Aktualisieren Sie den Konferenzbenutzer.
|
136
135
|
update: Aktualisieren
|
137
|
-
index:
|
138
|
-
conference_admins_title: Konferenzbenutzer
|
139
136
|
new:
|
140
137
|
create: Erstellen
|
141
138
|
title: Neuer Konferenzbenutzer
|
@@ -247,7 +244,7 @@ de:
|
|
247
244
|
price: Preis
|
248
245
|
registrations_count: Registrierungen zählen
|
249
246
|
title: Titel
|
250
|
-
weight:
|
247
|
+
weight: Reihenfolge
|
251
248
|
name: Registrierungstyp
|
252
249
|
partners:
|
253
250
|
create:
|
data/config/locales/el.yml
CHANGED
@@ -29,7 +29,6 @@ el:
|
|
29
29
|
show_statistics: Εμφάνιση στατιστικών
|
30
30
|
sign_date: Ημερομηνία υπογραφής
|
31
31
|
signature: Υπογραφή
|
32
|
-
signature_name: όνομα υπογραφής
|
33
32
|
slogan: Σύνθημα
|
34
33
|
slug: Slug διεύθυνσης URL
|
35
34
|
start_date: Ημερομηνία έναρξης
|
@@ -38,13 +37,11 @@ el:
|
|
38
37
|
date: Ημερομηνία
|
39
38
|
link: Σύνδεσμος
|
40
39
|
title: Τίτλος
|
41
|
-
weight: Βάρος
|
42
40
|
conference_partner:
|
43
41
|
link: Σύνδεσμος
|
44
42
|
logo: Λογότυπο
|
45
43
|
name: Όνομα
|
46
44
|
partner_type: Τύπος εταίρου
|
47
|
-
weight: Βάρος
|
48
45
|
conference_registration_invite:
|
49
46
|
name: Όνομα
|
50
47
|
registration_type_id: Τύπος εγγραφής
|
@@ -53,7 +50,6 @@ el:
|
|
53
50
|
description: Περιγραφή
|
54
51
|
price: Τιμή
|
55
52
|
title: Τίτλος
|
56
|
-
weight: Βάρος
|
57
53
|
conference_speaker:
|
58
54
|
affiliation: Δεσμός
|
59
55
|
avatar: Εικόνα Χρήστη
|
@@ -131,8 +127,6 @@ el:
|
|
131
127
|
edit:
|
132
128
|
title: Ενημέρωση διαχειριστή διάσκεψης.
|
133
129
|
update: Ενημέρωση
|
134
|
-
index:
|
135
|
-
conference_admins_title: διαχειριστές διάσκεψης
|
136
130
|
new:
|
137
131
|
create: Δημιουργία
|
138
132
|
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
@@ -29,7 +29,7 @@ es-MX:
|
|
29
29
|
show_statistics: Mostrar estadísticas
|
30
30
|
sign_date: Fecha de firma
|
31
31
|
signature: Firma
|
32
|
-
signature_name:
|
32
|
+
signature_name: Nombre de la firma
|
33
33
|
slogan: Eslogan
|
34
34
|
slug: URL amigable
|
35
35
|
start_date: Fecha de inicio
|
@@ -38,13 +38,13 @@ es-MX:
|
|
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-MX:
|
|
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
|
@@ -135,7 +135,7 @@ es-MX:
|
|
135
135
|
title: Actualizar usuario de la conferencia.
|
136
136
|
update: Actualizar
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: Administradoras de la jornada
|
139
139
|
new:
|
140
140
|
create: Crear
|
141
141
|
title: Nuevo usuario de la conferencia.
|
@@ -313,6 +313,7 @@ es-MX:
|
|
313
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
316
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
317
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
318
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
318
319
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -413,7 +414,7 @@ es-MX:
|
|
413
414
|
conference_program:
|
414
415
|
program_meeting:
|
415
416
|
content: Contenido
|
416
|
-
location:
|
417
|
+
location: Localización
|
417
418
|
speakers: Ponentes
|
418
419
|
streaming: Retransmisión
|
419
420
|
show:
|
@@ -432,7 +433,7 @@ es-MX:
|
|
432
433
|
create:
|
433
434
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
434
435
|
success: Te has unido a la conferencia con éxito.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
436
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
437
|
decline_invitation:
|
437
438
|
invalid: Ha habido un problema al rechazar la invitación.
|
438
439
|
success: Has rechazado la invitación con éxito.
|
data/config/locales/es-PY.yml
CHANGED
@@ -29,7 +29,7 @@ es-PY:
|
|
29
29
|
show_statistics: Mostrar estadísticas
|
30
30
|
sign_date: Fecha de firma
|
31
31
|
signature: Firma
|
32
|
-
signature_name:
|
32
|
+
signature_name: Nombre de la firma
|
33
33
|
slogan: Eslogan
|
34
34
|
slug: URL amigable
|
35
35
|
start_date: Fecha de inicio
|
@@ -38,13 +38,13 @@ es-PY:
|
|
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-PY:
|
|
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
|
@@ -135,7 +135,7 @@ es-PY:
|
|
135
135
|
title: Actualizar el usuario de la conferencia.
|
136
136
|
update: Actualizar
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: Administradoras de la jornada
|
139
139
|
new:
|
140
140
|
create: Crear
|
141
141
|
title: Nuevo usuario de la conferencia.
|
@@ -313,6 +313,7 @@ es-PY:
|
|
313
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
316
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
317
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
318
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
318
319
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -413,7 +414,7 @@ es-PY:
|
|
413
414
|
conference_program:
|
414
415
|
program_meeting:
|
415
416
|
content: Contenido
|
416
|
-
location:
|
417
|
+
location: Localización
|
417
418
|
speakers: Ponentes
|
418
419
|
streaming: Transmisión
|
419
420
|
show:
|
@@ -432,7 +433,7 @@ es-PY:
|
|
432
433
|
create:
|
433
434
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
434
435
|
success: Te has unido a la conferencia con éxito.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
436
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
437
|
decline_invitation:
|
437
438
|
invalid: Ha habido un problema al rechazar la invitación.
|
438
439
|
success: Has rechazado la invitación con éxito.
|
@@ -454,7 +455,7 @@ es-PY:
|
|
454
455
|
go_to_twitter: Ir a twitter
|
455
456
|
conference_speakers:
|
456
457
|
index:
|
457
|
-
speakers:
|
458
|
+
speakers: Ponentes
|
458
459
|
conferences:
|
459
460
|
partners:
|
460
461
|
collaborators: Fogonadura
|
data/config/locales/es.yml
CHANGED
@@ -29,7 +29,7 @@ es:
|
|
29
29
|
show_statistics: Mostrar estadísticas
|
30
30
|
sign_date: Fecha de firma
|
31
31
|
signature: Firma
|
32
|
-
signature_name:
|
32
|
+
signature_name: Nombre de la firma
|
33
33
|
slogan: Eslogan
|
34
34
|
slug: URL amigable
|
35
35
|
start_date: Fecha de inicio
|
@@ -135,7 +135,7 @@ es:
|
|
135
135
|
title: Actualizar administradora de la jornada.
|
136
136
|
update: Actualizar
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: Administradoras de la jornada
|
139
139
|
new:
|
140
140
|
create: Crear
|
141
141
|
title: Nueva administradora de la jornada.
|
@@ -313,6 +313,7 @@ es:
|
|
313
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
|
+
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
317
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
318
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
318
319
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
@@ -413,7 +414,7 @@ es:
|
|
413
414
|
conference_program:
|
414
415
|
program_meeting:
|
415
416
|
content: Contenido
|
416
|
-
location:
|
417
|
+
location: Localización
|
417
418
|
speakers: Ponentes
|
418
419
|
streaming: Streaming
|
419
420
|
show:
|
@@ -432,7 +433,7 @@ es:
|
|
432
433
|
create:
|
433
434
|
invalid: Se ha producido un error al inscribirte a esta jornada.
|
434
435
|
success: Te has inscrito a la jornada correctamente.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la
|
436
|
+
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
437
|
decline_invitation:
|
437
438
|
invalid: Se ha producido un error al declinar la invitación.
|
438
439
|
success: Has declinado la invitación correctamente.
|
data/config/locales/eu.yml
CHANGED
@@ -29,7 +29,6 @@ eu:
|
|
29
29
|
show_statistics: Erakutsi estatistikak
|
30
30
|
sign_date: Sinatze-data
|
31
31
|
signature: Sinadura
|
32
|
-
signature_name: sinaduraren izena
|
33
32
|
slogan: Leloa
|
34
33
|
slug: URL laburra
|
35
34
|
start_date: Hasiera-data
|
@@ -38,13 +37,11 @@ eu:
|
|
38
37
|
date: Data
|
39
38
|
link: Lotura
|
40
39
|
title: Izenburua
|
41
|
-
weight: Pisua
|
42
40
|
conference_partner:
|
43
41
|
link: Lotura
|
44
42
|
logo: Logoa
|
45
43
|
name: Izena
|
46
44
|
partner_type: Lankidetza mota
|
47
|
-
weight: Pisua
|
48
45
|
conference_registration_invite:
|
49
46
|
email: Helbide elektronikoa
|
50
47
|
name: Izena
|
@@ -54,7 +51,6 @@ eu:
|
|
54
51
|
description: Deskribapena
|
55
52
|
price: Prezioa
|
56
53
|
title: Izenburua
|
57
|
-
weight: Pisua
|
58
54
|
conference_speaker:
|
59
55
|
affiliation: Kidetza
|
60
56
|
avatar: Avatarra
|
@@ -132,8 +128,6 @@ eu:
|
|
132
128
|
edit:
|
133
129
|
title: Eguneratu konferentzia erabiltzaileak.
|
134
130
|
update: eguneratzearen
|
135
|
-
index:
|
136
|
-
conference_admins_title: konferentzia erabiltzaileak
|
137
131
|
new:
|
138
132
|
create: Sortu
|
139
133
|
title: Konferentzia erabiltzaile berria.
|
@@ -348,7 +342,7 @@ eu:
|
|
348
342
|
filter_by: Iragazi arabera
|
349
343
|
invite_attendee: Gonbidatu parte-hartzailea
|
350
344
|
invites: Gonbidapenak
|
351
|
-
search:
|
345
|
+
search: Bilatu
|
352
346
|
new:
|
353
347
|
explanation: Erabiltzaileari hitzaldi batean parte hartzeko gonbidapena egongo da. Posta elektronikoa ez bada erregistratuta, erakundera gonbidatuko dute.
|
354
348
|
invite: gonbidatu
|
@@ -363,7 +357,7 @@ eu:
|
|
363
357
|
select_user: Aukeratu erabiltzailea
|
364
358
|
user_type: Erabiltzaile mota
|
365
359
|
index:
|
366
|
-
search:
|
360
|
+
search: Bilatu
|
367
361
|
conferences:
|
368
362
|
form:
|
369
363
|
available_slots_help: Utzi 0 mugak mugagabea badaude.
|
@@ -410,7 +404,7 @@ eu:
|
|
410
404
|
conference_program:
|
411
405
|
program_meeting:
|
412
406
|
content: Edukia
|
413
|
-
location:
|
407
|
+
location: Kokapena
|
414
408
|
speakers: Hizlariak
|
415
409
|
streaming: Streaming
|
416
410
|
show:
|