decidim-meetings 0.10.1 → 0.11.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/config/admin/decidim_meetings_manifest.js +1 -0
  4. data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +78 -0
  5. data/app/assets/javascripts/decidim/meetings/admin/registrations_form.js.es6 +9 -7
  6. data/app/cells/decidim/meetings/meeting_cell.rb +71 -0
  7. data/app/cells/decidim/meetings/meeting_list_item/show.erb +14 -0
  8. data/app/cells/decidim/meetings/meeting_list_item_cell.rb +26 -0
  9. data/app/cells/decidim/meetings/meeting_m/header.erb +5 -0
  10. data/app/cells/decidim/meetings/meeting_m/show.erb +21 -0
  11. data/app/cells/decidim/meetings/meeting_m_cell.rb +17 -0
  12. data/app/commands/decidim/meetings/admin/copy_meeting.rb +82 -0
  13. data/app/commands/decidim/meetings/admin/create_meeting.rb +3 -1
  14. data/app/commands/decidim/meetings/admin/export_meeting_registrations.rb +44 -0
  15. data/app/commands/decidim/meetings/admin/update_meeting.rb +1 -0
  16. data/app/commands/decidim/meetings/admin/update_registrations.rb +1 -0
  17. data/app/commands/decidim/meetings/join_meeting.rb +1 -1
  18. data/app/commands/decidim/meetings/leave_meeting.rb +1 -1
  19. data/app/controllers/decidim/meetings/admin/application_controller.rb +3 -3
  20. data/app/controllers/decidim/meetings/admin/attachment_collections_controller.rb +2 -2
  21. data/app/controllers/decidim/meetings/admin/attachments_controller.rb +1 -1
  22. data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
  23. data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
  24. data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +43 -0
  25. data/app/controllers/decidim/meetings/admin/meetings_controller.rb +10 -2
  26. data/app/controllers/decidim/meetings/admin/registrations_controller.rb +6 -5
  27. data/app/controllers/decidim/meetings/application_controller.rb +2 -2
  28. data/app/controllers/decidim/meetings/meeting_widgets_controller.rb +1 -1
  29. data/app/controllers/decidim/meetings/meetings_controller.rb +2 -2
  30. data/app/controllers/decidim/meetings/registrations_controller.rb +1 -1
  31. data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +54 -0
  32. data/app/forms/decidim/meetings/admin/meeting_form.rb +17 -6
  33. data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +10 -1
  34. data/app/forms/decidim/meetings/admin/meeting_service_form.rb +23 -0
  35. data/app/helpers/decidim/meetings/admin/application_helper.rb +4 -0
  36. data/app/mailers/decidim/meetings/admin/invite_join_meeting_mailer.rb +1 -1
  37. data/app/models/decidim/meetings/abilities/current_user_ability.rb +6 -6
  38. data/app/models/decidim/meetings/meeting.rb +14 -8
  39. data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
  40. data/app/services/decidim/meetings/meeting_search.rb +2 -2
  41. data/app/types/decidim/meetings/meeting_type.rb +38 -0
  42. data/app/types/decidim/meetings/meetings_type.rb +32 -0
  43. data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -1
  44. data/app/views/decidim/meetings/admin/invites/new.html.erb +3 -3
  45. data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +2 -3
  46. data/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +2 -2
  47. data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +42 -0
  48. data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +7 -0
  49. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +15 -11
  50. data/app/views/decidim/meetings/admin/meetings/_service.html.erb +48 -0
  51. data/app/views/decidim/meetings/admin/meetings/_services.html.erb +25 -0
  52. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +2 -3
  53. data/app/views/decidim/meetings/admin/meetings/index.html.erb +13 -9
  54. data/app/views/decidim/meetings/admin/meetings/new.html.erb +2 -2
  55. data/app/views/decidim/meetings/admin/registrations/_form.html.erb +7 -2
  56. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +2 -3
  57. data/app/views/decidim/meetings/meetings/_filters.html.erb +2 -2
  58. data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +1 -1
  59. data/app/views/decidim/meetings/meetings/_meetings.html.erb +1 -18
  60. data/app/views/decidim/meetings/meetings/_registration_confirm.html.erb +2 -2
  61. data/app/views/decidim/meetings/meetings/index.html.erb +3 -3
  62. data/app/views/decidim/meetings/meetings/show.html.erb +21 -4
  63. data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_meetings.html.erb +2 -2
  64. data/app/views/decidim/participatory_spaces/_highlighted_meetings.html.erb +4 -4
  65. data/app/views/decidim/participatory_spaces/_meeting.html.erb +1 -14
  66. data/app/views/devise/mailer/join_meeting.html.erb +1 -1
  67. data/app/views/devise/mailer/join_meeting.text.erb +1 -1
  68. data/config/locales/ca.yml +35 -12
  69. data/config/locales/en.yml +35 -12
  70. data/config/locales/es.yml +35 -12
  71. data/config/locales/eu.yml +35 -12
  72. data/config/locales/fi.yml +35 -12
  73. data/config/locales/fr.yml +35 -12
  74. data/config/locales/gl.yml +35 -12
  75. data/config/locales/it.yml +35 -12
  76. data/config/locales/nl.yml +73 -50
  77. data/config/locales/pl.yml +35 -12
  78. data/config/locales/pt-BR.yml +35 -12
  79. data/config/locales/pt.yml +35 -12
  80. data/config/locales/ru.yml +0 -3
  81. data/config/locales/sv.yml +35 -12
  82. data/config/locales/uk.yml +0 -3
  83. data/db/migrate/20180305133634_rename_features_to_components_at_meetings.rb +11 -0
  84. data/db/migrate/20180326082611_add_fields_for_registrations.rb +7 -0
  85. data/db/migrate/20180407110934_add_services_to_meetings.rb +7 -0
  86. data/lib/decidim/meetings.rb +2 -1
  87. data/lib/decidim/meetings/admin_engine.rb +1 -0
  88. data/lib/decidim/meetings/{feature.rb → component.rb} +27 -19
  89. data/lib/decidim/meetings/engine.rb +27 -4
  90. data/lib/decidim/meetings/test/factories.rb +10 -3
  91. data/lib/decidim/meetings/version.rb +1 -1
  92. data/lib/decidim/meetings/view_model.rb +12 -0
  93. metadata +65 -15
