decidim-debates 0.23.3 → 0.24.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_debates_manifest.js +1 -0
- data/app/assets/javascripts/decidim/debates/admin/debates.js.es6 +25 -0
- data/app/cells/decidim/debates/debate_activity_cell.rb +13 -5
- data/app/cells/decidim/debates/debate_m/open_date.erb +7 -0
- data/app/cells/decidim/debates/debate_m_cell.rb +1 -1
- data/app/cells/decidim/debates/reported_content/show.erb +4 -0
- data/app/cells/decidim/debates/reported_content_cell.rb +13 -0
- data/app/commands/decidim/debates/admin/create_debate.rb +3 -2
- data/app/commands/decidim/debates/admin/update_debate.rb +2 -1
- data/app/commands/decidim/debates/create_debate.rb +1 -0
- data/app/commands/decidim/debates/update_debate.rb +2 -1
- data/app/controllers/decidim/debates/debates_controller.rb +1 -5
- data/app/forms/decidim/debates/admin/close_debate_form.rb +1 -1
- data/app/forms/decidim/debates/admin/debate_form.rb +30 -2
- data/app/forms/decidim/debates/close_debate_form.rb +1 -1
- data/app/forms/decidim/debates/debate_form.rb +17 -0
- data/app/models/decidim/debates/debate.rb +11 -1
- data/app/permissions/decidim/debates/admin/permissions.rb +8 -1
- data/app/views/decidim/debates/admin/debates/_form.html.erb +15 -2
- data/app/views/decidim/debates/admin/debates/index.html.erb +10 -2
- data/app/views/decidim/debates/debates/_filters.html.erb +1 -1
- data/app/views/decidim/debates/debates/_filters_small_view.html.erb +1 -1
- data/app/views/decidim/debates/debates/_form.html.erb +6 -0
- data/app/views/decidim/debates/debates/show.html.erb +5 -21
- data/config/locales/ca.yml +18 -4
- data/config/locales/cs.yml +19 -5
- data/config/locales/de.yml +18 -4
- data/config/locales/en.yml +18 -4
- data/config/locales/es-MX.yml +18 -4
- data/config/locales/es-PY.yml +18 -4
- data/config/locales/es.yml +18 -4
- data/config/locales/fi-plain.yml +18 -4
- data/config/locales/fi.yml +18 -4
- data/config/locales/fr-CA.yml +18 -4
- data/config/locales/fr.yml +18 -4
- data/config/locales/gl.yml +11 -4
- data/config/locales/ja.yml +10 -4
- data/config/locales/nl.yml +18 -4
- data/config/locales/no.yml +10 -4
- data/config/locales/pl.yml +37 -6
- data/config/locales/ro-RO.yml +64 -0
- data/config/locales/sv.yml +28 -4
- data/config/locales/tr-TR.yml +17 -4
- data/config/locales/zh-CN.yml +10 -4
- data/db/migrate/20200930145546_add_scope_to_debates_debate.rb +7 -0
- data/db/migrate/20201126112752_archive_debates.rb +8 -0
- data/db/migrate/20210125101735_revert_archive_debates.rb +8 -0
- data/db/migrate/20210310120652_add_followable_counter_cache_to_debates.rb +16 -0
- data/lib/decidim/api/debate_type.rb +26 -0
- data/lib/decidim/api/debates_type.rb +26 -0
- data/lib/decidim/debates.rb +1 -0
- data/lib/decidim/debates/admin_engine.rb +4 -0
- data/lib/decidim/debates/api.rb +8 -0
- data/lib/decidim/debates/component.rb +22 -10
- data/lib/decidim/debates/test/factories.rb +1 -1
- data/lib/decidim/debates/version.rb +1 -1
- metadata +24 -14
- data/app/types/decidim/debates/debate_type.rb +0 -28
- data/app/types/decidim/debates/debates_type.rb +0 -32
@@ -45,14 +45,7 @@ edit_link(
|
|
45
45
|
<% end %>
|
46
46
|
<div class="card extra">
|
47
47
|
<div class="card__content">
|
48
|
-
|
49
|
-
<div class="extra__date">
|
50
|
-
<%= l debate.start_time, format: "%d" %> <span class="extra__month"><%= l debate.start_time, format: "%B" %></span>
|
51
|
-
</div>
|
52
|
-
<div class="extra__time">
|
53
|
-
<%= l debate.start_time, format: "%H:%M" %> - <%= l debate.end_time, format: "%H:%M" %>
|
54
|
-
</div>
|
55
|
-
<% end %>
|
48
|
+
<%= cell("decidim/date", { start: debate.start_time, end: debate.end_time }) %>
|
56
49
|
|
57
50
|
<% if endorsements_enabled? && allowed_to?(:endorse, :debate, debate: debate) %>
|
58
51
|
<div class="row collapse buttons__row">
|
@@ -110,7 +103,7 @@ edit_link(
|
|
110
103
|
<%= render_debate_description(debate) %>
|
111
104
|
|
112
105
|
<% if debate.closed? %>
|
113
|
-
<%= cell("decidim/announcement", {
|
106
|
+
<%= cell("decidim/announcement", { title: t(".debate_conclusions_are", date: l(debate.closed_at, format: :decidim_short)), body: simple_format(translated_attribute(debate.conclusions)) }, callout_class: "success") %>
|
114
107
|
<% end %>
|
115
108
|
|
116
109
|
<% if translated_attribute(debate.instructions).present? %>
|
@@ -123,11 +116,8 @@ edit_link(
|
|
123
116
|
<%= decidim_sanitize(simple_format(translated_attribute(debate.information_updates), {}, sanitize: false)) %>
|
124
117
|
</div>
|
125
118
|
<% end %>
|
126
|
-
|
127
|
-
|
128
|
-
<li><%= link_to translated_attribute(debate.category.name), debates_path(filter: { category_id: debate.category.id }) %></li>
|
129
|
-
</ul>
|
130
|
-
<% end %>
|
119
|
+
|
120
|
+
<%= render partial: "decidim/shared/tags", locals: { resource: debate, tags_class_extra: "tags--debate" } %>
|
131
121
|
|
132
122
|
<%= cell "decidim/endorsers_list", debate %>
|
133
123
|
</div>
|
@@ -136,13 +126,7 @@ edit_link(
|
|
136
126
|
|
137
127
|
<%= comments_for debate %>
|
138
128
|
|
139
|
-
<%=
|
140
|
-
render partial: "decidim/shared/flag_modal", locals: {
|
141
|
-
reportable: debate,
|
142
|
-
form: report_form,
|
143
|
-
url: decidim.report_path(sgid: debate.to_sgid.to_s)
|
144
|
-
}
|
145
|
-
%>
|
129
|
+
<%= cell("decidim/flag_modal", debate) %>
|
146
130
|
<%=
|
147
131
|
render partial: "close_debate_modal", locals: {
|
148
132
|
debate: debate,
|
data/config/locales/ca.yml
CHANGED
@@ -65,6 +65,10 @@ ca:
|
|
65
65
|
edit:
|
66
66
|
title: Editar debat
|
67
67
|
update: Actualitzar debat
|
68
|
+
form:
|
69
|
+
debate_type: Tipus de debat
|
70
|
+
finite: Finit (amb moments d'inici i de fi)
|
71
|
+
open: Obert (sense moments d'inici ni de fi)
|
68
72
|
index:
|
69
73
|
title: Debats
|
70
74
|
new:
|
@@ -73,6 +77,8 @@ ca:
|
|
73
77
|
update:
|
74
78
|
invalid: S'ha produït un error en actualitzar aquest debat.
|
75
79
|
success: Debate actualizado correctament.
|
80
|
+
exports:
|
81
|
+
comments: Comentaris
|
76
82
|
models:
|
77
83
|
debate:
|
78
84
|
name: Debat
|
@@ -152,6 +158,7 @@ ca:
|
|
152
158
|
groups_count: Grups
|
153
159
|
last_comment_by: Darrer comentari de
|
154
160
|
no_comments_yet: Encara no hi ha comentaris
|
161
|
+
open: Debat obert
|
155
162
|
participants_count: Participants
|
156
163
|
update:
|
157
164
|
invalid: S'ha produït un error en actualitzar aquest debat.
|
@@ -164,6 +171,7 @@ ca:
|
|
164
171
|
versions_list:
|
165
172
|
back_to_resource: Tornar al debat
|
166
173
|
last_activity:
|
174
|
+
debate_updated_at_html: "<span>Debat actualitzat el %{link}</span>"
|
167
175
|
new_debate_at_html: "<span>Nou debat a %{link}</span>"
|
168
176
|
models:
|
169
177
|
debate:
|
@@ -200,10 +208,16 @@ ca:
|
|
200
208
|
email_subject: Els debats ja estan disponibles a %{participatory_space_title}
|
201
209
|
notification_title: Ja pots començar <a href="%{resource_path}">nous debats</a> a <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
202
210
|
debate_closed:
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
211
|
+
affected_user:
|
212
|
+
email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
|
213
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
|
214
|
+
email_subject: El debat "%{resource_title}" s'ha tancat
|
215
|
+
notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
|
216
|
+
follower:
|
217
|
+
email_intro: 'El debat "%{resource_title}" s''ha tancat. Podeu llegir-ne les conclusions a la seva pàgina:'
|
218
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint el debat "%{resource_title}". Pots deixar-la de seguir des de l'enllaç anterior.
|
219
|
+
email_subject: El debat "%{resource_title}" s'ha tancat
|
220
|
+
notification_title: El debat <a href="%{resource_path}">%{resource_title}</a> s'ha tancat.
|
207
221
|
gamification:
|
208
222
|
badges:
|
209
223
|
commented_debates:
|
data/config/locales/cs.yml
CHANGED
@@ -67,6 +67,10 @@ cs:
|
|
67
67
|
edit:
|
68
68
|
title: Upravit debatu
|
69
69
|
update: Aktualizovat debatu
|
70
|
+
form:
|
71
|
+
debate_type: Typ debaty
|
72
|
+
finite: Konečný (s počátečním a koncovým obdobím)
|
73
|
+
open: Otevřený (žádné počáteční nebo koncové období)
|
70
74
|
index:
|
71
75
|
title: Debaty
|
72
76
|
new:
|
@@ -75,6 +79,8 @@ cs:
|
|
75
79
|
update:
|
76
80
|
invalid: Při aktualizaci této debaty došlo k problému.
|
77
81
|
success: Debata byla úspěšně aktualizována.
|
82
|
+
exports:
|
83
|
+
comments: Komentáře
|
78
84
|
models:
|
79
85
|
debate:
|
80
86
|
name: Debata
|
@@ -156,6 +162,7 @@ cs:
|
|
156
162
|
groups_count: Skupiny
|
157
163
|
last_comment_by: Poslední komentář od
|
158
164
|
no_comments_yet: Zatím žádné komentáře
|
165
|
+
open: Otevřít diskusi
|
159
166
|
participants_count: Účastníci
|
160
167
|
update:
|
161
168
|
invalid: Při aktualizaci rozpravy došlo k chybě.
|
@@ -168,6 +175,7 @@ cs:
|
|
168
175
|
versions_list:
|
169
176
|
back_to_resource: Přejít zpět k debatě
|
170
177
|
last_activity:
|
178
|
+
debate_updated_at_html: "<span>Debata byla aktualizována na %{link}</span>"
|
171
179
|
new_debate_at_html: "<span>Nová debata na %{link}</span>"
|
172
180
|
models:
|
173
181
|
debate:
|
@@ -190,7 +198,7 @@ cs:
|
|
190
198
|
email_intro: |-
|
191
199
|
Ahoj,
|
192
200
|
%{author_name} %{author_nickname}, kterého sledujete, vytvořil novou debatu "%{resource_title}". Omrkněte ji a přispějte:
|
193
|
-
email_outro: Toto oznámení jste obdrželi, protože
|
201
|
+
email_outro: Toto oznámení jste obdrželi, protože sledujete %{author_nickname}. Na předchozím odkazu můžete zrušit přijem oznámení.
|
194
202
|
email_subject: Nová debata "%{resource_title}" od %{author_nickname}
|
195
203
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> vytvořil <a href="%{resource_path}">%{resource_title}</a> debatu.
|
196
204
|
creation_disabled:
|
@@ -204,10 +212,16 @@ cs:
|
|
204
212
|
email_subject: Debaty jsou nyní k dispozici v %{participatory_space_title}
|
205
213
|
notification_title: Nyní můžete začít <a href="%{resource_path}">novou debatu</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
206
214
|
debate_closed:
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
215
|
+
affected_user:
|
216
|
+
email_intro: 'Debata "%{resource_title}" byla ukončena. Závěry si můžete přečíst z její stránky:'
|
217
|
+
email_outro: Obdrželi jste toto oznámení, protože sledujete debatu "%{resource_title}". Můžete ji zrušit z předchozího odkazu.
|
218
|
+
email_subject: Debata "%{resource_title}" byla ukončena
|
219
|
+
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla ukončena.
|
220
|
+
follower:
|
221
|
+
email_intro: 'Debata "%{resource_title}" byla ukončena. Závěry si můžete přečíst z její stránky:'
|
222
|
+
email_outro: Obdrželi jste toto oznámení, protože sledujete debatu "%{resource_title}". Můžete ji zrušit z předchozího odkazu.
|
223
|
+
email_subject: Debata "%{resource_title}" byla ukončena
|
224
|
+
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> byla ukončena.
|
211
225
|
gamification:
|
212
226
|
badges:
|
213
227
|
commented_debates:
|
data/config/locales/de.yml
CHANGED
@@ -65,6 +65,10 @@ de:
|
|
65
65
|
edit:
|
66
66
|
title: Debatte bearbeiten
|
67
67
|
update: Debatte aktualisieren
|
68
|
+
form:
|
69
|
+
debate_type: Debatten-Typ
|
70
|
+
finite: Zeitlich begrenzt (mit Start- und Endzeit)
|
71
|
+
open: Offen (keine Start- und Endzeit)
|
68
72
|
index:
|
69
73
|
title: Debatten
|
70
74
|
new:
|
@@ -73,6 +77,8 @@ de:
|
|
73
77
|
update:
|
74
78
|
invalid: Bei der Aktualisierung dieser Debatte ist ein Problem aufgetreten.
|
75
79
|
success: Die Diskussion wurde erfolgreich aktualisiert.
|
80
|
+
exports:
|
81
|
+
comments: Kommentare
|
76
82
|
models:
|
77
83
|
debate:
|
78
84
|
name: Debatte
|
@@ -152,6 +158,7 @@ de:
|
|
152
158
|
groups_count: Gruppen
|
153
159
|
last_comment_by: Letzter Kommentar von
|
154
160
|
no_comments_yet: Noch keine Kommentare
|
161
|
+
open: Offene Debatte
|
155
162
|
participants_count: Teilnehmer
|
156
163
|
update:
|
157
164
|
invalid: Es gab ein Problem bei der Aktualisierung der Aussprache.
|
@@ -164,6 +171,7 @@ de:
|
|
164
171
|
versions_list:
|
165
172
|
back_to_resource: Zurück zur Debatte
|
166
173
|
last_activity:
|
174
|
+
debate_updated_at_html: "<span>Debatte aktualisiert unter %{link}</span>"
|
167
175
|
new_debate_at_html: "<span>Neue Debatte bei %{link}</span>"
|
168
176
|
models:
|
169
177
|
debate:
|
@@ -200,10 +208,16 @@ de:
|
|
200
208
|
email_subject: Debatten jetzt in %{participatory_space_title} verfügbar
|
201
209
|
notification_title: Sie können jetzt <a href="%{resource_path}">neue Debatten</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> starten
|
202
210
|
debate_closed:
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
211
|
+
affected_user:
|
212
|
+
email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
|
213
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Debatte "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
214
|
+
email_subject: Die "%{resource_title}" Debatte wurde beendet
|
215
|
+
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
|
216
|
+
follower:
|
217
|
+
email_intro: 'Die Debatte "%{resource_title}" wurde beendet. Sie können die Resultate auf dieser Seite lesen:'
|
218
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Debatte "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
219
|
+
email_subject: Die "%{resource_title}" Debatte wurde beendet
|
220
|
+
notification_title: Die Debatte <a href="%{resource_path}">%{resource_title}</a> wurde beendet.
|
207
221
|
gamification:
|
208
222
|
badges:
|
209
223
|
commented_debates:
|
data/config/locales/en.yml
CHANGED
@@ -66,6 +66,10 @@ en:
|
|
66
66
|
edit:
|
67
67
|
title: Edit debate
|
68
68
|
update: Update debate
|
69
|
+
form:
|
70
|
+
debate_type: Debate type
|
71
|
+
finite: Finite (With start and end times)
|
72
|
+
open: Open (No start or end times)
|
69
73
|
index:
|
70
74
|
title: Debates
|
71
75
|
new:
|
@@ -74,6 +78,8 @@ en:
|
|
74
78
|
update:
|
75
79
|
invalid: There was a problem updating this debate.
|
76
80
|
success: Debate successfully updated.
|
81
|
+
exports:
|
82
|
+
comments: Comments
|
77
83
|
models:
|
78
84
|
debate:
|
79
85
|
name: Debate
|
@@ -153,6 +159,7 @@ en:
|
|
153
159
|
groups_count: Groups
|
154
160
|
last_comment_by: Last comment by
|
155
161
|
no_comments_yet: No comments yet
|
162
|
+
open: Open debate
|
156
163
|
participants_count: Participants
|
157
164
|
update:
|
158
165
|
invalid: There was a problem updating the debate.
|
@@ -165,6 +172,7 @@ en:
|
|
165
172
|
versions_list:
|
166
173
|
back_to_resource: Go back to debate
|
167
174
|
last_activity:
|
175
|
+
debate_updated_at_html: "<span>Debate updated at %{link}</span>"
|
168
176
|
new_debate_at_html: "<span>New debate at %{link}</span>"
|
169
177
|
models:
|
170
178
|
debate:
|
@@ -201,10 +209,16 @@ en:
|
|
201
209
|
email_subject: Debates now available in %{participatory_space_title}
|
202
210
|
notification_title: You can now start <a href="%{resource_path}">new debates</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
203
211
|
debate_closed:
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
212
|
+
affected_user:
|
213
|
+
email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
|
214
|
+
email_outro: You have received this notification because you are following the "%{resource_title}" debate. You can unfollow it from the previous link.
|
215
|
+
email_subject: The "%{resource_title}" debate was closed
|
216
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was closed.
|
217
|
+
follower:
|
218
|
+
email_intro: 'The "%{resource_title}" debate was closed. You can read the conclusions from its page:'
|
219
|
+
email_outro: You have received this notification because you are following the "%{resource_title}" debate. You can unfollow it from the previous link.
|
220
|
+
email_subject: The "%{resource_title}" debate was closed
|
221
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> debate was closed.
|
208
222
|
gamification:
|
209
223
|
badges:
|
210
224
|
commented_debates:
|
data/config/locales/es-MX.yml
CHANGED
@@ -65,6 +65,10 @@ es-MX:
|
|
65
65
|
edit:
|
66
66
|
title: Editar debate
|
67
67
|
update: Actualizar debate
|
68
|
+
form:
|
69
|
+
debate_type: Tipo de debate
|
70
|
+
finite: Finito (con hora de inicio y final)
|
71
|
+
open: Abierto (no hay hora de inicio o final)
|
68
72
|
index:
|
69
73
|
title: Debates
|
70
74
|
new:
|
@@ -73,6 +77,8 @@ es-MX:
|
|
73
77
|
update:
|
74
78
|
invalid: Ha habido un problema al actualizar este debate.
|
75
79
|
success: Debate actualizado con éxito.
|
80
|
+
exports:
|
81
|
+
comments: Comentarios
|
76
82
|
models:
|
77
83
|
debate:
|
78
84
|
name: Debate
|
@@ -152,6 +158,7 @@ es-MX:
|
|
152
158
|
groups_count: Grupos
|
153
159
|
last_comment_by: Último comentario de
|
154
160
|
no_comments_yet: No hay comentarios todavía
|
161
|
+
open: Debate abierto
|
155
162
|
participants_count: Participantes
|
156
163
|
update:
|
157
164
|
invalid: Se ha producido un error al actualizar este debate.
|
@@ -164,6 +171,7 @@ es-MX:
|
|
164
171
|
versions_list:
|
165
172
|
back_to_resource: Volver al debate
|
166
173
|
last_activity:
|
174
|
+
debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
|
167
175
|
new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
|
168
176
|
models:
|
169
177
|
debate:
|
@@ -200,10 +208,16 @@ es-MX:
|
|
200
208
|
email_subject: Debates ahora disponibles en %{participatory_space_title}
|
201
209
|
notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
202
210
|
debate_closed:
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
211
|
+
affected_user:
|
212
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
213
|
+
email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
214
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
215
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
|
216
|
+
follower:
|
217
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
218
|
+
email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
219
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
220
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
|
207
221
|
gamification:
|
208
222
|
badges:
|
209
223
|
commented_debates:
|
data/config/locales/es-PY.yml
CHANGED
@@ -65,6 +65,10 @@ es-PY:
|
|
65
65
|
edit:
|
66
66
|
title: Editar debate
|
67
67
|
update: Actualizar debate
|
68
|
+
form:
|
69
|
+
debate_type: Tipo de debate
|
70
|
+
finite: Finito (con hora de inicio y final)
|
71
|
+
open: Abierto (no hay hora de inicio o final)
|
68
72
|
index:
|
69
73
|
title: Debates
|
70
74
|
new:
|
@@ -73,6 +77,8 @@ es-PY:
|
|
73
77
|
update:
|
74
78
|
invalid: Ha habido un problema al actualizar este debate.
|
75
79
|
success: Debate actualizado con éxito.
|
80
|
+
exports:
|
81
|
+
comments: Comentarios
|
76
82
|
models:
|
77
83
|
debate:
|
78
84
|
name: Debate
|
@@ -152,6 +158,7 @@ es-PY:
|
|
152
158
|
groups_count: Grupos
|
153
159
|
last_comment_by: Último comentario de
|
154
160
|
no_comments_yet: No hay comentarios todavía
|
161
|
+
open: Debate abierto
|
155
162
|
participants_count: Participantes
|
156
163
|
update:
|
157
164
|
invalid: Se ha producido un error al actualizar este debate.
|
@@ -164,6 +171,7 @@ es-PY:
|
|
164
171
|
versions_list:
|
165
172
|
back_to_resource: Volver al debate
|
166
173
|
last_activity:
|
174
|
+
debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
|
167
175
|
new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
|
168
176
|
models:
|
169
177
|
debate:
|
@@ -200,10 +208,16 @@ es-PY:
|
|
200
208
|
email_subject: Debates ahora disponibles en %{participatory_space_title}
|
201
209
|
notification_title: Ahora puedes crear <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
202
210
|
debate_closed:
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
211
|
+
affected_user:
|
212
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
213
|
+
email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
214
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
215
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
|
216
|
+
follower:
|
217
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
218
|
+
email_outro: Ha recibido esta notificación porque usted sigue el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
219
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
220
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> ha sido cerrado.
|
207
221
|
gamification:
|
208
222
|
badges:
|
209
223
|
commented_debates:
|
data/config/locales/es.yml
CHANGED
@@ -65,6 +65,10 @@ es:
|
|
65
65
|
edit:
|
66
66
|
title: Editar debate
|
67
67
|
update: Actualizar debate
|
68
|
+
form:
|
69
|
+
debate_type: Tipo de debate
|
70
|
+
finite: Finito (con hora de inicio y final)
|
71
|
+
open: Abierto (no hay hora de inicio o final)
|
68
72
|
index:
|
69
73
|
title: Debates
|
70
74
|
new:
|
@@ -73,6 +77,8 @@ es:
|
|
73
77
|
update:
|
74
78
|
invalid: Se ha producido un error al actualizar este debate.
|
75
79
|
success: Debate actualizado correctamente.
|
80
|
+
exports:
|
81
|
+
comments: Comentarios
|
76
82
|
models:
|
77
83
|
debate:
|
78
84
|
name: Debate
|
@@ -152,6 +158,7 @@ es:
|
|
152
158
|
groups_count: Grupos
|
153
159
|
last_comment_by: Último comentario de
|
154
160
|
no_comments_yet: No hay comentarios todavía
|
161
|
+
open: Debate abierto
|
155
162
|
participants_count: Participantes
|
156
163
|
update:
|
157
164
|
invalid: Se ha producido un error al actualizar este debate.
|
@@ -164,6 +171,7 @@ es:
|
|
164
171
|
versions_list:
|
165
172
|
back_to_resource: Volver al debate
|
166
173
|
last_activity:
|
174
|
+
debate_updated_at_html: "<span>Debate actualizado a las %{link}</span>"
|
167
175
|
new_debate_at_html: "<span>Nuevo debate en %{link}</span>"
|
168
176
|
models:
|
169
177
|
debate:
|
@@ -200,10 +208,16 @@ es:
|
|
200
208
|
email_subject: Los debates ya estan disponibles en %{participatory_space_title}
|
201
209
|
notification_title: Ya puedes empezar <a href="%{resource_path}">nuevos debates</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
202
210
|
debate_closed:
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
211
|
+
affected_user:
|
212
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
213
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
214
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
215
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> se ha cerrado.
|
216
|
+
follower:
|
217
|
+
email_intro: 'Se ha cerrado el debate "%{resource_title}". Puedes leer las conclusiones en su página:'
|
218
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el debate "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
219
|
+
email_subject: Se ha cerrado el debate "%{resource_title}"
|
220
|
+
notification_title: El debate <a href="%{resource_path}">%{resource_title}</a> se ha cerrado.
|
207
221
|
gamification:
|
208
222
|
badges:
|
209
223
|
commented_debates:
|