decidim-conferences 0.29.1 → 0.30.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- 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 +7 -12
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -7
- 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/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +13 -7
- 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/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/locales/ar.yml +12 -24
- data/config/locales/bg.yml +0 -24
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +14 -0
- data/config/locales/ca.yml +74 -14
- data/config/locales/cs.yml +76 -16
- data/config/locales/de.yml +75 -15
- data/config/locales/el.yml +0 -24
- data/config/locales/en.yml +82 -22
- data/config/locales/es-MX.yml +75 -15
- data/config/locales/es-PY.yml +78 -18
- data/config/locales/es.yml +71 -11
- data/config/locales/eu.yml +229 -169
- data/config/locales/fi-plain.yml +76 -16
- data/config/locales/fi.yml +82 -22
- data/config/locales/fr-CA.yml +35 -16
- data/config/locales/fr.yml +35 -16
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -24
- data/config/locales/hu.yml +0 -24
- data/config/locales/id-ID.yml +0 -24
- data/config/locales/it.yml +0 -24
- data/config/locales/ja.yml +73 -13
- data/config/locales/lb.yml +0 -22
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -24
- data/config/locales/nl.yml +0 -24
- data/config/locales/no.yml +0 -24
- data/config/locales/pl.yml +0 -24
- data/config/locales/pt-BR.yml +0 -24
- data/config/locales/pt.yml +0 -24
- data/config/locales/ro-RO.yml +13 -15
- data/config/locales/sk.yml +0 -24
- data/config/locales/sv.yml +66 -25
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/zh-CN.yml +0 -24
- data/config/locales/zh-TW.yml +0 -24
- 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 +2 -7
- 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 +26 -43
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -23
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: コピー
|
@@ -117,13 +119,13 @@ ja:
|
|
117
119
|
destroy:
|
118
120
|
success: カンファレンススピーカーを削除しました。
|
119
121
|
edit:
|
120
|
-
title:
|
122
|
+
title: カンファレンススピーカーを更新
|
121
123
|
update: 更新
|
122
124
|
index:
|
123
125
|
conference_speakers_title: カンファレンススピーカー
|
124
126
|
new:
|
125
127
|
create: 作成
|
126
|
-
title:
|
128
|
+
title: 新しいカンファレンススピーカー
|
127
129
|
publish:
|
128
130
|
invalid: このスピーカーを公開中に問題が発生しました。
|
129
131
|
success: カンファレンスのスピーカーを公開しました。
|
@@ -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: カンファレンス
|
@@ -180,13 +184,13 @@ ja:
|
|
180
184
|
destroy:
|
181
185
|
success: メディアリンクを削除しました。
|
182
186
|
edit:
|
183
|
-
title:
|
187
|
+
title: メディア リンクを更新
|
184
188
|
update: 更新
|
185
189
|
index:
|
186
190
|
media_links_title: メディアリンク
|
187
191
|
new:
|
188
192
|
create: 作成
|
189
|
-
title:
|
193
|
+
title: メディアリンクを作成
|
190
194
|
update:
|
191
195
|
error: このメディア リンクの更新中に問題が発生しました。
|
192
196
|
success: メディアリンクを更新しました。
|
@@ -196,12 +200,11 @@ 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: 招待
|
203
206
|
conference_speakers: スピーカー
|
204
|
-
diploma:
|
207
|
+
diploma: 参加証明書
|
205
208
|
info: このカンファレンスについて
|
206
209
|
media_links: メディアリンク
|
207
210
|
moderations: モデレーション
|
@@ -238,7 +241,7 @@ ja:
|
|
238
241
|
date: 日付
|
239
242
|
link: リンク
|
240
243
|
title: タイトル
|
241
|
-
name:
|
244
|
+
name: メディア リンク
|
242
245
|
partner:
|
243
246
|
fields:
|
244
247
|
link: リンク
|
@@ -264,7 +267,7 @@ ja:
|
|
264
267
|
destroy:
|
265
268
|
success: カンファレンスパートナーを削除しました。
|
266
269
|
edit:
|
267
|
-
title:
|
270
|
+
title: パートナーを更新
|
268
271
|
update: 更新
|
269
272
|
new:
|
270
273
|
create: 作成
|
@@ -286,7 +289,7 @@ ja:
|
|
286
289
|
destroy:
|
287
290
|
success: カンファレンスの登録種別を削除しました。
|
288
291
|
edit:
|
289
|
-
title:
|
292
|
+
title: 登録種別を更新
|
290
293
|
update: 更新
|
291
294
|
new:
|
292
295
|
create: 作成
|
@@ -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,16 +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: 保存
|
383
|
-
title:
|
397
|
+
title: 参加証明書
|
384
398
|
invite_join_conference_mailer:
|
385
399
|
invite:
|
386
400
|
decline: 招待を拒否する '%{conference_title}'
|
@@ -400,7 +414,7 @@ ja:
|
|
400
414
|
diploma_html: 添付ファイルに、カンファレンス <a href="%{url}">%{title}</a> の出席証明書があります。
|
401
415
|
diploma_user:
|
402
416
|
attendance_verified_by: 出席者が確認しました
|
403
|
-
certificate_of_attendance:
|
417
|
+
certificate_of_attendance: 参加証明書
|
404
418
|
certificate_of_attendance_description: これは、<strong>%{user}</strong>が、<strong>%{start} から %{end}</strong>に<strong>%{location}</strong>で開催された<strong>%{title}</strong>に出席し、参加したことを証明するものです。
|
405
419
|
send_diploma:
|
406
420
|
error: カンファレンス出席証明書の送信に問題がありました。
|
@@ -521,6 +535,25 @@ ja:
|
|
521
535
|
objectives: 目的
|
522
536
|
related_assemblies: 関連する参加スペース
|
523
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: この登録の最終更新日時
|
524
557
|
events:
|
525
558
|
conferences:
|
526
559
|
conference_registration_confirmed:
|
@@ -568,6 +601,33 @@ ja:
|
|
568
601
|
title: メディアとリンク
|
569
602
|
menu:
|
570
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
|
571
631
|
statistics:
|
572
632
|
conferences_count: カンファレンス
|
573
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
|
@@ -53,11 +51,9 @@ lb:
|
|
53
51
|
destroy:
|
54
52
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
55
53
|
edit:
|
56
|
-
title: Aktualisieren Sie den Konferenzbenutzer.
|
57
54
|
update: Aktualisieren
|
58
55
|
new:
|
59
56
|
create: Erstellen
|
60
|
-
title: Neuer Konferenzbenutzer
|
61
57
|
update:
|
62
58
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
63
59
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -86,38 +82,25 @@ lb:
|
|
86
82
|
media_links:
|
87
83
|
create:
|
88
84
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
89
|
-
success: Medienlink erfolgreich erstellt
|
90
|
-
destroy:
|
91
|
-
success: Medienlink wurde erfolgreich gelöscht.
|
92
85
|
edit:
|
93
|
-
title: Medienlink aktualisieren
|
94
86
|
update: Aktualisieren
|
95
|
-
index:
|
96
|
-
media_links_title: Medienlinks
|
97
87
|
new:
|
98
88
|
create: Erstellen
|
99
|
-
title: Medienlink
|
100
89
|
update:
|
101
90
|
error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
|
102
|
-
success: Media Link wurde erfolgreich aktualisiert.
|
103
91
|
menu:
|
104
92
|
conferences: Konferenzen
|
105
93
|
conferences_submenu:
|
106
94
|
attachment_collections: Ordner
|
107
95
|
attachment_files: Dateien
|
108
96
|
attachments: Anhänge
|
109
|
-
categories: Kategorien
|
110
97
|
components: Komponenten
|
111
98
|
conference_admins: Konferenzadministratoren
|
112
99
|
conference_invites: Lädt ein
|
113
100
|
conference_speakers: Lautsprecher
|
114
|
-
diploma: Teilnahmebestätigung
|
115
|
-
media_links: Medienlinks
|
116
101
|
moderations: Moderationen
|
117
102
|
partners: Partner
|
118
|
-
registration_types: Registrierungsarten
|
119
103
|
registrations: Registrierungen
|
120
|
-
user_registrations: Benutzerregistrierungen
|
121
104
|
models:
|
122
105
|
conference:
|
123
106
|
fields:
|
@@ -142,7 +125,6 @@ lb:
|
|
142
125
|
date: Datum
|
143
126
|
link: Verknüpfung
|
144
127
|
title: Titel
|
145
|
-
name: Medienlink
|
146
128
|
partner:
|
147
129
|
fields:
|
148
130
|
link: Verknüpfung
|
@@ -168,7 +150,6 @@ lb:
|
|
168
150
|
destroy:
|
169
151
|
success: Der Partner wurde erfolgreich von dieser Konferenz entfernt.
|
170
152
|
edit:
|
171
|
-
title: Partner aktualisieren
|
172
153
|
update: Aktualisieren
|
173
154
|
new:
|
174
155
|
create: Erstellen
|
@@ -190,7 +171,6 @@ lb:
|
|
190
171
|
destroy:
|
191
172
|
success: Der Registrierungstyp wurde erfolgreich von dieser Konferenz entfernt.
|
192
173
|
edit:
|
193
|
-
title: Registrierungsart aktualisieren
|
194
174
|
update: Aktualisieren
|
195
175
|
new:
|
196
176
|
create: Erstellen
|
@@ -276,7 +256,6 @@ lb:
|
|
276
256
|
diplomas:
|
277
257
|
edit:
|
278
258
|
save: Speichern
|
279
|
-
title: Teilnahmebestätigung
|
280
259
|
invite_join_conference_mailer:
|
281
260
|
invite:
|
282
261
|
decline: Einladung '%{conference_title}' ablehnen
|
@@ -295,7 +274,6 @@ lb:
|
|
295
274
|
diploma_html: Die Teilnahmebescheinigung für die Konferenz <a href="%{url}">%{title}</a> finden Sie in den Anhängen.
|
296
275
|
diploma_user:
|
297
276
|
attendance_verified_by: Anwesenheit überprüft durch
|
298
|
-
certificate_of_attendance: Teilnahmebestätigung
|
299
277
|
certificate_of_attendance_description: Hiermit wird bestätigt, dass <strong>%{user}</strong> an den <strong>%{title}</strong> teilgenommen hat, die am <strong>%{location}</strong> am <strong>%{start} - %{end}</strong>abgehalten wurden
|
300
278
|
send_diploma:
|
301
279
|
error: Beim Senden der Teilnahmebestätigung der Konferenz ist ein Problem aufgetreten.
|
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
|
@@ -119,13 +117,11 @@ lt:
|
|
119
117
|
destroy:
|
120
118
|
success: Konferencijos pranešėjas pašalintas.
|
121
119
|
edit:
|
122
|
-
title: Atnaujinti konferencijos pranešėją.
|
123
120
|
update: Atnaujinti
|
124
121
|
index:
|
125
122
|
conference_speakers_title: Konferencijos pranešėjai
|
126
123
|
new:
|
127
124
|
create: Sukurti
|
128
|
-
title: Naujas konferencijos pranešėjas.
|
129
125
|
update:
|
130
126
|
error: Atnaujinant šį konferencijos pranešėją iškilo problema.
|
131
127
|
success: Konferencijos pranešėjas atnaujintas.
|
@@ -136,13 +132,11 @@ lt:
|
|
136
132
|
destroy:
|
137
133
|
success: Konferencijos administratorius pašalintas.
|
138
134
|
edit:
|
139
|
-
title: Atnaujinti konferencijos administratorių.
|
140
135
|
update: Atnaujinti
|
141
136
|
index:
|
142
137
|
conference_admins_title: Konferencijos administratoriai
|
143
138
|
new:
|
144
139
|
create: Sukurti
|
145
|
-
title: Naujas konferencijos administratorius.
|
146
140
|
update:
|
147
141
|
error: Atnaujinant šios konferencijos administratorių iškilo problema.
|
148
142
|
success: Konferencijos administratorius atnaujintas.
|
@@ -171,38 +165,25 @@ lt:
|
|
171
165
|
media_links:
|
172
166
|
create:
|
173
167
|
error: Kuriant naują multimedijos nuorodą iškilo problema.
|
174
|
-
success: Multimedijos nuoroda sukurta.
|
175
|
-
destroy:
|
176
|
-
success: Multimedijos nuoroda pašalinta.
|
177
168
|
edit:
|
178
|
-
title: Atnaujinti multimedijos nuorodą.
|
179
169
|
update: Atnaujinti
|
180
|
-
index:
|
181
|
-
media_links_title: Multimedijos Nuorodos
|
182
170
|
new:
|
183
171
|
create: Sukurti
|
184
|
-
title: Multimedijos Nuoroda
|
185
172
|
update:
|
186
173
|
error: Atnaujinant šią multimedijos nuorodą iškilo problema.
|
187
|
-
success: Multimedijos Nuoroda atnaujinta.
|
188
174
|
menu:
|
189
175
|
conferences: Konferencijos
|
190
176
|
conferences_submenu:
|
191
177
|
attachment_collections: Aplankai
|
192
178
|
attachment_files: Dokumentai
|
193
179
|
attachments: Priedai
|
194
|
-
categories: Kategorijos
|
195
180
|
components: Komponentai
|
196
181
|
conference_admins: Konferencijos administratoriai
|
197
182
|
conference_invites: Pakvietimai
|
198
183
|
conference_speakers: Pranešėjai
|
199
|
-
diploma: Dalyvavimo konferencijoje pažymėjimas
|
200
|
-
media_links: Multimedijos Nuorodos
|
201
184
|
moderations: Moderavimai
|
202
185
|
partners: Partneriai
|
203
|
-
registration_types: Registracijos tipai
|
204
186
|
registrations: Registracijos
|
205
|
-
user_registrations: Naudotojų registracijos
|
206
187
|
models:
|
207
188
|
conference:
|
208
189
|
fields:
|
@@ -231,7 +212,6 @@ lt:
|
|
231
212
|
date: Data
|
232
213
|
link: Nuoroda
|
233
214
|
title: Pavadinimas
|
234
|
-
name: Multimedijos Nuoroda
|
235
215
|
partner:
|
236
216
|
fields:
|
237
217
|
link: Nuoroda
|
@@ -257,7 +237,6 @@ lt:
|
|
257
237
|
destroy:
|
258
238
|
success: Konferencijos partneris pašalintas.
|
259
239
|
edit:
|
260
|
-
title: Atnaujinti partnerį.
|
261
240
|
update: Atnaujinti
|
262
241
|
new:
|
263
242
|
create: Sukurti
|
@@ -279,7 +258,6 @@ lt:
|
|
279
258
|
destroy:
|
280
259
|
success: Konferencijos registracijos tipas pašalintas.
|
281
260
|
edit:
|
282
|
-
title: Atnaujinti registracijos tipą.
|
283
261
|
update: Atnaujinti
|
284
262
|
new:
|
285
263
|
create: Sukurti
|
@@ -369,7 +347,6 @@ lt:
|
|
369
347
|
diplomas:
|
370
348
|
edit:
|
371
349
|
save: Išsaugoti
|
372
|
-
title: Dalyvavimo pažymėjimas
|
373
350
|
invite_join_conference_mailer:
|
374
351
|
invite:
|
375
352
|
decline: Atmesti kvietimą į „%{conference_title}“
|
@@ -389,7 +366,6 @@ lt:
|
|
389
366
|
diploma_html: Rasite konferencijos <a href="%{url}">%{title}</a> dalyvavimo pažymėjimą laiško prieduose.
|
390
367
|
diploma_user:
|
391
368
|
attendance_verified_by: Dalyvavimas patvirtintas
|
392
|
-
certificate_of_attendance: Dalyvavimo pažymėjimas
|
393
369
|
certificate_of_attendance_description: Patvirtiname, kad <strong>%{user}</strong> dalyvavo <strong>%{title}</strong> konferencijoje vykusioje <strong>%{location}</strong> nuo <strong>%{start} iki %{end}</strong>
|
394
370
|
send_diploma:
|
395
371
|
error: Siunčiant dalyvavimo pažymėjimus iškilo problema.
|
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
|
@@ -70,13 +68,11 @@ lv:
|
|
70
68
|
destroy:
|
71
69
|
success: Konferences runātājs ir veiksmīgi izdzēsts.
|
72
70
|
edit:
|
73
|
-
title: Atjaunināt konferences runātāju.
|
74
71
|
update: Atjaunināt
|
75
72
|
index:
|
76
73
|
conference_speakers_title: Konferences runātāji
|
77
74
|
new:
|
78
75
|
create: Izveidot
|
79
|
-
title: Jauns konferences runātājs.
|
80
76
|
update:
|
81
77
|
error: Šī konferences runātāja atjaunināšanas laikā radās problēma.
|
82
78
|
success: Konferences runātājs ir veiksmīgi atjaunināts.
|
@@ -87,11 +83,9 @@ lv:
|
|
87
83
|
destroy:
|
88
84
|
success: Konferences administrators ir veiksmīgi noņemts.
|
89
85
|
edit:
|
90
|
-
title: Atjaunināt konferences administratoru.
|
91
86
|
update: Atjaunināt
|
92
87
|
new:
|
93
88
|
create: Izveidot
|
94
|
-
title: Jauns konferences administrators.
|
95
89
|
update:
|
96
90
|
error: Šī konferences administratora atjaunināšanas laikā radās problēma.
|
97
91
|
success: Konferences administrators ir veiksmīgi atjaunināts.
|
@@ -120,38 +114,25 @@ lv:
|
|
120
114
|
media_links:
|
121
115
|
create:
|
122
116
|
error: Jaunas mediju saites izveides laikā radās problēma.
|
123
|
-
success: Mediju saite ir veiksmīgi izveidota.
|
124
|
-
destroy:
|
125
|
-
success: Mediju saite ir veiksmīgi dzēsta
|
126
117
|
edit:
|
127
|
-
title: Atjaunināt mediju saiti
|
128
118
|
update: Atjaunināt
|
129
|
-
index:
|
130
|
-
media_links_title: Mediju saites
|
131
119
|
new:
|
132
120
|
create: Izveidot
|
133
|
-
title: Mediju saite
|
134
121
|
update:
|
135
122
|
error: Šīs mediju saites atjaunināšanas laikā radās problēma.
|
136
|
-
success: Mediju saite ir veiksmīgi atjaunināta.
|
137
123
|
menu:
|
138
124
|
conferences: Konferences
|
139
125
|
conferences_submenu:
|
140
126
|
attachment_collections: Mapes
|
141
127
|
attachment_files: Faili
|
142
128
|
attachments: Pielikumi
|
143
|
-
categories: Kategorijas
|
144
129
|
components: Komponenti
|
145
130
|
conference_admins: Konferences administratori
|
146
131
|
conference_invites: Ielūgumi
|
147
132
|
conference_speakers: Runātāji
|
148
|
-
diploma: Apmeklējuma sertifikāts
|
149
|
-
media_links: Mediju saites
|
150
133
|
moderations: Moderācijas
|
151
134
|
partners: Partneri
|
152
|
-
registration_types: Reģistrācijas veidi
|
153
135
|
registrations: Reģistrācija
|
154
|
-
user_registrations: Lietotāju reģistrācija
|
155
136
|
models:
|
156
137
|
conference:
|
157
138
|
fields:
|
@@ -180,7 +161,6 @@ lv:
|
|
180
161
|
date: Datums
|
181
162
|
link: Saite
|
182
163
|
title: Nosaukums
|
183
|
-
name: Mediju saite
|
184
164
|
partner:
|
185
165
|
fields:
|
186
166
|
link: Saite
|
@@ -205,7 +185,6 @@ lv:
|
|
205
185
|
destroy:
|
206
186
|
success: Konferences partneris ir veiksmīgi noņemts.
|
207
187
|
edit:
|
208
|
-
title: Atjaunināt partneri.
|
209
188
|
update: Atjaunināt
|
210
189
|
new:
|
211
190
|
create: Izveidot
|
@@ -227,7 +206,6 @@ lv:
|
|
227
206
|
destroy:
|
228
207
|
success: Konferences reģistrācijas veids ir veiksmīgi noņemts.
|
229
208
|
edit:
|
230
|
-
title: Atjaunināt reģistrācijas veidu.
|
231
209
|
update: Atjaunināt
|
232
210
|
new:
|
233
211
|
create: Izveidot
|
@@ -310,7 +288,6 @@ lv:
|
|
310
288
|
diplomas:
|
311
289
|
edit:
|
312
290
|
save: Saglabāt
|
313
|
-
title: Apmeklējuma sertifikāts
|
314
291
|
invite_join_conference_mailer:
|
315
292
|
invite:
|
316
293
|
decline: Noraidīt ielūgumu '%{conference_title}'
|
@@ -329,7 +306,6 @@ lv:
|
|
329
306
|
diploma_html: Jūs atradīsiet konferences <a href="%{url}">%{title}</a> apmeklējuma sertifikātu pielikumos.
|
330
307
|
diploma_user:
|
331
308
|
attendance_verified_by: Apmeklējumu pārbaudīja
|
332
|
-
certificate_of_attendance: Apmeklējuma sertifikāts
|
333
309
|
certificate_of_attendance_description: Ar šo apliecinām, ka <strong>%{user}</strong> ir apmeklējis un piedalījies <strong>%{title}</strong>, kas notika <strong>%{location}</strong> laikā <strong>%{start} - %{end}</strong>
|
334
310
|
send_diploma:
|
335
311
|
error: Nosūtot konferences apmeklējuma sertifikātus, radās problēma.
|
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
|
@@ -100,13 +98,11 @@ nl:
|
|
100
98
|
destroy:
|
101
99
|
success: Conferentiespreker is met succes verwijderd.
|
102
100
|
edit:
|
103
|
-
title: Conferentiespreker updaten.
|
104
101
|
update: Bijwerken
|
105
102
|
index:
|
106
103
|
conference_speakers_title: Sprekers van de conferentie
|
107
104
|
new:
|
108
105
|
create: Creëren
|
109
|
-
title: Nieuwe spreker voor conferenties.
|
110
106
|
update:
|
111
107
|
error: Er is een fout opgetreden bij het bijwerken van de spreker voor deze conferentie.
|
112
108
|
success: Luidspreker succesvol bijgewerkt voor deze conferentie.
|
@@ -117,11 +113,9 @@ nl:
|
|
117
113
|
destroy:
|
118
114
|
success: Conference-beheerder verwijderd.
|
119
115
|
edit:
|
120
|
-
title: Update conferentiebeheerder.
|
121
116
|
update: Bijwerken
|
122
117
|
new:
|
123
118
|
create: Creëren
|
124
|
-
title: Nieuwe conferentiebeheerder.
|
125
119
|
update:
|
126
120
|
error: Er is een probleem opgetreden bij het bijwerken van deze conferentiebeheerder.
|
127
121
|
success: Conferentiebeheerder succesvol bijgewerkt.
|
@@ -150,38 +144,25 @@ nl:
|
|
150
144
|
media_links:
|
151
145
|
create:
|
152
146
|
error: Er is een probleem opgetreden bij het maken van een nieuwe mediakoppeling.
|
153
|
-
success: Mediakoppeling met succes aangemaakt.
|
154
|
-
destroy:
|
155
|
-
success: Mediakoppeling succesvol verwijderd.
|
156
147
|
edit:
|
157
|
-
title: Mediakoppeling bijwerken.
|
158
148
|
update: Bijwerken
|
159
|
-
index:
|
160
|
-
media_links_title: Mediakoppelingen
|
161
149
|
new:
|
162
150
|
create: Creëren
|
163
|
-
title: Mediakoppeling
|
164
151
|
update:
|
165
152
|
error: Er is een probleem opgetreden bij het bijwerken van deze mediakoppeling.
|
166
|
-
success: Mediakoppeling succesvol bijgewerkt.
|
167
153
|
menu:
|
168
154
|
conferences: Conferenties
|
169
155
|
conferences_submenu:
|
170
156
|
attachment_collections: Mappen
|
171
157
|
attachment_files: Bestanden
|
172
158
|
attachments: Bijlagen
|
173
|
-
categories: Categorieën
|
174
159
|
components: Componenten
|
175
160
|
conference_admins: Conferentiebeheerders
|
176
161
|
conference_invites: Uitnodigingen
|
177
162
|
conference_speakers: Sprekers
|
178
|
-
diploma: Certificaat van Deelname
|
179
|
-
media_links: Mediakoppelingen
|
180
163
|
moderations: Moderaties
|
181
164
|
partners: Partners
|
182
|
-
registration_types: Registratietypes
|
183
165
|
registrations: Inschrijvingen
|
184
|
-
user_registrations: Gebruikersregistraties
|
185
166
|
models:
|
186
167
|
conference:
|
187
168
|
fields:
|
@@ -210,7 +191,6 @@ nl:
|
|
210
191
|
date: Datum
|
211
192
|
link: Link
|
212
193
|
title: Titel
|
213
|
-
name: Mediakoppeling
|
214
194
|
partner:
|
215
195
|
fields:
|
216
196
|
link: Link
|
@@ -236,7 +216,6 @@ nl:
|
|
236
216
|
destroy:
|
237
217
|
success: Partner verwijderd van deze conferentie.
|
238
218
|
edit:
|
239
|
-
title: Update partner.
|
240
219
|
update: Bijwerken
|
241
220
|
new:
|
242
221
|
create: Creëren
|
@@ -258,7 +237,6 @@ nl:
|
|
258
237
|
destroy:
|
259
238
|
success: Registratietype is met succes van deze conferentie verwijderd.
|
260
239
|
edit:
|
261
|
-
title: Update registratietype.
|
262
240
|
update: Bijwerken
|
263
241
|
new:
|
264
242
|
create: Creëren
|
@@ -344,7 +322,6 @@ nl:
|
|
344
322
|
diplomas:
|
345
323
|
edit:
|
346
324
|
save: Opslaan
|
347
|
-
title: Certificaat van Deelname
|
348
325
|
invite_join_conference_mailer:
|
349
326
|
invite:
|
350
327
|
decline: Uitnodiging '%{conference_title}' weigeren
|
@@ -363,7 +340,6 @@ nl:
|
|
363
340
|
diploma_html: U vindt het certificaat van deelname voor de conferentie <a href="%{url}">%{title}</a> in de bijlagen.
|
364
341
|
diploma_user:
|
365
342
|
attendance_verified_by: Aanwezigheid geverifieerd door
|
366
|
-
certificate_of_attendance: Certificaat van Deelname
|
367
343
|
certificate_of_attendance_description: Dit is om te verklaren dat <strong>%{user}</strong> aanwezig is geweest en heeft deelgenomen aan de <strong>%{title}</strong> gehouden op de <strong>%{location}</strong> op <strong>%{start} - %{end}</strong>
|
368
344
|
send_diploma:
|
369
345
|
error: Er is een probleem opgetreden tijdens het verzenden van de certificaten van deelname.
|