@@ -21,6 +21,28 @@ es:
21
21
  start_time: Hora de inicio
22
22
  title: Título
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: Se ha producido un error al duplicar este encuentro.
28
+ success: El encuentro se ha duplicado con éxito.
29
+ new:
30
+ copy: Copiar
31
+ select: Selecciona qué datos quieres duplicar
32
+ title: Duplicar encuentro
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Unirse
37
+ name: Encuentros
38
+ settings:
39
+ global:
40
+ announcement: Anuncio
41
+ comments_enabled: Comentarios habilitados
42
+ default_registration_terms: Términos de registro predeterminados
43
+ step:
44
+ announcement: Anuncio
45
+ comments_blocked: Comentarios bloqueados
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ es:
53
75
  email_outro: Has recibido esta notificación porque sigues el encuentro "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
54
76
  email_subject: El encuentro "%{resource_title}" comenzará en menos de 48 h.
55
77
  notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> comenzará en menos de 48 h.
56
- features:
57
- meetings:
58
- actions:
59
- join: Unirse
60
- name: Encuentros
61
- settings:
62
- global:
63
- announcement: Anuncio
64
- comments_enabled: Comentarios habilitados
65
- step:
66
- announcement: Anuncio
67
- comments_blocked: Comentarios bloqueados
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: Colecciones
@@ -112,6 +122,16 @@ es:
112
122
  new:
113
123
  create: Crear
114
124
  title: Crear encuentro
125
+ service:
126
+ description: Descripción
127
+ down: Abajo
128
+ remove: Eliminar
129
+ service: Servicio
130
+ title: Título
131
+ up: Arriba
132
+ services:
133
+ add_service: Añadir servicio
134
+ services: Servicios
115
135
  update:
116
136
  invalid: Ha habido un problema al actualizar este encuentro
117
137
  success: Encuentro actualizado correctamente
@@ -127,6 +147,8 @@ es:
127
147
  registrations_count:
128
148
  one: Ha habido 1 inscripción.
129
149
  other: Ha habido %{count} inscripciones.
150
+ reserved_slots_help: Déjalo en 0 si no tienes espacios reservados
151
+ reserved_slots_less_than: Debe ser menor que o igual a %{count}
130
152
  update:
131
153
  invalid: Se ha producido un problema al guardar la configuración de la inscripción.
