decidim-proposals 0.23.0 → 0.23.4
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/cells/decidim/proposals/proposal_activity_cell.rb +13 -5
- data/app/commands/decidim/proposals/admin/update_proposal.rb +2 -0
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +1 -1
- data/app/forms/decidim/proposals/admin/proposal_form.rb +13 -0
- data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +0 -8
- data/app/models/decidim/proposals/proposal.rb +3 -1
- data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +2 -2
- data/app/presenters/decidim/proposals/admin_log/valuation_assignment_presenter.rb +2 -2
- data/app/presenters/decidim/proposals/proposal_presenter.rb +31 -12
- data/app/validators/proposal_length_validator.rb +4 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +8 -2
- data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +6 -4
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +6 -4
- data/app/views/decidim/proposals/proposals/edit.html.erb +6 -4
- data/app/views/decidim/proposals/proposals/show.html.erb +6 -4
- data/config/locales/ar.yml +1 -0
- data/config/locales/bg.yml +4 -0
- data/config/locales/ca.yml +10 -8
- data/config/locales/cs.yml +26 -24
- data/config/locales/de.yml +107 -78
- data/config/locales/el.yml +1 -1
- data/config/locales/en.yml +2 -0
- data/config/locales/es-MX.yml +4 -3
- data/config/locales/es-PY.yml +4 -3
- data/config/locales/es.yml +4 -3
- data/config/locales/eu.yml +5 -2
- data/config/locales/fi-plain.yml +3 -1
- data/config/locales/fi.yml +10 -8
- data/config/locales/fr-CA.yml +6 -4
- data/config/locales/fr.yml +6 -4
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +1 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +4 -1
- data/config/locales/it.yml +3 -3
- data/config/locales/ja.yml +1 -1
- data/config/locales/lv.yml +1 -0
- data/config/locales/nl.yml +18 -16
- data/config/locales/no.yml +3 -2
- data/config/locales/pl.yml +9 -3
- data/config/locales/pt-BR.yml +2 -1
- data/config/locales/ro-RO.yml +5 -0
- data/config/locales/ru.yml +4 -1
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -1
- data/config/locales/sv.yml +5 -5
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +381 -217
- data/config/locales/uk.yml +4 -1
- data/db/migrate/20200708091228_move_proposals_fields_to_i18n.rb +8 -2
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +23 -22
- data/db/migrate/20200915151348_fix_proposals_data_to_ensure_title_and_body_are_hashes.rb +0 -37
data/config/locales/de.yml
CHANGED
@@ -8,9 +8,9 @@ de:
|
|
8
8
|
decidim_scope_id: Umfang
|
9
9
|
has_address: Hat eine Adresse
|
10
10
|
scope_id: Bereich
|
11
|
-
state:
|
11
|
+
state: Status
|
12
12
|
title: Titel
|
13
|
-
user_group_id:
|
13
|
+
user_group_id: Kollaborativen Entwurf erstellen als
|
14
14
|
proposal:
|
15
15
|
address: Adresse
|
16
16
|
answer: Antworten
|
@@ -21,7 +21,7 @@ de:
|
|
21
21
|
decidim_scope_id: Umfang
|
22
22
|
has_address: Hat eine Adresse
|
23
23
|
scope_id: Bereich
|
24
|
-
state:
|
24
|
+
state: Status
|
25
25
|
suggested_hashtags: Vorgeschlagene Hashtags
|
26
26
|
title: Titel
|
27
27
|
user_group_id: Vorschlag erstellen als
|
@@ -45,7 +45,7 @@ de:
|
|
45
45
|
proposal:
|
46
46
|
attributes:
|
47
47
|
attachment:
|
48
|
-
needs_to_be_reattached:
|
48
|
+
needs_to_be_reattached: Der Anhang muss erneut angehängt werden
|
49
49
|
body:
|
50
50
|
cant_be_equal_to_template: kann nicht gleich der Vorlage sein
|
51
51
|
identical: UND Titel dürfen nicht identisch sein
|
@@ -80,10 +80,32 @@ de:
|
|
80
80
|
admin:
|
81
81
|
filters:
|
82
82
|
proposals:
|
83
|
+
category_id_eq:
|
84
|
+
label: Kategorie
|
85
|
+
is_emendation_true:
|
86
|
+
label: Art
|
87
|
+
values:
|
88
|
+
'false': Vorschläge
|
89
|
+
'true': Änderungen
|
90
|
+
scope_id_eq:
|
91
|
+
label: Umfang
|
92
|
+
state_eq:
|
93
|
+
label: Zustand
|
94
|
+
values:
|
95
|
+
accepted: Angenommen
|
96
|
+
evaluating: In Bearbeitung
|
97
|
+
published: Veröffentlicht
|
98
|
+
rejected: Abgelehnt
|
99
|
+
validating: Technische Validierung
|
100
|
+
withdrawn: Zurückgezogen
|
101
|
+
state_null:
|
102
|
+
label: Bundesländer
|
103
|
+
values:
|
104
|
+
'true': Unbeantwortet
|
83
105
|
valuator_role_ids_has:
|
84
106
|
label: Zugewiesen zu dem Schätzer
|
85
107
|
search_placeholder:
|
86
|
-
id_string_or_title_cont:
|
108
|
+
id_string_or_title_cont: In %{collection} nach ID oder Titel suchen.
|
87
109
|
components:
|
88
110
|
proposals:
|
89
111
|
actions:
|
@@ -102,7 +124,7 @@ de:
|
|
102
124
|
announcement: Ankündigung
|
103
125
|
attachments_allowed: Anhänge zulassen
|
104
126
|
can_accumulate_supports_beyond_threshold: Kann Unterstützungen über den Schwellenwert hinaus ansammeln
|
105
|
-
collaborative_drafts_enabled:
|
127
|
+
collaborative_drafts_enabled: Kollaborative Entwürfe aktiviert
|
106
128
|
comments_enabled: Kommentare aktiviert
|
107
129
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
108
130
|
geocoding_enabled: Geocoding aktiviert
|
@@ -155,50 +177,50 @@ de:
|
|
155
177
|
proposals:
|
156
178
|
admin:
|
157
179
|
proposal_note_created:
|
158
|
-
email_intro: Jemand hat eine Notiz
|
180
|
+
email_intro: Jemand hat eine Notiz zum Vorschlag "%{resource_title}" hinterlassen. Schauen Sie sich diese im <a href="%{admin_proposal_info_url}">Admin-Panel</a> an
|
159
181
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Vorschlag bewerten können.
|
160
182
|
email_subject: Jemand hat eine Notiz für Vorschlag %{resource_title} erstellt.
|
161
|
-
notification_title: Jemand hat eine Notiz für Vorschlag <a href="%{resource_path}">%{resource_title}</a>erstellt. Sie können sie über <a href="%{admin_proposal_info_path}">
|
183
|
+
notification_title: Jemand hat eine Notiz für den Vorschlag <a href="%{resource_path}">%{resource_title}</a>erstellt. Sie können sie über das <a href="%{admin_proposal_info_path}">Admin-Panel</a> anzeigen
|
162
184
|
collaborative_draft_access_accepted:
|
163
|
-
email_intro: '%{requester_name} wurde
|
164
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
165
|
-
email_subject: "%{requester_name} wurde
|
166
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde
|
185
|
+
email_intro: '%{requester_name} wurde zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> akzeptiert.'
|
186
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
187
|
+
email_subject: "%{requester_name} wurde zur Mitwirkung an %{resource_title} akzeptiert."
|
188
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>angenommen</strong>.
|
167
189
|
collaborative_draft_access_rejected:
|
168
|
-
email_intro: '%{requester_name} wurde
|
169
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
170
|
-
email_subject: "%{requester_name} wurde als
|
171
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde
|
190
|
+
email_intro: '%{requester_name} wurde als Mitwirkender des kollaborativen Entwurfs <a href="%{resource_path}">%{resource_title}</a> abgelehnt.'
|
191
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
192
|
+
email_subject: "%{requester_name} wurde als Mitwirkender des kollaborativen Entwurfs %{resource_title} abgelehnt."
|
193
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde als Mitwirkender beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>abgelehnt</strong>.
|
172
194
|
collaborative_draft_access_requested:
|
173
|
-
email_intro: '%{requester_name}
|
174
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
175
|
-
email_subject: "%{requester_name}
|
176
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a>
|
195
|
+
email_intro: '%{requester_name} hat um Zugriff auf Ihren kollaborativen Entwurf angefragt. Sie können den Antrag auf der Seite des kollaborativen Entwurfs <a href="%{resource_path}">%{resource_title}</a> <strong>annehmen oder ablehnen</strong>.'
|
196
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
197
|
+
email_subject: "%{requester_name} hat um Zugang zur Mitwirkung bei %{resource_title} angefragt."
|
198
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> hat Zugriff beantragt, um beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitzuwirken. Bitte <strong>den Antrag akzeptieren oder ablehnen</strong>.
|
177
199
|
collaborative_draft_access_requester_accepted:
|
178
|
-
email_intro: Sie wurden
|
179
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
180
|
-
email_subject:
|
181
|
-
notification_title: Sie
|
200
|
+
email_intro: Sie wurden zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> akzeptiert.
|
201
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie angefragt haben, bei <a href="%{resource_path}">%{resource_title}</a> mitzuwirken.
|
202
|
+
email_subject: Sie wurden als Mitwirkender von %{resource_title} angenommen.
|
203
|
+
notification_title: Sie wurden zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>akzeptiert</strong>.
|
182
204
|
collaborative_draft_access_requester_rejected:
|
183
|
-
email_intro:
|
184
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
185
|
-
email_subject: Sie wurden als Mitwirkender von %{resource_title}abgelehnt.
|
186
|
-
notification_title: Sie wurden
|
205
|
+
email_intro: Der Zugriff auf den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> wurde Ihnen verweigert.
|
206
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie angefragt haben, bei <a href="%{resource_path}">%{resource_title}</a> mitzuwirken.
|
207
|
+
email_subject: Sie wurden als Mitwirkender von %{resource_title} abgelehnt.
|
208
|
+
notification_title: Sie wurden als Mitwirkender beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>abgelehnt</strong>.
|
187
209
|
collaborative_draft_withdrawn:
|
188
|
-
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
189
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
190
|
-
email_subject: "%{author_name} %{author_nickname}
|
191
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
210
|
+
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> zurückgezogen.
|
211
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie bei <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
212
|
+
email_subject: "%{author_name} %{author_nickname} hat den kollaborativen Entwurf %{resource_title} zurückgezogen."
|
213
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>zurückgezogen</strong>.
|
192
214
|
creation_enabled:
|
193
|
-
email_intro: 'Sie können jetzt neue Vorschläge in %{participatory_space_title}erstellen!
|
194
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
195
|
-
email_subject:
|
196
|
-
notification_title: Sie können jetzt <a href="%{resource_path}">neue Vorschläge</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
215
|
+
email_intro: 'Sie können jetzt neue Vorschläge in %{participatory_space_title} erstellen! Beteiligen Sie sich auf dieser Seite:'
|
216
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
217
|
+
email_subject: In %{participatory_space_title} sind jetzt Vorschläge verfügbar
|
218
|
+
notification_title: Sie können jetzt <a href="%{resource_path}">neue Vorschläge</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> erfassen
|
197
219
|
endorsing_enabled:
|
198
|
-
email_intro: 'Sie können Vorschläge in %{participatory_space_title}!
|
199
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
200
|
-
email_subject:
|
201
|
-
notification_title: Sie können nun
|
220
|
+
email_intro: 'Sie können Vorschläge in %{participatory_space_title} unterstützen! Beteiligen Sie sich auf dieser Seite:'
|
221
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
222
|
+
email_subject: In %{participatory_space_title} ist es jetzt möglich, Vorschläge zu unterstützen
|
223
|
+
notification_title: Sie können nun Vorschläge in <a href="%{participatory_space_url}">%{participatory_space_title}</a> <a href="%{resource_path}">unterstützen</a>
|
202
224
|
proposal_accepted:
|
203
225
|
affected_user:
|
204
226
|
email_intro: 'Ihr Vorschlag "%{resource_title}" wurde angenommen. Sie können die Antwort auf dieser Seite lesen:'
|
@@ -207,35 +229,35 @@ de:
|
|
207
229
|
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde angenommen.
|
208
230
|
follower:
|
209
231
|
email_intro: 'Der Vorschlag "%{resource_title}" wurde akzeptiert. Sie können die Antwort auf dieser Seite lesen:'
|
210
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
232
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
211
233
|
email_subject: Ein Vorschlag, dem Sie folgen, wurde akzeptiert
|
212
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
234
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde angenommen.
|
213
235
|
proposal_evaluating:
|
214
236
|
affected_user:
|
215
|
-
email_intro: 'Ihr
|
237
|
+
email_intro: 'Ihr Vorschlag "%{resource_title}" wird derzeit geprüft. Das Resultat wird auf dieser Seite aufgeschaltet werden:'
|
216
238
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von "%{resource_title}" sind.
|
217
|
-
email_subject: Ihr Vorschlag wird
|
218
|
-
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird
|
239
|
+
email_subject: Ihr Vorschlag wird evaluiert
|
240
|
+
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird evaluiert.
|
219
241
|
follower:
|
220
|
-
email_intro: 'Der Vorschlag "%{resource_title}" wird
|
221
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
242
|
+
email_intro: 'Der Vorschlag "%{resource_title}" wird derzeit geprüft. Das Resultat wird auf dieser Seite aufgeschaltet werden:'
|
243
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
222
244
|
email_subject: Ein Vorschlag, dem Sie folgen, wird evaluiert
|
223
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
245
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird evaluiert.
|
224
246
|
proposal_mentioned:
|
225
|
-
email_intro: Ihr Vorschlag
|
247
|
+
email_intro: Ihr Vorschlag "%{mentioned_proposal_title}" wurde <a href="%{resource_url}">hier</a> in den Kommentaren erwähnt.
|
226
248
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von "%{resource_title}" sind.
|
227
249
|
email_subject: Ihr Vorschlag "%{mentioned_proposal_title}" wurde erwähnt
|
228
|
-
notification_title: Ihr Vorschlag
|
250
|
+
notification_title: Ihr Vorschlag "%{mentioned_proposal_title}" wurde <a href="%{resource_path}">hier</a> in den Kommentaren erwähnt.
|
229
251
|
proposal_published:
|
230
|
-
email_intro: '%{author_name} %{author_nickname}, dem Sie folgen, hat einen neuen Vorschlag mit dem Namen "%{resource_title}" veröffentlicht.
|
231
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname}. Sie
|
232
|
-
email_subject: Neuer Vorschlag "%{resource_title}"
|
233
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
252
|
+
email_intro: '%{author_name} %{author_nickname}, dem Sie folgen, hat einen neuen Vorschlag mit dem Namen "%{resource_title}" veröffentlicht. Sehen Sie es sich an und reden Sie mit:'
|
253
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
254
|
+
email_subject: Neuer Vorschlag "%{resource_title}" von %{author_nickname}
|
255
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> veröffentlicht.
|
234
256
|
proposal_published_for_space:
|
235
|
-
email_intro: Der Vorschlag "%{resource_title}" wurde zu "%{participatory_space_title}" hinzugefügt,
|
236
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{participatory_space_title}" folgen. Sie können
|
237
|
-
email_subject: Neuer Vorschlag "%{resource_title}" zu %{participatory_space_title}hinzugefügt
|
238
|
-
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde zu %{participatory_space_title}hinzugefügt
|
257
|
+
email_intro: Der Vorschlag "%{resource_title}" wurde zu "%{participatory_space_title}" hinzugefügt, welchem Sie folgen.
|
258
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{participatory_space_title}" folgen. Sie können den Erhalt von Benachrichtigungen über den vorherigen Link beenden.
|
259
|
+
email_subject: Neuer Vorschlag "%{resource_title}" zu %{participatory_space_title} hinzugefügt
|
260
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde zu %{participatory_space_title} hinzugefügt
|
239
261
|
proposal_rejected:
|
240
262
|
affected_user:
|
241
263
|
email_intro: 'Ihr Vorschlag "%{resource_title}" wurde abgelehnt. Sie können die Antwort auf dieser Seite lesen:'
|
@@ -244,24 +266,24 @@ de:
|
|
244
266
|
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde abgelehnt.
|
245
267
|
follower:
|
246
268
|
email_intro: 'Der Vorschlag "%{resource_title}" wurde abgelehnt. Sie können die Antwort auf dieser Seite lesen:'
|
247
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
269
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
248
270
|
email_subject: Ein Vorschlag, dem Sie folgen, wurde abgelehnt
|
249
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
271
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde abgelehnt.
|
250
272
|
proposal_update_category:
|
251
|
-
email_intro: 'Ein Administrator hat die Kategorie Ihres
|
252
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des
|
273
|
+
email_intro: 'Ein Administrator hat die Kategorie Ihres Vorschlags "%{resource_title}" aktualisiert, sehen Sie es sich an:'
|
274
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
253
275
|
email_subject: Die Vorschlagskategorie %{resource_title} wurde aktualisiert
|
254
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
276
|
+
notification_title: Die Vorschlagskategorie <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
|
255
277
|
proposal_update_scope:
|
256
|
-
email_intro: 'Ein Administrator hat den
|
257
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des
|
258
|
-
email_subject: Der
|
259
|
-
notification_title: Der
|
278
|
+
email_intro: 'Ein Administrator hat den Bereich Ihres Vorschlags „%{resource_title}“ aktualisiert, sehen Sie es sich das auf dieser Seite an:'
|
279
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
280
|
+
email_subject: Der Bereich des Vorschlags %{resource_title} wurde aktualisiert
|
281
|
+
notification_title: Der Bereich des Vorschlags <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
|
260
282
|
voting_enabled:
|
261
|
-
email_intro: 'Sie können Vorschläge in %{participatory_space_title}abstimmen!
|
262
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
263
|
-
email_subject:
|
264
|
-
notification_title: Sie können jetzt <a href="%{
|
283
|
+
email_intro: 'Sie können für Vorschläge in %{participatory_space_title} abstimmen! Beteiligen Sie sich auf dieser Seite:'
|
284
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
285
|
+
email_subject: In %{participatory_space_title} ist es jetzt möglich, für Vorschläge abzustimmen
|
286
|
+
notification_title: Sie können jetzt für Vorschläge in <a href="%{participatory_space_url}">%{participatory_space_title}</a> <a href="%{resource_path}">abstimmen</a>
|
265
287
|
gamification:
|
266
288
|
badges:
|
267
289
|
accepted_proposals:
|
@@ -334,7 +356,7 @@ de:
|
|
334
356
|
actions:
|
335
357
|
preview: Vorschau
|
336
358
|
exports:
|
337
|
-
comments:
|
359
|
+
comments: Bemerkungen
|
338
360
|
proposals: Vorschläge
|
339
361
|
models:
|
340
362
|
proposal:
|
@@ -401,6 +423,7 @@ de:
|
|
401
423
|
form:
|
402
424
|
attachment_legend: "(Optional) Anhang hinzufügen"
|
403
425
|
created_in_meeting: Dieser Vorschlag stammt von einer Besprechung
|
426
|
+
delete_attachment: Anhang löschen
|
404
427
|
select_a_category: Kategorie auswählen
|
405
428
|
select_a_meeting: Besprechung auswählen
|
406
429
|
index:
|
@@ -512,7 +535,7 @@ de:
|
|
512
535
|
all: Alle
|
513
536
|
filter_origin_values:
|
514
537
|
all: Alle
|
515
|
-
citizens:
|
538
|
+
citizens: Einzelpersonen
|
516
539
|
meetings: Meetings
|
517
540
|
official: Offiziell
|
518
541
|
user_groups: Benutzergruppen
|
@@ -552,7 +575,7 @@ de:
|
|
552
575
|
no_similars_found: Gut gemacht! Keine ähnlichen kollaborativen Entwürfe gefunden
|
553
576
|
title: Ähnliche kollaborative Entwürfe
|
554
577
|
complete:
|
555
|
-
send:
|
578
|
+
send: Abschicken
|
556
579
|
title: Vervollständigen Sie Ihren gemeinsamen Entwurf
|
557
580
|
count:
|
558
581
|
drafts_count:
|
@@ -562,7 +585,7 @@ de:
|
|
562
585
|
error: Beim Erstellen dieser kollaborativen Entwürfe ist ein Problem aufgetreten
|
563
586
|
success: Collaborative Draft wurde erfolgreich erstellt.
|
564
587
|
edit:
|
565
|
-
attachment_legend: "(Optional) Fügen Sie
|
588
|
+
attachment_legend: "(Optional) Fügen Sie einen Anhang hinzu"
|
566
589
|
back: Zurück
|
567
590
|
select_a_category: Bitte wählen Sie eine Kategorie
|
568
591
|
send: Abschicken
|
@@ -592,7 +615,7 @@ de:
|
|
592
615
|
label: 'Bestellentwürfe von:'
|
593
616
|
most_contributed: Am meisten beigetragen
|
594
617
|
random: Zufällig
|
595
|
-
recent:
|
618
|
+
recent: Kürzlich hinzugefügt
|
596
619
|
requests:
|
597
620
|
accepted_request:
|
598
621
|
error: Könnte nicht als Mitarbeiter akzeptiert werden, versuchen Sie es später erneut.
|
@@ -630,7 +653,7 @@ de:
|
|
630
653
|
update:
|
631
654
|
error: Beim Speichern des gemeinsamen Entwurfs sind Fehler aufgetreten.
|
632
655
|
success: Collaborative Draft wurde erfolgreich aktualisiert.
|
633
|
-
title:
|
656
|
+
title: Gemeinsamen Entwurf bearbeiten
|
634
657
|
wizard_aside:
|
635
658
|
back: Zurück
|
636
659
|
back_from_collaborative_draft: Zurück zu gemeinschaftlichen Entwürfen
|
@@ -655,6 +678,7 @@ de:
|
|
655
678
|
success: Der Vorschlagsentwurf wurde erfolgreich gelöscht.
|
656
679
|
last_activity:
|
657
680
|
new_proposal_at_html: "<span>Neuer Vorschlag bei %{link}</span>"
|
681
|
+
proposal_updated_at_html: "<span>Vorschlag aktualisiert unter %{link}</span>"
|
658
682
|
models:
|
659
683
|
collaborative_draft:
|
660
684
|
fields:
|
@@ -700,8 +724,13 @@ de:
|
|
700
724
|
one: "%{count} Vorschlag"
|
701
725
|
other: "%{count} Vorschläge"
|
702
726
|
edit:
|
727
|
+
add_documents: Dokumente
|
728
|
+
add_images: Datei
|
703
729
|
attachment_legend: "(Optional) Fügen Sie einen Anhang hinzu"
|
704
730
|
back: Zurück
|
731
|
+
delete_document: Dokument löschen
|
732
|
+
delete_image: Bild löschen
|
733
|
+
gallery_legend: "(Optional) Ein Bild zur Vorschlagskarte hinzufügen"
|
705
734
|
select_a_category: Bitte wählen sie eine Kategorie
|
706
735
|
send: Abschicken
|
707
736
|
title: Vorschlag bearbeiten
|
@@ -747,7 +776,7 @@ de:
|
|
747
776
|
most_followed: Am meisten gefolgt
|
748
777
|
most_voted: Am meisten unterstützt
|
749
778
|
random: Zufällig
|
750
|
-
recent: Kürzlich
|
779
|
+
recent: Kürzlich hinzugefügt
|
751
780
|
with_more_authors: Mit mehr Autoren
|
752
781
|
participatory_texts:
|
753
782
|
index:
|
data/config/locales/el.yml
CHANGED
@@ -627,7 +627,7 @@ el:
|
|
627
627
|
update:
|
628
628
|
error: Υπήρξε ένα πρόβλημα κατά την αποθήκευση του προσχεδίου συνεργασίας.
|
629
629
|
success: Το προσχέδιο συνεργασίας ενημερώθηκε με επιτυχία.
|
630
|
-
title:
|
630
|
+
title: Επεξεργασία προσχεδίου συνεργασίας
|
631
631
|
wizard_aside:
|
632
632
|
back: Πίσω
|
633
633
|
back_from_collaborative_draft: Πίσω στα συνεργατικά προσχέδια
|
data/config/locales/en.yml
CHANGED
@@ -424,6 +424,7 @@ en:
|
|
424
424
|
form:
|
425
425
|
attachment_legend: "(Optional) Add an attachment"
|
426
426
|
created_in_meeting: This proposal comes from a meeting
|
427
|
+
delete_attachment: Delete attachment
|
427
428
|
select_a_category: Select a category
|
428
429
|
select_a_meeting: Select a meeting
|
429
430
|
index:
|
@@ -678,6 +679,7 @@ en:
|
|
678
679
|
success: Proposal draft was successfully deleted.
|
679
680
|
last_activity:
|
680
681
|
new_proposal_at_html: "<span>New proposal at %{link}</span>"
|
682
|
+
proposal_updated_at_html: "<span>Proposal updated at %{link}</span>"
|
681
683
|
models:
|
682
684
|
collaborative_draft:
|
683
685
|
fields:
|
data/config/locales/es-MX.yml
CHANGED
@@ -423,6 +423,7 @@ es-MX:
|
|
423
423
|
form:
|
424
424
|
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
425
425
|
created_in_meeting: Esta propuesta procede de un encuentro
|
426
|
+
delete_attachment: Eliminar archivo adjunto
|
426
427
|
select_a_category: Selecciona una categoría
|
427
428
|
select_a_meeting: Selecciona un encuentro
|
428
429
|
index:
|
@@ -652,7 +653,7 @@ es-MX:
|
|
652
653
|
update:
|
653
654
|
error: Ha habido errores al guardar el borrador colaborativo.
|
654
655
|
success: Borrador colaborativo actualizado con éxito.
|
655
|
-
title: Editar
|
656
|
+
title: Editar borrador colaborativo
|
656
657
|
wizard_aside:
|
657
658
|
back: Volver
|
658
659
|
back_from_collaborative_draft: Volver al borrador colaborativo
|
@@ -662,8 +663,8 @@ es-MX:
|
|
662
663
|
back_from_step_4: Volver a editar borrador
|
663
664
|
info: Estás creando un borrador colaborativo <strong></strong>.
|
664
665
|
wizard_steps:
|
665
|
-
current_step:
|
666
|
-
see_steps: ver
|
666
|
+
current_step: Paso actual
|
667
|
+
see_steps: ver los pasos
|
667
668
|
step_1: Crea tu borrador colaborativo
|
668
669
|
step_2: Comparar con borradores colaborativos
|
669
670
|
step_3: Completa tu borrador colaborativo
|
data/config/locales/es-PY.yml
CHANGED
@@ -423,6 +423,7 @@ es-PY:
|
|
423
423
|
form:
|
424
424
|
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
425
425
|
created_in_meeting: Esta propuesta viene de una reunión.
|
426
|
+
delete_attachment: Eliminar archivo adjunto
|
426
427
|
select_a_category: Seleccione una categoría
|
427
428
|
select_a_meeting: Seleccione una reunion
|
428
429
|
index:
|
@@ -652,7 +653,7 @@ es-PY:
|
|
652
653
|
update:
|
653
654
|
error: Ha habido errores al guardar el borrador colaborativo.
|
654
655
|
success: Borrador colaborativo actualizado con éxito.
|
655
|
-
title: Editar
|
656
|
+
title: Editar borrador colaborativo
|
656
657
|
wizard_aside:
|
657
658
|
back: Volver
|
658
659
|
back_from_collaborative_draft: Volver al borrador colaborativo
|
@@ -662,8 +663,8 @@ es-PY:
|
|
662
663
|
back_from_step_4: Volver a editar borrador
|
663
664
|
info: Estás creando un borrador colaborativo <strong></strong>.
|
664
665
|
wizard_steps:
|
665
|
-
current_step:
|
666
|
-
see_steps: ver
|
666
|
+
current_step: Paso actual
|
667
|
+
see_steps: ver los pasos
|
667
668
|
step_1: Crea tu borrador colaborativo
|
668
669
|
step_2: Comparar con borradores colaborativos
|
669
670
|
step_3: Completa tu borrador colaborativo
|
data/config/locales/es.yml
CHANGED
@@ -423,6 +423,7 @@ es:
|
|
423
423
|
form:
|
424
424
|
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
425
425
|
created_in_meeting: Esta propuesta procede de un encuentro
|
426
|
+
delete_attachment: Eliminar archivo adjunto
|
426
427
|
select_a_category: Selecciona una categoría
|
427
428
|
select_a_meeting: Selecciona un encuentro
|
428
429
|
index:
|
@@ -652,7 +653,7 @@ es:
|
|
652
653
|
update:
|
653
654
|
error: Se ha producido un error al guardar el borrador colaborativo.
|
654
655
|
success: Borrador colaborativo actualizado correctamente.
|
655
|
-
title: Editar
|
656
|
+
title: Editar borrador colaborativo
|
656
657
|
wizard_aside:
|
657
658
|
back: Volver
|
658
659
|
back_from_collaborative_draft: Volver a borradores colaborativos
|
@@ -662,12 +663,12 @@ es:
|
|
662
663
|
back_from_step_4: Volver a editar borrador
|
663
664
|
info: Estás creando un borrador colaborativo <strong></strong>.
|
664
665
|
wizard_steps:
|
665
|
-
current_step:
|
666
|
+
current_step: Paso actual
|
666
667
|
see_steps: ver las fases
|
667
668
|
step_1: Crea tu borrador colaborativo
|
668
669
|
step_2: Comparar con borradores colaborativos
|
669
670
|
step_3: Completa tu borrador colaborativo
|
670
|
-
step_of:
|
671
|
+
step_of: Fase %{current_step_num} de %{total_steps}
|
671
672
|
title: Pasos para la creación del borrador colaborativo
|
672
673
|
create:
|
673
674
|
error: Se ha producido un error al guardar la propuesta.
|
data/config/locales/eu.yml
CHANGED
@@ -102,6 +102,7 @@ eu:
|
|
102
102
|
threshold_per_proposal: Proposamen bakoitzeko atalasea
|
103
103
|
vote_limit: Erabiltzaile bakoitzari botoa emateko muga
|
104
104
|
step:
|
105
|
+
amendments_visibility_help: Zuzenketak egileentzat bakarrik ikusgai" aukera hautatzen bada, parte-hartzaileek saioa hasi beharko dute egindako zuzenketak ikusteko.
|
105
106
|
announcement: Anuntzio
|
106
107
|
automatic_hashtags: Hashtags proposamen guztiei gehitu zaie
|
107
108
|
comments_blocked: Iruzkinak blokeatuta
|
@@ -208,6 +209,7 @@ eu:
|
|
208
209
|
email_subject: '%{resource_title} Proposamenaren kategoria eguneratu da'
|
209
210
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> proposamenaren kategoria administratzaile batek eguneratu du.
|
210
211
|
proposal_update_scope:
|
212
|
+
email_intro: 'Administratzaile batek %{resource_title} zure proposamenaren eremua eguneratu du, orri honetan egiazta dezakezu:'
|
211
213
|
email_outro: Jakinarazpen hau jaso duzu proposamenaren egilea delako.
|
212
214
|
voting_enabled:
|
213
215
|
email_intro: 'Proposamenak bozkatu ditzakezu %{participatory_space_title}-n! Hasi orri honetan parte hartzea:'
|
@@ -284,7 +286,7 @@ eu:
|
|
284
286
|
actions:
|
285
287
|
preview: Aurreikusi
|
286
288
|
exports:
|
287
|
-
comments:
|
289
|
+
comments: Oharrak
|
288
290
|
proposals: Proposamenak
|
289
291
|
models:
|
290
292
|
proposal:
|
@@ -534,6 +536,7 @@ eu:
|
|
534
536
|
update:
|
535
537
|
error: Lankidetza zirriborroa gordetzean erroreak gertatu dira.
|
536
538
|
success: Laguntza-proiektua ondo eguneratu da.
|
539
|
+
title: Editatu lankidetza zirriborroa
|
537
540
|
wizard_aside:
|
538
541
|
back: Back
|
539
542
|
info: Bat sortzen ari zara <strong>elkarlanerako zirriborroa</strong>.
|
@@ -542,7 +545,7 @@ eu:
|
|
542
545
|
step_1: Sortu zure lankidetza zirriborroa
|
543
546
|
step_2: Konparatu zirriborroekin alderatu
|
544
547
|
step_3: Bete lankidetza zirriborroa
|
545
|
-
step_of:
|
548
|
+
step_of: Urratsa %{current_step_num} de %{total_steps}
|
546
549
|
create:
|
547
550
|
error: Erroreak gertatu dira proposamena gordetzean.
|
548
551
|
success: Onartutako proposamena. Zirriborro gisa gorde da.
|