decidim-meetings 0.13.1 → 0.14.1
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/admin/decidim_meetings_manifest.js +1 -0
- data/app/assets/javascripts/decidim/meetings/admin/registrations_invite_form.es6 +25 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -0
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +57 -8
- data/app/commands/decidim/meetings/admin/validate_registration_code.rb +51 -0
- data/app/commands/decidim/meetings/decline_invitation.rb +45 -0
- data/app/commands/decidim/meetings/join_meeting.rb +8 -3
- data/app/controllers/decidim/meetings/admin/attachment_collections_controller.rb +0 -4
- data/app/controllers/decidim/meetings/admin/attachments_controller.rb +0 -4
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +14 -5
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +20 -0
- data/app/controllers/decidim/meetings/registrations_controller.rb +16 -0
- data/app/events/decidim/meetings/registration_code_validated_event.rb +15 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registration_invite_form.rb +9 -2
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +33 -0
- data/app/mailers/decidim/meetings/registration_mailer.rb +2 -1
- data/app/models/decidim/meetings/invite.rb +38 -0
- data/app/models/decidim/meetings/meeting.rb +6 -0
- data/app/models/decidim/meetings/registration.rb +18 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -2
- data/app/permissions/decidim/meetings/permissions.rb +8 -1
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +35 -0
- data/app/presenters/decidim/meetings/invite_presenter.rb +26 -0
- data/app/queries/decidim/meetings/admin/invites.rb +59 -0
- data/app/serializers/decidim/meetings/data_portability_invite_serializer.rb +35 -0
- data/app/serializers/decidim/meetings/data_portability_registration_serializer.rb +1 -0
- data/app/serializers/decidim/meetings/registration_serializer.rb +1 -0
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -0
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +34 -5
- data/app/views/decidim/meetings/admin/invites/index.html.erb +99 -0
- data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +2 -3
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +2 -0
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +24 -0
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +0 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +9 -0
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +2 -0
- data/app/views/decidim/participatory_spaces/_meeting.html.erb +1 -1
- data/app/views/devise/mailer/join_meeting.html.erb +1 -0
- data/app/views/devise/mailer/join_meeting.text.erb +4 -0
- data/config/locales/ca.yml +53 -5
- data/config/locales/en.yml +53 -5
- data/config/locales/es-PY.yml +52 -4
- data/config/locales/es.yml +53 -5
- data/config/locales/eu.yml +52 -4
- data/config/locales/fi.yml +164 -116
- data/config/locales/fr.yml +53 -5
- data/config/locales/gl.yml +52 -4
- data/config/locales/hu.yml +391 -0
- data/config/locales/it.yml +52 -4
- data/config/locales/nl.yml +52 -4
- data/config/locales/pl.yml +52 -4
- data/config/locales/pt-BR.yml +56 -8
- data/config/locales/pt.yml +52 -4
- data/config/locales/ru.yml +57 -9
- data/config/locales/sv.yml +135 -87
- data/config/locales/uk.yml +56 -8
- data/db/migrate/20180607142020_create_decidim_meetings_invites.rb +15 -0
- data/db/migrate/20180615160839_add_code_to_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20180711111023_add_validated_at_to_decidim_meetings_registrations.rb +7 -0
- data/lib/decidim/meetings.rb +1 -0
- data/lib/decidim/meetings/admin_engine.rb +3 -1
- data/lib/decidim/meetings/component.rb +2 -0
- data/lib/decidim/meetings/engine.rb +1 -0
- data/lib/decidim/meetings/registrations.rb +14 -0
- data/lib/decidim/meetings/registrations/code_generator.rb +39 -0
- data/lib/decidim/meetings/test/factories.rb +20 -4
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +30 -14
- data/app/views/decidim/meetings/admin/invites/new.html.erb +0 -21
data/config/locales/pt.yml
CHANGED
@@ -38,6 +38,10 @@ pt:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: A duração dos itens excede a duração da reunião em %{count} minutos
|
40
40
|
too_many_minutes_child: A duração do item childs excede o item da agenda "%{parent_title}" duração pai em %{count} minuto
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Este email já foi convidado
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Reunião fechada
|
43
47
|
decidim/meetings/create_meeting_event: encontro
|
@@ -76,6 +80,7 @@ pt:
|
|
76
80
|
announcement: Anúncio
|
77
81
|
comments_enabled: Comentários ativados
|
78
82
|
default_registration_terms: Termos de registro padrão
|
83
|
+
resources_permissions_enabled: Permissões de ações podem ser definidas para cada reunião
|
79
84
|
step:
|
80
85
|
announcement: Anúncio
|
81
86
|
comments_blocked: Comentários bloqueados
|
@@ -101,6 +106,11 @@ pt:
|
|
101
106
|
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
102
107
|
email_subject: A reunião "%{resource_title}" foi atualizada
|
103
108
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi atualizada.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Seu código de registro "%{registration_code}" foi validado.
|
111
|
+
email_outro: Você recebeu esta notificação porque seu código de registro para a reunião "%{resource_title}" foi validado.
|
112
|
+
email_subject: Seu código de registro "%{registration_code}" foi validado
|
113
|
+
notification_title: Seu código de registro "%{registration_code}" para a reunião <a href="%{resource_path}">%{resource_title}</a> foi validado.
|
104
114
|
registrations_enabled:
|
105
115
|
email_intro: 'A reunião "%{resource_title}" permitiu registos. Você pode se registrar em sua página:'
|
106
116
|
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
@@ -160,16 +170,31 @@ pt:
|
|
160
170
|
registrations: Inscrições
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Recusar convite
|
163
174
|
invited_you_to_join_a_meeting: "%{invited_by} convidou você a participar de uma reunião em %{application}. Você pode aceitá-lo através do link abaixo."
|
164
175
|
join: Junte-se à reunião '%{meeting_title}'
|
165
176
|
invites:
|
166
177
|
create:
|
167
178
|
error: Ocorreu um problema ao convidar o usuário a participar da reunião.
|
168
179
|
success: O usuário foi convidado para participar da reunião.
|
169
|
-
|
170
|
-
|
180
|
+
form:
|
181
|
+
attendee_type: Tipo de participante
|
182
|
+
existing_user: Usuário existente
|
171
183
|
invite: Convite
|
172
|
-
|
184
|
+
invite_explanation: O usuário será convidado a participar da reunião e também da organização.
|
185
|
+
non_user: Usuário não existente
|
186
|
+
select_user: Selecione o usuário
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Aceitaram
|
190
|
+
all: Todos
|
191
|
+
rejected: Rejeitado
|
192
|
+
sent: Enviei
|
193
|
+
filter_by: Filtrar por
|
194
|
+
invite_attendee: Convidar participante
|
195
|
+
invites: Convites
|
196
|
+
registrations_disabled: Você não pode convidar um participante porque os registros estão desativados.
|
197
|
+
search: Pesquisa
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Fechar
|
@@ -226,9 +251,11 @@ pt:
|
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Salve
|
254
|
+
validate: Validar
|
255
|
+
validate_registration_code: Validar código de registro
|
229
256
|
form:
|
230
257
|
available_slots_help: Deixe-o para 0 se você tiver slots ilimitados disponíveis.
|
231
|
-
|
258
|
+
invites: Convites
|
232
259
|
registrations_count:
|
233
260
|
one: Houve 1 registro.
|
234
261
|
other: Houve %{count} registos.
|
@@ -237,7 +264,14 @@ pt:
|
|
237
264
|
update:
|
238
265
|
invalid: Ocorreu um problema ao salvar as configurações de registro.
|
239
266
|
success: Configurações de registro de reunião salvas com sucesso.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Este código de registro é inválido.
|
269
|
+
success: Código de registro validado com sucesso.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} convidados %{attendee_name} a participar de %{resource_name} reunião no espaço %{space_name}"
|
273
|
+
deleted: "%{user_name} uninvited %{attendee_name} de juntar %{resource_name} reunião no espaço %{space_name}"
|
274
|
+
update: "%{user_name} convidados %{attendee_name} a participar de %{resource_name} reunião no espaço %{space_name}"
|
241
275
|
meeting:
|
242
276
|
close: "%{user_name} fechou a reunião %{resource_name} no espaço %{space_name}"
|
243
277
|
create: "%{user_name} criou a reunião %{resource_name} no espaço %{space_name}"
|
@@ -296,6 +330,16 @@ pt:
|
|
296
330
|
other: "%{count} slots restantes"
|
297
331
|
view: Visão
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: O email
|
336
|
+
name: Nome
|
337
|
+
sent_at: Enviado em
|
338
|
+
status: Status
|
339
|
+
status:
|
340
|
+
accepted: Aceito (%{at})
|
341
|
+
rejected: Rejeitado (%{at})
|
342
|
+
sent: Enviei
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Fechadas
|
@@ -308,10 +352,14 @@ pt:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Seu registro para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
310
354
|
details: Você encontrará os detalhes da reunião no anexo.
|
355
|
+
registration_code: Seu código de registro é %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: Houve um problema ao se juntar a essa reunião.
|
314
359
|
success: Você se juntou à reunião com sucesso.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Houve um problema ao recusar o convite.
|
362
|
+
success: Você recusou o convite com sucesso.
|
315
363
|
destroy:
|
316
364
|
invalid: Tem havido um problema ao sair desta reunião.
|
317
365
|
success: Você saiu da reunião com sucesso.
|
data/config/locales/ru.yml
CHANGED
@@ -14,7 +14,7 @@ ru:
|
|
14
14
|
meeting:
|
15
15
|
address: Адрес
|
16
16
|
available_slots: Доступные места на эту встречу
|
17
|
-
decidim_category_id:
|
17
|
+
decidim_category_id: Категория
|
18
18
|
decidim_scope_id: Охват
|
19
19
|
description: Описание
|
20
20
|
end_time: Время окончания
|
@@ -38,6 +38,10 @@ ru:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: Продолжительность всех вопросов превышает продолжительность встречи на %{count} минут
|
40
40
|
too_many_minutes_child: Продолжительность вложенных вопросов превышает продолжительность общего вопроса «%{parent_title}» на %{count} минут
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Участник с таким адресом уже приглашен
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Встреча закрыта
|
43
47
|
decidim/meetings/create_meeting_event: Встреча
|
@@ -82,6 +86,7 @@ ru:
|
|
82
86
|
announcement: Объявление
|
83
87
|
comments_enabled: Комментарии включены
|
84
88
|
default_registration_terms: Условия регистрации по умолчанию
|
89
|
+
resources_permissions_enabled: Для каждой встречи можно задать те или иные разрешения на действия
|
85
90
|
step:
|
86
91
|
announcement: Объявление
|
87
92
|
comments_blocked: Комментарии отключены
|
@@ -107,6 +112,11 @@ ru:
|
|
107
112
|
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
108
113
|
email_subject: Встреча "%{resource_title}" обновлена
|
109
114
|
notification_title: Встреча <a href="%{resource_path}">%{resource_title}</a> обновлена.
|
115
|
+
registration_code_validated:
|
116
|
+
email_intro: Ваш регистрационный код «%{registration_code}» подтвержден.
|
117
|
+
email_outro: Вы получили это уведомление, потому что ваш регистрационный код для встречи «%{resource_title}» был подтвержден.
|
118
|
+
email_subject: Ваш регистрационный код «%{registration_code}» подтвержден
|
119
|
+
notification_title: Ваш регистрационный код «%{registration_code}» для встречи <a href="%{resource_path}">%{resource_title}</a> был подтвержден.
|
110
120
|
registrations_enabled:
|
111
121
|
email_intro: 'Открылась регистрация на встречу «%{resource_title}». Вы можете зарегистрироваться на странице:'
|
112
122
|
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
@@ -166,16 +176,31 @@ ru:
|
|
166
176
|
registrations: Регистрации
|
167
177
|
invite_join_meeting_mailer:
|
168
178
|
invite:
|
169
|
-
|
179
|
+
decline: Отклонить приглашение
|
180
|
+
invited_you_to_join_a_meeting: "%{invited_by} пригласил вас на встречу в %{application}. Вы можете принять это приглашение по ссылке ниже."
|
170
181
|
join: Присоединиться к встрече '%{meeting_title}'
|
171
182
|
invites:
|
172
183
|
create:
|
173
184
|
error: При попытке пригласить этого участника на встречу произошла ошибка.
|
174
185
|
success: Участник успешно приглашен на встречу.
|
175
|
-
|
176
|
-
|
186
|
+
form:
|
187
|
+
attendee_type: Вид участника
|
188
|
+
existing_user: Существующий участник
|
177
189
|
invite: Пригласить
|
178
|
-
|
190
|
+
invite_explanation: Участнику будет предложено присоединиться к встрече и к организации.
|
191
|
+
non_user: Не существующий участник
|
192
|
+
select_user: Выберите участника
|
193
|
+
index:
|
194
|
+
filter:
|
195
|
+
accepted: Принятые
|
196
|
+
all: Все
|
197
|
+
rejected: Отклоненные
|
198
|
+
sent: Отправленные
|
199
|
+
filter_by: 'Отобрать по признаку:'
|
200
|
+
invite_attendee: Пригласить участника
|
201
|
+
invites: Приглашения
|
202
|
+
registrations_disabled: Вы не можете пригласить участника, так как регистрация отключена.
|
203
|
+
search: Поиск
|
179
204
|
meeting_closes:
|
180
205
|
edit:
|
181
206
|
close: Закрыть
|
@@ -232,9 +257,11 @@ ru:
|
|
232
257
|
registrations:
|
233
258
|
edit:
|
234
259
|
save: Сохранить
|
260
|
+
validate: Подтвердить
|
261
|
+
validate_registration_code: Подтвердить регистрационный код
|
235
262
|
form:
|
236
263
|
available_slots_help: Оставьте его равным 0, если у вас не ограничено количество мест.
|
237
|
-
|
264
|
+
invites: Приглашения
|
238
265
|
registrations_count:
|
239
266
|
one: Зарегистрировался 1 человек.
|
240
267
|
few: Зарегистрировалось %{count} человека.
|
@@ -245,7 +272,14 @@ ru:
|
|
245
272
|
update:
|
246
273
|
invalid: При попытке сохранить настройки регистрации произошла ошибка.
|
247
274
|
success: Настройки регистрации на встречу успешно сохранены.
|
275
|
+
validate_registration_code:
|
276
|
+
invalid: Этот регистрационный код неуместен.
|
277
|
+
success: Регистрационный код успешно подтвержден.
|
248
278
|
admin_log:
|
279
|
+
invite:
|
280
|
+
create: "%{user_name} пригласил %{attendee_name} присоединиться к встрече %{resource_name} в пространстве %{space_name}"
|
281
|
+
deleted: "%{user_name} отменил приглашение %{attendee_name} присоединиться к встрече %{resource_name} в пространстве %{space_name}"
|
282
|
+
update: "%{user_name} пригласил %{attendee_name} присоединиться к встрече %{resource_name} в пространстве %{space_name}"
|
249
283
|
meeting:
|
250
284
|
close: "%{user_name} закрыл встречу %{resource_name} в пространстве %{space_name}"
|
251
285
|
create: "%{user_name} создал встречу %{resource_name} в пространстве %{space_name}"
|
@@ -269,8 +303,8 @@ ru:
|
|
269
303
|
not_allowed: У вас нет прав на просмотр этой встречи
|
270
304
|
meetings:
|
271
305
|
filters:
|
272
|
-
category:
|
273
|
-
category_prompt: Выберите
|
306
|
+
category: Категория
|
307
|
+
category_prompt: Выберите категорию
|
274
308
|
date: Дата
|
275
309
|
past: Прошедшие
|
276
310
|
search: Поиск
|
@@ -294,7 +328,7 @@ ru:
|
|
294
328
|
show:
|
295
329
|
attendees: Количество участников
|
296
330
|
contributions: Количество внесенных предложений
|
297
|
-
going:
|
331
|
+
going: Собираетесь посетить
|
298
332
|
join: Присоединиться к встрече
|
299
333
|
meeting_report: Отчет о встрече
|
300
334
|
no_slots_available: Не осталось мест
|
@@ -306,6 +340,16 @@ ru:
|
|
306
340
|
other: "Осталось %{count} мест"
|
307
341
|
view: Посмотреть
|
308
342
|
models:
|
343
|
+
invite:
|
344
|
+
fields:
|
345
|
+
email: Эл. адрес
|
346
|
+
name: Имя
|
347
|
+
sent_at: 'Отправлено:'
|
348
|
+
status: Состояние
|
349
|
+
status:
|
350
|
+
accepted: Принято (%{at})
|
351
|
+
rejected: Отклонено (%{at})
|
352
|
+
sent: Отправлено
|
309
353
|
meeting:
|
310
354
|
fields:
|
311
355
|
closed: Завершена
|
@@ -318,10 +362,14 @@ ru:
|
|
318
362
|
confirmation:
|
319
363
|
confirmed_html: Ваша регистрация на встречу <a href="%{url}">%{title}</a> подтверждена.
|
320
364
|
details: Подробное описание встречи - в прилагаемом файле.
|
365
|
+
registration_code: 'Ваш регистрационный код: %{code}.'
|
321
366
|
registrations:
|
322
367
|
create:
|
323
368
|
invalid: При попытке присоединиться к встрече произошла ошибка.
|
324
369
|
success: Вы успешно зарегистрировались на эту встречу.
|
370
|
+
decline_invitation:
|
371
|
+
invalid: При попытке отклонить это приглашение произошла ошибка.
|
372
|
+
success: Вы успешно отклонили это приглашение.
|
325
373
|
destroy:
|
326
374
|
invalid: При попытке отказаться от встречи произошла ошибка.
|
327
375
|
success: Вы успешно отменили регистрацию на встречу.
|
data/config/locales/sv.yml
CHANGED
@@ -13,7 +13,7 @@ sv:
|
|
13
13
|
proposal_ids: Förslag som skapats i mötet
|
14
14
|
meeting:
|
15
15
|
address: Adress
|
16
|
-
available_slots: Tillgängliga
|
16
|
+
available_slots: Tillgängliga platser för detta möte
|
17
17
|
decidim_category_id: Kategori
|
18
18
|
decidim_scope_id: Omfattning
|
19
19
|
description: Beskrivning
|
@@ -27,17 +27,21 @@ sv:
|
|
27
27
|
title: Titel
|
28
28
|
transparent: Transparent
|
29
29
|
minutes:
|
30
|
-
audio_url:
|
30
|
+
audio_url: Ljud-URL
|
31
31
|
description: Beskrivning
|
32
|
-
video_url: Video-
|
32
|
+
video_url: Video-URL
|
33
33
|
visible: Är synlig
|
34
34
|
errors:
|
35
35
|
models:
|
36
36
|
meeting_agenda:
|
37
37
|
attributes:
|
38
38
|
base:
|
39
|
-
too_many_minutes: Varaktigheten av objekten överstiger
|
40
|
-
too_many_minutes_child: Varaktigheten för artikelbarnen överstiger agendan för
|
39
|
+
too_many_minutes: Varaktigheten av objekten överstiger mötestiden med %{count} minuter
|
40
|
+
too_many_minutes_child: Varaktigheten för artikelbarnen överstiger agendan för agendaobjektet "%{parent_title}" med %{count} minuter
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Det här e-postadressen har redan blivit inbjuden
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Möte avslutat
|
43
47
|
decidim/meetings/create_meeting_event: Möte
|
@@ -49,19 +53,19 @@ sv:
|
|
49
53
|
models:
|
50
54
|
decidim/meetings/meeting:
|
51
55
|
one: Möte
|
52
|
-
other:
|
56
|
+
other: Möten
|
53
57
|
decidim/meetings/minutes:
|
54
|
-
one:
|
55
|
-
other:
|
58
|
+
one: Anteckning
|
59
|
+
other: Anteckningar
|
56
60
|
decidim/meetings/registration:
|
57
61
|
one: Registrering
|
58
|
-
other:
|
62
|
+
other: Registreringar
|
59
63
|
decidim:
|
60
64
|
admin:
|
61
65
|
meeting_copies:
|
62
66
|
create:
|
63
|
-
error:
|
64
|
-
success:
|
67
|
+
error: Ett fel uppstod när det här mötet skulle dupliceras.
|
68
|
+
success: Mötet duplicerat.
|
65
69
|
new:
|
66
70
|
copy: Kopiera
|
67
71
|
select: Välj vilken data du vill duplicera
|
@@ -75,52 +79,58 @@ sv:
|
|
75
79
|
global:
|
76
80
|
announcement: Meddelande
|
77
81
|
comments_enabled: Kommentarer aktiverade
|
78
|
-
default_registration_terms:
|
82
|
+
default_registration_terms: Villkor för standardregistrering
|
83
|
+
resources_permissions_enabled: Åtgärdsbehörigheter kan ställas in för varje möte
|
79
84
|
step:
|
80
85
|
announcement: Meddelande
|
81
86
|
comments_blocked: Kommentarer blockerade
|
82
87
|
events:
|
83
88
|
meetings:
|
84
89
|
meeting_closed:
|
85
|
-
email_intro: '"%{resource_title}"
|
86
|
-
email_outro: Du har fått den här
|
87
|
-
email_subject:
|
88
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
90
|
+
email_intro: 'Mötet "%{resource_title}" stängdes. Du kan läsa slutsatserna från dess sida:'
|
91
|
+
email_outro: Du har fått den här notifikationen eftersom du följer mötet "%{resource_title}". Du kan sluta följa det från den föregående länken.
|
92
|
+
email_subject: Mötet "%{resource_title}" stängdes
|
93
|
+
notification_title: Mötet <a href="%{resource_path}">%{resource_title}</a> stängdes.
|
89
94
|
meeting_created:
|
90
95
|
email_intro: Mötet "%{resource_title}" har lagts till i "%{participatory_space_title}" som du följer.
|
91
|
-
email_outro: Du har fått den här meddelandet eftersom du följer "%{participatory_space_title}". Du kan
|
92
|
-
email_subject: Nytt möte
|
96
|
+
email_outro: Du har fått den här meddelandet eftersom du följer "%{participatory_space_title}". Du kan avfölja det vid föregående länk.
|
97
|
+
email_subject: Nytt möte har lagts till i %{participatory_space_title}
|
93
98
|
notification_title: Mötet <a href="%{resource_path}">%{resource_title}</a> har lagts till i %{participatory_space_title}
|
94
99
|
meeting_registrations_over_percentage:
|
95
|
-
email_intro: De upptagna platserna "%{resource_title}" är över %{percentage}%.
|
96
|
-
email_outro: Du har fått den här
|
97
|
-
email_subject: De upptagna platserna "%{resource_title}" är över %{percentage}%
|
100
|
+
email_intro: De upptagna platserna vid "%{resource_title}" är över %{percentage}%.
|
101
|
+
email_outro: Du har fått den här notifikationen eftersom du är en administratör för mötets deltagandeutrymme.
|
102
|
+
email_subject: De upptagna platserna vid "%{resource_title}" är över %{percentage}%
|
98
103
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> mötesplatserna är över %{percentage}%.
|
99
104
|
meeting_updated:
|
100
|
-
email_intro: '"%{resource_title}"
|
101
|
-
email_outro: Du har fått
|
102
|
-
email_subject:
|
103
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
105
|
+
email_intro: 'Mötet "%{resource_title}" uppdaterades. Du kan läsa den nya versionen från sin sida:'
|
106
|
+
email_outro: Du har fått det här meddelandet eftersom du följer mötet "%{resource_title}". Du kan avfölja det från föregående länk.
|
107
|
+
email_subject: Mötet "%{resource_title}" uppdaterades
|
108
|
+
notification_title: Mötet <a href="%{resource_path}">%{resource_title}</a> uppdaterades.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Din registreringskod "%{registration_code}" har validerats.
|
111
|
+
email_outro: Du har fått den här meddelandet eftersom din registreringskod för mötet "%{resource_title}" har validerats.
|
112
|
+
email_subject: Din registreringskod "%{registration_code}" har validerats
|
113
|
+
notification_title: Din registreringskod "%{registration_code}" för mötet <a href="%{resource_path}">%{resource_title}</a> har validerats.
|
104
114
|
registrations_enabled:
|
105
|
-
email_intro: '"%{resource_title}"
|
106
|
-
email_outro: Du har fått den här meddelandet eftersom du följer mötet "%{resource_title}". Du kan följa det
|
107
|
-
email_subject:
|
108
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
115
|
+
email_intro: 'Mötet "%{resource_title}" har aktiverat registreringar. Du kan registrera dig själv på dess sida:'
|
116
|
+
email_outro: Du har fått den här meddelandet eftersom du följer mötet "%{resource_title}". Du kan sluta följa det på föregående länk.
|
117
|
+
email_subject: Mötet "%{resource_title}" har aktiverat registreringar.
|
118
|
+
notification_title: Mötet <a href="%{resource_path}">%{resource_title}</a> har aktiverat registreringar.
|
109
119
|
upcoming_meeting:
|
110
|
-
email_intro:
|
111
|
-
email_outro: Du har fått den här meddelandet eftersom du följer mötet "%{resource_title}". Du kan följa det
|
112
|
-
email_subject:
|
113
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
120
|
+
email_intro: Mötet "%{resource_title}" börjar om mindre än 48 timmar.
|
121
|
+
email_outro: Du har fått den här meddelandet eftersom du följer mötet "%{resource_title}". Du kan sluta följa det på föregående länk.
|
122
|
+
email_subject: Mötet "%{resource_title}" börjar om färre än 48 timmar.
|
123
|
+
notification_title: Mötet <a href="%{resource_path}">%{resource_title}</a> startar inom mindre än 48 timmar.
|
114
124
|
meetings:
|
115
125
|
actions:
|
116
126
|
agenda: Dagordning
|
117
|
-
attachment_collections:
|
127
|
+
attachment_collections: Mappar
|
118
128
|
attachments: Bifogade filer
|
119
129
|
close: Stäng
|
120
130
|
confirm_destroy: Är du säker på att du vill radera detta möte?
|
121
131
|
destroy: Radera
|
122
132
|
edit: Redigera
|
123
|
-
minutes:
|
133
|
+
minutes: Anteckningar
|
124
134
|
new: Nytt möte
|
125
135
|
preview: Förhandsvisa
|
126
136
|
registrations: Registreringar
|
@@ -128,48 +138,63 @@ sv:
|
|
128
138
|
admin:
|
129
139
|
agenda:
|
130
140
|
agenda_item:
|
131
|
-
add_agenda_item_child: Lägg till dagordning objekt
|
132
|
-
agenda_item:
|
133
|
-
agenda_item_children:
|
134
|
-
down:
|
135
|
-
remove:
|
141
|
+
add_agenda_item_child: Lägg till dagordning för underordnat objekt
|
142
|
+
agenda_item: Dagordningspunkt
|
143
|
+
agenda_item_children: Underordnade dagordningspunkter
|
144
|
+
down: Ned
|
145
|
+
remove: Ta bort
|
136
146
|
up: Upp
|
137
147
|
agenda_item_child:
|
138
|
-
agenda_item_child:
|
139
|
-
down:
|
140
|
-
remove:
|
148
|
+
agenda_item_child: Underordnade dagordningspunkter
|
149
|
+
down: Ned
|
150
|
+
remove: Ta bort
|
141
151
|
up: Upp
|
142
152
|
create:
|
143
|
-
invalid: Det
|
144
|
-
success:
|
153
|
+
invalid: Det blev ett problem med att skapa denna dagordning
|
154
|
+
success: Dagordning skapades
|
145
155
|
edit:
|
146
156
|
title: Redigera dagordning
|
147
157
|
update: Uppdatering
|
148
158
|
form:
|
149
|
-
add_agenda_item: Lägg till
|
150
|
-
agenda_items:
|
159
|
+
add_agenda_item: Lägg till punkt på dagordning
|
160
|
+
agenda_items: Dagordningspunkter
|
151
161
|
end_date: Slutdatum
|
152
|
-
start_date:
|
162
|
+
start_date: Startdatum
|
153
163
|
new:
|
154
164
|
create: Skapa
|
155
165
|
title: Ny dagordning
|
156
166
|
update:
|
157
|
-
invalid: Det har
|
158
|
-
success:
|
167
|
+
invalid: Det har blivit ett problem med att uppdatera den här dagordningen
|
168
|
+
success: Dagordning uppdaterad
|
159
169
|
exports:
|
160
170
|
registrations: Registreringar
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Avvisa inbjudan
|
163
174
|
invited_you_to_join_a_meeting: "%{invited_by} har bjudit in dig till ett möte på %{application}. Du kan acceptera det via länken nedan."
|
164
175
|
join: Gå med i mötet "%{meeting_title}"
|
165
176
|
invites:
|
166
177
|
create:
|
167
|
-
error: Det har
|
168
|
-
success: Användaren
|
169
|
-
|
170
|
-
|
178
|
+
error: Det har uppstått ett problem när du bjöd in användaren att gå med i mötet.
|
179
|
+
success: Användaren bjöds inbjuden att delta i mötet.
|
180
|
+
form:
|
181
|
+
attendee_type: Deltagartyp
|
182
|
+
existing_user: Existerande användare
|
171
183
|
invite: Bjud in
|
172
|
-
|
184
|
+
invite_explanation: Användaren kommer att bli inbjuden att delta i mötet och till organisationen likaså.
|
185
|
+
non_user: Icke-existerande användare
|
186
|
+
select_user: Välj användare
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Accepterad
|
190
|
+
all: Allt
|
191
|
+
rejected: Avvisade
|
192
|
+
sent: Skickat
|
193
|
+
filter_by: Filtrera efter
|
194
|
+
invite_attendee: Bjud in deltagare
|
195
|
+
invites: Inbjudningar
|
196
|
+
registrations_disabled: Du kan inte bjuda in en deltagare eftersom registreringarna är inaktiverade.
|
197
|
+
search: Sök
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Stäng
|
@@ -179,11 +204,11 @@ sv:
|
|
179
204
|
select_organizer: Välj arrangören
|
180
205
|
meetings:
|
181
206
|
close:
|
182
|
-
invalid: Det
|
183
|
-
success: Mötet avslutades
|
207
|
+
invalid: Det uppstod ett problem med att stänga detta möte
|
208
|
+
success: Mötet avslutades
|
184
209
|
create:
|
185
|
-
invalid: Det
|
186
|
-
success: Möte
|
210
|
+
invalid: Det har uppstått ett problem med att skapa detta möte
|
211
|
+
success: Möte skapades
|
187
212
|
destroy:
|
188
213
|
success: Mötet har tagits bort
|
189
214
|
edit:
|
@@ -197,53 +222,62 @@ sv:
|
|
197
222
|
title: Skapa möte
|
198
223
|
service:
|
199
224
|
description: Beskrivning
|
200
|
-
down:
|
201
|
-
remove:
|
225
|
+
down: Ned
|
226
|
+
remove: Ta bort
|
202
227
|
service: Service
|
203
228
|
title: Titel
|
204
229
|
up: Upp
|
205
230
|
services:
|
206
231
|
add_service: Lägg till service
|
207
|
-
services:
|
232
|
+
services: Tjänster
|
208
233
|
update:
|
209
|
-
invalid: Det
|
210
|
-
success: Mötet har
|
234
|
+
invalid: Det uppstod ett problem med att uppdatera det här mötet
|
235
|
+
success: Mötet har uppdaterats
|
211
236
|
minutes:
|
212
237
|
create:
|
213
|
-
invalid: Det
|
214
|
-
success:
|
238
|
+
invalid: Det uppstod ett problem med att skapa det här protokollet
|
239
|
+
success: Protokollet skapades
|
215
240
|
edit:
|
216
241
|
update: Uppdatering
|
217
242
|
new:
|
218
243
|
create: Skapa
|
219
|
-
title: Skapa
|
244
|
+
title: Skapa protokoll
|
220
245
|
update:
|
221
|
-
invalid: Det har
|
222
|
-
success:
|
246
|
+
invalid: Det har uppstått problem med att uppdatera det här protokollet
|
247
|
+
success: Protokollet uppdaterades
|
223
248
|
models:
|
224
249
|
meeting:
|
225
250
|
name: Möte
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Spara
|
254
|
+
validate: Bekräfta
|
255
|
+
validate_registration_code: Bekräfta registreringskod
|
229
256
|
form:
|
230
|
-
available_slots_help: Lämna det till 0 om du har obegränsade
|
231
|
-
|
257
|
+
available_slots_help: Lämna det till 0 om du har obegränsade platser.
|
258
|
+
invites: Inbjudningar
|
232
259
|
registrations_count:
|
233
260
|
one: Det har gjorts 1 registrering.
|
234
|
-
other: Det har
|
235
|
-
reserved_slots_help: Lämna det till 0 om du inte har reserverade
|
261
|
+
other: Det har gjorts %{count} registreringar.
|
262
|
+
reserved_slots_help: Lämna det till 0 om du inte har reserverade platser
|
236
263
|
reserved_slots_less_than: Måste vara mindre än eller lika med %{count}
|
237
264
|
update:
|
238
|
-
invalid: Det
|
265
|
+
invalid: Det uppstod ett problem med att spara registreringsinställningarna.
|
239
266
|
success: Mötesregistreringsinställningarna har sparats.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Denna registreringskod är ogiltig.
|
269
|
+
success: Registreringskoden validerades.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} uppmanade %{attendee_name} att gå med mötet %{resource_name} på platsen %{space_name}"
|
273
|
+
deleted: "%{user_name} objudna %{attendee_name} från att gå med möte %{resource_name} på platsen %{space_name}"
|
274
|
+
update: "%{user_name} uppmanade %{attendee_name} att gå med möte %{resource_name} på platsen %{space_name}"
|
241
275
|
meeting:
|
242
|
-
close: "%{user_name} stängde %{resource_name} mötet på %{space_name}
|
243
|
-
create: "%{user_name} skapade %{resource_name} mötet på %{space_name}
|
244
|
-
delete: "%{user_name} raderade mötet %{resource_name} på %{space_name}
|
245
|
-
export_registrations: "%{user_name} exporterade registreringen av %{resource_name} mötet på %{space_name}
|
246
|
-
update: "%{user_name} uppdaterade mötet %{resource_name} på %{space_name}
|
276
|
+
close: "%{user_name} stängde %{resource_name} mötet på platsen %{space_name}"
|
277
|
+
create: "%{user_name} skapade %{resource_name} mötet på platsen %{space_name}"
|
278
|
+
delete: "%{user_name} raderade mötet %{resource_name} på platsen %{space_name}"
|
279
|
+
export_registrations: "%{user_name} exporterade registreringen av %{resource_name} mötet på platsen %{space_name}"
|
280
|
+
update: "%{user_name} uppdaterade mötet %{resource_name} på platsen %{space_name}"
|
247
281
|
value_types:
|
248
282
|
organizer_presenter:
|
249
283
|
not_found: 'Arrangören hittades inte i databasen (ID: %{id})'
|
@@ -253,10 +287,10 @@ sv:
|
|
253
287
|
mailer:
|
254
288
|
invite_join_meeting_mailer:
|
255
289
|
invite:
|
256
|
-
subject: Inbjudan att delta i ett möte
|
290
|
+
subject: Inbjudan för att delta i ett möte
|
257
291
|
registration_mailer:
|
258
292
|
confirmation:
|
259
|
-
subject:
|
293
|
+
subject: Din mötesregistrering har bekräftats
|
260
294
|
meeting:
|
261
295
|
not_allowed: Du får inte se det här mötet
|
262
296
|
meetings:
|
@@ -275,7 +309,7 @@ sv:
|
|
275
309
|
index:
|
276
310
|
view_meeting: Visa möte
|
277
311
|
meeting_minutes:
|
278
|
-
meeting_minutes:
|
312
|
+
meeting_minutes: Mötesprotokoll
|
279
313
|
related_information: Relaterad information
|
280
314
|
meetings:
|
281
315
|
no_meetings_warning: Inga möten matchar dina sökkriterier eller det finns inget möte planerat.
|
@@ -294,8 +328,18 @@ sv:
|
|
294
328
|
remaining_slots:
|
295
329
|
one: 1 plats kvar
|
296
330
|
other: "%{count} platser kvar"
|
297
|
-
view:
|
331
|
+
view: Visa
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: E-post
|
336
|
+
name: Namn
|
337
|
+
sent_at: Skickat på
|
338
|
+
status: Status
|
339
|
+
status:
|
340
|
+
accepted: Accepterad (%{at})
|
341
|
+
rejected: Avvisad (%{at})
|
342
|
+
sent: Skickat
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Stängd
|
@@ -308,13 +352,17 @@ sv:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Din registrering för mötet <a href="%{url}">%{title}</a> har bekräftats.
|
310
354
|
details: Du hittar mötesuppgifterna i bilagan.
|
355
|
+
registration_code: Din registreringskod är %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
|
-
invalid: Det har
|
314
|
-
success: Du har gått med på mötet
|
358
|
+
invalid: Det har uppstått ett problem med att gå med i det här mötet.
|
359
|
+
success: Du har gått med på mötet.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Det uppstod ett problem med att avböja inbjudan.
|
362
|
+
success: Du har avböjt inbjudan.
|
315
363
|
destroy:
|
316
|
-
invalid: Det
|
317
|
-
success: Du har lämnat mötet
|
364
|
+
invalid: Det uppstod ett problem med att lämna detta möte.
|
365
|
+
success: Du har lämnat mötet.
|
318
366
|
types:
|
319
367
|
private_meeting: Privat möte
|
320
368
|
transparent: Transparent
|