decidim-assemblies 0.17.2 → 0.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/assemblies/assembly_m/footer.erb +1 -1
- data/app/cells/decidim/assemblies/assembly_m_cell.rb +24 -1
- data/app/commands/decidim/assemblies/admin/copy_assembly.rb +1 -0
- data/app/controllers/decidim/assemblies/admin/application_controller.rb +5 -4
- data/app/controllers/decidim/assemblies/admin/assemblies_controller.rb +20 -10
- data/app/controllers/decidim/assemblies/admin/concerns/assembly_admin.rb +6 -4
- data/app/controllers/decidim/assemblies/application_controller.rb +6 -5
- data/app/controllers/decidim/assemblies/assemblies_controller.rb +18 -22
- data/app/forms/decidim/assemblies/admin/assembly_member_form.rb +1 -1
- data/app/helpers/decidim/assemblies/assemblies_helper.rb +6 -0
- data/app/helpers/decidim/assemblies/filter_assemblies_helper.rb +18 -7
- data/app/models/decidim/assembly.rb +36 -10
- data/app/permissions/decidim/assemblies/permissions.rb +1 -1
- data/app/queries/decidim/assemblies/admin/admin_users.rb +8 -1
- data/app/queries/decidim/assemblies/organization_published_assemblies.rb +2 -2
- data/app/queries/decidim/assemblies/visible_assemblies.rb +1 -8
- data/app/services/decidim/assemblies/assembly_search.rb +18 -0
- data/app/views/decidim/assemblies/_filter_by_type.html.erb +13 -12
- data/app/views/decidim/assemblies/admin/assemblies/_form.html.erb +133 -73
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +29 -10
- data/app/views/decidim/assemblies/assemblies/_count.html.erb +1 -1
- data/app/views/decidim/assemblies/assemblies/_parent_assemblies.html.erb +2 -1
- data/app/views/decidim/assemblies/assemblies/_promoted_assembly.html.erb +1 -1
- data/app/views/decidim/assemblies/assemblies/index.html.erb +1 -0
- data/app/views/decidim/assemblies/assemblies/index.js.erb +2 -1
- data/app/views/decidim/assemblies/assemblies/show.html.erb +42 -36
- data/config/locales/ar-SA.yml +9 -2
- data/config/locales/ar.yml +386 -0
- data/config/locales/ca.yml +9 -2
- data/config/locales/cs.yml +8 -2
- data/config/locales/de.yml +8 -2
- data/config/locales/en.yml +9 -2
- data/config/locales/es-MX.yml +9 -2
- data/config/locales/es-PY.yml +9 -2
- data/config/locales/es.yml +9 -2
- data/config/locales/eu.yml +8 -2
- data/config/locales/fi-plain.yml +9 -2
- data/config/locales/fi.yml +9 -2
- data/config/locales/fr.yml +8 -2
- data/config/locales/gl.yml +8 -2
- data/config/locales/hu.yml +9 -2
- data/config/locales/id-ID.yml +8 -2
- data/config/locales/it.yml +9 -2
- data/config/locales/nl.yml +8 -2
- data/config/locales/pl.yml +8 -2
- data/config/locales/pt-BR.yml +8 -2
- data/config/locales/pt.yml +8 -2
- data/config/locales/ru.yml +1 -2
- data/config/locales/sv.yml +8 -2
- data/config/locales/tr-TR.yml +9 -2
- data/config/locales/uk.yml +1 -2
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +9 -7
@@ -7,8 +7,9 @@
|
|
7
7
|
<%= render partial: "decidim/assemblies/filter_by_type" %>
|
8
8
|
</div>
|
9
9
|
<hr class="reset mt-s mb-s" />
|
10
|
+
<%= render partial: "decidim/shared/participatory_space_filters/show" %>
|
10
11
|
</div>
|
11
12
|
<div class="row small-up-1 medium-up-2 large-up-3 card-grid">
|
12
|
-
<%= render(
|
13
|
+
<%= render(parent_assemblies) %>
|
13
14
|
</div>
|
14
15
|
</section>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<div class="card__content row collapse">
|
18
18
|
<div class="large-6 large-offset-6 columns">
|
19
19
|
<%= link_to assembly_path(promoted_assembly), class: "button expanded button--sc" do %>
|
20
|
-
<%= t(
|
20
|
+
<%= t(promoted_assembly.cta_button_text_key, scope: "layouts.decidim.assemblies.promoted_assembly") %>
|
21
21
|
<% end %>
|
22
22
|
</div>
|
23
23
|
</div>
|
@@ -2,6 +2,7 @@ var $grid = $('#parent-assemblies');
|
|
2
2
|
var $assembliesCount = $('#assemblies-count');
|
3
3
|
var $assembliesFilter = $('#assemblies-filter');
|
4
4
|
|
5
|
-
$grid.find('.card-grid').html('<%= j(render(
|
5
|
+
$grid.find('.card-grid').html('<%= j(render(parent_assemblies)).strip.html_safe %>');
|
6
6
|
$assembliesCount.html('<%= j(render partial: "count").strip.html_safe %>');
|
7
7
|
$assembliesFilter.html('<%= j(render partial: "decidim/assemblies/filter_by_type") %>');
|
8
|
+
$assembliesFilter.foundation();
|
@@ -17,14 +17,16 @@ edit_link(
|
|
17
17
|
<%= participatory_space_floating_help %>
|
18
18
|
|
19
19
|
<% if current_participatory_space.private_space? %>
|
20
|
-
<%= render partial: "decidim/shared/private_participatory_space",
|
20
|
+
<%= render partial: "decidim/shared/private_participatory_space",
|
21
|
+
locals: { text: t("private_space", scope: "decidim.assemblies.show") } %>
|
21
22
|
<% end %>
|
22
23
|
|
23
24
|
<div class="row column">
|
24
25
|
<% if current_participatory_space.parent.present? %>
|
25
26
|
<div class="row">
|
26
27
|
<div class="small-12 columns">
|
27
|
-
<%= render partial: "decidim/assemblies/assemblies/nav_breadcumb",
|
28
|
+
<%= render partial: "decidim/assemblies/assemblies/nav_breadcumb",
|
29
|
+
locals: { assemblies: current_participatory_space.ancestors.to_a } %>
|
28
30
|
</div>
|
29
31
|
</div>
|
30
32
|
<% end %>
|
@@ -45,33 +47,33 @@ edit_link(
|
|
45
47
|
translated_attribute(current_participatory_space.internal_organisation).present? ||
|
46
48
|
translated_attribute(current_participatory_space.composition).present? %>
|
47
49
|
<div class="show-more">
|
48
|
-
<button class="button button--muted small"><%= t("
|
50
|
+
<button class="button button--muted small"><%= t("read_more", scope: "decidim.assemblies.show") %></button>
|
49
51
|
</div>
|
50
52
|
|
51
53
|
<div class="hide show-more-panel">
|
52
54
|
<% if translated_attribute(current_participatory_space.purpose_of_action).present? %>
|
53
55
|
<div class="section">
|
54
|
-
<h4 class="section-heading"><%= t("
|
56
|
+
<h4 class="section-heading"><%= t("purpose_of_action", scope: "decidim.assemblies.show") %></h4>
|
55
57
|
<%= decidim_sanitize translated_attribute(current_participatory_space.purpose_of_action) %>
|
56
58
|
</div>
|
57
59
|
<% end %>
|
58
60
|
|
59
61
|
<% if translated_attribute(current_participatory_space.internal_organisation).present? %>
|
60
62
|
<div class="section">
|
61
|
-
<h4 class="section-heading"><%= t("
|
63
|
+
<h4 class="section-heading"><%= t("internal_organisation", scope: "decidim.assemblies.show") %></h4>
|
62
64
|
<%= decidim_sanitize translated_attribute(current_participatory_space.internal_organisation) %>
|
63
65
|
</div>
|
64
66
|
<% end %>
|
65
67
|
|
66
68
|
<% if translated_attribute(current_participatory_space.composition).present? %>
|
67
69
|
<div class="section">
|
68
|
-
<h4 class="section-heading"><%= t("
|
70
|
+
<h4 class="section-heading"><%= t("composition", scope: "decidim.assemblies.show") %></h4>
|
69
71
|
<%= decidim_sanitize translated_attribute(current_participatory_space.composition) %>
|
70
72
|
</div>
|
71
73
|
<% end %>
|
72
74
|
<div class="section text-center">
|
73
75
|
<div class="hide-more">
|
74
|
-
<button class="button button--muted small"><%= t("
|
76
|
+
<button class="button button--muted small"><%= t("read_less", scope: "decidim.assemblies.show") %></button>
|
75
77
|
</div>
|
76
78
|
</div>
|
77
79
|
</div>
|
@@ -82,7 +84,7 @@ edit_link(
|
|
82
84
|
<%= attachments_for current_participatory_space %>
|
83
85
|
<% if current_participatory_space.children.count.positive? %>
|
84
86
|
<section id="assemblies-grid" class="section row collapse">
|
85
|
-
<h4 class="section-heading"><%= t("
|
87
|
+
<h4 class="section-heading"><%= t("children", scope: "decidim.assemblies.show") %></h4>
|
86
88
|
<div class="row small-up-1 medium-up-2 large-up-2 card-grid">
|
87
89
|
<%= render partial: "decidim/assemblies/assembly", collection: current_participatory_space.children.published %>
|
88
90
|
</div>
|
@@ -101,56 +103,60 @@ edit_link(
|
|
101
103
|
<div class="card extra definition-data">
|
102
104
|
<% if translated_attribute(current_participatory_space.meta_scope).present? %>
|
103
105
|
<div class="definition-data__item scope">
|
104
|
-
<span class="definition-data__title"><%= t("
|
106
|
+
<span class="definition-data__title"><%= t("scope", scope: "decidim.assemblies.show") %></span>
|
105
107
|
<%= translated_attribute(current_participatory_space.meta_scope) %>
|
106
108
|
</div>
|
107
109
|
<% end %>
|
108
110
|
|
109
111
|
<% if translated_attribute(current_participatory_space.developer_group).present? %>
|
110
112
|
<div class="definition-data__item developer-group">
|
111
|
-
<span class="definition-data__title"><%= t("
|
113
|
+
<span class="definition-data__title"><%= t("developer_group", scope: "decidim.assemblies.show") %></span>
|
112
114
|
<%= translated_attribute(current_participatory_space.developer_group) %>
|
113
115
|
</div>
|
114
116
|
<% end %>
|
115
117
|
|
116
118
|
<% if translated_attribute(current_participatory_space.local_area).present? %>
|
117
119
|
<div class="definition-data__item local_area">
|
118
|
-
<span class="definition-data__title"><%= t("
|
120
|
+
<span class="definition-data__title"><%= t("local_area", scope: "decidim.assemblies.show") %></span>
|
119
121
|
<%= translated_attribute(current_participatory_space.local_area) %>
|
120
122
|
</div>
|
121
123
|
<% end %>
|
122
124
|
|
123
125
|
<% if translated_attribute(current_participatory_space.target).present? %>
|
124
126
|
<div class="definition-data__item target">
|
125
|
-
<span class="definition-data__title"><%= t("
|
127
|
+
<span class="definition-data__title"><%= t("target", scope: "decidim.assemblies.show") %></span>
|
126
128
|
<%= translated_attribute(current_participatory_space.target) %>
|
127
129
|
</div>
|
128
130
|
<% end %>
|
129
131
|
|
130
132
|
<% if translated_attribute(current_participatory_space.participatory_scope).present? %>
|
131
133
|
<div class="definition-data__item participatory_scope">
|
132
|
-
<span class="definition-data__title"><%= t("
|
134
|
+
<span class="definition-data__title"><%= t("participatory_scope", scope: "decidim.assemblies.show") %></span>
|
133
135
|
<%= translated_attribute(current_participatory_space.participatory_scope) %>
|
134
136
|
</div>
|
135
137
|
<% end %>
|
136
138
|
|
137
139
|
<% if translated_attribute(current_participatory_space.participatory_structure).present? %>
|
138
140
|
<div class="definition-data__item participatory_structure">
|
139
|
-
<span class="definition-data__title"><%= t("
|
141
|
+
<span class="definition-data__title"><%= t("participatory_structure", scope: "decidim.assemblies.show") %></span>
|
140
142
|
<%= translated_attribute(current_participatory_space.participatory_structure) %>
|
141
143
|
</div>
|
142
144
|
<% end %>
|
143
145
|
|
144
|
-
<%
|
146
|
+
<% area = current_participatory_space.area %>
|
147
|
+
<% if translated_attribute(area&.name).present? %>
|
145
148
|
<div class="definition-data__item area">
|
146
|
-
<span class="definition-data__title"><%= t("
|
147
|
-
|
149
|
+
<span class="definition-data__title"><%= t("area", scope: "decidim.assemblies.show") %></span>
|
150
|
+
<% if translated_attribute(area.area_type&.name).present? %>
|
151
|
+
<%= translated_attribute(area.area_type.name) %><span>-</span>
|
152
|
+
<% end %>
|
153
|
+
<%= translated_attribute(area.name) %>
|
148
154
|
</div>
|
149
155
|
<% end %>
|
150
156
|
|
151
|
-
<% if current_participatory_space.assembly_type.
|
157
|
+
<% if current_participatory_space.assembly_type.present? %>
|
152
158
|
<div class="definition-data__item assembly_type">
|
153
|
-
<span class="definition-data__title"><%= t("
|
159
|
+
<span class="definition-data__title"><%= t("assembly_type", scope: "decidim.assemblies.show") %></span>
|
154
160
|
<% if current_participatory_space.assembly_type == "others" %>
|
155
161
|
<%= translated_attribute(current_participatory_space.assembly_type_other) %>
|
156
162
|
<% else %>
|
@@ -159,16 +165,16 @@ edit_link(
|
|
159
165
|
</div>
|
160
166
|
<% end %>
|
161
167
|
|
162
|
-
<% if current_participatory_space.creation_date.
|
168
|
+
<% if current_participatory_space.creation_date.present? %>
|
163
169
|
<div class="definition-data__item creation_date">
|
164
|
-
<span class="definition-data__title"><%= t("
|
170
|
+
<span class="definition-data__title"><%= t("creation_date", scope: "decidim.assemblies.show") %></span>
|
165
171
|
<%= l current_participatory_space.creation_date, format: :decidim_short %>
|
166
172
|
</div>
|
167
173
|
<% end %>
|
168
174
|
|
169
|
-
<% if current_participatory_space.created_by.
|
175
|
+
<% if current_participatory_space.created_by.present? %>
|
170
176
|
<div class="definition-data__item created_by">
|
171
|
-
<span class="definition-data__title"><%= t("
|
177
|
+
<span class="definition-data__title"><%= t("created_by", scope: "decidim.assemblies.show") %></span>
|
172
178
|
<% if current_participatory_space.created_by == "others" %>
|
173
179
|
<%= translated_attribute(current_participatory_space.created_by_other) %>
|
174
180
|
<% else %>
|
@@ -177,26 +183,26 @@ edit_link(
|
|
177
183
|
</div>
|
178
184
|
<% end %>
|
179
185
|
|
186
|
+
<% if current_participatory_space.included_at.present? %>
|
187
|
+
<div class="definition-data__item included_at">
|
188
|
+
<span class="definition-data__title"><%= t("included_at", scope: "decidim.assemblies.show") %></span>
|
189
|
+
<%= l current_participatory_space.included_at, format: :decidim_short %>
|
190
|
+
</div>
|
191
|
+
<% end %>
|
192
|
+
|
180
193
|
<div class="definition-data__item duration">
|
181
|
-
<span class="definition-data__title"><%= t("
|
182
|
-
<% if current_participatory_space.duration.
|
194
|
+
<span class="definition-data__title"><%= t("duration", scope: "decidim.assemblies.show") %></span>
|
195
|
+
<% if current_participatory_space.duration.present? %>
|
183
196
|
<%= l current_participatory_space.duration, format: :decidim_short %>
|
184
197
|
<% else %>
|
185
|
-
<%= t("
|
198
|
+
<%= t("indefinite_duration", scope: "decidim.assemblies.show") %>
|
186
199
|
<% end %>
|
187
200
|
</div>
|
188
201
|
|
189
|
-
<% if current_participatory_space.
|
190
|
-
<div class="definition-data__item included_at">
|
191
|
-
<span class="definition-data__title"><%= t("assemblies.show.included_at", scope: "decidim") %></span>
|
192
|
-
<%= l current_participatory_space.included_at, format: :decidim_short %>
|
193
|
-
</div>
|
194
|
-
<% end %>
|
195
|
-
|
196
|
-
<% if current_participatory_space.closing_date.presence %>
|
202
|
+
<% if current_participatory_space.closing_date.present? %>
|
197
203
|
<div class="definition-data__item closing_date">
|
198
|
-
<span class="definition-data__title"><%= t("
|
199
|
-
<%= l
|
204
|
+
<span class="definition-data__title"><%= t("closing_date", scope: "decidim.assemblies.show") %></span>
|
205
|
+
<%= l(current_participatory_space.closing_date, format: :decidim_short) %>
|
200
206
|
<br />
|
201
207
|
<%= decidim_sanitize translated_attribute(current_participatory_space.closing_date_reason) %>
|
202
208
|
</div>
|
data/config/locales/ar-SA.yml
CHANGED
@@ -96,8 +96,6 @@ ar:
|
|
96
96
|
success: تم إنشاء الجمعية بنجاح.
|
97
97
|
edit:
|
98
98
|
update: تحديث
|
99
|
-
form:
|
100
|
-
title: معلومات عامة
|
101
99
|
index:
|
102
100
|
not_published: غير منشور
|
103
101
|
private: خاص
|
@@ -223,14 +221,21 @@ ar:
|
|
223
221
|
admin:
|
224
222
|
assemblies:
|
225
223
|
form:
|
224
|
+
duration: المدة الزمنية
|
226
225
|
duration_help: إذا كانت مدة هذا التجميع محدودة ، فحدد تاريخ الانتهاء. خلاف ذلك ، سوف يظهر على أنه غير مسمى.
|
226
|
+
filters: مرشحات
|
227
|
+
images: الصور
|
227
228
|
included_at_help: حدد التاريخ الذي تمت فيه إضافة هذا التجميع إلى Decidim. ليس بالضرورة أن يكون هو نفسه تاريخ الإنشاء.
|
229
|
+
metadata: البيانات الوصفية
|
230
|
+
other: آخر
|
228
231
|
select_a_created_by: حدد تم إنشاؤها بواسطة
|
229
232
|
select_an_area: اختر منطقة
|
230
233
|
select_an_assembly_type: حدد نوع التجميع
|
231
234
|
select_parent_assembly: حدد التجميع الأصل
|
232
235
|
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
233
236
|
social_handlers: التواصل الاجتماعي
|
237
|
+
title: معلومات عامة
|
238
|
+
visbility: الرؤية
|
234
239
|
assembly_copies:
|
235
240
|
form:
|
236
241
|
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
@@ -363,8 +368,10 @@ ar:
|
|
363
368
|
decidim:
|
364
369
|
assemblies:
|
365
370
|
assembly:
|
371
|
+
more_info: مزيد من المعلومات
|
366
372
|
take_part: خذ جزء
|
367
373
|
index:
|
374
|
+
children: 'المجالس: '
|
368
375
|
organizational_chart: الهيكل التنظيمي
|
369
376
|
promoted_assemblies: المجالس البارزة
|
370
377
|
reset_chart: إعادة تعيين
|
@@ -0,0 +1,386 @@
|
|
1
|
+
ar:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
assembly:
|
5
|
+
area_id: المنطقة
|
6
|
+
assembly_type: نوع التجمع
|
7
|
+
assembly_type_other: نوع التجمع الآخر
|
8
|
+
banner_image: صورة اللافتة
|
9
|
+
closing_date: الموعد النهائي
|
10
|
+
closing_date_reason: إغلاق تاريخ السبب
|
11
|
+
composition: المكونات
|
12
|
+
copy_categories: نسخ الفئات
|
13
|
+
copy_components: نسخ المكونات
|
14
|
+
copy_features: نسخ الميزات
|
15
|
+
created_by: أنشئ من طرف
|
16
|
+
created_by_other: التي أنشأتها الآخرون
|
17
|
+
creation_date: تاريخ الإنشاء
|
18
|
+
decidim_area_id: المنطقة
|
19
|
+
decidim_scope_id: النطاق
|
20
|
+
description: الوصف
|
21
|
+
developer_group: مجموعة المروجين
|
22
|
+
domain: النطاق
|
23
|
+
duration: المدة الزمنية
|
24
|
+
facebook: فيسبوك
|
25
|
+
github: غِت هَب
|
26
|
+
hashtag: الوسم
|
27
|
+
hero_image: الصورة الرئيسية
|
28
|
+
included_at: المدرجة في
|
29
|
+
instagram: انستجرام
|
30
|
+
internal_organisation: تنظيم داخلي
|
31
|
+
is_transparent: شفافة
|
32
|
+
local_area: منطقة التنظيم
|
33
|
+
meta_scope: نطاق البيانات الوصفية
|
34
|
+
parent_id: التجمع الرئيسي
|
35
|
+
participatory_processes_ids: العمليات التشاركية ذات الصلة
|
36
|
+
participatory_scope: ما الذي تقرر
|
37
|
+
participatory_structure: كيف تقرر ذلك
|
38
|
+
private_space: مساحة خاصة
|
39
|
+
promoted: سلط الضوء
|
40
|
+
published_at: نشرت في
|
41
|
+
purpose_of_action: الغرض من العمل
|
42
|
+
scope_id: نطاق
|
43
|
+
scopes_enabled: تم تمكين النطاقات
|
44
|
+
short_description: وصف قصير
|
45
|
+
show_statistics: عرض الإحصائيات
|
46
|
+
slug: سبيكة العنوان الشبكي
|
47
|
+
special_features: مميزات خاصة
|
48
|
+
subtitle: العنوان الفرعي
|
49
|
+
target: من يشارك
|
50
|
+
title: العنوان
|
51
|
+
twitter: تويتر
|
52
|
+
youtube: يوتيوب
|
53
|
+
assembly_member:
|
54
|
+
birthday: تاريخ الميلاد
|
55
|
+
birthplace: مكان الازدياد
|
56
|
+
ceased_date: تاريخ التوقف
|
57
|
+
designation_date: تاريخ التعيين
|
58
|
+
designation_mode: وضع التعيين
|
59
|
+
full_name: الاسم الكامل
|
60
|
+
gender: الجنس
|
61
|
+
position: الموقع
|
62
|
+
assembly_user_role:
|
63
|
+
email: البريد الإلكتروني
|
64
|
+
name: الاسم
|
65
|
+
role: الوظيفة
|
66
|
+
activerecord:
|
67
|
+
models:
|
68
|
+
decidim/assembly:
|
69
|
+
zero: جمعيات
|
70
|
+
one: جمعية
|
71
|
+
two: جمعتين
|
72
|
+
few: جمعيات
|
73
|
+
many: جمعيات
|
74
|
+
other: جمعيات
|
75
|
+
decidim/assembly_member:
|
76
|
+
zero: أعضاء الجمعية
|
77
|
+
one: عضو الجمعية
|
78
|
+
two: أعضاء الجمعية
|
79
|
+
few: أعضاء الجمعية
|
80
|
+
many: أعضاء الجمعية
|
81
|
+
other: أعضاء الجمعية
|
82
|
+
decidim/assembly_user_role:
|
83
|
+
zero: أدوار المستخدم التجميع
|
84
|
+
one: دور مستخدم التجميع
|
85
|
+
two: أدوار المستخدم التجميع
|
86
|
+
few: أدوار المستخدم التجميع
|
87
|
+
many: أدوار المستخدم التجميع
|
88
|
+
other: أدوار المستخدم التجميع
|
89
|
+
decidim:
|
90
|
+
admin:
|
91
|
+
actions:
|
92
|
+
new_assembly: جمعية جديدة
|
93
|
+
assemblies:
|
94
|
+
create:
|
95
|
+
error: حدثت مشكلة أثناء إنشاء جمعية جديدة.
|
96
|
+
success: تم إنشاء الجمعية بنجاح.
|
97
|
+
edit:
|
98
|
+
update: تحديث
|
99
|
+
index:
|
100
|
+
not_published: غير منشور
|
101
|
+
private: خاص
|
102
|
+
public: عامة
|
103
|
+
published: نشرت
|
104
|
+
new:
|
105
|
+
create: إنشاء
|
106
|
+
title: جمعية جديدة
|
107
|
+
update:
|
108
|
+
error: حدثت مشكلة أثناء تحديث هذه الجمعية.
|
109
|
+
success: تم تحديث الجمعية بنجاح.
|
110
|
+
assemblies_copies:
|
111
|
+
create:
|
112
|
+
error: حدثت مشكلة في تكرار هذا التجميع.
|
113
|
+
success: الجمعية مكررة بنجاح.
|
114
|
+
assembly_copies:
|
115
|
+
new:
|
116
|
+
copy: نسخ
|
117
|
+
select: حدد البيانات التي ترغب في تكرارها
|
118
|
+
title: نسخ الجمعية
|
119
|
+
assembly_members:
|
120
|
+
create:
|
121
|
+
error: حدثت مشكلة أثناء إضافة عضو لهذا التجميع.
|
122
|
+
success: تم إنشاء العضو بنجاح لهذا التجميع.
|
123
|
+
destroy:
|
124
|
+
success: تم حذف العضو بنجاح لهذا التجميع.
|
125
|
+
edit:
|
126
|
+
title: تحديث عضو التجميع.
|
127
|
+
update: تحديث
|
128
|
+
index:
|
129
|
+
assembly_members_title: أعضاء الجمعية
|
130
|
+
new:
|
131
|
+
create: إنشاء
|
132
|
+
title: عضو الجمعية الجديد.
|
133
|
+
update:
|
134
|
+
error: حدثت مشكلة أثناء تحديث العضو لهذا التجميع.
|
135
|
+
success: تم تحديث العضو بنجاح لهذا التجميع.
|
136
|
+
assembly_publications:
|
137
|
+
create:
|
138
|
+
error: حدثت مشكلة في نشر هذا التجميع.
|
139
|
+
success: تم نشر الجمعية بنجاح.
|
140
|
+
destroy:
|
141
|
+
error: حدثت مشكلة في إلغاء نشر هذا التجميع.
|
142
|
+
success: التجميع غير منشور بنجاح.
|
143
|
+
assembly_user_roles:
|
144
|
+
create:
|
145
|
+
error: حدثت مشكلة أثناء إضافة مسؤول لهذا التجميع.
|
146
|
+
success: تمت إضافة المشرف بنجاح إلى هذا التجميع.
|
147
|
+
destroy:
|
148
|
+
success: تمت إزالة المشرف بنجاح من هذا التجميع.
|
149
|
+
edit:
|
150
|
+
title: تحديث مسؤول التجميع.
|
151
|
+
update: تحديث
|
152
|
+
index:
|
153
|
+
assembly_admins_title: مدراء الجمعية
|
154
|
+
new:
|
155
|
+
create: إنشاء
|
156
|
+
title: مشرف التجميع الجديد.
|
157
|
+
update:
|
158
|
+
error: حدثت مشكلة أثناء تحديث مسؤول لهذا التجميع.
|
159
|
+
success: تم تحديث المشرف بنجاح لهذا التجميع.
|
160
|
+
menu:
|
161
|
+
assemblies: الجمعيات
|
162
|
+
assemblies_submenu:
|
163
|
+
assembly_admins: مدراء الجمعية
|
164
|
+
assembly_members: الأعضاء
|
165
|
+
attachment_collections: المجلدات
|
166
|
+
attachment_files: الملفات
|
167
|
+
attachments: المرفقات
|
168
|
+
categories: الفئات
|
169
|
+
components: المكونات
|
170
|
+
info: معلومات
|
171
|
+
moderations: الإعتدال
|
172
|
+
private_users: المستخدمون الخاصون
|
173
|
+
models:
|
174
|
+
assembly:
|
175
|
+
fields:
|
176
|
+
created_at: تاريخ الإنشاء
|
177
|
+
private: خاص
|
178
|
+
promoted: سلط الضوء
|
179
|
+
published: نشرت
|
180
|
+
title: العنوان
|
181
|
+
name: الجمعية
|
182
|
+
assembly_member:
|
183
|
+
fields:
|
184
|
+
ceased_date: تاريخ التوقف
|
185
|
+
designation_date: تاريخ التعيين
|
186
|
+
full_name: الاسم
|
187
|
+
position: موضع
|
188
|
+
name: عضو
|
189
|
+
positions:
|
190
|
+
other: آخر
|
191
|
+
president: رئيس
|
192
|
+
secretary: أمين
|
193
|
+
vice_president: نائب الرئيس
|
194
|
+
assembly_user_role:
|
195
|
+
fields:
|
196
|
+
email: البريد الإلكتروني
|
197
|
+
name: الاسم
|
198
|
+
role: الدور
|
199
|
+
name: المشرف على الجمعية
|
200
|
+
roles:
|
201
|
+
admin: مدير
|
202
|
+
collaborator: متعاون
|
203
|
+
moderator: مُشرف
|
204
|
+
titles:
|
205
|
+
assemblies: الجمعيات
|
206
|
+
admin_log:
|
207
|
+
assembly:
|
208
|
+
create: "%{user_name} خلق التجمع %{resource_name}"
|
209
|
+
publish: "%{user_name} نشرت %{resource_name} التجمع"
|
210
|
+
unpublish: "%{user_name} غير منشور التجمع %{resource_name}"
|
211
|
+
update: "%{user_name} تحديث التجمع %{resource_name}"
|
212
|
+
assembly_member:
|
213
|
+
create: "%{user_name} أنشأ العضو %{resource_name} في التجميع %{space_name}"
|
214
|
+
delete: "%{user_name} إزالة العضو %{resource_name} من التجميع %{space_name}"
|
215
|
+
update: "%{user_name} بتحديث العضو %{resource_name} في التجميع %{space_name}"
|
216
|
+
assembly_user_role:
|
217
|
+
create: "%{user_name} دعا %{resource_name} إلى %{space_name} التجمع"
|
218
|
+
delete: "%{user_name} أزال المشارك %{resource_name} من التجميع %{space_name}"
|
219
|
+
update: "%{user_name} غير دور %{resource_name} في التجميع %{space_name}"
|
220
|
+
assemblies:
|
221
|
+
admin:
|
222
|
+
assemblies:
|
223
|
+
form:
|
224
|
+
duration: المدة الزمنية
|
225
|
+
duration_help: إذا كانت مدة هذا التجميع محدودة ، فحدد تاريخ الانتهاء. خلاف ذلك ، سوف يظهر على أنه غير مسمى.
|
226
|
+
filters: مرشحات
|
227
|
+
images: الصور
|
228
|
+
included_at_help: حدد التاريخ الذي تمت فيه إضافة هذا التجميع إلى Decidim. ليس بالضرورة أن يكون هو نفسه تاريخ الإنشاء.
|
229
|
+
metadata: البيانات الوصفية
|
230
|
+
other: آخر
|
231
|
+
select_a_created_by: حدد تم إنشاؤها بواسطة
|
232
|
+
select_an_area: اختر منطقة
|
233
|
+
select_an_assembly_type: حدد نوع التجميع
|
234
|
+
select_parent_assembly: حدد التجميع الأصل
|
235
|
+
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
236
|
+
social_handlers: التواصل الاجتماعي
|
237
|
+
title: معلومات عامة
|
238
|
+
visbility: الرؤية
|
239
|
+
assembly_copies:
|
240
|
+
form:
|
241
|
+
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
242
|
+
assembly_members:
|
243
|
+
form:
|
244
|
+
existing_user: المشارك الحالي
|
245
|
+
non_user: غير مشارك
|
246
|
+
select_a_position: اختر المنصب
|
247
|
+
select_user: اختيار مشارك
|
248
|
+
user_type: نوع المشارك
|
249
|
+
index:
|
250
|
+
filter:
|
251
|
+
all: الكل
|
252
|
+
ceased: توقف
|
253
|
+
not_ceased: لم تتوقف
|
254
|
+
filter_by: مصنف بواسطة
|
255
|
+
search: البحث
|
256
|
+
content_blocks:
|
257
|
+
highlighted_assemblies:
|
258
|
+
max_results: أقصى قدر من العناصر لإظهارها
|
259
|
+
assembly_members:
|
260
|
+
index:
|
261
|
+
members: الأعضاء
|
262
|
+
assembly_types:
|
263
|
+
commission: اللجنة
|
264
|
+
consultative_advisory: استشاري / الاستشارية
|
265
|
+
executive: تنفيذية
|
266
|
+
government: حكومية
|
267
|
+
others: أخرى
|
268
|
+
participatory: تشاركية
|
269
|
+
working_group: فريق العمل
|
270
|
+
content_blocks:
|
271
|
+
highlighted_assemblies:
|
272
|
+
name: المجالس البارزة
|
273
|
+
created_by:
|
274
|
+
city_council: مجلس المدينة
|
275
|
+
others: أخرى
|
276
|
+
public: عامة
|
277
|
+
filter:
|
278
|
+
all: جميع أنواع الجمعيات
|
279
|
+
commission: لجنة
|
280
|
+
consultative_advisory: استشاري / الاستشارية
|
281
|
+
executive: تنفيذية
|
282
|
+
government: الحكومية
|
283
|
+
help: 'عرض:'
|
284
|
+
others: أخرى
|
285
|
+
participatory: التشاركية
|
286
|
+
working_group: فريق العمل
|
287
|
+
index:
|
288
|
+
title: الجمعيات
|
289
|
+
last_activity:
|
290
|
+
new_assembly: التجمع الجديد
|
291
|
+
pages:
|
292
|
+
home:
|
293
|
+
highlighted_assemblies:
|
294
|
+
active_assemblies: الجمعيات النشطة
|
295
|
+
see_all_assemblies: عرض كافة الجمعيات
|
296
|
+
user_profile:
|
297
|
+
member_of:
|
298
|
+
member_of: عضو في
|
299
|
+
show:
|
300
|
+
area: المنطقة
|
301
|
+
assembly_type: نوع التجمع
|
302
|
+
children: الجمعيات
|
303
|
+
closing_date: الموعد النهائي
|
304
|
+
composition: المكونات
|
305
|
+
created_by: أنشئ من طرف
|
306
|
+
creation_date: تاريخ الإنشاء
|
307
|
+
developer_group: مجموعة المروجين
|
308
|
+
duration: المدة الزمنية
|
309
|
+
included_at: المدرجة في
|
310
|
+
indefinite_duration: غير محدد
|
311
|
+
internal_organisation: تنظيم داخلي
|
312
|
+
is_transparent:
|
313
|
+
'false': مبهمة
|
314
|
+
'true': شفافة
|
315
|
+
local_area: منطقة التنظيم
|
316
|
+
participatory_scope: ما الذي تقرر
|
317
|
+
participatory_structure: كيف تقرر ذلك
|
318
|
+
private_space: هذا هو التجمع الخاص
|
319
|
+
purpose_of_action: الغرض من الإجراء
|
320
|
+
read_less: أقرأ أقل
|
321
|
+
read_more: اقرأ المزيد
|
322
|
+
related_participatory_processes: العمليات التشاركية ذات الصلة
|
323
|
+
scope: نطاق
|
324
|
+
social_networks: شبكات التواصل الاجتماعي
|
325
|
+
target: من يشارك
|
326
|
+
statistics:
|
327
|
+
answers_count: أجوبة
|
328
|
+
assemblies_count: الجمعيات
|
329
|
+
comments_count: تعليقات
|
330
|
+
debates_count: مناقشات
|
331
|
+
endorsements_count: موافقات
|
332
|
+
headline: نشاط
|
333
|
+
meetings_count: اجتماعات
|
334
|
+
orders_count: تأييدات
|
335
|
+
pages_count: صفحات
|
336
|
+
projects_count: مشاريع
|
337
|
+
proposals_count: اقتراحات
|
338
|
+
results_count: نتائج
|
339
|
+
surveys_count: دراسات استقصائية
|
340
|
+
users_count: مشارك
|
341
|
+
votes_count: الدعم
|
342
|
+
assembly_members:
|
343
|
+
assembly_member:
|
344
|
+
designated_on: المعينة على
|
345
|
+
index:
|
346
|
+
title: الأعضاء
|
347
|
+
help:
|
348
|
+
participatory_spaces:
|
349
|
+
assemblies:
|
350
|
+
contextual: "<p>جمعية <strong></strong> هي مجموعة من أعضاء المنظمة الذين يجتمعون دوريًا لاتخاذ قرارات بشأن منطقة أو نطاق معين من المنظمة.</p> <p>تعقد الجمعيات اجتماعات ، وبعضها خاص وبعضها مفتوح. إذا كانت مفتوحة ، فمن الممكن المشاركة فيها (على سبيل المثال: حضور ما إذا كانت القدرة تسمح بذلك ، إضافة نقاط إلى جدول الأعمال ، أو التعليق على المقترحات والقرارات التي يتخذها هذا الجهاز).</p> <p>أمثلة: جمعية عامة (تجتمع مرة واحدة في السنة لتحديد خطوط عمل المنظمة الرئيسية بالإضافة إلى هيئاتها التنفيذية عن طريق التصويت) ، ومجلس استشاري للمساواة (يجتمع كل شهرين لتقديم مقترحات حول كيفية تحسين العلاقات بين الجنسين في المنظمة) ، كل لجنة تقييم (تجتمع كل شهر لمراقبة العملية) أو هيئة ضمان (تجمع الحوادث أو الإساءات أو مقترحات لتحسين إجراءات صنع القرار) كلها أمثلة على الجمعيات.</p>\n"
|
351
|
+
page: "<p>جمعية <strong></strong> هي مجموعة من أعضاء المنظمة الذين يجتمعون دوريًا لاتخاذ قرارات بشأن منطقة أو نطاق معين من المنظمة.</p> <p>تعقد الجمعيات اجتماعات ، وبعضها خاص وبعضها مفتوح. إذا كانت مفتوحة ، فمن الممكن المشاركة فيها (على سبيل المثال: حضور ما إذا كانت القدرة تسمح بذلك ، إضافة نقاط إلى جدول الأعمال ، أو التعليق على المقترحات والقرارات التي يتخذها هذا الجهاز).</p> <p>أمثلة: جمعية عامة (تجتمع مرة واحدة في السنة لتحديد خطوط عمل المنظمة الرئيسية بالإضافة إلى هيئاتها التنفيذية عن طريق التصويت) ، ومجلس استشاري للمساواة (يجتمع كل شهرين لتقديم مقترحات حول كيفية تحسين العلاقات بين الجنسين في المنظمة) ، كل لجنة تقييم (تجتمع كل شهر لمراقبة العملية) أو هيئة ضمان (تجمع الحوادث أو الإساءات أو مقترحات لتحسين إجراءات صنع القرار) كلها أمثلة على الجمعيات.</p>\n"
|
352
|
+
title: ما هي الجمعيات؟
|
353
|
+
log:
|
354
|
+
value_types:
|
355
|
+
assembly_presenter:
|
356
|
+
not_found: 'لم يتم العثور على التجميع في قاعدة البيانات (المعرف: %{id})'
|
357
|
+
menu:
|
358
|
+
assemblies: الجمعيات
|
359
|
+
metrics:
|
360
|
+
assemblies:
|
361
|
+
description: عدد التجميعات التي تم إنشاؤها
|
362
|
+
object: المجالس
|
363
|
+
title: الجمعيات
|
364
|
+
errors:
|
365
|
+
messages:
|
366
|
+
cannot_be_blank: لا يمكن أن يكون فارغا
|
367
|
+
layouts:
|
368
|
+
decidim:
|
369
|
+
assemblies:
|
370
|
+
assembly:
|
371
|
+
more_info: مزيد من المعلومات
|
372
|
+
take_part: خذ جزء
|
373
|
+
index:
|
374
|
+
children: 'المجالس: '
|
375
|
+
organizational_chart: الهيكل التنظيمي
|
376
|
+
promoted_assemblies: المجالس البارزة
|
377
|
+
reset_chart: إعادة تعيين
|
378
|
+
promoted_assembly:
|
379
|
+
more_info: مزيد من المعلومات
|
380
|
+
take_part: خذ جزء
|
381
|
+
assembly_navigation:
|
382
|
+
assembly_member_menu_item: الأعضاء
|
383
|
+
assembly_menu_item: الجمعية
|
384
|
+
assembly_widgets:
|
385
|
+
show:
|
386
|
+
take_part: شارِك
|