decidim-meetings 0.13.1 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/config/admin/decidim_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/it.yml
CHANGED
@@ -38,6 +38,10 @@ it:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: La durata degli articoli supera la durata della riunione di %{count} minuti
|
40
40
|
too_many_minutes_child: La durata dell'elemento child supera la durata del genitore "%{parent_title}" dell'ordine del giorno di %{count} minuto
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Questa email è già stata invitata
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Riunione chiusa
|
43
47
|
decidim/meetings/create_meeting_event: Incontro
|
@@ -76,6 +80,7 @@ it:
|
|
76
80
|
announcement: Annuncio
|
77
81
|
comments_enabled: Commenti abilitati
|
78
82
|
default_registration_terms: Termini di registrazione predefiniti
|
83
|
+
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
79
84
|
step:
|
80
85
|
announcement: Annuncio
|
81
86
|
comments_blocked: Commenti bloccati
|
@@ -101,6 +106,11 @@ it:
|
|
101
106
|
email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
|
102
107
|
email_subject: La riunione "%{resource_title}" è stata aggiornata
|
103
108
|
notification_title: La riunione <a href="%{resource_path}">%{resource_title}</a> è stata aggiornata.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Il tuo codice di registrazione "%{registration_code}" è stato convalidato.
|
111
|
+
email_outro: Hai ricevuto questa notifica perché il codice di registrazione per la riunione "%{resource_title}" è stato convalidato.
|
112
|
+
email_subject: Il tuo codice di registrazione "%{registration_code}" è stato convalidato
|
113
|
+
notification_title: Il tuo codice di registrazione "%{registration_code}" per la riunione <a href="%{resource_path}">%{resource_title}</a> è stato convalidato.
|
104
114
|
registrations_enabled:
|
105
115
|
email_intro: 'La riunione "%{resource_title}" ha abilitato le registrazioni. Puoi registrarti sulla sua pagina:'
|
106
116
|
email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
|
@@ -160,16 +170,31 @@ it:
|
|
160
170
|
registrations: Iscrizioni
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Rifiuta l'invito
|
163
174
|
invited_you_to_join_a_meeting: "%{invited_by} ti ha invitato a partecipare a una riunione al %{application}. Puoi accettarla tramite il link sottostante."
|
164
175
|
join: Partecipa alla riunione '%{meeting_title}'
|
165
176
|
invites:
|
166
177
|
create:
|
167
178
|
error: C'è stato un problema durante l'invito all'utente di partecipare alla riunione.
|
168
179
|
success: L'utente è stato invitato a partecipare alla riunione.
|
169
|
-
|
170
|
-
|
180
|
+
form:
|
181
|
+
attendee_type: Tipo di partecipante
|
182
|
+
existing_user: Utente esistente
|
171
183
|
invite: Invita
|
172
|
-
|
184
|
+
invite_explanation: L'utente sarà invitato a partecipare alla riunione e all'organizzazione.
|
185
|
+
non_user: Utente non esistente
|
186
|
+
select_user: Seleziona utente
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Accettato
|
190
|
+
all: Tutti
|
191
|
+
rejected: Respinto
|
192
|
+
sent: Inviato
|
193
|
+
filter_by: Filtra per
|
194
|
+
invite_attendee: Invita il partecipante
|
195
|
+
invites: Inviti
|
196
|
+
registrations_disabled: Non puoi invitare un partecipante perché le registrazioni sono disabilitate.
|
197
|
+
search: Ricerca
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Chiudi
|
@@ -226,9 +251,11 @@ it:
|
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Salva
|
254
|
+
validate: Convalidare
|
255
|
+
validate_registration_code: Convalida il codice di registrazione
|
229
256
|
form:
|
230
257
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati.
|
231
|
-
|
258
|
+
invites: Inviti
|
232
259
|
registrations_count:
|
233
260
|
one: Si è registrato un'iscrizione.
|
234
261
|
other: Si sono registrate %{count} iscrizione.
|
@@ -237,7 +264,14 @@ it:
|
|
237
264
|
update:
|
238
265
|
invalid: Si è verificato un problema salvando le impostazioni di registrazione.
|
239
266
|
success: Le impostazioni di registrazione delle riunioni sono state salvate correttamente.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Questo codice di registrazione non è valido.
|
269
|
+
success: Codice di registrazione validato con successo.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} invitato %{attendee_name} a partecipare a %{resource_name} riunioni nello spazio %{space_name}"
|
273
|
+
deleted: "%{user_name} non invitato %{attendee_name} dall'unire %{resource_name} incontri nello spazio %{space_name}"
|
274
|
+
update: "%{user_name} invitato %{attendee_name} a partecipare a %{resource_name} riunioni nello spazio %{space_name}"
|
241
275
|
meeting:
|
242
276
|
close: "%{user_name} ha chiuso la riunione %{resource_name} sullo spazio %{space_name}"
|
243
277
|
create: "%{user_name} ha creato la riunione %{resource_name} nello spazio %{space_name}"
|
@@ -296,6 +330,16 @@ it:
|
|
296
330
|
other: "%{count} slot rimanenti"
|
297
331
|
view: vista
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: E-mail
|
336
|
+
name: Nome
|
337
|
+
sent_at: Inviato a
|
338
|
+
status: Stato
|
339
|
+
status:
|
340
|
+
accepted: Accettato (%{at})
|
341
|
+
rejected: Rifiutato (%{at})
|
342
|
+
sent: Inviato
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Chiuso
|
@@ -308,10 +352,14 @@ it:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: La registrazione per il <a href="%{url}">%{title}</a> di riunione è stata confermata.
|
310
354
|
details: Puoi trovare i dettagli della riunione in allegato.
|
355
|
+
registration_code: Il tuo codice di registrazione è %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: C'è stato un problema a partecipare a questa riunione.
|
314
359
|
success: Hai partecipato alla riunione con successo.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: C'è stato un problema a rifiutare l'invito.
|
362
|
+
success: Hai rifiutato l'invito con successo.
|
315
363
|
destroy:
|
316
364
|
invalid: C'è stato un problema lasciare questa riunione.
|
317
365
|
success: Hai lasciato l'incontro con successo.
|
data/config/locales/nl.yml
CHANGED
@@ -38,6 +38,10 @@ nl:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: De duur van de items overschrijdt de vergaderduur met %{count} minuten
|
40
40
|
too_many_minutes_child: De duur van het item childs overschrijdt de ouder-duur van het agendapunt "%{parent_title}" met %{count} minuut
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Deze e-mail is al uitgenodigd
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Vergadering gesloten
|
43
47
|
decidim/meetings/create_meeting_event: Vergadering
|
@@ -76,6 +80,7 @@ nl:
|
|
76
80
|
announcement: Aankondiging
|
77
81
|
comments_enabled: Reacties ingeschakeld
|
78
82
|
default_registration_terms: Standaard registratievoorwaarden
|
83
|
+
resources_permissions_enabled: Actiemachtigingen kunnen voor elke vergadering worden ingesteld
|
79
84
|
step:
|
80
85
|
announcement: Aankondiging
|
81
86
|
comments_blocked: Reacties geblokkeerd
|
@@ -101,6 +106,11 @@ nl:
|
|
101
106
|
email_outro: Je ontvangt deze omdat je het event "%{resource_title}" volgt. Ontvolgen kan door te klikken op de voorgaande ink.
|
102
107
|
email_subject: Het event "%{resource_title}" is bijgewerkt
|
103
108
|
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> event is bijgewerkt.
|
109
|
+
registration_code_validated:
|
110
|
+
email_intro: Uw registratiecode "%{registration_code}" is gevalideerd.
|
111
|
+
email_outro: U hebt deze melding ontvangen omdat uw registratiecode voor de "%{resource_title}" -vergadering is gevalideerd.
|
112
|
+
email_subject: Uw registratiecode "%{registration_code}" is gevalideerd
|
113
|
+
notification_title: Uw registratiecode "%{registration_code}" voor de <a href="%{resource_path}">%{resource_title}</a> vergadering is gevalideerd.
|
104
114
|
registrations_enabled:
|
105
115
|
email_intro: 'Het event ''%{resource_title}'' heeft registraties ingeschakeld. Je kan jezelf registreren op zijn pagina:'
|
106
116
|
email_outro: Je ontvangt deze melding omdat je het event "%{resource_title}" volgt. Ontvolgen kan door te klikken op de voorgaande link.
|
@@ -160,16 +170,31 @@ nl:
|
|
160
170
|
registrations: registraties
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Uitnodiging afwijzen
|
163
174
|
invited_you_to_join_a_meeting: "%{invited_by} heeft u uitgenodigd om deel te nemen aan een vergadering op %{application}. U kunt het accepteren via de onderstaande link."
|
164
175
|
join: Word lid van '%{meeting_title}'
|
165
176
|
invites:
|
166
177
|
create:
|
167
178
|
error: Er is een probleem opgetreden tijdens het uitnodigen van de gebruiker om deel te nemen aan de vergadering.
|
168
179
|
success: Gebruikers succesvol uitgenodigd om deel te nemen aan de vergadering.
|
169
|
-
|
170
|
-
|
180
|
+
form:
|
181
|
+
attendee_type: Type deelnemer
|
182
|
+
existing_user: Bestaande gebruiker
|
171
183
|
invite: Uitnodigen
|
172
|
-
|
184
|
+
invite_explanation: De gebruiker wordt ook uitgenodigd om deel te nemen aan de vergadering en aan de organisatie.
|
185
|
+
non_user: Niet bestaande gebruiker
|
186
|
+
select_user: Selecteer gebruiker
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Aanvaard
|
190
|
+
all: Alle
|
191
|
+
rejected: Verworpen
|
192
|
+
sent: Verzonden
|
193
|
+
filter_by: Filteren op
|
194
|
+
invite_attendee: Nodig de deelnemer uit
|
195
|
+
invites: Uitnodigingen
|
196
|
+
registrations_disabled: U kunt een deelnemer niet uitnodigen omdat de registraties zijn uitgeschakeld.
|
197
|
+
search: Zoeken
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Sluiten
|
@@ -226,9 +251,11 @@ nl:
|
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
253
|
save: Opslaan
|
254
|
+
validate: bevestigen
|
255
|
+
validate_registration_code: Valideer de registratiecode
|
229
256
|
form:
|
230
257
|
available_slots_help: Laat het op 0 indien u onbeperkt beschikbare plaatsen hebt.
|
231
|
-
|
258
|
+
invites: Uitnodigingen
|
232
259
|
registrations_count:
|
233
260
|
one: Er is 1 registratie geweest.
|
234
261
|
other: Er zijn %{count} registraties geweest.
|
@@ -237,7 +264,14 @@ nl:
|
|
237
264
|
update:
|
238
265
|
invalid: Er is een probleem opgetreden bij het opslaan van de registratie-instellingen.
|
239
266
|
success: Instellingen bijeenkomst registraties succesvol opgeslagen.
|
267
|
+
validate_registration_code:
|
268
|
+
invalid: Deze registratiecode is ongeldig.
|
269
|
+
success: Registratiecode succesvol gevalideerd.
|
240
270
|
admin_log:
|
271
|
+
invite:
|
272
|
+
create: "%{user_name} heeft %{attendee_name} uitgenodigd om deel te nemen aan %{resource_name} bijeenkomsten op de %{space_name} ruimte"
|
273
|
+
deleted: "%{user_name} onuitgenodigd %{attendee_name} van deelname aan %{resource_name} vergadering op de %{space_name} ruimte"
|
274
|
+
update: "%{user_name} heeft %{attendee_name} uitgenodigd om deel te nemen aan %{resource_name} bijeenkomsten op de %{space_name} ruimte"
|
241
275
|
meeting:
|
242
276
|
close: "%{user_name} sloot het %{resource_name} event in de %{space_name} ruimte"
|
243
277
|
create: "%{user_name} heeft het %{resource_name} event gemaakt in de %{space_name} ruimte"
|
@@ -296,6 +330,16 @@ nl:
|
|
296
330
|
other: "%{count} resterende plaatsen"
|
297
331
|
view: Uitzicht
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: E-mail
|
336
|
+
name: Naam
|
337
|
+
sent_at: Verzonden op
|
338
|
+
status: staat
|
339
|
+
status:
|
340
|
+
accepted: Geaccepteerd (%{at})
|
341
|
+
rejected: Rejected (%{at})
|
342
|
+
sent: Verzonden
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Gesloten
|
@@ -308,10 +352,14 @@ nl:
|
|
308
352
|
confirmation:
|
309
353
|
confirmed_html: Uw registratie voor de vergadering <a href="%{url}">%{title}</a> is bevestigd.
|
310
354
|
details: In de bijlage vindt u de details van de vergadering.
|
355
|
+
registration_code: Uw registratiecode is %{code}.
|
311
356
|
registrations:
|
312
357
|
create:
|
313
358
|
invalid: Er is een probleem opgetreden bij het deelnemen van deze vergadering.
|
314
359
|
success: U bent met succes lid geworden van de vergadering.
|
360
|
+
decline_invitation:
|
361
|
+
invalid: Er is een probleem opgetreden bij het afwijzen van de uitnodiging.
|
362
|
+
success: U hebt de uitnodiging met succes afgewezen.
|
315
363
|
destroy:
|
316
364
|
invalid: Er is een probleem geweest met het verlaten van deze vergadering.
|
317
365
|
success: U heeft de vergadering succesvol verlaten.
|
data/config/locales/pl.yml
CHANGED
@@ -38,6 +38,10 @@ pl:
|
|
38
38
|
base:
|
39
39
|
too_many_minutes: Czas trwania przedmiotów przekracza czas trwania spotkania o %{count} minut
|
40
40
|
too_many_minutes_child: Czas trwania elementów potomnych przekracza czas trwania okresu rodzicielskiego "%{parent_title}" w porządku obrad o %{count} minutę
|
41
|
+
meeting_registration_invite:
|
42
|
+
attributes:
|
43
|
+
email:
|
44
|
+
already_invited: Ten e-mail został już zaproszony
|
41
45
|
models:
|
42
46
|
decidim/meetings/close_meeting_event: Spotkanie zamknięte
|
43
47
|
decidim/meetings/create_meeting_event: Spotkanie
|
@@ -82,6 +86,7 @@ pl:
|
|
82
86
|
announcement: Ogłoszenie
|
83
87
|
comments_enabled: Komentarze włączone
|
84
88
|
default_registration_terms: Domyślne warunki rejestracji
|
89
|
+
resources_permissions_enabled: Uprawnienia akcji można ustawić dla każdego spotkania
|
85
90
|
step:
|
86
91
|
announcement: Ogłoszenie
|
87
92
|
comments_blocked: Komentarze zablokowane
|
@@ -107,6 +112,11 @@ pl:
|
|
107
112
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz spotkanie "%{resource_title}". Możesz przestać go obserwować z poprzedniego linku.
|
108
113
|
email_subject: Spotkanie "%{resource_title}" zostało zaktualizowane
|
109
114
|
notification_title: Spotkanie <a href="%{resource_path}">%{resource_title}</a> zostało zaktualizowane.
|
115
|
+
registration_code_validated:
|
116
|
+
email_intro: Twój kod rejestracyjny "%{registration_code}" został zatwierdzony.
|
117
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ Twój kod rejestracyjny spotkania "%{resource_title}" został zatwierdzony.
|
118
|
+
email_subject: Twój kod rejestracyjny "%{registration_code}" został zatwierdzony
|
119
|
+
notification_title: Twój kod rejestracyjny "%{registration_code}" dla spotkania <a href="%{resource_path}">%{resource_title}</a> został zatwierdzony.
|
110
120
|
registrations_enabled:
|
111
121
|
email_intro: 'Spotkanie "%{resource_title}" umożliwiło rejestrację. Możesz zarejestrować się na swojej stronie:'
|
112
122
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz spotkanie "%{resource_title}". Możesz przestać go obserwować z poprzedniego linku.
|
@@ -166,16 +176,31 @@ pl:
|
|
166
176
|
registrations: Rejestracje
|
167
177
|
invite_join_meeting_mailer:
|
168
178
|
invite:
|
179
|
+
decline: Odrzuć zaproszenie
|
169
180
|
invited_you_to_join_a_meeting: "%{invited_by} zaprosił_a Cię do udziału w spotkaniu w %{application}. Możesz to zaakceptować za pomocą poniższego linku."
|
170
181
|
join: Dołącz do spotkania "%{meeting_title}"
|
171
182
|
invites:
|
172
183
|
create:
|
173
184
|
error: Wystąpił problem przy zapraszaniu użytkownika do uczestnictwa w spotkaniu.
|
174
185
|
success: Udało się zaprosić użytkownika do udziału w spotkaniu.
|
175
|
-
|
176
|
-
|
186
|
+
form:
|
187
|
+
attendee_type: Typ uczestnika
|
188
|
+
existing_user: Istniejący użytkownik
|
177
189
|
invite: Zaproś
|
178
|
-
|
190
|
+
invite_explanation: Użytkownik zostanie zaproszony do przyłączenia się do spotkania i do organizacji.
|
191
|
+
non_user: Nieistniejący użytkownik
|
192
|
+
select_user: Wybierz użytkownika
|
193
|
+
index:
|
194
|
+
filter:
|
195
|
+
accepted: Przyjęty
|
196
|
+
all: Wszystko
|
197
|
+
rejected: Odrzucono
|
198
|
+
sent: Wysłane
|
199
|
+
filter_by: Filtruj według
|
200
|
+
invite_attendee: Zaproś uczestnika
|
201
|
+
invites: Zaprasza
|
202
|
+
registrations_disabled: Nie możesz zaprosić uczestnika, ponieważ rejestracje są wyłączone.
|
203
|
+
search: Szukaj
|
179
204
|
meeting_closes:
|
180
205
|
edit:
|
181
206
|
close: Zamknij
|
@@ -232,9 +257,11 @@ pl:
|
|
232
257
|
registrations:
|
233
258
|
edit:
|
234
259
|
save: Zapisać
|
260
|
+
validate: Uprawomocnić
|
261
|
+
validate_registration_code: Zatwierdź kod rejestracyjny
|
235
262
|
form:
|
236
263
|
available_slots_help: Zostaw ją na 0, jeśli masz nieograniczone szczeliny dostępne.
|
237
|
-
|
264
|
+
invites: Zaprasza
|
238
265
|
registrations_count:
|
239
266
|
one: Została 1 rejestracja.
|
240
267
|
few: Rejestrowano %{count}.
|
@@ -245,7 +272,14 @@ pl:
|
|
245
272
|
update:
|
246
273
|
invalid: Wystąpił problem z zapisaniem ustawień rejestracji.
|
247
274
|
success: Dokonano pomyślnego zapisania ustawień rejestracji rejestracji.
|
275
|
+
validate_registration_code:
|
276
|
+
invalid: Ten kod rejestracyjny jest nieprawidłowy.
|
277
|
+
success: Kod rejestracyjny pomyślnie sprawdzony.
|
248
278
|
admin_log:
|
279
|
+
invite:
|
280
|
+
create: "%{user_name} zaproszono %{attendee_name} aby dołączyć %{resource_name} spotkania na %{space_name} przestrzeni"
|
281
|
+
deleted: "%{user_name} niezaproszone %{attendee_name} z dołączenia %{resource_name} spotkania na %{space_name} spacje"
|
282
|
+
update: "%{user_name} zaproszono %{attendee_name} aby dołączyć %{resource_name} spotkania na %{space_name} przestrzeni"
|
249
283
|
meeting:
|
250
284
|
close: "%{user_name} zamknął spotkanie %{resource_name} na przestrzeni %{space_name}"
|
251
285
|
create: "%{user_name} utworzył spotkanie %{resource_name} na przestrzeni %{space_name}"
|
@@ -306,6 +340,16 @@ pl:
|
|
306
340
|
other: "Pozostało %{count}"
|
307
341
|
view: Widok
|
308
342
|
models:
|
343
|
+
invite:
|
344
|
+
fields:
|
345
|
+
email: E-mail
|
346
|
+
name: Nazwa
|
347
|
+
sent_at: Wysłane pod adresem
|
348
|
+
status: Status
|
349
|
+
status:
|
350
|
+
accepted: Zaakceptowano (%{at})
|
351
|
+
rejected: Odrzucony (%{at})
|
352
|
+
sent: Wysłane
|
309
353
|
meeting:
|
310
354
|
fields:
|
311
355
|
closed: Zamknięte
|
@@ -318,10 +362,14 @@ pl:
|
|
318
362
|
confirmation:
|
319
363
|
confirmed_html: Rejestracji dla <a href="%{url}">%{title}</a> spotkanie zostało potwierdzone.
|
320
364
|
details: Szczegóły spotkania znajdą Państwo w załączniku.
|
365
|
+
registration_code: Twój kod rejestracyjny to %{code}.
|
321
366
|
registrations:
|
322
367
|
create:
|
323
368
|
invalid: Wystąpił problem z dołączeniem tego spotkania.
|
324
369
|
success: Dołączyłeś do tego spotkanie.
|
370
|
+
decline_invitation:
|
371
|
+
invalid: Wystąpił problem z odrzuceniem zaproszenia.
|
372
|
+
success: Odrzuciłeś zaproszenie z powodzeniem.
|
325
373
|
destroy:
|
326
374
|
invalid: Wystąpił problem z tym spotkaniem.
|
327
375
|
success: Opuściłeś spotkanie pomyślnie.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -38,6 +38,10 @@ pt-BR:
|
|
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 endereço de e-mail 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-BR:
|
|
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 encontro
|
79
84
|
step:
|
80
85
|
announcement: Anúncio
|
81
86
|
comments_blocked: Comentários bloqueados
|
@@ -101,6 +106,11 @@ pt-BR:
|
|
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 confirmado.
|
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 confirmado
|
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.
|
@@ -117,7 +127,7 @@ pt-BR:
|
|
117
127
|
attachment_collections: Pastas
|
118
128
|
attachments: Anexos
|
119
129
|
close: Fechar
|
120
|
-
confirm_destroy:
|
130
|
+
confirm_destroy: Deseja mesmo excluir este encontro?
|
121
131
|
destroy: Excluir
|
122
132
|
edit: Editar
|
123
133
|
minutes: Minutos
|
@@ -160,16 +170,31 @@ pt-BR:
|
|
160
170
|
registrations: Inscrições
|
161
171
|
invite_join_meeting_mailer:
|
162
172
|
invite:
|
173
|
+
decline: Rejeitar 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 do encontro e da organização.
|
185
|
+
non_user: Usuário inexistente
|
186
|
+
select_user: Selecionar usuário
|
187
|
+
index:
|
188
|
+
filter:
|
189
|
+
accepted: Aceitos
|
190
|
+
all: Tudo
|
191
|
+
rejected: Rejeitados
|
192
|
+
sent: Enviado
|
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: Pesquisar
|
173
198
|
meeting_closes:
|
174
199
|
edit:
|
175
200
|
close: Fechar
|
@@ -185,7 +210,7 @@ pt-BR:
|
|
185
210
|
invalid: Tem havido um problema ao criar esta reunião
|
186
211
|
success: Reunião criada com sucesso
|
187
212
|
destroy:
|
188
|
-
success: Reunião excluída com
|
213
|
+
success: Reunião excluída com sucesso
|
189
214
|
edit:
|
190
215
|
update: Atualizar
|
191
216
|
form:
|
@@ -225,10 +250,12 @@ pt-BR:
|
|
225
250
|
name: encontro
|
226
251
|
registrations:
|
227
252
|
edit:
|
228
|
-
save:
|
253
|
+
save: Salvar
|
254
|
+
validate: Confirmar
|
255
|
+
validate_registration_code: Confirmar 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-BR:
|
|
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 confirmado 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}"
|
@@ -263,7 +297,7 @@ pt-BR:
|
|
263
297
|
filters:
|
264
298
|
category: Categoria
|
265
299
|
category_prompt: Selecione uma categoria
|
266
|
-
date:
|
300
|
+
date: Data
|
267
301
|
past: Passado
|
268
302
|
search: Pesquisa
|
269
303
|
upcoming: próximos
|
@@ -296,6 +330,16 @@ pt-BR:
|
|
296
330
|
other: "%{count} slots restantes"
|
297
331
|
view: Visualizar
|
298
332
|
models:
|
333
|
+
invite:
|
334
|
+
fields:
|
335
|
+
email: E-mail
|
336
|
+
name: Nome
|
337
|
+
sent_at: Enviado em
|
338
|
+
status: Estado
|
339
|
+
status:
|
340
|
+
accepted: Aceito (%{at})
|
341
|
+
rejected: Rejeitado (%{at})
|
342
|
+
sent: Enviado
|
299
343
|
meeting:
|
300
344
|
fields:
|
301
345
|
closed: Fechadas
|
@@ -308,10 +352,14 @@ pt-BR:
|
|
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.
|
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.
|