decidim-conferences 0.29.6 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +1 -1
- data/app/commands/decidim/conferences/admin/copy_conference.rb +2 -12
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/controllers/decidim/conferences/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +17 -4
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +0 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +3 -8
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -11
- data/app/models/decidim/conference.rb +19 -0
- data/app/models/decidim/conferences/conference_invite.rb +10 -0
- data/app/permissions/decidim/conferences/permissions.rb +11 -10
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/conference_presenter.rb +19 -0
- data/app/serializers/decidim/conferences/conference_serializer.rb +24 -0
- data/app/serializers/decidim/conferences/download_your_data_conference_invite_serializer.rb +3 -4
- data/app/serializers/decidim/conferences/download_your_data_conference_registration_serializer.rb +4 -4
- data/app/serializers/decidim/conferences/open_data_conference_serializer.rb +30 -0
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +0 -3
- data/app/views/decidim/conferences/admin/conferences/_actions.html.erb +35 -0
- data/app/views/decidim/conferences/admin/conferences/_conference_row.html.erb +28 -0
- data/app/views/decidim/conferences/admin/conferences/_conferences_thead.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +27 -8
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +14 -52
- data/app/views/decidim/conferences/admin/conferences/manage_trash.html.erb +20 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +3 -1
- data/app/views/decidim/conferences/conference_program/show.html.erb +3 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +4 -1
- data/app/views/decidim/conferences/conferences/index.html.erb +3 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +6 -6
- data/app/views/decidim/conferences/media/index.html.erb +3 -1
- data/app/views/decidim/conferences/registration_types/index.html.erb +3 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +1 -1
- data/config/locales/ar.yml +16 -3
- data/config/locales/bg.yml +6 -3
- data/config/locales/ca.yml +62 -4
- data/config/locales/cs.yml +61 -3
- data/config/locales/de.yml +70 -12
- data/config/locales/el.yml +6 -3
- data/config/locales/en.yml +62 -4
- data/config/locales/es-MX.yml +64 -6
- data/config/locales/es-PY.yml +65 -7
- data/config/locales/es.yml +63 -5
- data/config/locales/eu.yml +84 -26
- data/config/locales/fi-plain.yml +63 -5
- data/config/locales/fi.yml +63 -5
- data/config/locales/fr-CA.yml +21 -4
- data/config/locales/fr.yml +22 -5
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +6 -3
- data/config/locales/id-ID.yml +6 -3
- data/config/locales/it.yml +6 -3
- data/config/locales/ja.yml +62 -4
- data/config/locales/lb.yml +4 -3
- data/config/locales/lt.yml +6 -3
- data/config/locales/lv.yml +6 -3
- data/config/locales/nl.yml +6 -3
- data/config/locales/no.yml +6 -3
- data/config/locales/pl.yml +6 -3
- data/config/locales/pt-BR.yml +7 -4
- data/config/locales/pt.yml +6 -3
- data/config/locales/ro-RO.yml +6 -5
- data/config/locales/sk.yml +6 -3
- data/config/locales/sv.yml +37 -41
- data/config/locales/tr-TR.yml +6 -3
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +6 -3
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +1 -1
- data/db/migrate/20240822161330_add_deleted_at_to_decidim_conferences.rb +8 -0
- data/decidim-conferences.gemspec +1 -2
- data/lib/decidim/api/conference_media_link_type.rb +4 -4
- data/lib/decidim/api/conference_partner_type.rb +4 -4
- data/lib/decidim/api/conference_speaker_type.rb +7 -8
- data/lib/decidim/api/conference_type.rb +17 -19
- data/lib/decidim/conferences/admin_engine.rb +87 -58
- data/lib/decidim/conferences/conference_diploma_pdf.rb +242 -0
- data/lib/decidim/conferences/engine.rb +6 -1
- data/lib/decidim/conferences/menu.rb +23 -9
- data/lib/decidim/conferences/participatory_space.rb +13 -0
- data/lib/decidim/conferences/seeds.rb +134 -115
- data/lib/decidim/conferences/test/factories.rb +10 -9
- data/lib/decidim/conferences/version.rb +1 -1
- data/lib/decidim/conferences.rb +1 -0
- metadata +23 -29
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
- data/config/locales/ca-IT.yml +0 -603
data/config/locales/lv.yml
CHANGED
|
@@ -15,8 +15,6 @@ lv:
|
|
|
15
15
|
participatory_processes_ids: Saistītie līdzdalības procesi
|
|
16
16
|
promoted: Izcelts
|
|
17
17
|
published_at: Publicēts plkst.
|
|
18
|
-
scope_id: Darbības tvērums
|
|
19
|
-
scopes_enabled: Darbības tvērumi ir iespējoti
|
|
20
18
|
short_description: Īss apraksts
|
|
21
19
|
show_statistics: Rādīt statistiku
|
|
22
20
|
slogan: Sauklis
|
|
@@ -50,6 +48,8 @@ lv:
|
|
|
50
48
|
conference_copies:
|
|
51
49
|
new:
|
|
52
50
|
copy: Kopēt
|
|
51
|
+
select: Atlasiet, kurus datus vēlaties dublēt
|
|
52
|
+
title: Dublēt konferenci
|
|
53
53
|
conference_publications:
|
|
54
54
|
create:
|
|
55
55
|
error: Konferences publicēšanas laikā radās problēma.
|
|
@@ -107,6 +107,10 @@ lv:
|
|
|
107
107
|
update:
|
|
108
108
|
error: Šīs konferences atjaunināšanas laikā radās problēma.
|
|
109
109
|
success: Konference ir veiksmīgi atjaunināta.
|
|
110
|
+
conferences_copies:
|
|
111
|
+
create:
|
|
112
|
+
error: Radās problēma ar šīs konferences dublēšanu.
|
|
113
|
+
success: Konference ir veiksmīgi dublēta.
|
|
110
114
|
media_links:
|
|
111
115
|
create:
|
|
112
116
|
error: Jaunas mediju saites izveides laikā radās problēma.
|
|
@@ -122,7 +126,6 @@ lv:
|
|
|
122
126
|
attachment_collections: Mapes
|
|
123
127
|
attachment_files: Faili
|
|
124
128
|
attachments: Pielikumi
|
|
125
|
-
categories: Kategorijas
|
|
126
129
|
components: Komponenti
|
|
127
130
|
conference_admins: Konferences administratori
|
|
128
131
|
conference_invites: Ielūgumi
|
data/config/locales/nl.yml
CHANGED
|
@@ -22,8 +22,6 @@ nl:
|
|
|
22
22
|
published_at: Gepubliceerd op
|
|
23
23
|
registration_terms: Registratievoorwaarden
|
|
24
24
|
registrations_enabled: Registraties ingeschakeld
|
|
25
|
-
scope_id: Scope
|
|
26
|
-
scopes_enabled: Scopes ingeschakeld
|
|
27
25
|
short_description: Korte beschrijving
|
|
28
26
|
show_statistics: Toon statistieken
|
|
29
27
|
sign_date: Datum ondertekenen
|
|
@@ -80,6 +78,8 @@ nl:
|
|
|
80
78
|
conference_copies:
|
|
81
79
|
new:
|
|
82
80
|
copy: Kopiëren
|
|
81
|
+
select: Selecteer welke gegevens u wilt dupliceren
|
|
82
|
+
title: Dubbele conferentie
|
|
83
83
|
conference_publications:
|
|
84
84
|
create:
|
|
85
85
|
error: Er is een fout opgetreden bij het publiceren van deze conferentie.
|
|
@@ -137,6 +137,10 @@ nl:
|
|
|
137
137
|
update:
|
|
138
138
|
error: Er is een probleem opgetreden bij het bijwerken van deze conferentie.
|
|
139
139
|
success: Conferentie succesvol bijgewerkt.
|
|
140
|
+
conferences_copies:
|
|
141
|
+
create:
|
|
142
|
+
error: Er was een probleem bij het dupliceren van deze conferentie.
|
|
143
|
+
success: Conferentie succesvol gedupliceerd.
|
|
140
144
|
media_links:
|
|
141
145
|
create:
|
|
142
146
|
error: Er is een probleem opgetreden bij het maken van een nieuwe mediakoppeling.
|
|
@@ -152,7 +156,6 @@ nl:
|
|
|
152
156
|
attachment_collections: Mappen
|
|
153
157
|
attachment_files: Bestanden
|
|
154
158
|
attachments: Bijlagen
|
|
155
|
-
categories: Categorieën
|
|
156
159
|
components: Componenten
|
|
157
160
|
conference_admins: Conferentiebeheerders
|
|
158
161
|
conference_invites: Uitnodigingen
|
data/config/locales/no.yml
CHANGED
|
@@ -22,8 +22,6 @@
|
|
|
22
22
|
published_at: Publisert på
|
|
23
23
|
registration_terms: Registreringsvilkår
|
|
24
24
|
registrations_enabled: Registreringer aktivert
|
|
25
|
-
scope_id: Tema
|
|
26
|
-
scopes_enabled: Aktiverte temaer
|
|
27
25
|
short_description: Kort beskrivelse
|
|
28
26
|
show_statistics: Vis statistikk
|
|
29
27
|
sign_date: Underskriftsdato
|
|
@@ -80,6 +78,8 @@
|
|
|
80
78
|
conference_copies:
|
|
81
79
|
new:
|
|
82
80
|
copy: Kopier
|
|
81
|
+
select: Velg hvilke data du vil duplisere
|
|
82
|
+
title: Duplisert konferanse
|
|
83
83
|
conference_publications:
|
|
84
84
|
create:
|
|
85
85
|
error: Det oppstod et problem med å publisere denne konferansen.
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
update:
|
|
138
138
|
error: Det oppstod et problem med å oppdatere denne konferansen.
|
|
139
139
|
success: Konferansen ble oppdatert.
|
|
140
|
+
conferences_copies:
|
|
141
|
+
create:
|
|
142
|
+
error: Det oppstod et problem med å duplisere denne konferansen.
|
|
143
|
+
success: Konferansen ble duplisert.
|
|
140
144
|
media_links:
|
|
141
145
|
create:
|
|
142
146
|
error: Det oppstod et problem med å opprette en ny media lenke.
|
|
@@ -152,7 +156,6 @@
|
|
|
152
156
|
attachment_collections: Mapper
|
|
153
157
|
attachment_files: Filer
|
|
154
158
|
attachments: Vedlegg
|
|
155
|
-
categories: Kategorier
|
|
156
159
|
components: Komponenter
|
|
157
160
|
conference_admins: Konferanse administratorer
|
|
158
161
|
conference_invites: Invitasjoner
|
data/config/locales/pl.yml
CHANGED
|
@@ -22,8 +22,6 @@ pl:
|
|
|
22
22
|
published_at: Opublikowano
|
|
23
23
|
registration_terms: Warunki rejestracji
|
|
24
24
|
registrations_enabled: Rejestracja włączona
|
|
25
|
-
scope_id: Zakres
|
|
26
|
-
scopes_enabled: Zakresy dozwolone
|
|
27
25
|
short_description: Krótki opis
|
|
28
26
|
show_statistics: Pokaż statystyki
|
|
29
27
|
sign_date: Data podpisania
|
|
@@ -106,6 +104,8 @@ pl:
|
|
|
106
104
|
conference_copies:
|
|
107
105
|
new:
|
|
108
106
|
copy: Kopiuj
|
|
107
|
+
select: Wybierz dane, które chcesz zduplikować
|
|
108
|
+
title: Zduplikuj konferencję
|
|
109
109
|
conference_publications:
|
|
110
110
|
create:
|
|
111
111
|
error: Wystąpił błąd podczas publikowania tej konferencji.
|
|
@@ -172,6 +172,10 @@ pl:
|
|
|
172
172
|
update:
|
|
173
173
|
error: Wystąpił błąd podczas aktualizowania konferencji.
|
|
174
174
|
success: Konferencja została zaktualizowana pomyślnie.
|
|
175
|
+
conferences_copies:
|
|
176
|
+
create:
|
|
177
|
+
error: Wystąpił błąd podczas duplikowania konferencji.
|
|
178
|
+
success: Konferencja zduplikowana pomyślnie.
|
|
175
179
|
media_links:
|
|
176
180
|
create:
|
|
177
181
|
error: Podczas tworzenia nowego linku do multimediów wystąpił błąd.
|
|
@@ -187,7 +191,6 @@ pl:
|
|
|
187
191
|
attachment_collections: Foldery
|
|
188
192
|
attachment_files: Pliki
|
|
189
193
|
attachments: Załączniki
|
|
190
|
-
categories: Kategorie
|
|
191
194
|
components: Komponenty
|
|
192
195
|
conference_admins: Administratorzy konferencji
|
|
193
196
|
conference_invites: Zaprasza
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -22,8 +22,6 @@ pt-BR:
|
|
|
22
22
|
published_at: Publicado em
|
|
23
23
|
registration_terms: Termos de registro
|
|
24
24
|
registrations_enabled: Inscrições habilitadas
|
|
25
|
-
scope_id: Escopo
|
|
26
|
-
scopes_enabled: Escopos habilitados
|
|
27
25
|
short_description: Pequena descrição
|
|
28
26
|
show_statistics: Mostre estatisticas
|
|
29
27
|
sign_date: Data de assinatura
|
|
@@ -99,6 +97,8 @@ pt-BR:
|
|
|
99
97
|
conference_copies:
|
|
100
98
|
new:
|
|
101
99
|
copy: cópia de
|
|
100
|
+
select: Selecione quais dados você gostaria de duplicar
|
|
101
|
+
title: Conferência duplicada
|
|
102
102
|
conference_publications:
|
|
103
103
|
create:
|
|
104
104
|
error: Ocorreu um erro ao publicar esta conferência.
|
|
@@ -165,6 +165,10 @@ pt-BR:
|
|
|
165
165
|
update:
|
|
166
166
|
error: Houve um erro ao atualizar esta conferência.
|
|
167
167
|
success: Conferência atualizada com sucesso.
|
|
168
|
+
conferences_copies:
|
|
169
|
+
create:
|
|
170
|
+
error: Houve um erro ao duplicar esta conferência.
|
|
171
|
+
success: Conferência duplicada com sucesso.
|
|
168
172
|
media_links:
|
|
169
173
|
create:
|
|
170
174
|
error: Ocorreu um erro ao criar um novo link de mídia.
|
|
@@ -180,7 +184,6 @@ pt-BR:
|
|
|
180
184
|
attachment_collections: Pastas
|
|
181
185
|
attachment_files: arquivos
|
|
182
186
|
attachments: Anexos
|
|
183
|
-
categories: Categorias
|
|
184
187
|
components: Componentes
|
|
185
188
|
conference_admins: Administradores da conferência
|
|
186
189
|
conference_invites: Convites
|
|
@@ -315,7 +318,7 @@ pt-BR:
|
|
|
315
318
|
admin:
|
|
316
319
|
conference_copies:
|
|
317
320
|
form:
|
|
318
|
-
slug_help_html: 'Os slugs de URL são usados para gerar as URLs que apontam para esta conferência. Aceita apenas letras, números e traços e deve começar com uma letra. Exemplo: %{url}'
|
|
321
|
+
slug_help_html: 'Os slugs de URL são usados para gerar as URLs que apontam para esta conferência. Aceita apenas letras, números e traços e deve começar com uma letra. Exemplo: %{url}'
|
|
319
322
|
conference_invites:
|
|
320
323
|
create:
|
|
321
324
|
error: Houve um problema ao convidar o usuário para participar da conferência.
|
data/config/locales/pt.yml
CHANGED
|
@@ -22,8 +22,6 @@ pt:
|
|
|
22
22
|
published_at: Publicado em
|
|
23
23
|
registration_terms: Termos de registo
|
|
24
24
|
registrations_enabled: Registos ativados
|
|
25
|
-
scope_id: Âmbito
|
|
26
|
-
scopes_enabled: Âmbitos ativados
|
|
27
25
|
short_description: Breve descrição
|
|
28
26
|
show_statistics: Mostrar estatísticas
|
|
29
27
|
sign_date: Data de assinatura
|
|
@@ -80,6 +78,8 @@ pt:
|
|
|
80
78
|
conference_copies:
|
|
81
79
|
new:
|
|
82
80
|
copy: Copiar
|
|
81
|
+
select: Selecione os dados que pretende duplicar
|
|
82
|
+
title: Conferência duplicada
|
|
83
83
|
conference_publications:
|
|
84
84
|
create:
|
|
85
85
|
error: Ocorreu um problema ao publicar esta conferência.
|
|
@@ -137,6 +137,10 @@ pt:
|
|
|
137
137
|
update:
|
|
138
138
|
error: Ocorreu um problema ao atualizar esta conferência.
|
|
139
139
|
success: Conferência atualizada corretamente.
|
|
140
|
+
conferences_copies:
|
|
141
|
+
create:
|
|
142
|
+
error: Ocorreu um problema ao duplicar esta conferência.
|
|
143
|
+
success: Conferência duplicada com sucesso.
|
|
140
144
|
media_links:
|
|
141
145
|
create:
|
|
142
146
|
error: Ocorreu um problema ao criar uma nova hiperligação de multimédia.
|
|
@@ -152,7 +156,6 @@ pt:
|
|
|
152
156
|
attachment_collections: Pastas
|
|
153
157
|
attachment_files: Ficheiros
|
|
154
158
|
attachments: Anexos
|
|
155
|
-
categories: Categorias
|
|
156
159
|
components: Componentes
|
|
157
160
|
conference_admins: Administradores da conferência
|
|
158
161
|
conference_invites: Convites
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -22,8 +22,6 @@ ro:
|
|
|
22
22
|
published_at: Publicat la
|
|
23
23
|
registration_terms: Condiții de înscriere
|
|
24
24
|
registrations_enabled: Înregistrare activată
|
|
25
|
-
scope_id: Domeniu de interes
|
|
26
|
-
scopes_enabled: Domenii activate
|
|
27
25
|
short_description: Descriere scurtă
|
|
28
26
|
show_statistics: Arată statistici
|
|
29
27
|
sign_date: Data semnării
|
|
@@ -68,8 +66,6 @@ ro:
|
|
|
68
66
|
email: E-mail
|
|
69
67
|
name: Nume
|
|
70
68
|
role: Rol
|
|
71
|
-
partner:
|
|
72
|
-
logo: Logo
|
|
73
69
|
errors:
|
|
74
70
|
models:
|
|
75
71
|
conference_registration_invite:
|
|
@@ -98,6 +94,8 @@ ro:
|
|
|
98
94
|
conference_copies:
|
|
99
95
|
new:
|
|
100
96
|
copy: Copiază
|
|
97
|
+
select: Selectați datele pe care doriți să le duplicați
|
|
98
|
+
title: Duplică conferinţa
|
|
101
99
|
conference_publications:
|
|
102
100
|
create:
|
|
103
101
|
error: A apărut o problemă la publicarea acestei conferinţe.
|
|
@@ -161,6 +159,10 @@ ro:
|
|
|
161
159
|
update:
|
|
162
160
|
error: A apărut o eroare la actualizarea conferinței.
|
|
163
161
|
success: Conferință actualizată cu succes.
|
|
162
|
+
conferences_copies:
|
|
163
|
+
create:
|
|
164
|
+
error: A apărut o problemă la duplicarea acestei conferinţe.
|
|
165
|
+
success: Conferință duplicată cu succes.
|
|
164
166
|
media_links:
|
|
165
167
|
create:
|
|
166
168
|
error: A apărut o problemă la crearea unei noi legături media.
|
|
@@ -184,7 +186,6 @@ ro:
|
|
|
184
186
|
attachment_collections: Dosare
|
|
185
187
|
attachment_files: Fișiere
|
|
186
188
|
attachments: Atașamente
|
|
187
|
-
categories: Categorii
|
|
188
189
|
components: Componente
|
|
189
190
|
conference_admins: Administratori ai conferinţei
|
|
190
191
|
conference_invites: Invitații
|
data/config/locales/sk.yml
CHANGED
|
@@ -15,8 +15,6 @@ sk:
|
|
|
15
15
|
participatory_processes_ids: Podobné participatívne procesy
|
|
16
16
|
promoted: Zvýraznené
|
|
17
17
|
published_at: Publikované na
|
|
18
|
-
scope_id: Rozsah
|
|
19
|
-
scopes_enabled: Povolené rozsahy
|
|
20
18
|
short_description: Krátky popis
|
|
21
19
|
show_statistics: Zobrazenie štatistík
|
|
22
20
|
slogan: Slogan
|
|
@@ -53,6 +51,8 @@ sk:
|
|
|
53
51
|
conference_copies:
|
|
54
52
|
new:
|
|
55
53
|
copy: Kopírovať
|
|
54
|
+
select: Označte údaje, ktoré by ste chceli duplikovať
|
|
55
|
+
title: Duplikovať konferenciu
|
|
56
56
|
conference_publications:
|
|
57
57
|
create:
|
|
58
58
|
error: Vyskytol sa problém s publikovaním konferencie.
|
|
@@ -110,6 +110,10 @@ sk:
|
|
|
110
110
|
update:
|
|
111
111
|
error: Vyskytol sa problém s aktualizáciou tejto konferencie.
|
|
112
112
|
success: Konferencia úspešne aktualizovaná.
|
|
113
|
+
conferences_copies:
|
|
114
|
+
create:
|
|
115
|
+
error: Vyskytol sa problém s duplikáciou tejto konferencie.
|
|
116
|
+
success: Konferencia úspešne duplikovaná.
|
|
113
117
|
media_links:
|
|
114
118
|
create:
|
|
115
119
|
error: Pri tvorbe mediálneho odkazu nastala chyba.
|
|
@@ -125,7 +129,6 @@ sk:
|
|
|
125
129
|
attachment_collections: Priečinky
|
|
126
130
|
attachment_files: Súbory
|
|
127
131
|
attachments: Prílohy
|
|
128
|
-
categories: Kategórie
|
|
129
132
|
components: Súčasti
|
|
130
133
|
conference_admins: Administrátori konferencie
|
|
131
134
|
conference_invites: Pozvánky
|
data/config/locales/sv.yml
CHANGED
|
@@ -22,8 +22,6 @@ sv:
|
|
|
22
22
|
published_at: Publicerad
|
|
23
23
|
registration_terms: Villkor för registrering
|
|
24
24
|
registrations_enabled: Registrering aktiverad
|
|
25
|
-
scope_id: Indelning
|
|
26
|
-
scopes_enabled: Aktivera indelningar
|
|
27
25
|
short_description: Kort beskrivning
|
|
28
26
|
show_statistics: Visa statistik
|
|
29
27
|
sign_date: Datum för underskrift
|
|
@@ -48,7 +46,7 @@ sv:
|
|
|
48
46
|
conference_registration_invite:
|
|
49
47
|
email: E-post
|
|
50
48
|
name: Namn
|
|
51
|
-
registration_type_id: Typ av
|
|
49
|
+
registration_type_id: Typ av registrering
|
|
52
50
|
user_id: Användare
|
|
53
51
|
conference_registration_type:
|
|
54
52
|
description: Beskrivning
|
|
@@ -63,20 +61,11 @@ sv:
|
|
|
63
61
|
personal_url: Personlig hemsida
|
|
64
62
|
position: Befattning
|
|
65
63
|
short_bio: Kort beskrivning
|
|
66
|
-
twitter_handle: Användarnamn till X
|
|
67
64
|
user_id: Användare
|
|
68
65
|
conference_user_role:
|
|
69
66
|
email: E-post
|
|
70
67
|
name: Namn
|
|
71
68
|
role: Roll
|
|
72
|
-
partner:
|
|
73
|
-
logo: Logotyp
|
|
74
|
-
errors:
|
|
75
|
-
models:
|
|
76
|
-
conference_registration_invite:
|
|
77
|
-
attributes:
|
|
78
|
-
email:
|
|
79
|
-
already_invited: Det här e-postadressen har redan blivit inbjuden.
|
|
80
69
|
activerecord:
|
|
81
70
|
models:
|
|
82
71
|
decidim/conference:
|
|
@@ -92,16 +81,12 @@ sv:
|
|
|
92
81
|
admin:
|
|
93
82
|
actions:
|
|
94
83
|
confirm: Bekräfta
|
|
95
|
-
new_conference: Ny konferens
|
|
96
|
-
new_conference_user_role: Ny konferensadministratör
|
|
97
|
-
new_media_link: Ny medialänk
|
|
98
|
-
new_partner: Ny partner
|
|
99
|
-
new_registration_type: Ny registreringstyp
|
|
100
|
-
new_speaker: Ny talare
|
|
101
84
|
send_diplomas: Skicka deltagarbevis
|
|
102
85
|
conference_copies:
|
|
103
86
|
new:
|
|
104
87
|
copy: Kopiera
|
|
88
|
+
select: Välj vilka data som du vill duplicera
|
|
89
|
+
title: Duplicera konferens
|
|
105
90
|
conference_publications:
|
|
106
91
|
create:
|
|
107
92
|
error: Det gick inte att publicera konferensen.
|
|
@@ -120,15 +105,12 @@ sv:
|
|
|
120
105
|
destroy:
|
|
121
106
|
success: Talaren har tagits bort.
|
|
122
107
|
edit:
|
|
123
|
-
title: Uppdatera konferenstalare
|
|
124
108
|
update: Uppdatera
|
|
125
109
|
index:
|
|
126
110
|
conference_speakers_title: Talare
|
|
127
111
|
new:
|
|
128
112
|
create: Skapa
|
|
129
|
-
title: Ny konferenstalare
|
|
130
113
|
publish:
|
|
131
|
-
invalid: Det gick inte att publicera talaren.
|
|
132
114
|
success: Konferensens talare har publicerats.
|
|
133
115
|
unpublish:
|
|
134
116
|
invalid: Det gick inte att avpublicera talaren.
|
|
@@ -143,13 +125,9 @@ sv:
|
|
|
143
125
|
destroy:
|
|
144
126
|
success: Konferensadministratören har tagits bort.
|
|
145
127
|
edit:
|
|
146
|
-
title: Uppdatera konferensadministratör
|
|
147
128
|
update: Uppdatera
|
|
148
|
-
index:
|
|
149
|
-
conference_admins_title: Konferensadministratörer
|
|
150
129
|
new:
|
|
151
130
|
create: Skapa
|
|
152
|
-
title: Ny konferensadministratör
|
|
153
131
|
update:
|
|
154
132
|
error: Det gick inte att uppdatera konferensadministratören.
|
|
155
133
|
success: Konferensadministratören har uppdaterats.
|
|
@@ -165,19 +143,19 @@ sv:
|
|
|
165
143
|
title: Allmän information
|
|
166
144
|
index:
|
|
167
145
|
published: Publicerad
|
|
168
|
-
unpublished: Ej publicerad
|
|
169
146
|
new:
|
|
170
147
|
create: Skapa
|
|
171
148
|
title: Konferens
|
|
172
149
|
update:
|
|
173
150
|
error: Det gick inte att uppdatera konferensen.
|
|
174
151
|
success: Konferensen har uppdaterats.
|
|
152
|
+
conferences_copies:
|
|
153
|
+
create:
|
|
154
|
+
error: Det gick inte att duplicera konferensen.
|
|
155
|
+
success: Konferensen har duplicerats.
|
|
175
156
|
media_links:
|
|
176
157
|
create:
|
|
177
158
|
error: Det gick inte att skapa en ny medialänk.
|
|
178
|
-
success: Medielänken har skapats.
|
|
179
|
-
destroy:
|
|
180
|
-
success: Medielänken har raderats.
|
|
181
159
|
edit:
|
|
182
160
|
title: Uppdatera medialänk
|
|
183
161
|
update: Uppdatera
|
|
@@ -195,7 +173,6 @@ sv:
|
|
|
195
173
|
attachment_collections: Mappar
|
|
196
174
|
attachment_files: Filer
|
|
197
175
|
attachments: Bilagor
|
|
198
|
-
categories: Kategorier
|
|
199
176
|
components: Komponenter
|
|
200
177
|
conference_admins: Konferensadministratörer
|
|
201
178
|
conference_invites: Inbjudningar
|
|
@@ -205,7 +182,7 @@ sv:
|
|
|
205
182
|
media_links: Medialänkar
|
|
206
183
|
moderations: Moderering
|
|
207
184
|
partners: Partners
|
|
208
|
-
registration_types: Typer av
|
|
185
|
+
registration_types: Typer av registrering
|
|
209
186
|
registrations: Registreringar
|
|
210
187
|
see_conference: Visa konferens
|
|
211
188
|
user_registrations: Användarregistreringar
|
|
@@ -293,13 +270,21 @@ sv:
|
|
|
293
270
|
update:
|
|
294
271
|
error: Det gick inte att uppdatera en registreringstyp för konferensen.
|
|
295
272
|
success: Registreringstypen till konferensen har uppdaterats.
|
|
273
|
+
taxonomy_filters:
|
|
274
|
+
space_filter_for:
|
|
275
|
+
conferences: Alla konferenser
|
|
296
276
|
titles:
|
|
297
277
|
conferences: Konferenser
|
|
278
|
+
conferences_deleted: Borttagna konferenser
|
|
279
|
+
tooltips:
|
|
280
|
+
deleted_conferences_info: Konferenser kan endast tas bort om statusen är "Opublicerad".
|
|
298
281
|
admin_log:
|
|
299
282
|
conference:
|
|
300
283
|
create: "%{user_name} skapade konferensen %{resource_name}"
|
|
301
284
|
publish: "%{user_name} publicerade konferensen %{resource_name}"
|
|
285
|
+
restore: "%{user_name} återställde konferensen %{resource_name}"
|
|
302
286
|
send_conference_diplomas: "%{user_name} skickade närvarointyg till deltagarna på konferensen %{resource_name}"
|
|
287
|
+
soft_delete: "%{user_name} tog bort konferensen %{resource_name}"
|
|
303
288
|
unpublish: "%{user_name} avpublicerade konferensen %{resource_name}"
|
|
304
289
|
update: "%{user_name} uppdaterade konferensen %{resource_name}"
|
|
305
290
|
update_diploma: "%{user_name} uppdaterade konfigurationen av närvarointygen till konferensen %{resource_name}"
|
|
@@ -370,10 +355,13 @@ sv:
|
|
|
370
355
|
conferences:
|
|
371
356
|
form:
|
|
372
357
|
available_slots_help: Lämna det till 0 om du har obegränsat antal platser.
|
|
358
|
+
define_taxonomy_filters: Vänligen definiera några filter för deltagarutrymmet innan du använder den här inställningen.
|
|
359
|
+
no_taxonomy_filters_found: Inga filter för kategorier hittades.
|
|
373
360
|
registrations_count:
|
|
374
361
|
one: Det har gjorts en registrering.
|
|
375
362
|
other: Det har gjorts %{count} registreringar.
|
|
376
363
|
slug_help_html: 'URL-slugs används till att generera URL:er till konferensen. Använd bara bokstäver, siffror och bindestreck, och de måste börja med en bokstav. Exempel: %{url}'
|
|
364
|
+
taxonomies: Kategorier
|
|
377
365
|
content_blocks:
|
|
378
366
|
highlighted_conferences:
|
|
379
367
|
max_results: Maximalt antal element att visa
|
|
@@ -419,11 +407,11 @@ sv:
|
|
|
419
407
|
conference_registration_mailer:
|
|
420
408
|
confirmation:
|
|
421
409
|
confirmed_html: Din registrering för konferensen <a href="%{url}">%{title}</a> har bekräftats.
|
|
422
|
-
details_1: 'Du är
|
|
410
|
+
details_1: 'Du är registrerad till konferensen med registreringstypen %{registration_type}. Det kostar %{price} och du kan delta i följande arrangemang:'
|
|
423
411
|
details_2: Du hittar konferensens detaljer i bilagan.
|
|
424
412
|
pending_validation:
|
|
425
413
|
confirmation_pending: Du kommer snart att få bekräftelsen
|
|
426
|
-
details: 'Du har
|
|
414
|
+
details: 'Du har registrerat dig med registreringstypen %{registration_type} till en kostnad av %{price} och du kan delta i följande arrangemang:'
|
|
427
415
|
pending_html: Väntar på bekräftelse för din registrering till konferensen <a href="%{url}">%{title}</a>.
|
|
428
416
|
conference_registrations:
|
|
429
417
|
create:
|
|
@@ -462,7 +450,7 @@ sv:
|
|
|
462
450
|
login_as: Du är inloggad som %{name} <%{email}>
|
|
463
451
|
make_conference_registration: Anmäl dig till konferensen
|
|
464
452
|
manage_registration: Hantera anmälan
|
|
465
|
-
register:
|
|
453
|
+
register: Registrering
|
|
466
454
|
sign_in_description: Logga in för att anmäla dig till konferensen
|
|
467
455
|
sign_up_description: Skapa ett konto för att anmäla dig till konferensen
|
|
468
456
|
content_blocks:
|
|
@@ -514,7 +502,7 @@ sv:
|
|
|
514
502
|
index:
|
|
515
503
|
choose_an_option: 'Välj registreringsalternativ:'
|
|
516
504
|
no_registrations: Inga anmälningar
|
|
517
|
-
register:
|
|
505
|
+
register: Registrera
|
|
518
506
|
title: Registreringstyper
|
|
519
507
|
show:
|
|
520
508
|
details: Detaljer
|
|
@@ -522,6 +510,18 @@ sv:
|
|
|
522
510
|
objectives: Mål
|
|
523
511
|
related_assemblies: Relaterade samråd
|
|
524
512
|
related_participatory_processes: Relaterade deltagandeprocesser
|
|
513
|
+
download_your_data:
|
|
514
|
+
help:
|
|
515
|
+
conference_invites:
|
|
516
|
+
accepted_at: Datum då inbjudan till konferensen godkändes
|
|
517
|
+
conference: Konferensen som inbjudan gäller
|
|
518
|
+
confirmed_at: Datum då inbjudan bekräftades
|
|
519
|
+
created_at: Datum då inbjudan skapades
|
|
520
|
+
id: Unikt id för konferensinbjudan
|
|
521
|
+
registration_type: Typ av anmälan till konferensen som skickades
|
|
522
|
+
rejected_at: Datum då inbjudan till konferensen avvisades
|
|
523
|
+
sent_at: Datum då inbjudan till konferensen skickades
|
|
524
|
+
updated_at: Datum då inbjudan senast uppdaterades
|
|
525
525
|
events:
|
|
526
526
|
conferences:
|
|
527
527
|
conference_registration_confirmed:
|
|
@@ -539,7 +539,7 @@ sv:
|
|
|
539
539
|
email_subject: Konferensen "%{resource_title}" har uppdaterats
|
|
540
540
|
notification_title: Konferensen <a href="%{resource_path}">%{resource_title}</a> har uppdaterats.
|
|
541
541
|
registrations_enabled:
|
|
542
|
-
email_intro: 'Konferensen "%{resource_title}" har tar nu emot
|
|
542
|
+
email_intro: 'Konferensen "%{resource_title}" har tar nu emot registreringar. Du kan själv registrera dig på denna sida:'
|
|
543
543
|
email_outro: Du har fått det här meddelandet eftersom du följer konferensen "%{resource_title}". Du kan sluta att följa den via föregående länk.
|
|
544
544
|
email_subject: Konferensen "%{resource_title}" tar nu emot registreringar.
|
|
545
545
|
notification_title: Konferensen <a href="%{resource_path}">%{resource_title}</a> tar nu emot registreringar.
|
|
@@ -559,10 +559,6 @@ sv:
|
|
|
559
559
|
contextual: "<p>En <strong>konferens</strong> är en samling av möten som arrangeras i ett program, med ett antal personer inbjudna som talare, och andra informationsfält typiska för stora kongresser eller sociala evenemang (registrering, förteckning över organisationer som stöder eller sponsrar evenemanget, etc.).</p> <p>Exempel: En konferens kan vara ett relevant evenemang för en organisation och dess medlemmar, eller äga rum som en del av en deltagarprocess eller följa ett samråd.</p>\n"
|
|
560
560
|
page: "<p>En <strong>konferens</strong> är en samling av möten som arrangeras i ett program, med ett antal personer inbjudna som talare, och andra informationsfält typiska för stora kongresser eller sociala evenemang (registrering, förteckning över organisationer som stöder eller sponsrar evenemanget, etc.).</p> <p>Exempel: En konferens kan vara ett relevant evenemang för en organisation och dess medlemmar, eller äga rum som en del av en deltagarprocess eller följa ett samråd.</p>\n"
|
|
561
561
|
title: Vad är konferenser?
|
|
562
|
-
log:
|
|
563
|
-
value_types:
|
|
564
|
-
conference_presenter:
|
|
565
|
-
not_found: 'Konferensen hittades inte i databasen (ID: %{id}).'
|
|
566
562
|
media:
|
|
567
563
|
index:
|
|
568
564
|
description: Länkar om konferensen
|
|
@@ -578,7 +574,7 @@ sv:
|
|
|
578
574
|
layouts:
|
|
579
575
|
decidim:
|
|
580
576
|
conference_hero:
|
|
581
|
-
register:
|
|
577
|
+
register: Registrera
|
|
582
578
|
conferences:
|
|
583
579
|
conference:
|
|
584
580
|
more_info: Mer information
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -15,8 +15,6 @@ tr:
|
|
|
15
15
|
participatory_processes_ids: İlgili katılımcı süreçleri
|
|
16
16
|
promoted: Vurgulanan
|
|
17
17
|
published_at: Yayınlandı
|
|
18
|
-
scope_id: Kapsam
|
|
19
|
-
scopes_enabled: Kapsamlar etkinleştirildi
|
|
20
18
|
short_description: Kısa Açıklama
|
|
21
19
|
show_statistics: İstatistikleri göster
|
|
22
20
|
slogan: Slogan
|
|
@@ -53,6 +51,8 @@ tr:
|
|
|
53
51
|
conference_copies:
|
|
54
52
|
new:
|
|
55
53
|
copy: Kopyala
|
|
54
|
+
select: Çoğaltmak istediğiniz verileri seçin
|
|
55
|
+
title: Konferansı çoğalt
|
|
56
56
|
conference_publications:
|
|
57
57
|
create:
|
|
58
58
|
error: Bu konferansı yayınlarken bir sorun oluştu.
|
|
@@ -110,6 +110,10 @@ tr:
|
|
|
110
110
|
update:
|
|
111
111
|
error: Bu konferans güncellenirken bir hata oluştu.
|
|
112
112
|
success: Konferans başarıyla güncellendi.
|
|
113
|
+
conferences_copies:
|
|
114
|
+
create:
|
|
115
|
+
error: Bu konferansı çoğaltırken bir hata oluştu.
|
|
116
|
+
success: Konferans başarıyla kopyalandı.
|
|
113
117
|
media_links:
|
|
114
118
|
create:
|
|
115
119
|
error: Yeni bir medya bağlantısı oluştururken bir hata oluştu.
|
|
@@ -125,7 +129,6 @@ tr:
|
|
|
125
129
|
attachment_collections: Klasörler
|
|
126
130
|
attachment_files: Dosyalar
|
|
127
131
|
attachments: Ekler
|
|
128
|
-
categories: Kategoriler
|
|
129
132
|
components: Bileşenler
|
|
130
133
|
conference_admins: Konferans yöneticileri
|
|
131
134
|
conference_invites: Davetler
|
data/config/locales/zh-CN.yml
CHANGED
|
@@ -15,8 +15,6 @@ zh-CN:
|
|
|
15
15
|
participatory_processes_ids: 相关的参与进程
|
|
16
16
|
promoted: 高亮
|
|
17
17
|
published_at: 发布于
|
|
18
|
-
scope_id: 范围
|
|
19
|
-
scopes_enabled: 范围已启用
|
|
20
18
|
short_description: 简短描述
|
|
21
19
|
show_statistics: 显示统计
|
|
22
20
|
slogan: 斯洛根文
|
|
@@ -44,6 +42,8 @@ zh-CN:
|
|
|
44
42
|
conference_copies:
|
|
45
43
|
new:
|
|
46
44
|
copy: 复制
|
|
45
|
+
select: 选择要重复的数据
|
|
46
|
+
title: 复制会议
|
|
47
47
|
conference_publications:
|
|
48
48
|
create:
|
|
49
49
|
error: 发布此会议时出现问题。
|
|
@@ -101,6 +101,10 @@ zh-CN:
|
|
|
101
101
|
update:
|
|
102
102
|
error: 更新此会议时出现问题。
|
|
103
103
|
success: 会议已成功更新。
|
|
104
|
+
conferences_copies:
|
|
105
|
+
create:
|
|
106
|
+
error: 复制此会议时出现问题。
|
|
107
|
+
success: 会议成功重复。
|
|
104
108
|
media_links:
|
|
105
109
|
create:
|
|
106
110
|
error: 创建新媒体链接时出现问题。
|
|
@@ -116,7 +120,6 @@ zh-CN:
|
|
|
116
120
|
attachment_collections: 文件夹
|
|
117
121
|
attachment_files: 文件
|
|
118
122
|
attachments: 附件
|
|
119
|
-
categories: 类别管理
|
|
120
123
|
components: 组件
|
|
121
124
|
conference_admins: 会议管理员
|
|
122
125
|
conference_invites: 邀请
|
data/config/locales/zh-TW.yml
CHANGED
|
@@ -22,8 +22,6 @@ zh-TW:
|
|
|
22
22
|
published_at: 發佈於
|
|
23
23
|
registration_terms: 註冊條款
|
|
24
24
|
registrations_enabled: 啟用註冊
|
|
25
|
-
scope_id: 範圍
|
|
26
|
-
scopes_enabled: 啟用範圍
|
|
27
25
|
short_description: 簡短說明
|
|
28
26
|
show_statistics: 顯示統計資料
|
|
29
27
|
sign_date: 簽到日期
|
|
@@ -90,6 +88,8 @@ zh-TW:
|
|
|
90
88
|
conference_copies:
|
|
91
89
|
new:
|
|
92
90
|
copy: 複製
|
|
91
|
+
select: 請選擇您想要複製的資料
|
|
92
|
+
title: 複製研討會
|
|
93
93
|
conference_publications:
|
|
94
94
|
create:
|
|
95
95
|
error: 發布此研討會時出現問題。
|
|
@@ -149,6 +149,10 @@ zh-TW:
|
|
|
149
149
|
update:
|
|
150
150
|
error: 更新此研討會時發生問題。
|
|
151
151
|
success: 研討會更新成功。
|
|
152
|
+
conferences_copies:
|
|
153
|
+
create:
|
|
154
|
+
error: 複製此研討會時發生問題。
|
|
155
|
+
success: 研討會複製成功。
|
|
152
156
|
media_links:
|
|
153
157
|
create:
|
|
154
158
|
error: 創建新的媒體連結時出現問題。
|
|
@@ -164,7 +168,6 @@ zh-TW:
|
|
|
164
168
|
attachment_collections: 資料夾
|
|
165
169
|
attachment_files: 檔案
|
|
166
170
|
attachments: 附件
|
|
167
|
-
categories: 類別
|
|
168
171
|
components: 组件
|
|
169
172
|
conference_admins: 會議管理員
|
|
170
173
|
conference_invites: 邀請
|
|
@@ -7,7 +7,7 @@ class AddFollowableCounterCacheToConferences < ActiveRecord::Migration[5.2]
|
|
|
7
7
|
reversible do |dir|
|
|
8
8
|
dir.up do
|
|
9
9
|
Decidim::Conference.reset_column_information
|
|
10
|
-
Decidim::Conference.find_each do |record|
|
|
10
|
+
Decidim::Conference.unscoped.find_each do |record|
|
|
11
11
|
record.class.reset_counters(record.id, :follows)
|
|
12
12
|
end
|
|
13
13
|
end
|