decidim-conferences 0.28.4 → 0.28.5

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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/app/forms/decidim/conferences/admin/conference_form.rb +4 -4
  3. data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
  4. data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
  5. data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +9 -5
  6. data/app/models/decidim/conference.rb +1 -1
  7. data/app/views/decidim/conferences/admin/media_links/new.html.erb +1 -1
  8. data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +12 -8
  9. data/app/views/layouts/decidim/diploma.html.erb +1 -1
  10. data/config/initializers/wicked_pdf.rb +0 -2
  11. data/config/locales/ar.yml +0 -21
  12. data/config/locales/bg.yml +0 -21
  13. data/config/locales/bn-BD.yml +1 -0
  14. data/config/locales/bs-BA.yml +14 -0
  15. data/config/locales/ca.yml +11 -11
  16. data/config/locales/cs.yml +13 -13
  17. data/config/locales/de.yml +12 -12
  18. data/config/locales/el.yml +0 -21
  19. data/config/locales/en.yml +19 -19
  20. data/config/locales/es-MX.yml +12 -12
  21. data/config/locales/es-PY.yml +15 -15
  22. data/config/locales/es.yml +8 -8
  23. data/config/locales/eu.yml +164 -164
  24. data/config/locales/fi-plain.yml +11 -11
  25. data/config/locales/fi.yml +17 -17
  26. data/config/locales/fr-CA.yml +13 -13
  27. data/config/locales/fr.yml +13 -13
  28. data/config/locales/gl.yml +0 -21
  29. data/config/locales/hu.yml +0 -21
  30. data/config/locales/id-ID.yml +0 -21
  31. data/config/locales/it.yml +0 -21
  32. data/config/locales/ja.yml +8 -10
  33. data/config/locales/lb.yml +0 -19
  34. data/config/locales/lt.yml +0 -21
  35. data/config/locales/lv.yml +0 -21
  36. data/config/locales/nl.yml +0 -21
  37. data/config/locales/no.yml +0 -21
  38. data/config/locales/pl.yml +0 -21
  39. data/config/locales/pt-BR.yml +0 -21
  40. data/config/locales/pt.yml +0 -21
  41. data/config/locales/ro-RO.yml +13 -12
  42. data/config/locales/sk.yml +0 -21
  43. data/config/locales/sv.yml +10 -31
  44. data/config/locales/tr-TR.yml +0 -21
  45. data/config/locales/zh-CN.yml +0 -21
  46. data/config/locales/zh-TW.yml +0 -21
  47. data/decidim-conferences.gemspec +1 -2
  48. data/lib/decidim/conferences/version.rb +1 -1
  49. metadata +13 -25
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 040603c6aeb63cc76a35fa359b76aa9707de26ddc67277994fc7ceef5e4e04fc
4
- data.tar.gz: ddcfa0eb3534e322a57b8c4cd1da0542c7abeb12e5f809ba7b8eb42be4ae5d87
3
+ metadata.gz: 799db136737580b3118c90054f05f63d5ff38ced48374a73d307f20bfa331c39
4
+ data.tar.gz: c65f90582421ac958db3e72ae02fc2154b64493edeb2889865c668235539d290
5
5
  SHA512:
6
- metadata.gz: 951c929096cfd644b07e8586f0c3e927414fb08800ae44f3d269f1c868a08c2d11f71c8deae95aea7bb6c99ba20bf609047dda28cba4f8eae1c6041f8c6c9f97
7
- data.tar.gz: dedb930878ff2916c1288c129cd5372827ed516beec76da8227ff36e7dd20cbae248dbdee64a53957a59671fea35ca72b30eff9e75a870bc11fff3689d3260b2
6
+ metadata.gz: 189cfdff2ea5e9939381ac5402c13a53b422628f716a37d44f16bd89ba3ff949aef59fb73637b6295e43def166c5d2a27a7e5067469bc0c62ec937fad8a52952
7
+ data.tar.gz: 7c93100b3b430058a66f97779eab26303e899608c49866a6054f2ffdb75aacea209c61474dc98c00fba22bc5d3fde5037182bf3730506b4679949aedbfb967ee
@@ -12,10 +12,10 @@ module Decidim
12
12
 
13
13
  translatable_attribute :title, String
14
14
  translatable_attribute :slogan, String
15
- translatable_attribute :short_description, String
16
- translatable_attribute :description, String
17
- translatable_attribute :objectives, String
18
- translatable_attribute :registration_terms, String
15
+ translatable_attribute :short_description, Decidim::Attributes::RichText
16
+ translatable_attribute :description, Decidim::Attributes::RichText
17
+ translatable_attribute :objectives, Decidim::Attributes::RichText
18
+ translatable_attribute :registration_terms, Decidim::Attributes::RichText
19
19
 
20
20
  mimic :conference
21
21
 
@@ -10,7 +10,7 @@ module Decidim
10
10
 
11
11
  translatable_attribute :position, String
12
12
  translatable_attribute :affiliation, String
13
- translatable_attribute :short_bio, String
13
+ translatable_attribute :short_bio, Decidim::Attributes::RichText
14
14
 
15
15
  mimic :conference_speaker
16
16
 
@@ -11,7 +11,7 @@ module Decidim
11
11
  mimic :conference_registration_type
12
12
 
13
13
  translatable_attribute :title, String
14
- translatable_attribute :description, String
14
+ translatable_attribute :description, Decidim::Attributes::RichText
15
15
 
16
16
  attribute :weight, Integer
17
17
  attribute :price, Decimal
@@ -33,14 +33,18 @@ module Decidim
33
33
  private
34
34
 
35
35
  def add_diploma_attachment
36
- diploma = WickedPdf.new.pdf_from_string(
36
+ diploma = WickedPdf.new.pdf_from_string(pdf_content, orientation: "Landscape")
37
+
38
+ attachments["conference-#{@user.nickname.parameterize}-diploma.pdf"] = diploma
39
+ end
40
+
41
+ def pdf_content
42
+ Premailer.new(
37
43
  render_to_string(pdf: "conference-diploma",
38
44
  template: "decidim/conferences/admin/send_conference_diploma_mailer/diploma_user",
39
45
  layout: "decidim/diploma"),
40
- orientation: "Landscape"
41
- )
42
-
43
- attachments["conference-#{@user.nickname.parameterize}-diploma.pdf"] = diploma
46
+ with_html_string: true
47
+ ).to_inline_css
44
48
  end
45
49
  end
46
50
  end
@@ -136,7 +136,7 @@ module Decidim
136
136
  end
137
137
 
138
138
  def user_roles(role_name = nil)
139
- roles = Decidim::ConferenceUserRole.where(conference: self)
139
+ roles = Decidim::ConferenceUserRole.order_by_name.where(conference: self)
140
140
  return roles if role_name.blank?
141
141
 
142
142
  roles.where(role: role_name)
@@ -1,7 +1,7 @@
1
1
  <% add_decidim_page_title(t("media_links.new.title", scope: "decidim.admin")) %>
2
2
  <div class="item_show__header">
3
3
  <h1 class="item_show__header-title">
4
- <%= t("conference_speakers.new.title", scope: "decidim.admin") %>
4
+ <%= t("media_links.new.title", scope: "decidim.admin") %>
5
5
  </h1>
6
6
  </div>
7
7
  <div class="item__edit item__edit-1col">
@@ -1,11 +1,14 @@
1
1
  <main class="conference-diploma">
2
2
  <div class="diploma__border">
3
3
  <div class="diploma__content">
4
- <div class="small-11 small-centered">
5
- <div class="diploma__logo small-4 small-centered">
6
- <%= wicked_pdf_image_tag @conference.attached_uploader(:main_logo).variant_url(:thumb) %>
7
- </div>
8
- <div class="diploma__name small-10 small-centered">
4
+ <div>
5
+ <% logo = @conference.attached_uploader(:main_logo).variant(:thumb) %>
6
+ <% if logo %>
7
+ <div class="diploma__logo">
8
+ <%= image_tag "data:#{logo.blob.content_type};base64, #{Base64.encode64(logo.download.presence || "")}" %>
9
+ </div>
10
+ <% end %>
11
+ <div class="diploma__name">
9
12
  <h2><strong><%= translated_attribute(@conference.title) %></strong></h2>
