decidim-proposals 0.5.1 → 0.6.0
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/assets/images/decidim/proposals/icon.svg +3 -1
- data/app/forms/decidim/proposals/admin/proposal_form.rb +1 -1
- data/app/forms/decidim/proposals/proposal_form.rb +1 -1
- data/app/models/decidim/proposals/abilities/participatory_process_admin_ability.rb +2 -2
- data/app/models/decidim/proposals/abilities/participatory_process_moderator_ability.rb +1 -1
- data/app/models/decidim/proposals/proposal.rb +8 -15
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +7 -3
- data/app/views/decidim/proposals/proposals/_filters.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/new.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/show.html.erb +2 -1
- data/config/locales/ca.yml +8 -2
- data/config/locales/en.yml +3 -6
- data/config/locales/es.yml +8 -2
- data/config/locales/eu.yml +26 -9
- data/config/locales/fi.yml +32 -2
- data/config/locales/fr.yml +35 -15
- data/config/locales/it.yml +20 -2
- data/config/locales/nl.yml +160 -0
- data/config/locales/pl.yml +163 -0
- data/config/locales/uk.yml +171 -0
- data/db/migrate/20170307085300_migrate_proposal_reports_data_to_reports.rb +1 -1
- data/lib/decidim/proposals/feature.rb +19 -17
- data/lib/decidim/proposals/test/factories.rb +6 -6
- metadata +31 -17
- data/config/i18n-tasks.yml +0 -15
data/config/locales/fr.yml
CHANGED
@@ -18,12 +18,16 @@ fr:
|
|
18
18
|
name: Propositions
|
19
19
|
settings:
|
20
20
|
global:
|
21
|
+
announcement: Annonce
|
22
|
+
attachments_allowed: Autoriser les pièces jointes
|
21
23
|
comments_enabled: Commentaires activés
|
22
24
|
geocoding_enabled: Géocodage activé
|
25
|
+
new_proposal_help_text: Nouveau texte d'aide à la proposition
|
23
26
|
official_proposals_enabled: Propositions officielles activées
|
24
|
-
proposal_answering_enabled:
|
27
|
+
proposal_answering_enabled: Réponses aux propositions activées
|
25
28
|
vote_limit: Limite de vote
|
26
29
|
step:
|
30
|
+
announcement: Annonce
|
27
31
|
comments_blocked: Commentaires bloqués
|
28
32
|
creation_enabled: Module propositions activé
|
29
33
|
proposal_answering_enabled: '"Réponses aux propositions" activé'
|
@@ -38,14 +42,18 @@ fr:
|
|
38
42
|
admin:
|
39
43
|
actions:
|
40
44
|
preview: Aperçu
|
45
|
+
exports:
|
46
|
+
comments: Commentaires
|
47
|
+
proposals: Propositions
|
41
48
|
models:
|
42
49
|
proposal:
|
43
50
|
name: Proposition
|
44
51
|
proposal_answers:
|
45
52
|
edit:
|
46
|
-
accepted:
|
53
|
+
accepted: Retenues
|
47
54
|
answer_proposal: Répondre
|
48
|
-
|
55
|
+
evaluating: En cours d'évaluation
|
56
|
+
rejected: Refusé
|
49
57
|
title: Réponse à la proposition %{title}
|
50
58
|
proposals:
|
51
59
|
answer:
|
@@ -55,6 +63,7 @@ fr:
|
|
55
63
|
invalid: Il y a eu un problème lors de la création de cette proposition
|
56
64
|
success: Proposition créée avec succès
|
57
65
|
form:
|
66
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
58
67
|
select_a_category: Sélectionner une catégorie
|
59
68
|
index:
|
60
69
|
title: Propositions
|
@@ -62,9 +71,10 @@ fr:
|
|
62
71
|
create: Créer
|
63
72
|
title: Créer une proposition
|
64
73
|
answers:
|
65
|
-
accepted:
|
74
|
+
accepted: Retenue
|
75
|
+
evaluating: En cours d'évaluation
|
66
76
|
not_answered: Resté sans réponse
|
67
|
-
rejected:
|
77
|
+
rejected: Refusé
|
68
78
|
create:
|
69
79
|
error: Il y a eu des erreurs lors de la sauvegarde de la proposition.
|
70
80
|
success: Proposition créée avec succès.
|
@@ -72,11 +82,18 @@ fr:
|
|
72
82
|
proposal:
|
73
83
|
fields:
|
74
84
|
category: Catégorie
|
85
|
+
id: ID
|
75
86
|
official_proposal: Proposition officielle
|
76
87
|
scope: Zone d'application
|
77
|
-
state:
|
88
|
+
state: État
|
78
89
|
title: Titre
|
90
|
+
proposal_votes:
|
91
|
+
create:
|
92
|
+
error: Il y a eu des erreurs lors du vote de la proposition.
|
79
93
|
proposals:
|
94
|
+
author:
|
95
|
+
deleted: Utilisateur supprimé
|
96
|
+
verified_user_group: Organisation vérifiée
|
80
97
|
count:
|
81
98
|
proposals_count:
|
82
99
|
one: 1 proposition
|
@@ -84,17 +101,19 @@ fr:
|
|
84
101
|
filters:
|
85
102
|
accepted: Retenues
|
86
103
|
activity: Activité
|
87
|
-
all:
|
104
|
+
all: Tous
|
88
105
|
category: Catégorie
|
89
106
|
category_prompt: Sélectionner une catégorie
|
90
|
-
citizenship:
|
91
|
-
|
92
|
-
|
93
|
-
|
107
|
+
citizenship: Citoyens
|
108
|
+
evaluating: En cours d'évaluation
|
109
|
+
official: Elu-e-s
|
110
|
+
origin: Auteurs
|
111
|
+
rejected: Refusé
|
94
112
|
related_to: Liée à
|
95
|
-
|
113
|
+
scope_prompt: Sélectionnez une portée
|
114
|
+
scopes: Zone d'application
|
96
115
|
search: Rechercher
|
97
|
-
state:
|
116
|
+
state: Etat
|
98
117
|
voted: Votées
|
99
118
|
filters_small_view:
|
100
119
|
close_modal: Fermer la fenêtre de dialogue
|
@@ -109,6 +128,7 @@ fr:
|
|
109
128
|
one: <span class="card--list__data__number">1</span>vote
|
110
129
|
other: <span class="card--list__data__number">%{count}</span>votes
|
111
130
|
new:
|
131
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
112
132
|
back: Retour
|
113
133
|
select_a_category: Veuillez sélectionner une catégorie
|
114
134
|
send: Publier
|
@@ -118,6 +138,8 @@ fr:
|
|
118
138
|
most_voted: Les plus votées
|
119
139
|
random: Aléatoire
|
120
140
|
recent: Les plus récents
|
141
|
+
proposal:
|
142
|
+
view_proposal: Voir la proposition
|
121
143
|
show:
|
122
144
|
proposal_accepted_reason: 'Cette proposition a été retenue parce que :'
|
123
145
|
proposal_rejected_reason: 'Cette proposition a été refusée parce que:'
|
@@ -141,5 +163,3 @@ fr:
|
|
141
163
|
included_proposals:
|
142
164
|
proposal_projects: 'Proposition figurant dans ces projets :'
|
143
165
|
proposal_results: 'Proposition figurant dans ces résultats :'
|
144
|
-
proposals_from_meeting:
|
145
|
-
proposal_meetings: Rencontres connexes
|
data/config/locales/it.yml
CHANGED
@@ -18,12 +18,16 @@ it:
|
|
18
18
|
name: Proposte
|
19
19
|
settings:
|
20
20
|
global:
|
21
|
+
announcement: Annuncio
|
22
|
+
attachments_allowed: Consenti gli allegati
|
21
23
|
comments_enabled: Commenti abilitati
|
22
24
|
geocoding_enabled: Geocoding abilitato
|
25
|
+
new_proposal_help_text: Nuovo testo di aiuto per la proposta
|
23
26
|
official_proposals_enabled: Proposte ufficiali abilitate
|
24
27
|
proposal_answering_enabled: Risposta Proposte abilitata
|
25
28
|
vote_limit: Numero max di proposte votabili
|
26
29
|
step:
|
30
|
+
announcement: Annuncio
|
27
31
|
comments_blocked: Commenti bloccati
|
28
32
|
creation_enabled: Creazione delle Proposte abilitata
|
29
33
|
proposal_answering_enabled: Risposta Proposte abilitata
|
@@ -39,6 +43,7 @@ it:
|
|
39
43
|
actions:
|
40
44
|
preview: Anteprima
|
41
45
|
exports:
|
46
|
+
comments: Commenti
|
42
47
|
proposals: Proposte
|
43
48
|
models:
|
44
49
|
proposal:
|
@@ -47,6 +52,7 @@ it:
|
|
47
52
|
edit:
|
48
53
|
accepted: Accettata
|
49
54
|
answer_proposal: Risposta
|
55
|
+
evaluating: Valutare
|
50
56
|
rejected: Rifiutata
|
51
57
|
title: Risposta per la proposta %{title}
|
52
58
|
proposals:
|
@@ -57,6 +63,7 @@ it:
|
|
57
63
|
invalid: Sono stati riscontrati dei problemi durante la creazione di questa proposta
|
58
64
|
success: OK, proposta creata.
|
59
65
|
form:
|
66
|
+
attachment_legend: "(Facoltativo) Aggiungere un allegato"
|
60
67
|
select_a_category: Scegli una categoria
|
61
68
|
index:
|
62
69
|
title: Proposte
|
@@ -65,6 +72,7 @@ it:
|
|
65
72
|
title: Crea una proposta
|
66
73
|
answers:
|
67
74
|
accepted: Accettata
|
75
|
+
evaluating: Valutare
|
68
76
|
not_answered: Non risposto
|
69
77
|
rejected: Rifiutata
|
70
78
|
create:
|
@@ -74,11 +82,18 @@ it:
|
|
74
82
|
proposal:
|
75
83
|
fields:
|
76
84
|
category: Categoria
|
85
|
+
id: ID
|
77
86
|
official_proposal: Proposta ufficiale
|
78
87
|
scope: Visibilità
|
79
88
|
state: Stato
|
80
89
|
title: Titolo
|
90
|
+
proposal_votes:
|
91
|
+
create:
|
92
|
+
error: Ci sono stati errori durante la votazione della proposta.
|
81
93
|
proposals:
|
94
|
+
author:
|
95
|
+
deleted: Utente cancellato
|
96
|
+
verified_user_group: Organizzazione verificata
|
82
97
|
count:
|
83
98
|
proposals_count:
|
84
99
|
one: 1 proposta
|
@@ -86,13 +101,16 @@ it:
|
|
86
101
|
filters:
|
87
102
|
accepted: Accettata
|
88
103
|
activity: Attività
|
104
|
+
all: Tutto
|
89
105
|
category: Categoria
|
90
106
|
category_prompt: Scegli una categoria
|
91
107
|
citizenship: Cittadinanza
|
108
|
+
evaluating: Valutare
|
92
109
|
official: Ufficiale
|
93
110
|
origin: Origine
|
94
111
|
rejected: Rifiutata
|
95
112
|
related_to: Associata a
|
113
|
+
scope_prompt: Selezionare un ambito
|
96
114
|
scopes: Visibilità
|
97
115
|
search: Cerca
|
98
116
|
state: Stato
|
@@ -110,6 +128,7 @@ it:
|
|
110
128
|
one: <span class="card--list__data__number">1</span>voto
|
111
129
|
other: <span class="card--list__data__number">%{count}</span>voti
|
112
130
|
new:
|
131
|
+
attachment_legend: "(Facoltativo) Aggiungere un allegato"
|
113
132
|
back: Indietro
|
114
133
|
select_a_category: Scegli una categoria
|
115
134
|
send: Invia
|
@@ -124,6 +143,7 @@ it:
|
|
124
143
|
show:
|
125
144
|
proposal_accepted_reason: 'Questa proposta è stata accettata perché:'
|
126
145
|
proposal_rejected_reason: 'Questa proposta è stata rifiutata perché:'
|
146
|
+
report: Report
|
127
147
|
vote_button:
|
128
148
|
already_voted: Già votata
|
129
149
|
no_votes_remaining: Sono finite le votazioni possibili
|
@@ -143,5 +163,3 @@ it:
|
|
143
163
|
included_proposals:
|
144
164
|
proposal_projects: 'Le proposte compaiono nei seguenti progetti:'
|
145
165
|
proposal_results: 'Le proposte compaiono nei seguenti risultati:'
|
146
|
-
proposals_from_meeting:
|
147
|
-
proposal_meetings: Meeting associati alla proposta
|
data/config/locales/nl.yml
CHANGED
@@ -2,4 +2,164 @@ nl:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
proposal:
|
5
|
+
body: Lichaam
|
6
|
+
category_id: Categorie
|
7
|
+
scope_id: Reikwijdte
|
5
8
|
title: Titel
|
9
|
+
user_group_id: Maak een voorstel als
|
10
|
+
proposal_answer:
|
11
|
+
answer: Antwoord
|
12
|
+
decidim:
|
13
|
+
features:
|
14
|
+
proposals:
|
15
|
+
actions:
|
16
|
+
create: Creëren
|
17
|
+
vote: Stemmen
|
18
|
+
name: Voorstellen
|
19
|
+
settings:
|
20
|
+
global:
|
21
|
+
announcement: Aankondiging
|
22
|
+
attachments_allowed: Bijlagen toestaan
|
23
|
+
comments_enabled: Reacties ingeschakeld
|
24
|
+
geocoding_enabled: Geocoding ingeschakeld
|
25
|
+
new_proposal_help_text: Nieuwe tekst voor tekstvoorstellen
|
26
|
+
official_proposals_enabled: Officiële voorstellen ingeschakeld
|
27
|
+
proposal_answering_enabled: Antwoordbericht geactiveerd
|
28
|
+
vote_limit: Stemlimiet
|
29
|
+
step:
|
30
|
+
announcement: Aankondiging
|
31
|
+
comments_blocked: Reacties geblokkeerd
|
32
|
+
creation_enabled: Voorstellen creëren ingeschakeld
|
33
|
+
proposal_answering_enabled: Antwoordbericht geactiveerd
|
34
|
+
votes_blocked: Stemmen geblokkeerd
|
35
|
+
votes_enabled: Stemmen ingeschakeld
|
36
|
+
votes_hidden: Stemmen verborgen (als stemmen zijn ingeschakeld, zal dit hierbij het aantal stemmen verbergen)
|
37
|
+
proposals:
|
38
|
+
actions:
|
39
|
+
answer: Antwoord
|
40
|
+
new: nieuwe
|
41
|
+
title: Acties
|
42
|
+
admin:
|
43
|
+
actions:
|
44
|
+
preview: Voorbeeld
|
45
|
+
exports:
|
46
|
+
comments: Comments
|
47
|
+
proposals: Voorstellen
|
48
|
+
models:
|
49
|
+
proposal:
|
50
|
+
name: Voorstel
|
51
|
+
proposal_answers:
|
52
|
+
edit:
|
53
|
+
accepted: Aanvaard
|
54
|
+
answer_proposal: Antwoord
|
55
|
+
evaluating: Evalueren
|
56
|
+
rejected: Verworpen
|
57
|
+
title: Antwoord voor voorstel %{title}
|
58
|
+
proposals:
|
59
|
+
answer:
|
60
|
+
invalid: Er is een probleem geweest met het beantwoorden van dit voorstel
|
61
|
+
success: Voorstel met succes beantwoord
|
62
|
+
create:
|
63
|
+
invalid: Er is een probleem opgetreden met het maken van dit voorstel
|
64
|
+
success: Voorstel met succes gecreëerd
|
65
|
+
form:
|
66
|
+
attachment_legend: "(Optioneel) Een bijlage toevoegen"
|
67
|
+
select_a_category: Kies een categorie
|
68
|
+
index:
|
69
|
+
title: Voorstellen
|
70
|
+
new:
|
71
|
+
create: Creëren
|
72
|
+
title: Maak een voorstel
|
73
|
+
answers:
|
74
|
+
accepted: Aanvaard
|
75
|
+
evaluating: Evalueren
|
76
|
+
not_answered: Niet geantwoord
|
77
|
+
rejected: Verworpen
|
78
|
+
create:
|
79
|
+
error: Er zijn fouten geweest bij het opslaan van het voorstel.
|
80
|
+
success: Voorstel is succesvol gemaakt.
|
81
|
+
models:
|
82
|
+
proposal:
|
83
|
+
fields:
|
84
|
+
category: Categorie
|
85
|
+
id: ID kaart
|
86
|
+
official_proposal: Officieel voorstel
|
87
|
+
scope: Reikwijdte
|
88
|
+
state: Staat
|
89
|
+
title: Titel
|
90
|
+
proposal_votes:
|
91
|
+
create:
|
92
|
+
error: Er zijn fouten geweest bij het stemmen van het voorstel.
|
93
|
+
proposals:
|
94
|
+
author:
|
95
|
+
deleted: Verwijderde gebruiker
|
96
|
+
verified_user_group: Geverifieerde organisatie
|
97
|
+
count:
|
98
|
+
proposals_count:
|
99
|
+
one: 1 voorstel
|
100
|
+
other: "%{count} voorstellen"
|
101
|
+
filters:
|
102
|
+
accepted: Aanvaard
|
103
|
+
activity: Activiteit
|
104
|
+
all: Alle
|
105
|
+
category: Categorie
|
106
|
+
category_prompt: Kies een categorie
|
107
|
+
citizenship: Burgerschap
|
108
|
+
evaluating: Evalueren
|
109
|
+
official: Officieel
|
110
|
+
origin: Oorsprong
|
111
|
+
rejected: Verworpen
|
112
|
+
related_to: Gerelateerd aan
|
113
|
+
scope_prompt: Selecteer een bereik
|
114
|
+
scopes: Scopes
|
115
|
+
search: Zoeken
|
116
|
+
state: Staat
|
117
|
+
voted: Gestemd
|
118
|
+
filters_small_view:
|
119
|
+
close_modal: Dicht modaal
|
120
|
+
filter: Filter
|
121
|
+
filter_by: Filteren op
|
122
|
+
unfold: Ontvouwen
|
123
|
+
index:
|
124
|
+
new_proposal: Nieuw voorstel
|
125
|
+
view_proposal: Bekijk voorstel
|
126
|
+
linked_proposals:
|
127
|
+
proposal_votes:
|
128
|
+
one: <span class="card--list__data__number">1</span>vote
|
129
|
+
other: <span class="card--list__data__number">%{count}</span>votes
|
130
|
+
new:
|
131
|
+
attachment_legend: "(Optioneel) Een bijlage toevoegen"
|
132
|
+
back: Terug
|
133
|
+
select_a_category: Selecteer een categorie
|
134
|
+
send: Verstuur
|
135
|
+
title: Nieuw voorstel
|
136
|
+
orders:
|
137
|
+
label: 'Bestelling voorstellen door:'
|
138
|
+
most_voted: Meeste stemmen
|
139
|
+
random: Willekeurig
|
140
|
+
recent: Recentelijk
|
141
|
+
proposal:
|
142
|
+
view_proposal: Bekijk voorstel
|
143
|
+
show:
|
144
|
+
proposal_accepted_reason: 'Dit voorstel is geaccepteerd omdat:'
|
145
|
+
proposal_rejected_reason: 'Dit voorstel is afgewezen omdat:'
|
146
|
+
report: Rapporteren
|
147
|
+
vote_button:
|
148
|
+
already_voted: Al gestemd
|
149
|
+
no_votes_remaining: Geen stemmen over
|
150
|
+
vote: Stemmen
|
151
|
+
votes_blocked: Stemmen uitgeschakeld
|
152
|
+
votes_count:
|
153
|
+
count:
|
154
|
+
one: STEMMEN
|
155
|
+
other: STEMMINGEN
|
156
|
+
votes_limit:
|
157
|
+
vote_limit:
|
158
|
+
description: In plaats van zo veel voorstellen te stemmen als u wilt, kunt u alleen stemmen tot %{limit} voorstellen.
|
159
|
+
left: Resterend
|
160
|
+
title: U heeft %{limit} stemmen om te verdelen
|
161
|
+
votes: Stemmen
|
162
|
+
resource_links:
|
163
|
+
included_proposals:
|
164
|
+
proposal_projects: 'Voorstel in deze projecten:'
|
165
|
+
proposal_results: 'Voorstel dat in deze resultaten voorkomt:'
|
data/config/locales/pl.yml
CHANGED
@@ -2,4 +2,167 @@ pl:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
proposal:
|
5
|
+
body: Ciało
|
6
|
+
category_id: Kategoria
|
7
|
+
scope_id: Zakres
|
5
8
|
title: Tytuł
|
9
|
+
user_group_id: Utwórz propozycję jako
|
10
|
+
proposal_answer:
|
11
|
+
answer: Odpowiedź
|
12
|
+
decidim:
|
13
|
+
features:
|
14
|
+
proposals:
|
15
|
+
actions:
|
16
|
+
create: Stwórz
|
17
|
+
vote: Głosować
|
18
|
+
name: Propozycje
|
19
|
+
settings:
|
20
|
+
global:
|
21
|
+
announcement: Ogłoszenie
|
22
|
+
attachments_allowed: Zezwalaj na załączniki
|
23
|
+
comments_enabled: Włączone komentarze
|
24
|
+
geocoding_enabled: Włączone kodowanie geograficzne
|
25
|
+
new_proposal_help_text: Nowy tekst pomocy propozycji
|
26
|
+
official_proposals_enabled: Oficjalne propozycje
|
27
|
+
proposal_answering_enabled: Włączona odpowiedź na pytania
|
28
|
+
vote_limit: Limit głosu
|
29
|
+
step:
|
30
|
+
announcement: Ogłoszenie
|
31
|
+
comments_blocked: Komentarze zablokowane
|
32
|
+
creation_enabled: Utworzono propozycję
|
33
|
+
proposal_answering_enabled: Włączona odpowiedź na pytania
|
34
|
+
votes_blocked: Głosy zablokowane
|
35
|
+
votes_enabled: Głosy włączone
|
36
|
+
votes_hidden: Głosy ukryte (jeśli głosy są włączone, zaznaczenie spowoduje ukrycie liczby głosów)
|
37
|
+
proposals:
|
38
|
+
actions:
|
39
|
+
answer: Odpowiedź
|
40
|
+
new: Nowy
|
41
|
+
title: działania
|
42
|
+
admin:
|
43
|
+
actions:
|
44
|
+
preview: Zapowiedź
|
45
|
+
exports:
|
46
|
+
comments: Komentarze
|
47
|
+
proposals: Propozycje
|
48
|
+
models:
|
49
|
+
proposal:
|
50
|
+
name: Wniosek
|
51
|
+
proposal_answers:
|
52
|
+
edit:
|
53
|
+
accepted: Przyjęty
|
54
|
+
answer_proposal: Odpowiedź
|
55
|
+
evaluating: Ocena
|
56
|
+
rejected: Odrzucone
|
57
|
+
title: Odpowiedź na wniosek %{title}
|
58
|
+
proposals:
|
59
|
+
answer:
|
60
|
+
invalid: Wystąpił problem z odpowiedzią na tę propozycję
|
61
|
+
success: Propozycja z powodzeniem odpowiedziała
|
62
|
+
create:
|
63
|
+
invalid: Podczas tworzenia tego wniosku wystąpił problem
|
64
|
+
success: Propozycja została pomyślnie utworzona
|
65
|
+
form:
|
66
|
+
attachment_legend: "(Opcjonalnie) Dodaj załącznik"
|
67
|
+
select_a_category: Wybierz kategorię
|
68
|
+
index:
|
69
|
+
title: Propozycje
|
70
|
+
new:
|
71
|
+
create: Stwórz
|
72
|
+
title: Utwórz propozycję
|
73
|
+
answers:
|
74
|
+
accepted: Przyjęty
|
75
|
+
evaluating: Ocena
|
76
|
+
not_answered: Bez odpowiedzi
|
77
|
+
rejected: Odrzucone
|
78
|
+
create:
|
79
|
+
error: Podczas zapisywania propozycji wystąpiły błędy.
|
80
|
+
success: Propozycja została pomyślnie utworzona.
|
81
|
+
models:
|
82
|
+
proposal:
|
83
|
+
fields:
|
84
|
+
category: Kategoria
|
85
|
+
id: ID
|
86
|
+
official_proposal: Oficjalny wniosek
|
87
|
+
scope: Zakres
|
88
|
+
state: Stan
|
89
|
+
title: Tytuł
|
90
|
+
proposal_votes:
|
91
|
+
create:
|
92
|
+
error: Podczas głosowania nad propozycją wystąpiły błędy.
|
93
|
+
proposals:
|
94
|
+
author:
|
95
|
+
deleted: Usunięty użytkownik
|
96
|
+
verified_user_group: Zweryfikowana organizacja
|
97
|
+
count:
|
98
|
+
proposals_count:
|
99
|
+
one: 1 propozycja
|
100
|
+
few: "%{count} propozycje"
|
101
|
+
other: "%{count} propozycje"
|
102
|
+
filters:
|
103
|
+
accepted: Przyjęty
|
104
|
+
activity: Czynność
|
105
|
+
all: Wszystko
|
106
|
+
category: Kategoria
|
107
|
+
category_prompt: Wybierz kategorię
|
108
|
+
citizenship: Obywatelstwo
|
109
|
+
evaluating: Ocena
|
110
|
+
official: Urzędnik
|
111
|
+
origin: Pochodzenie
|
112
|
+
rejected: Odrzucone
|
113
|
+
related_to: Związany z
|
114
|
+
scope_prompt: Wybierz zakres
|
115
|
+
scopes: Zakresy
|
116
|
+
search: Szukanie
|
117
|
+
state: Stan
|
118
|
+
voted: Głosował
|
119
|
+
filters_small_view:
|
120
|
+
close_modal: Zamknij modal
|
121
|
+
filter: Filtr
|
122
|
+
filter_by: Filtruj według
|
123
|
+
unfold: Rozwijać się
|
124
|
+
index:
|
125
|
+
new_proposal: Nowa propozycja
|
126
|
+
view_proposal: Wyświetl propozycję
|
127
|
+
linked_proposals:
|
128
|
+
proposal_votes:
|
129
|
+
one: <span class="card--list__data__number">1</span>vote
|
130
|
+
few: <span class="card--list__data__number">%{count}</span>votes
|
131
|
+
other: <span class="card--list__data__number">%{count}</span>votes
|
132
|
+
new:
|
133
|
+
attachment_legend: "(Opcjonalnie) Dodaj załącznik"
|
134
|
+
back: Plecy
|
135
|
+
select_a_category: Proszę wybrać kategorię
|
136
|
+
send: Wysłać
|
137
|
+
title: Nowa propozycja
|
138
|
+
orders:
|
139
|
+
label: 'Propozycje zamówień:'
|
140
|
+
most_voted: Większość głosów
|
141
|
+
random: Losowy
|
142
|
+
recent: Niedawny
|
143
|
+
proposal:
|
144
|
+
view_proposal: Wyświetl propozycję
|
145
|
+
show:
|
146
|
+
proposal_accepted_reason: 'Niniejszy wniosek został zaakceptowany, ponieważ:'
|
147
|
+
proposal_rejected_reason: 'Niniejszy wniosek został odrzucony, ponieważ:'
|
148
|
+
report: Raport
|
149
|
+
vote_button:
|
150
|
+
already_voted: Już głosował
|
151
|
+
no_votes_remaining: Brak głosów
|
152
|
+
vote: Głosować
|
153
|
+
votes_blocked: Głosowanie zostało wyłączone
|
154
|
+
votes_count:
|
155
|
+
count:
|
156
|
+
one: GŁOSOWAĆ
|
157
|
+
few: GŁOSOWANIA
|
158
|
+
other: GŁOSOWANIA
|
159
|
+
votes_limit:
|
160
|
+
vote_limit:
|
161
|
+
description: Zamiast głosować na wiele propozycji, możesz głosować tylko na %{limit} propozycjach.
|
162
|
+
left: Pozostały
|
163
|
+
title: Masz do dyspozycji %{limit} głosów
|
164
|
+
votes: Głosowania
|
165
|
+
resource_links:
|
166
|
+
included_proposals:
|
167
|
+
proposal_projects: 'Propozycja występująca w tych projektach:'
|
168
|
+
proposal_results: 'Propozycja pojawiająca się w tych wynikach:'
|