decidim-budgets 0.22.0 → 0.23.3
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 +38 -3
- data/app/assets/stylesheets/decidim/budgets/budget/_budget-list.scss +5 -0
- data/app/cells/decidim/budgets/base_cell.rb +22 -0
- data/app/cells/decidim/budgets/budget_cell.rb +21 -0
- data/app/cells/decidim/budgets/budget_information_modal/show.erb +28 -0
- data/app/cells/decidim/budgets/budget_information_modal_cell.rb +22 -0
- data/app/cells/decidim/budgets/budget_list_item/show.erb +22 -0
- data/app/cells/decidim/budgets/budget_list_item_cell.rb +40 -0
- data/app/cells/decidim/budgets/budget_m/data.erb +12 -0
- data/app/cells/decidim/budgets/budget_m/footer.erb +5 -0
- data/app/cells/decidim/budgets/budget_m_cell.rb +16 -0
- data/app/cells/decidim/budgets/budgets_header/show.erb +7 -0
- data/app/cells/decidim/budgets/budgets_header_cell.rb +14 -0
- data/app/cells/decidim/budgets/budgets_list/card_list.erb +7 -0
- data/app/cells/decidim/budgets/budgets_list/highlighted.erb +11 -0
- data/app/cells/decidim/budgets/budgets_list/show.erb +20 -0
- data/app/cells/decidim/budgets/budgets_list/voted.erb +43 -0
- data/app/cells/decidim/budgets/budgets_list_cell.rb +39 -0
- data/app/cells/decidim/budgets/limit_announcement_cell.rb +52 -0
- data/app/cells/decidim/budgets/project_list_item/project_data.erb +17 -3
- data/app/cells/decidim/budgets/project_list_item/project_data_vote_button.erb +2 -2
- data/app/cells/decidim/budgets/project_list_item/project_text.erb +11 -5
- data/app/cells/decidim/budgets/project_list_item/show.erb +3 -3
- data/app/cells/decidim/budgets/project_list_item_cell.rb +8 -28
- data/app/cells/decidim/budgets/project_m/data.erb +1 -1
- data/app/cells/decidim/budgets/project_m_cell.rb +4 -0
- data/app/cells/decidim/budgets/project_selected_status_cell.rb +28 -0
- data/app/cells/decidim/budgets/project_tags/show.erb +5 -0
- data/app/cells/decidim/budgets/project_tags_cell.rb +18 -0
- data/app/cells/decidim/budgets/project_voted_hint_cell.rb +33 -0
- data/app/cells/decidim/budgets/project_votes_count_cell.rb +44 -0
- data/app/commands/decidim/budgets/add_line_item.rb +7 -10
- data/app/commands/decidim/budgets/admin/create_budget.rb +48 -0
- data/app/commands/decidim/budgets/admin/create_project.rb +12 -7
- data/app/commands/decidim/budgets/admin/destroy_budget.rb +42 -0
- data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +26 -25
- data/app/commands/decidim/budgets/admin/update_budget.rb +48 -0
- data/app/commands/decidim/budgets/admin/update_project.rb +8 -1
- data/app/commands/decidim/budgets/checkout.rb +6 -6
- data/app/commands/decidim/budgets/remove_line_item.rb +3 -2
- data/app/controllers/concerns/decidim/budgets/needs_current_order.rb +14 -2
- data/app/controllers/concerns/decidim/budgets/orderable.rb +3 -7
- data/app/controllers/decidim/budgets/admin/application_controller.rb +10 -2
- data/app/controllers/decidim/budgets/admin/attachment_collections_controller.rb +1 -1
- data/app/controllers/decidim/budgets/admin/attachments_controller.rb +2 -2
- data/app/controllers/decidim/budgets/admin/budgets_controller.rb +82 -0
- data/app/controllers/decidim/budgets/admin/projects_controller.rb +7 -7
- data/app/controllers/decidim/budgets/admin/proposals_imports_controller.rb +10 -2
- data/app/controllers/decidim/budgets/application_controller.rb +23 -0
- data/app/controllers/decidim/budgets/budgets_controller.rb +24 -0
- data/app/controllers/decidim/budgets/line_items_controller.rb +9 -5
- data/app/controllers/decidim/budgets/orders_controller.rb +20 -6
- data/app/controllers/decidim/budgets/projects_controller.rb +19 -18
- data/app/forms/decidim/budgets/admin/budget_form.rb +39 -0
- data/app/forms/decidim/budgets/admin/project_form.rb +14 -10
- data/app/forms/decidim/budgets/admin/project_import_proposals_form.rb +4 -0
- data/app/helpers/decidim/budgets/admin/application_helper.rb +13 -0
- data/app/helpers/decidim/budgets/application_helper.rb +10 -0
- data/app/helpers/decidim/budgets/projects_helper.rb +0 -4
- data/app/mailers/decidim/budgets/order_summary_mailer.rb +5 -3
- data/app/models/decidim/budgets/budget.rb +34 -0
- data/app/models/decidim/budgets/line_item.rb +4 -4
- data/app/models/decidim/budgets/order.rb +23 -19
- data/app/models/decidim/budgets/project.rb +34 -5
- data/app/permissions/decidim/budgets/admin/permissions.rb +23 -10
- data/app/permissions/decidim/budgets/permissions.rb +28 -6
- data/app/presenters/decidim/budgets/admin_log/budget_presenter.rb +42 -0
- data/app/queries/decidim/budgets/filtered_projects.rb +9 -1
- data/app/queries/decidim/budgets/metrics/budget_followers_metric_measure.rb +3 -2
- data/app/queries/decidim/budgets/metrics/budget_participants_metric_measure.rb +6 -5
- data/app/serializers/decidim/budgets/data_portability_budgets_order_serializer.rb +3 -2
- data/app/services/decidim/budgets/project_search.rb +12 -24
- data/app/types/decidim/budgets/budget_type.rb +24 -0
- data/app/types/decidim/budgets/budgets_type.rb +6 -6
- data/app/types/decidim/budgets/project_type.rb +2 -1
- data/app/views/decidim/budgets/admin/budgets/_form.html.erb +23 -0
- data/app/views/decidim/budgets/admin/budgets/edit.html.erb +7 -0
- data/app/views/decidim/budgets/admin/budgets/index.html.erb +58 -0
- data/app/views/decidim/budgets/admin/budgets/new.html.erb +7 -0
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +12 -4
- data/app/views/decidim/budgets/admin/projects/edit.html.erb +2 -2
- data/app/views/decidim/budgets/admin/projects/index.html.erb +20 -7
- data/app/views/decidim/budgets/admin/projects/new.html.erb +2 -2
- data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +1 -1
- data/app/views/decidim/budgets/budgets/index.html.erb +5 -0
- data/app/views/decidim/budgets/order_summary_mailer/order_summary.html.erb +1 -0
- data/app/views/decidim/budgets/projects/_budget_confirm.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_budget_summary.html.erb +19 -6
- data/app/views/decidim/budgets/projects/_filters.html.erb +6 -2
- data/app/views/decidim/budgets/projects/_linked_projects.html.erb +1 -1
- data/app/views/decidim/budgets/projects/_order_progress.html.erb +10 -6
- data/app/views/decidim/budgets/projects/_order_selected_projects.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_project_budget_button.html.erb +36 -7
- data/app/views/decidim/budgets/projects/index.html.erb +12 -4
- data/app/views/decidim/budgets/projects/show.html.erb +22 -13
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +2 -11
- data/config/locales/bg.yml +6 -0
- data/config/locales/ca.yml +102 -10
- data/config/locales/cs.yml +108 -16
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +120 -28
- data/config/locales/el.yml +3 -9
- data/config/locales/en.yml +101 -9
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +101 -9
- data/config/locales/es-PY.yml +101 -9
- data/config/locales/es.yml +102 -10
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +5 -8
- data/config/locales/fi-plain.yml +102 -10
- data/config/locales/fi.yml +103 -11
- data/config/locales/fr-CA.yml +101 -9
- data/config/locales/fr.yml +101 -9
- data/config/locales/gl.yml +70 -10
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +2 -7
- data/config/locales/id-ID.yml +2 -6
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/is.yml +114 -0
- data/config/locales/it.yml +71 -9
- data/config/locales/ja-JP.yml +1 -0
- data/config/locales/ja.yml +262 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/{lv-LV.yml → lv.yml} +2 -10
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +88 -10
- data/config/locales/no.yml +25 -9
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +114 -22
- data/config/locales/pt-BR.yml +2 -7
- data/config/locales/pt.yml +3 -9
- data/config/locales/ro-RO.yml +3 -10
- data/config/locales/ru.yml +2 -9
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -11
- data/config/locales/sl.yml +0 -4
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +0 -2
- data/config/locales/sv.yml +101 -9
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +153 -34
- data/config/locales/uk.yml +2 -9
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +260 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200617105120_create_decidim_budgets.rb +15 -0
- data/db/migrate/20200629072626_rename_budget_to_budget_ammount.rb +7 -0
- data/db/migrate/20200629134013_add_budget_reference_to_project.rb +7 -0
- data/db/migrate/20200706142609_add_budget_reference_to_order.rb +7 -0
- data/db/migrate/20200714103519_move_budgets_to_own_model.rb +109 -0
- data/db/migrate/20200717140012_add_scope_to_budgets.rb +7 -0
- data/db/migrate/20200728075039_add_selected_at_to_project.rb +7 -0
- data/db/migrate/20200804175222_votes_enabled_to_votes_choices.rb +35 -0
- data/db/migrate/20200827154129_add_commentable_counter_cache_to_projects.rb +9 -0
- data/lib/decidim/budgets.rb +1 -0
- data/lib/decidim/budgets/admin_engine.rb +10 -5
- data/lib/decidim/budgets/component.rb +83 -38
- data/lib/decidim/budgets/engine.rb +8 -6
- data/lib/decidim/budgets/test/factories.rb +42 -13
- data/lib/decidim/budgets/version.rb +1 -1
- data/lib/decidim/budgets/workflows.rb +17 -0
- data/lib/decidim/budgets/workflows/all.rb +20 -0
- data/lib/decidim/budgets/workflows/base.rb +132 -0
- data/lib/decidim/budgets/workflows/one.rb +33 -0
- metadata +89 -20
- data/app/cells/decidim/budgets/project_list_item/project_data_number.erb +0 -3
- data/app/cells/decidim/budgets/project_list_item/project_data_votes.erb +0 -7
data/config/locales/fr.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
fr:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Secteur
|
6
|
+
description: Description
|
7
|
+
title: Titre
|
8
|
+
total_budget: Budget total
|
9
|
+
weight: Rang d'affichage
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Montant du budget
|
6
12
|
decidim_category_id: Catégorie
|
7
13
|
decidim_scope_id: Périmètre d'application
|
8
14
|
description: Description
|
9
15
|
proposal_ids: Propositions liées
|
16
|
+
selected: Sélectionné pour l'implémentation
|
10
17
|
title: Titre
|
11
18
|
activerecord:
|
12
19
|
models:
|
@@ -21,12 +28,33 @@ fr:
|
|
21
28
|
confirm_destroy: Êtes-vous certain de vouloir supprimer ce projet?
|
22
29
|
destroy: Supprimer
|
23
30
|
edit: Modifier
|
31
|
+
edit_projects: Gérer les projets
|
24
32
|
import: Importer des propositions dans des projets
|
25
|
-
new: Nouveau
|
33
|
+
new: Nouveau %{name}
|
26
34
|
preview: Aperçu
|
27
35
|
title: Actions
|
28
36
|
admin:
|
37
|
+
budgets:
|
38
|
+
create:
|
39
|
+
invalid: Un problème est survenu lors de la création de ce budget
|
40
|
+
success: Budget créé avec succès
|
41
|
+
destroy:
|
42
|
+
invalid: Un problème est survenu lors de la suppression de ce budget
|
43
|
+
success: Budget supprimé avec succès
|
44
|
+
edit:
|
45
|
+
title: Modifier le budget
|
46
|
+
update: Mettre à jour le budget
|
47
|
+
index:
|
48
|
+
title: Budgets
|
49
|
+
new:
|
50
|
+
create: Créer un budget
|
51
|
+
title: Nouveau budget
|
52
|
+
update:
|
53
|
+
invalid: Un problème est survenu lors de la mise à jour de ce budget
|
54
|
+
success: Budget mis à jour avec succès
|
29
55
|
models:
|
56
|
+
budget:
|
57
|
+
name: Budget
|
30
58
|
project:
|
31
59
|
name: Projet
|
32
60
|
projects:
|
@@ -41,6 +69,7 @@ fr:
|
|
41
69
|
index:
|
42
70
|
finished_orders: Votes terminés
|
43
71
|
pending_orders: Votes en cours
|
72
|
+
selected: Sélectionné
|
44
73
|
title: Projets
|
45
74
|
new:
|
46
75
|
create: Créer
|
@@ -57,11 +86,39 @@ fr:
|
|
57
86
|
no_components: Il n'y a pas d'autres modules de proposition dans cet espace participatif pour importer les propositions dans des projets.
|
58
87
|
select_component: Veuillez sélectionner un module
|
59
88
|
admin_log:
|
89
|
+
budget:
|
90
|
+
create: "%{user_name} a créé le budget %{resource_name} dans l'espace %{space_name}"
|
91
|
+
delete: "%{user_name} a supprimé le budget %{resource_name} dans l'espace %{space_name}"
|
92
|
+
update: "%{user_name} a mis à jour le budget %{resource_name} dans l'espace %{space_name}"
|
60
93
|
project:
|
61
94
|
create: "%{user_name} a créé le projet %{resource_name} dans l'espace %{space_name}"
|
62
95
|
delete: "%{user_name} a supprimé le projet %{resource_name} dans l'espace %{space_name}"
|
63
96
|
update: "%{user_name} a mis à jour le projet %{resource_name} dans l'espace %{space_name}"
|
97
|
+
budget:
|
98
|
+
view: Voir tous les projets
|
99
|
+
budget_information_modal:
|
100
|
+
back_to: Retour à %{component_name}
|
101
|
+
close_modal: Fermer la fenêtre de dialogue
|
102
|
+
continue: Continuer
|
103
|
+
more_information: Plus d'information
|
104
|
+
budgets_list:
|
105
|
+
cancel_order:
|
106
|
+
more_than_one: supprimer votre vote sur %{name} et recommencer
|
107
|
+
only_one: supprimer votre vote et recommencez.
|
108
|
+
finished_message: Vous avez terminé le processus de vote. Merci de votre participation !
|
109
|
+
highlighted_cta: Voter pour %{name}
|
110
|
+
if_change_opinion: Si vous avez changé d'avis, vous pouvez
|
111
|
+
my_budgets: Mes Budgets
|
112
|
+
voted_on: Vous avez voté sur %{links}
|
113
|
+
limit_announcement:
|
114
|
+
cant_vote: Vous ne pouvez pas voter sur ce budget. <a href="%{landing_path}">Essayez sur un autre budget</a>.
|
115
|
+
limit_reached: Vous avez des votes actifs dans %{links}. Pour voter sur ce budget, vous devez <a href="%{landing_path}">supprimer votre vote et recommencer</a>.
|
64
116
|
models:
|
117
|
+
budget:
|
118
|
+
fields:
|
119
|
+
name: Nom
|
120
|
+
projects_count: Nombre de projets
|
121
|
+
total_budget: Budget total
|
65
122
|
project:
|
66
123
|
fields:
|
67
124
|
title: Titre
|
@@ -69,11 +126,11 @@ fr:
|
|
69
126
|
order_summary:
|
70
127
|
selected_projects: 'Les projets que vous avez sélectionnés sont :'
|
71
128
|
subject: Vous avez voté sur l'espace participatif %{space_name}
|
72
|
-
voted_on_space: Vous avez voté sur
|
73
|
-
voted_on_space_with_scope: Vous avez voté sur
|
129
|
+
voted_on_space: Vous avez voté sur le budget %{budget_name} pour l'espace participatif %{space_name}.
|
130
|
+
voted_on_space_with_scope: Vous avez voté sur le budget %{budget_name} pour l'espace participatif %{space_name} sur %{scope_name} (%{scope_type}).
|
74
131
|
projects:
|
75
132
|
budget_confirm:
|
76
|
-
are_you_sure:
|
133
|
+
are_you_sure: Si vous changez d'avis, vous pourrez modifier votre vote plus tard.
|
77
134
|
cancel: Annuler
|
78
135
|
confirm: Confirmer
|
79
136
|
description: Voici les projets que vous avez choisis pour le budget.
|
@@ -101,6 +158,11 @@ fr:
|
|
101
158
|
category: Catégorie
|
102
159
|
scope: Périmètre d'application
|
103
160
|
search: Rechercher
|
161
|
+
status: Statut
|
162
|
+
status_values:
|
163
|
+
all: Tous
|
164
|
+
not_selected: Non sélectionné
|
165
|
+
selected: Sélectionné
|
104
166
|
filters_small_view:
|
105
167
|
close_modal: Fermez la fenêtre
|
106
168
|
filter: Filtrer
|
@@ -120,18 +182,22 @@ fr:
|
|
120
182
|
lowest_cost: Prix croissant
|
121
183
|
most_voted: Le plus populaire
|
122
184
|
random: Ordre aléatoire
|
185
|
+
selected: Sélectionné
|
123
186
|
project:
|
124
187
|
add: Ajouter le projet %{resource_name} à votre vote
|
125
|
-
count:
|
126
|
-
one: 1 soutien
|
127
|
-
other: "%{count} soutiens"
|
128
188
|
remove: Retirer le projet %{resource_name} de votre vote
|
189
|
+
selected: Sélectionné
|
129
190
|
view: Voir
|
191
|
+
votes:
|
192
|
+
one: vote
|
193
|
+
other: votes
|
194
|
+
you_voted: Vous avez voté
|
130
195
|
project_budget_button:
|
131
196
|
add: Ajouter à votre vote
|
132
197
|
add_descriptive: Ajouter le projet %{resource_name} à votre vote
|
133
198
|
added: Ajouté à votre vote
|
134
199
|
added_descriptive: Projet %{resource_name} ajouté à votre vote
|
200
|
+
projects_for: Projets pour %{name}
|
135
201
|
show:
|
136
202
|
budget: Budget
|
137
203
|
view_all_projects: Voir tous les projets
|
@@ -144,22 +210,48 @@ fr:
|
|
144
210
|
global:
|
145
211
|
announcement: Annonce
|
146
212
|
comments_enabled: Activer le module de commentaire
|
213
|
+
comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
|
147
214
|
form:
|
148
215
|
errors:
|
149
216
|
budget_voting_rule_only_one: Une seule règle de vote doit être activée
|
150
217
|
budget_voting_rule_required: Une règle de vote est requise
|
218
|
+
landing_page_content: Page d'accueil des budgets
|
219
|
+
more_information_modal: Plus d’informations
|
151
220
|
projects_per_page: Projets par page
|
152
221
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
222
|
+
scope_id: Secteur
|
223
|
+
scopes_enabled: Secteurs activés
|
224
|
+
title: Titre
|
153
225
|
total_budget: Budget total
|
154
226
|
vote_minimum_budget_projects_number: Nombre minimum de projets à voter
|
155
227
|
vote_rule_minimum_budget_projects_enabled: 'Activer la règle : Nombre minimum de projets à voter'
|
156
228
|
vote_rule_threshold_percent_enabled: 'Activer la règle : Pourcentage de budget minimum'
|
157
229
|
vote_threshold_percent: Pourcentage du budget à atteindre pour voter
|
230
|
+
workflow: Processus
|
231
|
+
workflow_choices:
|
232
|
+
all: 'Voter sur tous les budgets : autorise les participants à voter sur tous les budgets.'
|
233
|
+
one: 'Voter sur un seul budget : autorise les participants à voter sur un seul budget parmi les budgets proposés.'
|
158
234
|
step:
|
159
235
|
announcement: Annonce
|
160
236
|
comments_blocked: Commentaires bloqués
|
237
|
+
highlighted_heading: En-tête en surbrillance
|
238
|
+
landing_page_content: Page d'accueil des budgets
|
239
|
+
list_heading: En-tête de la liste des budgets
|
240
|
+
more_information_modal: Plus d’informations
|
161
241
|
show_votes: Afficher les votes
|
162
|
-
|
242
|
+
title: Titre
|
243
|
+
votes: Vote
|
244
|
+
votes_choices:
|
245
|
+
disabled: Vote désactivé
|
246
|
+
enabled: Votes activés
|
247
|
+
finished: Vote terminé
|
248
|
+
events:
|
249
|
+
budgets:
|
250
|
+
budget_published:
|
251
|
+
email_intro: 'Le budget %{resource_title} est maintenant actif pour %{participatory_space_title}. Vous pouvez le voir sur cette page :'
|
252
|
+
email_outro: Vous recevez cette notification car vous suivez « %{participatory_space_title} ». Vous pouvez cesser de le suivre en allant sur le lien précédent.
|
253
|
+
email_subject: Le budget %{resource_title} est maintenant actif pour %{participatory_space_title}.
|
254
|
+
notification_title: Le budget <a href="%{resource_path}">%{resource_title}</a> est maintenant actif pour %{participatory_space_title}.
|
163
255
|
orders:
|
164
256
|
checkout:
|
165
257
|
error: Une erreur s'est produite lors du traitement de votre vote
|
data/config/locales/gl.yml
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
gl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Ámbito
|
6
|
+
description: Descripción
|
7
|
+
title: Título
|
8
|
+
total_budget: Orzamento total
|
9
|
+
weight: Peso
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Importe do orzamento
|
6
12
|
decidim_category_id: Categoría
|
7
13
|
decidim_scope_id: Alcance
|
8
14
|
description: Descrición
|
@@ -21,12 +27,30 @@ gl:
|
|
21
27
|
confirm_destroy: Estás seguro de que queres eliminar este proxecto?
|
22
28
|
destroy: Eliminar
|
23
29
|
edit: Editar
|
30
|
+
edit_projects: Xestionar proxectos
|
24
31
|
import: Importa propostas a proxectos
|
25
|
-
new: Novo
|
32
|
+
new: Novo %{name}
|
26
33
|
preview: Vista previa
|
27
34
|
title: Accións
|
28
35
|
admin:
|
36
|
+
budgets:
|
37
|
+
create:
|
38
|
+
invalid: Produciuse un problema ao crear este orzamento
|
39
|
+
success: Orzamento creado con éxito
|
40
|
+
destroy:
|
41
|
+
invalid: Produciuse un problema ao eliminar este orzamento
|
42
|
+
success: Orzamento eliminado con éxito
|
43
|
+
edit:
|
44
|
+
title: Editar orzamento
|
45
|
+
update: Actualizar orzamento
|
46
|
+
index:
|
47
|
+
title: Orzamentos
|
48
|
+
new:
|
49
|
+
create: Crear orzamento
|
50
|
+
title: Novo orzamento
|
29
51
|
models:
|
52
|
+
budget:
|
53
|
+
name: Orzamento
|
30
54
|
project:
|
31
55
|
name: Proxecto
|
32
56
|
projects:
|
@@ -41,6 +65,7 @@ gl:
|
|
41
65
|
index:
|
42
66
|
finished_orders: Votos rematados
|
43
67
|
pending_orders: Votos pendentes
|
68
|
+
selected: Seleccionado
|
44
69
|
title: Proxectos
|
45
70
|
new:
|
46
71
|
create: Crear
|
@@ -61,13 +86,30 @@ gl:
|
|
61
86
|
create: "%{user_name} creou o proxecto %{resource_name} no espazo %{space_name}"
|
62
87
|
delete: "%{user_name} eliminou o %{resource_name} proxecto no espazo %{space_name}"
|
63
88
|
update: "%{user_name} actualizou o proxecto %{resource_name} no espazo %{space_name}"
|
89
|
+
budget_information_modal:
|
90
|
+
close_modal: Pechar modal
|
91
|
+
continue: Continuar
|
92
|
+
more_information: Máis información
|
93
|
+
budgets_list:
|
94
|
+
cancel_order:
|
95
|
+
more_than_one: eliminar o teu voto de %{name} e comezar de novo
|
96
|
+
only_one: eliminar o teu voto e comezar de novo.
|
97
|
+
highlighted_cta: Votar en %{name}
|
98
|
+
my_budgets: Os meus orzamentos
|
64
99
|
models:
|
100
|
+
budget:
|
101
|
+
fields:
|
102
|
+
name: Nome
|
103
|
+
projects_count: Número de proxectos
|
104
|
+
total_budget: Orzamento total
|
65
105
|
project:
|
66
106
|
fields:
|
67
107
|
title: Título
|
108
|
+
order_summary_mailer:
|
109
|
+
order_summary:
|
110
|
+
selected_projects: 'Os proxectos que seleccionaches son:'
|
68
111
|
projects:
|
69
112
|
budget_confirm:
|
70
|
-
are_you_sure: Estás de acordo? Unha vez confirmado o teu voto non podes cambialo.
|
71
113
|
cancel: Cancelar
|
72
114
|
confirm: Confirmar
|
73
115
|
description: Estes son os proxectos que escolleu para formar parte do orzamento.
|
@@ -76,15 +118,16 @@ gl:
|
|
76
118
|
close: Pechar
|
77
119
|
description: Este proxecto supera o orzamento máximo e non se pode engadir. Se o desexa, pode eliminar un proxecto que xa seleccionou para engadir ou facer o seu voto coas súas preferencias.
|
78
120
|
ok: Ok
|
79
|
-
title:
|
121
|
+
title: Orzamento máximo excedido
|
80
122
|
budget_summary:
|
81
|
-
are_you_sure:
|
123
|
+
are_you_sure: Estás certo de querer cancelar o teu voto?
|
82
124
|
assigned: 'Asignado:'
|
83
125
|
cancel_order: elimine o seu voto e volva comezar
|
84
126
|
checked_out:
|
85
127
|
description: Xa votou polo orzamento. Se mudou de idea, pode %{cancel_link}.
|
86
128
|
title: A votación do orzamento completada
|
87
129
|
description: Que proxectos crees que deberiamos asignar orzamento para? Asigne polo menos %{minimum_budget} aos proxectos que desexe e vote coas súas preferencias para definir o orzamento.
|
130
|
+
description_minimum_projects_rule: Que proxectos cres que debemos destinar o orzamento? Selecciona polo menos %{minimum_number} proxectos que desexes e vota segundo as túas preferencias para definir o orzamento.
|
88
131
|
title: Vostede decide o orzamento
|
89
132
|
count:
|
90
133
|
projects_count:
|
@@ -94,6 +137,9 @@ gl:
|
|
94
137
|
category: Categoría
|
95
138
|
scope: Alcance
|
96
139
|
search: Busca
|
140
|
+
status: Estado
|
141
|
+
status_values:
|
142
|
+
all: Todos
|
97
143
|
filters_small_view:
|
98
144
|
close_modal: Pechar modal
|
99
145
|
filter: Filtro
|
@@ -107,11 +153,15 @@ gl:
|
|
107
153
|
one: proxecto seleccionado
|
108
154
|
other: proxectos seleccionados
|
109
155
|
view: Ver
|
156
|
+
orders:
|
157
|
+
label: Ordenar proxectos por
|
110
158
|
project:
|
111
|
-
count:
|
112
|
-
one: 1 apoio
|
113
|
-
other: "%{count} soporta"
|
114
159
|
view: Ver
|
160
|
+
votes:
|
161
|
+
one: voto
|
162
|
+
other: votos
|
163
|
+
you_voted: Votaches
|
164
|
+
projects_for: Proxectos para %{name}
|
115
165
|
show:
|
116
166
|
budget: Orzamento
|
117
167
|
view_all_projects: Ver todos os proxectos
|
@@ -124,15 +174,25 @@ gl:
|
|
124
174
|
global:
|
125
175
|
announcement: Anuncio
|
126
176
|
comments_enabled: Comentarios habilitados
|
177
|
+
comments_max_length: Lonxitude máxima dos comentarios (0 para valor predefinido)
|
127
178
|
projects_per_page: Proxectos por páxina
|
128
|
-
resources_permissions_enabled: Os permisos de acción pódense
|
179
|
+
resources_permissions_enabled: Os permisos de acción pódense definir para cada reunión
|
180
|
+
scope_id: Ámbito
|
181
|
+
scopes_enabled: Ámbitos habilitados
|
182
|
+
title: Título
|
129
183
|
total_budget: Orzamento total
|
184
|
+
vote_minimum_budget_projects_number: Número mínimo de proxectos a votar
|
130
185
|
vote_threshold_percent: Porcentaxe de límite de voto
|
131
186
|
step:
|
132
187
|
announcement: Anuncio
|
133
188
|
comments_blocked: Comentarios bloqueados
|
134
189
|
show_votes: Mostrar votos
|
135
|
-
|
190
|
+
title: Título
|
191
|
+
votes: Votación
|
192
|
+
votes_choices:
|
193
|
+
disabled: Votación deshabilitada
|
194
|
+
enabled: Votación habilitada
|
195
|
+
finished: Votación finalizada
|
136
196
|
orders:
|
137
197
|
checkout:
|
138
198
|
error: Produciuse un erro ao procesar o teu voto
|
@@ -0,0 +1 @@
|
|
1
|
+
hr:
|
data/config/locales/hu.yml
CHANGED
@@ -2,7 +2,6 @@ hu:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
project:
|
5
|
-
budget: Költségvetés
|
6
5
|
decidim_category_id: Kategória
|
7
6
|
decidim_scope_id: Hatáskör
|
8
7
|
description: Leírás
|
@@ -22,7 +21,6 @@ hu:
|
|
22
21
|
destroy: Törlés
|
23
22
|
edit: Szerkesztés
|
24
23
|
import: Javaslatok importálása projektekhez
|
25
|
-
new: Új projekt
|
26
24
|
preview: Előnézet
|
27
25
|
title: Műveletek
|
28
26
|
admin:
|
@@ -70,7 +68,6 @@ hu:
|
|
70
68
|
selected_projects: 'Az általad kiválasztott projektek a következők:'
|
71
69
|
projects:
|
72
70
|
budget_confirm:
|
73
|
-
are_you_sure: Egyetértesz? Ha megerősítetted a szavazatod, már nem változtathatod meg.
|
74
71
|
cancel: Mégse
|
75
72
|
confirm: Megerősítés
|
76
73
|
description: Ezek azok a projektek, amelyek a költségvetés részét képezik.
|
@@ -117,9 +114,6 @@ hu:
|
|
117
114
|
most_voted: Legtöbb szavazattal
|
118
115
|
random: Véletlen sorrend
|
119
116
|
project:
|
120
|
-
count:
|
121
|
-
one: 1 támogató
|
122
|
-
other: "%{count} támogató"
|
123
117
|
view: Nézet
|
124
118
|
show:
|
125
119
|
budget: Költségvetés
|
@@ -148,7 +142,8 @@ hu:
|
|
148
142
|
announcement: Közlemény
|
149
143
|
comments_blocked: Megjegyzések letiltva
|
150
144
|
show_votes: Szavazatok megjelenítése
|
151
|
-
|
145
|
+
votes_choices:
|
146
|
+
enabled: Szavazás engedélyezve
|
152
147
|
orders:
|
153
148
|
checkout:
|
154
149
|
error: Hiba történt a szavazatod feldolgozása során
|
data/config/locales/id-ID.yml
CHANGED
@@ -2,7 +2,6 @@ id:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
project:
|
5
|
-
budget: Anggaran
|
6
5
|
decidim_category_id: Kategori
|
7
6
|
decidim_scope_id: Cakupan
|
8
7
|
description: Deskripsi
|
@@ -21,7 +20,6 @@ id:
|
|
21
20
|
destroy: Menghapus
|
22
21
|
edit: Edit
|
23
22
|
import: Impor proposal ke proyek
|
24
|
-
new: Proyek baru
|
25
23
|
preview: Pratinjau
|
26
24
|
title: Tindakan
|
27
25
|
admin:
|
@@ -66,7 +64,6 @@ id:
|
|
66
64
|
title: Judul
|
67
65
|
projects:
|
68
66
|
budget_confirm:
|
69
|
-
are_you_sure: Apa kamu setuju? Setelah Anda mengkonfirmasi suara Anda, Anda tidak dapat mengubahnya.
|
70
67
|
cancel: Membatalkan
|
71
68
|
confirm: Memastikan
|
72
69
|
description: Ini adalah proyek yang Anda pilih untuk menjadi bagian dari anggaran.
|
@@ -105,8 +102,6 @@ id:
|
|
105
102
|
other: proyek yang dipilih
|
106
103
|
view: Melihat
|
107
104
|
project:
|
108
|
-
count:
|
109
|
-
other: "%{count} mendukung"
|
110
105
|
view: Melihat
|
111
106
|
show:
|
112
107
|
budget: Anggaran
|
@@ -128,7 +123,8 @@ id:
|
|
128
123
|
announcement: Pengumuman
|
129
124
|
comments_blocked: Komentar diblokir
|
130
125
|
show_votes: Tampilkan suara
|
131
|
-
|
126
|
+
votes_choices:
|
127
|
+
enabled: Voting diaktifkan
|
132
128
|
orders:
|
133
129
|
checkout:
|
134
130
|
error: Terjadi masalah saat memproses suara Anda
|