decidim-meetings 0.7.4 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +7 -1
- data/app/commands/decidim/meetings/join_meeting.rb +1 -1
- data/app/controllers/decidim/meetings/meeting_widgets_controller.rb +1 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/admin/invite_join_meeting_mailer.rb +1 -1
- data/app/models/decidim/meetings/meeting.rb +1 -1
- data/app/views/decidim/meetings/meeting_widgets/show.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_registration_confirm.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +2 -2
- data/config/locales/it.yml +39 -39
- data/config/locales/nl.yml +58 -58
- data/config/locales/pt.yml +194 -0
- data/lib/decidim/meetings/test/factories.rb +6 -3
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +41 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3566ed884b84938457709b5a38fa3d3c8a653806
|
4
|
+
data.tar.gz: ca30e1f8fd9dd584fd2773c99d64a06f40aa6423
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea34bbd3a04669ef0a4aa026d6dc85a0501262e7c17cf93011e2a4738e2c2277b1823dfd74cd6cc775bb14961f4930cdbad4dc136d336d5bfbb963dfeac39272
|
7
|
+
data.tar.gz: d89f2b532d981215271c1b37521561f168c1c68ab0583edbf2c9cfb9e6a301d429ae313fbe69b786488b33bfc482dd4728527d7fcc3cdb27da1775dae98fbc22
|
data/README.md
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
# Decidim::Meetings
|
2
|
+
|
2
3
|
The Meetings module adds meeting to any participatory process. It adds a CRUD engine to the admin and public view scoped inside the participatory process.
|
3
4
|
|
4
5
|
## Usage
|
6
|
+
|
5
7
|
Meetings will be available as a Feature for a Participatory Process.
|
6
8
|
|
7
9
|
## Installation
|
10
|
+
|
8
11
|
Add this line to your application's Gemfile:
|
9
12
|
|
10
13
|
```ruby
|
@@ -12,12 +15,15 @@ gem 'decidim-meetings'
|
|
12
15
|
```
|
13
16
|
|
14
17
|
And then execute:
|
18
|
+
|
15
19
|
```bash
|
16
|
-
|
20
|
+
bundle
|
17
21
|
```
|
18
22
|
|
19
23
|
## Contributing
|
24
|
+
|
20
25
|
See [Decidim](https://github.com/decidim/decidim).
|
21
26
|
|
22
27
|
## License
|
28
|
+
|
23
29
|
See [Decidim](https://github.com/decidim/decidim).
|
@@ -7,7 +7,7 @@ module Decidim
|
|
7
7
|
# an existing user.
|
8
8
|
class InviteJoinMeetingMailer < Decidim::ApplicationMailer
|
9
9
|
include Decidim::TranslationsHelper
|
10
|
-
include
|
10
|
+
include Decidim::SanitizeHelper
|
11
11
|
|
12
12
|
helper Decidim::ResourceHelper
|
13
13
|
helper Decidim::TranslationsHelper
|
@@ -14,7 +14,7 @@ module Decidim
|
|
14
14
|
include Decidim::Followable
|
15
15
|
include Decidim::Comments::Commentable
|
16
16
|
|
17
|
-
has_many :registrations, class_name: "Decidim::Meetings::Registration", foreign_key: "decidim_meeting_id"
|
17
|
+
has_many :registrations, class_name: "Decidim::Meetings::Registration", foreign_key: "decidim_meeting_id", dependent: :destroy
|
18
18
|
|
19
19
|
feature_manifest_name "meetings"
|
20
20
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<%= content_for(:title, translated_attribute(model.title)) %>
|
2
2
|
<%= render partial: "decidim/meetings/meetings/datetime", locals: { meeting: model } %>
|
3
|
-
<%=
|
3
|
+
<%= decidim_sanitize meeting_description(model) %>
|
4
4
|
<div class="address card__extra">
|
5
5
|
<div class="address__icon">
|
6
6
|
<%= icon "meetings", remove_icon_class: true, width: 40, height: 70 %>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<%= meeting.start_time.strftime("%H:%M") %> - <%= meeting.end_time.strftime("%H:%M") %>
|
15
15
|
</div>
|
16
16
|
</div>
|
17
|
-
<%=
|
17
|
+
<%= decidim_sanitize translated_attribute meeting.description %>
|
18
18
|
</div>
|
19
19
|
</article>
|
20
20
|
</div>
|
@@ -19,7 +19,7 @@
|
|
19
19
|
<h5 class="card__title"><%= translated_attribute meeting.title %></h5>
|
20
20
|
<% end %>
|
21
21
|
<%= render partial: "datetime", locals: { meeting: meeting } %>
|
22
|
-
<%=
|
22
|
+
<%= decidim_sanitize meeting_description(meeting) %>
|
23
23
|
<%= render partial: "decidim/shared/tags", locals: { resource: meeting, tags_class_extra: "tags--meeting" } %>
|
24
24
|
<div class="address card__extra">
|
25
25
|
<div class="address__icon">
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="reveal" data-reveal id="meeting-registration-confirm">
|
2
2
|
<div class="row">
|
3
3
|
<div class="columns medium-10 medium-offset-1 help-text">
|
4
|
-
<%=
|
4
|
+
<%= decidim_sanitize translated_attribute(meeting.registration_terms) %>
|
5
5
|
</div>
|
6
6
|
</div>
|
7
7
|
<div class="row">
|
@@ -62,14 +62,14 @@
|
|
62
62
|
</div>
|
63
63
|
<div class="columns mediumlarge-8 mediumlarge-pull-4">
|
64
64
|
<div class="section">
|
65
|
-
<p><%=
|
65
|
+
<p><%= decidim_sanitize translated_attribute meeting.description %></p>
|
66
66
|
<%= render partial: "decidim/shared/static_map", locals: { icon_name: "meetings", geolocalizable: meeting } %>
|
67
67
|
<%= render partial: "decidim/shared/tags", locals: { resource: meeting, tags_class_extra: "tags--meeting" } %>
|
68
68
|
</div>
|
69
69
|
<% if meeting.closed? %>
|
70
70
|
<div class="section">
|
71
71
|
<h3 class="section-heading"><%= t(".meeting_report") %></h3>
|
72
|
-
<%=
|
72
|
+
<%= decidim_sanitize translated_attribute meeting.closing_report %>
|
73
73
|
</div>
|
74
74
|
<% end %>
|
75
75
|
<%= linked_resources_for meeting, :proposals, "proposals_from_meeting" %>
|
data/config/locales/it.yml
CHANGED
@@ -4,9 +4,9 @@ it:
|
|
4
4
|
close_meeting:
|
5
5
|
attendees_count: Numero di partecipanti
|
6
6
|
attending_organizations: Elenco delle organizzazioni partecipanti
|
7
|
-
closing_report:
|
7
|
+
closing_report: Rapporto
|
8
8
|
contributions_count: Numero di contributi
|
9
|
-
proposal_ids: Proposte
|
9
|
+
proposal_ids: Proposte create nell'incontro
|
10
10
|
meeting:
|
11
11
|
address: Indirizzo
|
12
12
|
decidim_category_id: Categoria
|
@@ -16,12 +16,12 @@ it:
|
|
16
16
|
location: Luogo
|
17
17
|
location_hints: Informazione sul luogo
|
18
18
|
start_time: Orario inizio
|
19
|
-
title:
|
19
|
+
title: Titolo
|
20
20
|
decidim:
|
21
21
|
features:
|
22
22
|
meetings:
|
23
23
|
actions:
|
24
|
-
join:
|
24
|
+
join: Unirsi
|
25
25
|
name: Incontri
|
26
26
|
settings:
|
27
27
|
global:
|
@@ -39,23 +39,23 @@ it:
|
|
39
39
|
edit: Modifica
|
40
40
|
new: Nuovo
|
41
41
|
preview: Anteprima
|
42
|
-
registrations:
|
42
|
+
registrations: Iscrizioni
|
43
43
|
title: Azioni
|
44
44
|
admin:
|
45
45
|
exports:
|
46
|
-
registrations:
|
46
|
+
registrations: Iscrizioni
|
47
47
|
invite_join_meeting_mailer:
|
48
48
|
invite:
|
49
|
-
invited_you_to_join_a_meeting: "%{invited_by} ti ha invitato a partecipare a una riunione al %{application}. Puoi accettarla tramite il
|
50
|
-
join:
|
49
|
+
invited_you_to_join_a_meeting: "%{invited_by} ti ha invitato a partecipare a una riunione al %{application}. Puoi accettarla tramite il link sottostante."
|
50
|
+
join: Partecipa alla riunione '%{meeting_title}'
|
51
51
|
invites:
|
52
52
|
create:
|
53
|
-
error:
|
53
|
+
error: C'è stato un problema durante l'invito all'utente di partecipare alla riunione.
|
54
54
|
success: L'utente è stato invitato a partecipare alla riunione.
|
55
55
|
new:
|
56
|
-
explanation: L'utente sarà invitato a partecipare a una riunione. Se
|
56
|
+
explanation: L'utente sarà invitato a partecipare a una riunione. Se l'indirizzo email non è registrato, saranno anche invitati all'organizzazione.
|
57
57
|
invite: Invita
|
58
|
-
new_invite: Invita
|
58
|
+
new_invite: Invita un utente
|
59
59
|
meeting_closes:
|
60
60
|
edit:
|
61
61
|
close: Chiudi
|
@@ -72,7 +72,7 @@ it:
|
|
72
72
|
edit:
|
73
73
|
update: Modifica
|
74
74
|
index:
|
75
|
-
title:
|
75
|
+
title: Riunioni
|
76
76
|
new:
|
77
77
|
create: Crea
|
78
78
|
title: Crea meeting
|
@@ -81,44 +81,44 @@ it:
|
|
81
81
|
success: OK, il meeting è stato aggiornato.
|
82
82
|
models:
|
83
83
|
meeting:
|
84
|
-
name:
|
84
|
+
name: Reunione
|
85
85
|
registrations:
|
86
86
|
edit:
|
87
87
|
save: Salva
|
88
88
|
form:
|
89
|
-
available_slots_help: Lasciare a 0 se disponi di slot
|
90
|
-
invite_user: Invita
|
89
|
+
available_slots_help: Lasciare a 0 se disponi di slot illimitati.
|
90
|
+
invite_user: Invita un utente
|
91
91
|
registrations_count:
|
92
|
-
one:
|
93
|
-
other:
|
92
|
+
one: Si è registrato un'iscrizione.
|
93
|
+
other: Si sono registrate %{count} iscrizione.
|
94
94
|
update:
|
95
95
|
invalid: Si è verificato un problema salvando le impostazioni di registrazione.
|
96
96
|
success: Le impostazioni di registrazione delle riunioni sono state salvate correttamente.
|
97
97
|
events:
|
98
98
|
close_meeting_event:
|
99
|
-
email_intro: '
|
100
|
-
email_outro: Hai ricevuto questa notifica perché
|
101
|
-
email_subject: È
|
102
|
-
notification_title: La riunione di <a href="%{resource_path}">%{resource_title}</a>
|
99
|
+
email_intro: 'La riunione "%{resource_title}" è stata chiusa. È possibile leggere le conclusioni dalla sua pagina:'
|
100
|
+
email_outro: Hai ricevuto questa notifica perché segui la riunione "%{resource_title}". Puoi smettere di seguirla nel link precedente.
|
101
|
+
email_subject: È stata chiusa la riunione "%{resource_title}"
|
102
|
+
notification_title: La riunione di <a href="%{resource_path}">%{resource_title}</a> è stata chiusa.
|
103
103
|
meeting_registrations_enabled:
|
104
|
-
email_intro: '
|
105
|
-
email_outro: Hai ricevuto questa notifica perché si segue
|
106
|
-
email_subject:
|
104
|
+
email_intro: 'La riunione "%{resource_title}" ha permesso le registrazioni. È possibile registrarsi sulla sua pagina:'
|
105
|
+
email_outro: Hai ricevuto questa notifica perché si segue la riunione "%{resource_title}". Puoi smettere di seguirla nel link precedente.
|
106
|
+
email_subject: La riunione "%{resource_title}" ha permesso le registrazioni.
|
107
107
|
notification_title: La riunione di <a href="%{resource_path}">%{resource_title}</a> ha permesso le registrazioni.
|
108
108
|
meeting_registrations_over_percentage:
|
109
|
-
email_intro: Gli slot di
|
110
|
-
email_outro: Hai ricevuto questa notifica perché sei un admin
|
111
|
-
email_subject: Gli slot di
|
109
|
+
email_intro: Gli slot di riunione occupati "%{resource_title}" sono più di %{percentage}%.
|
110
|
+
email_outro: Hai ricevuto questa notifica perché sei un admin dello spazio partecipativo della riunione.
|
111
|
+
email_subject: Gli slot di riunione occupati "%{resource_title}" sono più di %{percentage}%
|
112
112
|
notification_title: Gli slot di riunione occupate <a href="%{resource_path}">%{resource_title}</a> sono più di %{percentage}%.
|
113
113
|
upcoming_meeting_event:
|
114
|
-
email_intro:
|
115
|
-
email_outro: Hai ricevuto questa notifica perché si segue
|
116
|
-
email_subject:
|
114
|
+
email_intro: La riunione "%{resource_title}" inizierà in meno di 48 ore.
|
115
|
+
email_outro: Hai ricevuto questa notifica perché si segue la riunione "%{resource_title}". Puoi smettere di seguirla nel link precedente.
|
116
|
+
email_subject: La riunione "%{resource_title}" inizierà in meno di 48 ore.
|
117
117
|
notification_title: La riunione di <a href="%{resource_path}">%{resource_title}</a> inizierà in meno di 48 ore.
|
118
118
|
update_meeting_event:
|
119
|
-
email_intro: '
|
120
|
-
email_outro: Hai ricevuto questa notifica perché si segue
|
121
|
-
email_subject: È
|
119
|
+
email_intro: 'La riunione "%{resource_title}" è stata aggiornata. Puoi leggere la nuova versione dalla sua pagina:'
|
120
|
+
email_outro: Hai ricevuto questa notifica perché si segue la riunione "%{resource_title}". Puoi smettere di seguirla nel link precedente.
|
121
|
+
email_subject: È stata aggiornata la riunione "%{resource_title}"
|
122
122
|
notification_title: La riunione di <a href="%{resource_path}">%{resource_title}</a> è stata aggiornata.
|
123
123
|
mailer:
|
124
124
|
invite_join_meeting_mailer:
|
@@ -126,14 +126,14 @@ it:
|
|
126
126
|
subject: Oggetto
|
127
127
|
registration_mailer:
|
128
128
|
confirmation:
|
129
|
-
subject:
|
129
|
+
subject: La tua registrazione alla riunione è stata confermata
|
130
130
|
meetings:
|
131
131
|
filters:
|
132
132
|
category: Categoria
|
133
133
|
category_prompt: Scegli una categoria
|
134
134
|
date: Data
|
135
135
|
past: Passato
|
136
|
-
scope_prompt:
|
136
|
+
scope_prompt: Seleziona un campo
|
137
137
|
scopes: Visibilità
|
138
138
|
search: Cerca
|
139
139
|
upcoming: Imminenti
|
@@ -153,13 +153,13 @@ it:
|
|
153
153
|
show:
|
154
154
|
attendees: Conteggio dei partecipanti
|
155
155
|
contributions: Conteggio dei contributi
|
156
|
-
going:
|
157
|
-
join:
|
158
|
-
meeting_report:
|
156
|
+
going: Parteciperò
|
157
|
+
join: Partecipa alla riunione
|
158
|
+
meeting_report: Rapporto della riunione
|
159
159
|
no_slots_available: Nessuna slot disponibile
|
160
160
|
organizations: Organizzazioni partecipanti.
|
161
161
|
remaining_slots:
|
162
|
-
one: 1 slot
|
162
|
+
one: 1 slot restanti
|
163
163
|
other: "%{count} slot rimanenti"
|
164
164
|
models:
|
165
165
|
meeting:
|
data/config/locales/nl.yml
CHANGED
@@ -3,14 +3,14 @@ nl:
|
|
3
3
|
attributes:
|
4
4
|
close_meeting:
|
5
5
|
attendees_count: Aantal deelnemers
|
6
|
-
attending_organizations: Lijst van organisaties die
|
7
|
-
closing_report:
|
6
|
+
attending_organizations: Lijst van organisaties die bijwoonden
|
7
|
+
closing_report: Melden
|
8
8
|
contributions_count: Aantal bijdragen
|
9
9
|
proposal_ids: Voorstellen die in de vergadering zijn gemaakt
|
10
10
|
meeting:
|
11
11
|
address: Adres
|
12
12
|
decidim_category_id: Categorie
|
13
|
-
decidim_scope_id:
|
13
|
+
decidim_scope_id: Scope
|
14
14
|
description: Beschrijving
|
15
15
|
end_time: Eindtijd
|
16
16
|
location: Plaats
|
@@ -21,7 +21,7 @@ nl:
|
|
21
21
|
features:
|
22
22
|
meetings:
|
23
23
|
actions:
|
24
|
-
join:
|
24
|
+
join: Lid worden
|
25
25
|
name: Vergaderingen
|
26
26
|
settings:
|
27
27
|
global:
|
@@ -46,39 +46,39 @@ nl:
|
|
46
46
|
registrations: registraties
|
47
47
|
invite_join_meeting_mailer:
|
48
48
|
invite:
|
49
|
-
invited_you_to_join_a_meeting: "%{invited_by} heeft
|
49
|
+
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."
|
50
50
|
join: Word lid van '%{meeting_title}'
|
51
51
|
invites:
|
52
52
|
create:
|
53
53
|
error: Er is een probleem opgetreden tijdens het uitnodigen van de gebruiker om deel te nemen aan de vergadering.
|
54
54
|
success: Gebruikers succesvol uitgenodigd om deel te nemen aan de vergadering.
|
55
55
|
new:
|
56
|
-
explanation: De gebruiker wordt uitgenodigd om deel te nemen aan een vergadering. Als
|
57
|
-
invite:
|
58
|
-
new_invite:
|
56
|
+
explanation: De gebruiker wordt uitgenodigd om deel te nemen aan een vergadering. Als het e-mailadres niet is geregistreerd, worden ze ook uitgenodigd voor de organisatie.
|
57
|
+
invite: Uitnodigen
|
58
|
+
new_invite: Gebruiker uitnodigen
|
59
59
|
meeting_closes:
|
60
60
|
edit:
|
61
|
-
close:
|
62
|
-
title:
|
61
|
+
close: Sluiten
|
62
|
+
title: Vergadering sluiten
|
63
63
|
meetings:
|
64
64
|
close:
|
65
65
|
invalid: Er is een probleem opgetreden bij het sluiten van deze vergadering
|
66
|
-
success: Vergadering
|
66
|
+
success: Vergadering succesvol afgesloten
|
67
67
|
create:
|
68
68
|
invalid: Er is een probleem opgetreden met het maken van deze vergadering
|
69
|
-
success: Vergadering
|
69
|
+
success: Vergadering succesvol aangemaakt
|
70
70
|
destroy:
|
71
|
-
success:
|
71
|
+
success: Vergadering succesvol verwijderd
|
72
72
|
edit:
|
73
73
|
update: Bijwerken
|
74
74
|
index:
|
75
75
|
title: Vergaderingen
|
76
76
|
new:
|
77
77
|
create: Creëren
|
78
|
-
title:
|
78
|
+
title: Creëer vergadering
|
79
79
|
update:
|
80
80
|
invalid: Er is een probleem opgetreden bij het bijwerken van deze vergadering
|
81
|
-
success: Vergadering
|
81
|
+
success: Vergadering succesvol bijgewerkt
|
82
82
|
models:
|
83
83
|
meeting:
|
84
84
|
name: Vergadering
|
@@ -86,44 +86,44 @@ nl:
|
|
86
86
|
edit:
|
87
87
|
save: Opslaan
|
88
88
|
form:
|
89
|
-
available_slots_help: Laat het
|
90
|
-
invite_user:
|
89
|
+
available_slots_help: Laat het op 0 indien u onbeperkt beschikbare plaatsen hebt.
|
90
|
+
invite_user: Gebruiker uitnodigen
|
91
91
|
registrations_count:
|
92
92
|
one: Er is 1 registratie geweest.
|
93
93
|
other: Er zijn %{count} registraties geweest.
|
94
94
|
update:
|
95
95
|
invalid: Er is een probleem opgetreden bij het opslaan van de registratie-instellingen.
|
96
|
-
success:
|
96
|
+
success: Instellingen bijeenkomst registraties succesvol opgeslagen.
|
97
97
|
events:
|
98
98
|
close_meeting_event:
|
99
|
-
email_intro: 'De "%{resource_title}"-bijeenkomst werd gesloten. U kunt de conclusies
|
100
|
-
email_outro: U
|
101
|
-
email_subject: De "%{resource_title}"
|
102
|
-
notification_title: De <a href="%{resource_path}">%{resource_title}</a>
|
99
|
+
email_intro: 'De "%{resource_title}"-bijeenkomst werd gesloten. U kunt de conclusies lezen op deze pagina:'
|
100
|
+
email_outro: U heeft deze melding ontvangen omdat u de bijeenkomst "%{resource_title}" volgt. U kan stoppen met deze te volgen via vorige link.
|
101
|
+
email_subject: De bijeenkomst "%{resource_title}" werd gesloten
|
102
|
+
notification_title: De bijeenkomst <a href="%{resource_path}">%{resource_title}</a> werd gesloten.
|
103
103
|
meeting_registrations_enabled:
|
104
|
-
email_intro: 'De
|
105
|
-
email_outro: U
|
106
|
-
email_subject: De
|
107
|
-
notification_title: De <a href="%{resource_path}">%{resource_title}</a
|
104
|
+
email_intro: 'De bijeenkomst "%{resource_title}" voorziet registraties. U kunt uzelf registreren op de pagina:'
|
105
|
+
email_outro: U heeft deze melding ontvangen omdat u de "%{resource_title}"-vergadering volgt. U kan stoppen met deze te volgen via vorige link.
|
106
|
+
email_subject: De bijeenkomst %{resource_title} voorziet registraties.
|
107
|
+
notification_title: De bijeenkomst <a href="%{resource_path}">%{resource_title}</a> voorziet registraties.
|
108
108
|
meeting_registrations_over_percentage:
|
109
|
-
email_intro: De "%{resource_title}"
|
110
|
-
email_outro: U ontvangt deze melding omdat
|
111
|
-
email_subject: De "%{resource_title}"
|
112
|
-
notification_title: De <a href="%{resource_path}">%{resource_title}</a>
|
109
|
+
email_intro: De bezetten plaatsen voor de bijeenkomst "%{resource_title}" overschrijden %{percentage}%.
|
110
|
+
email_outro: U ontvangt deze melding omdat u de administrator van participatieve ruimte van de bijeenkomst bent.
|
111
|
+
email_subject: De bezetten plaatsen voor "%{resource_title}" overschrijden %{percentage}%
|
112
|
+
notification_title: De bezetten plaatsen voor de bijeenkomst <a href="%{resource_path}">%{resource_title}</a> overschrijden %{percentage}%.
|
113
113
|
upcoming_meeting_event:
|
114
|
-
email_intro: De bijeenkomst
|
115
|
-
email_outro: U ontvangt dit bericht omdat u de bijeenkomst "%{resource_title}
|
116
|
-
email_subject: De bijeenkomst
|
117
|
-
notification_title: De <a href="%{resource_path}">%{resource_title}</a>-
|
114
|
+
email_intro: De bijeenkomst "%{resource_title}" zal beginnen in minder dan 48 uur.
|
115
|
+
email_outro: U ontvangt dit bericht omdat u de bijeenkomst "%{resource_title} volgt". Je kunt stoppen met volgen via vorige link.
|
116
|
+
email_subject: De bijeenkomst "%{resource_title}" zal beginnen in minder dan 48 uur.
|
117
|
+
notification_title: De bijeenkomst <a href="%{resource_path}">%{resource_title}</a>-zal beginnen in minder dan 48 uur.
|
118
118
|
update_meeting_event:
|
119
|
-
email_intro: 'De
|
120
|
-
email_outro: U
|
121
|
-
email_subject: De vergadering
|
122
|
-
notification_title: De <a href="%{resource_path}">%{resource_title}</a>
|
119
|
+
email_intro: 'De bijeenkomst "%{resource_title}" werd bijgewerkt. U kunt de nieuwe versie op volgende pagina lezen:'
|
120
|
+
email_outro: U heeft deze melding ontvangen omdat u de bijeenkomst "%{resource_title}" volgt. U kan stoppen met deze te volgen via vorige link.
|
121
|
+
email_subject: De vergadering "%{resource_title}" werd bijgewerkt
|
122
|
+
notification_title: De bijeenkomst <a href="%{resource_path}">%{resource_title}</a> werd bijgewerkt.
|
123
123
|
mailer:
|
124
124
|
invite_join_meeting_mailer:
|
125
125
|
invite:
|
126
|
-
subject:
|
126
|
+
subject: Onderwerp
|
127
127
|
registration_mailer:
|
128
128
|
confirmation:
|
129
129
|
subject: Registratie van uw vergadering is bevestigd
|
@@ -133,12 +133,12 @@ nl:
|
|
133
133
|
category_prompt: Kies een categorie
|
134
134
|
date: Datum
|
135
135
|
past: Verleden
|
136
|
-
scope_prompt: Selecteer een
|
136
|
+
scope_prompt: Selecteer een scope
|
137
137
|
scopes: Scopes
|
138
138
|
search: Zoeken
|
139
139
|
upcoming: Aankomend
|
140
140
|
filters_small_view:
|
141
|
-
close_modal:
|
141
|
+
close_modal: Sluit modaal
|
142
142
|
filter: Filter
|
143
143
|
filter_by: Filteren op
|
144
144
|
unfold: Ontvouwen
|
@@ -146,49 +146,49 @@ nl:
|
|
146
146
|
view_meeting: Bekijk de vergadering
|
147
147
|
meetings:
|
148
148
|
no_meetings_warning: Geen afspraken komen overeen met uw zoekcriteria of er is geen vergadering gepland.
|
149
|
-
upcoming_meetings_warning: Momenteel zijn er geen geplande vergaderingen, maar hier vindt u alle
|
149
|
+
upcoming_meetings_warning: Momenteel zijn er geen geplande vergaderingen, maar hier vindt u alle afgelopen vergaderingen.
|
150
150
|
registration_confirm:
|
151
151
|
cancel: Annuleer
|
152
152
|
confirm: Bevestigen
|
153
153
|
show:
|
154
154
|
attendees: Aantal deelnemers
|
155
155
|
contributions: Aantal bijdragen
|
156
|
-
going:
|
157
|
-
join:
|
158
|
-
meeting_report:
|
159
|
-
no_slots_available: Geen
|
156
|
+
going: Gaat
|
157
|
+
join: Deelnemen aan bijeenkomst
|
158
|
+
meeting_report: Bijeenkomst verslag
|
159
|
+
no_slots_available: Geen plaatsen beschikbaar
|
160
160
|
organizations: Bijwonen van organisaties
|
161
161
|
remaining_slots:
|
162
|
-
one: 1
|
163
|
-
other: "%{count} resterende
|
162
|
+
one: 1 plaats resterend
|
163
|
+
other: "%{count} resterende plaatsen"
|
164
164
|
models:
|
165
165
|
meeting:
|
166
166
|
fields:
|
167
167
|
closed: Gesloten
|
168
168
|
end_time: Einddatum
|
169
169
|
map: Kaart
|
170
|
-
start_time:
|
170
|
+
start_time: Begindatum
|
171
171
|
title: Titel
|
172
|
-
read_more: "(Lees
|
172
|
+
read_more: "(Lees meer)"
|
173
173
|
registration_mailer:
|
174
174
|
confirmation:
|
175
|
-
confirmed_html: Uw registratie voor de <a href="%{url}">%{title}</a>
|
175
|
+
confirmed_html: Uw registratie voor de vergadering <a href="%{url}">%{title}</a> is bevestigd.
|
176
176
|
details: In de bijlage vindt u de details van de vergadering.
|
177
177
|
registrations:
|
178
178
|
create:
|
179
|
-
invalid: Er is een probleem bij deze
|
180
|
-
success: U
|
179
|
+
invalid: Er is een probleem opgetreden bij het deelnemen van deze vergadering.
|
180
|
+
success: U bent met succes lid geworden van de vergadering.
|
181
181
|
destroy:
|
182
182
|
invalid: Er is een probleem geweest met het verlaten van deze vergadering.
|
183
183
|
success: U heeft de vergadering succesvol verlaten.
|
184
184
|
resource_links:
|
185
185
|
meetings_through_proposals:
|
186
|
-
meeting_results: '
|
187
|
-
result_meetings: '
|
186
|
+
meeting_results: 'Gerelateerde resultaten:'
|
187
|
+
result_meetings: 'Gerelateerde vergaderingen:'
|
188
188
|
proposals_from_meeting:
|
189
|
-
meeting_proposals: '
|
190
|
-
proposal_meetings: '
|
189
|
+
meeting_proposals: 'Gerelateerde voorstellen:'
|
190
|
+
proposal_meetings: 'Gerelateerde vergaderingen:'
|
191
191
|
devise:
|
192
192
|
mailer:
|
193
193
|
join_meeting:
|
194
|
-
subject:
|
194
|
+
subject: Onderwerp
|
@@ -0,0 +1,194 @@
|
|
1
|
+
pt:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
close_meeting:
|
5
|
+
attendees_count: Número de Participantes
|
6
|
+
attending_organizations: Lista de organizações que participaram
|
7
|
+
closing_report: Relatório
|
8
|
+
contributions_count: Número de contribuições
|
9
|
+
proposal_ids: Propostas criadas na reunião
|
10
|
+
meeting:
|
11
|
+
address: Endereço
|
12
|
+
decidim_category_id: Categoria
|
13
|
+
decidim_scope_id: Escopo
|
14
|
+
description: Descrição
|
15
|
+
end_time: Fim do tempo
|
16
|
+
location: Localização
|
17
|
+
location_hints: Dicas de localização
|
18
|
+
start_time: Hora de início
|
19
|
+
title: Título
|
20
|
+
decidim:
|
21
|
+
features:
|
22
|
+
meetings:
|
23
|
+
actions:
|
24
|
+
join: Junte-se
|
25
|
+
name: Reuniões
|
26
|
+
settings:
|
27
|
+
global:
|
28
|
+
announcement: Anúncio
|
29
|
+
comments_enabled: Comentários ativados
|
30
|
+
step:
|
31
|
+
announcement: Anúncio
|
32
|
+
comments_blocked: Comentários bloqueados
|
33
|
+
meetings:
|
34
|
+
actions:
|
35
|
+
attachments: Anexos
|
36
|
+
close: Fechar
|
37
|
+
confirm_destroy: Tem certeza de que deseja excluir esta reunião?
|
38
|
+
destroy: Excluir
|
39
|
+
edit: Editar
|
40
|
+
new: Novo
|
41
|
+
preview: Visualização
|
42
|
+
registrations: Inscrições
|
43
|
+
title: Ações
|
44
|
+
admin:
|
45
|
+
exports:
|
46
|
+
registrations: Inscrições
|
47
|
+
invite_join_meeting_mailer:
|
48
|
+
invite:
|
49
|
+
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."
|
50
|
+
join: Junte-se à reunião '%{meeting_title}'
|
51
|
+
invites:
|
52
|
+
create:
|
53
|
+
error: Ocorreu um problema ao convidar o usuário a participar da reunião.
|
54
|
+
success: O usuário foi convidado para participar da reunião.
|
55
|
+
new:
|
56
|
+
explanation: O usuário será convidado a participar de uma reunião. Se o e-mail não estiver registrado, eles também serão convidados para a organização.
|
57
|
+
invite: Convite
|
58
|
+
new_invite: Convidar Usuário
|
59
|
+
meeting_closes:
|
60
|
+
edit:
|
61
|
+
close: Fechar
|
62
|
+
title: Reunião próxima
|
63
|
+
meetings:
|
64
|
+
close:
|
65
|
+
invalid: Tem havido um problema ao encerrar esta reunião
|
66
|
+
success: Reunião fechada com sucesso
|
67
|
+
create:
|
68
|
+
invalid: Tem havido um problema ao criar esta reunião
|
69
|
+
success: Reunião criada com sucesso
|
70
|
+
destroy:
|
71
|
+
success: Reunião excluída com êxito
|
72
|
+
edit:
|
73
|
+
update: Atualizar
|
74
|
+
index:
|
75
|
+
title: Reuniões
|
76
|
+
new:
|
77
|
+
create: Crio
|
78
|
+
title: Criar reunião
|
79
|
+
update:
|
80
|
+
invalid: Tem havido um problema ao atualizar esta reunião
|
81
|
+
success: Reunião atualizada com sucesso
|
82
|
+
models:
|
83
|
+
meeting:
|
84
|
+
name: encontro
|
85
|
+
registrations:
|
86
|
+
edit:
|
87
|
+
save: Salve
|
88
|
+
form:
|
89
|
+
available_slots_help: Deixe-o para 0 se você tiver slots ilimitados disponíveis.
|
90
|
+
invite_user: Convidar Usuário
|
91
|
+
registrations_count:
|
92
|
+
one: Houve 1 registro.
|
93
|
+
other: Houve %{count} registos.
|
94
|
+
update:
|
95
|
+
invalid: Ocorreu um problema ao salvar as configurações de registro.
|
96
|
+
success: Configurações de registro de reunião salvas com sucesso.
|
97
|
+
events:
|
98
|
+
close_meeting_event:
|
99
|
+
email_intro: 'A reunião "%{resource_title}" foi encerrada. Você pode ler as conclusões da sua página:'
|
100
|
+
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
101
|
+
email_subject: A reunião "%{resource_title}" foi fechada
|
102
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi fechada.
|
103
|
+
meeting_registrations_enabled:
|
104
|
+
email_intro: 'A reunião "%{resource_title}" permitiu registos. Você pode se registrar em sua página:'
|
105
|
+
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
106
|
+
email_subject: A reunião "%{resource_title}" permitiu registos.
|
107
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> permitiu registos.
|
108
|
+
meeting_registrations_over_percentage:
|
109
|
+
email_intro: Os slots ocupados pela reunião "%{resource_title}" estão acima de %{percentage}%.
|
110
|
+
email_outro: Você recebeu esta notificação porque você é administrador do espaço participativo da reunião.
|
111
|
+
email_subject: Os espaços de ocupação ocupados com "%{resource_title}" estão acima de %{percentage}%
|
112
|
+
notification_title: Os <a href="%{resource_path}">%{resource_title}</a> atendimento ocupados são mais de %{percentage}%.
|
113
|
+
upcoming_meeting_event:
|
114
|
+
email_intro: A reunião "%{resource_title}" começará em menos de 48h.
|
115
|
+
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
116
|
+
email_subject: A reunião "%{resource_title}" começará em menos de 48h.
|
117
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> começará em menos de 48h.
|
118
|
+
update_meeting_event:
|
119
|
+
email_intro: 'A reunião "%{resource_title}" foi atualizada. Você pode ler a nova versão da sua página:'
|
120
|
+
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
121
|
+
email_subject: A reunião "%{resource_title}" foi atualizada
|
122
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi atualizada.
|
123
|
+
mailer:
|
124
|
+
invite_join_meeting_mailer:
|
125
|
+
invite:
|
126
|
+
subject: Sujeito
|
127
|
+
registration_mailer:
|
128
|
+
confirmation:
|
129
|
+
subject: O registro da sua reunião foi confirmado
|
130
|
+
meetings:
|
131
|
+
filters:
|
132
|
+
category: Categoria
|
133
|
+
category_prompt: Selecione uma categoria
|
134
|
+
date: Encontro
|
135
|
+
past: Passado
|
136
|
+
scope_prompt: Selecione um escopo
|
137
|
+
scopes: Escopos
|
138
|
+
search: Pesquisa
|
139
|
+
upcoming: próximos
|
140
|
+
filters_small_view:
|
141
|
+
close_modal: Fechar modal
|
142
|
+
filter: Filtro
|
143
|
+
filter_by: Filtrar por
|
144
|
+
unfold: Desdobrar
|
145
|
+
index:
|
146
|
+
view_meeting: Ver reunião
|
147
|
+
meetings:
|
148
|
+
no_meetings_warning: Nenhuma reunião corresponde aos seus critérios de pesquisa ou não há nenhuma reunião agendada.
|
149
|
+
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui você pode encontrar todas as reuniões anteriores listadas.
|
150
|
+
registration_confirm:
|
151
|
+
cancel: Cancelar
|
152
|
+
confirm: confirme
|
153
|
+
show:
|
154
|
+
attendees: Contagem de participantes
|
155
|
+
contributions: Contagem de Contribuições
|
156
|
+
going: Indo
|
157
|
+
join: Participe da reunião
|
158
|
+
meeting_report: Relatório de reunião
|
159
|
+
no_slots_available: Não há slots disponíveis
|
160
|
+
organizations: Organizações participantes
|
161
|
+
remaining_slots:
|
162
|
+
one: 1 slot restante
|
163
|
+
other: "%{count} slots restantes"
|
164
|
+
models:
|
165
|
+
meeting:
|
166
|
+
fields:
|
167
|
+
closed: Fechadas
|
168
|
+
end_time: Data final
|
169
|
+
map: Mapa
|
170
|
+
start_time: Data de início
|
171
|
+
title: Título
|
172
|
+
read_more: "(consulte Mais informação)"
|
173
|
+
registration_mailer:
|
174
|
+
confirmation:
|
175
|
+
confirmed_html: Seu registro para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
176
|
+
details: Você encontrará os detalhes da reunião no anexo.
|
177
|
+
registrations:
|
178
|
+
create:
|
179
|
+
invalid: Houve um problema ao se juntar a essa reunião.
|
180
|
+
success: Você se juntou à reunião com sucesso.
|
181
|
+
destroy:
|
182
|
+
invalid: Tem havido um problema ao sair desta reunião.
|
183
|
+
success: Você saiu da reunião com sucesso.
|
184
|
+
resource_links:
|
185
|
+
meetings_through_proposals:
|
186
|
+
meeting_results: 'Resultados relacionados:'
|
187
|
+
result_meetings: 'Reuniões relacionadas:'
|
188
|
+
proposals_from_meeting:
|
189
|
+
meeting_proposals: 'Propostas relacionadas:'
|
190
|
+
proposal_meetings: 'Reuniões relacionadas:'
|
191
|
+
devise:
|
192
|
+
mailer:
|
193
|
+
join_meeting:
|
194
|
+
subject: Sujeito
|
@@ -1,13 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require "decidim/core/test/factories"
|
4
|
+
require "decidim/participatory_processes/test/factories"
|
5
|
+
|
6
|
+
FactoryBot.define do
|
4
7
|
factory :meeting_feature, parent: :feature do
|
5
8
|
name { Decidim::Features::Namer.new(participatory_space.organization.available_locales, :meetings).i18n_name }
|
6
9
|
manifest_name :meetings
|
7
10
|
participatory_space { create(:participatory_process, :with_steps, organization: organization) }
|
8
11
|
end
|
9
12
|
|
10
|
-
factory :meeting, class: Decidim::Meetings::Meeting do
|
13
|
+
factory :meeting, class: "Decidim::Meetings::Meeting" do
|
11
14
|
title { Decidim::Faker::Localized.sentence(3) }
|
12
15
|
description { Decidim::Faker::Localized.wrapped("<p>", "</p>") { Decidim::Faker::Localized.sentence(4) } }
|
13
16
|
location { Decidim::Faker::Localized.wrapped("<p>", "</p>") { Decidim::Faker::Localized.sentence(4) } }
|
@@ -34,7 +37,7 @@ FactoryGirl.define do
|
|
34
37
|
end
|
35
38
|
end
|
36
39
|
|
37
|
-
factory :registration, class: Decidim::Meetings::Registration do
|
40
|
+
factory :registration, class: "Decidim::Meetings::Registration" do
|
38
41
|
meeting
|
39
42
|
user
|
40
43
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-meetings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,162 +10,162 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2017-
|
13
|
+
date: 2017-12-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: date_validator
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: '0.9'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- -
|
26
|
+
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.
|
28
|
+
version: '0.9'
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
|
-
name:
|
30
|
+
name: decidim-core
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
|
-
- -
|
33
|
+
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version:
|
35
|
+
version: 0.8.0
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
|
-
- -
|
40
|
+
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
42
|
+
version: 0.8.0
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
|
-
name:
|
44
|
+
name: httparty
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
49
|
+
version: 0.15.0
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
56
|
+
version: 0.15.0
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
58
|
+
name: icalendar
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - "~>"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
63
|
+
version: 2.4.1
|
64
64
|
type: :runtime
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - "~>"
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
70
|
+
version: 2.4.1
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
72
|
+
name: jquery-tmpl-rails
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
75
|
- - "~>"
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
77
|
+
version: 1.1.0
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - "~>"
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
84
|
+
version: 1.1.0
|
85
85
|
- !ruby/object:Gem::Dependency
|
86
|
-
name:
|
86
|
+
name: kaminari
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - "~>"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: 1.1
|
91
|
+
version: 1.0.1
|
92
92
|
type: :runtime
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - "~>"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: 1.1
|
98
|
+
version: 1.0.1
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
|
-
name:
|
100
|
+
name: searchlight
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - "~>"
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version:
|
105
|
+
version: 4.1.0
|
106
106
|
type: :runtime
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - "~>"
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version:
|
112
|
+
version: 4.1.0
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
|
-
name: decidim-
|
114
|
+
name: decidim-admin
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
117
|
- - '='
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0.
|
119
|
+
version: 0.8.0
|
120
120
|
type: :development
|
121
121
|
prerelease: false
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
124
|
- - '='
|
125
125
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0.
|
126
|
+
version: 0.8.0
|
127
127
|
- !ruby/object:Gem::Dependency
|
128
|
-
name: decidim-
|
128
|
+
name: decidim-assemblies
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
130
130
|
requirements:
|
131
131
|
- - '='
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.
|
133
|
+
version: 0.8.0
|
134
134
|
type: :development
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
138
|
- - '='
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version: 0.
|
140
|
+
version: 0.8.0
|
141
141
|
- !ruby/object:Gem::Dependency
|
142
|
-
name: decidim-
|
142
|
+
name: decidim-dev
|
143
143
|
requirement: !ruby/object:Gem::Requirement
|
144
144
|
requirements:
|
145
145
|
- - '='
|
146
146
|
- !ruby/object:Gem::Version
|
147
|
-
version: 0.
|
147
|
+
version: 0.8.0
|
148
148
|
type: :development
|
149
149
|
prerelease: false
|
150
150
|
version_requirements: !ruby/object:Gem::Requirement
|
151
151
|
requirements:
|
152
152
|
- - '='
|
153
153
|
- !ruby/object:Gem::Version
|
154
|
-
version: 0.
|
154
|
+
version: 0.8.0
|
155
155
|
- !ruby/object:Gem::Dependency
|
156
|
-
name: decidim-
|
156
|
+
name: decidim-participatory_processes
|
157
157
|
requirement: !ruby/object:Gem::Requirement
|
158
158
|
requirements:
|
159
159
|
- - '='
|
160
160
|
- !ruby/object:Gem::Version
|
161
|
-
version: 0.
|
161
|
+
version: 0.8.0
|
162
162
|
type: :development
|
163
163
|
prerelease: false
|
164
164
|
version_requirements: !ruby/object:Gem::Requirement
|
165
165
|
requirements:
|
166
166
|
- - '='
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: 0.
|
168
|
+
version: 0.8.0
|
169
169
|
description: A meetings component for decidim's participatory processes.
|
170
170
|
email:
|
171
171
|
- josepjaume@gmail.com
|
@@ -252,6 +252,7 @@ files:
|
|
252
252
|
- config/locales/it.yml
|
253
253
|
- config/locales/nl.yml
|
254
254
|
- config/locales/pl.yml
|
255
|
+
- config/locales/pt.yml
|
255
256
|
- config/locales/ru.yml
|
256
257
|
- config/locales/uk.yml
|
257
258
|
- db/migrate/20161130121354_create_meetings.rb
|
@@ -292,7 +293,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
292
293
|
version: '0'
|
293
294
|
requirements: []
|
294
295
|
rubyforge_project:
|
295
|
-
rubygems_version: 2.
|
296
|
+
rubygems_version: 2.6.13
|
296
297
|
signing_key:
|
297
298
|
specification_version: 4
|
298
299
|
summary: A meetings component for decidim's participatory processes.
|