decidim-proposals 0.26.9 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +1 -1
- data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +9 -1
- data/app/cells/decidim/proposals/proposal_m_cell.rb +6 -8
- data/app/commands/decidim/proposals/accept_access_to_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/admin/answer_proposal.rb +1 -1
- data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +1 -1
- data/app/commands/decidim/proposals/admin/create_proposal.rb +10 -7
- data/app/commands/decidim/proposals/admin/create_proposal_note.rb +2 -2
- data/app/commands/decidim/proposals/admin/discard_participatory_text.rb +1 -1
- data/app/commands/decidim/proposals/admin/import_participatory_text.rb +1 -1
- data/app/commands/decidim/proposals/admin/import_proposals.rb +2 -5
- data/app/commands/decidim/proposals/admin/merge_proposals.rb +1 -1
- data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +1 -3
- data/app/commands/decidim/proposals/admin/publish_answers.rb +1 -1
- data/app/commands/decidim/proposals/admin/split_proposals.rb +1 -1
- data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +1 -1
- data/app/commands/decidim/proposals/admin/update_participatory_text.rb +1 -1
- data/app/commands/decidim/proposals/admin/update_proposal.rb +8 -2
- data/app/commands/decidim/proposals/admin/update_proposal_category.rb +5 -3
- data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +3 -3
- data/app/commands/decidim/proposals/create_collaborative_draft.rb +5 -5
- data/app/commands/decidim/proposals/create_proposal.rb +1 -1
- data/app/commands/decidim/proposals/destroy_proposal.rb +1 -1
- data/app/commands/decidim/proposals/publish_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/publish_proposal.rb +1 -1
- data/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/request_access_to_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/unvote_proposal.rb +1 -1
- data/app/commands/decidim/proposals/update_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/update_proposal.rb +8 -2
- data/app/commands/decidim/proposals/vote_proposal.rb +1 -1
- data/app/commands/decidim/proposals/withdraw_collaborative_draft.rb +1 -1
- data/app/commands/decidim/proposals/withdraw_proposal.rb +1 -1
- data/app/controllers/concerns/decidim/proposals/orderable.rb +7 -5
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +7 -7
- data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +10 -10
- data/app/controllers/decidim/proposals/proposal_votes_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposals_controller.rb +25 -18
- data/app/events/decidim/proposals/publish_proposal_event.rb +0 -8
- data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +4 -4
- data/app/forms/decidim/proposals/admin/proposal_base_form.rb +4 -4
- data/app/forms/decidim/proposals/admin/proposal_form.rb +2 -0
- data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +2 -2
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +1 -1
- data/app/forms/decidim/proposals/proposal_form.rb +11 -4
- data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +3 -0
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +4 -0
- data/app/helpers/decidim/proposals/application_helper.rb +4 -17
- data/app/helpers/decidim/proposals/proposal_cells_helper.rb +1 -3
- data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +7 -7
- data/app/helpers/decidim/proposals/proposals_helper.rb +1 -1
- data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +1 -1
- data/app/models/decidim/proposals/collaborative_draft.rb +10 -0
- data/app/models/decidim/proposals/collaborative_draft_collaborator_request.rb +0 -2
- data/app/models/decidim/proposals/proposal.rb +47 -8
- data/app/queries/decidim/proposals/filtered_proposals.rb +1 -1
- data/app/queries/decidim/proposals/similar_proposals.rb +1 -1
- data/app/services/decidim/proposals/proposal_search.rb +16 -71
- data/app/validators/proposal_length_validator.rb +2 -5
- data/app/views/decidim/proposals/admin/participatory_texts/_article-preview.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/edit.html.erb +0 -1
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +0 -1
- data/app/views/decidim/proposals/admin/proposals/new.html.erb +0 -1
- data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/show.html.erb +0 -1
- data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +26 -0
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +9 -17
- data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +4 -4
- data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +1 -1
- data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +3 -1
- data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +3 -1
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +13 -36
- data/app/views/decidim/proposals/proposals/_filters.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/_linked_proposals.html.erb +1 -2
- data/app/views/decidim/proposals/proposals/_proposals.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/complete.html.erb +3 -1
- data/app/views/decidim/proposals/proposals/edit.html.erb +3 -1
- data/app/views/decidim/proposals/proposals/edit_draft.html.erb +3 -1
- data/app/views/decidim/proposals/proposals/new.html.erb +3 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -262
- data/config/locales/bg.yml +1 -19
- data/config/locales/ca.yml +19 -31
- data/config/locales/cs.yml +34 -46
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +10 -107
- data/config/locales/el.yml +5 -146
- data/config/locales/en.yml +12 -25
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +20 -32
- data/config/locales/es-PY.yml +20 -32
- data/config/locales/es.yml +15 -27
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +283 -343
- data/config/locales/fi-plain.yml +17 -28
- data/config/locales/fi.yml +21 -32
- data/config/locales/fr-CA.yml +19 -32
- data/config/locales/fr.yml +31 -44
- data/config/locales/ga-IE.yml +1 -2
- data/config/locales/gl.yml +16 -13
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +13 -64
- data/config/locales/id-ID.yml +5 -19
- data/config/locales/is-IS.yml +8 -17
- data/config/locales/it.yml +12 -18
- data/config/locales/ja.yml +67 -79
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +1 -0
- data/config/locales/lt.yml +1 -1007
- data/config/locales/lv.yml +5 -17
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +15 -20
- data/config/locales/no.yml +6 -11
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +5 -28
- data/config/locales/pt-BR.yml +6 -33
- data/config/locales/pt.yml +6 -13
- data/config/locales/ro-RO.yml +9 -9
- data/config/locales/ru.yml +8 -16
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +6 -18
- data/config/locales/sl.yml +4 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -2
- data/config/locales/sv.yml +12 -12
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +7 -14
- data/config/locales/uk.yml +8 -16
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +5 -16
- data/config/locales/zh-TW.yml +1 -964
- data/db/migrate/20180529110230_move_authorships_to_coauthorships.rb +1 -0
- data/db/migrate/20181003074440_fix_user_groups_ids_in_proposals_endorsements.rb +2 -9
- data/db/migrate/20200708091228_move_proposals_fields_to_i18n.rb +18 -28
- data/db/migrate/20201002085508_fix_proposals_data.rb +13 -25
- data/lib/decidim/proposals/component.rb +25 -21
- data/lib/decidim/proposals/engine.rb +0 -6
- data/lib/decidim/proposals/import/proposal_answer_creator.rb +4 -10
- data/lib/decidim/proposals/proposal_serializer.rb +1 -9
- data/lib/decidim/proposals/test/factories.rb +1 -1
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +25 -52
- data/app/services/decidim/proposals/collaborative_draft_search.rb +0 -59
- data/app/views/decidim/proposals/admin/proposals/_js-callout.html.erb +0 -6
- data/app/views/decidim/proposals/admin/proposals/update_category.js.erb +0 -26
- data/app/views/decidim/proposals/admin/proposals/update_scope.js.erb +0 -27
- data/config/environment.rb +0 -3
- data/config/locales/fa-IR.yml +0 -1
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/ka-GE.yml +0 -1
- data/config/locales/kaa.yml +0 -1
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
- data/config/locales/sq-AL.yml +0 -1
- data/config/locales/th-TH.yml +0 -1
- data/lib/tasks/proposals/upgrade/decdim_proposal_upgrade_tasks.rake +0 -34
data/config/locales/lv.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
lv:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -36,10 +37,6 @@ lv:
|
|
36
37
|
valuator_role_id: Vērtētāja vārds
|
37
38
|
errors:
|
38
39
|
models:
|
39
|
-
participatory_text:
|
40
|
-
attributes:
|
41
|
-
document:
|
42
|
-
invalid_document_type: 'Nederīgs dokumenta tips. Pieņemtie formāti ir: %{valid_mime_types}'
|
43
40
|
proposal:
|
44
41
|
attributes:
|
45
42
|
add_documents:
|
@@ -84,10 +81,6 @@ lv:
|
|
84
81
|
admin:
|
85
82
|
filters:
|
86
83
|
proposals:
|
87
|
-
state_null:
|
88
|
-
label: Stāvoklis
|
89
|
-
values:
|
90
|
-
'true': Nav atbildēts
|
91
84
|
valuator_role_ids_has:
|
92
85
|
label: Piešķirts vērtētājam
|
93
86
|
search_placeholder:
|
@@ -230,6 +223,7 @@ lv:
|
|
230
223
|
affected_user:
|
231
224
|
email_intro: 'Jūsu priekšlikums "%{resource_title}" tika noraidīts. Jūs varat izlasīt atbildi šajā lapā:'
|
232
225
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat "%{resource_title}" autors.
|
226
|
+
email_subject: Jūsu priekšlikums tika noraidīts
|
233
227
|
notification_title: Jūsu priekšlikums <a href="%{resource_path}">%{resource_title}</a> tika noraidīts.
|
234
228
|
follower:
|
235
229
|
email_intro: 'Priekšlikums "%{resource_title}" tika noraidīts. Jūs varat izlasīt atbildi šajā lapā:'
|
@@ -317,9 +311,6 @@ lv:
|
|
317
311
|
preview: Priekšskatīt
|
318
312
|
exports:
|
319
313
|
proposals: Priekšlikumi
|
320
|
-
imports:
|
321
|
-
title:
|
322
|
-
proposals: Importēt priekšlikumus
|
323
314
|
models:
|
324
315
|
proposal:
|
325
316
|
name: Priekšlikums
|
@@ -456,7 +447,6 @@ lv:
|
|
456
447
|
no_components: Šajā līdzdalības telpā nav citu priekšlikumu komentāru, no kuriem importēt priekšlikumus.
|
457
448
|
select_component: Lūdzu, izvēlieties komponentu
|
458
449
|
select_states: Pārbaudiet importējamo priekšlikumu statusu
|
459
|
-
title: Importēt priekšlikumus
|
460
450
|
proposals_merges:
|
461
451
|
create:
|
462
452
|
success: Visi priekšlikumi ir veiksmīgi apvienoti vienā jaunā priekšlikumā.
|
@@ -492,7 +482,6 @@ lv:
|
|
492
482
|
all: Visi
|
493
483
|
filter_origin_values:
|
494
484
|
all: Visi
|
495
|
-
citizens: Pilsoņi
|
496
485
|
meetings: Sanāksmes
|
497
486
|
official: Oficiālā
|
498
487
|
user_groups: Grupas
|
@@ -533,6 +522,7 @@ lv:
|
|
533
522
|
one: "%{count} sadarbības projekts"
|
534
523
|
other: "%{count} sadarbības projekti"
|
535
524
|
create:
|
525
|
+
error: Šo sadarbības projektu izveides laikā radās problēma
|
536
526
|
success: Sadarbības projekts ir veiksmīgi izveidots.
|
537
527
|
edit:
|
538
528
|
attachment_legend: "(Pēc izvēles) Pievienojiet pielikumu"
|
@@ -607,9 +597,6 @@ lv:
|
|
607
597
|
info: Jūs veidojat <strong>sadarbības projektu</strong>.
|
608
598
|
wizard_header:
|
609
599
|
title: Izveidot jūsu sadarbības projektu
|
610
|
-
content_blocks:
|
611
|
-
highlighted_proposals:
|
612
|
-
proposals: Priekšlikumi
|
613
600
|
create:
|
614
601
|
error: Saglabājot priekšlikumu, radās problēma.
|
615
602
|
success: Priekšlikums ir veiksmīgi izveidots. Saglabāts kā projekts.
|
@@ -663,7 +650,6 @@ lv:
|
|
663
650
|
one: "%{count} priekšlikums"
|
664
651
|
other: "%{count} priekšlikumi"
|
665
652
|
edit:
|
666
|
-
add_documents: Dokumenti
|
667
653
|
attachment_legend: "(Pēc izvēles) Pievienojiet pielikumu"
|
668
654
|
back: Atpakaļ
|
669
655
|
select_a_category: Lūdzu, izvēlieties kategoriju
|
@@ -714,6 +700,8 @@ lv:
|
|
714
700
|
recent: Nesenie
|
715
701
|
with_more_authors: Ar vairākiem autoriem
|
716
702
|
participatory_texts:
|
703
|
+
index:
|
704
|
+
document_index: Dokumentu indekss
|
717
705
|
view_index:
|
718
706
|
see_index: Skatīt indeksu
|
719
707
|
preview:
|
data/config/locales/mt.yml
CHANGED
data/config/locales/nl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
nl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -42,10 +43,6 @@ nl:
|
|
42
43
|
valuator_role_id: Naam beoordelaar
|
43
44
|
errors:
|
44
45
|
models:
|
45
|
-
participatory_text:
|
46
|
-
attributes:
|
47
|
-
document:
|
48
|
-
invalid_document_type: 'Ongeldig documenttype. Aanvaarde formaten zijn: %{valid_mime_types}'
|
49
46
|
proposal:
|
50
47
|
attributes:
|
51
48
|
add_documents:
|
@@ -96,10 +93,6 @@ nl:
|
|
96
93
|
admin:
|
97
94
|
filters:
|
98
95
|
proposals:
|
99
|
-
state_null:
|
100
|
-
label: Staat
|
101
|
-
values:
|
102
|
-
'true': Nog niet beantwoord
|
103
96
|
valuator_role_ids_has:
|
104
97
|
label: Toegewezen aan beoordelaar
|
105
98
|
search_placeholder:
|
@@ -275,6 +268,7 @@ nl:
|
|
275
268
|
affected_user:
|
276
269
|
email_intro: 'Uw voorstel "%{resource_title}" is afgewezen. U kunt het antwoord op deze pagina lezen:'
|
277
270
|
email_outro: U hebt deze melding ontvangen omdat u een auteur bent van "%{resource_title}".
|
271
|
+
email_subject: Uw voorstel is afgewezen
|
278
272
|
notification_title: Uw voorstel <a href="%{resource_path}">%{resource_title}</a> is afgewezen.
|
279
273
|
follower:
|
280
274
|
email_intro: 'Het voorstel "%{resource_title}" is afgewezen. Je kan de reden hier lezen:'
|
@@ -367,6 +361,9 @@ nl:
|
|
367
361
|
proposal_comments: Reacties
|
368
362
|
proposals: Voorstellen
|
369
363
|
imports:
|
364
|
+
help:
|
365
|
+
answers: 'Het importdocument moet de volgende kolommen bevatten: id, status (geaccepteerd, evalueren, afgewezen), antwoord/nl (en andere talen ingeschakeld voor de organisatie).'
|
366
|
+
proposals: Het bestand moet kolomnamen title/nl en body/nl bevatten (of een andere locale die jij verkiest, bijv. title/fr en body/fr). Ook scope/id en category/id kolommen worden ondersteund.
|
370
367
|
label:
|
371
368
|
answers: Importeer antwoorden vanuit een bestand
|
372
369
|
proposals: Importeer voorstellen vanuit een bestand
|
@@ -379,7 +376,7 @@ nl:
|
|
379
376
|
other: voorstellen
|
380
377
|
title:
|
381
378
|
answers: Importeer antwoorden op voorstellen
|
382
|
-
proposals:
|
379
|
+
proposals: Importeer voorstellen
|
383
380
|
models:
|
384
381
|
proposal:
|
385
382
|
name: Voorstel
|
@@ -503,7 +500,7 @@ nl:
|
|
503
500
|
votes_ranking: Rangschikking door ondersteuning
|
504
501
|
update_category:
|
505
502
|
invalid: 'Deze voorstellen hadden al de %{subject_name} categorie: %{proposals}.'
|
506
|
-
select_a_category:
|
503
|
+
select_a_category: Gelieve een categorie te selecteren
|
507
504
|
select_a_proposal: Selecteer een voorstel
|
508
505
|
success: 'Voorstellen zijn succesvol bijgewerkt naar de %{subject_name} categorie: %{proposals}.'
|
509
506
|
update_scope:
|
@@ -520,7 +517,6 @@ nl:
|
|
520
517
|
no_components: Er zijn geen andere componenten van het voorstel in deze participatieruimte om de voorstellen in te voeren.
|
521
518
|
select_component: Selecteer een onderdeel
|
522
519
|
select_states: Controleer de status van de voorstellen om te importeren
|
523
|
-
title: Voorstellen importeren
|
524
520
|
proposals_merges:
|
525
521
|
create:
|
526
522
|
invalid: 'Er is een probleem opgetreden bij het samenvoegen van de geselecteerde voorstellen omdat:'
|
@@ -558,9 +554,9 @@ nl:
|
|
558
554
|
all: Alle
|
559
555
|
filter_origin_values:
|
560
556
|
all: Alle
|
561
|
-
citizens: Burgers
|
562
557
|
meetings: vergaderingen
|
563
558
|
official: Officieel
|
559
|
+
participants: Deelnemers
|
564
560
|
user_groups: Groepen
|
565
561
|
filter_scope_values:
|
566
562
|
all: Alle
|
@@ -598,6 +594,7 @@ nl:
|
|
598
594
|
one: "%{count} gezamenlijk ontwerp"
|
599
595
|
other: "%{count} gezamenlijke ontwerpen"
|
600
596
|
create:
|
597
|
+
error: Er is een probleem opgetreden bij het maken van dit gezamenlijk ontwerp
|
601
598
|
success: Gezamenlijk ontwerp met succes gemaakt.
|
602
599
|
edit:
|
603
600
|
attachment_legend: "(Optioneel) Voeg een bijlage toe"
|
@@ -712,7 +709,7 @@ nl:
|
|
712
709
|
buttons:
|
713
710
|
amend: Wijzigen
|
714
711
|
comment: Commentaar
|
715
|
-
comments:
|
712
|
+
comments: Commentaren
|
716
713
|
proposal_votes:
|
717
714
|
create:
|
718
715
|
error: Er zijn fouten geweest bij het stemmen van het voorstel.
|
@@ -732,12 +729,8 @@ nl:
|
|
732
729
|
description: De coördinaten worden bijgewerkt bij het klikken op de 'preview' knop. Het adres verandert echter niet.
|
733
730
|
instructions: Je kunt het punt op de kaart verplaatsen.
|
734
731
|
edit:
|
735
|
-
add_documents: Documenten
|
736
|
-
add_images: Bestand
|
737
732
|
attachment_legend: "(Optioneel) Voeg een bijlage toe"
|
738
733
|
back: Terug
|
739
|
-
delete_document: Document verwijderen
|
740
|
-
delete_image: Afbeelding verwijderen
|
741
734
|
gallery_legend: "(Optioneel) Voeg een afbeelding toe aan het voorstel"
|
742
735
|
select_a_category: Selecteer een categorie
|
743
736
|
send: Verzenden
|
@@ -761,10 +754,10 @@ nl:
|
|
761
754
|
type: Type
|
762
755
|
voted: Gestemd
|
763
756
|
filters_small_view:
|
764
|
-
close_modal:
|
757
|
+
close_modal: Dialoogvenster sluiten
|
765
758
|
filter: Filter
|
766
759
|
filter_by: Filteren op
|
767
|
-
unfold:
|
760
|
+
unfold: Uitvouwen
|
768
761
|
index:
|
769
762
|
click_here: Bekijk alle voorstellen
|
770
763
|
collaborative_drafts_list: Toegang tot samenwerkende concepten
|
@@ -789,6 +782,8 @@ nl:
|
|
789
782
|
recent: Meest recent
|
790
783
|
with_more_authors: Met meer auteurs
|
791
784
|
participatory_texts:
|
785
|
+
index:
|
786
|
+
document_index: Documentindex
|
792
787
|
view_index:
|
793
788
|
see_index: Zie index
|
794
789
|
preview:
|
@@ -865,7 +860,7 @@ nl:
|
|
865
860
|
vote_limit:
|
866
861
|
description: U kunt tot %{limit} voorstellen stemmen.
|
867
862
|
left: Resterend
|
868
|
-
votes:
|
863
|
+
votes: Stemmen
|
869
864
|
wizard_aside:
|
870
865
|
back: Terug
|
871
866
|
back_from_step_1: Terug naar voorstellen
|
data/config/locales/no.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
"no":
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -39,10 +40,6 @@
|
|
39
40
|
keep_authors: Behold originale forfattere
|
40
41
|
errors:
|
41
42
|
models:
|
42
|
-
participatory_text:
|
43
|
-
attributes:
|
44
|
-
document:
|
45
|
-
invalid_document_type: 'Ugyldig dokumenttype. Godkjente formater er: %{valid_mime_types}'
|
46
43
|
proposal:
|
47
44
|
attributes:
|
48
45
|
add_documents:
|
@@ -112,7 +109,7 @@
|
|
112
109
|
validating: Teknisk validering
|
113
110
|
withdrawn: Tilbakekalt
|
114
111
|
state_null:
|
115
|
-
label:
|
112
|
+
label: Tilstand
|
116
113
|
values:
|
117
114
|
'true': Ikke besvart
|
118
115
|
search_placeholder:
|
@@ -283,6 +280,7 @@
|
|
283
280
|
affected_user:
|
284
281
|
email_intro: 'Forslaget ditt "%{resource_title}" er blitt avvist. Du kan lese svaret på denne siden:'
|
285
282
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av "%{resource_title}".
|
283
|
+
email_subject: Forslaget ditt har blitt avvist
|
286
284
|
notification_title: Forslaget ditt <a href="%{resource_path}">%{resource_title}</a> har blitt avvist.
|
287
285
|
follower:
|
288
286
|
email_intro: 'Forslaget "%{resource_title}" er blitt avvist. Du kan lese svaret på denne siden:'
|
@@ -512,7 +510,6 @@
|
|
512
510
|
no_components: Det er ingen andre forslags komponetner i dette deltaker området å importere forslagene fra.
|
513
511
|
select_component: Velg en komponent
|
514
512
|
select_states: Sjekk statusen til forslagene som skal importeres
|
515
|
-
title: Importer forslag
|
516
513
|
proposals_merges:
|
517
514
|
create:
|
518
515
|
success: Slo sammen forslagene til et nytt ett.
|
@@ -537,7 +534,6 @@
|
|
537
534
|
all: Alle
|
538
535
|
filter_origin_values:
|
539
536
|
all: Alle
|
540
|
-
citizens: Borgere
|
541
537
|
meetings: Møter
|
542
538
|
official: Offisiell
|
543
539
|
user_groups: Grupper
|
@@ -577,6 +573,7 @@
|
|
577
573
|
one: "%{count} samarbeids utkast"
|
578
574
|
other: "%{count} samarbeids utkaster"
|
579
575
|
create:
|
576
|
+
error: Det oppsto et problem med å lage disse samarbeidsutkastene
|
580
577
|
success: Samarbeids utkast opprettet.
|
581
578
|
edit:
|
582
579
|
attachment_legend: "(Valgfritt) Legg til et vedlegg"
|
@@ -650,9 +647,6 @@
|
|
650
647
|
info: Du oppretter et <strong>samarbeids utkast</strong>.
|
651
648
|
wizard_header:
|
652
649
|
title: Opprett ditt samarbeids utkast
|
653
|
-
content_blocks:
|
654
|
-
highlighted_proposals:
|
655
|
-
proposals: Forslag
|
656
650
|
create:
|
657
651
|
error: Det oppstod et problem med å lagre forslaget.
|
658
652
|
success: Forslag opprettet. Lagret som et utkast.
|
@@ -703,7 +697,6 @@
|
|
703
697
|
one: "%{count} forslag"
|
704
698
|
other: "%{count} forslag"
|
705
699
|
edit:
|
706
|
-
add_documents: Dokumenter
|
707
700
|
attachment_legend: "(Valgfritt) Legg til et vedlegg"
|
708
701
|
back: Tilbake
|
709
702
|
select_a_category: Velg en kategori
|
@@ -755,6 +748,8 @@
|
|
755
748
|
recent: Nylig
|
756
749
|
with_more_authors: Med flere forfattere
|
757
750
|
participatory_texts:
|
751
|
+
index:
|
752
|
+
document_index: Dokument indeks
|
758
753
|
view_index:
|
759
754
|
see_index: Se index
|
760
755
|
placeholder:
|
data/config/locales/om-ET.yml
CHANGED
data/config/locales/pl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -41,10 +42,6 @@ pl:
|
|
41
42
|
valuator_role_id: Imię weryfikatora
|
42
43
|
errors:
|
43
44
|
models:
|
44
|
-
participatory_text:
|
45
|
-
attributes:
|
46
|
-
document:
|
47
|
-
invalid_document_type: 'Nieprawidłowy typ dokumentu. Akceptowane formaty to: %{valid_mime_types}'
|
48
45
|
proposal:
|
49
46
|
attributes:
|
50
47
|
add_documents:
|
@@ -56,14 +53,6 @@ pl:
|
|
56
53
|
identical: I tytuł nie może być identyczny
|
57
54
|
title:
|
58
55
|
identical: I treść nie może być identyczna
|
59
|
-
proposals_merge:
|
60
|
-
attributes:
|
61
|
-
base:
|
62
|
-
not_official: Nieoficjalne
|
63
|
-
proposals_split:
|
64
|
-
attributes:
|
65
|
-
base:
|
66
|
-
supported: Otrzymano wsparcie lub potwierdzenia
|
67
56
|
models:
|
68
57
|
decidim/proposals/accepted_proposal_event: Wniosek został przyjęty
|
69
58
|
decidim/proposals/admin/update_proposal_category_event: Zmieniono kategorię propozycji
|
@@ -190,8 +179,6 @@ pl:
|
|
190
179
|
answers_with_costs: Zezwalaj na koszty w odpowiedziach na propozycje
|
191
180
|
automatic_hashtags: Hashtagi dodane do wszystkich propozycji
|
192
181
|
comments_blocked: Komentarze zablokowane
|
193
|
-
default_sort_order_options:
|
194
|
-
most_voted: Najwiecej wsparć
|
195
182
|
endorsements_blocked: Rekomendacje zostały zablokowane
|
196
183
|
endorsements_enabled: Rekomendacje włączone
|
197
184
|
proposal_answering_enabled: Włączono odpowiadanie na propozycję
|
@@ -276,6 +263,7 @@ pl:
|
|
276
263
|
affected_user:
|
277
264
|
email_intro: 'Twoja propozycja "%{resource_title}" została odrzucona. Możesz przeczytać odpowiedź na tej stronie:'
|
278
265
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem "%{resource_title}".
|
266
|
+
email_subject: Twoja propozycja została odrzucona
|
279
267
|
notification_title: Twoja propozycja <a href="%{resource_path}">%{resource_title}</a> została odrzucona.
|
280
268
|
follower:
|
281
269
|
email_intro: 'Propozycja "%{resource_title}" została odrzucona. Możesz przeczytać odpowiedź na tej stronie:'
|
@@ -367,15 +355,6 @@ pl:
|
|
367
355
|
exports:
|
368
356
|
proposal_comments: Komentarze
|
369
357
|
proposals: Propozycje
|
370
|
-
imports:
|
371
|
-
resources:
|
372
|
-
answers:
|
373
|
-
one: odpowiedź na propozycję
|
374
|
-
few: odpowiedzi na propozycję
|
375
|
-
many: odpowiedzi na propozycję
|
376
|
-
other: odpowiedzi na propozycję
|
377
|
-
title:
|
378
|
-
proposals: Importuj propozycje
|
379
358
|
models:
|
380
359
|
proposal:
|
381
360
|
name: Propozycja
|
@@ -554,7 +533,6 @@ pl:
|
|
554
533
|
all: Wszystko
|
555
534
|
filter_origin_values:
|
556
535
|
all: Wszystko
|
557
|
-
citizens: Obywatele
|
558
536
|
meetings: Spotkania
|
559
537
|
official: Urzędnik
|
560
538
|
user_groups: Grupy użytkowników
|
@@ -596,6 +574,7 @@ pl:
|
|
596
574
|
many: "%{count} wspólne szkice"
|
597
575
|
other: "%{count} wspólne szkice"
|
598
576
|
create:
|
577
|
+
error: Podczas tworzenia wspólnych szkiców wystąpił błąd
|
599
578
|
success: Utworzono wspólny szkic.
|
600
579
|
edit:
|
601
580
|
attachment_legend: "(Opcjonalnie) Dodaj załącznik"
|
@@ -731,12 +710,8 @@ pl:
|
|
731
710
|
many: "%{count} propozycji"
|
732
711
|
other: "%{count} propozycji"
|
733
712
|
edit:
|
734
|
-
add_documents: Dokumenty
|
735
|
-
add_images: Plik
|
736
713
|
attachment_legend: "(Opcjonalnie) Dodaj załącznik"
|
737
714
|
back: Wróć
|
738
|
-
delete_document: Usuń dokument
|
739
|
-
delete_image: Usuń obraz
|
740
715
|
gallery_legend: "(Opcjonalnie) Dodaj obraz do karty propozycji"
|
741
716
|
select_a_category: Wybierz kategorię
|
742
717
|
send: Wyślij
|
@@ -787,6 +762,8 @@ pl:
|
|
787
762
|
recent: Najnowsze
|
788
763
|
with_more_authors: Z większą liczbą autorów
|
789
764
|
participatory_texts:
|
765
|
+
index:
|
766
|
+
document_index: Indeks dokumentu
|
790
767
|
view_index:
|
791
768
|
see_index: Zobacz indeks
|
792
769
|
placeholder:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
pt:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
4
5
|
collaborative_draft:
|
@@ -42,10 +43,6 @@ pt-BR:
|
|
42
43
|
valuator_role_id: Nome do Avaliador
|
43
44
|
errors:
|
44
45
|
models:
|
45
|
-
participatory_text:
|
46
|
-
attributes:
|
47
|
-
document:
|
48
|
-
invalid_document_type: 'Tipo de documento inválido. Formatos aceitos são: %{valid_mime_types}'
|
49
46
|
proposal:
|
50
47
|
attributes:
|
51
48
|
add_documents:
|
@@ -134,7 +131,7 @@ pt-BR:
|
|
134
131
|
collaborative_drafts_enabled: Rascunhos colaborativos ativados
|
135
132
|
comments_enabled: Comentários ativados
|
136
133
|
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
137
|
-
geocoding_enabled:
|
134
|
+
geocoding_enabled: Geocoding habilitado
|
138
135
|
minimum_votes_per_user: Mínimo de votos por usuário
|
139
136
|
new_proposal_body_template: Novo modelo de corpo da proposta
|
140
137
|
new_proposal_body_template_help: Você pode definir o texto pré-preenchido que as novas propostas terão
|
@@ -175,13 +172,10 @@ pt-BR:
|
|
175
172
|
answers_with_costs: Ativar custos na resposta da proposta
|
176
173
|
automatic_hashtags: Hashtags adicionados a todas as propostas
|
177
174
|
comments_blocked: Comentários bloqueados
|
178
|
-
creation_enabled: Os participantes podem criar propostas
|
179
|
-
creation_enabled_readonly: Essa configuração é desativada quando você ativa a funcionalidade de textos participativos. Para enviar propostas como texto participativo, clique no botão de textos participativos e siga as instruções.
|
180
175
|
endorsements_blocked: Endossos bloqueados
|
181
176
|
endorsements_enabled: Endossos habilitados
|
182
177
|
proposal_answering_enabled: Resposta de proposta ativada
|
183
178
|
publish_answers_immediately: Publicar respostas da proposta imediatamente
|
184
|
-
publish_answers_immediately_help_html: 'Lembre-se de que, se você responder qualquer proposta sem isto habilitado, será necessário publicá-las manualmente, selecionando-as e usando a ação para publicação. Para obter mais informações sobre como isso funciona, consulte a página de documentação de respostas de <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">proposta</a>.'
|
185
179
|
suggested_hashtags: Hashtags sugeridos aos usuários para novas propostas
|
186
180
|
votes_blocked: Votação desativada
|
187
181
|
votes_enabled: Votação habilitada
|
@@ -195,33 +189,21 @@ pt-BR:
|
|
195
189
|
email_subject: Alguém deixou uma nota na proposta %{resource_title}.
|
196
190
|
notification_title: Alguém deixou uma nota na proposta <a href="%{resource_path}">%{resource_title}</a>. Confira no <a href="%{admin_proposal_info_path}">painel de administração</a>
|
197
191
|
collaborative_draft_access_accepted:
|
198
|
-
email_intro: '%{requester_name} foi aceito para acessar como colaborador do rascunho colaborativo <a href="%{resource_url}">%{resource_title}</a>.'
|
199
|
-
email_outro: Você recebeu esta notificação porque é colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
200
192
|
email_subject: "%{requester_name} foi aceito para acessar como contribuidor %{resource_title}."
|
201
193
|
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> foi aceito <strong>para acessar como colaborador</strong> do projeto colaborativo <a href="%{resource_path}">%{resource_title}</a>.
|
202
194
|
collaborative_draft_access_rejected:
|
203
|
-
email_intro: '%{requester_name} foi rejeitado para acessar como colaborador do projeto colaborativo <a href="%{resource_url}">%{resource_title}</a>.'
|
204
|
-
email_outro: Você recebeu esta notificação porque é colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
205
195
|
email_subject: "%{requester_name} foi rejeitado para acessar como colaborador do %{resource_title} esboço colaborativo."
|
206
196
|
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> foi <strong>rejeitado para acessar como colaborador</strong> do projeto colaborativo <a href="%{resource_path}">%{resource_title}</a>.
|
207
197
|
collaborative_draft_access_requested:
|
208
|
-
email_intro: '%{requester_name} solicitou acesso como colaborador. Você pode <strong>aceitar ou rejeitar a solicitação</strong> da página do projeto colaborativo <a href="%{resource_url}">%{resource_title}</a>.'
|
209
|
-
email_outro: Você recebeu esta notificação porque é colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
210
198
|
email_subject: "%{requester_name} solicitou acesso para contribuir com %{resource_title}."
|
211
199
|
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> solicitou acesso para contribuir para o projeto de colaboração <a href="%{resource_path}">%{resource_title}</a> . Por favor, <strong>aceite ou rejeite o pedido</strong>.
|
212
200
|
collaborative_draft_access_requester_accepted:
|
213
|
-
email_intro: Você foi aceito para acessar como colaborador do projeto colaborativo <a href="%{resource_url}">%{resource_title}</a>.
|
214
|
-
email_outro: Você recebeu esta notificação porque pediu para se tornar um colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
215
201
|
email_subject: Você foi aceito como colaborador de %{resource_title}.
|
216
202
|
notification_title: Você foi aceito como <strong>para acessar como colaborador</strong> do projeto colaborativo <a href="%{resource_path}">%{resource_title}</a>.
|
217
203
|
collaborative_draft_access_requester_rejected:
|
218
|
-
email_intro: Você foi rejeitado para acessar como colaborador do projeto colaborativo <a href="%{resource_url}">%{resource_title}</a>.
|
219
|
-
email_outro: Você recebeu esta notificação porque pediu para se tornar um colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
220
204
|
email_subject: Você foi rejeitado como colaborador de %{resource_title}.
|
221
205
|
notification_title: Você foi <strong>rejeitado para acessar como colaborador</strong> do projeto colaborativo <a href="%{resource_path}">%{resource_title}</a>.
|
222
206
|
collaborative_draft_withdrawn:
|
223
|
-
email_intro: <a href="%{author_url}">%{author_name} %{author_nickname}</a> retirou o projeto de colaboração <a href="%{resource_url}">%{resource_title}</a>.
|
224
|
-
email_outro: Você recebeu esta notificação porque é colaborador de <a href="%{resource_url}">%{resource_title}</a>.
|
225
207
|
email_subject: "%{author_name} %{author_nickname} retirou o %{resource_title} rascunho colaborativo."
|
226
208
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>retirado</strong> o <a href="%{resource_path}">%{resource_title}</a> rascunho colaborativo.
|
227
209
|
creation_enabled:
|
@@ -270,8 +252,6 @@ pt-BR:
|
|
270
252
|
email_intro: A proposta "%{resource_title}" foi adicionada a "%{participatory_space_title}" que você está seguindo.
|
271
253
|
email_outro: Você recebeu esta notificação porque está seguindo "%{participatory_space_title}". Você pode deixar de segui-lo no link anterior.
|
272
254
|
email_subject: Nova proposta "%{resource_title}" adicionada a %{participatory_space_title}
|
273
|
-
notification_title: A proposta <a href="%{resource_path}">%{resource_title}</a> foi adicionada a %{participatory_space_title} por %{author}
|
274
|
-
notification_title_official: A proposta oficial <a href="%{resource_path}">%{resource_title}</a> foi adicionada à %{participatory_space_title}
|
275
255
|
proposal_rejected:
|
276
256
|
affected_user:
|
277
257
|
email_intro: 'Sua proposta "%{resource_title}" foi rejeitada. Você pode ler a resposta nesta página:'
|
@@ -368,9 +348,6 @@ pt-BR:
|
|
368
348
|
exports:
|
369
349
|
proposal_comments: Comentários
|
370
350
|
proposals: Propostas
|
371
|
-
imports:
|
372
|
-
title:
|
373
|
-
proposals: Importar propostas
|
374
351
|
models:
|
375
352
|
proposal:
|
376
353
|
name: Proposta
|
@@ -494,7 +471,7 @@ pt-BR:
|
|
494
471
|
votes_ranking: Classificação por votos
|
495
472
|
update_category:
|
496
473
|
invalid: 'Estas propostas já tinham a categoria %{subject_name}: %{proposals}.'
|
497
|
-
select_a_category:
|
474
|
+
select_a_category: Selecione uma categoria
|
498
475
|
select_a_proposal: Selecione uma proposta
|
499
476
|
success: 'Propostas atualizadas com sucesso para a categoria %{subject_name}: %{proposals}.'
|
500
477
|
update_scope:
|
@@ -547,7 +524,6 @@ pt-BR:
|
|
547
524
|
all: Todos
|
548
525
|
filter_origin_values:
|
549
526
|
all: Todos
|
550
|
-
citizens: Cidadãos
|
551
527
|
meetings: Reuniões
|
552
528
|
official: Oficial
|
553
529
|
user_groups: Grupos de usuários
|
@@ -587,6 +563,7 @@ pt-BR:
|
|
587
563
|
one: "%{count} rascunho colaborativo"
|
588
564
|
other: "%{count} rascunho colaborativo"
|
589
565
|
create:
|
566
|
+
error: Houve um problema ao criar esses rascunhos colaborativos
|
590
567
|
success: Rascunho colaborativo criado com sucesso.
|
591
568
|
edit:
|
592
569
|
attachment_legend: "(Opcional) Adicione um anexo"
|
@@ -721,12 +698,8 @@ pt-BR:
|
|
721
698
|
description: As coordenadas serão atualizadas quando clicar no botão 'visualizar'. No entanto, o endereço não muda.
|
722
699
|
instructions: Você pode mover o ponto no mapa.
|
723
700
|
edit:
|
724
|
-
add_documents: Documentos
|
725
|
-
add_images: Arquivo
|
726
701
|
attachment_legend: "(Opcional) Adicione um anexo"
|
727
702
|
back: Voltar
|
728
|
-
delete_document: Apagar Documento
|
729
|
-
delete_image: Excluir Imagem
|
730
703
|
gallery_legend: "(Opcional) Adicione uma imagem à carta da proposta"
|
731
704
|
select_a_category: Selecione uma categoria
|
732
705
|
send: Enviar
|
@@ -776,7 +749,7 @@ pt-BR:
|
|
776
749
|
with_more_authors: Com mais autores
|
777
750
|
participatory_texts:
|
778
751
|
index:
|
779
|
-
document_index: Índice de
|
752
|
+
document_index: Índice de documentos
|
780
753
|
view_index:
|
781
754
|
see_index: Veja o índice
|
782
755
|
placeholder:
|
data/config/locales/pt.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pt:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -42,10 +43,6 @@ pt:
|
|
42
43
|
valuator_role_id: Nome do avaliador
|
43
44
|
errors:
|
44
45
|
models:
|
45
|
-
participatory_text:
|
46
|
-
attributes:
|
47
|
-
document:
|
48
|
-
invalid_document_type: 'Tipo de documento inválido. Os formatos aceites são: %{valid_mime_types}'
|
49
46
|
proposal:
|
50
47
|
attributes:
|
51
48
|
add_documents:
|
@@ -291,6 +288,7 @@ pt:
|
|
291
288
|
affected_user:
|
292
289
|
email_intro: 'A sua proposta "%{resource_title}" foi rejeitada. Pode ler a resposta nesta página:'
|
293
290
|
email_outro: Recebeu esta notificação porque é um autor de "%{resource_title}".
|
291
|
+
email_subject: A sua proposta foi rejeitada
|
294
292
|
notification_title: A sua proposta <a href="%{resource_path}">%{resource_title}</a> foi rejeitada.
|
295
293
|
follower:
|
296
294
|
email_intro: 'A proposta "%{resource_title}" foi rejeitada. Pode ler a resposta nesta página:'
|
@@ -382,9 +380,6 @@ pt:
|
|
382
380
|
exports:
|
383
381
|
proposal_comments: Comentários
|
384
382
|
proposals: Propostas
|
385
|
-
imports:
|
386
|
-
title:
|
387
|
-
proposals: Importar propostas
|
388
383
|
models:
|
389
384
|
proposal:
|
390
385
|
name: Proposta
|
@@ -508,7 +503,7 @@ pt:
|
|
508
503
|
votes_ranking: Classificação por votos
|
509
504
|
update_category:
|
510
505
|
invalid: 'Estas propostas já possuíam a categoria %{subject_name}: %{proposals}.'
|
511
|
-
select_a_category: Por favor
|
506
|
+
select_a_category: Por favor selecione uma categoria
|
512
507
|
select_a_proposal: Por favor selecione uma proposta
|
513
508
|
success: 'Propostas atualizadas corretamente para a categoria %{subject_name}: %{proposals}.'
|
514
509
|
update_scope:
|
@@ -563,7 +558,6 @@ pt:
|
|
563
558
|
all: Todos
|
564
559
|
filter_origin_values:
|
565
560
|
all: Todos
|
566
|
-
citizens: Cidadãos
|
567
561
|
meetings: Reuniões
|
568
562
|
official: Oficial
|
569
563
|
user_groups: Grupos
|
@@ -603,6 +597,7 @@ pt:
|
|
603
597
|
one: "%{count} rascunho colaborativo"
|
604
598
|
other: "%{count} rascunhos colaborativos"
|
605
599
|
create:
|
600
|
+
error: Ocorreu um problema ao criar estes rascunhos colaborativos
|
606
601
|
success: Rascunho colaborativo criado corretamente.
|
607
602
|
edit:
|
608
603
|
attachment_legend: "(Opcional) Adicione um anexo"
|
@@ -737,12 +732,8 @@ pt:
|
|
737
732
|
description: As coordenadas serão actualizadas quando clicar no botão ‘pré-visualização’. No entanto, o endereço não será alterado.
|
738
733
|
instructions: Pode mover o ponto no mapa.
|
739
734
|
edit:
|
740
|
-
add_documents: Documentos
|
741
|
-
add_images: Ficheiro
|
742
735
|
attachment_legend: "(Opcional) Adicione um anexo"
|
743
736
|
back: Voltar
|
744
|
-
delete_document: Apagar Documento
|
745
|
-
delete_image: Apagar Imagem
|
746
737
|
gallery_legend: "(Opcional) Adicionar uma imagem ao cartão da proposta"
|
747
738
|
select_a_category: Por favor selecione uma categoria
|
748
739
|
send: Enviar
|
@@ -794,6 +785,8 @@ pt:
|
|
794
785
|
recent: Recente
|
795
786
|
with_more_authors: Com mais autores
|
796
787
|
participatory_texts:
|
788
|
+
index:
|
789
|
+
document_index: Índice de documentos
|
797
790
|
view_index:
|
798
791
|
see_index: Ver o índice
|
799
792
|
placeholder:
|