132
154
  success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
@@ -135,6 +157,7 @@ es:
135
157
  close: "%{user_name} cerró el encuentro %{resource_name} en el espacio %{space_name}"
136
158
  create: "%{user_name} creó el encuentro %{resource_name} en el espacio %{space_name}"
137
159
  delete: "%{user_name} eliminó el encuentro %{resource_name} en el espacio %{space_name}"
160
+ export_registrations: "%{user_name} exportó los registros del encuentro %{resource_name} en el espacio %{space_name}"
138
161
  update: "%{user_name} actualizó el encuentro %{resource_name} en el espacio %{space_name}"
139
162
  mailer:
140
163
  invite_join_meeting_mailer:
@@ -21,6 +21,28 @@ eu:
21
21
  start_time: Hasiera-ordua
22
22
  title: Titulua
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: Akatsa gertatu da bilera hau bikoiztea.
28
+ success: Bildutako bilera bikoiztua behar bezala egin da.
29
+ new:
30
+ copy: Copy
31
+ select: Aukeratu zein datu bikoiztu nahi dituzun
32
+ title: Bilera bikoiztua
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Parte hartu
37
+ name: Bilerak
38
+ settings:
39
+ global:
40
+ announcement: Anuntzio
41
+ comments_enabled: Iruzkinak gaituta
42
+ default_registration_terms: Izen-emate baldintzak lehenetsiak
43
+ step:
44
+ announcement: Anuntzio
45
+ comments_blocked: Iruzkinak blokeatuta
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ eu:
53
75
  email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
54
76
  email_subject: '"%{resource_title}" topaketa 48 ordu baino gutxiagotan hasiko da.'
55
77
  notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa 48 ordu baino gutxiagoan hasiko da.
56
- features:
57
- meetings:
58
- actions:
59
- join: Parte hartu
60
- name: Topaketa-zerrenda
61
- settings:
62
- global:
63
- announcement: Anuntzio
64
- comments_enabled: Iruzkinak gaituta
65
- step:
66
- announcement: Anuntzio
67
- comments_blocked: Iruzkinak blokeatuta
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: Bilduma
@@ -112,6 +122,16 @@ eu:
112
122
  new:
113
123
  create: Sortu
114
124
  title: Sortu topaketa
125
+ service:
126
+ description: deskribapena
127
+ down: Down
128
+ remove: Kendu
129
+ service: zerbitzua
130
+ title: Izenburua
131
+ up: up
132
+ services:
133
+ add_service: Gehitu zerbitzua
134
+ services: Zerbitzuak
115
135
  update:
116
136
  invalid: Arazo bat izan da topaketa hau eguneratzean.
117
137
  success: Topaketa zuzen eguneratu da.
@@ -127,6 +147,8 @@ eu:
127
147
  registrations_count:
128
148
  one: Izen-emate bat egin da.
129
149
  other: '%{count} izen-emate egin dira.'
150
+ reserved_slots_help: Utzi 0 aukerarik ez baduzu erreserbatutako slotarik
151
+ reserved_slots_less_than: '%{count} baino gutxiago izan behar du'
130
152
  update:
131
153
  invalid: Arazo bat izan da izen-ematearen konfigurazioa gordetzean.
132
154
  success: Topaketen izen-emateen konfigurazioak zuzen gorde dira.
@@ -135,6 +157,7 @@ eu:
135
157
  close: "%{user_name} %{resource_name} bilera %{space_name} espazioan itxi zen"
136
158
  create: "%{user_name} %{resource_name} bilera sortu zen %{space_name} espazioan"
137
159
  delete: "%{user_name} %{resource_name} topaketa ezabatu da %{space_name} espazioan"
160
+ export_registrations: "%{user_name} %{resource_name} bilera erregistratu dira %{space_name} espazioan"
138
161
  update: "%{user_name} %{resource_name} topaketa %{space_name} espazioan eguneratu zen"
139
162
  mailer:
140
163
  invite_join_meeting_mailer:
@@ -21,6 +21,28 @@ fi:
21
21
  start_time: Aloitusaika
