decidim-conferences 0.26.4 → 0.26.7
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/conferences/show.html.erb +2 -2
- 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 +612 -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: faced8239b16e418b66a94777cae4aa216fdafb22a61e2cd4b19e858270164ad
|
4
|
+
data.tar.gz: 7143492bbc300471e8cb7e761f900f3b2174eb81b5975f08d318e9f61cdca210
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3e5e27cc3d3a54e574393e472325949361fa68995f493af98ac33b2ba8063ad7a63c1f007ed5e5cc441c565aca292c1d139771b5dd9df87aaf9ea92a526db54
|
7
|
+
data.tar.gz: 51c035ab413d05c295328106d82580f95a02e57a33be482057819a9047249fc69b98ec942447bb71500b807711a998b63f328fcc0d6c6dd544f2517e56ecb1e1
|
@@ -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">
|
@@ -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? %>
|
data/config/locales/ar.yml
CHANGED
@@ -37,13 +37,11 @@ ar:
|
|
37
37
|
date: التاريخ
|
38
38
|
link: الرابط
|
39
39
|
title: العنوان
|
40
|
-
weight: وزن
|
41
40
|
conference_partner:
|
42
41
|
link: الرابط
|
43
42
|
logo: الشعار
|
44
43
|
name: الإسم
|
45
44
|
partner_type: نوع الشريك
|
46
|
-
weight: وزن
|
47
45
|
conference_registration_invite:
|
48
46
|
email: البريد الإلكتروني
|
49
47
|
name: الإسم
|
@@ -53,7 +51,6 @@ ar:
|
|
53
51
|
description: الوصف
|
54
52
|
price: السعر
|
55
53
|
title: العنوان
|
56
|
-
weight: وزن
|
57
54
|
conference_speaker:
|
58
55
|
affiliation: الانتساب
|
59
56
|
avatar: الصورة الرمزية
|
@@ -143,8 +140,6 @@ ar:
|
|
143
140
|
edit:
|
144
141
|
title: تحديث مسؤول المؤتمر.
|
145
142
|
update: تحديث
|
146
|
-
index:
|
147
|
-
conference_admins_title: مدراء المؤتمر
|
148
143
|
new:
|
149
144
|
create: إنشاء
|
150
145
|
title: مشرف المؤتمر الجديد.
|
@@ -425,7 +420,7 @@ ar:
|
|
425
420
|
conference_program:
|
426
421
|
program_meeting:
|
427
422
|
content: المحتوى
|
428
|
-
location:
|
423
|
+
location: الموقع
|
429
424
|
speakers: مكبرات الصوت
|
430
425
|
streaming: تدفق
|
431
426
|
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.
|
@@ -484,7 +485,7 @@ ca:
|
|
484
485
|
fields:
|
485
486
|
email: Correu electrònic
|
486
487
|
name: Nom
|
487
|
-
registration_type: Tipus
|
488
|
+
registration_type: Tipus d'inscripció
|
488
489
|
sent_at: Enviat a
|
489
490
|
status: Estat
|
490
491
|
status:
|
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.
|
@@ -347,7 +341,7 @@ eu:
|
|
347
341
|
filter_by: Iragazi arabera
|
348
342
|
invite_attendee: Gonbidatu parte-hartzailea
|
349
343
|
invites: Gonbidapenak
|
350
|
-
search:
|
344
|
+
search: Bilatu
|
351
345
|
new:
|
352
346
|
explanation: Erabiltzaileari hitzaldi batean parte hartzeko gonbidapena egongo da. Posta elektronikoa ez bada erregistratuta, erakundera gonbidatuko dute.
|
353
347
|
invite: gonbidatu
|
@@ -362,7 +356,7 @@ eu:
|
|
362
356
|
select_user: Aukeratu erabiltzailea
|
363
357
|
user_type: Erabiltzaile mota
|
364
358
|
index:
|
365
|
-
search:
|
359
|
+
search: Bilatu
|
366
360
|
conferences:
|
367
361
|
form:
|
368
362
|
available_slots_help: Utzi 0 mugak mugagabea badaude.
|
@@ -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:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|