decidim-conferences 0.29.4 → 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 +10 -3
- data/config/locales/bg.yml +0 -3
- data/config/locales/ca.yml +61 -3
- data/config/locales/cs.yml +61 -3
- data/config/locales/de.yml +61 -3
- data/config/locales/el.yml +0 -3
- data/config/locales/en.yml +61 -3
- data/config/locales/es-MX.yml +61 -3
- data/config/locales/es-PY.yml +61 -3
- data/config/locales/es.yml +61 -3
- data/config/locales/eu.yml +77 -19
- data/config/locales/fi-plain.yml +61 -3
- data/config/locales/fi.yml +61 -3
- data/config/locales/fr-CA.yml +20 -3
- data/config/locales/fr.yml +20 -3
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -3
- data/config/locales/hu.yml +0 -3
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/it.yml +0 -3
- data/config/locales/ja.yml +61 -3
- data/config/locales/lb.yml +0 -3
- data/config/locales/lt.yml +0 -3
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -3
- data/config/locales/no.yml +0 -3
- data/config/locales/pl.yml +0 -3
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -3
- data/config/locales/ro-RO.yml +0 -5
- data/config/locales/sk.yml +0 -3
- data/config/locales/sv.yml +31 -41
- data/config/locales/tr-TR.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -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/hu.yml
CHANGED
@@ -22,8 +22,6 @@ hu:
|
|
22
22
|
published_at: Megjelent a
|
23
23
|
registration_terms: Regisztrációs feltételek
|
24
24
|
registrations_enabled: Regisztráció engedélyezve
|
25
|
-
scope_id: terület
|
26
|
-
scopes_enabled: A hatókör engedélyezett
|
27
25
|
short_description: Rövid leírás
|
28
26
|
show_statistics: Statisztikák megjelenítése
|
29
27
|
signature: Aláírás
|
@@ -180,7 +178,6 @@ hu:
|
|
180
178
|
attachment_collections: mappák
|
181
179
|
attachment_files: Files
|
182
180
|
attachments: Mellékletek
|
183
|
-
categories: Kategóriák
|
184
181
|
components: Alkatrészek
|
185
182
|
conference_admins: Konferencia adminisztrátorok
|
186
183
|
conference_invites: Meghívottak
|
data/config/locales/id-ID.yml
CHANGED
@@ -15,8 +15,6 @@ id:
|
|
15
15
|
participatory_processes_ids: Proses Partisipatif Terkait
|
16
16
|
promoted: Dipromosikan
|
17
17
|
published_at: Diterbitkan di
|
18
|
-
scope_id: Cakupan
|
19
|
-
scopes_enabled: Lingkup diaktifkan
|
20
18
|
short_description: Deskripsi Singkat
|
21
19
|
show_statistics: Tampilkan statistik
|
22
20
|
slogan: Slogan
|
@@ -122,7 +120,6 @@ id:
|
|
122
120
|
attachment_collections: Folder
|
123
121
|
attachment_files: File
|
124
122
|
attachments: Lampiran
|
125
|
-
categories: Kategori
|
126
123
|
components: Komponen
|
127
124
|
conference_admins: Admin konferensi
|
128
125
|
conference_invites: Undangan
|
data/config/locales/it.yml
CHANGED
@@ -22,8 +22,6 @@ it:
|
|
22
22
|
published_at: Pubblicato il
|
23
23
|
registration_terms: Termini di registrazione
|
24
24
|
registrations_enabled: Registrazioni abilitate
|
25
|
-
scope_id: Obiettivo
|
26
|
-
scopes_enabled: Ambiti abilitati
|
27
25
|
short_description: Breve descrizione
|
28
26
|
show_statistics: Mostra statistiche
|
29
27
|
sign_date: Firmato il
|
@@ -159,7 +157,6 @@ it:
|
|
159
157
|
attachment_collections: Cartelle
|
160
158
|
attachment_files: Files
|
161
159
|
attachments: Allegati
|
162
|
-
categories: Categorie
|
163
160
|
components: Componenti
|
164
161
|
conference_admins: Amministratori della conferenza
|
165
162
|
conference_invites: Inviti
|
data/config/locales/ja.yml
CHANGED
@@ -22,8 +22,6 @@ ja:
|
|
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: 署名日
|
@@ -89,6 +87,7 @@ ja:
|
|
89
87
|
admin:
|
90
88
|
actions:
|
91
89
|
confirm: 確認する
|
90
|
+
confirm_delete_conference: このカンファレンスを削除してもよろしいですか?気が変わった場合は、後で復元できます。
|
92
91
|
new_conference: 新しいカンファレンス
|
93
92
|
new_conference_user_role: 新しいカンファレンス管理者
|
94
93
|
new_media_link: 新しいメディア リンク
|
@@ -96,6 +95,7 @@ ja:
|
|
96
95
|
new_registration_type: 新規登録種別
|
97
96
|
new_speaker: 新しいスピーカー
|
98
97
|
send_diplomas: 出席証明書を送信
|
98
|
+
view_deleted_conferences: 削除されたカンファレンスを表示
|
99
99
|
conference_copies:
|
100
100
|
new:
|
101
101
|
copy: コピー
|
@@ -165,6 +165,8 @@ ja:
|
|
165
165
|
index:
|
166
166
|
published: 公開済み
|
167
167
|
unpublished: 未公開
|
168
|
+
manage_trash:
|
169
|
+
title: 削除されたカンファレンス
|
168
170
|
new:
|
169
171
|
create: 作成
|
170
172
|
title: カンファレンス
|
@@ -198,7 +200,6 @@ ja:
|
|
198
200
|
attachment_collections: フォルダ
|
199
201
|
attachment_files: ファイル
|
200
202
|
attachments: 添付ファイル
|
201
|
-
categories: カテゴリ
|
202
203
|
components: コンポーネント
|
203
204
|
conference_admins: カンファレンス管理者
|
204
205
|
conference_invites: 招待
|
@@ -296,13 +297,21 @@ ja:
|
|
296
297
|
update:
|
297
298
|
error: このカンファレンスの登録種別の更新に問題がありました。
|
298
299
|
success: カンファレンスの登録種別を更新しました。
|
300
|
+
taxonomy_filters:
|
301
|
+
space_filter_for:
|
302
|
+
conferences: すべてのカンファレンス
|
299
303
|
titles:
|
300
304
|
conferences: カンファレンス
|
305
|
+
conferences_deleted: 削除されたカンファレンス
|
306
|
+
tooltips:
|
307
|
+
deleted_conferences_info: カンファレンスは、ステータスが "未公開" の場合にのみ削除できます。
|
301
308
|
admin_log:
|
302
309
|
conference:
|
303
310
|
create: "%{user_name} が %{resource_name} カンファレンスを作成しました"
|
304
311
|
publish: "%{user_name} が %{resource_name} カンファレンスを公開しました"
|
312
|
+
restore: "%{user_name} が %{resource_name} カンファレンスを復元しました"
|
305
313
|
send_conference_diplomas: "%{user_name} が %{resource_name} カンファレンスに出席証明書を送信しました"
|
314
|
+
soft_delete: "%{user_name} が %{resource_name} カンファレンスをゴミ箱に移動しました"
|
306
315
|
unpublish: "%{user_name} が %{resource_name} カンファレンスを非公開にしました"
|
307
316
|
update: "%{user_name} が %{resource_name} のカンファレンスを更新しました"
|
308
317
|
update_diploma: "%{user_name} が %{resource_name} カンファレンスの出席設定証明書を更新しました"
|
@@ -373,9 +382,12 @@ ja:
|
|
373
382
|
conferences:
|
374
383
|
form:
|
375
384
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
385
|
+
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
386
|
+
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
376
387
|
registrations_count:
|
377
388
|
other: '%{count} 件の登録がありました。'
|
378
389
|
slug_help_html: 'URLスラグは、このカンファレンスを指すURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
390
|
+
taxonomies: タクソノミー
|
379
391
|
content_blocks:
|
380
392
|
highlighted_conferences:
|
381
393
|
max_results: 表示する要素の最大数
|
@@ -523,6 +535,25 @@ ja:
|
|
523
535
|
objectives: 目的
|
524
536
|
related_assemblies: 関連する参加スペース
|
525
537
|
related_participatory_processes: 関連する参加型プロセス
|
538
|
+
download_your_data:
|
539
|
+
help:
|
540
|
+
conference_invites:
|
541
|
+
accepted_at: カンファレンスへの招待が承認された日時
|
542
|
+
conference: この招待状が送信されたカンファレンス
|
543
|
+
confirmed_at: この招待の確認日時
|
544
|
+
created_at: この招待の作成日時
|
545
|
+
id: カンファレンス招待の固有ID
|
546
|
+
registration_type: 送信されたカンファレンス参加登録の種別
|
547
|
+
rejected_at: カンファレンスへの招待が却下された日時
|
548
|
+
sent_at: カンファレンスへの招待が送信された日時
|
549
|
+
updated_at: この招待の最終更新日時
|
550
|
+
conference_registrations:
|
551
|
+
conference: 所属するカンファレンス
|
552
|
+
confirmed_at: この登録の確認日時
|
553
|
+
created_at: この登録の作成日時
|
554
|
+
id: カンファレンス参加登録の固有ID
|
555
|
+
registration_type: これが属する参加登録の種別
|
556
|
+
updated_at: この登録の最終更新日時
|
526
557
|
events:
|
527
558
|
conferences:
|
528
559
|
conference_registration_confirmed:
|
@@ -570,6 +601,33 @@ ja:
|
|
570
601
|
title: メディアとリンク
|
571
602
|
menu:
|
572
603
|
conferences: カンファレンス
|
604
|
+
open_data:
|
605
|
+
help:
|
606
|
+
conferences:
|
607
|
+
created_at: このスペースが作成された日時
|
608
|
+
decidim_scope_id: カンファレンスのスコープ
|
609
|
+
description: カンファレンスの詳しい説明
|
610
|
+
end_date: カンファレンスの終了日時
|
611
|
+
follows_count: このスペースをフォローしているユーザー数
|
612
|
+
hashtag: Twitter/Xで使用されるカンファレンスハッシュタグ
|
613
|
+
id: このカンファレンスの固有ID
|
614
|
+
location: カンファレンスの場所. このカンファレンスが開催されるところ.
|
615
|
+
objectives: この感ファンレスの目的。開催する目標は何か。
|
616
|
+
promoted: カンファレンスがプロモートされるかどうか
|
617
|
+
published_at: このスペースが公開された日時
|
618
|
+
reference: スペースのユニークな参照
|
619
|
+
remote_banner_image_url: カンファレンスバナー画像のURL
|
620
|
+
remote_hero_image_url: カンファレンスのヒーロー画像のURL
|
621
|
+
scope: カンファレンスのスコープ
|
622
|
+
scopes_enabled: スコープが有効かどうか
|
623
|
+
short_description: カンファレンスの簡単な説明
|
624
|
+
slogan: このカンファレンスのスローガン
|
625
|
+
slug: カンファレンスのスラグ(識別目的、URLに使用)
|
626
|
+
start_date: カンファレンスの開始日時
|
627
|
+
taxonomies: このカンファレンスのタクソノミー
|
628
|
+
title: カンファレンスのタイトル
|
629
|
+
updated_at: このスペースの最終更新日時
|
630
|
+
url: スペースのURL
|
573
631
|
statistics:
|
574
632
|
conferences_count: カンファレンス
|
575
633
|
devise:
|
data/config/locales/lb.yml
CHANGED
@@ -22,8 +22,6 @@ lb:
|
|
22
22
|
published_at: Veröffentlicht unter
|
23
23
|
registration_terms: Registrierungsbedingungen
|
24
24
|
registrations_enabled: Registrierungen aktiviert
|
25
|
-
scope_id: Umfang
|
26
|
-
scopes_enabled: Bereiche aktiviert
|
27
25
|
short_description: Kurze Beschreibung
|
28
26
|
show_statistics: Zeige Statistiken
|
29
27
|
sign_date: Datum der Unterschrift
|
@@ -96,7 +94,6 @@ lb:
|
|
96
94
|
attachment_collections: Ordner
|
97
95
|
attachment_files: Dateien
|
98
96
|
attachments: Anhänge
|
99
|
-
categories: Kategorien
|
100
97
|
components: Komponenten
|
101
98
|
conference_admins: Konferenzadministratoren
|
102
99
|
conference_invites: Lädt ein
|
data/config/locales/lt.yml
CHANGED
@@ -22,8 +22,6 @@ lt:
|
|
22
22
|
published_at: Publikuota
|
23
23
|
registration_terms: Registracijos sąlygos
|
24
24
|
registrations_enabled: Registracijos įjungtos
|
25
|
-
scope_id: Apimtis
|
26
|
-
scopes_enabled: Sritys įjungtos
|
27
25
|
short_description: Trumpas aprašymas
|
28
26
|
show_statistics: Rodyti statistiką
|
29
27
|
sign_date: Pasirašymo data
|
@@ -179,7 +177,6 @@ lt:
|
|
179
177
|
attachment_collections: Aplankai
|
180
178
|
attachment_files: Dokumentai
|
181
179
|
attachments: Priedai
|
182
|
-
categories: Kategorijos
|
183
180
|
components: Komponentai
|
184
181
|
conference_admins: Konferencijos administratoriai
|
185
182
|
conference_invites: Pakvietimai
|
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
|
@@ -128,7 +126,6 @@ lv:
|
|
128
126
|
attachment_collections: Mapes
|
129
127
|
attachment_files: Faili
|
130
128
|
attachments: Pielikumi
|
131
|
-
categories: Kategorijas
|
132
129
|
components: Komponenti
|
133
130
|
conference_admins: Konferences administratori
|
134
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
|
@@ -158,7 +156,6 @@ nl:
|
|
158
156
|
attachment_collections: Mappen
|
159
157
|
attachment_files: Bestanden
|
160
158
|
attachments: Bijlagen
|
161
|
-
categories: Categorieën
|
162
159
|
components: Componenten
|
163
160
|
conference_admins: Conferentiebeheerders
|
164
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
|
@@ -158,7 +156,6 @@
|
|
158
156
|
attachment_collections: Mapper
|
159
157
|
attachment_files: Filer
|
160
158
|
attachments: Vedlegg
|
161
|
-
categories: Kategorier
|
162
159
|
components: Komponenter
|
163
160
|
conference_admins: Konferanse administratorer
|
164
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
|
@@ -193,7 +191,6 @@ pl:
|
|
193
191
|
attachment_collections: Foldery
|
194
192
|
attachment_files: Pliki
|
195
193
|
attachments: Załączniki
|
196
|
-
categories: Kategorie
|
197
194
|
components: Komponenty
|
198
195
|
conference_admins: Administratorzy konferencji
|
199
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
|
@@ -186,7 +184,6 @@ pt-BR:
|
|
186
184
|
attachment_collections: Pastas
|
187
185
|
attachment_files: arquivos
|
188
186
|
attachments: Anexos
|
189
|
-
categories: Categorias
|
190
187
|
components: Componentes
|
191
188
|
conference_admins: Administradores da conferência
|
192
189
|
conference_invites: Convites
|
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
|
@@ -158,7 +156,6 @@ pt:
|
|
158
156
|
attachment_collections: Pastas
|
159
157
|
attachment_files: Ficheiros
|
160
158
|
attachments: Anexos
|
161
|
-
categories: Categorias
|
162
159
|
components: Componentes
|
163
160
|
conference_admins: Administradores da conferência
|
164
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:
|
@@ -190,7 +186,6 @@ ro:
|
|
190
186
|
attachment_collections: Dosare
|
191
187
|
attachment_files: Fișiere
|
192
188
|
attachments: Atașamente
|
193
|
-
categories: Categorii
|
194
189
|
components: Componente
|
195
190
|
conference_admins: Administratori ai conferinţei
|
196
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
|
@@ -131,7 +129,6 @@ sk:
|
|
131
129
|
attachment_collections: Priečinky
|
132
130
|
attachment_files: Súbory
|
133
131
|
attachments: Prílohy
|
134
|
-
categories: Kategórie
|
135
132
|
components: Súčasti
|
136
133
|
conference_admins: Administrátori konferencie
|
137
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,12 +81,6 @@ 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:
|
@@ -122,15 +105,12 @@ sv:
|
|
122
105
|
destroy:
|
123
106
|
success: Talaren har tagits bort.
|
124
107
|
edit:
|
125
|
-
title: Uppdatera konferenstalare
|
126
108
|
update: Uppdatera
|
127
109
|
index:
|
128
110
|
conference_speakers_title: Talare
|
129
111
|
new:
|
130
112
|
create: Skapa
|
131
|
-
title: Ny konferenstalare
|
132
113
|
publish:
|
133
|
-
invalid: Det gick inte att publicera talaren.
|
134
114
|
success: Konferensens talare har publicerats.
|
135
115
|
unpublish:
|
136
116
|
invalid: Det gick inte att avpublicera talaren.
|
@@ -145,13 +125,9 @@ sv:
|
|
145
125
|
destroy:
|
146
126
|
success: Konferensadministratören har tagits bort.
|
147
127
|
edit:
|
148
|
-
title: Uppdatera konferensadministratör
|
149
128
|
update: Uppdatera
|
150
|
-
index:
|
151
|
-
conference_admins_title: Konferensadministratörer
|
152
129
|
new:
|
153
130
|
create: Skapa
|
154
|
-
title: Ny konferensadministratör
|
155
131
|
update:
|
156
132
|
error: Det gick inte att uppdatera konferensadministratören.
|
157
133
|
success: Konferensadministratören har uppdaterats.
|
@@ -167,7 +143,6 @@ sv:
|
|
167
143
|
title: Allmän information
|
168
144
|
index:
|
169
145
|
published: Publicerad
|
170
|
-
unpublished: Ej publicerad
|
171
146
|
new:
|
172
147
|
create: Skapa
|
173
148
|
title: Konferens
|
@@ -181,9 +156,6 @@ sv:
|
|
181
156
|
media_links:
|
182
157
|
create:
|
183
158
|
error: Det gick inte att skapa en ny medialänk.
|
184
|
-
success: Medielänken har skapats.
|
185
|
-
destroy:
|
186
|
-
success: Medielänken har raderats.
|
187
159
|
edit:
|
188
160
|
title: Uppdatera medialänk
|
189
161
|
update: Uppdatera
|
@@ -201,7 +173,6 @@ sv:
|
|
201
173
|
attachment_collections: Mappar
|
202
174
|
attachment_files: Filer
|
203
175
|
attachments: Bilagor
|
204
|
-
categories: Kategorier
|
205
176
|
components: Komponenter
|
206
177
|
conference_admins: Konferensadministratörer
|
207
178
|
conference_invites: Inbjudningar
|
@@ -211,7 +182,7 @@ sv:
|
|
211
182
|
media_links: Medialänkar
|
212
183
|
moderations: Moderering
|
213
184
|
partners: Partners
|
214
|
-
registration_types: Typer av
|
185
|
+
registration_types: Typer av registrering
|
215
186
|
registrations: Registreringar
|
216
187
|
see_conference: Visa konferens
|
217
188
|
user_registrations: Användarregistreringar
|
@@ -299,13 +270,21 @@ sv:
|
|
299
270
|
update:
|
300
271
|
error: Det gick inte att uppdatera en registreringstyp för konferensen.
|
301
272
|
success: Registreringstypen till konferensen har uppdaterats.
|
273
|
+
taxonomy_filters:
|
274
|
+
space_filter_for:
|
275
|
+
conferences: Alla konferenser
|
302
276
|
titles:
|
303
277
|
conferences: Konferenser
|
278
|
+
conferences_deleted: Borttagna konferenser
|
279
|
+
tooltips:
|
280
|
+
deleted_conferences_info: Konferenser kan endast tas bort om statusen är "Opublicerad".
|
304
281
|
admin_log:
|
305
282
|
conference:
|
306
283
|
create: "%{user_name} skapade konferensen %{resource_name}"
|
307
284
|
publish: "%{user_name} publicerade konferensen %{resource_name}"
|
285
|
+
restore: "%{user_name} återställde konferensen %{resource_name}"
|
308
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}"
|
309
288
|
unpublish: "%{user_name} avpublicerade konferensen %{resource_name}"
|
310
289
|
update: "%{user_name} uppdaterade konferensen %{resource_name}"
|
311
290
|
update_diploma: "%{user_name} uppdaterade konfigurationen av närvarointygen till konferensen %{resource_name}"
|
@@ -376,10 +355,13 @@ sv:
|
|
376
355
|
conferences:
|
377
356
|
form:
|
378
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.
|
379
360
|
registrations_count:
|
380
361
|
one: Det har gjorts en registrering.
|
381
362
|
other: Det har gjorts %{count} registreringar.
|
382
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
|
383
365
|
content_blocks:
|
384
366
|
highlighted_conferences:
|
385
367
|
max_results: Maximalt antal element att visa
|
@@ -425,11 +407,11 @@ sv:
|
|
425
407
|
conference_registration_mailer:
|
426
408
|
confirmation:
|
427
409
|
confirmed_html: Din registrering för konferensen <a href="%{url}">%{title}</a> har bekräftats.
|
428
|
-
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:'
|
429
411
|
details_2: Du hittar konferensens detaljer i bilagan.
|
430
412
|
pending_validation:
|
431
413
|
confirmation_pending: Du kommer snart att få bekräftelsen
|
432
|
-
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:'
|
433
415
|
pending_html: Väntar på bekräftelse för din registrering till konferensen <a href="%{url}">%{title}</a>.
|
434
416
|
conference_registrations:
|
435
417
|
create:
|
@@ -468,7 +450,7 @@ sv:
|
|
468
450
|
login_as: Du är inloggad som %{name} <%{email}>
|
469
451
|
make_conference_registration: Anmäl dig till konferensen
|
470
452
|
manage_registration: Hantera anmälan
|
471
|
-
register:
|
453
|
+
register: Registrering
|
472
454
|
sign_in_description: Logga in för att anmäla dig till konferensen
|
473
455
|
sign_up_description: Skapa ett konto för att anmäla dig till konferensen
|
474
456
|
content_blocks:
|
@@ -520,7 +502,7 @@ sv:
|
|
520
502
|
index:
|
521
503
|
choose_an_option: 'Välj registreringsalternativ:'
|
522
504
|
no_registrations: Inga anmälningar
|
523
|
-
register:
|
505
|
+
register: Registrera
|
524
506
|
title: Registreringstyper
|
525
507
|
show:
|
526
508
|
details: Detaljer
|
@@ -528,6 +510,18 @@ sv:
|
|
528
510
|
objectives: Mål
|
529
511
|
related_assemblies: Relaterade samråd
|
530
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
|
531
525
|
events:
|
532
526
|
conferences:
|
533
527
|
conference_registration_confirmed:
|
@@ -545,7 +539,7 @@ sv:
|
|
545
539
|
email_subject: Konferensen "%{resource_title}" har uppdaterats
|
546
540
|
notification_title: Konferensen <a href="%{resource_path}">%{resource_title}</a> har uppdaterats.
|
547
541
|
registrations_enabled:
|
548
|
-
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:'
|
549
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.
|
550
544
|
email_subject: Konferensen "%{resource_title}" tar nu emot registreringar.
|
551
545
|
notification_title: Konferensen <a href="%{resource_path}">%{resource_title}</a> tar nu emot registreringar.
|
@@ -565,10 +559,6 @@ sv:
|
|
565
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"
|
566
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"
|
567
561
|
title: Vad är konferenser?
|
568
|
-
log:
|
569
|
-
value_types:
|
570
|
-
conference_presenter:
|
571
|
-
not_found: 'Konferensen hittades inte i databasen (ID: %{id}).'
|
572
562
|
media:
|
573
563
|
index:
|
574
564
|
description: Länkar om konferensen
|
@@ -584,7 +574,7 @@ sv:
|
|
584
574
|
layouts:
|
585
575
|
decidim:
|
586
576
|
conference_hero:
|
587
|
-
register:
|
577
|
+
register: Registrera
|
588
578
|
conferences:
|
589
579
|
conference:
|
590
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
|
@@ -131,7 +129,6 @@ tr:
|
|
131
129
|
attachment_collections: Klasörler
|
132
130
|
attachment_files: Dosyalar
|
133
131
|
attachments: Ekler
|
134
|
-
categories: Kategoriler
|
135
132
|
components: Bileşenler
|
136
133
|
conference_admins: Konferans yöneticileri
|
137
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: 斯洛根文
|
@@ -122,7 +120,6 @@ zh-CN:
|
|
122
120
|
attachment_collections: 文件夹
|
123
121
|
attachment_files: 文件
|
124
122
|
attachments: 附件
|
125
|
-
categories: 类别管理
|
126
123
|
components: 组件
|
127
124
|
conference_admins: 会议管理员
|
128
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: 簽到日期
|
@@ -170,7 +168,6 @@ zh-TW:
|
|
170
168
|
attachment_collections: 資料夾
|
171
169
|
attachment_files: 檔案
|
172
170
|
attachments: 附件
|
173
|
-
categories: 類別
|
174
171
|
components: 组件
|
175
172
|
conference_admins: 會議管理員
|
176
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
|