decidim-conferences 0.27.1 → 0.27.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +16 -10
  3. data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +1 -1
  4. data/config/locales/ar.yml +1 -7
  5. data/config/locales/ca.yml +5 -4
  6. data/config/locales/cs.yml +7 -6
  7. data/config/locales/de.yml +4 -7
  8. data/config/locales/el.yml +0 -6
  9. data/config/locales/en.yml +6 -5
  10. data/config/locales/es-MX.yml +8 -7
  11. data/config/locales/es-PY.yml +9 -8
  12. data/config/locales/es.yml +5 -4
  13. data/config/locales/eu.yml +1 -7
  14. data/config/locales/fi-plain.yml +6 -5
  15. data/config/locales/fi.yml +6 -5
  16. data/config/locales/fr-CA.yml +3 -2
  17. data/config/locales/fr.yml +3 -2
  18. data/config/locales/ga-IE.yml +0 -3
  19. data/config/locales/gl.yml +0 -6
  20. data/config/locales/hu.yml +2 -11
  21. data/config/locales/id-ID.yml +0 -9
  22. data/config/locales/it.yml +1 -7
  23. data/config/locales/ja.yml +4 -3
  24. data/config/locales/ka-GE.yml +1 -0
  25. data/config/locales/lb.yml +1 -4
  26. data/config/locales/lt.yml +1 -7
  27. data/config/locales/lv.yml +0 -9
  28. data/config/locales/nl.yml +2 -8
  29. data/config/locales/no.yml +1 -7
  30. data/config/locales/pl.yml +1 -6
  31. data/config/locales/pt-BR.yml +1 -7
  32. data/config/locales/pt.yml +0 -6
  33. data/config/locales/ro-RO.yml +13 -7
  34. data/config/locales/sk.yml +0 -9
  35. data/config/locales/sv.yml +5 -6
  36. data/config/locales/tr-TR.yml +2 -11
  37. data/config/locales/zh-CN.yml +0 -9
  38. data/lib/decidim/conferences/test/factories.rb +4 -0
  39. data/lib/decidim/conferences/version.rb +1 -1
  40. metadata +12 -12
  41. 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: 843e0ed4d19cf5c9e131a8c36820647d95112b5c8f7ae3f29fcd163b229dffaf
4
- data.tar.gz: 2ebe0b8b09ec362f38383e9cb917331432b24d87a07dec8190fd6d7b00e69026
3
+ metadata.gz: 18c16e9edd679267b5e30d60cc305639530d48a030a32b7098b316e38882fd3f
4
+ data.tar.gz: 5ab1d42a95b551be9c62adbcd9ef0a43812b0e478c40f702d79280b5ae6f5df6
5
5
  SHA512:
6
- metadata.gz: dec8473aa85fcf604334fb746e1a3196c22c815f7f4cc121921468b6fc557a40dec2aabee87d9527e12cfab3d7fb8ef5a057da9d50603989d7a939451b3b2d2a
7
- data.tar.gz: 1d7500d44594d5f21cf1bb68583b84babe0e65648ff925f8fef51c82846ac9082c6d0102e5e8370c624ed5f23c1c24b676089aa326d470fca1bef7adaae0a2fa
6
+ metadata.gz: 1f67383c5f869b329374b40a45301fd70708aa674c355a24a5917a155441f41a0ec4b81cf5327a3725616e3e01b7b195ab99ec5d5b499016ade401544ffeaa15
7
+ data.tar.gz: d8deb0e107e540c4a65baa0bd05c01fc14d024ae1f1a4ebb371788185d4358016785856469bf35d04a008fb68cc3c00a96a66402c3492ac90a14b854d2a6bcba
@@ -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
- @item = collection.find(params[:id])
45
- enforce_permission_to :update, :conference_speaker, speaker: @item
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
- @conference_speaker = collection.find(params[:id])
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, @conference_speaker) do
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
- @conference_speaker = collection.find(params[:id])
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(@conference_speaker, current_user) do
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(@item.conference, @item), html: { class: "form edit_conference_speaker" }) do |f| %>
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">
@@ -29,7 +29,6 @@ ar:
29
29
  show_statistics: عرض الإحصائيات
30
30
  sign_date: تاريخ التوقيع
31
31
  signature: التوقيع
32
- signature_name: اسم التوقيع
33
32
  slogan: شعار
34
33
  slug: سبيكة العنوان الشبكي
35
34
  start_date: تاريخ البداية
@@ -38,13 +37,11 @@ ar:
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
  email: البريد الإلكتروني
50
47
  name: الإسم
@@ -54,7 +51,6 @@ ar:
54
51
  description: الوصف
55
52
  price: السعر
56
53
  title: العنوان