22
22
  title: Otsikko
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: Tämän kokouksen päällekkäisyyttä ei löytynyt.
28
+ success: Kopioitu kokous onnistui.
29
+ new:
30
+ copy: Kopio
31
+ select: Valitse, mitkä tiedot haluat kopioida
32
+ title: Kopioi kokous
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Liittyä seuraan
37
+ name: kokoukset
38
+ settings:
39
+ global:
40
+ announcement: Ilmoitus
41
+ comments_enabled: Kommentit ovat käytössä
42
+ default_registration_terms: Oletussäännöt
43
+ step:
44
+ announcement: Ilmoitus
45
+ comments_blocked: Kommentit on estetty
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ fi:
53
75
  email_outro: Olet saanut tämän ilmoituksen, koska olet seuraamassa "%{resource_title}" -kokousta. Voit purkaa sen edellisestä linkistä.
54
76
  email_subject: Kokous "%{resource_title}" alkaa alle 48 tunnissa.
55
77
  notification_title: <a href="%{resource_path}">%{resource_title}</a> kokous alkaa alle 48 tuntia.
56
- features:
57
- meetings:
58
- actions:
59
- join: Liittyä seuraan
60
- name: Tapaamiset
61
- settings:
62
- global:
63
- announcement: Ilmoitus
64
- comments_enabled: Kommentit ovat käytössä
65
- step:
66
- announcement: Ilmoitus
67
- comments_blocked: Kommentit on estetty
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: kokoelmat
@@ -112,6 +122,16 @@ fi:
112
122
  new:
113
123
  create: Luo
114
124
  title: Luo tapaaminen
125
+ service:
126
+ description: Kuvaus
127
+ down: Alas
128
+ remove: Poistaa
129
+ service: palvelu
130
+ title: otsikko
131
+ up: ylös
132
+ services:
133
+ add_service: Lisää palvelua
134
+ services: Palvelut
115
135
  update:
116
136
  invalid: Tapaamisen luonnissa tapahtui virhe
117
137
  success: Tapaaminen luotu onnistuneesti
@@ -127,6 +147,8 @@ fi:
127
147
  registrations_count:
128
148
  one: 1 ilmoittautuminen.
129
149
  other: '%{count} ilmoittautumista.'
150
+ reserved_slots_help: Jätä se kohtaan 0, jos sinulla ei ole varattuja lähtöasemia
151
+ reserved_slots_less_than: Voi olla pienempi tai yhtä suuri kuin %{count}
130
152
  update:
131
153
  invalid: Ilmoittautumisasetusten tallentamisessa on ollut ongelma.
132
154
  success: Tapahtumailmoittautumisasetukset tallennettiin onnistuneesti.
@@ -135,6 +157,7 @@ fi:
135
157
  close: "%{user_name} sulki %{resource_name} kokouksen %{space_name} -tilaan"
136
158
  create: "%{user_name} loi %{resource_name} kokouksen %{space_name} -tilaan"
137
159
  delete: "%{user_name} poistanut %{resource_name} kokouksen %{space_name} -tilasta"
160
+ export_registrations: "%{user_name} vietti %{resource_name} kokouksen rekisteröinnit %{space_name} -tilaan"
138
161
  update: "%{user_name} päivitti %{resource_name} kokouksen %{space_name} -tilaan"
139
162
  mailer:
140
163
  invite_join_meeting_mailer:
@@ -21,6 +21,28 @@ fr:
21
21
  start_time: Heure de début
22
22
  title: Titre
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: Une erreur s'est produite lors de la duplication de cette assemblée.
28
+ success: Cette assemblée a été dupliquée avec succès.
29
+ new:
30
+ copy: Copie
31
+ select: Sélectionnez les données que vous souhaitez dupliquer
32
+ title: Dupliquer une assemblée
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Rejoindre
37
+ name: Réunions
38
+ settings:
39
+ global:
40
+ announcement: Annonce
41
+ comments_enabled: Activer le module de commentaire
42
+ default_registration_terms: Conditions d'enregistrement par défaut
43
+ step:
44
+ announcement: Annonce
45
+ comments_blocked: Bloquer la création de nouveaux commentaires
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ fr:
53
75
  email_outro: Vous avez reçu cette notification, car vous suivez la réunion "%{resource_title}". Vous pouvez arrêter de la suivre en vous connectant sur le lien précédent.
54
76
  email_subject: La réunion "%{resource_title}" commencera dans moins de 48h.
55
77
  notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> débutera dans moins de 48h.
