decidim-meetings 0.22.0 → 0.23.3
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 +1 -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_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +2 -2
- data/app/cells/decidim/meetings/meeting_m_cell.rb +9 -1
- 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/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/meetings_controller.rb +11 -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/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 +25 -0
- data/app/helpers/decidim/meetings/meetings_helper.rb +12 -0
- 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 +69 -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 +7 -3
- data/app/presenters/decidim/meetings/official_author_presenter.rb +14 -0
- data/app/queries/decidim/meetings/filtered_meetings.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/admin/meeting_copies/_form.html.erb +2 -9
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +4 -11
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +4 -2
- 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 +8 -10
- data/app/views/decidim/meetings/meetings/_form.html.erb +51 -0
- data/app/views/decidim/meetings/meetings/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +15 -0
- 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 +24 -9
- data/app/views/decidim/meetings/versions/index.html.erb +8 -0
- data/app/views/decidim/meetings/versions/show.html.erb +10 -0
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +0 -8
- data/config/locales/bg-BG.yml +0 -8
- data/config/locales/bg.yml +21 -0
- data/config/locales/ca.yml +49 -7
- data/config/locales/cs.yml +57 -13
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +113 -71
- data/config/locales/el.yml +2 -7
- data/config/locales/en.yml +49 -7
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +49 -7
- data/config/locales/es-PY.yml +50 -8
- data/config/locales/es.yml +50 -8
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +49 -7
- data/config/locales/fi.yml +168 -126
- data/config/locales/fr-CA.yml +57 -7
- data/config/locales/fr.yml +57 -7
- data/config/locales/gl.yml +3 -7
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +2 -7
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +0 -7
- data/config/locales/is.yml +228 -0
- data/config/locales/it.yml +47 -7
- data/config/locales/ja-JP.yml +48 -9
- 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.yml +1 -0
- data/config/locales/{lv-LV.yml → lv.yml} +2 -2
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +49 -7
- data/config/locales/no.yml +34 -8
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +193 -149
- data/config/locales/pt-BR.yml +1 -9
- data/config/locales/pt.yml +47 -7
- data/config/locales/ro-RO.yml +48 -7
- data/config/locales/ru.yml +0 -8
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -7
- data/config/locales/sl.yml +25 -2
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sv.yml +56 -8
- 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 -7
- 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/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 +2 -0
- data/lib/decidim/meetings/component.rb +63 -11
- data/lib/decidim/meetings/engine.rb +3 -2
- data/lib/decidim/meetings/meeting_serializer.rb +1 -1
- data/lib/decidim/meetings/test/factories.rb +45 -8
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +62 -22
- data/app/presenters/decidim/meetings/admin_log/value_types/organizer_presenter.rb +0 -70
@@ -0,0 +1,228 @@
|
|
1
|
+
is:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
close_meeting:
|
5
|
+
attendees_count: Fjöldi þátttakenda
|
6
|
+
attending_organizations: Listi yfir samtök sem sóttu
|
7
|
+
closing_report: Skýrsla
|
8
|
+
contributions_count: Fjöldi framlaga
|
9
|
+
proposal_ids: Tillögur búin til á fundinum
|
10
|
+
meeting:
|
11
|
+
address: Heimilisfang
|
12
|
+
available_slots: Lausar rifa fyrir þennan fund
|
13
|
+
decidim_category_id: Flokkur
|
14
|
+
decidim_scope_id: Umfang
|
15
|
+
description: Lýsing
|
16
|
+
end_time: Lokatími
|
17
|
+
location: Staðsetning
|
18
|
+
location_hints: Staðsetningarmöguleikar
|
19
|
+
private_meeting: Einkafundur
|
20
|
+
registration_terms: Skráningarskilmálar
|
21
|
+
registrations_enabled: Skráningar virkt
|
22
|
+
start_time: Byrjunartími
|
23
|
+
title: Titill
|
24
|
+
transparent: Gegnsætt
|
25
|
+
minutes:
|
26
|
+
audio_url: Audio url
|
27
|
+
description: Lýsing
|
28
|
+
video_url: Video url
|
29
|
+
visible: Er sýnilegt
|
30
|
+
decidim:
|
31
|
+
admin:
|
32
|
+
meeting_copies:
|
33
|
+
new:
|
34
|
+
copy: Afrita
|
35
|
+
select: Veldu hvaða gögn þú vilt afrita
|
36
|
+
title: Afrita fundi
|
37
|
+
components:
|
38
|
+
meetings:
|
39
|
+
actions:
|
40
|
+
join: Skráðu þig
|
41
|
+
name: Fundir
|
42
|
+
settings:
|
43
|
+
global:
|
44
|
+
announcement: Tilkynning
|
45
|
+
comments_enabled: Athugasemdir virkt
|
46
|
+
default_registration_terms: Sjálfgefin skráningarskilmálar
|
47
|
+
step:
|
48
|
+
announcement: Tilkynning
|
49
|
+
comments_blocked: Athugasemdir læst
|
50
|
+
events:
|
51
|
+
meetings:
|
52
|
+
meeting_closed:
|
53
|
+
affected_user:
|
54
|
+
email_subject: Fundurinn "%{resource_title}" var lokaður
|
55
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn var lokaður.
|
56
|
+
follower:
|
57
|
+
email_intro: 'Fundurinn "%{resource_title}" var lokaður. Þú getur lesið niðurstöðurnar af síðunni:'
|
58
|
+
email_subject: Fundurinn "%{resource_title}" var lokaður
|
59
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn var lokaður.
|
60
|
+
meeting_created:
|
61
|
+
email_intro: Fundurinn "%{resource_title}" hefur verið bætt við "%{participatory_space_title}" sem þú fylgist með.
|
62
|
+
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{participatory_space_title}". Þú getur sleppt því frá fyrri tengilinn.
|
63
|
+
email_subject: Ný fundur bætt við %{participatory_space_title}
|
64
|
+
notification_title: Fundurinn <a href="%{resource_path}">%{resource_title}</a> hefur verið bætt við %{participatory_space_title}
|
65
|
+
meeting_registrations_over_percentage:
|
66
|
+
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú ert stjórnandi á þátttökustigi fundarins.
|
67
|
+
meeting_updated:
|
68
|
+
email_intro: '"%{resource_title}" fundurinn var uppfærður. Þú getur lesið nýja útgáfu af síðunni:'
|
69
|
+
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgir "%{resource_title}" fundinum. Þú getur sleppt því frá fyrri tengilinn.
|
70
|
+
email_subject: '"%{resource_title}" fundurinn var uppfærður'
|
71
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn var uppfærður.
|
72
|
+
registrations_enabled:
|
73
|
+
email_intro: '"%{resource_title}" fundurinn hefur gert skráningu kleift. Þú getur skráð þig á síðunni:'
|
74
|
+
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgir "%{resource_title}" fundinum. Þú getur sleppt því frá fyrri tengilinn.
|
75
|
+
email_subject: '"%{resource_title}" fundurinn hefur gert skráningu kleift.'
|
76
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn hefur gert skráningu kleift.
|
77
|
+
upcoming_meeting:
|
78
|
+
email_intro: '"%{resource_title}" fundurinn mun byrja á innan við 48 klst.'
|
79
|
+
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgir "%{resource_title}" fundinum. Þú getur sleppt því frá fyrri tengilinn.
|
80
|
+
email_subject: '"%{resource_title}" fundurinn mun byrja á innan við 48 klst.'
|
81
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn hefst á innan við 48 klst.
|
82
|
+
meetings:
|
83
|
+
actions:
|
84
|
+
attachments: Viðhengi
|
85
|
+
close: Loka
|
86
|
+
confirm_destroy: Ertu viss um að þú viljir eyða þessum fundi?
|
87
|
+
destroy: Eyða
|
88
|
+
edit: Breyta
|
89
|
+
minutes: Fundargerðir
|
90
|
+
preview: Preview
|
91
|
+
registrations: Skráningar
|
92
|
+
title: Aðgerðir
|
93
|
+
admin:
|
94
|
+
exports:
|
95
|
+
registrations: Skráningar
|
96
|
+
invite_join_meeting_mailer:
|
97
|
+
invite:
|
98
|
+
join: Taka þátt í fundi '%{meeting_title}'
|
99
|
+
meeting_closes:
|
100
|
+
edit:
|
101
|
+
close: Loka
|
102
|
+
title: Loka fundi
|
103
|
+
meetings:
|
104
|
+
close:
|
105
|
+
success: Fundur með góðum árangri lokað
|
106
|
+
create:
|
107
|
+
success: Fundur búin til með góðum árangri
|
108
|
+
destroy:
|
109
|
+
success: Fundur með góðum árangri eytt
|
110
|
+
edit:
|
111
|
+
update: Uppfæra
|
112
|
+
index:
|
113
|
+
title: Fundir
|
114
|
+
new:
|
115
|
+
create: Búa til
|
116
|
+
title: Búa til fundi
|
117
|
+
service:
|
118
|
+
description: Lýsing
|
119
|
+
down: Niður
|
120
|
+
remove: Fjarlægja
|
121
|
+
service: Þjónusta
|
122
|
+
title: Titill
|
123
|
+
up: Upp
|
124
|
+
services:
|
125
|
+
add_service: Bæta við þjónustu
|
126
|
+
services: Þjónusta
|
127
|
+
update:
|
128
|
+
success: Fundur tókst að uppfæra
|
129
|
+
minutes:
|
130
|
+
create:
|
131
|
+
success: Fundargerðir búin til með góðum árangri
|
132
|
+
edit:
|
133
|
+
update: Uppfæra
|
134
|
+
new:
|
135
|
+
create: Búa til
|
136
|
+
title: Búðu til mínútur
|
137
|
+
update:
|
138
|
+
success: Fundargerðir með góðum árangri uppfærð
|
139
|
+
models:
|
140
|
+
meeting:
|
141
|
+
name: Fundur
|
142
|
+
registrations:
|
143
|
+
edit:
|
144
|
+
save: Vista
|
145
|
+
form:
|
146
|
+
available_slots_help: Leyfi það til 0 ef þú hefur ótakmarkaða rifa í boði.
|
147
|
+
reserved_slots_help: Leggðu það á 0 ef þú hefur ekki áskilinn rifa
|
148
|
+
reserved_slots_less_than: Verður að vera minna en eða jafnt við %{count}
|
149
|
+
update:
|
150
|
+
success: Fundir skráningarstillingar voru vistaðar með góðum árangri.
|
151
|
+
admin_log:
|
152
|
+
meeting:
|
153
|
+
close: "%{user_name} lokaði %{resource_name} fundinum á %{space_name} plássinu"
|
154
|
+
create: "%{user_name} búið til %{resource_name} fundinn á %{space_name} plássinu"
|
155
|
+
delete: "%{user_name} eyddi %{resource_name} fundinum á %{space_name} plássinu"
|
156
|
+
export_registrations: "%{user_name} flutti skráningar %{resource_name} fundarins á %{space_name} plássinu"
|
157
|
+
update: "%{user_name} uppfært %{resource_name} fundi á %{space_name} plássi"
|
158
|
+
value_types:
|
159
|
+
organizer_presenter:
|
160
|
+
not_found: 'Skipuleggjandi fannst ekki í gagnagrunninum (ID: %{id})'
|
161
|
+
minutes:
|
162
|
+
create: "%{user_name} búið til fundargerð fundarins %{resource_name} á %{space_name} plássinu"
|
163
|
+
update: "%{user_name} uppfært fundargerðir fundarins %{resource_name} á %{space_name} plássinu"
|
164
|
+
mailer:
|
165
|
+
invite_join_meeting_mailer:
|
166
|
+
invite:
|
167
|
+
subject: Boð um þátttöku í fundi
|
168
|
+
registration_mailer:
|
169
|
+
confirmation:
|
170
|
+
subject: Skráning fundarins hefur verið staðfest
|
171
|
+
meeting:
|
172
|
+
not_allowed: Þú mátt ekki skoða þennan fund
|
173
|
+
meetings:
|
174
|
+
filters:
|
175
|
+
category: Flokkur
|
176
|
+
date: Dagsetning
|
177
|
+
search: Leita
|
178
|
+
filters_small_view:
|
179
|
+
close_modal: Loka mát
|
180
|
+
filter: Sía
|
181
|
+
filter_by: Sía eftir
|
182
|
+
unfold: Fella út
|
183
|
+
meetings:
|
184
|
+
no_meetings_warning: Engar fundir samræmast leitarskilyrðum þínum eða það er ekki fundur áætlað.
|
185
|
+
upcoming_meetings_warning: Eins og er, eru engar áætlanir fundar, en hér er hægt að finna allar fyrri fundi skráð.
|
186
|
+
registration_confirm:
|
187
|
+
cancel: Hætta við
|
188
|
+
confirm: Staðfesta
|
189
|
+
show:
|
190
|
+
attendees: Þátttakendur telja
|
191
|
+
contributions: Framlög telja
|
192
|
+
going: Fara
|
193
|
+
join: Skráðu þig í fundi
|
194
|
+
meeting_report: Fundarskýrsla
|
195
|
+
no_slots_available: Engar rifa í boði
|
196
|
+
organizations: Mæta stofnanir
|
197
|
+
models:
|
198
|
+
meeting:
|
199
|
+
fields:
|
200
|
+
closed: Lokað
|
201
|
+
end_time: Loka dagsetning
|
202
|
+
map: Kort
|
203
|
+
start_time: Upphafsdagur
|
204
|
+
title: Titill
|
205
|
+
read_more: "(Lestu meira)"
|
206
|
+
registration_mailer:
|
207
|
+
confirmation:
|
208
|
+
confirmed_html: Skráningin þín til fundarins <a href="%{url}">%{title}</a> hefur verið staðfest.
|
209
|
+
details: Þú finnur upplýsingar fundarins í viðhenginu.
|
210
|
+
registrations:
|
211
|
+
destroy:
|
212
|
+
success: Þú hefur skilið eftir fundinn með góðum árangri.
|
213
|
+
types:
|
214
|
+
private_meeting: Einkafundur
|
215
|
+
transparent: Gegnsætt
|
216
|
+
participatory_processes:
|
217
|
+
participatory_process_groups:
|
218
|
+
highlighted_meetings:
|
219
|
+
past_meetings: Fyrri fundi
|
220
|
+
upcoming_meetings: Næstu fundir
|
221
|
+
participatory_spaces:
|
222
|
+
highlighted_meetings:
|
223
|
+
past_meetings: Fyrri fundi
|
224
|
+
upcoming_meetings: Næstu fundir
|
225
|
+
devise:
|
226
|
+
mailer:
|
227
|
+
join_meeting:
|
228
|
+
subject: Boð um þátttöku í fundi
|
data/config/locales/it.yml
CHANGED
@@ -16,10 +16,12 @@ it:
|
|
16
16
|
available_slots: Posti disponibili per questo incontro
|
17
17
|
decidim_category_id: Categoria
|
18
18
|
decidim_scope_id: Visibilità
|
19
|
+
decidim_user_group_id: Gruppo di utenti
|
19
20
|
description: Descrizione
|
20
21
|
end_time: Orario fine
|
21
22
|
location: Luogo
|
22
23
|
location_hints: Informazione sul luogo
|
24
|
+
organizer_gid: Crea come
|
23
25
|
organizer_id: Organizzatore
|
24
26
|
private_meeting: Incontro privato
|
25
27
|
registration_form_enabled: Modulo di registrazione abilitato
|
@@ -81,12 +83,16 @@ it:
|
|
81
83
|
global:
|
82
84
|
announcement: Annuncio
|
83
85
|
comments_enabled: Commenti abilitati
|
86
|
+
comments_max_length: Lunghezza massima dei commenti (Lasciare 0 per il valore predefinito)
|
87
|
+
creation_enabled_for_participants: I partecipanti possono creare riunioni
|
84
88
|
default_registration_terms: Termini di registrazione predefiniti
|
85
89
|
enable_pads_creation: Abilita la creazione di pad
|
86
90
|
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
87
91
|
step:
|
88
92
|
announcement: Annuncio
|
89
93
|
comments_blocked: Commenti bloccati
|
94
|
+
creation_enabled_for_participants: Creazione delle riunioni da parte dei partecipanti abilitata
|
95
|
+
creation_enabled_for_user_groups: Creazione delle riunioni da parte dei partecipanti abilitata
|
90
96
|
events:
|
91
97
|
meetings:
|
92
98
|
meeting_closed:
|
@@ -227,9 +233,6 @@ it:
|
|
227
233
|
edit:
|
228
234
|
close: Chiudi
|
229
235
|
title: Chiusura meeting
|
230
|
-
meeting_copies:
|
231
|
-
form:
|
232
|
-
select_organizer: Seleziona l'organizzatore
|
233
236
|
meetings:
|
234
237
|
close:
|
235
238
|
invalid: C'è stato un problema durante la chiusura di questo meeting.
|
@@ -249,7 +252,6 @@ it:
|
|
249
252
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
250
253
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
251
254
|
location_hints_help: 'Suggerimenti di posizione: informazioni aggiuntive. Esempio: il piano dell''edificio'
|
252
|
-
select_organizer: Seleziona l'organizzatore
|
253
255
|
index:
|
254
256
|
title: Incontri
|
255
257
|
new:
|
@@ -354,24 +356,55 @@ it:
|
|
354
356
|
meeting:
|
355
357
|
not_allowed: Non sei autorizzato a visualizzare questo incontro
|
356
358
|
meetings:
|
359
|
+
count:
|
360
|
+
meetings_count:
|
361
|
+
one: "%{count} riunione"
|
362
|
+
other: "%{count} riunioni"
|
363
|
+
create:
|
364
|
+
invalid: Si è verificato un errore durante la creazione di questa riunione.
|
365
|
+
success: Hai creato la riunione con successo.
|
366
|
+
edit:
|
367
|
+
back: Indietro
|
368
|
+
title: Modifica riunione
|
369
|
+
update: Aggiorna
|
357
370
|
filters:
|
358
371
|
category: Categoria
|
359
|
-
category_prompt: Scegli una categoria
|
360
372
|
date: Data
|
361
|
-
|
373
|
+
date_values:
|
374
|
+
all: Tutte
|
375
|
+
past: Passata
|
376
|
+
upcoming: Imminente
|
377
|
+
origin: Origine
|
378
|
+
origin_values:
|
379
|
+
all: Tutte
|
380
|
+
citizens: Cittadini
|
381
|
+
official: Ufficiale
|
382
|
+
user_groups: Gruppi
|
383
|
+
scope: Ambito
|
362
384
|
search: Cerca
|
363
|
-
upcoming: Prossime
|
364
385
|
filters_small_view:
|
365
386
|
close_modal: Chiudi modalità
|
366
387
|
filter: Filtra
|
367
388
|
filter_by: Filtra per
|
368
389
|
unfold: Espandi
|
390
|
+
form:
|
391
|
+
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
392
|
+
create_as: Crea riunione come
|
393
|
+
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
394
|
+
location_hints_help: 'Suggerimenti di posizione: informazioni aggiuntive. Esempio: il piano dell''edificio'
|
395
|
+
select_a_category: Scegli una categoria
|
396
|
+
index:
|
397
|
+
new_meeting: Nuova riunione
|
369
398
|
meeting_minutes:
|
370
399
|
meeting_minutes: Riunione dei verbali
|
371
400
|
related_information: Informazioni correlate
|
372
401
|
meetings:
|
373
402
|
no_meetings_warning: Nessun meeting corrisponde ai tuoi criteri di ricerca oppure non vi è nessun meeting in programma.
|
374
403
|
upcoming_meetings_warning: Attualmente non vi sono meeting in programma, ma qui puoi trovare elencati tutti i meeting effettuati in passato.
|
404
|
+
new:
|
405
|
+
back: Indietro
|
406
|
+
create: Crea
|
407
|
+
title: Crea una riunione
|
375
408
|
registration_confirm:
|
376
409
|
cancel: Annulla
|
377
410
|
confirm: Conferma
|
@@ -380,6 +413,7 @@ it:
|
|
380
413
|
back: Torna alla lista
|
381
414
|
contributions: Conteggio dei contributi
|
382
415
|
date: Data
|
416
|
+
edit_meeting: Modifica la riunione
|
383
417
|
going: Parteciperò
|
384
418
|
join: Partecipa alla riunione
|
385
419
|
meeting_report: Rapporto della riunione
|
@@ -393,6 +427,9 @@ it:
|
|
393
427
|
one: "%{count} slot rimanenti"
|
394
428
|
other: "%{count} slot rimanenti"
|
395
429
|
view: Visualizza
|
430
|
+
update:
|
431
|
+
invalid: Si è verificato un errore durante l'aggiornamento della riunione.
|
432
|
+
success: Hai aggiornato la riunione con successo.
|
396
433
|
meetings_map:
|
397
434
|
view_meeting: Guarda la riunione
|
398
435
|
models:
|
@@ -411,6 +448,7 @@ it:
|
|
411
448
|
closed: Chiuso
|
412
449
|
end_time: Data di fine
|
413
450
|
map: Mappa
|
451
|
+
official_meeting: Riunione ufficiale
|
414
452
|
start_time: Data di inizio
|
415
453
|
title: Titolo
|
416
454
|
read_more: "(leggi di più)"
|
@@ -432,6 +470,8 @@ it:
|
|
432
470
|
types:
|
433
471
|
private_meeting: Incontro privato
|
434
472
|
transparent: Trasparente
|
473
|
+
versions:
|
474
|
+
back_to_resource: Torna alla riunione
|
435
475
|
metrics:
|
436
476
|
meetings:
|
437
477
|
description: Numero di riunioni create
|
data/config/locales/ja-JP.yml
CHANGED
@@ -3,7 +3,7 @@ ja:
|
|
3
3
|
attributes:
|
4
4
|
agenda:
|
5
5
|
description: 説明
|
6
|
-
duration:
|
6
|
+
duration: 期間
|
7
7
|
title: タイトル
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: 出席者数
|
@@ -16,10 +16,12 @@ ja:
|
|
16
16
|
available_slots: この会議で利用可能なスロット
|
17
17
|
decidim_category_id: カテゴリ
|
18
18
|
decidim_scope_id: スコープ
|
19
|
+
decidim_user_group_id: ユーザーグループ
|
19
20
|
description: 説明
|
20
21
|
end_time: 終了時刻
|
21
22
|
location: 場所
|
22
23
|
location_hints: 位置情報のヒント
|
24
|
+
organizer_gid: '次として作成:'
|
23
25
|
organizer_id: オーガナイザー
|
24
26
|
private_meeting: プライベートミーティング
|
25
27
|
registration_form_enabled: 登録フォームは有効です
|
@@ -78,12 +80,16 @@ ja:
|
|
78
80
|
global:
|
79
81
|
announcement: お知らせ
|
80
82
|
comments_enabled: コメントは有効です
|
83
|
+
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
84
|
+
creation_enabled_for_participants: 出席者はミーティングを作成できます
|
81
85
|
default_registration_terms: デフォルトの登録条件
|
82
86
|
enable_pads_creation: パッドの作成を有効にする
|
83
87
|
resources_permissions_enabled: アクションの権限はミーティングごとに設定できます
|
84
88
|
step:
|
85
89
|
announcement: お知らせ
|
86
90
|
comments_blocked: コメントがブロックされました
|
91
|
+
creation_enabled_for_participants: 参加者によるミーティングの作成が有効です
|
92
|
+
creation_enabled_for_user_groups: ユーザーグループによるミーティングの作成が有効です
|
87
93
|
events:
|
88
94
|
meetings:
|
89
95
|
meeting_closed:
|
@@ -223,9 +229,6 @@ ja:
|
|
223
229
|
edit:
|
224
230
|
close: 閉じる
|
225
231
|
title: ミーティングを閉じる
|
226
|
-
meeting_copies:
|
227
|
-
form:
|
228
|
-
select_organizer: 主催者を選択
|
229
232
|
meetings:
|
230
233
|
close:
|
231
234
|
invalid: この会議を終了する際に問題が発生しました
|
@@ -244,7 +247,6 @@ ja:
|
|
244
247
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
245
248
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
246
249
|
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
247
|
-
select_organizer: 主催者を選択
|
248
250
|
index:
|
249
251
|
title: ミーティング
|
250
252
|
new:
|
@@ -348,24 +350,54 @@ ja:
|
|
348
350
|
meeting:
|
349
351
|
not_allowed: このミーティングを表示する権限がありません
|
350
352
|
meetings:
|
353
|
+
count:
|
354
|
+
meetings_count:
|
355
|
+
other: "%{count} 個のミーティング"
|
356
|
+
create:
|
357
|
+
invalid: このミーティングの作成に問題がありました.
|
358
|
+
success: ミーティングを作成しました.
|
359
|
+
edit:
|
360
|
+
back: 戻る
|
361
|
+
title: ミーティングを編集
|
362
|
+
update: 更新
|
351
363
|
filters:
|
352
364
|
category: カテゴリ
|
353
|
-
category_prompt: カテゴリを選択
|
354
365
|
date: 日付
|
355
|
-
|
366
|
+
date_values:
|
367
|
+
all: すべて
|
368
|
+
past: 過去
|
369
|
+
upcoming: 近日公開
|
370
|
+
origin: 原点:
|
371
|
+
origin_values:
|
372
|
+
all: すべて
|
373
|
+
citizens: Citizens
|
374
|
+
official: オフィシャル
|
375
|
+
user_groups: グループ
|
376
|
+
scope: スコープ
|
356
377
|
search: 検索
|
357
|
-
upcoming: 近日公開
|
358
378
|
filters_small_view:
|
359
379
|
close_modal: モーダルを閉じる
|
360
380
|
filter: フィルター
|
361
381
|
filter_by: フィルター
|
362
382
|
unfold: 展開する
|
383
|
+
form:
|
384
|
+
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
385
|
+
create_as: 次のユーザとしてミーティングを作成:
|
386
|
+
location_help: '場所: ユーザーにメッセージが表示されます。'
|
387
|
+
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
388
|
+
select_a_category: カテゴリを選択してください
|
389
|
+
index:
|
390
|
+
new_meeting: 新しいミーティング
|
363
391
|
meeting_minutes:
|
364
392
|
meeting_minutes: ミーティング時間
|
365
393
|
related_information: 関連情報
|
366
394
|
meetings:
|
367
395
|
no_meetings_warning: 検索条件に一致するミーティングがないか,スケジュールされたミーティングがありません.
|
368
396
|
upcoming_meetings_warning: 現在、スケジュールされたミーティングはありませんが、ここではリストされた過去のミーティングをすべて見つけることができます。
|
397
|
+
new:
|
398
|
+
back: 戻る
|
399
|
+
create: 作成
|
400
|
+
title: ミーティングを作成
|
369
401
|
registration_confirm:
|
370
402
|
cancel: キャンセル
|
371
403
|
confirm: 確認する
|
@@ -374,6 +406,7 @@ ja:
|
|
374
406
|
back: リストに戻る
|
375
407
|
contributions: コントリビューション数
|
376
408
|
date: 日付
|
409
|
+
edit_meeting: ミーティングを編集
|
377
410
|
going: 次へ
|
378
411
|
join: 会議に参加
|
379
412
|
meeting_report: ミーティングレポート
|
@@ -386,6 +419,9 @@ ja:
|
|
386
419
|
remaining_slots:
|
387
420
|
other: "残り%{count} スロット"
|
388
421
|
view: 表示
|
422
|
+
update:
|
423
|
+
invalid: 会議の更新に問題がありました。
|
424
|
+
success: ミーティングを更新しました.
|
389
425
|
meetings_map:
|
390
426
|
view_meeting: ミーティングを表示
|
391
427
|
models:
|
@@ -404,6 +440,7 @@ ja:
|
|
404
440
|
closed: クローズ済み
|
405
441
|
end_time: 終了日
|
406
442
|
map: 地図
|
443
|
+
official_meeting: 公式ミーティング
|
407
444
|
start_time: 開始日
|
408
445
|
title: タイトル
|
409
446
|
read_more: "(続きを読む)"
|
@@ -425,6 +462,8 @@ ja:
|
|
425
462
|
types:
|
426
463
|
private_meeting: プライベートミーティング
|
427
464
|
transparent: 透明度
|
465
|
+
versions:
|
466
|
+
back_to_resource: 会議に戻る
|
428
467
|
metrics:
|
429
468
|
meetings:
|
430
469
|
description: 作成されたミーティング数
|
@@ -433,7 +472,7 @@ ja:
|
|
433
472
|
participatory_processes:
|
434
473
|
participatory_process_groups:
|
435
474
|
highlighted_meetings:
|
436
|
-
past_meetings:
|
475
|
+
past_meetings: 過去のミーティング
|
437
476
|
upcoming_meetings: 今後のミーティング
|
438
477
|
participatory_spaces:
|
439
478
|
highlighted_meetings:
|