decidim-accountability 0.26.2 → 0.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/permissions/decidim/accountability/admin/permissions.rb +7 -1
- data/app/views/decidim/accountability/admin/import_results/new.html.erb +7 -3
- data/app/views/decidim/accountability/admin/results/index.html.erb +1 -1
- data/app/views/decidim/accountability/results/_results_leaf.html.erb +2 -2
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +2 -2
- data/app/views/decidim/accountability/results/_timeline.html.erb +1 -1
- data/config/locales/ar.yml +0 -2
- data/config/locales/bg.yml +0 -2
- data/config/locales/ca.yml +22 -2
- data/config/locales/cs.yml +1 -2
- data/config/locales/da.yml +0 -2
- data/config/locales/de.yml +0 -2
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +22 -2
- data/config/locales/es-MX.yml +22 -2
- data/config/locales/es-PY.yml +22 -2
- data/config/locales/es.yml +22 -2
- data/config/locales/eu.yml +0 -2
- data/config/locales/fi-plain.yml +22 -2
- data/config/locales/fi.yml +22 -2
- data/config/locales/fr-CA.yml +22 -2
- data/config/locales/fr.yml +22 -2
- data/config/locales/ga-IE.yml +0 -1
- data/config/locales/gl.yml +0 -2
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/hu.yml +9 -11
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +0 -2
- data/config/locales/ja.yml +0 -2
- data/config/locales/lb.yml +0 -2
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +2 -2
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +2 -4
- data/config/locales/oc-FR.yml +1 -0
- data/config/locales/pl.yml +1 -2
- data/config/locales/pt-BR.yml +3 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -2
- data/config/locales/si-LK.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sl.yml +0 -1
- data/config/locales/sv.yml +0 -2
- data/config/locales/tr-TR.yml +0 -2
- data/config/locales/zh-CN.yml +0 -1
- data/lib/decidim/accountability/version.rb +1 -1
- metadata +23 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 168721171add06557651ed32fdd6af45bae7fdd846b44e31e1f337cf1829962a
|
|
4
|
+
data.tar.gz: 0341be9107c76860f32515d8c26da870353e98e806416e580bb7fa0db803ec4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6056c5384e877b933794f68a7ab528472f9b9a8ae6ae2e1864e24bf266c31be7df5d21e17c64e1d2efbce4fdbdd1ba6ee630a200597172d4c555978de7645e44
|
|
7
|
+
data.tar.gz: bbd0410b9c05e1cfe03af9ca1264b3f9150531e4316d2845b80d97870f2aa662c5a7bb960f883cc2bf80300cda993113f81b83e89d27e916615e76c0a0418b87
|
|
@@ -30,9 +30,10 @@ module Decidim
|
|
|
30
30
|
|
|
31
31
|
def can_perform_actions_on?(subject, resource)
|
|
32
32
|
return unless permission_action.subject == subject
|
|
33
|
+
return false if can_create_grandchildren_results?
|
|
33
34
|
|
|
34
35
|
case permission_action.action
|
|
35
|
-
when :create
|
|
36
|
+
when :create, :create_children
|
|
36
37
|
true
|
|
37
38
|
when :update, :destroy
|
|
38
39
|
resource.present?
|
|
@@ -40,6 +41,11 @@ module Decidim
|
|
|
40
41
|
false
|
|
41
42
|
end
|
|
42
43
|
end
|
|
44
|
+
|
|
45
|
+
def can_create_grandchildren_results?
|
|
46
|
+
result&.parent&.present? &&
|
|
47
|
+
permission_action.action == :create_children
|
|
48
|
+
end
|
|
43
49
|
end
|
|
44
50
|
end
|
|
45
51
|
end
|
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
9
|
<div class="card-section">
|
|
10
|
+
<div class="mb-s">
|
|
11
|
+
<p><%= t(".info",
|
|
12
|
+
link_new_status: new_status_path,
|
|
13
|
+
link_new_result: new_result_path,
|
|
14
|
+
link_export_csv: link_to(t(".download_export"),exports_path(current_component, id: "results", format: "CSV"), method: :post)
|
|
15
|
+
).try("html_safe") %></p>
|
|
16
|
+
</div>
|
|
10
17
|
<div class="row column">
|
|
11
18
|
<%= file_field_tag :csv_file %>
|
|
12
19
|
</div>
|
|
@@ -16,7 +23,4 @@
|
|
|
16
23
|
<div class="button--double form-general-submit">
|
|
17
24
|
<%= submit_tag t(".import"), class: "button" %>
|
|
18
25
|
</div>
|
|
19
|
-
<div class="import-process-info">
|
|
20
|
-
<%= t(".info", link_new_status: new_status_path, link_new_result: new_result_path, link_export_csv: link_to(t(".link"), exports_path(current_component, id: "results", format: "CSV"), method: :post)).try("html_safe") %>
|
|
21
|
-
</div>
|
|
22
26
|
<% end %>
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<td class="table-list__actions">
|
|
75
75
|
<%= icon_link_to "eye", resource_locator(result).path, t("actions.preview", scope: "decidim.accountability"), class: "action-icon--preview", target: :blank %>
|
|
76
76
|
|
|
77
|
-
<% if allowed_to? :
|
|
77
|
+
<% if allowed_to? :create_children, :result, result: result %>
|
|
78
78
|
<%= icon_link_to "plus", results_path(parent_id: result.id), t("actions.new", scope: "decidim.accountability", name: t("models.result.name", scope: "decidim.accountability.admin")), class: "action-icon--plus" %>
|
|
79
79
|
<% end %>
|
|
80
80
|
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
<div class="text-small card--meta">
|
|
20
20
|
<% if result.start_date %>
|
|
21
21
|
<strong><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></strong>
|
|
22
|
-
<span><%= result.start_date %></span>
|
|
22
|
+
<span><%= l result.start_date, format: :decidim_short %></span>
|
|
23
23
|
<% end %>
|
|
24
24
|
|
|
25
25
|
<% if result.end_date %>
|
|
26
26
|
<strong><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></strong>
|
|
27
|
-
<span><%= result.end_date %></span>
|
|
27
|
+
<span><%= l result.end_date, format: :decidim_short %></span>
|
|
28
28
|
<% end %>
|
|
29
29
|
|
|
30
30
|
<% if result.status %>
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
<div class="result-meta row">
|
|
32
32
|
<% if result.start_date %>
|
|
33
33
|
<div class="result-meta--label medium-2 columns"><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></div>
|
|
34
|
-
<div class="result-meta--data medium-10 columns"><%= result.start_date %></div>
|
|
34
|
+
<div class="result-meta--data medium-10 columns"><%= l result.start_date, format: :decidim_short %></div>
|
|
35
35
|
<% end %>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
38
38
|
<div class="result-meta row">
|
|
39
39
|
<% if result.end_date %>
|
|
40
40
|
<div class="result-meta--label medium-2 columns"><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></div>
|
|
41
|
-
<div class="result-meta--data medium-10 columns"><%= result.end_date %></div>
|
|
41
|
+
<div class="result-meta--data medium-10 columns"><%= l result.end_date, format: :decidim_short %></div>
|
|
42
42
|
<% end %>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<div class="timeline__info">
|
|
11
11
|
<div class="timeline__description">
|
|
12
12
|
<span class="timeline__date text-small">
|
|
13
|
-
<%= timeline_entry.entry_date %>
|
|
13
|
+
<%= l timeline_entry.entry_date, format: :decidim_short %>
|
|
14
14
|
</span>
|
|
15
15
|
<h4 class="timeline__title">
|
|
16
16
|
<%= translated_attribute timeline_entry.description %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -53,8 +53,6 @@ ar:
|
|
|
53
53
|
import_results:
|
|
54
54
|
new:
|
|
55
55
|
import: استيراد
|
|
56
|
-
info: "<p>نحن ننصح باتباع هذه الخطوات:</p>\n<ol>\n <li>قم بإنشاء حالات النتائج التي تريد إضافتها (<a href=\"%{link_new_status}\" target=\"_blank\">الرابط</a>)</li>\n <li>قم بإنشاء نتيجة واحدة على الأقل يدويًا من خلال لوحة المدير هذه (<a href=\"%{link_new_result}\" target=\"_blank\">link</a>) قبل أستخدام الاستيراد, للحصول على فهم أفضل للتنسيق وما ستحتاج لملئه.</li>\n <li>قم بتنزيل التصدير بتنسيق CSV(%{link_export_csv})</li>\n <li>قم بإجراء التغييرات محليًا على جهازك. يمكنك فقط تغيير الأعمدة التالية من ملف CSV:</li>\n</ol>\n<ul>\n <li><b>category/id:</b>رقم مٌعرف للفئه</li>\n <li><b>scope/id:</b>رقم مٌعرف للمجال</li>\n <li><b>parent/id:</b> رقم مٌعرف بالأب (للنتائج ذات الصلة). اختياري</li>\n <li><b>title/I18N:</b> عنوان اللغه</li>\n <li><b>description/I18N:</b> وصف اللغه</li>\n <li><b>start_date:</b>التاريخ الذي يبدأ فيه تنفيذ النتيجة (التنسيق YYYY-MM-DD)</li>\n <li><b>end_date:</b> التاريخ الذي ينتهى فيه تنفيذ النتيجة (التنسيق YYYY-MM-DD</li>\n <li><b>status/id:</b> رقم مٌعرف لحالة النتيجة</li>\n <li><b>progress:</b> النسبة المئوية (من 0 الى 100) للتنفيذ</li>\n <li><b>proposals_ids:</b> رقم مُعرف داخلى للمقترحات ذات الصلة (مفصولاً بفاصلة). يتم تحويله تلقائيًا إلى <span class=\"attribute-name\">رابط للمقترح</span></li>\n</ul>"
|
|
57
|
-
link: الرابط
|
|
58
56
|
title: استيراد النتائج من ملف CSV
|
|
59
57
|
imports:
|
|
60
58
|
create:
|
data/config/locales/bg.yml
CHANGED
|
@@ -46,8 +46,6 @@ bg:
|
|
|
46
46
|
import_results:
|
|
47
47
|
new:
|
|
48
48
|
import: Внасяне
|
|
49
|
-
info: "<p>Препоръчваме ви да изпълните следните стъпки:</p><ol><li>Създайте статусите на резултатите, които искате да добавите (<a href='%{link_new_status}' target='_blank'>връзка</a>)</li><li>Създайте поне един Резултат ръчно чрез администраторския панел (<a href='%{link_new_result}' target='_blank'>връзка</a>), преди да използвате Импортиране, за с по-добро разбиране на формата и това, което ще трябва да попълните.</li><li>Изтеглете експортиране с CSV формат (%{link_export_csv})</li><li> Направете промените локално. Можете да промените само следните колони от CSV:</li></ol><ul><li><b>категория/id:</b> ID за категорията</li><li><b>обхват/id:</b>ИД за обхвата</li><li><b> родител / id: </b> ID на родителя (за свързани резултати). Незадължително </li><li><b>заглавие/I18N:</b>Заглавие на езика X</li><li><b>описание/I18N </b>Описание на X език</li>< li><b>начало_дата:</b>дата, когато резултатът стартира изпълнението (формат ГГГГ-ММ-DD)</li><li><b>край_ дата:</b>дата, когато резултатът приключи изпълнението (формат ГГГГ-MM-DD)</li><li><b>status/id:</b>ID на състоянието за този резултат</li><li><b>прогрес:</b>Процент (от 0 до 100) на изпълнението</li><li><b>offers_ids:</b>вътрешен ID на свързаните предложения (разделени със запетая). Той автоматично се преобразува в <span class='attribute-name'>предложение_url</span></li></ul>"
|
|
50
|
-
link: връзка
|
|
51
49
|
title: Импортирай резултати от CSV
|
|
52
50
|
imports:
|
|
53
51
|
create:
|
data/config/locales/ca.yml
CHANGED
|
@@ -48,9 +48,29 @@ ca:
|
|
|
48
48
|
results: Resultats
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Descarregar l'exportació en format CSV
|
|
51
52
|
import: Importar
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Et recomanem que segueixis les passes següents:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li><a href='%{link_new_status}' target='_blank'>Crea els estats per als resultats</a> que vulguis afegir</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'>Crea com a mínim un resultat manualment</a> a través del taulell d'administració abans d'importar, per a entendre millor el format i com cal omplir-ho.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Fes els canvis en local. Només pots modificar les següents columnes del CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b>id category/id:</b> ID per la categoria</li>
|
|
62
|
+
<li><b>scope/id:</b> ID per a l'àmbit</li>
|
|
63
|
+
<li><b>parent/id:</b> ID per al pare (per a resultats relacionats). Opcional</li>
|
|
64
|
+
<li><b>title/I18N:</b> Title en la llengua X</li>
|
|
65
|
+
<li><b>description/I18N:</b> Descripció en la lleguna X </li>
|
|
66
|
+
<li><b>start_date:</b> data en la que s'inicia l'execució del resultat (format YYYY-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> data en la que finalitza l'execució del resultat (format YYYY-MM-DD)</li>
|
|
68
|
+
<li><b>status/id:</b> ID de l'estat per a aquest resultat</li>
|
|
69
|
+
<li><b>progress:</b> Tant per cent (de 0 a 100) d'execució</li>
|
|
70
|
+
<li><b>proposals_ids:</b> ID intern de les propostes relacionades (separades per comes). Es convertirà automàticament en <span class='attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importar resultats via CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/cs.yml
CHANGED
|
@@ -50,9 +50,8 @@ cs:
|
|
|
50
50
|
results: Výsledky
|
|
51
51
|
import_results:
|
|
52
52
|
new:
|
|
53
|
+
download_export: Stáhnout export s CSV formátem
|
|
53
54
|
import: Importovat
|
|
54
|
-
info: "<p>Doporučujeme postupovat podle těchto kroků:</p><ol><li>Vytvořte stavy pro výsledky, které chcete přidat (<a href='%{link_new_status}' target='_blank'>odkaz</a>)</li><li>Vytvořte alespoň jeden výsledek ručně přes tento Admin panel (<a href='%{link_new_result}' target='_blank'>odkaz</a>) před použitím Importu, pro lepší pochopení formátu a toho, co budete muset vyplnit.</li><li>Stáhněte si export s CSV formátem (%{link_export_csv})</li><li>Proveďte změny lokálně. Následující sloupce CSV:</li></ol><ul><li><b>kategorie / id:</b> ID pro kategorii</li><li><b>rozsah / id:</b> ID pro rozsah</li><li><b>nadřazené / id:</b> ID nadřazených (pro související výsledky). Nepovinný</li><li><b>název / I18N:</b> Název jazyka X</li><li><b>popis / I18N:</b> Popis jazyka X</li><li><b>start_date:</b> datum, kdy výsledek začne provádět (formát YYYY-MM-DD)</li><li><b>end_date:</b> den, kdy výsledek končí provedení (formát YYYY-MM-DD)</li><li><b>status / id:</b> ID stavu pro tento výsledek</li><li><b>pokrok:</b> procenta (od 0 do 100) provedení</li><li><b>proposals_ids:</b> interní ID souvisejících návrhů (oddělené čárkou). Automaticky se převede na <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
55
|
-
link: odkaz
|
|
56
55
|
title: Importovat výsledky z CSV
|
|
57
56
|
imports:
|
|
58
57
|
create:
|
data/config/locales/da.yml
CHANGED
|
@@ -46,8 +46,6 @@ da:
|
|
|
46
46
|
import_results:
|
|
47
47
|
new:
|
|
48
48
|
import: Import
|
|
49
|
-
info: "<p>Vi anbefaler, at du følger disse trin:</p><ol><li>Opret status for de resultater, du ønsker at tilføje (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Opret mindst ét resultat manuelt via dette administrationspanel (<a href='%{link_new_result}' target='_blank'>link</a>) før brug af import for at få en bedre forståelse af formatet, og hvad du har brug for til at udfylde det.</li><li>Download eksporten som CSV-format (%{link_export_csv})</li><li>Lav ændringerne lokalt. Du kan kun ændre følgende kolonner i CSV’et:</li></ol><ul><li><b>category/id:</b> ID for kategorien</li><li><b>scope/id:</b> ID for anvendelsesområde</li><li><b>parent/id:</b> ID for forælder(tilknyttede resultater). Valgfrit</li><li><b>title/I18N:</b> Titel for X-sprog</li><li><b>description/I18N:</b> Beskrivelse på X-sprog</li><li><b> dato, hvor resultatet begynder med at blive gennemført (format YYYY-MM-DD)</li><li><b>slutdato:</b> dato, hvor gennemførelsen af resultatet afsluttes (format YYYY-MM-DD)</li><li><b>status/id:</b> ID for status for dette resultat</li><li><b>fremskridt:</b> procentandel (fra 0 til 100) for gennemførelsen </li><li><b>proposals_ids:</b> internt ID for de tilknyttede forslag (adskilt med et komma). Den konverteres automatisk til <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
50
|
-
link: link
|
|
51
49
|
title: Importresultater fra CSV
|
|
52
50
|
imports:
|
|
53
51
|
create:
|
data/config/locales/de.yml
CHANGED
|
@@ -49,8 +49,6 @@ de:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importieren
|
|
52
|
-
info: "<p>Wir empfehlen, dass Sie folgende Schritte befolgen:</p><ol><li>Erstellen Sie den Status der Ergebnisse, die Sie hinzufügen möchten (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Erstellen Sie mindestens ein Ergebnis über diesen Administrator-Panel (<a href='%{link_new_result}' target='_blank'>link</a>) bevor Sie Importieren, damit Sie mit dem Format und den benötigten Eingaben vertraut sind.</li><li>Laden Sie den Export im CSV-Format herunter (%{link_export_csv})</li><li>Nehmen Sie Änderungen lokal vor. Sie können nur die folgenden Spalten der CSV ändern:</li></ol><ul><li><b>Kategorie/ID:</b> ID der Kategorie</li><li><b>Umfang/ID:</b> ID des Umfangs</li><li><b>Übergeordnet/ID:</b> Übergeordnete ID (für verwandte Ergebnisse). Optional</li><li><b>Titel/I18N:</b> Titel in Sprache X </li><li><b>Beschreibung/I18N:</b> Beschreibung in Sprache X </li><li><b>start_datum:</b> Datum, an dem die Ausführung des Ergebnisses beginnt (Format JJJJ-MM-TT)</li><li><b>end_datum:</b> Datum, an dem die Ausführung des Ergebnisses endet (Format JJJJ-MM-TT)</li><li><b>Status/ID:</b> ID des Status dieses Ergebnisses</li><li><b>Fortschritt:</b> Prozentualer (von 0 bis 100) Fortschritt der Durchführung</li><li><b>Vorschläge_IDs:</b> Interne ID der verwandten Vorschläge (getrennt durch Komma). Dies wird automatisch umgewandelt in <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: Verknüpfung
|
|
54
52
|
title: Ergebnisse von CSV importieren
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/el.yml
CHANGED
|
@@ -49,8 +49,6 @@ el:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Εισαγωγή
|
|
52
|
-
info: "<p>Σας συνιστούμε να ακολουθήσετε αυτά τα βήματα:</p><ol><li>Δημιουργήστε τις Καταστάσεις για τα Αποτελέσματα που θέλετε να προσθέσετε (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Δημιουργήστε τουλάχιστον ένα Αποτέλεσμα χειροκίνητα μέσω αυτού του Πίνακα διαχειριστή (<a href='%{link_new_result}' target='_blank'>link</a>), προτού χρησιμοποιήσετε την Εισαγωγή, προκειμένου να κατανοήσετε καλύτερα τη μορφή και τα στοιχεία που πρέπει να συμπληρώσετε.</li><li>Πραγματοποιήστε λήψη της Εξαγωγής σε μορφή CSV (%{link_export_csv})</li><li>Πραγματοποιήστε τις αλλαγές τοπικά. Μπορείτε να αλλάξετε μόνο τις παρακάτω στήλες του CSV:</li></ol><ul><li><b>κατηγορία/αναγνωριστικό:</b> Αναγνωριστικό για την Κατηγορία</li><li><b>πεδίο εφαρμογής/αναγνωριστικό:</b> Αναγνωριστικό για το Πεδίο εφαρμογής</li><li><b>γονικό στοιχείο/αναγνωριστικό:</b> Αναγνωριστικό για το γονικό στοιχείο (για σχετικά Αποτελέσματα). Προαιρετικά</li><li><b>τίτλος/I18N:</b> Τίτλος στη γλώσσα X</li><li><b>περιγραφή/I18N:</b> Περιγραφή στη γλώσσα X</li><li><b>ημερομηνία_έναρξης:</b> ημερομηνία κατά την οποία το αποτέλεσμα ξεκινά την εκτέλεση (μορφή ΕΕΕΕ-ΜΜ-ΗΗ)</li><li><b>ημερομηνία_λήξης:</b> ημερομηνία κατά την οποία το αποτέλεσμα ολοκληρώνει την εκτέλεση (μορφή ΕΕΕΕ-ΜΜ-ΗΗ)</li><li><b>κατάσταση/αναγνωριστικό:</b> Αναγνωριστικό της Κατάστασης αυτού του αποτελέσματος</li><li><b>πρόοδος:</b> Ποσοστό (από 0 έως 100) της εκτέλεσης</li><li><b>αναγνωριστικά_προτάσεων:</b> εσωτερικό αναγνωριστικό των σχετικών προτάσεων (διαχωρισμένων με κόμμα). Μετατρέπεται αυτόματα σε <span class='attribute-name'>url_πρότασης</span></li></ul>"
|
|
53
|
-
link: σύνδεσμος
|
|
54
52
|
title: Εισαγωγή αποτελεσμάτων από αρχείο CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/en.yml
CHANGED
|
@@ -49,9 +49,29 @@ en:
|
|
|
49
49
|
results: Results
|
|
50
50
|
import_results:
|
|
51
51
|
new:
|
|
52
|
+
download_export: Download the Export with CSV format
|
|
52
53
|
import: Import
|
|
53
|
-
info:
|
|
54
|
-
|
|
54
|
+
info: |
|
|
55
|
+
<p>We recommend that you follow these steps:</p>
|
|
56
|
+
<ol>
|
|
57
|
+
<li><a href='%{link_new_status}' target='_blank'>Create the Statuses for the Results</a> that you want to add</li>
|
|
58
|
+
<li><a href='%{link_new_result}' target='_blank'>Create at least one Result manually</a> through this Admin panel before using Import, for having a better understanding of the format and what you'll need to fill out.</li>
|
|
59
|
+
<li>%{link_export_csv}</li>
|
|
60
|
+
<li>Make the changes locally. You can only change the following columns of the CSV:
|
|
61
|
+
<ul>
|
|
62
|
+
<li><b>category/id:</b> ID for the Category</li>
|
|
63
|
+
<li><b>scope/id:</b> ID for the Scope</li>
|
|
64
|
+
<li><b>parent/id:</b> ID of the parent (for related Results). Optional</li>
|
|
65
|
+
<li><b>title/en:</b> Title on English language. This will depend on your platform language configuration.</li>
|
|
66
|
+
<li><b>description/en:</b> Description on English language. This will depend on your platform language configuration.</li>
|
|
67
|
+
<li><b>start_date:</b> date when the result starts execution (format YYYY-MM-DD)</li>
|
|
68
|
+
<li><b>end_date:</b> date when the result ends execution (format YYYY-MM-DD)</li>
|
|
69
|
+
<li><b>status/id:</b> ID of the Status for this result</li>
|
|
70
|
+
<li><b>progress:</b> Percentage (from 0 to 100) of the execution</li>
|
|
71
|
+
<li><b>proposals_ids:</b> internal ID of the related proposals (separated with a comma). It gets automatically converted to <span class='attribute-name'>proposal_url</span></li>
|
|
72
|
+
</ul>
|
|
73
|
+
</li>
|
|
74
|
+
</ol>
|
|
55
75
|
title: Import results from CSV
|
|
56
76
|
imports:
|
|
57
77
|
create:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -48,9 +48,29 @@ es-MX:
|
|
|
48
48
|
results: Resultados
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Descargar la exportación con formato CSV
|
|
51
52
|
import: Importar
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Te recomendamos que sigas los siguientes pasos:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li> <a href='%{link_new_status}' target='_blank'>Crea los estados para los resultados</a> que quieras agregar</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'> Crea por lo menos un resultado manualmente</a> a través del panel de administración antes de importar, para entender mejor el formato y cómo rellenarlo.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Haz los cambios en local. Sólo puedes modificar las siguientes columnas del CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b> id category/id:</b> ID para la categoría</li>
|
|
62
|
+
<li><b>scope/id:</b> ID para el ámbito</li>
|
|
63
|
+
<li><b>parent/id:</b> ID para el padre (para resultados relacionados). Opcional</li>
|
|
64
|
+
<li><b>title/I18N:</b> título en el idioma X</li>
|
|
65
|
+
<li><b>description/I18N:</b> descripción en el idioma X</li>
|
|
66
|
+
<li><b>start_date:</b> fecha en la que se inicia la ejecución del resultado (formato AAAA-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> fecha en la que finaliza la ejecución del resultado (formato AAAA-MM-DD) </li>
|
|
68
|
+
<li><b> status/id:</b> ID del estado para este resultado</li>
|
|
69
|
+
<li><b>progress:</b> Tanto por ciento (de 0 a 100) de ejecución</li>
|
|
70
|
+
<li><b>proposals_ids:</b> ID interno de las propuestas relacionadas (separadas por comas). Se convertirá automáticamente en <span class = 'attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importa resultados vía CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -48,9 +48,29 @@ es-PY:
|
|
|
48
48
|
results: Resultados
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Descargar la exportación con formato CSV
|
|
51
52
|
import: Importar
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Te recomendamos que sigas los siguientes pasos:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li> <a href='%{link_new_status}' target='_blank'>Crea los estados para los resultados</a> que quieras agregar</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'> Crea por lo menos un resultado manualmente</a> a través del panel de administración antes de importar, para entender mejor el formato y cómo rellenarlo.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Haz los cambios en local. Sólo puedes modificar las siguientes columnas del CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b> id category/id:</b> ID para la categoría</li>
|
|
62
|
+
<li><b>scope/id:</b> ID para el ámbito</li>
|
|
63
|
+
<li><b>parent/id:</b> ID para el padre (para resultados relacionados). Opcional</li>
|
|
64
|
+
<li><b>title/I18N:</b> título en el idioma X</li>
|
|
65
|
+
<li><b>description/I18N:</b> descripción en el idioma X</li>
|
|
66
|
+
<li><b>start_date:</b> fecha en la que se inicia la ejecución del resultado (formato AAAA-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> fecha en la que finaliza la ejecución del resultado (formato AAAA-MM-DD) </li>
|
|
68
|
+
<li><b> status/id:</b> ID del estado para este resultado</li>
|
|
69
|
+
<li><b>progress:</b> Tanto por ciento (de 0 a 100) de ejecución</li>
|
|
70
|
+
<li><b>proposals_ids:</b> ID interno de las propuestas relacionadas (separadas por comas). Se convertirá automáticamente en <span class = 'attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importa resultados vía CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/es.yml
CHANGED
|
@@ -48,9 +48,29 @@ es:
|
|
|
48
48
|
results: Resultados
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Descargar la exportación con formato CSV
|
|
51
52
|
import: Importar
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Te recomendamos que sigas los siguientes pasos:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li> <a href='%{link_new_status}' target='_blank'>Crea los estados para los resultados</a> que quieras agregar</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'> Crea por lo menos un resultado manualmente</a> a través del panel de administración antes de importar, para entender mejor el formato y cómo rellenarlo.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Haz los cambios en local. Sólo puedes modificar las siguientes columnas del CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b> id category/id:</b> ID para la categoría</li>
|
|
62
|
+
<li><b>scope/id:</b> ID para el ámbito</li>
|
|
63
|
+
<li><b>parent/id:</b> ID para el padre (para resultados relacionados). Opcional</li>
|
|
64
|
+
<li><b>title/I18N:</b> título en el idioma X</li>
|
|
65
|
+
<li><b>description/I18N:</b> descripción en el idioma X</li>
|
|
66
|
+
<li><b>start_date:</b> fecha en la que se inicia la ejecución del resultado (formato AAAA-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> fecha en la que finaliza la ejecución del resultado (formato AAAA-MM-DD) </li>
|
|
68
|
+
<li><b> status/id:</b> ID del estado para este resultado</li>
|
|
69
|
+
<li><b>progress:</b> Tanto por ciento (de 0 a 100) de ejecución</li>
|
|
70
|
+
<li><b>proposals_ids:</b> ID interno de las propuestas relacionadas (separadas por comas). Se convertirá automáticamente en <span class = 'attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importar resultados vía CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/eu.yml
CHANGED
|
@@ -49,8 +49,6 @@ eu:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Inportatu
|
|
52
|
-
info: "Ondoko urrats hauek ematea gomendatzen dizugu: </p><ol><li> Sortu egoerak erantsi nahi dituzun emaitzetarako (<a href='%{link_new_status}' target='_blank'> link </a>)</li><li>) Sortu emaitza bat gutxienez eskuz administrazioaren panelaren bidez (<a href='%{link_new_result}' target='_blank'>link</a>) inportatu baino lehen, hobeto ulertzeko formatua eta nola bete. </li><li> Deskargatu CSV formatuko artxiboa (%{link_export_csv}</li><li> Egin aldaketak lokalean. CSVren ondoko zutabeak baino ezin dituzu aldatu: </li></ol><ul><li><b> id category /id:</b> ID kategoriarako </li><li><b>scope /id:</b> ID eremurako </li><li><b>parent /id:</b> ID aitarentzat (erlazionatutako emaitzetarako). Aukerakoa </li> <li><b>title /I18N:</b> izenburua hizkuntzan X</li> <li><b> deskribapena /I18N:</b> deskribapena hizkuntzan X</li><li><b>start_date: </b> emaitza gauzatzen den hasiera-data (AAAA-MM-DD formatua) </li><li><b>end emaitza gauzatzen den amaiera-data (AAAA-MM-DD formatua) </li><li><b> status /id: </b> egoeraren ID emaitza honetarako </li><li><b>progress:</b> gauzatzearen ehunekoa (0tik 100era) </li><li><b>proposals_ids:</b> erlazionatutako proposamenen barneko ID (komez bidez bereizita). Automatikoki bihurtuko da: <span class = 'attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: lotura
|
|
54
52
|
title: Inportatu emaitzak CSVtik
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -48,9 +48,29 @@ fi-pl:
|
|
|
48
48
|
results: Tulokset
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Lataa vientitiedosto CSV-muodossa
|
|
51
52
|
import: Tuo
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Suorittelemme tekemään seuraavat toimenpiteet suorittaaksesi tuonnin onnistuneesti:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li><a href='%{link_new_status}' target='_blank'>Luo tilat tuloksille</a></li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'>Luo vähintään yksi tulos käsin</a> hallintapaneelin kautta ennen tuontia, jotta ymmärrät paremmin, miltä tuontitiedoston tulee näyttää.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Tee tiedostoon muutoksia tietokoneellasi. Voit muuttaa ainoastaan seuraavia sarakkeita CSV-tiedostossa:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b>category/id:</b> Aihepiirin ID-tunniste</li>
|
|
62
|
+
<li><b>scope/id:</b> Teeman ID-tunniste</li>
|
|
63
|
+
<li><b>parent/id:</b> Tuloksen isännän ID-tunniste. Vapaaehtoinen</li>
|
|
64
|
+
<li><b>title/fi:</b> Otsikko suomeksi. Tämän sarakkeen nimi riippuu alustalle määritetyistä kielistä.</li>
|
|
65
|
+
<li><b>description/fi:</b> Kuvaus suomeksi. Tämän sarakkeen nimi riippuu alustalle määritetyistä kielistä.</li>
|
|
66
|
+
<li><b>start_date:</b> Tuloksen toteuttamisen aloituspäivämäärä (muodossa YYYY-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> Tuloksen toteuttamisen päättymispäivämäärä (muodossa YYYY-MM-DD)</li>
|
|
68
|
+
<li><b>status/id:</b> Tuloksen tilan ID-tunniste</li>
|
|
69
|
+
<li><b>progress:</b> Tuloksen toteutuksen prosentuaalisen etenemisen tila (välillä 0-100)</li>
|
|
70
|
+
<li><b>proposals_ids:</b> Liittyvien ehdotusten ID-numerot (pilkulla eroteltuna). Nämä muutetaan automaattisesti <span class='attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Tuo tulokset CSV-tiedostosta
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/fi.yml
CHANGED
|
@@ -48,9 +48,29 @@ fi:
|
|
|
48
48
|
results: Tulokset
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Lataa vientitiedosto CSV-muodossa
|
|
51
52
|
import: Tuo
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Suorittelemme tekemään seuraavat toimenpiteet suorittaaksesi tuonnin onnistuneesti:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li><a href='%{link_new_status}' target='_blank'>Luo tilat tuloksille</a></li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'>Luo vähintään yksi tulos käsin</a> hallintapaneelin kautta ennen tuontia, jotta ymmärrät paremmin, miltä tuontitiedoston tulee näyttää.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Tee tiedostoon muutoksia tietokoneellasi. Voit muuttaa ainoastaan seuraavia sarakkeita CSV-tiedostossa:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b>category/id:</b> Aihepiirin ID-tunniste</li>
|
|
62
|
+
<li><b>scope/id:</b> Teeman ID-tunniste</li>
|
|
63
|
+
<li><b>parent/id:</b> Tuloksen isännän ID-tunniste. Vapaaehtoinen</li>
|
|
64
|
+
<li><b>title/fi:</b> Otsikko suomeksi. Tämän sarakkeen nimi riippuu alustalle määritetyistä kielistä.</li>
|
|
65
|
+
<li><b>description/fi:</b> Kuvaus suomeksi. Tämän sarakkeen nimi riippuu alustalle määritetyistä kielistä.</li>
|
|
66
|
+
<li><b>start_date:</b> Tuloksen toteuttamisen aloituspäivämäärä (muodossa YYYY-MM-DD)</li>
|
|
67
|
+
<li><b>end_date:</b> Tuloksen toteuttamisen päättymispäivämäärä (muodossa YYYY-MM-DD)</li>
|
|
68
|
+
<li><b>status/id:</b> Tuloksen tilan ID-tunniste</li>
|
|
69
|
+
<li><b>progress:</b> Tuloksen toteutuksen prosentuaalisen etenemisen tila (välillä 0-100)</li>
|
|
70
|
+
<li><b>proposals_ids:</b> Liittyvien ehdotusten ID-numerot (pilkulla eroteltuna). Nämä muutetaan automaattisesti <span class='attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Tuo tulokset CSV-tiedostosta
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -48,9 +48,29 @@ fr-CA:
|
|
|
48
48
|
results: Réalisations
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Télécharger l'export au format CSV
|
|
51
52
|
import: Importer
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Nous vous recommandons les étapes suivantes:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li><a href='%{link_new_status}' target='_blank'>Créer les Status pour les résultats</a> que vous voulez ajouter</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'>Créer au moins un résultat manuellement</a> via ce panneau admin avant d'utiliser l'import, pour mieux comprendre le format et ce que vous devrez compléter.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Appliquer les changement localement. Vous ne pouvez changer que les colonnes suivantes du CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b>category/id:</b> ID de la catégorie</li>
|
|
62
|
+
<li><b>scope/id:</b> ID du périmètre d'application</li>
|
|
63
|
+
<li><b>parent/id:</b> ID du parent (pour résultat liés). Optionel</li>
|
|
64
|
+
<li><b>title/en:</b> Titre en anglais. Cela dépend de la configuration des langues sur votre plateforme.</li>
|
|
65
|
+
<li><b>description/en:</b> Description en anglais. Cela dépend de la configuration des langues sur votre plateforme.</li>
|
|
66
|
+
<li><b>start_date:</b> date à partir de laquelle le résultat est mis en œuvre (format AAAA-MM-JJ)</li>
|
|
67
|
+
<li><b>end_date:</b> date à laquelle se termine la mise en œuvre du résultat (format AAAA-MM-JJ)</li>
|
|
68
|
+
<li><b>status/id:</b> ID du status de ce résultat</li>
|
|
69
|
+
<li><b>progress:</b> Pourcentage (de 0 à 100) de l'exécution</li>
|
|
70
|
+
<li><b>proposals_ids:</b> IDs des propositions liées (séparés par une virgule). C'est automatiquement converti en <span class='attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importer les résultats depuis un fichier CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/fr.yml
CHANGED
|
@@ -48,9 +48,29 @@ fr:
|
|
|
48
48
|
results: Réalisations
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Télécharger l'export au format CSV
|
|
51
52
|
import: Importer
|
|
52
|
-
info:
|
|
53
|
-
|
|
53
|
+
info: |
|
|
54
|
+
<p>Nous vous recommandons les étapes suivantes:</p>
|
|
55
|
+
<ol>
|
|
56
|
+
<li><a href='%{link_new_status}' target='_blank'>Créer les Status pour les résultats</a> que vous voulez ajouter</li>
|
|
57
|
+
<li><a href='%{link_new_result}' target='_blank'>Créer au moins un résultat manuellement</a> via ce panneau admin avant d'utiliser l'import, pour mieux comprendre le format et ce que vous devrez compléter.</li>
|
|
58
|
+
<li>%{link_export_csv}</li>
|
|
59
|
+
<li>Appliquer les changement localement. Vous ne pouvez changer que les colonnes suivantes du CSV:
|
|
60
|
+
<ul>
|
|
61
|
+
<li><b>category/id:</b> ID de la catégorie</li>
|
|
62
|
+
<li><b>scope/id:</b> ID du périmètre d'application</li>
|
|
63
|
+
<li><b>parent/id:</b> ID du parent (pour résultat liés). Optionel</li>
|
|
64
|
+
<li><b>title/en:</b> Titre en anglais. Cela dépend de la configuration des langues sur votre plateforme.</li>
|
|
65
|
+
<li><b>description/en:</b> Description en anglais. Cela dépend de la configuration des langues sur votre plateforme.</li>
|
|
66
|
+
<li><b>start_date:</b> date à partir de laquelle le résultat est mis en œuvre (format AAAA-MM-JJ)</li>
|
|
67
|
+
<li><b>end_date:</b> date à laquelle se termine la mise en œuvre du résultat (format AAAA-MM-JJ)</li>
|
|
68
|
+
<li><b>status/id:</b> ID du status de ce résultat</li>
|
|
69
|
+
<li><b>progress:</b> Pourcentage (de 0 à 100) de l'exécution</li>
|
|
70
|
+
<li><b>proposals_ids:</b> IDs des propositions liées (séparés par une virgule). C'est automatiquement converti en <span class='attribute-name'>proposal_url</span></li>
|
|
71
|
+
</ul>
|
|
72
|
+
</li>
|
|
73
|
+
</ol>
|
|
54
74
|
title: Importer les résultats depuis un fichier CSV
|
|
55
75
|
imports:
|
|
56
76
|
create:
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
|
@@ -49,8 +49,6 @@ gl:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importar
|
|
52
|
-
info: "<p>Recomendámosche seguir os seguintes pasos:</p><ol><li>Crear os estados para os Resultados que desexes engadir (<a href='%{link_new_status}' target='_blank'>ligazón</a>)</li><li>Crear polo menos un Resultado de xeito manual a través deste panel de administrador (<a href='%{link_new_result}' target='_blank'>ligazón</a>) antes de usar Importar, para entender o formato e que precisas encher.</li><li>Descargar o ficheiro en formato CSV (%{link_export_csv})</li><li>Fai os trocos localmente. Só podes trocar as seguintes columnas do CSV:</li></ol><ul><li><b>category/id:</b> ID da categoría</li><li><b>scope/id:</b> ID do ámbito</li><li><b>parent/id:</b> ID do pai (para Resultados relacionados). Opcional</li><li><b>title/I18N:</b> Título no idioma X</li><li><b>description/I18N:</b> Descrición no idioma X</li><li><b>start_date:</b> data na que se inicia a execución do resultado (formato YYYY-MM-DD)</li><li><b>end_date:</b> data na que remata a execución (formato YYYY-MM-DD)</li><li><b>status/id:</b> ID do estado do resultado</li><li><b>progress:</b> Porcentaxe (de 0 a 100) da execución</li><li><b>proposals_ids:</b> ID interno das propostas relacionadas (separadas por comas). Isto converterase automaticamente en <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: ligazón
|
|
54
52
|
title: Importar resultados dun CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gn:
|
data/config/locales/hu.yml
CHANGED
|
@@ -4,7 +4,7 @@ hu:
|
|
|
4
4
|
result:
|
|
5
5
|
decidim_accountability_status_id: Állapot
|
|
6
6
|
decidim_category_id: Kategória
|
|
7
|
-
decidim_scope_id:
|
|
7
|
+
decidim_scope_id: Hatókör
|
|
8
8
|
description: Leírás
|
|
9
9
|
end_date: Befejezés dátuma
|
|
10
10
|
progress: Folyamat
|
|
@@ -49,8 +49,6 @@ hu:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importál
|
|
52
|
-
info: "<p>Javasoljuk, hogy kövesse az alábbi lépéseket:</p><ol><li>Hozza létre a hozzáadni kívánt Eredmények állapotait (<a href='%{link_new_status}' target='_blank'>link</a>).</li><li>Az Importálás lehetőség használata előtt hozzon létre legalább egy eredményt manuálisan ezen az Adminisztrációs panelen keresztül (<a href='%{link_new_result}' target='_blank'>link</a>), hogy jobban megismerje a használni kívánt formátumot, valamint az adatokat, amelyeket meg kell adnia.</li><li>Töltse le az Exportált elemet CSV-formátumban (%{link_export_csv})</li><li>A módosításokat helyileg végezze el. A CSV-fájlban kizárólag a következő oszlopokat módosíthatja:</li></ol><ul><li><b>category/id:</b> a Kategória azonosítója</li><li><b>scope/id:</b> az Alkalmazási kör azonosítója</li><li><b>parent/id:</b> a Fölérendelt objektum azonosítója (a kapcsolódó Eredmények esetében). Opcionális</li><li><b>title/I18N:</b> Cím X nyelven</li><li><b>description/I18N:</b> Leírás X nyelven</li><li><b>start_date:</b> az eredmény végrehajtásának kezdő dátuma (formátum: ÉÉÉÉ-HH-NN)</li><li><b>end_date:</b> az eredmény végrehajtásának záró dátuma (formátum: ÉÉÉÉ-HH-NN)</li><li><b>status/id:</b> az eredmény Állapotának azonosítója</li><li><b>progress:</b> a végrehajtás mértéke százalékban kifejezve (0 és 100 közötti érték)</li><li><b>proposals_ids:</b> a kapcsolódó javaslatok belső azonosítói (vesszővel elválasztva). Automatikusan a következőre konvertálva: <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: link
|
|
54
52
|
title: Eredmények betöltése CSV-ből
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
|
@@ -94,7 +92,7 @@ hu:
|
|
|
94
92
|
index:
|
|
95
93
|
title: Állapotok
|
|
96
94
|
new:
|
|
97
|
-
create:
|
|
95
|
+
create: Állapot létrehozása
|
|
98
96
|
title: Új állapot
|
|
99
97
|
update:
|
|
100
98
|
invalid: Probléma történt az állapot frissítésekor
|
|
@@ -109,7 +107,7 @@ hu:
|
|
|
109
107
|
title: Bejegyzés szerkesztése
|
|
110
108
|
update: Bejegyzés frissítése
|
|
111
109
|
index:
|
|
112
|
-
title: Projekt
|
|
110
|
+
title: Projekt idővonal bejegyzései
|
|
113
111
|
new:
|
|
114
112
|
create: Bejegyzés létrehozása
|
|
115
113
|
title: Új bejegyzés
|
|
@@ -170,7 +168,7 @@ hu:
|
|
|
170
168
|
other: "%{count} találat"
|
|
171
169
|
filters:
|
|
172
170
|
all: Összes
|
|
173
|
-
scopes:
|
|
171
|
+
scopes: Hatókörök
|
|
174
172
|
home:
|
|
175
173
|
categories_label: Kategóriák
|
|
176
174
|
subcategories_label: Alkategóriák
|
|
@@ -225,13 +223,13 @@ hu:
|
|
|
225
223
|
accountability:
|
|
226
224
|
proposal_linked:
|
|
227
225
|
email_intro: 'A "%{proposal_title}" nevű javaslat szerepel az eredményben. Erről az oldalról érhető el:'
|
|
228
|
-
email_outro: Ezt az értesítést azért kaptad, mert követed
|
|
226
|
+
email_outro: 'Ezt az értesítést azért kaptad, mert ezt követed: "%{proposal_title}". Az értesítéseket az előző linkre kattintva kapcsolhatod ki.'
|
|
229
227
|
email_subject: A %{proposal_title} frissítve lett
|
|
230
228
|
notification_title: 'A(z) <a href="%{proposal_path}">%{proposal_title}</a> javaslat szerepel ebben a(z) eredményben: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
231
229
|
result_progress_updated:
|
|
232
230
|
email_intro: 'A "%{resource_title}" eredmény, amely magában foglalja a "%{proposal_title}" javaslatot, most már %{progress}% -ban teljes. Láthatod ezt erről oldalról:'
|
|
233
|
-
email_outro: Ezt az értesítést azért kaptad, mert "%{proposal_title}" -t követed, és ez a javaslat szerepel a "%{resource_title}" eredményben.
|
|
234
|
-
email_subject: '%{resource_title} frissítése'
|
|
231
|
+
email_outro: Ezt az értesítést azért kaptad, mert "%{proposal_title}" -t követed, és ez a javaslat szerepel a "%{resource_title}" eredményben. Leállíthatod az értesítések fogadását követve az előző linket.
|
|
232
|
+
email_subject: '%{resource_title} frissítése folyamatban'
|
|
235
233
|
notification_title: Az eredmény <a href="%{resource_path}">%{resource_title}</a>, amely magában foglalja a <a href="%{proposal_path}">%{proposal_title}</a>javaslatot, most %{progress}%-ban teljes.
|
|
236
234
|
metrics:
|
|
237
235
|
results:
|
|
@@ -243,8 +241,8 @@ hu:
|
|
|
243
241
|
see_all: Eredmények megtekintése (%{count})
|
|
244
242
|
resource_links:
|
|
245
243
|
included_projects:
|
|
246
|
-
result_project:
|
|
244
|
+
result_project: Az eredményben szereplő projektek
|
|
247
245
|
included_proposals:
|
|
248
|
-
result_proposal:
|
|
246
|
+
result_proposal: Ebben az eredményben szereplő javaslatok
|
|
249
247
|
statistics:
|
|
250
248
|
results_count: Találatok
|
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
|
@@ -49,8 +49,6 @@ it:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importa
|
|
52
|
-
info: "<p>Si consiglia di seguire questi passaggi:</p><ol><li>Creare gli Stati per i risultati che si desidera aggiungere (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Creare manualmente almeno un risultato attraverso questo pannello di amministrazione (<a href='%{link_new_result}' target='_blank'>link</a>) prima di utilizzare Import, per avere una migliore comprensione del formato e di ciò che è necessario compilare.</li><li>Scarica l'esportazione nel formato CSV (%{link_export_csv})</li><li>Effettua le modifiche localmente. È possibile modificare solo le seguenti colonne del CSV:</li></ol><ul><li><b>categoria/id:</b> ID per la categoria</li><li><b>scope/id:</b> ID per l'ambito</li><li><b>parent/id:</b> ID dell'origine (per i risultati correlati). Opzionale</li><li><b>titolo/I18N:</b> Titolo sulla lingua X</li><li><b>descrizione/I18N:</b> Descrizione sulla lingua X</li><li><b>start_date:</b> data in cui il risultato inizia l'esecuzione (formato YYYY-MM-DD)</li><li><b>end_date:</b> data in cui il risultato termina l'esecuzione (formato AAAA-MM-DD)</li><li><b>status/id:</b> ID dello stato per questo risultato</li><li><b>progresso:</b> Percentuale (da 0 a 100) dell'esecuzione</li><li><b>proposte_ids:</b> ID interno delle relative proposte (separate da una virgola). Viene convertito automaticamente in <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: collegamento
|
|
54
52
|
title: Importa risultati da CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/ja.yml
CHANGED
|
@@ -48,8 +48,6 @@ ja:
|
|
|
48
48
|
import_results:
|
|
49
49
|
new:
|
|
50
50
|
import: インポート
|
|
51
|
-
info: "<p>以下の手順をお勧めします:</p><ol><li>追加したい結果のステータスを作成する (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>この管理ページを使用して、少なくとも1つの結果を手動で作成します。 (<a href='%{link_new_result}' target='_blank'>link</a>) インポートを使用する前に、フォーマットと何を記入する必要があるかをよりよく理解してください。</li><li>CSV形式でエクスポートをダウンロードしてください。 (%{link_export_csv})</li><li>ローカルで変更を行います。変更できるのは、CSVの次の列のみです:</li></ol><ul><li><b>category/id:</b> CategoryのID</li><li><b>scope/id:</b> Scope の ID</li><li><b>parent/id:</b> 関連する結果の親ID。任意</li><li><b>title/I18N:</b> 言語Xのタイトル</li><li><b>description/I18N:</b> 言語XのDescription</li><li><b>start_date:</b> 結果の効力が開始される日 (format YYYY-MM-DD)</li><li><b>end_date:</b> 結果の効力が失われる日 (format YYYY-MM-DD)</li><li><b>status/id:</b> 結果のステータスID</li><li><b>progress:</b> 進行のパーセンテージ(0 から 100)</li><li><b>proposals_ids:</b> 提案に関連する内部ID(カンマ区切り)。 自動的に <span class='attribute-name'>proposal_url</span> に変換されます。</li></ul>"
|
|
52
|
-
link: リンク
|
|
53
51
|
title: CSVから結果をインポート
|
|
54
52
|
imports:
|
|
55
53
|
create:
|
data/config/locales/lb.yml
CHANGED
|
@@ -49,8 +49,6 @@ lb:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Import
|
|
52
|
-
info: "<p>Wir empfehlen, dass Sie folgende Schritte befolgen:</p><ol><li>Erstellen Sie den Status der Ergebnisse, die Sie hinzufügen möchten (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Erstellen Sie mindestens ein Ergebnis über diesen Administrator-Panel (<a href='%{link_new_result}' target='_blank'>link</a>) bevor Sie Importieren, damit Sie mit dem Format und den benötigten Eingaben vertraut sind.</li><li>Laden Sie den Export im CSV-Format herunter (%{link_export_csv})</li><li>Nehmen Sie Änderungen lokal vor. Sie können nur die folgenden Spalten der CSV ändern:</li></ol><ul><li><b>Kategorie/ID:</b> ID der Kategorie</li><li><b>Umfang/ID:</b> ID des Umfangs</li><li><b>Übergeordnet/ID:</b> Übergeordnete ID (für verwandte Ergebnisse). Optional</li><li><b>Titel/I18N:</b> Titel in Sprache X </li><li><b>Beschreibung/I18N:</b> Beschreibung in Sprache X </li><li><b>start_datum:</b> Datum, an dem die Ausführung des Ergebnisses beginnt (Format JJJJ-MM-TT)</li><li><b>end_datum:</b> Datum, an dem die Ausführung des Ergebnisses endet (Format JJJJ-MM-TT)</li><li><b>Status/ID:</b> ID des Status dieses Ergebnisses</li><li><b>Fortschritt:</b> Prozentualer (von 0 bis 100) Fortschritt der Durchführung</li><li><b>Vorschläge_IDs:</b> Interne ID der verwandten Vorschläge (getrennt durch Komma). Dies wird automatisch umgewandelt in <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: link
|
|
54
52
|
title: Resultater aus engem CSV-Fichier importéieren
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lo:
|
data/config/locales/lt.yml
CHANGED
|
@@ -51,8 +51,6 @@ lt:
|
|
|
51
51
|
import_results:
|
|
52
52
|
new:
|
|
53
53
|
import: Importuoti
|
|
54
|
-
info: "<p>Rekomenduojame atlikti šiuos veiksmus:</p><ol><li>Sukurti norimų pridėti rezultatų būsenas (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Sukurti bent vieną rezultatą rankiniu būdu pasinaudojant šia Administratoriaus panele (<a href='%{link_new_result}' target='_blank'>link</a>) prieš spustelint „Importuoti“, kad geriau suprastumėte formatą ir tai, ką turite užpildyti.</li><li>Parsisiųskite eksporto rinkmeną CSV formatu (%{link_export_csv})</li><li>Atlikite pakeitimus lokaliai. Galite pakeisti tik šias CSV skiltis:</li></ol><ul><li><b>category/id:</b> ID, skirtą kategorijai</li><li><b>scope/id:</b> ID, skirtą sričiai</li><li><b>parent/id:</b> pirminio elemento ID (skirtą susijusiems rezultatams). Neprivaloma</li><li><b>title/I18N:</b> Pavadinimas X kalba</li><li><b>description/I18N:</b> Aprašymas X kalba</li><li><b>start_date:</b> data, kada rezultatas pradedamas generuoti (MMMM-MM-DD formatas)</li><li><b>end_date:</b> data, kada rezultatas baigiamas generuoti (MMMM-MM-DD formatas)</li><li><b>status/id:</b> šio rezultato būsenos ID</li><li><b>progress:</b> Įvykdymo procentinė dalis (nuo 0 iki 100)</li><li><b>proposals_ids:</b> susijusių pasiūlymų vidaus ID (atskirta kableliu). Tai automatiškai pakeičiama į <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
55
|
-
link: nuoroda
|
|
56
54
|
title: Importuoti rezultatus iš CSV
|
|
57
55
|
imports:
|
|
58
56
|
create:
|
|
@@ -180,6 +178,8 @@ lt:
|
|
|
180
178
|
subcategories_label: Subkategorijos
|
|
181
179
|
home_header:
|
|
182
180
|
global_status: Bendra vykdymo būsena
|
|
181
|
+
nav_breadcrumb:
|
|
182
|
+
global: Bendras vykdymas
|
|
183
183
|
search:
|
|
184
184
|
search: Ieškoti veiksmų
|
|
185
185
|
show:
|
data/config/locales/lv.yml
CHANGED
|
@@ -45,8 +45,6 @@ lv:
|
|
|
45
45
|
import_results:
|
|
46
46
|
new:
|
|
47
47
|
import: Importēt
|
|
48
|
-
info: "<p>Mēs iesakām veikt šādas darbības:</p><ol><li>izveidojiet statusu rezultātiem, ko vēlaties pievienot (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Pirms importēšanas manuāli izveidojiet vismaz vienu rezultātu, izmantojot šo administratora paneli, (<a href='%{link_new_result}' target='_blank'>link</a>) lai labāk izprastu formātu un to, kas būs jāaizpilda.</li><li>Lejupielādējiet formātā Eksportēt ar CSV (%{link_export_csv})</li><li>Veiciet lokālas izmaiņas. Jūs varat mainīt tikai šādas CSV kolonnas:</li></ol><ul><li><b>category/id:</b> Kategorijas ID</li><li><b>scope/id:</b> Tvēruma ID</li><li><b>parent/id:</b> Saistītais ID (saistītajiem rezultātiem). Pēc izvēles:</li><li><b>title/I18N:</b> Virsraksts X valodā</li><li><b>description/I18N:</b> Apraksts X valodā</li><li><b>start_date:</b> datums, kurā uzsākta rezultāta izpilde (formāts GGGG-MM-DD)</li><li><b>end_date:</b> datums, kurā beidzas rezultāta izpilde (formāts GGGG-MM-DD)</li><li><b>status/id:</b> šī rezultāta statusa ID</li><li><b>progress:</b> Izpildes līmenis procentos (no 0 līdz 100)</li><li><b>proposals_ids:</b> saistīto priekšlikumu iekšējais ID (atdalīts ar komatu). Tas tiek automātiski konvertēts uz <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
49
|
-
link: saite
|
|
50
48
|
title: Importēt rezultātus no CSV
|
|
51
49
|
imports:
|
|
52
50
|
create:
|
data/config/locales/nl.yml
CHANGED
data/config/locales/no.yml
CHANGED
|
@@ -49,8 +49,6 @@
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importer
|
|
52
|
-
info: "<p>Vi anbefaler at du følger disse stegene:</p><ol><li>Lag Statuser for de Resultatene du vil legge til (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Lag manuelt i hvert fall ett Resultat via dette Admin-panelet (<a href='%{link_new_result}' target='_blank'>link</a>) før du bruker Importer, for å bedre forstå formatet og det du trenger for å fylle ut.</li><li>Last ned Eksporter med CSV-format (%{link_export_csv})</li><li>Gjør endringene lokalt. Du kan bare endre følgende kolonner i CSV:</li></ol><ul><li><b>kategori/id:</b> ID for Kategorien</li><li><b>omfang/id:</b> ID for Omfanget</li><li><b>parent/id:</b> ID for parent (for relaterte Resultater). Alternativt</li><li><b>tittel/I18N:</b> Tittel på X språk</li><li><b>beskrivelse/I18N:</b> Beskrivelse på X språk</li><li><b>start_dato:</b> dato for når resultat starter oppgave (format YYYY-MM-DD)</li><li><b>slutt_dato:</b> dato for når resultater avslutter oppgave (format YYYY-MM-DD)</li><li><b>status/id:</b> ID for Status for dette resultatet</li><li><b>fremgang:</b> Prosent (fra 0 to 100) av oppgaven</li><li><b>forslag_id:</b> intern ID for relaterte forslag (separert med komma). Det blir automatisk konvertert til <span class='attribute-name'>forslag_url</span></li></ul>"
|
|
53
|
-
link: lenke
|
|
54
52
|
title: Importere resultater fra CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
|
@@ -61,10 +59,10 @@
|
|
|
61
59
|
status:
|
|
62
60
|
name: Status
|
|
63
61
|
timeline_entry:
|
|
64
|
-
name:
|
|
62
|
+
name: Oppføring i tidslinjen
|
|
65
63
|
results:
|
|
66
64
|
create:
|
|
67
|
-
invalid: Det
|
|
65
|
+
invalid: Det oppstod et problem med å opprette dette resultatet
|
|
68
66
|
success: Resultat ble opprettet
|
|
69
67
|
destroy:
|
|
70
68
|
success: Resultat ble slettet
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
oc:
|
data/config/locales/pl.yml
CHANGED
|
@@ -50,9 +50,8 @@ pl:
|
|
|
50
50
|
results: Wyniki
|
|
51
51
|
import_results:
|
|
52
52
|
new:
|
|
53
|
+
download_export: Pobierz Eksport w formacie CSV
|
|
53
54
|
import: Importuj
|
|
54
|
-
info: "<p> Zalecamy wykonanie następujących kroków:</p><ol><li>Utwórz Statusy dla Wyników, które chcesz dodać (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Utwórz co najmniej jeden wynik ręcznie z poziomu tego Panelu administracyjnego (<a href='%{link_new_result}' target='_blank'>link</a>) przed wybraniem opcji Importuj, aby lepiej zrozumieć format oraz jakie informacje należy załączyć.</li><li>Pobierz plik Eksport w formacie CSV (%{link_export_csv})</li><li>Wprowadź zmiany lokalnie. Możesz zmienić tylko następujące kolumny pliku CSV:</li></ol><ul><li><b>kategoria/id:</b> ID kategorii</li><li><b>zakres/id:</b> ID zakresu</li><li><b>element nadrzędny/id:</b> ID elementu nadrzędnego (dla powiązanych wyników). Opcjonalnie</li><li><b>tytuł/I18N:</b> Tytuł w języku X</li><li><b>opis/I18N:</b> Opis w języku X</li><li><b>start_date:</b> data rozpoczęcia pracy nad utworzeniem wyniku (format RRRR-MM-DD)</li><li><b>end_date:</b> data zakończenia pracy nad utworzeniem wyniku (format RRRR-MM-DD)</li><li><b>status/id:</b> ID statusu dla tego wyniku</li><li><b>postęp:</b> Postęp prac nad wynikiem wyrażony procentowo (od 0 do 100)</li><li><b>proposals_ids:</b> wewnętrzne ID powiązanych propozycji (oddzielone przecinkiem). Jest ono automatycznie konwertowane na <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
55
|
-
link: link
|
|
56
55
|
title: Importuj wyniki z CSV
|
|
57
56
|
imports:
|
|
58
57
|
create:
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -48,9 +48,8 @@ pt-BR:
|
|
|
48
48
|
results: Resultados
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
|
+
download_export: Baixe a Exportação com formato CSV
|
|
51
52
|
import: Importar
|
|
52
|
-
info: "<p>Nós recomendamos que vosê siga os seguintes passos:</p><ol><li>Crie os Status para os Resultados que você gostaria de adicionar(<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Crie o último Resultado manualmente através do Painel de Administração(<a href='%{link_new_result}' target='_blank'>link</a>) antes de usar Importação, para ter um melhor entendimento do formato e o que você precisa preencher.</li><li>Baixe a Exportação em formato CSV (%{link_export_csv})</li><li>Faça as mudanças localmente. Você só pode fazer mudanças nas seguintes colunas do CSV:</li></ol><ul><li><b>categoria/id:</b> ID da Categoria</li><li><b>escopo/id:</b> ID do Escopo</li><li><b>pai/id:</b> ID do pai(para resultados Relacionados). Opcional</li><li><b>Título/I18N:</b> Título na liinguagem X</li><li><b>Descrição/I18N:</b> Descrição na linguagem X</li><li><b>data_inicial:</b> data em que os resultados começaram a ser executados (formato YYYY-MM-DD)</li><li><b>data_final:</b> em que os resultados pararam de ser executados (formato YYYY-MM-DD)</li><li><b>status/id:</b> ID do Status para este resultado</li><li><b>progresso:</b> Percentual (De 0 a 100) de execução</li><li><b>id_propostas:</b> ID interno relacionado às propostas (separados por vírgula). Ele é convertido automaticamente para<span class='attribute-name'>url_proposta</span></li></ul>"
|
|
53
|
-
link: link
|
|
54
53
|
title: Importar resultados de CSV
|
|
55
54
|
imports:
|
|
56
55
|
create:
|
|
@@ -204,6 +203,8 @@ pt-BR:
|
|
|
204
203
|
label: Status
|
|
205
204
|
components:
|
|
206
205
|
accountability:
|
|
206
|
+
actions:
|
|
207
|
+
comment: Comentário
|
|
207
208
|
name: Prestação de contas
|
|
208
209
|
settings:
|
|
209
210
|
global:
|
data/config/locales/pt.yml
CHANGED
|
@@ -49,8 +49,6 @@ pt:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importar
|
|
52
|
-
info: "<p>Recomendamos que siga os seguintes passos:</p><ol><li>Crie os Estados para os Resultados que deseja adicionar (<a href='%{link_new_status}' target='_blank'>hiperligação</a>)</li><li>Crie pelo menos um Resultado de forma manual através deste painel de Administrador (<a href='%{link_new_result}' target='_blank'>link</a>) antes de usar Importar, para obter uma melhor compreensão do formato e daquilo que terá de preencher.</li><li>Transfira a Exportação com o formato CSV (%{link_export_csv})</li><li>Faça as alterações localmente. Apenas poderá alterar as seguintes colunas do CSV:</li></ol><ul><li><b>categoria/id:</b> ID para a Categoria</li><li><b>âmbito/id:</b> ID para o Âmbito</li><li><b>principal/id:</b> ID do principal (para os Resultados relacionados). Opcional</li><li><b>título/I18N:</b> Título no idioma X</li><li><b>descrição/I18N:</b> Descrição no idioma X</li><li><b>data_início:</b> data na qual o resultado inicia a execução (formato AAAA-MM-DD)</li><li><b>data_fim:</b> data na qual o resultado termina a execução (formato AAAA-MM-DD)</li><li><b>estado/id:</b> ID do Estado para este resultado</li><li><b>progresso:</b> Percentagem (de 0 a 100) da execução</li><li><b>ids_propostas:</b> ID interna das propostas relacionadas (separado por vírgula). Automaticamente convertido para <span class='attribute-name'>url_proposta</span></li></ul>"
|
|
53
|
-
link: hiperligação
|
|
54
52
|
title: Importar resultados do CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -50,8 +50,6 @@ ro:
|
|
|
50
50
|
import_results:
|
|
51
51
|
new:
|
|
52
52
|
import: Importă
|
|
53
|
-
info: "<p>Vă recomandăm să urmați aceste etape:</p><ol><li>Creați statutele pentru rezultatele pe care doriți să le adăugați (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Creați manual cel puțin un rezultat prin acest panou de administrare (<a href='%{link_new_result}' target='_blank'>link</a>) înainte de a folosi funcția Importare, pentru a înțelege mai bine formatul și ceea ce trebuie completat.</li><li>Descărcați exportul cu format CVS (%{link_export_csv})</li><li>Efectuați modificările local. Puteți modifica numai următoarele coloane din CSV:</li></ol><ul><li><b>category/id:</b> ID-ul categoriei</li><li><b>scope/id:</b> ID-ul domeniului</li><li><b>parent/id:</b> ID-ul elementului părinte (pentru rezultatele corelate). Opțional</li><li><b>title/I18N:</b> Titlu în limba X </li><li><b>description/I18N:</b> Descriere în limba X</li><li><b>start_date:</b> data la care rezultatul începe executarea (format YYYY-MM-DD)</li><li><b>end_date:</b> data la care rezultatul încheie executarea (format YYYY-MM-DD)</li><li><b>status/id:</b> ID-ul Statutului pentru acest rezultat</li><li><b>progres:</b> Procent (de la 0 la 100) de executare</li><li><b>proposals_ids:</b> ID-ul intern al propunerilor înrudite (separate prin virgulă). Este automat convertit în <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
54
|
-
link: link
|
|
55
53
|
title: Importați rezultate de la CSV
|
|
56
54
|
imports:
|
|
57
55
|
create:
|
data/config/locales/si-LK.yml
CHANGED
data/config/locales/sk.yml
CHANGED
data/config/locales/sl.yml
CHANGED
data/config/locales/sv.yml
CHANGED
|
@@ -49,8 +49,6 @@ sv:
|
|
|
49
49
|
import_results:
|
|
50
50
|
new:
|
|
51
51
|
import: Importera
|
|
52
|
-
info: "<p>Vi rekommenderar att du följer dessa steg:</p><ol><li>Skapa statusar för de resultat som du vill lägga till (<a href='%{link_new_status}' target='_blank'>länk</a>)</li><li>Skapa minst ett resultat manuellt genom denna Admin panel (<a href='%{link_new_result}' target='_blank'>länk</a>) innan du använder Importera, för att ha en bättre förståelse för formatet och vad du behöver för att fylla i.</li><li>Ladda ner exporten med CSV-format (%{link_export_csv})</li><li>Gör ändringarna lokalt. Du kan bara ändra följande kolumner i CSV:</li></ol><ul><li><b>kategori/id:</b> ID för kategorin</li><li><b>omfattning/id:</b> ID för omfattningen</li><li><b>förälder/id:</b> ID för föräldern (för relaterade resultat). Valfri</li><li><b>title/I18N:</b> Titel på X språk</li><li><b>beskrivning/I18N:</b> Beskrivning på X språk</li><li><b>start_date:</b> datum när resultatet startar exekvering (format YYYY-MM-DD)</li><li><b>end_date:</b> datum när resultatet slutar exekvering (format YYYY-MM-DD)</li><li><b>status/id:</b> ID för status för detta resultat</li><li><b>fortskrider:</b> Procent (från 0 till 100) av exekveringen</li><li><b>förslag_ids:</b> internt ID för de relaterade förslagen (separerade med komma). Det konverteras automatiskt till <span class='attribute-name'>proposal_url</span></li></ul>"
|
|
53
|
-
link: länk
|
|
54
52
|
title: Importera resultat från CSV
|
|
55
53
|
imports:
|
|
56
54
|
create:
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -47,8 +47,6 @@ tr:
|
|
|
47
47
|
import_results:
|
|
48
48
|
new:
|
|
49
49
|
import: İçe aktar
|
|
50
|
-
info: "<p>Bu adımları izlemenizi tavsiye ederiz:</p><ol><li>Eklemek istediğiniz Sonuçlar için Statüleri oluşturun (<a href='%{link_new_status}' target='_blank'>bağlantı</a>)</li><li>Biçimi ve neleri doldurmanız gerektiğini daha iyi anlamak için İçe Aktar'ı kullanmadan önce bu Yönetici paneli (<a href='%{link_new_result}' target='_blank'>bağlantı</a>) aracılığıyla yeniden en az bir Sonuç oluşturun. </li><li>Dışa aktarımı CSV formatında indirin (%{link_export_csv})</li><li>Değişiklikleri yerel olarak yapın. CSV'nin yalnızca aşağıdaki sütunlarını değiştirebilirsiniz:</li></ol><ul><li><b>category/id:</b> Kategori ID</li><li><b>scope/id:</b> Kapsam ID </li><li><b>parent/id:</b> Üst ID (ilgili Sonuçlar için). İsteğe bağlı</li><li><b>title/I18N:</b> X dilinde başlık</li><li><b>description/I18N:</b> X dilinde açıklama</li><li><b>start_date:</b> sonucun uygulamaya başladığı tarih (biçim YYYY-AA-GG)</li><li><b>end_date:</b> sonucun yürütmeyi bitirdiği tarih (biçim YYYY-AA-GG)</li><li><b>status/id:</b> Durum ID</li><li><b>progress:</b> Yürütme yüzdesi (0'dan 100'e)</li><li><b>proposals_ids:</b> İlgili tekliflerin ID'leri (virgülle ayrılmış). Otomatik olarak <span class='attribute-name'>proposal_url</span>'e dönüştürülür</li></ul>"
|
|
51
|
-
link: bağlantı
|
|
52
50
|
title: Sonuçları CSV'den içe aktar
|
|
53
51
|
imports:
|
|
54
52
|
create:
|
data/config/locales/zh-CN.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-accountability
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-comments
|
|
@@ -18,126 +18,126 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.26.
|
|
21
|
+
version: 0.26.4
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.26.
|
|
28
|
+
version: 0.26.4
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-core
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.26.
|
|
35
|
+
version: 0.26.4
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.26.
|
|
42
|
+
version: 0.26.4
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: decidim-admin
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - '='
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.26.
|
|
49
|
+
version: 0.26.4
|
|
50
50
|
type: :development
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - '='
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 0.26.
|
|
56
|
+
version: 0.26.4
|
|
57
57
|
- !ruby/object:Gem::Dependency
|
|
58
58
|
name: decidim-assemblies
|
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
|
61
61
|
- - '='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: 0.26.
|
|
63
|
+
version: 0.26.4
|
|
64
64
|
type: :development
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - '='
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 0.26.
|
|
70
|
+
version: 0.26.4
|
|
71
71
|
- !ruby/object:Gem::Dependency
|
|
72
72
|
name: decidim-comments
|
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - '='
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 0.26.
|
|
77
|
+
version: 0.26.4
|
|
78
78
|
type: :development
|
|
79
79
|
prerelease: false
|
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - '='
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
|
-
version: 0.26.
|
|
84
|
+
version: 0.26.4
|
|
85
85
|
- !ruby/object:Gem::Dependency
|
|
86
86
|
name: decidim-dev
|
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
89
|
- - '='
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: 0.26.
|
|
91
|
+
version: 0.26.4
|
|
92
92
|
type: :development
|
|
93
93
|
prerelease: false
|
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
|
96
96
|
- - '='
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 0.26.
|
|
98
|
+
version: 0.26.4
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: decidim-meetings
|
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
103
|
- - '='
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: 0.26.
|
|
105
|
+
version: 0.26.4
|
|
106
106
|
type: :development
|
|
107
107
|
prerelease: false
|
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
|
109
109
|
requirements:
|
|
110
110
|
- - '='
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: 0.26.
|
|
112
|
+
version: 0.26.4
|
|
113
113
|
- !ruby/object:Gem::Dependency
|
|
114
114
|
name: decidim-participatory_processes
|
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
|
116
116
|
requirements:
|
|
117
117
|
- - '='
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: 0.26.
|
|
119
|
+
version: 0.26.4
|
|
120
120
|
type: :development
|
|
121
121
|
prerelease: false
|
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - '='
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: 0.26.
|
|
126
|
+
version: 0.26.4
|
|
127
127
|
- !ruby/object:Gem::Dependency
|
|
128
128
|
name: decidim-proposals
|
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
|
130
130
|
requirements:
|
|
131
131
|
- - '='
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: 0.26.
|
|
133
|
+
version: 0.26.4
|
|
134
134
|
type: :development
|
|
135
135
|
prerelease: false
|
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
|
137
137
|
requirements:
|
|
138
138
|
- - '='
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
|
-
version: 0.26.
|
|
140
|
+
version: 0.26.4
|
|
141
141
|
description: An accountability component for decidim's participatory spaces.
|
|
142
142
|
email:
|
|
143
143
|
- josepjaume@gmail.com
|
|
@@ -287,6 +287,7 @@ files:
|
|
|
287
287
|
- config/locales/fr.yml
|
|
288
288
|
- config/locales/ga-IE.yml
|
|
289
289
|
- config/locales/gl.yml
|
|
290
|
+
- config/locales/gn-PY.yml
|
|
290
291
|
- config/locales/hr-HR.yml
|
|
291
292
|
- config/locales/hr.yml
|
|
292
293
|
- config/locales/hu.yml
|
|
@@ -299,6 +300,7 @@ files:
|
|
|
299
300
|
- config/locales/ko.yml
|
|
300
301
|
- config/locales/lb-LU.yml
|
|
301
302
|
- config/locales/lb.yml
|
|
303
|
+
- config/locales/lo-LA.yml
|
|
302
304
|
- config/locales/lt-LT.yml
|
|
303
305
|
- config/locales/lt.yml
|
|
304
306
|
- config/locales/lv.yml
|
|
@@ -306,6 +308,7 @@ files:
|
|
|
306
308
|
- config/locales/mt.yml
|
|
307
309
|
- config/locales/nl.yml
|
|
308
310
|
- config/locales/no.yml
|
|
311
|
+
- config/locales/oc-FR.yml
|
|
309
312
|
- config/locales/om-ET.yml
|
|
310
313
|
- config/locales/pl.yml
|
|
311
314
|
- config/locales/pt-BR.yml
|