57
- weight: وزن
58
54
  conference_speaker:
59
55
  affiliation: الانتساب
60
56
  avatar: الصورة الرمزية
@@ -144,8 +140,6 @@ ar:
144
140
  edit:
145
141
  title: تحديث مسؤول المؤتمر.
146
142
  update: تحديث
147
- index:
148
- conference_admins_title: مدراء المؤتمر
149
143
  new:
150
144
  create: إنشاء
151
145
  title: مشرف المؤتمر الجديد.
@@ -426,7 +420,7 @@ ar:
426
420
  conference_program:
427
421
  program_meeting:
428
422
  content: المحتوى
429
- location: موقعك
423
+ location: الموقع
430
424
  speakers: مكبرات الصوت
431
425
  streaming: تدفق
432
426
  show:
@@ -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: nom de la signatura
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: Odre de posició
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: administradores de la jornada
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 conferència.
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.
@@ -29,7 +29,7 @@ cs:
29
29
  show_statistics: Zobrazit statistiky
30
30
  sign_date: Datum podpisu
31
31
  signature: Podpis
32
- signature_name: podpisové jméno
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: Váha
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: Váha
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: Váha
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: administrátoři konference
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: Umístění
425
+ location: Lokalita
425
426
  speakers: Řečníci
426
427
  streaming: Streamování
427
428
  show:
@@ -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: Gewicht
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: Gewicht
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: Gewicht
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: Bestellposition
247
+ weight: Reihenfolge
251
248
  name: Registrierungstyp
252
249
  partners:
253
250
  create:
@@ -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: Νέος διαχειριστής διάσκεψης.
@@ -29,7 +29,7 @@ en:
29
29
  show_statistics: Show statistics
30
30
  sign_date: Sign date
31
31
  signature: Signature
32
- signature_name: 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: 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: 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: 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: conference admins
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"
@@ -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: nombre de firma
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: Peso
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: Peso
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: Peso
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: usuarios de la conferencia
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: Ubicación
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 conferencia.
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.
@@ -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: nombre de firma
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: Peso
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: Peso
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: Peso
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: usuarios de la conferencia
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: Ubicación
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 conferencia.
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: Altavoces
458
+ speakers: Ponentes
458
459
  conferences:
459
460
  partners:
460
461
  collaborators: Fogonadura
@@ -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: nombre de firma
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: administradoras de la jornada
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: Ubicación
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 conferencia.
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.
@@ -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.
@@ -410,7 +404,7 @@ eu:
410
404
  conference_program:
411
405
  program_meeting:
412
406
  content: Edukia
413
- location: Kokalekua
407
+ location: Kokapena
414
408
  speakers: Hizlariak
415
409
  streaming: Streaming
416
410
  show:
@@ -29,7 +29,7 @@ fi-pl:
29
29
  show_statistics: Näytä tilastot
30
30
  sign_date: Allekirjoituksen päivämäärä
31
31
  signature: Allekirjoitus
32
- signature_name: allekirjoituksen nimi
32
+ signature_name: Allekirjoituksen nimi
33
33
  slogan: Iskulause
34
34
  slug: URL-tunniste
35
35
  start_date: Alkamispäivä
@@ -38,13 +38,13 @@ fi-pl:
38
38
  date: Päivämäärä
39
39
  link: Linkki
40
40
  title: Otsikko
41
- weight: Painoarvo
41
+ weight: Järjestysnumero
42
42
  conference_partner:
43
43
  link: Linkki
44
44
  logo: Logo
45
45
  name: Nimi
46
46
  partner_type: Kumppanin tyyppi
47
- weight: Painoarvo
47
+ weight: Järjestysnumero
48
48
  conference_registration_invite:
49
49
  email: Sähköposti
50
50
  name: Nimi
@@ -54,7 +54,7 @@ fi-pl:
54
54
  description: Kuvaus
55
55
  price: Hinta
56
56
  title: Otsikko
57
- weight: Painoarvo
57
+ weight: Järjestysnumero
58
58
  conference_speaker:
59
59
  affiliation: Jäsenyys
60
60
  avatar: Avatar
@@ -135,7 +135,7 @@ fi-pl:
135
135
  title: Päivitä konferenssin käyttäjä.
136
136
  update: Päivitä
137
137
  index:
138
- conference_admins_title: konferenssin käyttäjät
138
+ conference_admins_title: Konferenssin ylläpitäjät
139
139
  new:
140
140
  create: Luo
141
141
  title: Uusi konferenssin käyttäjä.
@@ -313,6 +313,7 @@ fi-pl:
313
313
  update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
314
314
  registration_type:
315
315
  create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
316
+ delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
316
317
  publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
317
318
  unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
318
319
  update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"