56
- features:
57
- meetings:
58
- actions:
59
- join: Rejoindre
60
- name: Rencontres
61
- settings:
62
- global:
63
- announcement: Annonce
64
- comments_enabled: Activer le module de commentaire
65
- step:
66
- announcement: Annonce
67
- comments_blocked: Bloquer la création de nouveaux commentaires
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: Dossier
@@ -112,6 +122,16 @@ fr:
112
122
  new:
113
123
  create: Créer
114
124
  title: Créer une rencontre
125
+ service:
126
+ description: La description
127
+ down: Vers le bas
128
+ remove: Retirer
129
+ service: Un service
130
+ title: Titre
131
+ up: Up
132
+ services:
133
+ add_service: Ajouter un service
134
+ services: Prestations de service
115
135
  update:
116
136
  invalid: Il y a eu un problème lors de la mise à jour de cette rencontre
117
137
  success: Rencontre mise à jour avec succès
@@ -127,6 +147,8 @@ fr:
127
147
  registrations_count:
128
148
  one: Il y a eu 1 inscription.
129
149
  other: Il y a eu %{count} inscriptions.
150
+ reserved_slots_help: Laissez-le à 0 si vous n'avez pas de créneaux réservés
151
+ reserved_slots_less_than: Doit être inférieur ou égal à %{count}
130
152
  update:
131
153
  invalid: Il y a eu un problème lors de l'enregistrement des paramètres d'inscription.
132
154
  success: Les paramètres d'inscriptions ont été enregistrés avec succès.
@@ -135,6 +157,7 @@ fr:
135
157
  close: "%{user_name} a fermé la réunion %{resource_name} sur l'espace %{space_name}"
136
158
  create: "%{user_name} a créé la réunion %{resource_name} sur l'espace %{space_name}"
137
159
  delete: "%{user_name} a supprimé la réunion %{resource_name} sur l'espace %{space_name}"
160
+ export_registrations: "%{user_name} a exporté les enregistrements de la réunion %{resource_name} sur l'espace %{space_name}"
138
161
  update: "%{user_name} a mis à jour la réunion %{resource_name} sur l'espace %{space_name}"
139
162
  mailer:
140
163
  invite_join_meeting_mailer:
@@ -21,6 +21,28 @@ gl:
21
21
  start_time: Hora de inicio
22
22
  title: Título
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: Produciuse un erro ao duplicar esta reunión.
28
+ success: Reunión duplicada con éxito.
29
+ new:
30
+ copy: Copiar
31
+ select: Seleccione os datos que desexa duplicar
32
+ title: Reunión duplicada
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Únete
37
+ name: Reunións
38
+ settings:
39
+ global:
40
+ announcement: Anuncio
41
+ comments_enabled: Comentarios habilitados
42
+ default_registration_terms: Términos de rexistro por defecto
43
+ step:
44
+ announcement: Anuncio
45
+ comments_blocked: Comentarios bloqueados
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ gl:
53
75
  email_outro: Recibiches esta notificación porque estás seguindo a reunión "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
54
76
  email_subject: A reunión "%{resource_title}" comezará en menos de 48 horas.
55
77
  notification_title: A reunión <a href="%{resource_path}">%{resource_title}</a> comezará en menos de 48 horas.
56
- features:
57
- meetings:
58
- actions:
59
- join: Únete
60
- name: Reunións
61
- settings:
62
- global:
63
- announcement: Anuncio
64
- comments_enabled: Comentarios habilitados
65
- step:
66
- announcement: Anuncio
67
- comments_blocked: Comentarios bloqueados
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: Coleccións
@@ -112,6 +122,16 @@ gl:
112
122
  new:
113
123
  create: Crear
114
124
  title: Crear unha reunión
125
+ service:
126
+ description: Descrición
127
+ down: Baixo
128
+ remove: Quitar
129
+ service: Servizo
130
+ title: Título
131
+ up: Arriba
132
+ services:
133
+ add_service: Engadir servizo
134
+ services: Servizos
115
135
  update:
116
136
  invalid: Produciuse un problema ao actualizar esta reunión
117
137
  success: Reunión actualizada correctamente
@@ -127,6 +147,8 @@ gl:
127
147
  registrations_count:
128
148
  one: Houbo 1 rexistro.
129
149
  other: Houbo %{count} rexistros.
150
+ reserved_slots_help: Déixao a 0 se non tes slots reservados
151
+ reserved_slots_less_than: Debe ser inferior ou igual a %{count}
130
152
  update:
