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
data/config/locales/pl.yml
CHANGED
@@ -48,13 +48,15 @@ pl:
|
|
48
48
|
other: Głośniki konferencyjne
|
49
49
|
decidim/conference_user_role:
|
50
50
|
one: Rola użytkownika konferencyjnego
|
51
|
-
few:
|
52
|
-
many:
|
53
|
-
other:
|
51
|
+
few: Rola użytkownika konferencyjnego
|
52
|
+
many: Rola użytkownika konferencyjnego
|
53
|
+
other: Rola użytkownika konferencyjnego
|
54
54
|
decidim:
|
55
55
|
admin:
|
56
56
|
actions:
|
57
|
+
confirm: Potwierdzać
|
57
58
|
new_conference: Nowa konferencja
|
59
|
+
send_diplomas: Wyślij dyplomy
|
58
60
|
conference_copies:
|
59
61
|
new:
|
60
62
|
copy: Kopiuj
|
@@ -67,6 +69,10 @@ pl:
|
|
67
69
|
destroy:
|
68
70
|
error: Wystąpił błąd podczas anulowania tej konferencji.
|
69
71
|
success: Konferencja nie została pomyślnie opublikowana.
|
72
|
+
conference_registration:
|
73
|
+
confirm:
|
74
|
+
error: Wystąpił błąd podczas potwierdzania rejestracji konferencji.
|
75
|
+
success: Rejestracja konferencji została pomyślnie potwierdzona.
|
70
76
|
conference_speakers:
|
71
77
|
create:
|
72
78
|
error: Wystąpił błąd podczas dodawania głośnika do tej konferencji.
|
@@ -105,8 +111,6 @@ pl:
|
|
105
111
|
create:
|
106
112
|
error: Wystąpił błąd podczas tworzenia nowej konferencji.
|
107
113
|
success: Konferencja została utworzona pomyślnie.
|
108
|
-
destroy:
|
109
|
-
success: Konferencja została pomyślnie usunięta.
|
110
114
|
edit:
|
111
115
|
update: Aktualizacja
|
112
116
|
exports:
|
@@ -151,14 +155,17 @@ pl:
|
|
151
155
|
attachments: Załączniki
|
152
156
|
categories: Kategorie
|
153
157
|
components: składniki
|
154
|
-
conference_admins:
|
155
|
-
conference_invites:
|
156
|
-
|
157
|
-
|
158
|
+
conference_admins: Użytkownicy konferencji
|
159
|
+
conference_invites: Zaprasza
|
160
|
+
conference_speakers: Głośniki
|
161
|
+
diploma: Dyplom
|
158
162
|
info: Informacje
|
159
163
|
media_links: Media Links
|
160
164
|
moderations: Moderacje
|
161
165
|
partners: Wzmacniacz
|
166
|
+
registration_types: Rodzaje rejestracji
|
167
|
+
registrations: Rejestracje
|
168
|
+
user_registrations: Rejestracja użytkowników
|
162
169
|
models:
|
163
170
|
conference:
|
164
171
|
fields:
|
@@ -198,6 +205,14 @@ pl:
|
|
198
205
|
types:
|
199
206
|
collaborator: Współpracownik
|
200
207
|
main_promotor: Główny promotor
|
208
|
+
registration_type:
|
209
|
+
fields:
|
210
|
+
conference_meetings: Spotkania konferencyjne
|
211
|
+
price: Cena £
|
212
|
+
registrations_count: Rejestracje się liczą
|
213
|
+
title: Tytuł
|
214
|
+
weight: Waga
|
215
|
+
name: Typ rejestracji
|
201
216
|
partners:
|
202
217
|
create:
|
203
218
|
error: Wystąpił błąd podczas dodawania partnera do tej konferencji.
|
@@ -213,14 +228,38 @@ pl:
|
|
213
228
|
update:
|
214
229
|
error: Wystąpił błąd podczas aktualizacji partnera konferencji.
|
215
230
|
success: Partner został pomyślnie zaktualizowany na tę konferencję.
|
231
|
+
registration_type_publications:
|
232
|
+
create:
|
233
|
+
error: Wystąpił błąd podczas publikowania tego typu rejestracji.
|
234
|
+
success: Typ rejestracji został pomyślnie opublikowany.
|
235
|
+
destroy:
|
236
|
+
error: Wystąpił błąd powodujący cofnięcie publikacji tego typu rejestracji.
|
237
|
+
success: Typ rejestracji nie został pomyślnie opublikowany.
|
238
|
+
registration_types:
|
239
|
+
create:
|
240
|
+
error: Wystąpił błąd podczas dodawania typu rejestracji dla tej konferencji.
|
241
|
+
success: Typ rejestracji został pomyślnie dodany do tej konferencji.
|
242
|
+
destroy:
|
243
|
+
success: Typ rejestracji został pomyślnie usunięty z tej konferencji.
|
244
|
+
edit:
|
245
|
+
title: Zaktualizuj typ rejestracji.
|
246
|
+
update: Aktualizacja
|
247
|
+
new:
|
248
|
+
create: Stwórz
|
249
|
+
title: Nowy typ rejestracji
|
250
|
+
update:
|
251
|
+
error: Wystąpił błąd aktualizacji typu rejestracji dla tej konferencji.
|
252
|
+
success: Typ rejestracji został pomyślnie zaktualizowany na potrzeby tej konferencji.
|
216
253
|
titles:
|
217
254
|
conferences: Konferencje
|
218
255
|
admin_log:
|
219
256
|
conference:
|
220
257
|
create: "%{user_name} utworzyło %{resource_name} konferencję"
|
221
258
|
publish: "%{user_name} opublikowało %{resource_name} konferencję"
|
259
|
+
send_conference_diplomas: "%{user_name} wysyłaj dyplomy do użytkowników %{resource_name} konferencji"
|
222
260
|
unpublish: "%{user_name} nie opublikowano %{resource_name} konferencji"
|
223
261
|
update: "%{user_name} zaktualizowano %{resource_name} konferencję"
|
262
|
+
update_diploma: "%{user_name} zaktualizował konferencję konfiguracji dyplomu %{resource_name}"
|
224
263
|
conference_speaker:
|
225
264
|
create: "%{user_name} utworzyło %{resource_name} głośnik w %{space_name} konferencjach"
|
226
265
|
delete: "%{user_name} usunął %{resource_name} głośnik z %{space_name} konferencji"
|
@@ -229,6 +268,22 @@ pl:
|
|
229
268
|
create: "%{user_name} zaproszonych %{resource_name} na %{space_name} konferencje"
|
230
269
|
delete: "%{user_name} usunął użytkownika %{resource_name} z %{space_name} konferencji"
|
231
270
|
update: "%{user_name} zmieniło rolę %{resource_name} w %{space_name} konferencjach"
|
271
|
+
conferences:
|
272
|
+
conference_registration:
|
273
|
+
confirm: "%{user_name} potwierdziło rejestrację konferencji na %{resource_name} konferencji"
|
274
|
+
partner:
|
275
|
+
create: "%{user_name} utworzono %{resource_name} do %{space_name} konferencji"
|
276
|
+
delete: "%{user_name} usunął użytkownika %{resource_name} z %{space_name} konferencji"
|
277
|
+
update: "%{user_name} zaktualizowano %{resource_name} w %{space_name} konferencjach"
|
278
|
+
registration_type:
|
279
|
+
create: "%{user_name} utworzyło %{resource_name} typ rejestracji w %{space_name} konferencjach"
|
280
|
+
publish: "%{user_name} opublikowało %{resource_name} typ rejestracji w %{space_name} konferencjach"
|
281
|
+
unpublish: "%{user_name} nie opublikował %{resource_name} rodzaju rejestracji w %{space_name} konferencjach"
|
282
|
+
update: "%{user_name} zaktualizował %{resource_name} typ rejestracji w %{space_name} konferencjach"
|
283
|
+
media_link:
|
284
|
+
create: "%{user_name} utworzyło %{resource_name} link medialny w %{space_name} konferencjach"
|
285
|
+
delete: "%{user_name} usunęło %{resource_name} link medialny z %{space_name} konferencji"
|
286
|
+
update: "%{user_name} zaktualizował %{resource_name} link do mediów w %{space_name} konferencjach"
|
232
287
|
conference_program:
|
233
288
|
index:
|
234
289
|
title: Program
|
@@ -284,27 +339,42 @@ pl:
|
|
284
339
|
many: Zarejestrowano %{count} rejestracji.
|
285
340
|
other: Zarejestrowano %{count} rejestracji.
|
286
341
|
slug_help: 'Strumienie adresów URL służą do generowania adresów URL wskazujących na tę konferencję. Akceptuje tylko litery, cyfry i łączniki i musi zaczynać się od litery. Przykład: %{url}'
|
342
|
+
diplomas:
|
343
|
+
edit:
|
344
|
+
save: Zapisać
|
345
|
+
title: Dyplom
|
287
346
|
invite_join_conference_mailer:
|
288
347
|
invite:
|
289
348
|
decline: Odrzuć zaproszenie "%{conference_title}"
|
290
349
|
invited_you_to_join_a_conference: "%{invited_by} zaprosiło Cię do przyłączenia się do konferencji o %{application}. Możesz go odrzucić lub zaakceptować, korzystając z poniższych linków."
|
291
|
-
|
350
|
+
registration: Rejestracja dla "%{conference_title}"
|
292
351
|
partners:
|
293
352
|
index:
|
294
353
|
title: Wzmacniacz
|
354
|
+
registration_types:
|
355
|
+
form:
|
356
|
+
select_conference_meetings: Wybierz spotkania konferencyjne
|
357
|
+
index:
|
358
|
+
title: Rodzaje rejestracji
|
359
|
+
send_conference_diploma_mailer:
|
360
|
+
diploma:
|
361
|
+
diploma_html: W załącznikach znajdziesz dyplom z konferencji <a href="%{url}">%{title}</a>.
|
362
|
+
diploma_user:
|
363
|
+
attendance_verified_by: Frekwencja zweryfikowana przez
|
364
|
+
certificate_of_attendance: Certyfikat uczestnictwa
|
365
|
+
certificate_of_attendance_description: Zaświadcza się, że <strong>%{user}</strong> wzięło udział i uczestniczyło w <strong>%{title}</strong> które odbyło się w <strong>%{location}</strong> na <strong>%{start} - %{end}</strong>
|
366
|
+
send_diploma:
|
367
|
+
error: Wystąpił problem podczas wysyłania dyplomów konferencji.
|
368
|
+
success: Dyplomy konferencji przesłane poprawnie
|
295
369
|
conference:
|
296
370
|
registration_confirm:
|
297
371
|
cancel: Anuluj
|
298
372
|
confirm: Potwierdzać
|
299
373
|
show:
|
374
|
+
free: Darmowy
|
300
375
|
going: Chodzenie
|
301
|
-
join: Dołącz do konferencji
|
302
376
|
no_slots_available: Brak dostępnych miejsc
|
303
|
-
|
304
|
-
one: Pozostało 1 miejsce
|
305
|
-
few: "Pozostało %{count} gniazd"
|
306
|
-
many: "Pozostało %{count} gniazd"
|
307
|
-
other: "Pozostało %{count} gniazd"
|
377
|
+
registration: Rejestracja
|
308
378
|
conference_program:
|
309
379
|
program_meeting:
|
310
380
|
content: Zawartość
|
@@ -317,7 +387,12 @@ pl:
|
|
317
387
|
conference_registration_mailer:
|
318
388
|
confirmation:
|
319
389
|
confirmed_html: Twoja rejestracja na konferencję <a href="%{url}">%{title}</a> została potwierdzona.
|
320
|
-
|
390
|
+
details_1: 'Jesteś zarejestrowany na konferencji z typem %{registration_type} . Koszt %{price} i możesz wziąć udział w następujących wydarzeniach:'
|
391
|
+
details_2: Szczegóły konferencji znajdują się w załączniku.
|
392
|
+
pending_validation:
|
393
|
+
confirmation_pending: Wkrótce otrzymasz potwierdzenie
|
394
|
+
details: 'Zarejestrowałeś się na typ %{registration_type} z kosztem %{price} i możesz wziąć udział w następujących wydarzeniach:'
|
395
|
+
pending_html: Twoja rejestracja na konferencję <a href="%{url}">%{title}</a> oczekuje na potwierdzenie.
|
321
396
|
conference_registrations:
|
322
397
|
create:
|
323
398
|
invalid: Podczas dołączania do tej konferencji wystąpił problem.
|
@@ -344,16 +419,12 @@ pl:
|
|
344
419
|
speakers: Głośniki
|
345
420
|
conferences:
|
346
421
|
partners:
|
347
|
-
collaborators:
|
348
|
-
main_promotors:
|
422
|
+
collaborators: Wzmacniacz
|
423
|
+
main_promotors: Organizatorzy
|
349
424
|
show:
|
350
|
-
already_account: Czy masz już konto w Decidim?
|
351
425
|
login_as: Jesteś zalogowany jako %{name} <%{email}>
|
352
426
|
make_conference_registration: 'Dokonaj rejestracji na konferencji:'
|
353
|
-
new_user: Nowy użytkownik?
|
354
427
|
register: Zarejestrować
|
355
|
-
sign_in: Zaloguj się, aby zarejestrować się na tej konferencji
|
356
|
-
sign_up: Zarejestruj się za darmo w decidimie, aby się zarejestrować
|
357
428
|
content_blocks:
|
358
429
|
highlighted_conferences:
|
359
430
|
name: Wyróżnione konferencje
|
@@ -363,14 +434,20 @@ pl:
|
|
363
434
|
conference_registration_mailer:
|
364
435
|
confirmation:
|
365
436
|
subject: Rejestracja Twojej konferencji została potwierdzona
|
437
|
+
pending_validation:
|
438
|
+
subject: Rejestracja Twojej konferencji oczekuje na potwierdzenie
|
366
439
|
invite_join_conference_mailer:
|
367
440
|
invite:
|
368
441
|
subject: Zaproszenie do przyłączenia się do konferencji
|
442
|
+
send_conference_diploma_mailer:
|
443
|
+
diploma:
|
444
|
+
subject: Twój dyplom konferencji został wysłany
|
369
445
|
models:
|
370
446
|
conference_invite:
|
371
447
|
fields:
|
372
448
|
email: E-mail
|
373
449
|
name: Nazwa
|
450
|
+
registration_type: Typ rejestracji
|
374
451
|
sent_at: Wysłane pod adresem
|
375
452
|
status: Status
|
376
453
|
status:
|
@@ -381,6 +458,11 @@ pl:
|
|
381
458
|
fields:
|
382
459
|
email: E-mail
|
383
460
|
name: Nazwa
|
461
|
+
registration_type: Typ rejestracji
|
462
|
+
state: Stan
|
463
|
+
states:
|
464
|
+
confirmed: Zatwardziały
|
465
|
+
pending: W oczekiwaniu
|
384
466
|
pages:
|
385
467
|
home:
|
386
468
|
highlighted_conferences:
|
@@ -393,6 +475,18 @@ pl:
|
|
393
475
|
photos_list:
|
394
476
|
show:
|
395
477
|
related_photos: Zdjęcia
|
478
|
+
registration_types:
|
479
|
+
index:
|
480
|
+
choose_an_option: 'Wybierz opcję rejestracji:'
|
481
|
+
login_as: Jesteś zalogowany jako %{name} <%{email}>
|
482
|
+
register: Zarejestrować
|
483
|
+
title: Rodzaje rejestracji
|
484
|
+
shared:
|
485
|
+
conference_user_login:
|
486
|
+
already_account: Czy masz już konto w Decidim?
|
487
|
+
new_user: Nowy użytkownik?
|
488
|
+
sign_in: Zaloguj się, aby zarejestrować się na konferencję
|
489
|
+
sign_up: Utwórz konto w decidimie, aby zarejestrować się na konferencję
|
396
490
|
show:
|
397
491
|
details: Detale
|
398
492
|
introduction: Wprowadzenie
|
@@ -419,6 +513,10 @@ pl:
|
|
419
513
|
votes_count: Głosy
|
420
514
|
events:
|
421
515
|
conferences:
|
516
|
+
conference_registration_validation_pending:
|
517
|
+
notification_title: Twoja rejestracja na konferencję <a href="%{resource_url}">%{resource_title}</a> oczekuje na potwierdzenie.
|
518
|
+
conference_registration_confirmed:
|
519
|
+
notification_title: Twoja rejestracja na konferencję <a href="%{resource_url}">%{resource_title}</a> została potwierdzona.
|
422
520
|
conference_registrations_over_percentage:
|
423
521
|
email_intro: Konferencje "%{resource_title}" zajmowane przez graczy zajmują ponad %{percentage}%.
|
424
522
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś administratorem przestrzeni partycypacyjnej konferencji.
|
@@ -434,6 +532,10 @@ pl:
|
|
434
532
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz konferencję "%{resource_title}". Możesz przestać go obserwować z poprzedniego linku.
|
435
533
|
email_subject: Konferencja "%{resource_title}" umożliwiła rejestrację.
|
436
534
|
notification_title: Konferencja <a href="%{resource_path}">%{resource_title}</a> umożliwiła rejestrację.
|
535
|
+
upcoming_conference:
|
536
|
+
email_intro: 'Konferencja "%{resource_title}" odbywa się za 2 dni. Możesz przeczytać opis na swojej stronie:'
|
537
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz konferencję "%{resource_title}". Możesz przestać go obserwować z poprzedniego linku.
|
538
|
+
notification_title: Konferencja <a href="%{resource_path}">%{resource_title}</a> nadchodzi za 2 dni.
|
437
539
|
log:
|
438
540
|
value_types:
|
439
541
|
conference_presenter:
|
@@ -450,6 +552,8 @@ pl:
|
|
450
552
|
subject: Zaproszenie do przyłączenia się do konferencji
|
451
553
|
layouts:
|
452
554
|
decidim:
|
555
|
+
conference_hero:
|
556
|
+
register: Zarejestrować
|
453
557
|
conference_widgets:
|
454
558
|
show:
|
455
559
|
take_part: Wziąć udział
|
@@ -472,5 +576,4 @@ pl:
|
|
472
576
|
conference_partners_menu_item: Wzmacniacz
|
473
577
|
conference_speaker_menu_item: Głośniki
|
474
578
|
media: Głoska bezdźwięczna
|
475
|
-
unfold: Rozwijać się
|
476
579
|
venues: Miejsca spotkań
|
data/config/locales/pt-BR.yml
CHANGED
@@ -48,7 +48,9 @@ pt-BR:
|
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: confirme
|
51
52
|
new_conference: Nova conferência
|
53
|
+
send_diplomas: Envie Diplomas
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: cópia de
|
@@ -61,6 +63,10 @@ pt-BR:
|
|
61
63
|
destroy:
|
62
64
|
error: Ocorreu um erro ao cancelar a publicação desta conferência.
|
63
65
|
success: Conferência não publicada com sucesso.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: Houve um erro ao confirmar este registro da conferência.
|
69
|
+
success: Registro de conferência confirmado com sucesso.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: Houve um erro ao adicionar um palestrante para essa conferência.
|
@@ -99,8 +105,6 @@ pt-BR:
|
|
99
105
|
create:
|
100
106
|
error: Ocorreu um erro ao criar uma nova conferência.
|
101
107
|
success: Conferência criada com sucesso.
|
102
|
-
destroy:
|
103
|
-
success: Conferência excluída com sucesso.
|
104
108
|
edit:
|
105
109
|
update: Atualizar
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ pt-BR:
|
|
145
149
|
attachments: Anexos
|
146
150
|
categories: Categorias
|
147
151
|
components: Componentes
|
148
|
-
conference_admins:
|
149
|
-
conference_invites:
|
150
|
-
|
151
|
-
|
152
|
+
conference_admins: Usuários da conferência
|
153
|
+
conference_invites: Convites
|
154
|
+
conference_speakers: caixas de som
|
155
|
+
diploma: Diploma
|
152
156
|
info: Informações
|
153
157
|
media_links: Links de Mídia
|
154
158
|
moderations: Moderações
|
155
159
|
partners: Parceiros
|
160
|
+
registration_types: Tipos de registro
|
161
|
+
registrations: Inscrições
|
162
|
+
user_registrations: Registros de usuários
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ pt-BR:
|
|
192
199
|
types:
|
193
200
|
collaborator: Colaborador
|
194
201
|
main_promotor: Principais promotores
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Reuniões da conferência
|
205
|
+
price: Preço
|
206
|
+
registrations_count: Contagem de registros
|
207
|
+
title: Título
|
208
|
+
weight: Peso
|
209
|
+
name: Tipo de Registro
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: Ocorreu um erro ao adicionar um parceiro para esta conferência.
|
@@ -207,14 +222,38 @@ pt-BR:
|
|
207
222
|
update:
|
208
223
|
error: Ocorreu um erro ao atualizar um parceiro para esta conferência.
|
209
224
|
success: Parceiro atualizado com sucesso para esta conferência.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: Ocorreu um erro ao publicar este tipo de registro.
|
228
|
+
success: Tipo de registro publicado com sucesso.
|
229
|
+
destroy:
|
230
|
+
error: Ocorreu um erro ao cancelar a publicação deste tipo de registro.
|
231
|
+
success: Tipo de registro não publicado com sucesso.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: Houve um erro ao adicionar um tipo de registro para esta conferência.
|
235
|
+
success: Tipo de registro adicionado com sucesso a esta conferência.
|
236
|
+
destroy:
|
237
|
+
success: Tipo de registro removido com sucesso desta conferência.
|
238
|
+
edit:
|
239
|
+
title: Atualize o tipo de registro.
|
240
|
+
update: Atualizar
|
241
|
+
new:
|
242
|
+
create: Crio
|
243
|
+
title: Novo tipo de registro
|
244
|
+
update:
|
245
|
+
error: Ocorreu um erro ao atualizar um tipo de registro para esta conferência.
|
246
|
+
success: Tipo de registro atualizado com sucesso para esta conferência.
|
210
247
|
titles:
|
211
248
|
conferences: Conferências
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} criou a conferência %{resource_name}"
|
215
252
|
publish: "%{user_name} publicou a conferencia%{resource_name}"
|
253
|
+
send_conference_diplomas: "%{user_name} enviar diplomas para os %{resource_name} usuários da conferência"
|
216
254
|
unpublish: "%{user_name} despublicou a conferencia%{resource_name}"
|
217
255
|
update: "%{user_name} Atualizou a conferência %{resource_name}"
|
256
|
+
update_diploma: "%{user_name} atualizou a configuração do diploma %{resource_name} conference"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} criou o %{resource_name} alto-falante na conferência de %{space_name}"
|
220
259
|
delete: "%{user_name} removeu o %{resource_name} alto-falante da conferência de %{space_name}"
|
@@ -223,6 +262,22 @@ pt-BR:
|
|
223
262
|
create: "%{user_name} convidou %{resource_name} para o conferencia %{space_name}"
|
224
263
|
delete: "%{user_name} removeu o usuário %{resource_name} da conferência de %{space_name}"
|
225
264
|
update: "%{user_name} mudou o papel de %{resource_name} na conferência de %{space_name}"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} confirmou o registro da conferência em %{resource_name} conferência"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} criado %{resource_name} para a conferência %{space_name}"
|
270
|
+
delete: "%{user_name} removeu o usuário %{resource_name} da conferência de %{space_name}"
|
271
|
+
update: "%{user_name} atualizado %{resource_name} na conferência de %{space_name}"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} criou o tipo de registro %{resource_name} na conferência de %{space_name}"
|
274
|
+
publish: "%{user_name} publicou o tipo de registro %{resource_name} na conferência %{space_name}"
|
275
|
+
unpublish: "%{user_name} não publicado o tipo de registro %{resource_name} na conferência %{space_name}"
|
276
|
+
update: "%{user_name} atualizou o tipo de registro %{resource_name} na conferência %{space_name}"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} criou o link de mídia %{resource_name} na conferência de %{space_name}"
|
279
|
+
delete: "%{user_name} removeu o link de mídia %{resource_name} da conferência de %{space_name}"
|
280
|
+
update: "%{user_name} atualizou a %{resource_name} link de mídia no %{space_name} conferência"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Programa
|
@@ -276,25 +331,42 @@ pt-BR:
|
|
276
331
|
one: Houve 1 registro.
|
277
332
|
other: Houve %{count} inscrições.
|
278
333
|
slug_help: 'Os slugs de URL são usados para gerar as URLs que apontam para esta conferência. Aceita apenas letras, números e traços e deve começar com uma letra. Exemplo: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: Salve
|
337
|
+
title: Diploma
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Recusar convite '%{conference_title}'
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} convidou você para participar de uma conferência em %{application}. Você pode recusar ou aceitá-lo através dos links abaixo."
|
283
|
-
|
342
|
+
registration: Registro para '%{conference_title}'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Parceiros
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Selecione as reuniões da conferência
|
349
|
+
index:
|
350
|
+
title: Tipos de registro
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: Você encontrará o diploma para a conferência <a href="%{url}">%{title}</a> nos anexos.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Atendimento verificado por
|
356
|
+
certificate_of_attendance: Certificado de participação
|
357
|
+
certificate_of_attendance_description: Certifica-se que <strong>%{user}</strong> participou e participou nos <strong>%{title}</strong> realizados em <strong>%{location}</strong> em <strong>%{start} - %{end}</strong>
|
358
|
+
send_diploma:
|
359
|
+
error: Houve um problema ao enviar os diplomas da conferência.
|
360
|
+
success: Diplomas da Conferência enviados corretamente
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Cancelar
|
290
364
|
confirm: confirme
|
291
365
|
show:
|
366
|
+
free: Livre
|
292
367
|
going: Indo
|
293
|
-
join: Junte-se à conferência
|
294
368
|
no_slots_available: Não há slots disponíveis
|
295
|
-
|
296
|
-
one: 1 slot restante
|
297
|
-
other: "%{count} slots restantes"
|
369
|
+
registration: Cadastro
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Conteúdo
|
@@ -307,7 +379,12 @@ pt-BR:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: Sua inscrição para a conferência <a href="%{url}">%{title}</a> foi confirmada.
|
310
|
-
|
382
|
+
details_1: 'Você está registrado na conferência com o tipo %{registration_type} . Tem um custo de %{price} e você pode assistir aos seguintes eventos:'
|
383
|
+
details_2: Você encontrará os detalhes da conferência no anexo.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: Você receberá a confirmação em breve
|
386
|
+
details: 'Você se registrou no tipo %{registration_type} com um custo de %{price} e pode participar dos seguintes eventos:'
|
387
|
+
pending_html: Seu registro para a conferência <a href="%{url}">%{title}</a> está pendente de ser confirmado.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: Houve um problema em participar desta conferência.
|
@@ -334,16 +411,12 @@ pt-BR:
|
|
334
411
|
speakers: caixas de som
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
|
-
collaborators:
|
338
|
-
main_promotors:
|
414
|
+
collaborators: Parceiros
|
415
|
+
main_promotors: Organizadores
|
339
416
|
show:
|
340
|
-
already_account: Você já tem uma conta na decidim?
|
341
417
|
login_as: Você está logado como %{name} <%{email}>
|
342
418
|
make_conference_registration: 'Faça seu cadastro na conferência:'
|
343
|
-
new_user: Novo usuário?
|
344
419
|
register: Registrar-se
|
345
|
-
sign_in: Entre para se registrar nesta conferência
|
346
|
-
sign_up: Registre-se gratuitamente em decidim para registrar
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Conferências destacadas
|
@@ -353,14 +426,20 @@ pt-BR:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: O registro da sua conferência foi confirmado
|
429
|
+
pending_validation:
|
430
|
+
subject: O registro da sua conferência está pendente de confirmação
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Convite para participar de uma conferência
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: O diploma da sua conferência foi enviado
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: O email
|
363
441
|
name: Nome
|
442
|
+
registration_type: Tipo de Registro
|
364
443
|
sent_at: Enviado em
|
365
444
|
status: Status
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ pt-BR:
|
|
371
450
|
fields:
|
372
451
|
email: O email
|
373
452
|
name: Nome
|
453
|
+
registration_type: Tipo de Registro
|
454
|
+
state: Estado
|
455
|
+
states:
|
456
|
+
confirmed: Confirmado
|
457
|
+
pending: Pendente
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ pt-BR:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Fotos
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Escolha sua opção de registro:'
|
473
|
+
login_as: Você está logado como %{name} <%{email}>
|
474
|
+
register: registo
|
475
|
+
title: Tipos de registro
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: Você já tem uma conta na decidim?
|
479
|
+
new_user: Novo usuário?
|
480
|
+
sign_in: Entre para se inscrever na conferência
|
481
|
+
sign_up: Crie uma conta no decidim para se inscrever na conferência
|
386
482
|
show:
|
387
483
|
details: Detalhes
|
388
484
|
introduction: Introdução
|
@@ -409,6 +505,10 @@ pt-BR:
|
|
409
505
|
votes_count: Votos
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: Seu registro para a conferência <a href="%{resource_url}">%{resource_title}</a> está pendente de ser confirmado.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: Sua inscrição para a conferência <a href="%{resource_url}">%{resource_title}</a> foi confirmada.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: Os espaços ocupados pela conferência "%{resource_title}" são superiores a %{percentage}%.
|
414
514
|
email_outro: Você recebeu esta notificação porque é um administrador do espaço participativo da conferência.
|
@@ -424,6 +524,11 @@ pt-BR:
|
|
424
524
|
email_outro: Você recebeu esta notificação porque está seguindo a conferência "%{resource_title}". Você pode deixar de segui-lo no link anterior.
|
425
525
|
email_subject: A conferência "%{resource_title}" habilitou os registros.
|
426
526
|
notification_title: A conferência <a href="%{resource_path}">%{resource_title}</a> permitiu registros.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: 'A conferência "%{resource_title}" está ocorrendo em dois dias. Você pode ler a descrição de sua página:'
|
529
|
+
email_outro: Você recebeu esta notificação porque está seguindo a conferência "%{resource_title}". Você pode deixar de segui-lo no link anterior.
|
530
|
+
email_subject: A conferência "%{resource_title}" está chegando!
|
531
|
+
notification_title: A conferência <a href="%{resource_path}">%{resource_title}</a> está chegando em 2 dias.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ pt-BR:
|
|
440
545
|
subject: Convite para participar de uma conferência
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: registo
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Participar
|
@@ -460,5 +567,4 @@ pt-BR:
|
|
460
567
|
conference_partners_menu_item: Parceiros
|
461
568
|
conference_speaker_menu_item: Alto-falantes
|
462
569
|
media: Mídia
|
463
|
-
unfold: Exibir
|
464
570
|
venues: Locais
|