decidim-initiatives 0.30.1 → 0.31.0.rc1
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/README.md +46 -9
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +7 -2
- data/app/cells/decidim/initiatives/initiative_g_cell.rb +5 -1
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -5
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -2
- data/app/commands/decidim/initiatives/create_initiative.rb +0 -1
- data/app/commands/decidim/initiatives/update_initiative.rb +1 -3
- data/app/commands/decidim/initiatives/vote_initiative.rb +1 -11
- data/app/controllers/concerns/decidim/initiatives/has_signature_workflow.rb +36 -0
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -12
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +10 -2
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +84 -18
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +133 -42
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -2
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +21 -2
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +0 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +0 -3
- data/app/helpers/decidim/initiatives/application_helper.rb +2 -0
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +0 -1
- data/app/models/decidim/initiative.rb +7 -31
- data/app/models/decidim/initiatives_committee_member.rb +1 -1
- data/app/models/decidim/initiatives_type.rb +5 -2
- data/app/models/decidim/initiatives_vote.rb +2 -2
- data/app/packs/entrypoints/decidim_initiatives.js +1 -1
- data/app/packs/entrypoints/decidim_initiatives_admin.scss +1 -1
- data/app/packs/src/decidim/initiatives/admin/initiatives_types.js +2 -11
- data/app/packs/src/decidim/initiatives/admin/invite_users.js +1 -1
- data/app/packs/src/decidim/initiatives/application.js +1 -1
- data/app/packs/src/decidim/initiatives/check_code.js +114 -0
- data/app/packs/src/decidim/initiatives/initiative_creation_wizard.js +16 -0
- data/app/packs/src/decidim/initiatives/scoped_type.js +1 -1
- data/app/packs/stylesheets/initiatives.scss +16 -2
- data/app/permissions/decidim/initiatives/admin/permissions.rb +4 -7
- data/app/permissions/decidim/initiatives/permissions.rb +26 -16
- data/app/presenters/decidim/initiative_presenter.rb +12 -6
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +1 -2
- data/app/queries/decidim/initiatives/initiatives_stats_followers_count.rb +14 -0
- data/app/queries/decidim/initiatives/initiatives_stats_participants_count.rb +14 -0
- data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +0 -1
- data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
- data/app/services/decidim/initiatives/legacy_signature_handler.rb +25 -0
- data/app/services/decidim/initiatives/progress_notifier.rb +1 -7
- data/app/services/decidim/initiatives/signature_handler.rb +248 -0
- data/app/services/decidim/initiatives/status_change_notifier.rb +1 -7
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +29 -11
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +17 -20
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +7 -13
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +76 -47
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +13 -21
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +28 -12
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +33 -15
- data/app/views/decidim/initiatives/create_initiative/_committee_member.html.erb +27 -0
- data/app/views/decidim/initiatives/create_initiative/_return_to_initiatives_button.html.erb +3 -0
- data/app/views/decidim/initiatives/create_initiative/_send_to_technical_validation_button.html.erb +10 -0
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +5 -1
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +7 -11
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +16 -13
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +33 -6
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +40 -26
- data/app/views/decidim/initiatives/initiative_signatures/_sms_code_form.html.erb +22 -0
- data/app/views/decidim/initiatives/initiative_signatures/_sms_phone_number_form.html.erb +13 -0
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +23 -22
- data/app/views/decidim/initiatives/initiative_signatures/finish.html.erb +17 -5
- data/app/views/decidim/initiatives/initiative_signatures/sms_code.html.erb +6 -8
- data/app/views/decidim/initiatives/initiative_signatures/sms_phone_number.html.erb +3 -8
- data/app/views/decidim/initiatives/initiative_signatures/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiatives/_committee_members.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +1 -3
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +10 -3
- data/app/views/decidim/initiatives/initiatives/_pending_initiatives.html.erb +5 -0
- data/app/views/decidim/initiatives/initiatives/index.html.erb +8 -0
- data/app/views/decidim/initiatives/initiatives/show.html.erb +2 -2
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +20 -2
- data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +1 -1
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +3 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -45
- data/config/locales/bg.yml +0 -54
- data/config/locales/ca-IT.yml +99 -51
- data/config/locales/ca.yml +99 -51
- data/config/locales/cs.yml +93 -54
- data/config/locales/de.yml +100 -52
- data/config/locales/el.yml +0 -45
- data/config/locales/en.yml +99 -51
- data/config/locales/es-MX.yml +99 -51
- data/config/locales/es-PY.yml +99 -51
- data/config/locales/es.yml +99 -51
- data/config/locales/eu.yml +120 -72
- data/config/locales/fi-plain.yml +99 -51
- data/config/locales/fi.yml +99 -51
- data/config/locales/fr-CA.yml +44 -51
- data/config/locales/fr.yml +44 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +0 -54
- data/config/locales/id-ID.yml +0 -40
- data/config/locales/is-IS.yml +0 -22
- data/config/locales/it.yml +0 -53
- data/config/locales/ja.yml +98 -49
- data/config/locales/lb.yml +0 -50
- data/config/locales/lt.yml +0 -56
- data/config/locales/lv.yml +0 -46
- data/config/locales/nl.yml +0 -47
- data/config/locales/no.yml +0 -53
- data/config/locales/pl.yml +0 -56
- data/config/locales/pt-BR.yml +0 -53
- data/config/locales/pt.yml +0 -53
- data/config/locales/ro-RO.yml +92 -50
- data/config/locales/ru.yml +0 -25
- data/config/locales/sk.yml +0 -43
- data/config/locales/sl.yml +0 -1
- data/config/locales/sv.yml +10 -53
- data/config/locales/tr-TR.yml +0 -53
- data/config/locales/uk.yml +0 -25
- data/config/locales/zh-CN.yml +0 -45
- data/config/locales/zh-TW.yml +0 -53
- data/db/migrate/20250605104500_remove_hashtag_column_initiatives.rb +7 -0
- data/lib/decidim/api/initiative_api_type.rb +3 -0
- data/lib/decidim/api/initiative_type.rb +23 -4
- data/lib/decidim/exporters/initiative_votes_pdf.rb +1 -1
- data/lib/decidim/initiatives/default_signature_authorizer.rb +17 -0
- data/lib/decidim/initiatives/engine.rb +17 -14
- data/lib/decidim/initiatives/menu.rb +1 -1
- data/lib/decidim/initiatives/participatory_space.rb +15 -1
- data/lib/decidim/initiatives/seeds.rb +1 -2
- data/lib/decidim/initiatives/signature_workflow_manifest.rb +176 -0
- data/lib/decidim/initiatives/signatures.rb +12 -0
- data/lib/decidim/initiatives/test/factories.rb +7 -7
- data/lib/decidim/initiatives/test/initiatives_signatures_test_helpers.rb +19 -0
- data/lib/decidim/initiatives/validatable_authorizations.rb +83 -0
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +23 -12
- metadata +33 -21
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +0 -13
- data/app/forms/decidim/initiatives/vote_form.rb +0 -208
- data/app/packs/src/decidim/initiatives/identity_selector_dialog.js +0 -14
- data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -110
- data/app/views/decidim/initiatives/initiative_signatures/_wizard_steps.html.erb +0 -15
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +0 -10
- data/app/views/layouts/decidim/_initiative_header.html.erb +0 -27
data/config/locales/sk.yml
CHANGED
@@ -3,7 +3,6 @@ sk:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Autor
|
7
6
|
description: Popis
|
8
7
|
offline_votes: Podpora tvárou v tvár
|
9
8
|
scope_id: Rozsah
|
@@ -22,7 +21,6 @@ sk:
|
|
22
21
|
banner_image: Obrázok banneru
|
23
22
|
collect_user_extra_fields: Zbierajte osobné údaje užívateľov podpisom
|
24
23
|
description: Popis
|
25
|
-
document_number_authorization_handler: Povolenie overiť číslo dokumentu na hlasovaní
|
26
24
|
extra_fields_legal_information: Právne informácie o zbere osobných údajov
|
27
25
|
minimum_committee_members: Minimálny počet členov výboru
|
28
26
|
online_signature_enabled: Online podpis povolený
|
@@ -172,7 +170,6 @@ sk:
|
|
172
170
|
send_to_technical_validation: "% {USER_NAME} zaslala% {resource_name} iniciatívu k technickému overenie"
|
173
171
|
update: "% {USER_NAME} aktualizoval iniciatívu% {resource_name}"
|
174
172
|
admin_states:
|
175
|
-
created: Vytvorené
|
176
173
|
discarded: Odstránená
|
177
174
|
application_helper:
|
178
175
|
filter_state_values:
|
@@ -188,53 +185,29 @@ sk:
|
|
188
185
|
name: Významné iniciatívy
|
189
186
|
create_initiative:
|
190
187
|
fill_data:
|
191
|
-
back: Späť
|
192
188
|
continue: Pokračovať
|
193
|
-
more_information: "(Viac informácií)"
|
194
189
|
select_scope: Zvoľte rozsah
|
195
190
|
finish:
|
196
191
|
back: Späť
|
197
|
-
back_to_initiatives: Späť na iniciatívy
|
198
|
-
go_to_my_initiatives: Ísť na mojej iniciatívy
|
199
|
-
more_information: "(Viac informácií)"
|
200
192
|
previous_form:
|
201
193
|
back: Späť
|
202
|
-
continue: Pokračovať
|
203
|
-
promotal_committee:
|
204
|
-
more_information: "(Viac informácií)"
|
205
194
|
select_initiative_type:
|
206
195
|
back: Späť
|
207
196
|
choose_html: Chcem vytvoriť <strong>%{title} </strong>
|
208
197
|
more_information: (Viac informácií)
|
209
198
|
select: Chcem túto iniciatívu podporiť
|
210
|
-
share_committee_link:
|
211
|
-
invite_to_committee_help: Odkaz na pozvanie ľudí, ktorí budú súčasťou podporovaného výboru
|
212
199
|
events:
|
213
200
|
create_initiative_event:
|
214
201
|
email_intro: "% {AUTHOR_NAME}% {author_nickname}, ktorého sledujete, vytvoril novú iniciatívu, skontroloval ju a prispel:"
|
215
202
|
email_outro: Toto oznámenie ste dostali, pretože sledujete %{author_nickname}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
|
216
203
|
email_subject: Nová iniciatíva od%{author_nickname}
|
217
204
|
notification_title: Iniciatíva <a href="%{resource_path}">% {resource_title} </a> bola vytvorená <a href="%{author_path}">% {AUTHOR_NAME}% {author_nickname} </a>.
|
218
|
-
endorse_initiative_event:
|
219
|
-
email_intro: "% {AUTHOR_NAME}% {author_nickname}, ktorého sledujete, schválil nasledujúce iniciatívu, možno chcete prispieť k konverzáciu:"
|
220
|
-
email_outro: Toto oznámenie ste dostali, pretože sledujete %{author_nickname}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
|
221
|
-
email_subject: Iniciatíva bola schválená od%{author_nickname}
|
222
|
-
notification_title: Iniciatíva <a href="%{resource_path}">% {resource_title} </a> bola schválená <a href="%{author_path}">% {AUTHOR_NAME}% {author_nickname} </a>.
|
223
205
|
initiative_signatures:
|
224
|
-
fill_personal_data:
|
225
|
-
continue: Pokračovať
|
226
206
|
finish:
|
227
207
|
back_to_initiative: Späť na iniciatívu
|
228
|
-
sms_code:
|
229
|
-
continue: Skontrolujte kód a pokračujte
|
230
|
-
help: Skontrolujte SMS prijaté v telefóne
|
231
|
-
sms_phone_number:
|
232
|
-
continue: Pošlite mi SMS
|
233
208
|
initiative_votes:
|
234
209
|
create:
|
235
210
|
error: Pri podpise iniciatívy došlo k chybám.
|
236
|
-
personal_data:
|
237
|
-
invalid: Osobné údaje nie sú v súlade s údajmi poskytnutými na autorizáciu.
|
238
211
|
sms_phone:
|
239
212
|
invalid: Telefónne číslo je neplatné alebo čaká na autorizáciu. Skontrolujte prosím vaše oprávnenie.
|
240
213
|
initiatives:
|
@@ -258,13 +231,6 @@ sk:
|
|
258
231
|
type: Typ
|
259
232
|
index_header:
|
260
233
|
new_initiative: Nová iniciatíva
|
261
|
-
interactions:
|
262
|
-
comments_count:
|
263
|
-
count:
|
264
|
-
one: Komentár
|
265
|
-
few: Komentáre
|
266
|
-
many: Komentáre
|
267
|
-
other: Komentáre
|
268
234
|
orders:
|
269
235
|
label: 'Triediť iniciatívy podľa:'
|
270
236
|
most_commented: Najviac komentované
|
@@ -311,20 +277,11 @@ sk:
|
|
311
277
|
initiatives_type:
|
312
278
|
actions:
|
313
279
|
title: Akcia
|
314
|
-
vote: Podpísať
|
315
280
|
layouts:
|
316
281
|
decidim:
|
317
282
|
initiative_creation_header:
|
318
283
|
fill_data: Vytvoriť
|
319
|
-
finish: Dokončiť
|
320
|
-
promotal_committee: Výbor predkladateľov
|
321
284
|
select_initiative_type: Vybrať
|
322
|
-
initiative_signature_creation_header:
|
323
|
-
fill_personal_data: Dokončiť svoje údaje
|
324
|
-
finish: Dokončiť
|
325
|
-
sms_code: Overenie kódu SMS
|
326
|
-
sms_phone_number: Číslo mobilného telefónu
|
327
|
-
title: Podpísať%{initiative_title}
|
328
285
|
initiatives:
|
329
286
|
no_initiatives_yet:
|
330
287
|
no_initiatives_yet: Zatiaľ žiadne iniciatívy!
|
data/config/locales/sl.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -7,9 +7,7 @@ sv:
|
|
7
7
|
answer_url: Svars-URL
|
8
8
|
area_id: Område
|
9
9
|
decidim_scope_id: Indelning
|
10
|
-
decidim_user_group_id: Författare
|
11
10
|
description: Beskrivning
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Fysiska underskrifter
|
14
12
|
offline_votes_for_scope: Personliga underskrifter för %{scope_name}
|
15
13
|
scope_id: Indelning
|
@@ -36,7 +34,6 @@ sv:
|
|
36
34
|
comments_enabled: Aktivera kommentarer
|
37
35
|
custom_signature_end_date_enabled: Gör det möjligt för författarna att välja när perioden för insamling av underskrifter ska sluta
|
38
36
|
description: Beskrivning
|
39
|
-
document_number_authorization_handler: Tillstånd att verifiera dokumentnummer för underskrifter
|
40
37
|
extra_fields_legal_information: Juridisk information om insamling av personuppgifter
|
41
38
|
minimum_committee_members: Minsta antal kampanjmedlemmar
|
42
39
|
online_signature_enabled: Digitala signaturer är aktiverade
|
@@ -80,6 +77,7 @@ sv:
|
|
80
77
|
decidim:
|
81
78
|
admin:
|
82
79
|
actions:
|
80
|
+
cannot_answer: Kan inte svara på detta initiativ
|
83
81
|
new_initiative_type: Ny initiativtyp
|
84
82
|
new_initiative_type_scope: Skapa indelning för initiativ
|
85
83
|
filters:
|
@@ -90,7 +88,6 @@ sv:
|
|
90
88
|
label: Status
|
91
89
|
values:
|
92
90
|
accepted: Tillräckligt många underskrifter
|
93
|
-
created: Skapad
|
94
91
|
discarded: Avvisad
|
95
92
|
open: Öppna
|
96
93
|
rejected: För få underskrifter
|
@@ -98,7 +95,7 @@ sv:
|
|
98
95
|
type_id_eq:
|
99
96
|
label: Typ
|
100
97
|
search_placeholder:
|
101
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Sök %{collection} med titel, beskrivning, ID eller författarnamn
|
98
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Sök %{collection} med titel, beskrivning, ID eller författarnamn
|
102
99
|
initiatives_settings:
|
103
100
|
update:
|
104
101
|
error: Det gick inte att uppdatera inställningarna för initiativ.
|
@@ -125,8 +122,12 @@ sv:
|
|
125
122
|
state: Status
|
126
123
|
supports_count: Underskrifter
|
127
124
|
title: Initiativ
|
125
|
+
initiatives_committee_member:
|
126
|
+
fields:
|
127
|
+
actions: Handlingar
|
128
128
|
initiatives_type_scope:
|
129
129
|
fields:
|
130
|
+
actions: Handlingar
|
130
131
|
scope: Indelning
|
131
132
|
supports_required: Antal underskrifter som krävs
|
132
133
|
name: Indelning för initiativtypen
|
@@ -253,6 +254,7 @@ sv:
|
|
253
254
|
success: Initiativet har skickats till teknisk validering.
|
254
255
|
update: Uppdatera
|
255
256
|
form:
|
257
|
+
attachments_title: Bilagor
|
256
258
|
settings: Inställningar
|
257
259
|
title: Allmän information
|
258
260
|
index:
|
@@ -301,7 +303,6 @@ sv:
|
|
301
303
|
edit:
|
302
304
|
update: Uppdatera
|
303
305
|
form:
|
304
|
-
authorizations: Inställningar för autentisering
|
305
306
|
child_scope_threshold_enabled_help_html: 'Den här konfigurationen har inte stöd för offline-röster. Den aktiverar indelningar och fungerar med en auktorisering som associerar ett utrymme till användaren. Kontrollera att du väljer den auktoriseringen, nedan i auktoriseringsinställningar. För att det ska fungera måste indelningen konfigureras på ett hierarkiskt sätt: 1 Förälder - N barn. För mer information om hur denna konfiguration fungerar, se <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">initiativs admindokumentationssida</a>.'
|
306
307
|
only_global_scope_enabled_help_html: Välj den här om du aktiverade "Child scope signatur" och konfigurerade den globala indelningen som din överordnade indelning. Genom att aktivera detta kommer man att hoppa över valet av initiativtyp i guiden för att skapa initiativ. För mer information om hur denna konfiguration fungerar, se denna <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">länk</a>.
|
307
308
|
options: Alternativ
|
@@ -327,7 +328,6 @@ sv:
|
|
327
328
|
update: "%{user_name} uppdaterade initiativtypen %{resource_name}"
|
328
329
|
admin_states:
|
329
330
|
accepted: Tillräckligt många underskrifter
|
330
|
-
created: Skapad
|
331
331
|
discarded: Bortagna
|
332
332
|
open: Öppna
|
333
333
|
rejected: För få underskrifter
|
@@ -357,38 +357,21 @@ sv:
|
|
357
357
|
name: Viktiga initiativ just nu
|
358
358
|
create_initiative:
|
359
359
|
fill_data:
|
360
|
-
back: Tillbaka
|
361
360
|
continue: Fortsätt
|
362
361
|
fill_data_help: "<ul> <li>Granska innehållet i initiativet. Är titeln lätt att förstå? Har initiativet ett tydligt mål?</li> <li>Du måste välja typ av underskrifter. Fysiska, digitala eller en kombination av båda</li> <li>Vilket är initiativets geografiska omfång? Stad, distrikt?</li> </ul>"
|
363
|
-
more_information: "(Mer information)"
|
364
362
|
select_area: Välj ett område
|
365
363
|
select_scope: Välj en indelning
|
366
364
|
finish:
|
367
365
|
back: Tillbaka
|
368
|
-
back_to_initiatives: Tillbaka till initiativ
|
369
|
-
confirm: Du kommer att skicka initiativet till en administratör för att granska och publicera det. När det har publicerats kommer du inte att kunna redigera det. Vill du gå vidare?
|
370
|
-
edit_my_initiative: Redigera mitt initiativ
|
371
|
-
go_to_my_initiatives: Gå till mina initiativ
|
372
|
-
more_information: "(Mer information)"
|
373
|
-
send_my_initiative: Skicka mitt initiativ till teknisk validering
|
374
|
-
finish_help:
|
375
|
-
publish_helper_text: Kom ihåg att för att ditt initiativ ska publiceras måste du fylla i obligatoriska uppgifter och <strong>skicka det till teknisk validering</strong> för att en administratör ska kunna granska det.
|
376
366
|
previous_form:
|
377
367
|
back: Tillbaka
|
378
|
-
continue: Fortsätta
|
379
|
-
promotal_committee:
|
380
|
-
individual_help_text: Den här typen av medborgarinitiativ kräver att kampanjgruppen består av minst %{committee_size} personer (attesterare). Du måste dela följande länk med andra personer som är del av initiativet. När dina kontakter får denna länk måste de följa de angivna stegen.
|
381
|
-
more_information: "(Mer information)"
|
382
368
|
select_initiative_type:
|
383
369
|
back: Tillbaka
|
384
370
|
choose_html: Jag vill skapa ett <strong>%{title}</strong>
|
385
371
|
more_information: Mer information
|
386
372
|
new: Skapa nytt initiativ
|
387
373
|
select: Jag vill arbeta för detta initiativ
|
388
|
-
select_initiative_type_help: Initiativ är ett sätt för deltagare att påverka sin organisation och ta initiativ till förbättringar. Vilket initiativ vill du lansera?
|
389
374
|
verification_required: Verifiera ditt konto för att skriva under initiativet
|
390
|
-
share_committee_link:
|
391
|
-
invite_to_committee_help: Länk för att bjuda in personer till kampanjgruppen
|
392
375
|
edit:
|
393
376
|
accept: Acceptera initiativet
|
394
377
|
back: Tillbaka
|
@@ -410,11 +393,6 @@ sv:
|
|
410
393
|
email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta ta att emot meddelanden via föregående länk.
|
411
394
|
email_subject: Nytt initiativ från %{author_nickname}
|
412
395
|
notification_title: Initiativet <a href="%{resource_path}">%{resource_title}</a> skapades av <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
413
|
-
endorse_initiative_event:
|
414
|
-
email_intro: "%{author_name} %{author_nickname}, som du följer, gillar följande initiativ. Kanske du vill bidra till diskussionen:"
|
415
|
-
email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta ta att emot meddelanden via föregående länk.
|
416
|
-
email_subject: '%{author_nickname} gillar Initiativet'
|
417
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> gillar initiativet <a href="%{resource_path}">%{resource_title}</a>.
|
418
396
|
revoke_membership_request:
|
419
397
|
email_intro: "%{author_nickname} avslog din ansökan om att ingå i kampanjgruppen för följande initiativ %{resource_title}."
|
420
398
|
email_outro: 'Du har fått det här meddelandet eftersom du är författaren av initiativet %{resource_title}.'
|
@@ -433,23 +411,14 @@ sv:
|
|
433
411
|
uninitialized: Initiativ är ännu inte konfigurerade av en administratör.
|
434
412
|
initiative_signatures:
|
435
413
|
fill_personal_data:
|
436
|
-
continue: Fortsätta
|
437
414
|
help: Skriv under initiativet genom att fylla i följande fält med dina uppgifter.
|
438
415
|
finish:
|
439
416
|
back_to_initiative: Tillbaka till initiativet
|
440
|
-
sms_code:
|
441
|
-
continue: Kontrollera koden och fortsätt
|
442
|
-
help: Se det SMS som skickades till din telefon
|
443
|
-
sms_phone_number:
|
444
|
-
continue: Skicka mig ett SMS
|
445
|
-
help: Begär en verifieringskod genom att fyll i formuläret med ditt verifierade telefonnummer.
|
446
417
|
initiative_votes:
|
447
418
|
create:
|
448
419
|
error: Det gick inte att skriva under initiativet.
|
449
420
|
invalid: Uppgifterna för underskrift av initiativet är ogiltiga.
|
450
421
|
success_html: Grattis! Du har skrivit under initiativet <strong> %{title}</strong>.
|
451
|
-
personal_data:
|
452
|
-
invalid: Personuppgifterna överensstämmer inte med de uppgifter som lämnats för godkännande.
|
453
422
|
sms_code:
|
454
423
|
invalid: Din verifieringskod matchar inte vår. Vänligen dubbelkolla SMS vi skickade dig.
|
455
424
|
sms_phone:
|
@@ -485,11 +454,6 @@ sv:
|
|
485
454
|
initiatives:
|
486
455
|
closed_initiatives_warning: För tillfället finns inga öppna initiativ, men här är en lista över alla avslutade initiativ.
|
487
456
|
no_initiatives_warning: Inga initiativ matchar dina sökkriterier.
|
488
|
-
interactions:
|
489
|
-
comments_count:
|
490
|
-
count:
|
491
|
-
one: Kommentar
|
492
|
-
other: Kommentarer
|
493
457
|
orders:
|
494
458
|
label: 'Sortera initiativ efter:'
|
495
459
|
most_commented: Mest kommenterade
|
@@ -569,7 +533,6 @@ sv:
|
|
569
533
|
show:
|
570
534
|
badge_name:
|
571
535
|
accepted: Tillräckligt många underskrifter
|
572
|
-
created: Skapad
|
573
536
|
discarded: Bortagen
|
574
537
|
open: Öppna
|
575
538
|
rejected: För få underskrifter
|
@@ -590,20 +553,14 @@ sv:
|
|
590
553
|
initiatives_type:
|
591
554
|
actions:
|
592
555
|
title: Åtgärder
|
593
|
-
|
556
|
+
statistics:
|
557
|
+
initiatives_count: Initiativ
|
558
|
+
initiatives_count_tooltip: Antalet offentliggjorda medborgarinitiativ.
|
594
559
|
layouts:
|
595
560
|
decidim:
|
596
561
|
initiative_creation_header:
|
597
562
|
fill_data: Skapa
|
598
|
-
finish: Slutför
|
599
|
-
promotal_committee: Kampanjgrupp
|
600
563
|
select_initiative_type: Välj
|
601
|
-
initiative_signature_creation_header:
|
602
|
-
fill_personal_data: Komplettera dina uppgifter
|
603
|
-
finish: Slutför
|
604
|
-
sms_code: Verifiering med SMS-kod
|
605
|
-
sms_phone_number: Mobiltelefonnummer
|
606
|
-
title: Skriv under %{initiative_title}
|
607
564
|
initiatives:
|
608
565
|
no_initiatives_yet:
|
609
566
|
no_initiatives_yet: Inga initiativ ännu!
|
data/config/locales/tr-TR.yml
CHANGED
@@ -3,7 +3,6 @@ tr:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Yazar
|
7
6
|
description: Açıklama
|
8
7
|
offline_votes: Şahsen imzalar
|
9
8
|
offline_votes_for_scope: '%{scope_name} için şahsen imzalar'
|
@@ -27,7 +26,6 @@ tr:
|
|
27
26
|
collect_user_extra_fields: İmzada katılımcıya ait kişisel verileri toplayın
|
28
27
|
custom_signature_end_date_enabled: Yazarların imza toplama süresinin sonunu seçmesine izin ver
|
29
28
|
description: Açıklama
|
30
|
-
document_number_authorization_handler: İmzalardaki belge numarasını doğrulama yetkisi
|
31
29
|
extra_fields_legal_information: Kişisel verilerin toplanması ile ilgili yasal bilgiler
|
32
30
|
minimum_committee_members: Minimum komite üyesi
|
33
31
|
online_signature_enabled: Çevrimiçi imza etkin
|
@@ -73,14 +71,11 @@ tr:
|
|
73
71
|
label: Durum
|
74
72
|
values:
|
75
73
|
accepted: Yeterince imza
|
76
|
-
created: Oluşturuldu
|
77
74
|
discarded: Yok sayıldı
|
78
75
|
rejected: Yeterince imza yok
|
79
76
|
validating: Teknik doğrulama
|
80
77
|
type_id_eq:
|
81
78
|
label: Tür
|
82
|
-
search_placeholder:
|
83
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: '%{collection} ''ı başlık, açıklama, kimlik veya yazar adına göre arayın.'
|
84
79
|
menu:
|
85
80
|
information: Bilgi
|
86
81
|
initiatives: Girişimler
|
@@ -227,7 +222,6 @@ tr:
|
|
227
222
|
edit:
|
228
223
|
update: Güncelle
|
229
224
|
form:
|
230
|
-
authorizations: Yetkilendirme ayarları
|
231
225
|
options: Seçenekler
|
232
226
|
initiative_type_scopes:
|
233
227
|
title: Girişim türü için kapsamlar
|
@@ -242,7 +236,6 @@ tr:
|
|
242
236
|
update: "%{user_name}, %{resource_name} girişimini güncelledi"
|
243
237
|
admin_states:
|
244
238
|
accepted: Yeterince imza
|
245
|
-
created: Oluşturuldu
|
246
239
|
discarded: Yok sayıldı
|
247
240
|
rejected: Yeterince imza yok
|
248
241
|
validating: Teknik doğrulama
|
@@ -266,36 +259,19 @@ tr:
|
|
266
259
|
name: Vurgulanan girişimler
|
267
260
|
create_initiative:
|
268
261
|
fill_data:
|
269
|
-
back: Geri
|
270
262
|
continue: Devam et
|
271
263
|
fill_data_help: "<ul> <li> Girişiminizin içeriğini inceleyin. Başlığınızı anlamak kolay mı? Girişiminizin amacı açık mı? </li> <li> İmza türünü seçmeniz gerekiyor. Yüz yüze, çevrimiçi veya her ikisinin kombinasyonu </li> <li> Girişimin coğrafi kapsamı nedir? </li> </ul>"
|
272
|
-
more_information: "(Daha fazla bilgi)"
|
273
264
|
select_area: Bir alan seçin
|
274
265
|
select_scope: Bir kapsam seçin
|
275
266
|
finish:
|
276
267
|
back: Geri
|
277
|
-
back_to_initiatives: Girişimlere geri dön
|
278
|
-
confirm: Bir yöneticinin gözden geçirmesi ve yayınlaması için inisiyatif göndereceksiniz. Yayınlandıktan sonra onu düzenleyemezsiniz. Emin misiniz?
|
279
|
-
edit_my_initiative: Girişimimi düzenle
|
280
|
-
go_to_my_initiatives: Benim girişimlerime git
|
281
|
-
more_information: "(Daha fazla bilgi)"
|
282
|
-
send_my_initiative: Girişimimi teknik doğrulamaya gönder
|
283
|
-
finish_help:
|
284
|
-
publish_helper_text: Girişiminizin yayınlanması için gerekli bilgileri tamamlamanız ve bir yöneticinin incelemesi için <strong> teknik doğrulamaya göndermeniz </strong> gerektiğini unutmayın.
|
285
268
|
previous_form:
|
286
269
|
back: Geri
|
287
|
-
continue: Devam et
|
288
|
-
promotal_committee:
|
289
|
-
individual_help_text: Bu tür bir girişim, en az %{committee_size} kişiden (onaylayanlardan) oluşan bir Teşvik Komisyonu gerektirir. Aşağıdaki bağlantıyı bu girişimin parçası olan diğer kişilerle paylaşmalısınız. Kişileriniz bu bağlantıyı aldıklarında, belirtilen adımları izlemeleri gerekecektir.
|
290
|
-
more_information: "(Daha fazla bilgi)"
|
291
270
|
select_initiative_type:
|
292
271
|
back: Geri
|
293
272
|
choose_html: <strong>%{title}</strong> oluşturmak istiyorum
|
294
273
|
more_information: (Daha fazla bilgi)
|
295
274
|
select: Bu girişimi tanıtmak istiyorum
|
296
|
-
select_initiative_type_help: Girişimler, kuruluşun genel menfaati savunmak için eylemlerde bulunabilmesi için katılımcıların müdahale edebilecekleri bir araçtır. Hangi girişimi başlatmak istiyorsunuz?
|
297
|
-
share_committee_link:
|
298
|
-
invite_to_committee_help: Tanıtım komitesinin bir parçası olacak kişileri davet etmek için bağlantı
|
299
275
|
edit:
|
300
276
|
accept: Girişimi kabul edin
|
301
277
|
back: Geri
|
@@ -312,26 +288,12 @@ tr:
|
|
312
288
|
email_outro: Bu bildirimi, %{author_nickname}izlediğiniz için aldınız. Önceki bağlantıyı takip ederek bildirimleri almayı durdurabilirsiniz.
|
313
289
|
email_subject: '%{author_nickname} tarafından yeni girişim'
|
314
290
|
notification_title: <a href="%{resource_path}">%{resource_title} </a> girişimi <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından oluşturuldu.
|
315
|
-
endorse_initiative_event:
|
316
|
-
email_intro: "Takip ettiğiniz %{author_name} %{author_nickname} aşağıdaki girişimi onayladı, belki sohbete katkıda bulunmak istersiniz:"
|
317
|
-
email_outro: Bu bildirimi, %{author_nickname}izlediğiniz için aldınız. Önceki bağlantıyı takip ederek bildirimleri almayı durdurabilirsiniz.
|
318
|
-
email_subject: Girişim %{author_nickname} tarafından onaylandı
|
319
|
-
notification_title: <a href="%{resource_path}">%{resource_title} </a> girişimi <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından onaylandı.
|
320
291
|
initiative_signatures:
|
321
|
-
fill_personal_data:
|
322
|
-
continue: Devam et
|
323
292
|
finish:
|
324
293
|
back_to_initiative: Girişime geri dön
|
325
|
-
sms_code:
|
326
|
-
continue: Kodu kontrol et ve devam et
|
327
|
-
help: Telefonunuza gelen SMS'i kontrol edin
|
328
|
-
sms_phone_number:
|
329
|
-
continue: Bana bir sms gönder
|
330
294
|
initiative_votes:
|
331
295
|
create:
|
332
296
|
error: Girişimi imzalarken bir hata oluştu.
|
333
|
-
personal_data:
|
334
|
-
invalid: Kişisel veriler, yetkilendirme için sağlanan verilerle tutarlı değildir.
|
335
297
|
sms_phone:
|
336
298
|
invalid: Telefon numarası geçersiz veya yetki bekleniyor. Lütfen yetkilerinizi kontrol edin.
|
337
299
|
initiatives:
|
@@ -360,11 +322,6 @@ tr:
|
|
360
322
|
initiatives:
|
361
323
|
closed_initiatives_warning: Şu anda açık girişim yok, ancak burada listelenen tüm kapalı girişimleri bulabilirsiniz.
|
362
324
|
no_initiatives_warning: Arama kriterlerinizle eşleşen hiçbir girişim yok.
|
363
|
-
interactions:
|
364
|
-
comments_count:
|
365
|
-
count:
|
366
|
-
one: Yorum
|
367
|
-
other: Yorumlar
|
368
325
|
orders:
|
369
326
|
label: 'Girişimleri şuna göre sırala:'
|
370
327
|
most_commented: En çok yorum yapılan
|
@@ -429,7 +386,6 @@ tr:
|
|
429
386
|
show:
|
430
387
|
badge_name:
|
431
388
|
accepted: Yeterince imza
|
432
|
-
created: Oluşturuldu
|
433
389
|
discarded: Yok sayıldı
|
434
390
|
rejected: Yeterince imza yok
|
435
391
|
validating: Teknik doğrulama
|
@@ -443,20 +399,11 @@ tr:
|
|
443
399
|
initiatives_type:
|
444
400
|
actions:
|
445
401
|
title: Eylemler
|
446
|
-
vote: İmza
|
447
402
|
layouts:
|
448
403
|
decidim:
|
449
404
|
initiative_creation_header:
|
450
405
|
fill_data: Oluştur
|
451
|
-
finish: Bitiş
|
452
|
-
promotal_committee: Tanıtım komitesi
|
453
406
|
select_initiative_type: Seç
|
454
|
-
initiative_signature_creation_header:
|
455
|
-
fill_personal_data: Verilerinizi tamamlayın
|
456
|
-
finish: Bitiş
|
457
|
-
sms_code: SMS kodu doğrulama
|
458
|
-
sms_phone_number: Cep telefonu numarası
|
459
|
-
title: İşaret %{initiative_title}
|
460
407
|
initiatives:
|
461
408
|
no_initiatives_yet:
|
462
409
|
no_initiatives_yet: Henüz girişim yok!
|
data/config/locales/uk.yml
CHANGED
@@ -3,7 +3,6 @@ uk:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Автор
|
7
6
|
description: Опис
|
8
7
|
offline_votes: Підтримка на особистих зустрічах
|
9
8
|
scope_id: Обсяг
|
@@ -127,7 +126,6 @@ uk:
|
|
127
126
|
unpublish: "%{user_name} відкинув почин %{resource_name}"
|
128
127
|
update: "%{user_name} оновив почин %{resource_name}"
|
129
128
|
admin_states:
|
130
|
-
created: Створені
|
131
129
|
discarded: Відкинуті
|
132
130
|
validating: Технічна перевірка
|
133
131
|
application_helper:
|
@@ -144,39 +142,21 @@ uk:
|
|
144
142
|
name: Висвітлені почини
|
145
143
|
create_initiative:
|
146
144
|
fill_data:
|
147
|
-
back: Повернутись
|
148
145
|
continue: Продовжити
|
149
|
-
more_information: "(Додаткові відомості)"
|
150
146
|
select_scope: Оберіть обсяг
|
151
147
|
finish:
|
152
148
|
back: Повернутись
|
153
|
-
back_to_initiatives: Повернутися до починів
|
154
|
-
go_to_my_initiatives: Перейти до моїх починів
|
155
|
-
more_information: "(Додаткові відомості)"
|
156
149
|
previous_form:
|
157
150
|
back: Повернутись
|
158
|
-
continue: Продовжити
|
159
|
-
promotal_committee:
|
160
|
-
more_information: "(Додаткові відомості)"
|
161
151
|
select_initiative_type:
|
162
152
|
back: Повернутись
|
163
153
|
more_information: (Додаткові відомості)
|
164
|
-
share_committee_link:
|
165
|
-
invite_to_committee_help: Посилання для запрошення людей, які увійдуть в робочий гурт з просування
|
166
154
|
events:
|
167
155
|
create_initiative_event:
|
168
156
|
email_intro: "%{author_name} %{author_nickname}, за яким ви стежите, зробив новий почин. Прочитайте його та зробіть свій внесок:"
|
169
157
|
email_outro: Ви отримали це сповіщення, тому що ви стежите за %{author_nickname}. Ви можете відписатися від цих сповіщень, перейшовши за наведеним вище посиланням.
|
170
158
|
email_subject: Новий почин, започаткований %{author_nickname}
|
171
159
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> створив почин <a href="%{resource_path}">%{resource_title}</a>.
|
172
|
-
endorse_initiative_event:
|
173
|
-
email_intro: "%{author_name} %{author_nickname}, за яким ви стежите, підтримав наступний почин. Чи не бажаєте ви зробити свій внесок у розмову:"
|
174
|
-
email_outro: Ви отримали це сповіщення, тому що ви стежите за %{author_nickname}. Ви можете відписатися від цих сповіщень, перейшовши за наведеним вище посиланням.
|
175
|
-
email_subject: '%{author_nickname} підтримав почин'
|
176
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> підтримав почин <a href="%{resource_path}">%{resource_title}</a>.
|
177
|
-
initiative_signatures:
|
178
|
-
fill_personal_data:
|
179
|
-
continue: Продовжити
|
180
160
|
initiative_votes:
|
181
161
|
create:
|
182
162
|
error: При підписанні цього почину сталися помилки.
|
@@ -242,15 +222,10 @@ uk:
|
|
242
222
|
expired: Строк дії яких закінчився
|
243
223
|
menu:
|
244
224
|
initiatives: Почини
|
245
|
-
resources:
|
246
|
-
initiatives_type:
|
247
|
-
actions:
|
248
|
-
vote: Підписати
|
249
225
|
layouts:
|
250
226
|
decidim:
|
251
227
|
initiative_creation_header:
|
252
228
|
fill_data: Внести
|
253
|
-
promotal_committee: Робочий гурт з просування
|
254
229
|
select_initiative_type: Обрати
|
255
230
|
initiatives:
|
256
231
|
no_initiatives_yet:
|
data/config/locales/zh-CN.yml
CHANGED
@@ -3,7 +3,6 @@ zh-CN:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: 作者
|
7
6
|
description: 描述
|
8
7
|
offline_votes: 本人签名
|
9
8
|
offline_votes_for_scope: '%{scope_name} 的本人签名'
|
@@ -27,7 +26,6 @@ zh-CN:
|
|
27
26
|
collect_user_extra_fields: 在签名时收集参与者个人数据
|
28
27
|
custom_signature_end_date_enabled: 允许作者选择签名收集期的结束
|
29
28
|
description: 描述
|
30
|
-
document_number_authorization_handler: 验证签名上的文档编号的授权
|
31
29
|
extra_fields_legal_information: 关于收集个人数据的法律信息
|
32
30
|
minimum_committee_members: 委员会成员的最低人数
|
33
31
|
online_signature_enabled: 启用在线签名
|
@@ -70,14 +68,11 @@ zh-CN:
|
|
70
68
|
label: 状态
|
71
69
|
values:
|
72
70
|
accepted: 足够的签名
|
73
|
-
created: 已创建
|
74
71
|
discarded: 丢弃的
|
75
72
|
rejected: 签名不足
|
76
73
|
validating: 技术验证
|
77
74
|
type_id_eq:
|
78
75
|
label: 类型
|
79
|
-
search_placeholder:
|
80
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: 按标题、描述、ID或作者名称搜索 %{collection}。
|
81
76
|
menu:
|
82
77
|
information: 信息
|
83
78
|
initiatives: 倡议
|
@@ -218,7 +213,6 @@ zh-CN:
|
|
218
213
|
edit:
|
219
214
|
update: 更新
|
220
215
|
form:
|
221
|
-
authorizations: 授权设置
|
222
216
|
options: 备选方案
|
223
217
|
initiative_type_scopes:
|
224
218
|
title: 倡议类型的范围
|
@@ -233,7 +227,6 @@ zh-CN:
|
|
233
227
|
update: "%{user_name} 更新了 %{resource_name} 倡议"
|
234
228
|
admin_states:
|
235
229
|
accepted: 足够的签名
|
236
|
-
created: 已创建
|
237
230
|
discarded: 丢弃的
|
238
231
|
rejected: 签名不足
|
239
232
|
validating: 技术验证
|
@@ -257,54 +250,30 @@ zh-CN:
|
|
257
250
|
name: B. 重点倡议
|
258
251
|
create_initiative:
|
259
252
|
fill_data:
|
260
|
-
back: 后退
|
261
253
|
continue: 继续
|
262
|
-
more_information: "(更多信息)"
|
263
254
|
select_area: 选择区域
|
264
255
|
select_scope: 选择范围
|
265
256
|
finish:
|
266
257
|
back: 后退
|
267
|
-
back_to_initiatives: 回到倡议
|
268
|
-
go_to_my_initiatives: 转到我的倡议
|
269
|
-
more_information: "(更多信息)"
|
270
258
|
previous_form:
|
271
259
|
back: 后退
|
272
|
-
continue: 继续
|
273
|
-
promotal_committee:
|
274
|
-
more_information: "(更多信息)"
|
275
260
|
select_initiative_type:
|
276
261
|
back: 后退
|
277
262
|
choose_html: 我想要创建 <strong>%{title}</strong>
|
278
263
|
more_information: (更多信息)
|
279
264
|
select: 我想促进这项倡议
|
280
|
-
share_committee_link:
|
281
|
-
invite_to_committee_help: 邀请将成为促进委员会成员的人的链接
|
282
265
|
events:
|
283
266
|
create_initiative_event:
|
284
267
|
email_intro: "%{author_name} %{author_nickname},您正在关注这个问题,已经创建了一个新的倡议,查看它并做出贡献:"
|
285
268
|
email_outro: 您收到此通知是因为您正在关注 %{author_nickname}。您可以停止收到跟随上一个链接的通知。
|
286
269
|
email_subject: '%{author_nickname} 的新举措'
|
287
270
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> 倡议是由 <a href="%{author_path}">%{author_name} %{author_nickname}</a> 创建的。
|
288
|
-
endorse_initiative_event:
|
289
|
-
email_intro: "%{author_name} %{author_nickname},您正在关注这个问题,已经批准了以下倡议,也许您想要为对话做出贡献:"
|
290
|
-
email_outro: 您收到此通知是因为您正在关注 %{author_nickname}。您可以停止收到跟随上一个链接的通知。
|
291
|
-
email_subject: '%{author_nickname} 认可的倡议'
|
292
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> 倡议已被 <a href="%{author_path}">%{author_name} %{author_nickname}</a> 认可。
|
293
271
|
initiative_signatures:
|
294
|
-
fill_personal_data:
|
295
|
-
continue: 继续
|
296
272
|
finish:
|
297
273
|
back_to_initiative: 回到倡议
|
298
|
-
sms_code:
|
299
|
-
continue: 检查代码并继续
|
300
|
-
help: 检查手机收到的短信
|
301
|
-
sms_phone_number:
|
302
|
-
continue: 给我发送短信
|
303
274
|
initiative_votes:
|
304
275
|
create:
|
305
276
|
error: 在签署该倡议时遇到了问题。
|
306
|
-
personal_data:
|
307
|
-
invalid: 个人资料与批准数据不一致。
|
308
277
|
sms_phone:
|
309
278
|
invalid: 电话号码无效或正在等待授权。请检查您的授权。
|
310
279
|
initiatives:
|
@@ -327,10 +296,6 @@ zh-CN:
|
|
327
296
|
initiatives:
|
328
297
|
closed_initiatives_warning: 目前没有开放的倡议,但在这里你可以找到列出的所有已关闭的倡议。
|
329
298
|
no_initiatives_warning: 没有符合您搜索条件的倡议。
|
330
|
-
interactions:
|
331
|
-
comments_count:
|
332
|
-
count:
|
333
|
-
other: 评论
|
334
299
|
orders:
|
335
300
|
label: '对倡议进行排序:'
|
336
301
|
most_commented: 最多评论
|
@@ -370,7 +335,6 @@ zh-CN:
|
|
370
335
|
show:
|
371
336
|
badge_name:
|
372
337
|
accepted: 足够的签名
|
373
|
-
created: 已创建
|
374
338
|
discarded: 丢弃的
|
375
339
|
rejected: 签名不足
|
376
340
|
validating: 技术验证
|
@@ -384,20 +348,11 @@ zh-CN:
|
|
384
348
|
initiatives_type:
|
385
349
|
actions:
|
386
350
|
title: 行动
|
387
|
-
vote: 签名
|
388
351
|
layouts:
|
389
352
|
decidim:
|
390
353
|
initiative_creation_header:
|
391
354
|
fill_data: 创建
|
392
|
-
finish: 完成
|
393
|
-
promotal_committee: 宣传委员会
|
394
355
|
select_initiative_type: 选择
|
395
|
-
initiative_signature_creation_header:
|
396
|
-
fill_personal_data: 完成您的数据
|
397
|
-
finish: 完成
|
398
|
-
sms_code: 短信代码验证
|
399
|
-
sms_phone_number: 手机号码
|
400
|
-
title: 签名 %{initiative_title}
|
401
356
|
initiatives:
|
402
357
|
no_initiatives_yet:
|
403
358
|
no_initiatives_yet: 还没有倡议!
|