decidim-conferences 0.29.2 → 0.30.0.rc2
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/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 -4
- 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 +12 -3
- data/config/locales/bg.yml +0 -3
- data/config/locales/ca.yml +63 -3
- data/config/locales/cs.yml +63 -3
- data/config/locales/de.yml +63 -3
- data/config/locales/el.yml +0 -3
- data/config/locales/en.yml +63 -3
- data/config/locales/es-MX.yml +63 -3
- data/config/locales/es-PY.yml +63 -3
- data/config/locales/es.yml +63 -3
- data/config/locales/eu.yml +63 -3
- data/config/locales/fi-plain.yml +63 -3
- data/config/locales/fi.yml +63 -3
- data/config/locales/fr-CA.yml +22 -3
- data/config/locales/fr.yml +22 -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 +65 -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 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sv.yml +116 -3
- 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 -28
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
data/config/locales/fr.yml
CHANGED
@@ -22,8 +22,6 @@ fr:
|
|
22
22
|
published_at: Publié à
|
23
23
|
registration_terms: Conditions d’inscription
|
24
24
|
registrations_enabled: Inscriptions ouvertes
|
25
|
-
scope_id: Périmètre
|
26
|
-
scopes_enabled: Secteurs activés
|
27
25
|
short_description: Brève description
|
28
26
|
show_statistics: Montrer les statistiques
|
29
27
|
sign_date: Date de signature
|
@@ -69,6 +67,8 @@ fr:
|
|
69
67
|
email: Email
|
70
68
|
name: Nom
|
71
69
|
role: Rôle
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ fr:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmer
|
93
|
+
confirm_delete_conference: Êtes-vous sûr(e) de vouloir supprimer cette conférence ? Si vous changez d'avis, vous pourrez la restaurer plus tard.
|
93
94
|
new_conference: Nouvelle conférence
|
94
95
|
new_conference_user_role: Nouvel administrateur de conférence
|
95
96
|
new_media_link: Nouveau lien média
|
@@ -97,6 +98,7 @@ fr:
|
|
97
98
|
new_registration_type: Nouveau type d'inscription
|
98
99
|
new_speaker: Nouveau conférencier
|
99
100
|
send_diplomas: Envoyer des certificats de présence
|
101
|
+
view_deleted_conferences: Voir les conférences supprimées
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Copier
|
@@ -166,6 +168,8 @@ fr:
|
|
166
168
|
index:
|
167
169
|
published: Publié
|
168
170
|
unpublished: Non publié
|
171
|
+
manage_trash:
|
172
|
+
title: Conférences supprimées
|
169
173
|
new:
|
170
174
|
create: Créer
|
171
175
|
title: Conférence
|
@@ -199,7 +203,6 @@ fr:
|
|
199
203
|
attachment_collections: Dossiers
|
200
204
|
attachment_files: Fichiers
|
201
205
|
attachments: Pièces jointes
|
202
|
-
categories: Catégories
|
203
206
|
components: Fonctionnalités
|
204
207
|
conference_admins: Administrateurs de conférence
|
205
208
|
conference_invites: Invitations
|
@@ -297,8 +300,14 @@ fr:
|
|
297
300
|
update:
|
298
301
|
error: Une erreur s'est produite lors de la mise à jour d'un type d'inscription pour cette conférence.
|
299
302
|
success: Le type d'inscription a été mis à jour avec succès pour cette conférence.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Toutes les conférences
|
300
306
|
titles:
|
301
307
|
conferences: Conférences
|
308
|
+
conferences_deleted: Conférences supprimées
|
309
|
+
tooltips:
|
310
|
+
deleted_conferences_info: Les conférences ne peuvent être supprimées que si leur statut est "non publiée".
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} créé la %{resource_name} conférence"
|
@@ -526,6 +535,16 @@ fr:
|
|
526
535
|
objectives: Objectifs
|
527
536
|
related_assemblies: Assemblées connexes
|
528
537
|
related_participatory_processes: Concertations associées
|
538
|
+
download_your_data:
|
539
|
+
help:
|
540
|
+
conference_invites:
|
541
|
+
confirmed_at: La date à laquelle cette invitation a été confirmée
|
542
|
+
created_at: La date à laquelle cette invitation a été créée
|
543
|
+
updated_at: La date à laquelle cette invitation a été mise à jour pour la dernière fois
|
544
|
+
conference_registrations:
|
545
|
+
confirmed_at: La date à laquelle cette inscription a été confirmée
|
546
|
+
created_at: La date à laquelle cette inscription a été créée
|
547
|
+
updated_at: La date à laquelle cette inscription a été mise à jour pour la dernière fois
|
529
548
|
events:
|
530
549
|
conferences:
|
531
550
|
conference_registration_confirmed:
|
data/config/locales/ga-IE.yml
CHANGED
@@ -9,7 +9,6 @@ ga:
|
|
9
9
|
hashtag: Haischlib
|
10
10
|
location: Suíomh
|
11
11
|
participatory_processes_ids: Próisis Rannpháirteacha Ceangailte
|
12
|
-
scope_id: Scóip
|
13
12
|
slogan: Mana
|
14
13
|
slug: Píosa URL
|
15
14
|
title: Teideal
|
@@ -67,7 +66,6 @@ ga:
|
|
67
66
|
attachment_collections: Fillteáin
|
68
67
|
attachment_files: Comhaid
|
69
68
|
attachments: Ceangaltáin
|
70
|
-
categories: Catagóirí
|
71
69
|
conference_invites: Cuirí
|
72
70
|
conference_speakers: Cainteoirí
|
73
71
|
partners: Comhpháirtithe
|
data/config/locales/gl.yml
CHANGED
@@ -22,8 +22,6 @@ gl:
|
|
22
22
|
published_at: Publicado en
|
23
23
|
registration_terms: Condicións do rexistro
|
24
24
|
registrations_enabled: Rexistro habilitado
|
25
|
-
scope_id: Alcance
|
26
|
-
scopes_enabled: Ámbitos habilitados
|
27
25
|
short_description: Descrición curta
|
28
26
|
show_statistics: Amosar estatísticas
|
29
27
|
sign_date: Data de sinatura
|
@@ -158,7 +156,6 @@ gl:
|
|
158
156
|
attachment_collections: Carpetas
|
159
157
|
attachment_files: Arquivos
|
160
158
|
attachments: Anexos
|
161
|
-
categories: Categorías
|
162
159
|
components: Compoñentes
|
163
160
|
conference_admins: Administradores de conferencias
|
164
161
|
conference_invites: Invitacións
|
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: 署名日
|
@@ -69,6 +67,8 @@ ja:
|
|
69
67
|
email: Eメールアドレス
|
70
68
|
name: 名前
|
71
69
|
role: ロール
|
70
|
+
partner:
|
71
|
+
logo: ロゴ
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -87,6 +87,7 @@ ja:
|
|
87
87
|
admin:
|
88
88
|
actions:
|
89
89
|
confirm: 確認する
|
90
|
+
confirm_delete_conference: このカンファレンスを削除してもよろしいですか?気が変わった場合は、後で復元できます。
|
90
91
|
new_conference: 新しいカンファレンス
|
91
92
|
new_conference_user_role: 新しいカンファレンス管理者
|
92
93
|
new_media_link: 新しいメディア リンク
|
@@ -94,6 +95,7 @@ ja:
|
|
94
95
|
new_registration_type: 新規登録種別
|
95
96
|
new_speaker: 新しいスピーカー
|
96
97
|
send_diplomas: 出席証明書を送信
|
98
|
+
view_deleted_conferences: 削除されたカンファレンスを表示
|
97
99
|
conference_copies:
|
98
100
|
new:
|
99
101
|
copy: コピー
|
@@ -163,6 +165,8 @@ ja:
|
|
163
165
|
index:
|
164
166
|
published: 公開済み
|
165
167
|
unpublished: 未公開
|
168
|
+
manage_trash:
|
169
|
+
title: 削除されたカンファレンス
|
166
170
|
new:
|
167
171
|
create: 作成
|
168
172
|
title: カンファレンス
|
@@ -196,7 +200,6 @@ ja:
|
|
196
200
|
attachment_collections: フォルダ
|
197
201
|
attachment_files: ファイル
|
198
202
|
attachments: 添付ファイル
|
199
|
-
categories: カテゴリ
|
200
203
|
components: コンポーネント
|
201
204
|
conference_admins: カンファレンス管理者
|
202
205
|
conference_invites: 招待
|
@@ -294,13 +297,21 @@ ja:
|
|
294
297
|
update:
|
295
298
|
error: このカンファレンスの登録種別の更新に問題がありました。
|
296
299
|
success: カンファレンスの登録種別を更新しました。
|
300
|
+
taxonomy_filters:
|
301
|
+
space_filter_for:
|
302
|
+
conferences: すべてのカンファレンス
|
297
303
|
titles:
|
298
304
|
conferences: カンファレンス
|
305
|
+
conferences_deleted: 削除されたカンファレンス
|
306
|
+
tooltips:
|
307
|
+
deleted_conferences_info: カンファレンスは、ステータスが "未公開" の場合にのみ削除できます。
|
299
308
|
admin_log:
|
300
309
|
conference:
|
301
310
|
create: "%{user_name} が %{resource_name} カンファレンスを作成しました"
|
302
311
|
publish: "%{user_name} が %{resource_name} カンファレンスを公開しました"
|
312
|
+
restore: "%{user_name} が %{resource_name} カンファレンスを復元しました"
|
303
313
|
send_conference_diplomas: "%{user_name} が %{resource_name} カンファレンスに出席証明書を送信しました"
|
314
|
+
soft_delete: "%{user_name} が %{resource_name} カンファレンスをゴミ箱に移動しました"
|
304
315
|
unpublish: "%{user_name} が %{resource_name} カンファレンスを非公開にしました"
|
305
316
|
update: "%{user_name} が %{resource_name} のカンファレンスを更新しました"
|
306
317
|
update_diploma: "%{user_name} が %{resource_name} カンファレンスの出席設定証明書を更新しました"
|
@@ -371,15 +382,19 @@ ja:
|
|
371
382
|
conferences:
|
372
383
|
form:
|
373
384
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
385
|
+
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
386
|
+
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
374
387
|
registrations_count:
|
375
388
|
other: '%{count} 件の登録がありました。'
|
376
389
|
slug_help_html: 'URLスラグは、このカンファレンスを指すURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
390
|
+
taxonomies: タクソノミー
|
377
391
|
content_blocks:
|
378
392
|
highlighted_conferences:
|
379
393
|
max_results: 表示する要素の最大数
|
380
394
|
diplomas:
|
381
395
|
edit:
|
382
396
|
save: 保存
|
397
|
+
title: 参加証明書
|
383
398
|
invite_join_conference_mailer:
|
384
399
|
invite:
|
385
400
|
decline: 招待を拒否する '%{conference_title}'
|
@@ -399,6 +414,7 @@ ja:
|
|
399
414
|
diploma_html: 添付ファイルに、カンファレンス <a href="%{url}">%{title}</a> の出席証明書があります。
|
400
415
|
diploma_user:
|
401
416
|
attendance_verified_by: 出席者が確認しました
|
417
|
+
certificate_of_attendance: 参加証明書
|
402
418
|
certificate_of_attendance_description: これは、<strong>%{user}</strong>が、<strong>%{start} から %{end}</strong>に<strong>%{location}</strong>で開催された<strong>%{title}</strong>に出席し、参加したことを証明するものです。
|
403
419
|
send_diploma:
|
404
420
|
error: カンファレンス出席証明書の送信に問題がありました。
|
@@ -519,6 +535,25 @@ ja:
|
|
519
535
|
objectives: 目的
|
520
536
|
related_assemblies: 関連する参加スペース
|
521
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: この登録の最終更新日時
|
522
557
|
events:
|
523
558
|
conferences:
|
524
559
|
conference_registration_confirmed:
|
@@ -566,6 +601,33 @@ ja:
|
|
566
601
|
title: メディアとリンク
|
567
602
|
menu:
|
568
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
|
569
631
|
statistics:
|
570
632
|
conferences_count: カンファレンス
|
571
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
|
@@ -188,7 +186,6 @@ ro:
|
|
188
186
|
attachment_collections: Dosare
|
189
187
|
attachment_files: Fișiere
|
190
188
|
attachments: Atașamente
|
191
|
-
categories: Categorii
|
192
189
|
components: Componente
|
193
190
|
conference_admins: Administratori ai conferinţei
|
194
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
|