decidim-conferences 0.24.0.rc1 → 0.24.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/forms/decidim/conferences/admin/conference_form.rb +3 -2
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +1 -1
- data/config/locales/ar.yml +6 -0
- data/config/locales/ca.yml +44 -0
- data/config/locales/cs.yml +42 -2
- data/config/locales/de.yml +6 -0
- data/config/locales/el.yml +6 -0
- data/config/locales/en.yml +40 -0
- data/config/locales/es-MX.yml +44 -0
- data/config/locales/es-PY.yml +44 -0
- data/config/locales/es.yml +45 -1
- data/config/locales/eu.yml +6 -0
- data/config/locales/fi-plain.yml +41 -1
- data/config/locales/fi.yml +41 -1
- data/config/locales/fr-CA.yml +6 -0
- data/config/locales/fr.yml +6 -0
- data/config/locales/gl.yml +54 -0
- data/config/locales/hu.yml +6 -0
- data/config/locales/id-ID.yml +6 -0
- data/config/locales/it.yml +7 -1
- data/config/locales/ja.yml +6 -0
- data/config/locales/lv.yml +6 -0
- data/config/locales/nl.yml +172 -126
- data/config/locales/no.yml +6 -0
- data/config/locales/pl.yml +12 -5
- data/config/locales/pt-BR.yml +6 -0
- data/config/locales/pt.yml +6 -0
- data/config/locales/ro-RO.yml +67 -0
- data/config/locales/sk.yml +6 -0
- data/config/locales/sv.yml +45 -0
- data/config/locales/tr-TR.yml +6 -0
- data/config/locales/zh-CN.yml +6 -0
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +16 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +13 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52bc4e0c26ddf75a681b0bb366e8a4c73aa73f65ce09f695360df54e72b08442
|
4
|
+
data.tar.gz: 716b357dc0c52c4758ddec7c5e6d375841294510cd1ca8745829f560ed23512f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c276d6086e5e4904385b79217a7ce0cee89a45c36cb756ac261b7c4dfa2262a74b1fd1efd6711bd8e14c458854dfe94b0de683cb95d4eb2812257d41bce279
|
7
|
+
data.tar.gz: a3afd154a79137fdabbe0cb2d55a230611a25df81ed424ee89bfb437804ac048490f4c419cce482ef9e3a35a02e4067185075bbf588a25a8a9cafdef2fdcae0d
|
@@ -43,12 +43,13 @@ module Decidim
|
|
43
43
|
|
44
44
|
validate :slug_uniqueness
|
45
45
|
|
46
|
+
validates :available_slots, presence: true, if: ->(form) { form.registrations_enabled? }
|
47
|
+
validates :available_slots, numericality: { greater_than_or_equal_to: 0 }, if: ->(form) { form.registrations_enabled? && form.available_slots.present? }
|
46
48
|
validates :registration_terms, translatable_presence: true, if: ->(form) { form.registrations_enabled? }
|
47
|
-
validates :available_slots, numericality: { greater_than_or_equal_to: 0 }, if: ->(form) { form.registrations_enabled? }
|
48
49
|
|
49
50
|
validates :hero_image, passthru: { to: Decidim::Conference }
|
50
51
|
validates :banner_image, passthru: { to: Decidim::Conference }
|
51
|
-
validate :available_slots_greater_than_or_equal_to_registrations_count, if: ->(form) { form.registrations_enabled? && form.available_slots.positive? }
|
52
|
+
validate :available_slots_greater_than_or_equal_to_registrations_count, if: ->(form) { form.registrations_enabled? && form.available_slots.try(:positive?) }
|
52
53
|
|
53
54
|
validates :start_date, presence: true, date: { before_or_equal_to: :end_date }
|
54
55
|
validates :end_date, presence: true, date: { after_or_equal_to: :start_date }
|
@@ -39,7 +39,7 @@
|
|
39
39
|
<div class="card" id="conference-invites">
|
40
40
|
<div class="card-divider">
|
41
41
|
<h2 class="card-title">
|
42
|
-
<%=
|
42
|
+
<%= t(".invites") %>
|
43
43
|
<%= link_to t(".invite_attendee"), conference.registrations_enabled ? new_conference_conference_invite_path(conference) : "#", class: "button tiny button--title #{'disabled' unless conference.registrations_enabled && allowed_to?(:invite_attendee, :conference, conference: conference) }" %>
|
44
44
|
</h2>
|
45
45
|
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="card" id="conference-registrations">
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class="card-title">
|
4
|
-
<%=
|
4
|
+
<%= t(".registrations") %>
|
5
5
|
<% if allowed_to? :export_conference_registrations, :conference, conference: conference %>
|
6
6
|
<span class="exports dropdown tiny button button--simple button--title" data-toggle="export-dropdown"><%= t "actions.export", scope: "decidim.admin" %></span>
|
7
7
|
<div class="dropdown-pane" id="export-dropdown" data-dropdown data-auto-focus="true" data-close-on-click="true">
|
data/config/locales/ar.yml
CHANGED
@@ -22,6 +22,12 @@ ar:
|
|
22
22
|
slogan: شعار
|
23
23
|
slug: سبيكة العنوان الشبكي
|
24
24
|
title: عنوان
|
25
|
+
conference_media_link:
|
26
|
+
weight: وزن
|
27
|
+
conference_partner:
|
28
|
+
weight: وزن
|
29
|
+
conference_registration_type:
|
30
|
+
weight: وزن
|
25
31
|
conference_speaker:
|
26
32
|
full_name: الاسم الكامل
|
27
33
|
conference_user_role:
|
data/config/locales/ca.yml
CHANGED
@@ -3,6 +3,7 @@ ca:
|
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
5
|
assemblies_ids: Assemblees relacionades
|
6
|
+
available_slots: Places disponibles
|
6
7
|
banner_image: Imatge de banner
|
7
8
|
consultations_ids: Consultes relacionades
|
8
9
|
copy_categories: Copiar categories
|
@@ -10,20 +11,59 @@ ca:
|
|
10
11
|
copy_features: Copiar funcionalitats
|
11
12
|
decidim_scope_id: Àmbit
|
12
13
|
description: Descripció
|
14
|
+
end_date: Data de fi
|
13
15
|
hashtag: Hashtag
|
14
16
|
hero_image: Imatge de la pàgina d'inici
|
17
|
+
location: Ubicació
|
18
|
+
main_logo: Logo principal
|
19
|
+
objectives: Objectius
|
15
20
|
participatory_processes_ids: Processos participatius relacionats
|
16
21
|
promoted: Destacada
|
17
22
|
published_at: Publicat a
|
23
|
+
registration_terms: Condicions d'inscripció
|
24
|
+
registrations_enabled: Inscripcions habilitades
|
18
25
|
scope_id: Àmbit
|
19
26
|
scopes_enabled: Àmbits habilitats
|
20
27
|
short_description: Breu descripció
|
21
28
|
show_statistics: Mostrar estadístiques
|
29
|
+
sign_date: Data de signatura
|
30
|
+
signature: Signatura
|
31
|
+
signature_name: nom de la signatura
|
22
32
|
slogan: Eslògan
|
23
33
|
slug: URL amigable
|
34
|
+
start_date: Data d'inici
|
35
|
+
title: Títol
|
36
|
+
conference_media_link:
|
37
|
+
date: Data
|
38
|
+
link: Enllaç
|
39
|
+
title: Títol
|
40
|
+
weight: Pes
|
41
|
+
conference_partner:
|
42
|
+
link: Enllaç
|
43
|
+
logo: Logo
|
44
|
+
name: Nom
|
45
|
+
partner_type: Tipus de col·laboració
|
46
|
+
weight: Pes
|
47
|
+
conference_registration_invite:
|
48
|
+
email: Correu electrònic
|
49
|
+
name: Nom
|
50
|
+
registration_type_id: Tipus d'inscripció
|
51
|
+
user_id: Usuària
|
52
|
+
conference_registration_type:
|
53
|
+
description: Descripció
|
54
|
+
price: Cost
|
24
55
|
title: Títol
|
56
|
+
weight: Pes
|
25
57
|
conference_speaker:
|
58
|
+
affiliation: Afiliació
|
59
|
+
avatar: Imatge de perfil
|
60
|
+
conference_meeting_ids: Trobades relacionades
|
26
61
|
full_name: Nom complet
|
62
|
+
personal_url: URL personal
|
63
|
+
position: Càrrec
|
64
|
+
short_bio: Bio curta
|
65
|
+
twitter_handle: Compte de Twitter
|
66
|
+
user_id: Usuària
|
27
67
|
conference_user_role:
|
28
68
|
email: Correu electrònic
|
29
69
|
name: Nom
|
@@ -266,6 +306,10 @@ ca:
|
|
266
306
|
conferences:
|
267
307
|
conference_registration:
|
268
308
|
confirm: "%{user_name} ha confirmat la seva inscripció a la jornada %{resource_name}"
|
309
|
+
partner:
|
310
|
+
create: "%{user_name} ha creat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
311
|
+
delete: "%{user_name} ha eliminat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
312
|
+
update: "%{user_name} ha actualitzat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
269
313
|
registration_type:
|
270
314
|
create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
271
315
|
publish: "%{user_name} ha publicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
data/config/locales/cs.yml
CHANGED
@@ -3,6 +3,7 @@ cs:
|
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
5
|
assemblies_ids: Související shromáždění
|
6
|
+
available_slots: Dostupné sloty
|
6
7
|
banner_image: Obrázek banneru
|
7
8
|
consultations_ids: Související konzultace
|
8
9
|
copy_categories: Kopírovat kategorie
|
@@ -10,20 +11,59 @@ cs:
|
|
10
11
|
copy_features: Funkce kopírování
|
11
12
|
decidim_scope_id: Oblast působnosti
|
12
13
|
description: Popis
|
14
|
+
end_date: Datum ukončení
|
13
15
|
hashtag: Hashtag
|
14
16
|
hero_image: Obrázek na hlavní stránce
|
17
|
+
location: Lokalita
|
18
|
+
main_logo: Hlavní logo
|
19
|
+
objectives: Cíle
|
15
20
|
participatory_processes_ids: Související procesy účasti
|
16
21
|
promoted: Propagováno
|
17
22
|
published_at: Publikováno v
|
23
|
+
registration_terms: Podmínky registrace
|
24
|
+
registrations_enabled: Registrace povoleny
|
18
25
|
scope_id: Oblast působnosti
|
19
26
|
scopes_enabled: Oblasti působnosti povoleny
|
20
27
|
short_description: Stručný popis
|
21
28
|
show_statistics: Zobrazit statistiky
|
29
|
+
sign_date: Datum podpisu
|
30
|
+
signature: Podpis
|
31
|
+
signature_name: podpisové jméno
|
22
32
|
slogan: Motto
|
23
33
|
slug: URL slug
|
34
|
+
start_date: Datum zahájení
|
24
35
|
title: Titul
|
36
|
+
conference_media_link:
|
37
|
+
date: Datum
|
38
|
+
link: Odkaz
|
39
|
+
title: Název
|
40
|
+
weight: Váha
|
41
|
+
conference_partner:
|
42
|
+
link: Odkaz
|
43
|
+
logo: Logo
|
44
|
+
name: Název
|
45
|
+
partner_type: Typ partnera
|
46
|
+
weight: Váha
|
47
|
+
conference_registration_invite:
|
48
|
+
email: E-mail
|
49
|
+
name: Jméno
|
50
|
+
registration_type_id: Typ registrace
|
51
|
+
user_id: Uživatel
|
52
|
+
conference_registration_type:
|
53
|
+
description: Popis
|
54
|
+
price: Cena
|
55
|
+
title: Oslovení
|
56
|
+
weight: Váha
|
25
57
|
conference_speaker:
|
58
|
+
affiliation: Příslušnost
|
59
|
+
avatar: Avatar
|
60
|
+
conference_meeting_ids: Související schůzky
|
26
61
|
full_name: Celé jméno
|
62
|
+
personal_url: Osobní adresa Url
|
63
|
+
position: Pozice
|
64
|
+
short_bio: Krátký životopis
|
65
|
+
twitter_handle: Twitter účet
|
66
|
+
user_id: Uživatel
|
27
67
|
conference_user_role:
|
28
68
|
email: E-mail
|
29
69
|
name: název
|
@@ -210,7 +250,7 @@ cs:
|
|
210
250
|
fields:
|
211
251
|
conference_meetings: Setkání konference
|
212
252
|
price: Cena
|
213
|
-
registrations_count:
|
253
|
+
registrations_count: Počet registrací
|
214
254
|
title: Název
|
215
255
|
weight: Váha
|
216
256
|
name: Typ registrace
|
@@ -309,7 +349,7 @@ cs:
|
|
309
349
|
index:
|
310
350
|
filter:
|
311
351
|
accepted: Přijato
|
312
|
-
all:
|
352
|
+
all: Vše
|
313
353
|
rejected: Odmítnuto
|
314
354
|
sent: Odesláno
|
315
355
|
filter_by: Filtrovat podle
|
data/config/locales/de.yml
CHANGED
@@ -22,6 +22,12 @@ de:
|
|
22
22
|
slogan: Slogan
|
23
23
|
slug: URL-Block
|
24
24
|
title: Titel
|
25
|
+
conference_media_link:
|
26
|
+
weight: Gewicht
|
27
|
+
conference_partner:
|
28
|
+
weight: Gewicht
|
29
|
+
conference_registration_type:
|
30
|
+
weight: Gewicht
|
25
31
|
conference_speaker:
|
26
32
|
full_name: Vollständiger Name
|
27
33
|
conference_user_role:
|
data/config/locales/el.yml
CHANGED
@@ -22,6 +22,12 @@ el:
|
|
22
22
|
slogan: Σύνθημα
|
23
23
|
slug: Slug διεύθυνσης URL
|
24
24
|
title: Τίτλος
|
25
|
+
conference_media_link:
|
26
|
+
weight: Βάρος
|
27
|
+
conference_partner:
|
28
|
+
weight: Βάρος
|
29
|
+
conference_registration_type:
|
30
|
+
weight: Βάρος
|
25
31
|
conference_speaker:
|
26
32
|
full_name: Ονοματεπώνυμο
|
27
33
|
conference_user_role:
|
data/config/locales/en.yml
CHANGED
@@ -4,6 +4,7 @@ en:
|
|
4
4
|
attributes:
|
5
5
|
conference:
|
6
6
|
assemblies_ids: Related Assemblies
|
7
|
+
available_slots: Available slots
|
7
8
|
banner_image: Banner image
|
8
9
|
consultations_ids: Related Consultations
|
9
10
|
copy_categories: Copy categories
|
@@ -11,20 +12,59 @@ en:
|
|
11
12
|
copy_features: Copy features
|
12
13
|
decidim_scope_id: Scope
|
13
14
|
description: Description
|
15
|
+
end_date: End date
|
14
16
|
hashtag: Hashtag
|
15
17
|
hero_image: Home image
|
18
|
+
location: Location
|
19
|
+
main_logo: Main logo
|
20
|
+
objectives: Objectives
|
16
21
|
participatory_processes_ids: Related participatory processes
|
17
22
|
promoted: Highlighted
|
18
23
|
published_at: Published at
|
24
|
+
registration_terms: Registration terms
|
25
|
+
registrations_enabled: Registrations enabled
|
19
26
|
scope_id: Scope
|
20
27
|
scopes_enabled: Scopes enabled
|
21
28
|
short_description: Short description
|
22
29
|
show_statistics: Show statistics
|
30
|
+
sign_date: Sign date
|
31
|
+
signature: Signature
|
32
|
+
signature_name: signature name
|
23
33
|
slogan: Slogan
|
24
34
|
slug: URL slug
|
35
|
+
start_date: Start date
|
36
|
+
title: Title
|
37
|
+
conference_media_link:
|
38
|
+
date: Date
|
39
|
+
link: Link
|
40
|
+
title: Title
|
41
|
+
weight: Weight
|
42
|
+
conference_partner:
|
43
|
+
link: Link
|
44
|
+
logo: Logo
|
45
|
+
name: Name
|
46
|
+
partner_type: Partner type
|
47
|
+
weight: Weight
|
48
|
+
conference_registration_invite:
|
49
|
+
email: Email
|
50
|
+
name: Name
|
51
|
+
registration_type_id: Registration type
|
52
|
+
user_id: User
|
53
|
+
conference_registration_type:
|
54
|
+
description: Description
|
55
|
+
price: Price
|
25
56
|
title: Title
|
57
|
+
weight: Weight
|
26
58
|
conference_speaker:
|
59
|
+
affiliation: Affiliation
|
60
|
+
avatar: Avatar
|
61
|
+
conference_meeting_ids: Related meetings
|
27
62
|
full_name: Full name
|
63
|
+
personal_url: Personal url
|
64
|
+
position: Position
|
65
|
+
short_bio: Short Bio
|
66
|
+
twitter_handle: Twitter handle
|
67
|
+
user_id: User
|
28
68
|
conference_user_role:
|
29
69
|
email: Email
|
30
70
|
name: Name
|
data/config/locales/es-MX.yml
CHANGED
@@ -3,6 +3,7 @@ es-MX:
|
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
5
|
assemblies_ids: Asambleas relacionadas
|
6
|
+
available_slots: Plazas disponibles
|
6
7
|
banner_image: Imagen de banner
|
7
8
|
consultations_ids: Consultas relacionadas
|
8
9
|
copy_categories: Copiar categorías
|
@@ -10,20 +11,59 @@ es-MX:
|
|
10
11
|
copy_features: Copiar funcionalidades
|
11
12
|
decidim_scope_id: Ámbito
|
12
13
|
description: Descripción
|
14
|
+
end_date: Fecha de fin
|
13
15
|
hashtag: Etiqueta
|
14
16
|
hero_image: Imagen de portada
|
17
|
+
location: Localización
|
18
|
+
main_logo: Logo principal
|
19
|
+
objectives: Objetivos
|
15
20
|
participatory_processes_ids: Procesos participativos relacionados
|
16
21
|
promoted: Destacada
|
17
22
|
published_at: Publicada en
|
23
|
+
registration_terms: Términos y condiciones de inscripción
|
24
|
+
registrations_enabled: Habilitar inscripciones
|
18
25
|
scope_id: Ámbito
|
19
26
|
scopes_enabled: Ámbitos habilitados
|
20
27
|
short_description: Breve descripción
|
21
28
|
show_statistics: Mostrar estadísticas
|
29
|
+
sign_date: Fecha de firma
|
30
|
+
signature: Firma
|
31
|
+
signature_name: nombre de firma
|
22
32
|
slogan: Eslogan
|
23
33
|
slug: URL amigable
|
34
|
+
start_date: Fecha de inicio
|
35
|
+
title: Título
|
36
|
+
conference_media_link:
|
37
|
+
date: Fecha
|
38
|
+
link: Enlace
|
39
|
+
title: Título
|
40
|
+
weight: Peso
|
41
|
+
conference_partner:
|
42
|
+
link: Enlace
|
43
|
+
logo: Logo
|
44
|
+
name: Nombre
|
45
|
+
partner_type: Tipo de colaboración
|
46
|
+
weight: Peso
|
47
|
+
conference_registration_invite:
|
48
|
+
email: Correo electrónico
|
49
|
+
name: Nombre
|
50
|
+
registration_type_id: Tipo de inscripción
|
51
|
+
user_id: Usuaria
|
52
|
+
conference_registration_type:
|
53
|
+
description: Descripción
|
54
|
+
price: Coste
|
24
55
|
title: Título
|
56
|
+
weight: Peso
|
25
57
|
conference_speaker:
|
58
|
+
affiliation: Afiliación
|
59
|
+
avatar: Avatar
|
60
|
+
conference_meeting_ids: Encuentros relacionados
|
26
61
|
full_name: Nombre completo
|
62
|
+
personal_url: URL personal
|
63
|
+
position: Cargo
|
64
|
+
short_bio: Breve Biografía
|
65
|
+
twitter_handle: Cuenta de Twitter
|
66
|
+
user_id: Usuaria
|
27
67
|
conference_user_role:
|
28
68
|
email: Correo electrónico
|
29
69
|
name: Nombre
|
@@ -266,6 +306,10 @@ es-MX:
|
|
266
306
|
conferences:
|
267
307
|
conference_registration:
|
268
308
|
confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
|
309
|
+
partner:
|
310
|
+
create: "%{user_name} creó la colaboradora %{resource_name} en la jornada %{space_name}"
|
311
|
+
delete: "%{user_name} eliminó la colaboradora %{resource_name} de la jornada %{space_name}"
|
312
|
+
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
269
313
|
registration_type:
|
270
314
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
271
315
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
data/config/locales/es-PY.yml
CHANGED
@@ -3,6 +3,7 @@ es-PY:
|
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
5
|
assemblies_ids: Asambleas relacionadas
|
6
|
+
available_slots: Plazas disponibles
|
6
7
|
banner_image: Imagen de banner
|
7
8
|
consultations_ids: Consultas Relacionadas
|
8
9
|
copy_categories: Copiar categorías
|
@@ -10,20 +11,59 @@ es-PY:
|
|
10
11
|
copy_features: Copiar funciones
|
11
12
|
decidim_scope_id: Alcance
|
12
13
|
description: Descripción
|
14
|
+
end_date: Fecha de fin
|
13
15
|
hashtag: Etiqueta
|
14
16
|
hero_image: Imagen de inicio
|
17
|
+
location: Localización
|
18
|
+
main_logo: Logo principal
|
19
|
+
objectives: Objetivos
|
15
20
|
participatory_processes_ids: Procesos participativos relacionados
|
16
21
|
promoted: Promovido
|
17
22
|
published_at: Publicado en
|
23
|
+
registration_terms: Términos y condiciones de inscripción
|
24
|
+
registrations_enabled: Habilitar inscripciones
|
18
25
|
scope_id: Alcance
|
19
26
|
scopes_enabled: Ámbitos habilitados
|
20
27
|
short_description: Breve descripción
|
21
28
|
show_statistics: Mostrar estadísticas
|
29
|
+
sign_date: Fecha de firma
|
30
|
+
signature: Firma
|
31
|
+
signature_name: nombre de firma
|
22
32
|
slogan: Eslogan
|
23
33
|
slug: URL amigable
|
34
|
+
start_date: Fecha de inicio
|
35
|
+
title: Título
|
36
|
+
conference_media_link:
|
37
|
+
date: Fecha
|
38
|
+
link: Enlace
|
39
|
+
title: Título
|
40
|
+
weight: Peso
|
41
|
+
conference_partner:
|
42
|
+
link: Enlace
|
43
|
+
logo: Logo
|
44
|
+
name: Nombre
|
45
|
+
partner_type: Tipo de colaboración
|
46
|
+
weight: Peso
|
47
|
+
conference_registration_invite:
|
48
|
+
email: Correo electrónico
|
49
|
+
name: Nombre
|
50
|
+
registration_type_id: Tipo de inscripción
|
51
|
+
user_id: Usuaria
|
52
|
+
conference_registration_type:
|
53
|
+
description: Descripción
|
54
|
+
price: Coste
|
24
55
|
title: Título
|
56
|
+
weight: Peso
|
25
57
|
conference_speaker:
|
58
|
+
affiliation: Afiliación
|
59
|
+
avatar: Avatar
|
60
|
+
conference_meeting_ids: Encuentros relacionados
|
26
61
|
full_name: Nombre completo
|
62
|
+
personal_url: URL personal
|
63
|
+
position: Cargo
|
64
|
+
short_bio: Breve Biografía
|
65
|
+
twitter_handle: Cuenta de Twitter
|
66
|
+
user_id: Usuaria
|
27
67
|
conference_user_role:
|
28
68
|
email: Correo electrónico
|
29
69
|
name: Nombre
|
@@ -266,6 +306,10 @@ es-PY:
|
|
266
306
|
conferences:
|
267
307
|
conference_registration:
|
268
308
|
confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
|
309
|
+
partner:
|
310
|
+
create: "%{user_name} creó la colaboradora %{resource_name} en la jornada %{space_name}"
|
311
|
+
delete: "%{user_name} eliminó la colaboradora %{resource_name} de la jornada %{space_name}"
|
312
|
+
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
269
313
|
registration_type:
|
270
314
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
271
315
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|