decidim-conferences 0.15.1 → 0.16.0
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/assets/config/admin/decidim_conferences_manifest.js +1 -0
- data/app/assets/images/decidim/conferences/conference.svg +2 -5
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +3 -0
- data/app/cells/decidim/conferences/{join_conference_button/show.erb → registration_type/join_conference.erb} +6 -7
- data/app/cells/decidim/conferences/{join_conference_button → registration_type}/registration_confirm.erb +2 -2
- data/app/cells/decidim/conferences/registration_type/show.erb +16 -0
- data/app/cells/decidim/conferences/registration_type_cell.rb +51 -0
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +75 -0
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +77 -0
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +56 -0
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +3 -2
- data/app/commands/decidim/conferences/admin/publish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +48 -0
- data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -2
- data/app/commands/decidim/conferences/admin/update_diploma.rb +47 -0
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +74 -0
- data/app/commands/decidim/conferences/join_conference.rb +21 -9
- data/app/commands/decidim/conferences/leave_conference.rb +5 -3
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +21 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +0 -9
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +62 -0
- data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +53 -0
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +84 -0
- data/app/controllers/decidim/conferences/application_controller.rb +2 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +6 -2
- data/app/controllers/decidim/conferences/conferences_controller.rb +4 -0
- data/app/controllers/decidim/conferences/registration_types_controller.rb +39 -0
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +21 -0
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -2
- data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +15 -0
- data/app/forms/decidim/conferences/admin/diploma_form.rb +24 -0
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +44 -0
- data/app/helpers/decidim/conferences/conference_helper.rb +15 -0
- data/app/jobs/decidim/conferences/admin/send_conference_diploma_job.rb +20 -0
- data/app/jobs/decidim/conferences/upcoming_conference_notification_job.rb +1 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +48 -0
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +16 -1
- data/app/models/decidim/conference.rb +12 -0
- data/app/models/decidim/conference_meeting.rb +2 -0
- data/app/models/decidim/conferences/conference_invite.rb +1 -0
- data/app/models/decidim/conferences/conference_meeting_registration_type.rb +10 -0
- data/app/models/decidim/conferences/conference_registration.rb +11 -0
- data/app/models/decidim/conferences/registration_type.rb +25 -0
- data/app/permissions/decidim/conferences/permissions.rb +19 -12
- data/app/presenters/decidim/conference_speaker_presenter.rb +4 -0
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +43 -0
- data/app/presenters/decidim/conferences/admin_log/conferences_presenter.rb +4 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +45 -0
- data/app/serializers/decidim/conferences/conference_registration_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_invite_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_registration_serializer.rb +4 -0
- data/app/uploaders/decidim/conferences/diploma_uploader.rb +12 -0
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +4 -0
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +16 -0
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -4
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +31 -0
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +2 -2
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +30 -0
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +65 -0
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +7 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma.html.erb +1 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +24 -0
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +1 -2
- data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +9 -1
- data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +11 -0
- data/app/views/decidim/conferences/conferences/index.html.erb +2 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +10 -24
- data/app/views/decidim/conferences/registration_types/index.html.erb +30 -0
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +14 -0
- data/app/views/layouts/decidim/_conference_hero.html.erb +5 -3
- data/app/views/layouts/decidim/_conferences_nav.html.erb +45 -89
- data/app/views/layouts/decidim/admin/conference.html.erb +26 -8
- data/app/views/layouts/decidim/diploma.html.erb +11 -0
- data/config/initializers/wicked_pdf.rb +23 -0
- data/config/locales/ca.yml +125 -19
- data/config/locales/de.yml +127 -21
- data/config/locales/en.yml +126 -23
- data/config/locales/es-PY.yml +125 -19
- data/config/locales/es.yml +125 -19
- data/config/locales/eu.yml +127 -21
- data/config/locales/fi-pl.yml +570 -0
- data/config/locales/fi.yml +145 -39
- data/config/locales/fr.yml +127 -21
- data/config/locales/gl.yml +126 -20
- data/config/locales/hu.yml +127 -21
- data/config/locales/id-ID.yml +563 -0
- data/config/locales/it.yml +127 -21
- data/config/locales/nl.yml +126 -20
- data/config/locales/pl.yml +127 -24
- data/config/locales/pt-BR.yml +125 -19
- data/config/locales/pt.yml +126 -20
- data/config/locales/sv.yml +164 -58
- data/config/locales/tr-TR.yml +567 -0
- data/db/migrate/20181023142325_add_conference_registration_types.rb +21 -0
- data/db/migrate/20181030090202_add_reference_registration_type_to_conference_registration.rb +9 -0
- data/db/migrate/20181030153614_add_registration_type_to_conference_invite.rb +8 -0
- data/db/migrate/20181106092826_add_diploma_fields_to_conference.rb +11 -0
- data/db/migrate/20181123124424_make_price_optional_conference_registration_type.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +16 -2
- data/lib/decidim/conferences/engine.rb +8 -4
- data/lib/decidim/conferences/participatory_space.rb +11 -0
- data/lib/decidim/conferences/test/factories.rb +36 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +94 -22
- data/app/cells/decidim/conferences/join_conference_button_cell.rb +0 -42
- data/app/views/decidim/conferences/conferences/_conferences_sidebar.html.erb +0 -11
@@ -0,0 +1,563 @@
|
|
1
|
+
id:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
conference:
|
5
|
+
assemblies_ids: Rakitan Terkait
|
6
|
+
banner_image: Gambar spanduk
|
7
|
+
consultations_ids: Konsultasi Terkait
|
8
|
+
copy_categories: Salin kategori
|
9
|
+
copy_components: Salin komponen
|
10
|
+
copy_features: Salin fitur
|
11
|
+
decidim_scope_id: Cakupan
|
12
|
+
description: Deskripsi
|
13
|
+
hashtag: Tanda pagar
|
14
|
+
hero_image: Gambar rumah
|
15
|
+
participatory_processes_ids: Proses Partisipatif Terkait
|
16
|
+
promoted: Dipromosikan
|
17
|
+
published_at: Diterbitkan di
|
18
|
+
scope_id: Cakupan
|
19
|
+
scopes_enabled: Lingkup diaktifkan
|
20
|
+
short_description: Deskripsi Singkat
|
21
|
+
show_statistics: Tampilkan statistik
|
22
|
+
slogan: Slogan
|
23
|
+
slug: Siput URL
|
24
|
+
title: Judul
|
25
|
+
conference_speaker:
|
26
|
+
full_name: Nama lengkap
|
27
|
+
conference_user_role:
|
28
|
+
email: E-mail
|
29
|
+
name: Nama
|
30
|
+
role: Peran
|
31
|
+
errors:
|
32
|
+
models:
|
33
|
+
conference_registration_invite:
|
34
|
+
attributes:
|
35
|
+
email:
|
36
|
+
already_invited: Email ini sudah diundang
|
37
|
+
activerecord:
|
38
|
+
models:
|
39
|
+
decidim/conference:
|
40
|
+
other: Konferensi
|
41
|
+
decidim/conference_speaker:
|
42
|
+
other: Pembicara konferensi
|
43
|
+
decidim:
|
44
|
+
admin:
|
45
|
+
actions:
|
46
|
+
confirm: Memastikan
|
47
|
+
new_conference: Konferensi Baru
|
48
|
+
send_diplomas: Kirim Diploma
|
49
|
+
conference_copies:
|
50
|
+
new:
|
51
|
+
copy: Salinan
|
52
|
+
select: Pilih data mana yang ingin Anda gandakan
|
53
|
+
title: Konferensi duplikat
|
54
|
+
conference_publications:
|
55
|
+
create:
|
56
|
+
error: Terjadi kesalahan saat mempublikasikan konferensi ini.
|
57
|
+
success: Konferensi berhasil diterbitkan.
|
58
|
+
destroy:
|
59
|
+
error: Terjadi kesalahan saat membatalkan publikasi konferensi ini.
|
60
|
+
success: Konferensi tidak berhasil diterbitkan.
|
61
|
+
conference_registration:
|
62
|
+
confirm:
|
63
|
+
error: Ada kesalahan saat mengonfirmasi pendaftaran konferensi ini.
|
64
|
+
success: Pendaftaran konferensi dikonfirmasi berhasil.
|
65
|
+
conference_speakers:
|
66
|
+
create:
|
67
|
+
error: Terjadi kesalahan saat menambahkan pembicara untuk konferensi ini.
|
68
|
+
success: Pembicara berhasil dibuat untuk konferensi ini.
|
69
|
+
destroy:
|
70
|
+
success: Pembicara berhasil dihapus untuk konferensi ini.
|
71
|
+
edit:
|
72
|
+
title: Perbarui pembicara konferensi.
|
73
|
+
update: Memperbarui
|
74
|
+
index:
|
75
|
+
conference_speakers_title: Pembicara konferensi
|
76
|
+
new:
|
77
|
+
create: Membuat
|
78
|
+
title: Pembicara konferensi baru.
|
79
|
+
update:
|
80
|
+
error: Terjadi kesalahan saat memperbarui pembicara untuk konferensi ini.
|
81
|
+
success: Pembicara berhasil diperbarui untuk konferensi ini.
|
82
|
+
conference_user_roles:
|
83
|
+
create:
|
84
|
+
error: Terjadi kesalahan saat menambahkan pengguna untuk konferensi ini.
|
85
|
+
success: Pengguna berhasil ditambahkan ke konferensi ini.
|
86
|
+
destroy:
|
87
|
+
success: Pengguna berhasil dihapus dari konferensi ini.
|
88
|
+
edit:
|
89
|
+
title: Perbarui pengguna konferensi.
|
90
|
+
update: Memperbarui
|
91
|
+
index:
|
92
|
+
conference_admins_title: pengguna konferensi
|
93
|
+
new:
|
94
|
+
create: Membuat
|
95
|
+
title: Pengguna konferensi baru.
|
96
|
+
update:
|
97
|
+
error: Terjadi kesalahan saat memperbarui pengguna untuk konferensi ini.
|
98
|
+
success: Pengguna berhasil diperbarui untuk konferensi ini.
|
99
|
+
conferences:
|
100
|
+
create:
|
101
|
+
error: Terjadi kesalahan saat membuat konferensi baru.
|
102
|
+
success: Konferensi berhasil dibuat.
|
103
|
+
edit:
|
104
|
+
update: Memperbarui
|
105
|
+
exports:
|
106
|
+
registrations: Pendaftaran
|
107
|
+
form:
|
108
|
+
title: Informasi Umum
|
109
|
+
index:
|
110
|
+
not_published: Tidak diterbitkan
|
111
|
+
published: Diterbitkan
|
112
|
+
new:
|
113
|
+
create: Membuat
|
114
|
+
title: Konferensi
|
115
|
+
update:
|
116
|
+
error: Ada kesalahan saat memperbarui konferensi ini.
|
117
|
+
success: Konferensi berhasil diperbarui.
|
118
|
+
conferences_copies:
|
119
|
+
create:
|
120
|
+
error: Ada kesalahan saat menduplikasi konferensi ini.
|
121
|
+
success: Konferensi berhasil digandakan.
|
122
|
+
media_links:
|
123
|
+
create:
|
124
|
+
error: Terjadi kesalahan saat membuat tautan media baru.
|
125
|
+
success: Media Link berhasil dibuat.
|
126
|
+
destroy:
|
127
|
+
success: Tautan Media berhasil dihapus.
|
128
|
+
edit:
|
129
|
+
title: Perbarui tautan media.
|
130
|
+
update: Memperbarui
|
131
|
+
index:
|
132
|
+
media_links_title: Tautan Media
|
133
|
+
new:
|
134
|
+
create: Membuat
|
135
|
+
title: Tautan Media
|
136
|
+
update:
|
137
|
+
error: Terjadi kesalahan saat memperbarui tautan media ini.
|
138
|
+
success: Media Link berhasil diperbarui.
|
139
|
+
menu:
|
140
|
+
conferences: Konferensi
|
141
|
+
conferences_submenu:
|
142
|
+
attachment_collections: Folder
|
143
|
+
attachment_files: File
|
144
|
+
attachments: Lampiran
|
145
|
+
categories: Kategori
|
146
|
+
components: Komponen
|
147
|
+
conference_admins: Pengguna konferensi
|
148
|
+
conference_invites: Undangan
|
149
|
+
conference_speakers: Pembicara
|
150
|
+
diploma: Diploma
|
151
|
+
info: Info
|
152
|
+
media_links: Tautan Media
|
153
|
+
moderations: Moderasi
|
154
|
+
partners: Mitra
|
155
|
+
registration_types: Jenis Pendaftaran
|
156
|
+
registrations: Pendaftaran
|
157
|
+
user_registrations: Registrasi Pengguna
|
158
|
+
models:
|
159
|
+
conference:
|
160
|
+
fields:
|
161
|
+
created_at: Dibuat di
|
162
|
+
promoted: Dipromosikan
|
163
|
+
published: Diterbitkan
|
164
|
+
title: Judul
|
165
|
+
conference_speaker:
|
166
|
+
fields:
|
167
|
+
affiliation: Afiliasi
|
168
|
+
full_name: Nama lengkap
|
169
|
+
position: Posisi
|
170
|
+
name: Pembicara Konferensi
|
171
|
+
conference_user_role:
|
172
|
+
fields:
|
173
|
+
email: E-mail
|
174
|
+
name: Nama
|
175
|
+
role: Peran
|
176
|
+
name: Pengguna Konferensi
|
177
|
+
roles:
|
178
|
+
admin: Administrator
|
179
|
+
collaborator: Kolaborator
|
180
|
+
moderator: Moderator
|
181
|
+
media_link:
|
182
|
+
fields:
|
183
|
+
date: Tanggal
|
184
|
+
link: Link
|
185
|
+
title: Judul
|
186
|
+
name: Tautan Media
|
187
|
+
partner:
|
188
|
+
fields:
|
189
|
+
link: Link
|
190
|
+
logo: Logo
|
191
|
+
name: Nama
|
192
|
+
partner_type: Mengetik
|
193
|
+
name: Pasangan
|
194
|
+
types:
|
195
|
+
collaborator: Kolaborator
|
196
|
+
main_promotor: Promotor utama
|
197
|
+
registration_type:
|
198
|
+
fields:
|
199
|
+
conference_meetings: Pertemuan konferensi
|
200
|
+
price: Harga
|
201
|
+
registrations_count: Jumlah registrasi
|
202
|
+
title: Judul
|
203
|
+
weight: Berat
|
204
|
+
name: Jenis pendaftaran
|
205
|
+
partners:
|
206
|
+
create:
|
207
|
+
error: Terjadi kesalahan saat menambahkan mitra untuk konferensi ini.
|
208
|
+
success: Mitra berhasil ditambahkan ke konferensi ini.
|
209
|
+
destroy:
|
210
|
+
success: Mitra berhasil dihapus dari konferensi ini.
|
211
|
+
edit:
|
212
|
+
title: Perbarui mitra.
|
213
|
+
update: Memperbarui
|
214
|
+
new:
|
215
|
+
create: Membuat
|
216
|
+
title: Mitra baru
|
217
|
+
update:
|
218
|
+
error: Terjadi kesalahan saat memperbarui mitra untuk konferensi ini.
|
219
|
+
success: Mitra berhasil diperbarui untuk konferensi ini.
|
220
|
+
registration_type_publications:
|
221
|
+
create:
|
222
|
+
error: Terjadi kesalahan saat memublikasikan jenis pendaftaran ini.
|
223
|
+
success: Jenis pendaftaran berhasil diterbitkan.
|
224
|
+
destroy:
|
225
|
+
error: Terjadi kesalahan saat membatalkan publikasi jenis pendaftaran ini.
|
226
|
+
success: Jenis pendaftaran tidak berhasil diterbitkan.
|
227
|
+
registration_types:
|
228
|
+
create:
|
229
|
+
error: Terjadi kesalahan saat menambahkan jenis pendaftaran untuk konferensi ini.
|
230
|
+
success: Jenis pendaftaran berhasil ditambahkan ke konferensi ini.
|
231
|
+
destroy:
|
232
|
+
success: Jenis pendaftaran berhasil dihapus dari konferensi ini.
|
233
|
+
edit:
|
234
|
+
title: Perbarui jenis pendaftaran.
|
235
|
+
update: Memperbarui
|
236
|
+
new:
|
237
|
+
create: Membuat
|
238
|
+
title: Jenis pendaftaran baru
|
239
|
+
update:
|
240
|
+
error: Terjadi kesalahan saat memperbarui jenis pendaftaran untuk konferensi ini.
|
241
|
+
success: Jenis pendaftaran berhasil diperbarui untuk konferensi ini.
|
242
|
+
titles:
|
243
|
+
conferences: Konferensi
|
244
|
+
admin_log:
|
245
|
+
conference:
|
246
|
+
create: "%{user_name} menciptakan konferensi %{resource_name}"
|
247
|
+
publish: "%{user_name} mempublikasikan %{resource_name} konferensi"
|
248
|
+
send_conference_diplomas: "%{user_name} kirim diploma ke %{resource_name} pengguna konferensi"
|
249
|
+
unpublish: "%{user_name} tidak menerbitkan %{resource_name} konferensi"
|
250
|
+
update: "%{user_name} memperbarui %{resource_name} konferensi"
|
251
|
+
update_diploma: "%{user_name} memperbarui konfigurasi diploma %{resource_name} konferensi"
|
252
|
+
conference_speaker:
|
253
|
+
create: "%{user_name} menciptakan %{resource_name} pembicara dalam %{space_name} konferensi"
|
254
|
+
delete: "%{user_name} menghapus %{resource_name} pembicara dari %{space_name} konferensi"
|
255
|
+
update: "%{user_name} memperbarui %{resource_name} pembicara di konferensi %{space_name}"
|
256
|
+
conference_user_role:
|
257
|
+
create: "%{user_name} diundang %{resource_name} ke %{space_name} konferensi"
|
258
|
+
delete: "%{user_name} menghapus pengguna %{resource_name} dari %{space_name} konferensi"
|
259
|
+
update: "%{user_name} mengubah peran %{resource_name} dalam %{space_name} konferensi"
|
260
|
+
conferences:
|
261
|
+
conference_registration:
|
262
|
+
confirm: "%{user_name} mengkonfirmasi pendaftaran konferensi dalam %{resource_name} konferensi"
|
263
|
+
partner:
|
264
|
+
create: "%{user_name} dibuat %{resource_name} ke %{space_name} konferensi"
|
265
|
+
delete: "%{user_name} menghapus pengguna %{resource_name} dari %{space_name} konferensi"
|
266
|
+
update: "%{user_name} diperbarui %{resource_name} di %{space_name} konferensi"
|
267
|
+
registration_type:
|
268
|
+
create: "%{user_name} menciptakan tipe %{resource_name} pendaftaran dalam %{space_name} konferensi"
|
269
|
+
publish: "%{user_name} menerbitkan %{resource_name} tipe pendaftaran dalam %{space_name} konferensi"
|
270
|
+
unpublish: "%{user_name} tidak menerbitkan %{resource_name} jenis pendaftaran dalam %{space_name} konferensi"
|
271
|
+
update: "%{user_name} memperbarui %{resource_name} tipe registrasi di %{space_name} konferensi"
|
272
|
+
media_link:
|
273
|
+
create: "%{user_name} membuat tautan %{resource_name} media di %{space_name} konferensi"
|
274
|
+
delete: "%{user_name} menghapus %{resource_name} tautan media dari %{space_name} konferensi"
|
275
|
+
update: "%{user_name} memperbarui %{resource_name} tautan media dalam %{space_name} konferensi"
|
276
|
+
conference_program:
|
277
|
+
index:
|
278
|
+
title: Program
|
279
|
+
conference_speakers:
|
280
|
+
index:
|
281
|
+
title: Pembicara
|
282
|
+
conferences:
|
283
|
+
admin:
|
284
|
+
conference_copies:
|
285
|
+
form:
|
286
|
+
slug_help: 'Siput URL digunakan untuk menghasilkan URL yang mengarah ke konferensi ini. Hanya menerima huruf, angka, dan tanda hubung, dan harus dimulai dengan huruf. Contoh: %{url}'
|
287
|
+
conference_invites:
|
288
|
+
create:
|
289
|
+
error: Ada masalah saat mengundang pengguna untuk bergabung dengan konferensi.
|
290
|
+
success: Pengguna berhasil diundang untuk bergabung dengan konferensi.
|
291
|
+
form:
|
292
|
+
attendee_type: Tipe penerima tamu
|
293
|
+
existing_user: Pengguna yang sudah ada
|
294
|
+
invite_explanation: Pengguna akan diundang untuk bergabung dengan konferensi dan ke organisasi juga.
|
295
|
+
non_user: Pengguna tidak ada
|
296
|
+
select_user: Pilih pengguna
|
297
|
+
index:
|
298
|
+
filter:
|
299
|
+
accepted: Diterima
|
300
|
+
all: Semua
|
301
|
+
rejected: Ditolak
|
302
|
+
sent: Terkirim
|
303
|
+
filter_by: Filter berdasarkan
|
304
|
+
invite_attendee: Undang Peserta
|
305
|
+
invites: Undangan
|
306
|
+
search: Pencarian
|
307
|
+
new:
|
308
|
+
explanation: Pengguna akan diundang untuk bergabung dengan konferensi. Jika email tidak terdaftar mereka akan diundang ke organisasi juga.
|
309
|
+
invite: Undang
|
310
|
+
new_invite: Undang pengguna
|
311
|
+
conference_registrations:
|
312
|
+
index:
|
313
|
+
registrations: Pendaftaran
|
314
|
+
conference_speakers:
|
315
|
+
form:
|
316
|
+
existing_user: Pengguna yang sudah ada
|
317
|
+
non_user: Non-pengguna
|
318
|
+
select_user: Pilih pengguna
|
319
|
+
user_type: Tipe Pengguna
|
320
|
+
index:
|
321
|
+
search: Pencarian
|
322
|
+
conferences:
|
323
|
+
form:
|
324
|
+
available_slots_help: Biarkan hingga 0 jika Anda memiliki slot tidak terbatas.
|
325
|
+
registrations_count:
|
326
|
+
other: Ada %{count} pendaftaran.
|
327
|
+
slug_help: 'Siput URL digunakan untuk menghasilkan URL yang mengarah ke konferensi ini. Hanya menerima huruf, angka, dan tanda hubung, dan harus dimulai dengan huruf. Contoh: %{url}'
|
328
|
+
diplomas:
|
329
|
+
edit:
|
330
|
+
save: Menyimpan
|
331
|
+
title: Diploma
|
332
|
+
invite_join_conference_mailer:
|
333
|
+
invite:
|
334
|
+
decline: Tolak undangan '%{conference_title}'
|
335
|
+
invited_you_to_join_a_conference: "%{invited_by} telah mengundang Anda untuk bergabung dalam konferensi di %{application}. Anda dapat menolak atau menerimanya melalui tautan di bawah ini."
|
336
|
+
registration: Registrasi untuk '%{conference_title}'
|
337
|
+
partners:
|
338
|
+
index:
|
339
|
+
title: Mitra
|
340
|
+
registration_types:
|
341
|
+
form:
|
342
|
+
select_conference_meetings: Pilih pertemuan konferensi
|
343
|
+
index:
|
344
|
+
title: Jenis pendaftaran
|
345
|
+
send_conference_diploma_mailer:
|
346
|
+
diploma:
|
347
|
+
diploma_html: Anda akan menemukan diploma untuk konferensi <a href="%{url}">%{title}</a> dalam lampiran.
|
348
|
+
diploma_user:
|
349
|
+
attendance_verified_by: Kehadiran diverifikasi oleh
|
350
|
+
certificate_of_attendance: Sertifikat kehadiran
|
351
|
+
certificate_of_attendance_description: Ini untuk menyatakan bahwa <strong>%{user}</strong> telah hadir dan mengambil bagian dalam <strong>%{title}</strong> diadakan pada <strong>%{location}</strong> pada <strong>%{start} - %{end}</strong>
|
352
|
+
send_diploma:
|
353
|
+
error: Ada masalah saat mengirim diploma konferensi.
|
354
|
+
success: Konferensi Diploma dikirim dengan benar
|
355
|
+
conference:
|
356
|
+
registration_confirm:
|
357
|
+
cancel: Membatalkan
|
358
|
+
confirm: Memastikan
|
359
|
+
show:
|
360
|
+
free: Bebas
|
361
|
+
going: Pergi
|
362
|
+
no_slots_available: Tidak ada slot yang tersedia
|
363
|
+
registration: Pendaftaran
|
364
|
+
conference_program:
|
365
|
+
program_meeting:
|
366
|
+
content: Konten
|
367
|
+
location: Lokasi
|
368
|
+
speakers: Pembicara
|
369
|
+
streaming: Streaming
|
370
|
+
show:
|
371
|
+
day: Hari
|
372
|
+
program: Program
|
373
|
+
conference_registration_mailer:
|
374
|
+
confirmation:
|
375
|
+
confirmed_html: Pendaftaran Anda untuk konferensi <a href="%{url}">%{title}</a> telah dikonfirmasi.
|
376
|
+
details_1: 'Anda terdaftar di konferensi dengan %{registration_type} jenis. Ini memiliki biaya %{price} dan Anda dapat menghadiri acara-acara berikut:'
|
377
|
+
details_2: Anda akan menemukan rincian konferensi dalam lampiran.
|
378
|
+
pending_validation:
|
379
|
+
confirmation_pending: Anda akan menerima konfirmasi segera
|
380
|
+
details: 'Anda telah mendaftar ke %{registration_type} jenis dengan biaya %{price} dan Anda dapat menghadiri acara-acara berikut:'
|
381
|
+
pending_html: Pendaftaran Anda untuk konferensi <a href="%{url}">%{title}</a> masih menunggu untuk dikonfirmasi.
|
382
|
+
conference_registrations:
|
383
|
+
create:
|
384
|
+
invalid: Ada masalah saat bergabung dengan konferensi ini.
|
385
|
+
success: Anda telah berhasil mengikuti konferensi.
|
386
|
+
decline_invitation:
|
387
|
+
invalid: Terjadi masalah saat menolak undangan.
|
388
|
+
success: Anda berhasil menolak undangan.
|
389
|
+
destroy:
|
390
|
+
invalid: Ada masalah saat meninggalkan konferensi ini.
|
391
|
+
success: Anda telah meninggalkan konferensi dengan sukses.
|
392
|
+
conference_speaker:
|
393
|
+
go_to_twitter: Pergi ke Twitter
|
394
|
+
more_info: Info lebih lanjut
|
395
|
+
personal_website: Situs web pribadi
|
396
|
+
show:
|
397
|
+
more_info: Info lebih lanjut
|
398
|
+
conference_speaker_cell:
|
399
|
+
personal_url:
|
400
|
+
personal_website: Situs web pribadi
|
401
|
+
twitter_handle:
|
402
|
+
go_to_twitter: Pergi ke Twitter
|
403
|
+
conference_speakers:
|
404
|
+
index:
|
405
|
+
speakers: Pembicara
|
406
|
+
conferences:
|
407
|
+
partners:
|
408
|
+
collaborators: Mitra
|
409
|
+
main_promotors: Penyelenggara
|
410
|
+
show:
|
411
|
+
login_as: Anda masuk sebagai %{name} <%{email}>
|
412
|
+
make_conference_registration: 'Buat pendaftaran Anda di konferensi:'
|
413
|
+
register: Daftar
|
414
|
+
content_blocks:
|
415
|
+
highlighted_conferences:
|
416
|
+
name: Konferensi yang disorot
|
417
|
+
index:
|
418
|
+
title: Konferensi
|
419
|
+
mailer:
|
420
|
+
conference_registration_mailer:
|
421
|
+
confirmation:
|
422
|
+
subject: Pendaftaran konferensi Anda telah dikonfirmasi
|
423
|
+
pending_validation:
|
424
|
+
subject: Pendaftaran konferensi Anda sedang menunggu untuk dikonfirmasi
|
425
|
+
invite_join_conference_mailer:
|
426
|
+
invite:
|
427
|
+
subject: Undangan untuk bergabung dalam konferensi
|
428
|
+
send_conference_diploma_mailer:
|
429
|
+
diploma:
|
430
|
+
subject: Diploma konferensi Anda telah dikirim
|
431
|
+
models:
|
432
|
+
conference_invite:
|
433
|
+
fields:
|
434
|
+
email: E-mail
|
435
|
+
name: Nama
|
436
|
+
registration_type: Jenis pendaftaran
|
437
|
+
sent_at: Dikirim pada
|
438
|
+
status: Status
|
439
|
+
status:
|
440
|
+
accepted: Diterima (%{at})
|
441
|
+
rejected: Ditolak (%{at})
|
442
|
+
sent: Terkirim
|
443
|
+
conference_registration:
|
444
|
+
fields:
|
445
|
+
email: E-mail
|
446
|
+
name: Nama
|
447
|
+
registration_type: Jenis pendaftaran
|
448
|
+
state: Negara
|
449
|
+
states:
|
450
|
+
confirmed: Dikonfirmasi
|
451
|
+
pending: Menunggu keputusan
|
452
|
+
pages:
|
453
|
+
home:
|
454
|
+
highlighted_conferences:
|
455
|
+
active_conferences: Konferensi aktif
|
456
|
+
see_all_conferences: Lihat semua konferensi
|
457
|
+
photo:
|
458
|
+
show:
|
459
|
+
close_modal: Tutup modal
|
460
|
+
photo: Foto
|
461
|
+
photos_list:
|
462
|
+
show:
|
463
|
+
related_photos: Foto
|
464
|
+
registration_types:
|
465
|
+
index:
|
466
|
+
choose_an_option: 'Pilih opsi pendaftaran Anda:'
|
467
|
+
login_as: Anda masuk sebagai %{name} <%{email}>
|
468
|
+
register: Daftar
|
469
|
+
title: Jenis pendaftaran
|
470
|
+
shared:
|
471
|
+
conference_user_login:
|
472
|
+
already_account: Apakah Anda sudah memiliki akun di desidim?
|
473
|
+
new_user: Pengguna baru?
|
474
|
+
sign_in: Login untuk mendaftar konferensi
|
475
|
+
sign_up: Buat akun di desidim untuk mendaftar konferensi
|
476
|
+
show:
|
477
|
+
details: Detail
|
478
|
+
introduction: pengantar
|
479
|
+
objectives: Tujuan
|
480
|
+
related_assemblies: Rakitan Terkait
|
481
|
+
related_consultations: Konsultasi Terkait
|
482
|
+
related_participatory_processes: Proses Partisipatif Terkait
|
483
|
+
statistics:
|
484
|
+
answers_count: Jawaban
|
485
|
+
comments_count: Komentar
|
486
|
+
conference_count: Konferensi
|
487
|
+
debates_count: Perdebatan
|
488
|
+
endorsements_count: Endorsemen
|
489
|
+
headline: Aktivitas
|
490
|
+
meetings_count: Rapat
|
491
|
+
orders_count: Suara
|
492
|
+
pages_count: Halaman
|
493
|
+
posts_count: Kiriman
|
494
|
+
projects_count: Proyek
|
495
|
+
proposals_count: Proposal
|
496
|
+
results_count: Hasil
|
497
|
+
surveys_count: Survei
|
498
|
+
users_count: Peserta
|
499
|
+
votes_count: Suara
|
500
|
+
events:
|
501
|
+
conferences:
|
502
|
+
conference_registration_validation_pending:
|
503
|
+
notification_title: Pendaftaran Anda untuk konferensi <a href="%{resource_url}">%{resource_title}</a> masih menunggu untuk dikonfirmasi.
|
504
|
+
conference_registration_confirmed:
|
505
|
+
notification_title: Pendaftaran Anda untuk konferensi <a href="%{resource_url}">%{resource_title}</a> telah dikonfirmasi.
|
506
|
+
conference_registrations_over_percentage:
|
507
|
+
email_intro: Slot "%{resource_title}" konferensi yang ditempati lebih dari %{percentage}%.
|
508
|
+
email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah admin ruang partisipatif konferensi.
|
509
|
+
email_subject: Slot konferensi "%{resource_title}" lebih dari %{percentage}%
|
510
|
+
notification_title: Slot konferensi <a href="%{resource_path}">%{resource_title}</a> diduduki lebih dari %{percentage}%.
|
511
|
+
conference_updated:
|
512
|
+
email_intro: 'Konferensi "%{resource_title}" telah diperbarui. Anda dapat membaca versi baru dari halamannya:'
|
513
|
+
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti konferensi "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
514
|
+
email_subject: Konferensi "%{resource_title}" telah diperbarui
|
515
|
+
notification_title: Konferensi <a href="%{resource_path}">%{resource_title}</a> telah diperbarui.
|
516
|
+
registrations_enabled:
|
517
|
+
email_intro: 'Konferensi "%{resource_title}" telah memungkinkan pendaftaran. Anda dapat mendaftarkan diri Anda di halamannya:'
|
518
|
+
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti konferensi "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
519
|
+
email_subject: Konferensi "%{resource_title}" telah memungkinkan pendaftaran.
|
520
|
+
notification_title: Konferensi <a href="%{resource_path}">%{resource_title}</a> telah memungkinkan pendaftaran.
|
521
|
+
upcoming_conference:
|
522
|
+
email_intro: 'Konferensi "%{resource_title}" berlangsung dalam 2 hari. Anda dapat membaca deskripsi dari halamannya:'
|
523
|
+
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti konferensi "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
524
|
+
email_subject: Konferensi "%{resource_title}" akan datang!
|
525
|
+
notification_title: Konferensi <a href="%{resource_path}">%{resource_title}</a> akan datang dalam 2 hari.
|
526
|
+
log:
|
527
|
+
value_types:
|
528
|
+
conference_presenter:
|
529
|
+
not_found: 'Konferensi tidak ditemukan di database (ID: %{id})'
|
530
|
+
media:
|
531
|
+
index:
|
532
|
+
description: Tautan tentang konferensi ini
|
533
|
+
title: Media dan Tautan
|
534
|
+
menu:
|
535
|
+
conferences: Konferensi
|
536
|
+
devise:
|
537
|
+
mailer:
|
538
|
+
join_conference:
|
539
|
+
subject: Undangan untuk bergabung dalam konferensi
|
540
|
+
layouts:
|
541
|
+
decidim:
|
542
|
+
conference_hero:
|
543
|
+
register: Daftar
|
544
|
+
conference_widgets:
|
545
|
+
show:
|
546
|
+
take_part: Ambil bagian
|
547
|
+
conferences:
|
548
|
+
conference:
|
549
|
+
take_part: Ambil bagian
|
550
|
+
index:
|
551
|
+
promoted_conferences: Konferensi yang dipromosikan
|
552
|
+
order_by_conferences:
|
553
|
+
conferences:
|
554
|
+
other: "%{count} konferensi"
|
555
|
+
promoted_conference:
|
556
|
+
more_info: Info lebih lanjut
|
557
|
+
take_part: Ambil bagian
|
558
|
+
conferences_nav:
|
559
|
+
conference_menu_item: Informasi
|
560
|
+
conference_partners_menu_item: Mitra
|
561
|
+
conference_speaker_menu_item: Pembicara
|
562
|
+
media: Media
|
563
|
+
venues: Venues
|