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,567 @@
|
|
1
|
+
tr:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
conference:
|
5
|
+
assemblies_ids: İlgili montajlar
|
6
|
+
banner_image: Banner resmi
|
7
|
+
consultations_ids: İlgili istişareler
|
8
|
+
copy_categories: Kategorileri kopyala
|
9
|
+
copy_components: Bileşenleri kopyala
|
10
|
+
copy_features: Özellikleri kopyala
|
11
|
+
decidim_scope_id: kapsam
|
12
|
+
description: Açıklama
|
13
|
+
hashtag: Başlık etiketi
|
14
|
+
hero_image: Ana resim
|
15
|
+
participatory_processes_ids: İlgili Katılımcı süreçler
|
16
|
+
promoted: Tanıtılan
|
17
|
+
published_at: Yayınlandı
|
18
|
+
scope_id: kapsam
|
19
|
+
scopes_enabled: Kapsamlar etkin
|
20
|
+
short_description: Kısa Açıklama
|
21
|
+
show_statistics: İstatistikleri göster
|
22
|
+
slogan: Slogan
|
23
|
+
slug: URL sümüklü böcek
|
24
|
+
title: Başlık
|
25
|
+
conference_speaker:
|
26
|
+
full_name: Ad Soyad
|
27
|
+
conference_user_role:
|
28
|
+
email: E-posta
|
29
|
+
name: isim
|
30
|
+
role: rol
|
31
|
+
errors:
|
32
|
+
models:
|
33
|
+
conference_registration_invite:
|
34
|
+
attributes:
|
35
|
+
email:
|
36
|
+
already_invited: Bu e-posta zaten davet edildi
|
37
|
+
activerecord:
|
38
|
+
models:
|
39
|
+
decidim/conference:
|
40
|
+
one: Konferans
|
41
|
+
other: Konferanslar
|
42
|
+
decidim/conference_speaker:
|
43
|
+
one: Konferans konuşmacı
|
44
|
+
other: Konferans konuşmacıları
|
45
|
+
decidim:
|
46
|
+
admin:
|
47
|
+
actions:
|
48
|
+
confirm: Onaylamak
|
49
|
+
new_conference: Yeni konferans
|
50
|
+
send_diplomas: Diploma gönder
|
51
|
+
conference_copies:
|
52
|
+
new:
|
53
|
+
copy: kopya
|
54
|
+
select: Çoğaltmak istediğiniz verileri seçin
|
55
|
+
title: Yinelenen konferans
|
56
|
+
conference_publications:
|
57
|
+
create:
|
58
|
+
error: Bu konferansı yayınlayan bir hata oluştu.
|
59
|
+
success: Konferans başarıyla yayınlandı.
|
60
|
+
destroy:
|
61
|
+
error: Bu konferansı yayından kaldırmada bir hata oluştu.
|
62
|
+
success: Konferans başarıyla yayından kaldırıldı.
|
63
|
+
conference_registration:
|
64
|
+
confirm:
|
65
|
+
error: Bu konferans kaydını onaylarken bir hata oluştu.
|
66
|
+
success: Konferans kaydı başarıyla onaylandı.
|
67
|
+
conference_speakers:
|
68
|
+
create:
|
69
|
+
error: Bu konferans için bir hoparlör eklenirken bir hata oluştu.
|
70
|
+
success: Bu konferans için konuşmacı başarıyla oluşturuldu.
|
71
|
+
destroy:
|
72
|
+
success: Bu konferans için konuşmacı başarıyla silindi.
|
73
|
+
edit:
|
74
|
+
title: Konferans konuşmacısını güncelle.
|
75
|
+
update: Güncelleştirme
|
76
|
+
index:
|
77
|
+
conference_speakers_title: Konferans konuşmacıları
|
78
|
+
new:
|
79
|
+
create: yaratmak
|
80
|
+
title: Yeni konferans konuşmacı.
|
81
|
+
update:
|
82
|
+
error: Bu konferans için konuşmacı güncellenirken bir hata oluştu.
|
83
|
+
success: Bu konferans için konuşmacı başarıyla güncellendi.
|
84
|
+
conference_user_roles:
|
85
|
+
create:
|
86
|
+
error: Bu konferans için bir kullanıcı eklenirken bir hata oluştu.
|
87
|
+
success: Kullanıcı bu konferansa başarıyla eklendi.
|
88
|
+
destroy:
|
89
|
+
success: Kullanıcı bu konferanstan başarıyla kaldırıldı.
|
90
|
+
edit:
|
91
|
+
title: Konferans kullanıcısını güncelle.
|
92
|
+
update: Güncelleştirme
|
93
|
+
index:
|
94
|
+
conference_admins_title: konferans kullanıcıları
|
95
|
+
new:
|
96
|
+
create: yaratmak
|
97
|
+
title: Yeni konferans kullanıcısı.
|
98
|
+
update:
|
99
|
+
error: Bu konferans için bir kullanıcı güncellendi bir hata oluştu.
|
100
|
+
success: Kullanıcı bu konferans için başarıyla güncellendi.
|
101
|
+
conferences:
|
102
|
+
create:
|
103
|
+
error: Yeni bir konferans oluştururken bir hata oluştu.
|
104
|
+
success: Konferans başarıyla oluşturuldu.
|
105
|
+
edit:
|
106
|
+
update: Güncelleştirme
|
107
|
+
exports:
|
108
|
+
registrations: Kayıtlar
|
109
|
+
form:
|
110
|
+
title: Genel bilgi
|
111
|
+
index:
|
112
|
+
not_published: Yayınlanmadı
|
113
|
+
published: Yayınlanan
|
114
|
+
new:
|
115
|
+
create: yaratmak
|
116
|
+
title: Konferans
|
117
|
+
update:
|
118
|
+
error: Bu konferans güncellenirken bir hata oluştu.
|
119
|
+
success: Konferans başarıyla güncellendi.
|
120
|
+
conferences_copies:
|
121
|
+
create:
|
122
|
+
error: Bu konferansı çoğaltırken bir hata oluştu.
|
123
|
+
success: Konferans başarıyla kopyalandı.
|
124
|
+
media_links:
|
125
|
+
create:
|
126
|
+
error: Yeni bir medya bağlantısı oluştururken bir hata oluştu.
|
127
|
+
success: Medya Bağlantısı başarıyla oluşturuldu.
|
128
|
+
destroy:
|
129
|
+
success: Medya Bağlantısı başarıyla silindi.
|
130
|
+
edit:
|
131
|
+
title: Medya bağlantısını güncelle.
|
132
|
+
update: Güncelleştirme
|
133
|
+
index:
|
134
|
+
media_links_title: Medya Bağlantıları
|
135
|
+
new:
|
136
|
+
create: yaratmak
|
137
|
+
title: Medya Bağlantısı
|
138
|
+
update:
|
139
|
+
error: Bu medya bağlantısını güncellerken bir hata oluştu.
|
140
|
+
success: Medya Bağlantısı başarıyla güncellendi.
|
141
|
+
menu:
|
142
|
+
conferences: Konferanslar
|
143
|
+
conferences_submenu:
|
144
|
+
attachment_collections: Klasörler
|
145
|
+
attachment_files: Dosyalar
|
146
|
+
attachments: Ekler
|
147
|
+
categories: Kategoriler
|
148
|
+
components: Bileşenler
|
149
|
+
conference_admins: Konferans kullanıcıları
|
150
|
+
conference_invites: Davetler
|
151
|
+
conference_speakers: Hoparlörler
|
152
|
+
diploma: Diploma
|
153
|
+
info: Bilgi
|
154
|
+
media_links: Medya Bağlantıları
|
155
|
+
moderations: Denetimler
|
156
|
+
partners: Ortaklar
|
157
|
+
registration_types: Kayıt Türleri
|
158
|
+
registrations: Kayıtlar
|
159
|
+
user_registrations: Kullanıcı Kayıtları
|
160
|
+
models:
|
161
|
+
conference:
|
162
|
+
fields:
|
163
|
+
created_at: Düzenlendi
|
164
|
+
promoted: Tanıtılan
|
165
|
+
published: Yayınlanan
|
166
|
+
title: Başlık
|
167
|
+
conference_speaker:
|
168
|
+
fields:
|
169
|
+
affiliation: üyelik
|
170
|
+
full_name: Ad Soyad
|
171
|
+
position: pozisyon
|
172
|
+
name: Konferans konuşmacısı
|
173
|
+
conference_user_role:
|
174
|
+
fields:
|
175
|
+
email: E-posta
|
176
|
+
name: isim
|
177
|
+
role: rol
|
178
|
+
name: Konferans Kullanıcısı
|
179
|
+
roles:
|
180
|
+
admin: yönetici
|
181
|
+
collaborator: işbirlikçi
|
182
|
+
moderator: arabulucu
|
183
|
+
media_link:
|
184
|
+
fields:
|
185
|
+
date: tarih
|
186
|
+
link: bağlantı
|
187
|
+
title: Başlık
|
188
|
+
name: Medya Bağlantısı
|
189
|
+
partner:
|
190
|
+
fields:
|
191
|
+
link: bağlantı
|
192
|
+
logo: Logo
|
193
|
+
name: isim
|
194
|
+
partner_type: tip
|
195
|
+
name: Ortak
|
196
|
+
types:
|
197
|
+
collaborator: işbirlikçi
|
198
|
+
main_promotor: Ana promotor
|
199
|
+
registration_type:
|
200
|
+
fields:
|
201
|
+
conference_meetings: Konferans toplantıları
|
202
|
+
price: Fiyat
|
203
|
+
registrations_count: Kayıt sayısı
|
204
|
+
title: Başlık
|
205
|
+
weight: Ağırlık
|
206
|
+
name: Kayıt tipi
|
207
|
+
partners:
|
208
|
+
create:
|
209
|
+
error: Bu konferans için bir ortak eklenirken bir hata oluştu.
|
210
|
+
success: İş ortağı bu konferansa başarıyla eklendi.
|
211
|
+
destroy:
|
212
|
+
success: İş ortağı bu konferanstan başarıyla kaldırıldı.
|
213
|
+
edit:
|
214
|
+
title: İş ortağı güncelle.
|
215
|
+
update: Güncelleştirme
|
216
|
+
new:
|
217
|
+
create: yaratmak
|
218
|
+
title: Yeni ortak
|
219
|
+
update:
|
220
|
+
error: Bu konferans için bir ortak güncellendi bir hata oluştu.
|
221
|
+
success: Bu konferans için iş ortağı başarıyla güncellendi.
|
222
|
+
registration_type_publications:
|
223
|
+
create:
|
224
|
+
error: Bu kayıt türünde bir hata oluştu.
|
225
|
+
success: Kayıt tipi başarıyla yayınlandı.
|
226
|
+
destroy:
|
227
|
+
error: Bu kayıt türünün yayından kaldırılmasıyla ilgili bir hata oluştu.
|
228
|
+
success: Kayıt türü başarıyla yayından kaldırıldı.
|
229
|
+
registration_types:
|
230
|
+
create:
|
231
|
+
error: Bu konferans için kayıt türü eklenirken bir hata oluştu.
|
232
|
+
success: Bu konferansa kayıt tipi başarıyla eklendi.
|
233
|
+
destroy:
|
234
|
+
success: Kayıt türü bu konferanstan başarıyla kaldırıldı.
|
235
|
+
edit:
|
236
|
+
title: Kayıt türünü güncelle.
|
237
|
+
update: Güncelleştirme
|
238
|
+
new:
|
239
|
+
create: yaratmak
|
240
|
+
title: Yeni kayıt türü
|
241
|
+
update:
|
242
|
+
error: Bu konferans için bir kayıt türü güncellendiğinde bir hata oluştu.
|
243
|
+
success: Bu konferans için kayıt tipi başarıyla güncellendi.
|
244
|
+
titles:
|
245
|
+
conferences: Konferanslar
|
246
|
+
admin_log:
|
247
|
+
conference:
|
248
|
+
create: "%{user_name} %{resource_name} konferansı oluşturdu"
|
249
|
+
publish: "%{user_name} %{resource_name} konferansı yayınladı"
|
250
|
+
send_conference_diplomas: "%{user_name} ile diplomalarını göndermek %{resource_name} konferans kullanıcıları"
|
251
|
+
unpublish: "%{user_name} %{resource_name} konferansı yayından kaldırıldı"
|
252
|
+
update: "%{user_name} %{resource_name} konferansı güncelledi"
|
253
|
+
update_diploma: "%{user_name} diploma konfigürasyonu %{resource_name} konferansını güncelledi"
|
254
|
+
conference_speaker:
|
255
|
+
create: "%{user_name} , %{space_name} konferansta %{resource_name} konuşmacıyı oluşturdu"
|
256
|
+
delete: "%{user_name} %{space_name} konferanstan %{resource_name} konuşmacıyı kaldırdı"
|
257
|
+
update: "%{user_name} , %{space_name} konferansta %{resource_name} konuşmacıyı güncelledi"
|
258
|
+
conference_user_role:
|
259
|
+
create: "%{user_name} %{space_name} konferansa %{resource_name} davet edildi"
|
260
|
+
delete: "%{user_name} kullanıcı uzaklaştırıldı %{resource_name} den %{space_name} konferans"
|
261
|
+
update: "%{user_name} , %{space_name} konferanstaki %{resource_name} rolünü değiştirdi"
|
262
|
+
conferences:
|
263
|
+
conference_registration:
|
264
|
+
confirm: "%{user_name} , %{resource_name} konferansta bir konferans kaydını onayladı"
|
265
|
+
partner:
|
266
|
+
create: "%{user_name} %{space_name} konferansa %{resource_name} oluşturuldu"
|
267
|
+
delete: "%{user_name} kullanıcı uzaklaştırıldı %{resource_name} den %{space_name} konferans"
|
268
|
+
update: "%{user_name} %{space_name} konferansta %{resource_name} güncellendi"
|
269
|
+
registration_type:
|
270
|
+
create: "%{user_name} , %{space_name} konferansta %{resource_name} kayıt tipini oluşturdu"
|
271
|
+
publish: "%{user_name} , %{space_name} konferansta %{resource_name} kayıt tipini yayınladı"
|
272
|
+
unpublish: "%{user_name} %{space_name} konferansta %{resource_name} kayıt tipini yayından kaldırıldı"
|
273
|
+
update: "%{user_name} , %{space_name} konferansta %{resource_name} kayıt tipini güncelledi"
|
274
|
+
media_link:
|
275
|
+
create: "%{user_name} , %{space_name} konferansta %{resource_name} medya bağlantısını oluşturdu"
|
276
|
+
delete: "%{user_name} , %{space_name} konferansın %{resource_name} medya bağlantısını kaldırdı"
|
277
|
+
update: "%{user_name} , %{space_name} konferanstaki %{resource_name} medya bağlantısını güncelledi"
|
278
|
+
conference_program:
|
279
|
+
index:
|
280
|
+
title: program
|
281
|
+
conference_speakers:
|
282
|
+
index:
|
283
|
+
title: Hoparlörler
|
284
|
+
conferences:
|
285
|
+
admin:
|
286
|
+
conference_copies:
|
287
|
+
form:
|
288
|
+
slug_help: 'URL sümükleri, bu konferansa işaret eden URL’leri oluşturmak için kullanılır. Sadece harfleri, sayıları ve kısa çizgileri kabul eder ve bir harfle başlamalıdır. Örnek: %{url}'
|
289
|
+
conference_invites:
|
290
|
+
create:
|
291
|
+
error: Kullanıcıyı konferansa katılmaya davet ederken bir sorun oluştu.
|
292
|
+
success: Kullanıcı konferansa katılmaya başarıyla davet edildi.
|
293
|
+
form:
|
294
|
+
attendee_type: Katılımcı Tipi
|
295
|
+
existing_user: Mevcut kullanıcı
|
296
|
+
invite_explanation: Kullanıcı konferansa ve organizasyona da davet edilecektir.
|
297
|
+
non_user: Mevcut olmayan kullanıcı
|
298
|
+
select_user: Kullanıcı seç
|
299
|
+
index:
|
300
|
+
filter:
|
301
|
+
accepted: Kabul edilmiş
|
302
|
+
all: Herşey
|
303
|
+
rejected: Reddedilen
|
304
|
+
sent: Gönderilen
|
305
|
+
filter_by: Tarafından filtre
|
306
|
+
invite_attendee: Katılımcı Davet Et
|
307
|
+
invites: Davetler
|
308
|
+
search: Arama
|
309
|
+
new:
|
310
|
+
explanation: Kullanıcı bir konferansa katılmaya davet edilecek. E-posta kayıtlı değilse, organizasyona da davet edilecektir.
|
311
|
+
invite: Davet et
|
312
|
+
new_invite: Kullanıcı davet et
|
313
|
+
conference_registrations:
|
314
|
+
index:
|
315
|
+
registrations: Kayıtlar
|
316
|
+
conference_speakers:
|
317
|
+
form:
|
318
|
+
existing_user: Mevcut kullanıcı
|
319
|
+
non_user: Kullanıcı yok
|
320
|
+
select_user: Kullanıcı seç
|
321
|
+
user_type: Kullanıcı tipi
|
322
|
+
index:
|
323
|
+
search: Arama
|
324
|
+
conferences:
|
325
|
+
form:
|
326
|
+
available_slots_help: Mevcut sınırsız yuvaya sahipseniz 0'a bırakın.
|
327
|
+
registrations_count:
|
328
|
+
one: 1 kayıt oldu.
|
329
|
+
other: '%{count} kayıt var.'
|
330
|
+
slug_help: 'URL sümükleri, bu konferansa işaret eden URL’leri oluşturmak için kullanılır. Sadece harfleri, sayıları ve kısa çizgileri kabul eder ve bir harfle başlamalıdır. Örnek: %{url}'
|
331
|
+
diplomas:
|
332
|
+
edit:
|
333
|
+
save: Kayıt etmek
|
334
|
+
title: Diploma
|
335
|
+
invite_join_conference_mailer:
|
336
|
+
invite:
|
337
|
+
decline: '''%{conference_title}'' davetiyesini reddet'
|
338
|
+
invited_you_to_join_a_conference: "%{invited_by} sizi %{application}bir konferansa katılmaya davet etti. Aşağıdaki bağlantılardan reddedebilir veya kabul edebilirsiniz."
|
339
|
+
registration: '''%{conference_title}'' için kayıt'
|
340
|
+
partners:
|
341
|
+
index:
|
342
|
+
title: Ortaklar
|
343
|
+
registration_types:
|
344
|
+
form:
|
345
|
+
select_conference_meetings: Konferans toplantıları seçin
|
346
|
+
index:
|
347
|
+
title: Kayıt türleri
|
348
|
+
send_conference_diploma_mailer:
|
349
|
+
diploma:
|
350
|
+
diploma_html: Eklerde konferansın diplomalarını <a href="%{url}">%{title}</a> bulabilirsiniz.
|
351
|
+
diploma_user:
|
352
|
+
attendance_verified_by: Katılım onaylandı
|
353
|
+
certificate_of_attendance: Katılım sertifikası
|
354
|
+
certificate_of_attendance_description: Bu, <strong>%{user}</strong> <strong>%{start} - %{end}</strong><strong>%{location}</strong> tutulan <strong>%{title}</strong> katılıp katıldığını onaylamaktır.
|
355
|
+
send_diploma:
|
356
|
+
error: Konferans diplomalarını gönderirken bir sorun oluştu.
|
357
|
+
success: Konferans Diplomatları doğru bir şekilde gönderildi
|
358
|
+
conference:
|
359
|
+
registration_confirm:
|
360
|
+
cancel: İptal etmek
|
361
|
+
confirm: Onaylamak
|
362
|
+
show:
|
363
|
+
free: Ücretsiz
|
364
|
+
going: Gidiyor
|
365
|
+
no_slots_available: Mevcut yuva yok
|
366
|
+
registration: kayıt
|
367
|
+
conference_program:
|
368
|
+
program_meeting:
|
369
|
+
content: içerik
|
370
|
+
location: yer
|
371
|
+
speakers: Hoparlörler
|
372
|
+
streaming: Yayın Akışı
|
373
|
+
show:
|
374
|
+
day: Gün
|
375
|
+
program: program
|
376
|
+
conference_registration_mailer:
|
377
|
+
confirmation:
|
378
|
+
confirmed_html: Konferans için kaydınız <a href="%{url}">%{title}</a> onaylandı.
|
379
|
+
details_1: '%{registration_type} tipi ile konferansa kayıt oldunuz. %{price} maliyeti vardır ve aşağıdaki etkinliklere katılabilirsiniz:'
|
380
|
+
details_2: Konferansın detaylarını ekte bulabilirsiniz.
|
381
|
+
pending_validation:
|
382
|
+
confirmation_pending: Onayı kısa bir süre alacaksınız
|
383
|
+
details: '%{price} maliyetle %{registration_type} yazdınız ve aşağıdaki etkinliklere katılabilirsiniz:'
|
384
|
+
pending_html: Konferans için kaydınız <a href="%{url}">%{title}</a> teyit edilmeyi bekliyor.
|
385
|
+
conference_registrations:
|
386
|
+
create:
|
387
|
+
invalid: Bu konferansa katılırken bir sorun oluştu.
|
388
|
+
success: Konferansa başarılı bir şekilde katıldınız.
|
389
|
+
decline_invitation:
|
390
|
+
invalid: Davetin reddedilmesiyle ilgili bir sorun oluştu.
|
391
|
+
success: Davetiyeyi başarıyla reddettiniz.
|
392
|
+
destroy:
|
393
|
+
invalid: Bu konferansı terk etmekle ilgili bir sorun oluştu.
|
394
|
+
success: Konferansı başarıyla terk ettiniz.
|
395
|
+
conference_speaker:
|
396
|
+
go_to_twitter: Twitter'a git
|
397
|
+
more_info: Daha fazla bilgi
|
398
|
+
personal_website: Kişisel web sitesi
|
399
|
+
show:
|
400
|
+
more_info: Daha fazla bilgi
|
401
|
+
conference_speaker_cell:
|
402
|
+
personal_url:
|
403
|
+
personal_website: Kişisel web sitesi
|
404
|
+
twitter_handle:
|
405
|
+
go_to_twitter: Twitter'a git
|
406
|
+
conference_speakers:
|
407
|
+
index:
|
408
|
+
speakers: Hoparlörler
|
409
|
+
conferences:
|
410
|
+
partners:
|
411
|
+
collaborators: Ortaklar
|
412
|
+
main_promotors: Organizatörler
|
413
|
+
show:
|
414
|
+
login_as: '%{name} <%{email}> olarak giriş yaptınız'
|
415
|
+
make_conference_registration: 'Kaydınızı konferansta yapın:'
|
416
|
+
register: Kayıt olmak
|
417
|
+
content_blocks:
|
418
|
+
highlighted_conferences:
|
419
|
+
name: Vurgulanan konferanslar
|
420
|
+
index:
|
421
|
+
title: Konferanslar
|
422
|
+
mailer:
|
423
|
+
conference_registration_mailer:
|
424
|
+
confirmation:
|
425
|
+
subject: Konferansınızın kaydı onaylandı
|
426
|
+
pending_validation:
|
427
|
+
subject: Konferansınızın kaydının onaylanması bekleniyor
|
428
|
+
invite_join_conference_mailer:
|
429
|
+
invite:
|
430
|
+
subject: Bir konferansa katılma daveti
|
431
|
+
send_conference_diploma_mailer:
|
432
|
+
diploma:
|
433
|
+
subject: Konferansınızın diploması gönderildi
|
434
|
+
models:
|
435
|
+
conference_invite:
|
436
|
+
fields:
|
437
|
+
email: E-posta
|
438
|
+
name: isim
|
439
|
+
registration_type: Kayıt tipi
|
440
|
+
sent_at: Adresine gönderildi
|
441
|
+
status: durum
|
442
|
+
status:
|
443
|
+
accepted: Kabul edildi (%{at})
|
444
|
+
rejected: Reddedildi (%{at})
|
445
|
+
sent: Gönderilen
|
446
|
+
conference_registration:
|
447
|
+
fields:
|
448
|
+
email: E-posta
|
449
|
+
name: isim
|
450
|
+
registration_type: Kayıt tipi
|
451
|
+
state: Belirtmek, bildirmek
|
452
|
+
states:
|
453
|
+
confirmed: onaylı
|
454
|
+
pending: kadar
|
455
|
+
pages:
|
456
|
+
home:
|
457
|
+
highlighted_conferences:
|
458
|
+
active_conferences: Aktif konferanslar
|
459
|
+
see_all_conferences: Tüm konferanslara bak
|
460
|
+
photo:
|
461
|
+
show:
|
462
|
+
close_modal: Yakın kalıcı
|
463
|
+
photo: Fotoğraf
|
464
|
+
photos_list:
|
465
|
+
show:
|
466
|
+
related_photos: Fotoğraflar
|
467
|
+
registration_types:
|
468
|
+
index:
|
469
|
+
choose_an_option: 'Kayıt seçeneğinizi seçin:'
|
470
|
+
login_as: '%{name} <%{email}> olarak giriş yaptınız'
|
471
|
+
register: Kayıt olmak
|
472
|
+
title: Kayıt türleri
|
473
|
+
shared:
|
474
|
+
conference_user_login:
|
475
|
+
already_account: Decidim'de hesabınız var mı?
|
476
|
+
new_user: Yeni kullanıcı?
|
477
|
+
sign_in: Konferansa kayıt olmak için giriş yapın
|
478
|
+
sign_up: Konferansa kayıt olmak için decidim'de bir hesap oluşturun
|
479
|
+
show:
|
480
|
+
details: ayrıntılar
|
481
|
+
introduction: Giriş
|
482
|
+
objectives: Hedefler
|
483
|
+
related_assemblies: İlgili montajlar
|
484
|
+
related_consultations: İlgili istişareler
|
485
|
+
related_participatory_processes: İlgili Katılımcı Süreçler
|
486
|
+
statistics:
|
487
|
+
answers_count: Cevaplar
|
488
|
+
comments_count: Yorumlar
|
489
|
+
conference_count: Konferanslar
|
490
|
+
debates_count: Tartışmalar
|
491
|
+
endorsements_count: Cirolar
|
492
|
+
headline: Aktivite
|
493
|
+
meetings_count: Toplantılar
|
494
|
+
orders_count: oy
|
495
|
+
pages_count: Sayfalar
|
496
|
+
posts_count: Mesajlar
|
497
|
+
projects_count: Projeler
|
498
|
+
proposals_count: Teklif
|
499
|
+
results_count: Sonuçlar
|
500
|
+
surveys_count: Anketler
|
501
|
+
users_count: Katılımcılar
|
502
|
+
votes_count: oy
|
503
|
+
events:
|
504
|
+
conferences:
|
505
|
+
conference_registration_validation_pending:
|
506
|
+
notification_title: Konferans için kaydınız <a href="%{resource_url}">%{resource_title}</a> teyit edilmeyi bekliyor.
|
507
|
+
conference_registration_confirmed:
|
508
|
+
notification_title: Konferans için kaydınız <a href="%{resource_url}">%{resource_title}</a> onaylandı.
|
509
|
+
conference_registrations_over_percentage:
|
510
|
+
email_intro: '"%{resource_title}" konferansı işgal yuvaları% %{percentage}üzerindedir.'
|
511
|
+
email_outro: Bu bildirimi, konferansın katılımcı alanının bir yöneticisi olduğunuz için aldınız.
|
512
|
+
email_subject: '"%{resource_title}" konferansı dolu yuvalar% %{percentage}üzerindedir'
|
513
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferans dolu yuvaları% %{percentage}üzerindedir.
|
514
|
+
conference_updated:
|
515
|
+
email_intro: '"%{resource_title}" konferansı güncellendi. Yeni sürümü kendi sayfasından okuyabilirsiniz:'
|
516
|
+
email_outro: '"%{resource_title}" konferansını izlediğiniz için bu bildirimi aldınız. Bir önceki bağlantıdan takip etmeyi bırakabilirsiniz.'
|
517
|
+
email_subject: '"%{resource_title}" konferansı güncellendi'
|
518
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferans güncellendi.
|
519
|
+
registrations_enabled:
|
520
|
+
email_intro: '"%{resource_title}" konferansı kayıtları etkinleştirdi. Kendini kendi sayfasına kaydedebilirsin:'
|
521
|
+
email_outro: '"%{resource_title}" konferansını izlediğiniz için bu bildirimi aldınız. Bir önceki bağlantıdan takip etmeyi bırakabilirsiniz.'
|
522
|
+
email_subject: '"%{resource_title}" konferansı kayıtları etkinleştirdi.'
|
523
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferansı kayıtları etkinleştirdi.
|
524
|
+
upcoming_conference:
|
525
|
+
email_intro: '"%{resource_title}" konferansı 2 gün içinde gerçekleşiyor. Açıklamayı kendi sayfasından okuyabilirsiniz:'
|
526
|
+
email_outro: '"%{resource_title}" konferansını izlediğiniz için bu bildirimi aldınız. Bir önceki bağlantıdan takip etmeyi bırakabilirsiniz.'
|
527
|
+
email_subject: '"%{resource_title}" konferansı geliyor!'
|
528
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferans 2 gün içinde geliyor.
|
529
|
+
log:
|
530
|
+
value_types:
|
531
|
+
conference_presenter:
|
532
|
+
not_found: 'Konferans veritabanında bulunamadı (ID: %{id})'
|
533
|
+
media:
|
534
|
+
index:
|
535
|
+
description: Bu konferans hakkında bağlantılar
|
536
|
+
title: Medya ve Linkler
|
537
|
+
menu:
|
538
|
+
conferences: Konferanslar
|
539
|
+
devise:
|
540
|
+
mailer:
|
541
|
+
join_conference:
|
542
|
+
subject: Bir konferansa katılma daveti
|
543
|
+
layouts:
|
544
|
+
decidim:
|
545
|
+
conference_hero:
|
546
|
+
register: Kayıt olmak
|
547
|
+
conference_widgets:
|
548
|
+
show:
|
549
|
+
take_part: Yer almak
|
550
|
+
conferences:
|
551
|
+
conference:
|
552
|
+
take_part: Yer almak
|
553
|
+
index:
|
554
|
+
promoted_conferences: Tanıtılan konferanslar
|
555
|
+
order_by_conferences:
|
556
|
+
conferences:
|
557
|
+
one: "%{count} konferans"
|
558
|
+
other: "%{count} konferans"
|
559
|
+
promoted_conference:
|
560
|
+
more_info: Daha fazla bilgi
|
561
|
+
take_part: Yer almak
|
562
|
+
conferences_nav:
|
563
|
+
conference_menu_item: Bilgi
|
564
|
+
conference_partners_menu_item: Ortaklar
|
565
|
+
conference_speaker_menu_item: Hoparlörler
|
566
|
+
media: medya
|
567
|
+
venues: Mekanları
|