131
153
  invalid: Produciuse un problema ao gardar a configuración de rexistro.
132
154
  success: A configuración das inscricións da xuntanza gardouse correctamente.
@@ -135,6 +157,7 @@ gl:
135
157
  close: "%{user_name} pechou a %{resource_name} reunión no espazo %{space_name}"
136
158
  create: "%{user_name} creou a %{resource_name} reunión no espazo %{space_name}"
137
159
  delete: "%{user_name} eliminou a %{resource_name} reunión no espazo %{space_name}"
160
+ export_registrations: "%{user_name} exportou os rexistros da %{resource_name} reunión no espazo %{space_name}"
138
161
  update: "%{user_name} actualizou a %{resource_name} reunión no espazo %{space_name}"
139
162
  mailer:
140
163
  invite_join_meeting_mailer:
@@ -21,6 +21,28 @@ it:
21
21
  start_time: Orario inizio
22
22
  title: Titolo
23
23
  decidim:
24
+ admin:
25
+ meeting_copies:
26
+ create:
27
+ error: C'era un errore en duplicazione di questo incontro.
28
+ success: Riunione duplicata con successo.
29
+ new:
30
+ copy: copia
31
+ select: Seleziona i dati che desideri duplicare
32
+ title: Riunione duplicata
33
+ components:
34
+ meetings:
35
+ actions:
36
+ join: Aderire
37
+ name: incontri
38
+ settings:
39
+ global:
40
+ announcement: Annuncio
41
+ comments_enabled: Commenti abilitati
42
+ default_registration_terms: Termini di registrazione predefiniti
43
+ step:
44
+ announcement: Annuncio
45
+ comments_blocked: Commenti bloccati
24
46
  events:
25
47
  meetings:
26
48
  meeting_closed:
@@ -53,18 +75,6 @@ it:
53
75
  email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
54
76
  email_subject: La riunione "%{resource_title}" inizierà tra meno di 48 ore.
55
77
  notification_title: La riunione <a href="%{resource_path}">%{resource_title}</a> inizierà tra meno di 48 ore.
56
- features:
57
- meetings:
58
- actions:
59
- join: Aderire
60
- name: Riunioni
61
- settings:
62
- global:
63
- announcement: Annuncio
64
- comments_enabled: Commenti abilitati
65
- step:
66
- announcement: Annuncio
67
- comments_blocked: Commenti bloccati
68
78
  meetings:
69
79
  actions:
70
80
  attachment_collections: collezioni
@@ -112,6 +122,16 @@ it:
112
122
  new:
113
123
  create: Crea
114
124
  title: Crea meeting
125
+ service:
126
+ description: Descrizione
127
+ down: Giù
128
+ remove: Rimuovere
129
+ service: Servizio
130
+ title: Titolo
131
+ up: Su
132
+ services:
133
+ add_service: Aggiungi servizio
134
+ services: Servizi
115
135
  update:
116
136
  invalid: C'è stato un problema durante l'aggiornamento di questo meeting.
117
137
  success: OK, il meeting è stato aggiornato.
@@ -127,6 +147,8 @@ it:
127
147
  registrations_count:
128
148
  one: Si è registrato un'iscrizione.
129
149
  other: Si sono registrate %{count} iscrizione.
150
+ reserved_slots_help: Lasciare a 0 se non si dispone di slot riservati
151
+ reserved_slots_less_than: Deve essere minore o uguale a %{count}
130
152
  update:
131
153
  invalid: Si è verificato un problema salvando le impostazioni di registrazione.
132
154
  success: Le impostazioni di registrazione delle riunioni sono state salvate correttamente.
@@ -135,6 +157,7 @@ it:
135
157
  close: "%{user_name} ha chiuso la riunione %{resource_name} sullo spazio %{space_name}"
136
158
  create: "%{user_name} ha creato la riunione %{resource_name} nello spazio %{space_name}"
137
159
  delete: "%{user_name} ha eliminato la riunione %{resource_name} nello spazio %{space_name}"
160
+ export_registrations: "%{user_name} esportate le registrazioni della riunione %{resource_name} nello spazio %{space_name}"
138
161
  update: "%{user_name} ha aggiornato la riunione %{resource_name} sullo spazio %{space_name}"
139
162
  mailer:
140
163
  invite_join_meeting_mailer: