decidim-meetings 0.21.0 → 0.23.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_meetings_manifest.js +2 -0
- data/app/assets/images/decidim/gamification/badges/attended_meetings.svg +1 -106
- data/app/assets/images/decidim/meetings/icon.svg +1 -5
- data/app/assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 +16 -0
- data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +3 -0
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +9 -0
- data/app/cells/decidim/meetings/content_blocks/upcoming_events_cell.rb +2 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +7 -7
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -2
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -0
- data/app/cells/decidim/meetings/meeting_list_item/show.erb +3 -3
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_m/date.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/footer.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +9 -1
- data/app/cells/decidim/meetings/meeting_s/show.erb +6 -6
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -2
- data/app/cells/decidim/meetings/meetings_map_cell.rb +3 -1
- data/app/commands/decidim/meetings/admin/close_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +38 -28
- data/app/commands/decidim/meetings/admin/create_meeting.rb +36 -24
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +6 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +9 -3
- data/app/commands/decidim/meetings/create_meeting.rb +78 -0
- data/app/commands/decidim/meetings/update_meeting.rb +94 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -0
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +21 -7
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +4 -0
- data/app/controllers/decidim/meetings/meetings_controller.rb +76 -13
- data/app/controllers/decidim/meetings/registrations_controller.rb +1 -1
- data/app/controllers/decidim/meetings/versions_controller.rb +14 -0
- data/app/controllers/decidim/meetings/{meeting_widgets_controller.rb → widgets_controller.rb} +2 -2
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +7 -1
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +2 -8
- data/app/forms/decidim/meetings/admin/meeting_form.rb +24 -23
- data/app/forms/decidim/meetings/meeting_form.rb +78 -0
- data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -6
- data/app/helpers/decidim/meetings/application_helper.rb +26 -0
- data/app/helpers/decidim/meetings/map_helper.rb +2 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +13 -1
- data/app/models/decidim/meetings/agenda.rb +3 -0
- data/app/models/decidim/meetings/agenda_item.rb +3 -0
- data/app/models/decidim/meetings/meeting.rb +79 -23
- data/app/models/decidim/meetings/minutes.rb +3 -0
- data/app/models/decidim/meetings/service.rb +13 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -0
- data/app/permissions/decidim/meetings/permissions.rb +20 -0
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +3 -4
- data/app/presenters/decidim/meetings/meeting_presenter.rb +21 -6
- data/app/presenters/decidim/meetings/official_author_presenter.rb +14 -0
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +2 -8
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +1 -1
- data/app/services/decidim/meetings/diff_renderer.rb +21 -0
- data/app/services/decidim/meetings/meeting_search.rb +3 -25
- data/app/types/decidim/meetings/meeting_type.rb +1 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -6
- data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +1 -0
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +2 -9
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +5 -12
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +22 -3
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +4 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +5 -3
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +11 -4
- data/app/views/decidim/meetings/meetings/_count.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +13 -7
- data/app/views/decidim/meetings/meetings/_form.html.erb +51 -0
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +8 -8
- data/app/views/decidim/meetings/meetings/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +16 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +13 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +32 -8
- data/app/views/decidim/meetings/versions/index.html.erb +8 -0
- data/app/views/decidim/meetings/versions/show.html.erb +10 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -3
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +0 -8
- data/config/locales/bg-BG.yml +21 -0
- data/config/locales/bg.yml +21 -0
- data/config/locales/ca.yml +60 -7
- data/config/locales/cs.yml +68 -9
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +128 -71
- data/config/locales/el.yml +448 -0
- data/config/locales/en.yml +61 -8
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +60 -7
- data/config/locales/es-PY.yml +61 -8
- data/config/locales/es.yml +61 -8
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +60 -7
- data/config/locales/fi.yml +183 -130
- data/config/locales/fr-CA.yml +504 -0
- data/config/locales/fr.yml +60 -7
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +3 -7
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +11 -7
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +0 -9
- data/config/locales/is.yml +228 -0
- data/config/locales/it.yml +58 -7
- data/config/locales/ja-JP.yml +494 -0
- data/config/locales/ja.yml +496 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +452 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +52 -7
- data/config/locales/no.yml +35 -9
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +210 -147
- data/config/locales/pt-BR.yml +2 -10
- data/config/locales/pt.yml +232 -177
- data/config/locales/ro-RO.yml +500 -0
- data/config/locales/ru.yml +0 -8
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk-SK.yml +463 -0
- data/config/locales/sk.yml +458 -0
- data/config/locales/sl.yml +33 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +13 -0
- data/config/locales/sv.yml +67 -13
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +154 -98
- data/config/locales/uk.yml +0 -9
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +496 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200320105922_index_foreign_keys_in_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20200526110940_add_author_to_meetings.rb +30 -0
- data/db/migrate/20200702123209_create_meeting_services_table.rb +13 -0
- data/db/migrate/20200702123210_move_meeting_services_to_own_model.rb +31 -0
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +9 -0
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +29 -0
- data/db/migrate/20201111133246_add_salt_to_decidim_meetings.rb +8 -0
- data/lib/decidim/api/services_interface.rb +1 -7
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/component.rb +63 -11
- data/lib/decidim/meetings/engine.rb +3 -6
- data/lib/decidim/meetings/meeting_serializer.rb +1 -1
- data/lib/decidim/meetings/seeds/city.jpeg +0 -0
- data/lib/decidim/meetings/test/factories.rb +46 -8
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +16 -0
- metadata +88 -23
- data/app/presenters/decidim/meetings/admin_log/value_types/organizer_presenter.rb +0 -70
@@ -0,0 +1 @@
|
|
1
|
+
ko:
|
@@ -0,0 +1 @@
|
|
1
|
+
ko:
|
@@ -0,0 +1 @@
|
|
1
|
+
lt:
|
@@ -0,0 +1 @@
|
|
1
|
+
lt:
|
@@ -0,0 +1,452 @@
|
|
1
|
+
lv:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
agenda:
|
5
|
+
description: Apraksts
|
6
|
+
duration: Ilgums
|
7
|
+
title: Nosaukums
|
8
|
+
close_meeting:
|
9
|
+
attendees_count: Apmeklētāju skaits
|
10
|
+
attending_organizations: Organizāciju saraksts, kuras apmeklēja
|
11
|
+
closing_report: Ziņot
|
12
|
+
contributions_count: Papildinājumu daudzums
|
13
|
+
proposal_ids: Sanāksmē radītie priekšlikumi
|
14
|
+
meeting:
|
15
|
+
address: Adrese
|
16
|
+
available_slots: Sanāksmē pieejamais laiks runāšanai
|
17
|
+
decidim_category_id: Kategorija
|
18
|
+
decidim_scope_id: Darbības tvērums
|
19
|
+
description: Apraksts
|
20
|
+
end_time: Beigu laiks
|
21
|
+
location: Atrašanās vieta
|
22
|
+
location_hints: Norādījumi par atrašanās vietu
|
23
|
+
organizer_id: Organizators
|
24
|
+
private_meeting: Privāta sanāksme
|
25
|
+
registration_form_enabled: Reģistrācijas veidlapa ir iespējota
|
26
|
+
registration_terms: Reģistrācijas noteikumi
|
27
|
+
registrations_enabled: Reģistrācijas ir iespējotas
|
28
|
+
start_time: Sākuma laiks
|
29
|
+
title: Nosaukums
|
30
|
+
transparent: Caurskatāms
|
31
|
+
minutes:
|
32
|
+
audio_url: Audio URL
|
33
|
+
description: Apraksts
|
34
|
+
video_url: Video URL
|
35
|
+
visible: Ir redzams
|
36
|
+
errors:
|
37
|
+
models:
|
38
|
+
meeting_agenda:
|
39
|
+
attributes:
|
40
|
+
base:
|
41
|
+
too_many_minutes: Darba kārtības jautājumu ilgums pārsniedz sanāksmes ilgumu par %{count} minūtēm
|
42
|
+
too_many_minutes_child: No darba kārtības atvasinātie jautājumi pārsniedz sākotnējo jautājumu "%{parent_title}" ilgumu par %{count} minūtēm.
|
43
|
+
meeting_registration_invite:
|
44
|
+
attributes:
|
45
|
+
email:
|
46
|
+
already_invited: Šis e-pasta konts jau ir uzaicināts
|
47
|
+
models:
|
48
|
+
decidim/meetings/close_meeting_event: Sanāksme slēgta
|
49
|
+
decidim/meetings/create_meeting_event: Sanāksme
|
50
|
+
decidim/meetings/meeting_registrations_enabled_event: Reģistrācijas ir iespējotas
|
51
|
+
decidim/meetings/meeting_registrations_over_percentage_event: Reģistrācijas pārsniedz limitu
|
52
|
+
decidim/meetings/upcoming_meeting_event: Gaidāmā sanāksme
|
53
|
+
decidim/meetings/update_meeting_event: Sanāksme atjaunināta
|
54
|
+
activerecord:
|
55
|
+
models:
|
56
|
+
decidim/meetings/meeting:
|
57
|
+
zero: Sanāksmes
|
58
|
+
one: Sanāksme
|
59
|
+
other: Sanāksmes
|
60
|
+
decidim/meetings/minutes:
|
61
|
+
zero: Protokols
|
62
|
+
one: Protokols
|
63
|
+
other: Protokols
|
64
|
+
decidim/meetings/registration:
|
65
|
+
zero: Reģistrācija
|
66
|
+
one: Reģistrācija
|
67
|
+
other: Reģistrācija
|
68
|
+
decidim:
|
69
|
+
admin:
|
70
|
+
meeting_copies:
|
71
|
+
create:
|
72
|
+
error: Šīs sanāksmes dublēšanas laikā radās problēma.
|
73
|
+
success: Sanāksme veiksmīgi dublēta.
|
74
|
+
new:
|
75
|
+
copy: Kopēt
|
76
|
+
select: Atlasiet, kurus datus vēlaties dublēt
|
77
|
+
title: Dublēt sanāksmi
|
78
|
+
components:
|
79
|
+
meetings:
|
80
|
+
actions:
|
81
|
+
join: Pievienoties
|
82
|
+
name: Sanāksmes
|
83
|
+
settings:
|
84
|
+
global:
|
85
|
+
announcement: Paziņojums
|
86
|
+
comments_enabled: Komentāri ir iespējoti
|
87
|
+
default_registration_terms: Noklusējuma reģistrācijas noteikumi
|
88
|
+
enable_pads_creation: Iespējot kopdokumentu izveidi
|
89
|
+
resources_permissions_enabled: Katrā sanāksmē var iestatīt darbības atļaujas
|
90
|
+
step:
|
91
|
+
announcement: Paziņojums
|
92
|
+
comments_blocked: Komentāri ir bloķēti
|
93
|
+
events:
|
94
|
+
meetings:
|
95
|
+
meeting_closed:
|
96
|
+
affected_user:
|
97
|
+
email_intro: 'Jūsu sanāksme "%{resource_title}" tika slēgta. Jūs varat izlasīt tajā gūtās atziņas šajā lapā:'
|
98
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo jūs organizējāt sanāksmi "%{resource_title}".
|
99
|
+
email_subject: Sanāksme "%{resource_title}" tika slēgta
|
100
|
+
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> tika slēgta.
|
101
|
+
follower:
|
102
|
+
email_intro: 'Sanāksme "%{resource_title}" tika slēgta. Jūs varat izlasīt atziņas no tās šajā lapā:'
|
103
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
104
|
+
email_subject: Sanāksme "%{resource_title}" tika slēgta
|
105
|
+
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> tika slēgta.
|
106
|
+
meeting_created:
|
107
|
+
email_intro: Sanāksme "%{resource_title}" ir pievienota "%{participatory_space_title}", kurai sekojat.
|
108
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat "%{participatory_space_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
109
|
+
email_subject: '%{participatory_space_title} pievienota jauna sanāksme'
|
110
|
+
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> ir pievienota %{participatory_space_title}
|
111
|
+
meeting_registration_confirmed:
|
112
|
+
notification_title: Jūsu reģistrācija sanāksmei <a href="%{resource_url}">%{resource_title}</a> ir apstiprināta. Jūsu reģistrācijas kods ir %{registration_code}.
|
113
|
+
meeting_registrations_over_percentage:
|
114
|
+
email_intro: Piešķirtais laiks runāšanai sanāksmē "%{resource_title}" pārsniedz %{percentage}%.
|
115
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo esat sanāksmes līdzdalības telpas administrators.
|
116
|
+
email_subject: Piešķirtais laiks runāšanai sanāksmē "%{resource_title}" pārsniedz %{percentage}%.
|
117
|
+
notification_title: Piešķirtais laiks runāšanai sanāksmē <a href="%{resource_path}">%{resource_title}</a> pārsniedz %{percentage}%.
|
118
|
+
meeting_updated:
|
119
|
+
email_intro: 'Sanāksme "%{resource_title}" tika atjaunināta. Jūs varat lasīt jauno versiju tās lapā:'
|
120
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
121
|
+
email_subject: Sanāksme "%{resource_title}" tika atjaunināta
|
122
|
+
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> tika atjaunināta.
|
123
|
+
registration_code_validated:
|
124
|
+
email_intro: Jūsu reģistrācijas kods "%{registration_code}" sanāksmei "%{resource_title}" ir validēts.
|
125
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo jūsu reģistrācijas kods sanāksmei "%{resource_title}" ir validēts.
|
126
|
+
email_subject: Jūsu reģistrācijas kods "%{registration_code}" sanāksmei "%{resource_title}" ir validēts.
|
127
|
+
notification_title: Jūsu reģistrācijas kods "%{registration_code}" sanāksmei <a href="%{resource_path}">%{resource_title}</a> ir validēts.
|
128
|
+
registrations_enabled:
|
129
|
+
email_intro: 'Sanāksmei "%{resource_title}" ir atvērta reģistrācija. Jūs varat reģistrēties tās lapā:'
|
130
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
131
|
+
email_subject: Sanāksme "%{resource_title}" ir atvērta reģistrācijai.
|
132
|
+
notification_title: Sanāksmei <a href="%{resource_path}">%{resource_title}</a> ir atvērta reģistrācija.
|
133
|
+
upcoming_meeting:
|
134
|
+
email_intro: Sanāksme "%{resource_title}" sāksies ātrāk nekā pēc 48 stundām.
|
135
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
136
|
+
email_subject: Sanāksme "%{resource_title}" sāksies ātrāk nekā pēc 48 stundām.
|
137
|
+
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> sāksies ātrāk nekā pēc 48 stundām.
|
138
|
+
gamification:
|
139
|
+
badges:
|
140
|
+
attended_meetings:
|
141
|
+
conditions:
|
142
|
+
- Reģistrējieties sanāksmēm, kuras vēlaties apmeklēt
|
143
|
+
description: Šis žetons tiek piešķirts, apmeklējot vairākas klātienes sanāksmes.
|
144
|
+
description_another: Šis dalībnieks ir apmeklējis %{score} sanāksmes.
|
145
|
+
description_own: Jūs esat apmeklējis %{score} sanāksmes.
|
146
|
+
name: Apmeklētas sanāksmes
|
147
|
+
next_level_in: Apmeklējiet vēl %{score} sanāksmes, lai sasniegtu nākamo līmeni!
|
148
|
+
unearned_another: Šis dalībnieks vēl nav apmeklējis nevienu sanāksmi.
|
149
|
+
unearned_own: Jūs vēl neesat apmeklējis nevienu sanāksmi.
|
150
|
+
meetings:
|
151
|
+
actions:
|
152
|
+
agenda: Darba kārtība
|
153
|
+
attachment_collections: Mapes
|
154
|
+
attachments: Pielikumi
|
155
|
+
close: Aizvērt
|
156
|
+
confirm_destroy: Vai tiešām vēlaties dzēst šo sanāksmi?
|
157
|
+
destroy: Dzēst
|
158
|
+
edit: Labot
|
159
|
+
minutes: Protokols
|
160
|
+
new: Jauna sanāksme
|
161
|
+
preview: Priekšskatīt
|
162
|
+
registrations: Reģistrācija
|
163
|
+
title: Darbības
|
164
|
+
admin:
|
165
|
+
agenda:
|
166
|
+
agenda_item:
|
167
|
+
add_agenda_item_child: Pievienot darba kārtības apakšpunktu
|
168
|
+
agenda_item: Darba kārtības punkts
|
169
|
+
agenda_item_children: Darba kārtības apakšpunkti
|
170
|
+
down: Lejup
|
171
|
+
remove: Noņemt
|
172
|
+
up: Augšup
|
173
|
+
agenda_item_child:
|
174
|
+
agenda_item_child: Darba kārtības apakšpunkts
|
175
|
+
down: Lejup
|
176
|
+
remove: Noņemt
|
177
|
+
up: Augšup
|
178
|
+
create:
|
179
|
+
invalid: Šīs darba kārtības izveides laikā radās problēma
|
180
|
+
success: Darba kārtība ir veiksmīgi izveidota
|
181
|
+
edit:
|
182
|
+
title: Rediģēt darba kārtību
|
183
|
+
update: Atjaunināt
|
184
|
+
form:
|
185
|
+
add_agenda_item: Pievienot darba kārtības punktu
|
186
|
+
agenda_items: Darba kārtības punkti
|
187
|
+
end_date: Beigu datums
|
188
|
+
start_date: Sākuma datums
|
189
|
+
new:
|
190
|
+
create: Izveidot
|
191
|
+
title: Jauna darba kārtība
|
192
|
+
update:
|
193
|
+
invalid: Šīs darba kārtības atjaunināšanas laikā radās problēma
|
194
|
+
success: Darba kārtība ir veiksmīgi atjaunināta
|
195
|
+
exports:
|
196
|
+
meetings: Sanāksmes
|
197
|
+
registrations: Reģistrācija
|
198
|
+
invite_join_meeting_mailer:
|
199
|
+
invite:
|
200
|
+
decline: Noraidīt ielūgumu
|
201
|
+
invited_you_to_join_a_meeting: "%{invited_by} jūs aicina piedalīties sanāksmē %{application}. Jūs varat pieņemt vai noraidīt ielūgumu, izmantojot vienu no zemāk esošajām saitēm."
|
202
|
+
join: Pievienojieties sanāksmei '%{meeting_title}'
|
203
|
+
invites:
|
204
|
+
create:
|
205
|
+
error: Uzaicinot dalībnieku pievienoties sanāksmei, radās problēma.
|
206
|
+
success: Dalībnieks tika veiksmīgi uzaicināts pievienoties sanāksmei.
|
207
|
+
form:
|
208
|
+
attendee_type: Apmeklētāja veids
|
209
|
+
existing_user: Esošais dalībnieks
|
210
|
+
invite: Uzaicināt
|
211
|
+
invite_explanation: Dalībnieks tiks uzaicināts pievienoties gan sanāksmei, gan organizācijai.
|
212
|
+
non_user: Neeksistējošs dalībnieks
|
213
|
+
select_user: Izvēlieties dalībnieku
|
214
|
+
index:
|
215
|
+
filter:
|
216
|
+
accepted: Pieņemts
|
217
|
+
all: Visi
|
218
|
+
rejected: Noraidīts
|
219
|
+
sent: Nosūtīts
|
220
|
+
filter_by: Filtrēt pēc
|
221
|
+
invite_attendee: Uzaicināt apmeklētāju
|
222
|
+
invites: Ielūgumi
|
223
|
+
registrations_disabled: Jūs nevarat uzaicināt apmeklētāju, jo reģistrācija ir atspējota.
|
224
|
+
search: Meklēt
|
225
|
+
meeting_closes:
|
226
|
+
edit:
|
227
|
+
close: Aizvērt
|
228
|
+
title: Slēgt sanāksmi
|
229
|
+
meetings:
|
230
|
+
close:
|
231
|
+
invalid: Šīs sanāksmes slēgšanas laikā radās problēma
|
232
|
+
success: Sanāksme ir veiksmīgi slēgta
|
233
|
+
create:
|
234
|
+
invalid: Šīs sanāksmes izveides laikā radās problēma
|
235
|
+
success: Sanāksme ir veiksmīgi izveidota
|
236
|
+
destroy:
|
237
|
+
success: Sanāksme ir veiksmīgi izdzēsta
|
238
|
+
edit:
|
239
|
+
update: Atjaunināt
|
240
|
+
form:
|
241
|
+
address_help: 'Adresi Geocoder izmanto atrašanās vietas noteikšanai'
|
242
|
+
location_help: 'Atrašanās vieta: ziņojums, kas paredzēts lietotājiem, norādot tikšanās vietu'
|
243
|
+
location_hints_help: 'Norādījumi par atrašanās vietu: papildu informācija. Piemērs: ēkas pirmais stāvs'
|
244
|
+
index:
|
245
|
+
title: Sanāksmes
|
246
|
+
new:
|
247
|
+
create: Izveidot
|
248
|
+
title: Izveidot sanāksmi
|
249
|
+
service:
|
250
|
+
description: Apraksts
|
251
|
+
down: Lejup
|
252
|
+
remove: Noņemt
|
253
|
+
service: Pakalpojums
|
254
|
+
title: Nosaukums
|
255
|
+
up: Augšup
|
256
|
+
services:
|
257
|
+
add_service: Pievienot pakalpojumu
|
258
|
+
services: Pakalpojumi
|
259
|
+
update:
|
260
|
+
invalid: Šīs sanāksmes atjaunināšanas laikā radās problēma
|
261
|
+
success: Sanāksme ir veiksmīgi atjaunināta
|
262
|
+
minutes:
|
263
|
+
create:
|
264
|
+
invalid: Šīs protokola izveides laikā radās problēma
|
265
|
+
success: Protokols ir veiksmīgi izveidots
|
266
|
+
edit:
|
267
|
+
update: Atjaunināt
|
268
|
+
new:
|
269
|
+
create: Izveidot
|
270
|
+
title: Izveidot protokolu
|
271
|
+
update:
|
272
|
+
invalid: Šī protokola atjaunināšanas laikā radās problēma
|
273
|
+
success: Protokols ir veiksmīgi atjaunināts
|
274
|
+
models:
|
275
|
+
meeting:
|
276
|
+
name: Sanāksme
|
277
|
+
registrations:
|
278
|
+
edit:
|
279
|
+
save: Saglabāt
|
280
|
+
validate: Validēt
|
281
|
+
validate_registration_code: Validācijas reģistrācijas kods
|
282
|
+
form:
|
283
|
+
available_slots_help: Atstājiet 0, ja jums ir pieejams neierobežots laiks runāšanai
|
284
|
+
invites: Ielūgumi
|
285
|
+
recommendation_message: Privātuma apsvērumu dēļ mēs jums iesakām izdzēst šo ierakstu veidlapu, kad jums tā vairs nav vajadzīga. Pēc noklusējuma tas ir trīs mēnešus pēc sanāksmes beigām.
|
286
|
+
registration_form: Reģistrācijas veidlapa
|
287
|
+
registrations_count:
|
288
|
+
zero: Ir notikušas %{count} reģistrācijas.
|
289
|
+
one: Ir notikusi %{count} reģistrācija.
|
290
|
+
other: Ir notikušas %{count} reģistrācijas.
|
291
|
+
reserved_slots_help: Atstājiet 0, ja jums nav rezervēts laiks runāšanai.
|
292
|
+
reserved_slots_less_than: Jābūt mazāk vai vienādam ar %{count}
|
293
|
+
title: Reģistrācija
|
294
|
+
update:
|
295
|
+
invalid: Saglabājot reģistrācijas iestatījumus, radās problēma.
|
296
|
+
success: Sanāksmes reģistrācijas iestatījumi ir veiksmīgi saglabāti.
|
297
|
+
validate_registration_code:
|
298
|
+
invalid: Šis reģistrācijas kods nav derīgs.
|
299
|
+
success: Reģistrācijas kods ir veiksmīgi validēts.
|
300
|
+
admin_log:
|
301
|
+
invite:
|
302
|
+
create: "%{user_name} uzaicināja %{attendee_name} pievienoties %{resource_name} sanāksmei telpā %{space_name}"
|
303
|
+
deleted: "%{user_name} atsauca %{attendee_name} aicinājumu pievienoties %{resource_name} sanāksmei %{space_name} telpā"
|
304
|
+
update: "%{user_name} uzaicināja %{attendee_name} pievienoties %{resource_name} sanāksmei telpā %{space_name}"
|
305
|
+
meeting:
|
306
|
+
close: "%{user_name} slēdza %{resource_name} sanāksmi %{space_name} telpā"
|
307
|
+
create: "%{user_name} izveidoja %{resource_name} sanāksmi %{space_name} telpā"
|
308
|
+
delete: "%{user_name} izdzēsa %{resource_name} sanāksmi %{space_name} telpā"
|
309
|
+
export_registrations: "%{user_name} eksportēja reģistrācijas sanāksmei %{resource_name}, kas notiek %{space_name} telpā"
|
310
|
+
update: "%{user_name} atjaunināja %{resource_name} sanāksmi %{space_name} telpā"
|
311
|
+
value_types:
|
312
|
+
organizer_presenter:
|
313
|
+
not_found: 'Organizators netika atrasts datubāzē (ID: %{id})'
|
314
|
+
minutes:
|
315
|
+
create: "%{user_name} izveidoja sanāksmes %{resource_name} protokolu %{space_name} telpā"
|
316
|
+
update: "%{user_name} atjaunināja sanāksmes %{resource_name} protokolu %{space_name} telpā"
|
317
|
+
calendar_modal:
|
318
|
+
calendar_url: Kalendāra URL
|
319
|
+
close_window: Aizvērt logu
|
320
|
+
export_calendar: Eksportēt kalendāru
|
321
|
+
conference_venues: Konferenču norises vietas
|
322
|
+
content_blocks:
|
323
|
+
upcoming_events:
|
324
|
+
name: Gaidāmie notikumi
|
325
|
+
upcoming_events: Gaidāmās sanāksmes
|
326
|
+
view_all_events: Skatīt visu
|
327
|
+
directory:
|
328
|
+
meetings:
|
329
|
+
index:
|
330
|
+
all: Visi
|
331
|
+
date: Datums
|
332
|
+
meetings: Sanāksmes
|
333
|
+
past: Iepriekšējie
|
334
|
+
search: Meklēt
|
335
|
+
space_type: Līdzdalības telpa
|
336
|
+
upcoming: Gaidāmās
|
337
|
+
last_activity:
|
338
|
+
new_meeting_at_html: "<span>Jauna sanāksme plkst. %{link}</span>"
|
339
|
+
mailer:
|
340
|
+
invite_join_meeting_mailer:
|
341
|
+
invite:
|
342
|
+
subject: Ielūgums pievienoties sanāksmei
|
343
|
+
registration_mailer:
|
344
|
+
confirmation:
|
345
|
+
subject: Jūsu sanāksmes reģistrācija ir apstiprināta
|
346
|
+
meeting:
|
347
|
+
not_allowed: Jums nav atļauts skatīt šo sanāksmi
|
348
|
+
meetings:
|
349
|
+
filters:
|
350
|
+
category: Kategorija
|
351
|
+
date: Datums
|
352
|
+
search: Meklēt
|
353
|
+
filters_small_view:
|
354
|
+
close_modal: Aizvērt modal
|
355
|
+
filter: Filtrēt
|
356
|
+
filter_by: Filtrēt pēc
|
357
|
+
unfold: Atritināt
|
358
|
+
form:
|
359
|
+
location_hints_help: 'Norādījumi par atrašanās vietu: papildu informācija. Piemērs: ēkas pirmais stāvs'
|
360
|
+
meeting_minutes:
|
361
|
+
meeting_minutes: Sanāksmes protokols
|
362
|
+
related_information: Saistītā informācija
|
363
|
+
meetings:
|
364
|
+
no_meetings_warning: Neviena sanāksme neatbilst jūsu meklēšanas kritērijiem, vai arī neviena sanāksme nav plānota.
|
365
|
+
upcoming_meetings_warning: Pašlaik nav plānotas sanāksmes, taču šeit varat atrast visas iepriekšējās sanāksmes.
|
366
|
+
registration_confirm:
|
367
|
+
cancel: Atcelt
|
368
|
+
confirm: Apstiprināt
|
369
|
+
show:
|
370
|
+
attendees: Dalībnieku skaits
|
371
|
+
back: Atpakaļ uz sarakstu
|
372
|
+
contributions: Papildinājumu skaits
|
373
|
+
going: Apmeklēs
|
374
|
+
join: Pievienoties sanāksmei
|
375
|
+
meeting_report: Sanāksmes ziņojums
|
376
|
+
no_slots_available: Nav pieejama laika runāšanai
|
377
|
+
organizations: Apmeklējošās organizācijas
|
378
|
+
registration_code_help_text: Jūsu reģistrācijas kods
|
379
|
+
registration_state:
|
380
|
+
validated: VALIDĒTS
|
381
|
+
validation_pending: GAIDA VALIDĀCIJU
|
382
|
+
remaining_slots:
|
383
|
+
zero: "Atlicis %{count} laiks runāšanai"
|
384
|
+
one: "Atlicis %{count} laiks runāšanai"
|
385
|
+
other: "Atlicis %{count} laiks runāšanai"
|
386
|
+
view: Apskatīt
|
387
|
+
meetings_map:
|
388
|
+
view_meeting: Skatīt sanāksmi
|
389
|
+
models:
|
390
|
+
invite:
|
391
|
+
fields:
|
392
|
+
email: E-pasts
|
393
|
+
name: Nosaukums
|
394
|
+
sent_at: Nosūtīts plkst.
|
395
|
+
status: Statuss
|
396
|
+
status:
|
397
|
+
accepted: Pieņemts (%{at})
|
398
|
+
rejected: Noraidīts (%{at})
|
399
|
+
sent: Nosūtīts
|
400
|
+
meeting:
|
401
|
+
fields:
|
402
|
+
closed: Slēgts
|
403
|
+
end_time: Beigu datums
|
404
|
+
map: Karte
|
405
|
+
start_time: Sākuma datums
|
406
|
+
title: Nosaukums
|
407
|
+
read_more: "(lasīt vairāk)"
|
408
|
+
registration_mailer:
|
409
|
+
confirmation:
|
410
|
+
confirmed_html: Jūsu reģistrācija <a href="%{url}">%{title}</a> sanāksmei ir apstiprināta.
|
411
|
+
details: Sīkāka informācija par sanāksmi atrodama pielikumā.
|
412
|
+
registration_code: Jūsu reģistrācijas kods ir %{code}.
|
413
|
+
registrations:
|
414
|
+
create:
|
415
|
+
invalid: Pievienojoties šai sanāksmei, radās problēma
|
416
|
+
success: Jūs veiksmīgi pievienojāties sanāksmei. Tā kā esat reģistrējies šai sanāksmei, jūs tiksiet informēts par jaunumiem, kas ar to saistīti.
|
417
|
+
decline_invitation:
|
418
|
+
invalid: Noraidot ielūgumu, radās problēma.
|
419
|
+
success: Jūs veiksmīgi noraidījāt ielūgumu.
|
420
|
+
destroy:
|
421
|
+
invalid: Pametot šo sanāksmi, radās problēma.
|
422
|
+
success: Jūs veiksmīgi pametāt sanāksmi.
|
423
|
+
types:
|
424
|
+
private_meeting: Privāta sanāksme
|
425
|
+
transparent: Caurskatāms
|
426
|
+
metrics:
|
427
|
+
meetings:
|
428
|
+
description: Izveidoto sanāksmju skaits
|
429
|
+
object: sanāksmes
|
430
|
+
title: Sanāksmes
|
431
|
+
participatory_processes:
|
432
|
+
participatory_process_groups:
|
433
|
+
highlighted_meetings:
|
434
|
+
past_meetings: Iepriekšējās sanāksmes
|
435
|
+
upcoming_meetings: Gaidāmās sanāksmes
|
436
|
+
participatory_spaces:
|
437
|
+
highlighted_meetings:
|
438
|
+
past_meetings: Iepriekšējās sanāksmes
|
439
|
+
upcoming_meetings: Gaidāmās sanāksmes
|
440
|
+
upcoming_meeting_for_card:
|
441
|
+
upcoming_meeting: Gaidāmā sanāksme
|
442
|
+
resource_links:
|
443
|
+
meetings_through_proposals:
|
444
|
+
meeting_result: 'Saistītie rezultāti:'
|
445
|
+
result_meeting: 'Saistītās sanāksmes:'
|
446
|
+
proposals_from_meeting:
|
447
|
+
meeting_proposal: 'Saistītie priekšlikumi:'
|
448
|
+
proposal_meeting: 'Saistītās sanāksmes:'
|
449
|
+
devise:
|
450
|
+
mailer:
|
451
|
+
join_meeting:
|
452
|
+
subject: Ielūgums pievienoties sanāksmei
|