10
13
  <h3><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance") %></h3>
11
14
  <p><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance_description", user: @user.name, title: translated_attribute(@conference.title), location: @conference.location, start: l(@conference.start_date, format: :decidim_short), end: l(@conference.end_date, format: :decidim_short) ).html_safe %></p>
@@ -13,9 +16,10 @@
13
16
  <hr class="mt-m mb-m">
14
17
  <div class="diploma__attendance">
15
18
  <strong><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.attendance_verified_by") %></strong>
16
- <div>
17
- <%= wicked_pdf_image_tag @conference.attached_uploader(:signature).variant_url(:thumb) %>
18
- </div>
19
+ <% signature = @conference.attached_uploader(:signature).variant(:thumb) %>
20
+ <% if signature %>
21
+ <div><%= image_tag "data:#{signature.blob.content_type};base64, #{Base64.encode64(signature.download.presence || "")}" %></div>
22
+ <% end %>
19
23
  <%= l(@conference.sign_date, format: :decidim_short) %>, <%= @conference.signature_name %>
20
24
  </div>
21
25
  </div>
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
5
  <meta name="viewport" content="width=device-width">
6
- <%= wicked_pdf_stylesheet_pack_tag "decidim_conference_diploma" %>
6
+ <%= stylesheet_pack_tag "decidim_conference_diploma" %>
7
7
  </head>
8
8
  <body>
9
9
  <%= yield %>
@@ -14,8 +14,6 @@ WickedPdf.config = {
14
14
  # Path to the wkhtmltopdf executable: This usually is not needed if using
15
15
  # one of the wkhtmltopdf-binary family of gems.
16
16
  # exe_path: '/usr/local/bin/wkhtmltopdf',
17
- # or
18
- exe_path: Gem.bin_path("wkhtmltopdf-binary", "wkhtmltopdf")
19
17
 
20
18
  # Layout file to be used for all PDFs
21
19
  # (but can be overridden in `render :pdf` calls)
@@ -116,13 +116,11 @@ ar:
116
116
  destroy:
117
117
  success: تم حذف رئيس المؤتمر بنجاح.
118
118
  edit:
119
- title: تحديث المتحدث المؤتمر.
120
119
  update: تحديث
121
120
  index:
122
121
  conference_speakers_title: المتحدثون في المؤتمر
123
122
  new:
124
123
  create: إنشاء
125
- title: رئيس المؤتمر الجديد.
126
124
  update:
127
125
  error: حدثت مشكلة أثناء تحديث متحدث المؤتمر هذا.
128
126
  success: تم تحديث مكبر صوت المؤتمر بنجاح.
@@ -133,11 +131,9 @@ ar:
133
131
  destroy:
134
132
  success: تمت إزالة مسؤول المؤتمر بنجاح.
135
133
  edit:
136
- title: تحديث مسؤول المؤتمر.
137
134
  update: تحديث
138
135
  new:
139
136
  create: إنشاء
140
- title: مشرف المؤتمر الجديد.
141
137
  update:
142
138
  error: حدثت مشكلة أثناء تحديث مشرف المؤتمر هذا.
143
139
  success: تم تحديث مشرف المؤتمر بنجاح.
@@ -166,20 +162,12 @@ ar:
166
162
  media_links:
167
163
  create:
168
164
  error: حدثت مشكلة أثناء إنشاء رابط وسائط جديد.
169
- success: تم إنشاء رابط الوسائط بنجاح.
170
- destroy:
171
- success: تم حذف رابط الوسائط بنجاح.
172
165
  edit:
173
- title: تحديث رابط الوسائط.
174
166
  update: تحديث
175
- index:
176
- media_links_title: روابط الوسائط
177
167
  new:
178
168
  create: إنشاء
179
- title: وصلة الوسائط
180
169
  update:
181
170
  error: حدثت مشكلة أثناء تحديث رابط الوسائط هذا.
182
- success: تم تحديث رابط الوسائط بنجاح.
183
171
  menu:
184
172
  conferences: المؤتمرات
185
173
  conferences_submenu:
@@ -191,14 +179,10 @@ ar:
191
179
  conference_admins: المشرفون على المؤتمر
192
180
  conference_invites: تدعو
193
181
  conference_speakers: مكبرات الصوت
194
- diploma: شهادة حضور
195
182
  info: عن هذا المؤتمر
196
- media_links: روابط الوسائط
197
183
  moderations: الإعتدال
198
184
  partners: شركاء
199
- registration_types: أنواع التسجيل
200
185
  registrations: التسجيلات
201
- user_registrations: تسجيلات المستخدم
202
186
  models:
203
187
  conference:
204
188
  fields:
@@ -227,7 +211,6 @@ ar:
227
211
  date: تاريخ
228
212
  link: حلقة الوصل
229
213
  title: عنوان
230
- name: وصلة الوسائط
231
214
  partner:
232
215
  fields:
233
216
  link: حلقة الوصل
@@ -253,7 +236,6 @@ ar:
253
236
  destroy:
254
237
  success: تمت إزالة شريك المؤتمر بنجاح.
255
238
  edit:
256
- title: تحديث شريك.
257
239
  update: تحديث
258
240
  new:
259
241
  create: إنشاء
@@ -275,7 +257,6 @@ ar:
275
257
  destroy:
276
258
  success: تمت إزالة نوع تسجيل المؤتمر بنجاح.
277
259
  edit:
278
- title: تحديث نوع التسجيل.
279
260
  update: تحديث
280
261
  new:
281
262
  create: إنشاء
@@ -369,7 +350,6 @@ ar:
369
350
  diplomas:
370
351
  edit:
371
352
  save: حفظ
372
- title: شهادة حضور
373
353
  invite_join_conference_mailer:
374
354
  invite:
375
355
  decline: رفض الدعوة "%{conference_title}"
@@ -388,7 +368,6 @@ ar:
388
368
  diploma_html: ستجد شهادة حضور المؤتمر <a href="%{url}">%{title}</a> في المرفقات.
389
369
  diploma_user:
390
370
  attendance_verified_by: تم التحقق من الحضور بواسطة
391
- certificate_of_attendance: شهادة حضور
392
371
  certificate_of_attendance_description: هذا هو التأكيد على أن <strong>%{user}</strong> قد حضر وشارك في <strong>%{title}</strong> الذي عقد في <strong>%{location}</strong> في <strong>%{start} - %{end}</strong>
393
372
  send_diploma:
394
373
  error: حدثت مشكلة أثناء إرسال شهادات حضور المؤتمر.
@@ -120,13 +120,11 @@ bg:
120
120
  destroy:
121
121
  success: Говорителят на конференцията беше изтрит успешно.
122
122
  edit:
123
- title: Актуализиране на говорителя на конференцията.
124
123
  update: Актуализация
125
124
  index:
126
125
  conference_speakers_title: Говорители на конференция
127
126
  new:
128
127
  create: Създаване
129
- title: Нов говорител на конференция.
130
128
  update:
131
129
  error: Възникна проблем при актуализирането на този говорител на конференцията.
132
130
  success: Говорителят на конференцията беше актуализиран успешно.
@@ -137,13 +135,11 @@ bg:
137
135
  destroy:
138
136
  success: Администраторът на конференцията беше премахнат успешно.
139
137
  edit:
140
- title: Актуализиране на администратора на конференцията.
141
138
  update: Актуализация
142
139
  index:
143
140
  conference_admins_title: Администратори на конференция
144
141
  new:
145
142
  create: Създаване
146
- title: Нов администратор на конференция.
147
143
  update:
148
144
  error: Възникна проблем при актуализирането на този администратор на конференцията.
149
145
  success: Администраторът на конференцията беше актуализиран успешно.
@@ -173,20 +169,12 @@ bg:
173
169
  media_links:
174
170
  create:
175
171
  error: Възникна проблем при създаването на нов медия линк.
176
- success: Медийният линк беше създаден успешно.
177
- destroy:
178
- success: Медийният линк беше изтрит успешно.
179
172
  edit:
180
- title: Актуализиране на медийния линк.
181
173
  update: Актуализация
182
- index:
183
- media_links_title: Медийни линкове
184
174
  new:
185
175
  create: Създаване
186
- title: Медия линк
187
176
  update:
188
177
  error: Възникна проблем при актуализирането на този медия линк.
189
- success: Медийният линк беше актуализиран успешно.
190
178
  menu:
191
179
  conferences: Конференции
192
180
  conferences_submenu:
@@ -198,15 +186,11 @@ bg:
198
186
  conference_admins: Администратори на конференция
199
187
  conference_invites: Покани
200
188
  conference_speakers: Говорители
201
- diploma: Сертификати за присъствие
202
189
  info: Относно тази конференция
203
- media_links: Медия линкове
204
190
  moderations: Модерации
205
191
  partners: Партньори
206
- registration_types: Типове регистрация
207
192
  registrations: Регистрации
208
193
  see_conference: Виз конференцията
209
- user_registrations: Потребителска регистрация
210
194
  models:
211
195
  conference:
212
196
  fields:
@@ -235,7 +219,6 @@ bg:
235
219
  date: Дата
236
220
  link: Линк
237
221
  title: Заглавие
238
- name: Медия линк
239
222
  partner:
240
223
  fields:
241
224
  link: Линк
@@ -261,7 +244,6 @@ bg:
261
244
  destroy:
262
245
  success: Партньорът за конференцията беше премахнат успешно.
263
246
  edit:
264
- title: Актуализиране на партньора.
265
247
  update: Актуализация
266
248
  new:
267
249
  create: Създаване
@@ -283,7 +265,6 @@ bg:
283
265
  destroy:
284
266
  success: Типът регистрация за конференцията беше премахнат успешно.
285
267
  edit:
286
- title: Актуализиране на типа на регистрацията.
287
268
  update: Актуализация
288
269
  new:
289
270
  create: Създаване
@@ -384,7 +365,6 @@ bg:
384
365
  diplomas:
385
366
  edit:
386
367
  save: Запази
387
- title: Сертификати за присъствие
388
368
  invite_join_conference_mailer:
389
369
  invite:
390
370
  decline: Отказ на поканата за „%{conference_title}“
@@ -404,7 +384,6 @@ bg:
404
384
  diploma_html: Ще намерите сертификата за присъствие на конференцията <a href="%{url}">%{title}</a> в прикачените файлове.
405
385
  diploma_user:
406
386
  attendance_verified_by: Присъствието е потвърдено от
407
- certificate_of_attendance: Сертификати за присъствие
408
387
  certificate_of_attendance_description: С настоящото се удостоверява, че <strong>%{user}</strong> посети и взе участие в(ъв) <strong>%{title}</strong>, <strong>%{location}</strong> на <strong>%{start} — %{end}</strong>
409
388
  send_diploma:
410
389
  error: Възникна проблем при изпращането на сертификатите за присъствие на конференцията.
@@ -0,0 +1 @@
1
+ bn:
@@ -0,0 +1,14 @@
1
+ ---
2
+ bs:
3
+ decidim:
4
+ admin:
5
+ models:
6
+ conference_user_role:
7
+ roles:
8
+ valuator: Procenjivač
9
+ events:
10
+ conferences:
11
+ role_assigned:
12
+ email_intro: Imenovani ste na funkciju %{role} konferencije %{resource_title}.
13
+ email_outro: Dobili ste ovo obaveštenje zbog toga što ste %{role} konferencije %{resource_title}.
14
+ email_subject: Imenovani ste na funkciju %{role} %{resource_title}.
@@ -120,13 +120,13 @@ ca:
120
120
  destroy:
121
121
  success: Ponent de la jornada eliminada correctament.
122
122
  edit:
123
- title: Actualitzar la ponència de la jornada.
123
+ title: Actualitzar la ponent de la jornada
124
124
  update: Actualitzar
125
125
  index:
126
126
  conference_speakers_title: Ponents de les conferències
127
127
  new:
128
128
  create: Crear
129
- title: Nova ponent de la jornada.
129
+ title: Nova ponent de la jornada
130
130
  update:
131
131
  error: S'ha produït un error en actualitzar la ponent d'aquesta jornada.
132
132
  success: Ponent de la jornada actualitzada correctament.
@@ -137,13 +137,13 @@ ca:
137
137
  destroy:
138
138
  success: Administradora de la jornada eliminada correctament.
139
139
  edit:
140
- title: Actualitzar administradora de la jornada.
140
+ title: Actualitzar administradora de la jornada
141
141
  update: Actualitzar
142
142
  index:
143
143
  conference_admins_title: Administradores de la jornada
144
144
  new:
145
145
  create: Crear
146
- title: Nova administradora de jornada.
146
+ title: Nova administradora de jornada
147
147
  update:
148
148
  error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
149
149
  success: Administradora de la jornada actualitzada correctament.
@@ -177,13 +177,13 @@ ca:
177
177
  destroy:
178
178
  success: S'ha eliminat correctament l'enllaç multimèdia.
179
179
  edit:
180
- title: Actualitzar l'enllaç multimèdia.
180
+ title: Actualitzar l'enllaç multimèdia
181
181
  update: Actualitzar
182
182
  index:
183
183
  media_links_title: Enllaços multimèdia
184
184
  new:
185
185
  create: Crear
186
- title: Enllaç multimèdia
186
+ title: Crear enllaç multimèdia
187
187
  update:
188
188
  error: S'ha produït un error en actualitzar aquest enllaç multimèdia.
189
189
  success: Enllaç multimèdia actualitzat correctament.
@@ -200,10 +200,10 @@ ca:
200
200
  conference_speakers: Ponents
201
201
  diploma: Certificat d'assistència
202
202
  info: Quant a aquesta jornada
203
- media_links: Enllaços multimedia
203
+ media_links: Enllaços multimèdia
204
204
  moderations: Moderacions
205
205
  partners: Col·laboradores
206
- registration_types: Tipus d'inscripcions
206
+ registration_types: Tipus d'inscripció
207
207
  registrations: Inscripcions
208
208
  see_conference: Veure la jornada
209
209
  user_registrations: Inscripcions de participants
@@ -235,7 +235,7 @@ ca:
235
235
  date: Data
236
236
  link: Enllaç
237
237
  title: Títol
238
- name: Enllaç multimedia
238
+ name: Enllaç multimèdia
239
239
  partner:
240
240
  fields:
241
241
  link: Enllaç
@@ -261,7 +261,7 @@ ca:
261
261
  destroy:
262
262
  success: Col·laboradora de la jornada eliminada correctament.
263
263
  edit:
264
- title: Actualitzar col·laboradora.
264
+ title: Actualitzar col·laboradora
265
265
  update: Actualitzar
266
266
  new:
267
267
  create: Crear
@@ -283,7 +283,7 @@ ca:
283
283
  destroy:
284
284
  success: El tipus d'inscripció s'ha eliminat correctament d'aquesta jornada.
285
285
  edit:
286
- title: Actualitzar el tipus de registre.
286
+ title: Actualitzar el tipus d'inscripció
287
287
  update: Actualitzar
288
288
  new:
289
289
  create: Crear
@@ -53,7 +53,7 @@ cs:
53
53
  conference_registration_type:
54
54
  description: Popis
55
55
  price: Cena
56
- title: Oslovení
56
+ title: Název
57
57
  weight: Pozice v řazení
58
58
  conference_speaker:
59
59
  affiliation: Příslušnost
@@ -126,13 +126,13 @@ cs:
126
126
  destroy:
127
127
  success: Řečník byl úspěšně smazán pro tuto konferenci.
128
128
  edit:
129
- title: Aktualizovat řečníka konference.
129
+ title: Aktualizovat řečníka konference
130
130
  update: Aktualizace
131
131
  index:
132
132
  conference_speakers_title: Řečníci konference
133
133
  new:
134
134
  create: Vytvořit
135
- title: Nový řečník konference.
135
+ title: Nový řečník konference
136
136
  update:
137
137
  error: Při této konferenci došlo k chybě při aktualizaci řečníka.
138
138
  success: Řečník konference byl úspěšně aktualizován.
@@ -143,13 +143,13 @@ cs:
143
143
  destroy:
144
144
  success: Administrátor konference byl úspěšně odstraněn.
145
145
  edit:
146
- title: Aktualizovat uživatele konference.
146
+ title: Aktualizovat správce konference
147
147
  update: Aktualizace
148
148
  index:
149
149
  conference_admins_title: Administrátoři konference
150
150
  new:
151
151
  create: Vytvořit
152
- title: Nový administrátor konference.
152
+ title: Nový správce konference
153
153
  update:
154
154
  error: Při aktualizaci tohoto administrátora konference došlo k potížím.
155
155
  success: Uživatel úspěšně aktualizován pro tuto konferenci.
@@ -179,17 +179,17 @@ cs:
179
179
  media_links:
180
180
  create:
181
181
  error: Při vytváření nového odkazu na média došlo k chybě.
182
- success: Odkaz na media byl úspěšně vytvořen.
182
+ success: Odkaz na média byl úspěšně vytvořen.
183
183
  destroy:
184
- success: Odkaz na media byl úspěšně smazán.
184
+ success: Odkaz na média byl úspěšně odstraněn.
185
185
  edit:
186
- title: Aktualizovat odkaz na media.
186
+ title: Aktualizovat odkaz na média
187
187
  update: Aktualizace
188
188
  index:
189
189
  media_links_title: Odkazy na média
190
190
  new:
191
191
  create: Vytvořit
192
- title: Odkaz na média
192
+ title: Vytvořit odkaz na média
193
193
  update:
194
194
  error: Při aktualizaci tohoto odkazu na média došlo k chybě.
195
195
  success: Odkaz na média byl úspěšně aktualizován.
@@ -204,7 +204,7 @@ cs:
204
204
  conference_admins: Administrátoři konference
205
205
  conference_invites: Pozvánky
206
206
  conference_speakers: Řečníci
207
- diploma: Potvrzení o účasti
207
+ diploma: Certifikát o účasti
208
208
  info: O této konferenci
209
209
  media_links: Odkazy na média
210
210
  moderations: Moderování
@@ -267,7 +267,7 @@ cs:
267
267
  destroy:
268
268
  success: Partner byl úspěšně odstraněn z této konference.
269
269
  edit:
270
- title: Aktualizovat partnera.
270
+ title: Aktualizovat partnera
271
271
  update: Aktualizace
272
272
  new:
273
273
  create: Vytvořit
@@ -289,7 +289,7 @@ cs:
289
289
  destroy:
290
290
  success: Typ registrace byl z této konference úspěšně odstraněn.
291
291
  edit:
292
- title: Aktualizovat typ registrace.
292
+ title: Aktualizovat typ registrace
293
293
  update: Aktualizace
294
294
  new:
295
295
  create: Vytvořit
@@ -412,7 +412,7 @@ cs:
412
412
  diploma_html: Naleznete certifikát o účasti na konferenci <a href="%{url}">%{title}</a> v přílohách.
413
413
  diploma_user:
414
414
  attendance_verified_by: Účet ověřil
415
- certificate_of_attendance: Potvrzení o účasti
415
+ certificate_of_attendance: Certifikát o účasti
416
416
  certificate_of_attendance_description: Tímto potvrzujeme, že <strong>%{user}</strong> se zúčastnilo a zúčastnilo se <strong>%{title}</strong> konaných na <strong>%{location}</strong> na <strong>%{start} - %{end}</strong>
417
417
  send_diploma:
418
418
  error: Při odesílání konferenčních certifikátů docházelo k problému.
@@ -120,13 +120,13 @@ de:
120
120
  destroy:
121
121
  success: Der Redner wurde für diese Konferenz erfolgreich gelöscht.
122
122
  edit:
123
- title: Konferenzsprecher aktualisieren
123
+ title: Referierende Person aktualisieren
124
124
  update: Aktualisieren
125
125
  index:
126
126
  conference_speakers_title: Konferenzsprecher
127
127
  new:
128
128
  create: Erstellen
129
- title: Neuer Konferenzsprecher.
129
+ title: Neue referierende Person
130
130
  update:
131
131
  error: Beim Aktualisieren des Sprechers für diese Konferenz ist ein Fehler aufgetreten.
132
132
  success: Der Sprecher wurde für diese Konferenz erfolgreich aktualisiert.
@@ -137,13 +137,13 @@ de:
137
137
  destroy:
138
138
  success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
139
139
  edit:
140
- title: Konferenzadmin aktualisieren.
140
+ title: Referierende Person aktualisieren
141
141
  update: Aktualisieren
142
142
  index:
143
143
  conference_admins_title: Konferenzadmins
144
144
  new:
145
145
  create: Erstellen
146
- title: Neuer Konferenzbenutzer
146
+ title: Neuer Konferenzadmin
147
147
  update:
148
148
  error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
149
149
  success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
@@ -173,9 +173,9 @@ de:
173
173
  media_links:
174
174
  create:
175
175
  error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
176
- success: Medienlink erfolgreich erstellt
176
+ success: Medienlink erfolgreich erstellt.
177
177
  destroy:
178
- success: Medienlink wurde erfolgreich gelöscht.
178
+ success: Medienlink erfolgreich gelöscht.
179
179
  edit:
180
180
  title: Medienlink aktualisieren
181
181
  update: Aktualisieren
@@ -183,10 +183,10 @@ de:
183
183
  media_links_title: Medienlinks
184
184
  new:
185
185
  create: Erstellen
186
- title: Medienlink
186
+ title: Medienlink erstellen
187
187
  update:
188
188
  error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
189
- success: Media Link wurde erfolgreich aktualisiert.
189
+ success: Medienlink erfolgreich aktualisiert.
190
190
  menu:
191
191
  conferences: Konferenzen
192
192
  conferences_submenu:
@@ -206,7 +206,7 @@ de:
206
206
  registration_types: Registrierungsarten
207
207
  registrations: Registrierungen
208
208
  see_conference: Konferenz ansehen
209
- user_registrations: Benutzerregistrierungen
209
+ user_registrations: Teilnehmende Benutzende
210
210
  models:
211
211
  conference:
212
212
  fields:
@@ -248,7 +248,7 @@ de:
248
248
  main_promotor: Hauptförderer
249
249
  registration_type:
250
250
  fields:
251
- conference_meetings: Konferenzsitzungen
251
+ conference_meetings: Veranstaltungen der Konferenz
252
252
  price: Preis
253
253
  registrations_count: Registrierungen zählen
254
254
  title: Titel
@@ -396,7 +396,7 @@ de:
396
396
  title: Partner
397
397
  registration_types:
398
398
  form:
399
- select_conference_meetings: Konferenzmeetings auswählen
399
+ select_conference_meetings: Konferenzveranstaltungen auswählen
400
400
  index:
401
401
  title: Registrierungsarten
402
402
  send_conference_diploma_mailer:
@@ -415,7 +415,7 @@ de:
415
415
  confirm: Bestätigen
416
416
  show:
417
417
  going: Gehen
418
- no_slots_available: Keine Steckplätze verfügbar
418
+ no_slots_available: Keine Plätze verfügbar
419
419
  registration: Anmeldung
420
420
  conference_program:
421
421
  show: