decidim-assemblies 0.27.5 → 0.27.6
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/cells/decidim/assemblies/assembly_m_cell.rb +1 -1
- data/app/cells/decidim/assemblies/content_blocks/highlighted_assemblies/show.erb +1 -1
- data/app/controllers/decidim/assemblies/widgets_controller.rb +11 -1
- data/app/events/decidim/assemblies/create_assembly_member_event.rb +1 -1
- data/app/events/decidim/role_assigned_to_assembly_event.rb +0 -5
- data/app/helpers/decidim/assemblies/assemblies_helper.rb +1 -1
- data/app/permissions/decidim/assemblies/permissions.rb +12 -0
- data/config/locales/ar.yml +1 -1
- data/config/locales/bg.yml +67 -0
- data/config/locales/ca.yml +3 -3
- data/config/locales/de.yml +2 -2
- data/config/locales/el.yml +0 -1
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +1 -1
- data/config/locales/fi-plain.yml +1 -1
- data/config/locales/gl.yml +0 -1
- data/config/locales/he-IL.yml +110 -0
- data/config/locales/hu.yml +2 -0
- data/config/locales/id-ID.yml +1 -2
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ko.yml +92 -0
- data/config/locales/lb.yml +1 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +4 -0
- data/config/locales/pt-BR.yml +71 -59
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/sk.yml +1 -0
- data/config/locales/sl.yml +0 -1
- data/config/locales/sq-AL.yml +84 -0
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +1 -2
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +1 -2
- data/decidim-assemblies.gemspec +32 -0
- data/lib/decidim/assemblies/admin_engine.rb +1 -1
- data/lib/decidim/assemblies/test/factories.rb +46 -27
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +20 -19
- data/config/environment.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bd3565ba1ebf7a376f1ed77cc065a1c3ebaea64786206c858ffd214b48d88ab
|
4
|
+
data.tar.gz: 3a28c3d8f14858d5733a323adb9c4df53d62719be3253f01f998a0c3c1f91d75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0396e930767321c52aa308a3e91fcee4f83e4cb5eef0d8cbc1eb724e646fd914ad9605a2da2a7c52d207e38770ceb1c86464009edd380dccb181f64b0a449c59'
|
7
|
+
data.tar.gz: 6d6c0e98f2a7889fd2d8d7a71ba8a04f13e4b577eb542c3eaf17b44355ff90bd729ffdd9da9bebd7d12cfea864826d75ab10fb254ee9f558197c67f04014d3f5
|
@@ -10,7 +10,7 @@
|
|
10
10
|
<div aria-hidden="true" class="card__image-top"
|
11
11
|
style="background-image:url('<%= assembly.attached_uploader(:hero_image).path %>')"></div>
|
12
12
|
<div class="card__content">
|
13
|
-
<span class="card__title card__link"><%=
|
13
|
+
<span class="card__title card__link"><%= decidim_escape_translated assembly.title %></span>
|
14
14
|
</div>
|
15
15
|
<% end %>
|
16
16
|
</div>
|
@@ -5,10 +5,16 @@ module Decidim
|
|
5
5
|
class WidgetsController < Decidim::WidgetsController
|
6
6
|
helper Decidim::SanitizeHelper
|
7
7
|
|
8
|
+
def show
|
9
|
+
enforce_permission_to :embed, :participatory_space, current_participatory_space: model if model
|
10
|
+
|
11
|
+
super
|
12
|
+
end
|
13
|
+
|
8
14
|
private
|
9
15
|
|
10
16
|
def model
|
11
|
-
@model ||= Assembly.find_by(slug: params[:assembly_slug])
|
17
|
+
@model ||= Assembly.where(organization: current_organization).public_spaces.find_by(slug: params[:assembly_slug])
|
12
18
|
end
|
13
19
|
|
14
20
|
def current_participatory_space
|
@@ -18,6 +24,10 @@ module Decidim
|
|
18
24
|
def iframe_url
|
19
25
|
@iframe_url ||= assembly_widget_url(model)
|
20
26
|
end
|
27
|
+
|
28
|
+
def permission_class_chain
|
29
|
+
::Decidim.permissions_registry.chain_for(::Decidim::Assemblies::ApplicationController)
|
30
|
+
end
|
21
31
|
end
|
22
32
|
end
|
23
33
|
end
|
@@ -2,13 +2,8 @@
|
|
2
2
|
|
3
3
|
module Decidim
|
4
4
|
class RoleAssignedToAssemblyEvent < Decidim::Events::SimpleEvent
|
5
|
-
include Decidim::Events::NotificationEvent
|
6
5
|
include Decidim::Events::AuthorEvent
|
7
6
|
|
8
|
-
def notification_title
|
9
|
-
I18n.t("notification_title", **i18n_options).html_safe
|
10
|
-
end
|
11
|
-
|
12
7
|
def i18n_role
|
13
8
|
I18n.t(extra["role"], scope: "decidim.admin.models.assembly_user_role.roles", default: extra["role"])
|
14
9
|
end
|
@@ -31,7 +31,7 @@ module Decidim
|
|
31
31
|
|
32
32
|
def assembly_features(assembly)
|
33
33
|
html = "".html_safe
|
34
|
-
html += "<strong>#{
|
34
|
+
html += "<strong>#{decidim_escape_translated(assembly.title)}: </strong>".html_safe
|
35
35
|
html += t("assemblies.show.private_space", scope: "decidim").to_s.html_safe
|
36
36
|
html += ", #{t("assemblies.show.is_transparent.#{assembly.is_transparent}", scope: "decidim")}".html_safe if assembly.is_transparent?
|
37
37
|
html += " #{decidim_sanitize_editor translated_attribute(assembly.special_features)}".html_safe
|
@@ -16,6 +16,7 @@ module Decidim
|
|
16
16
|
if permission_action.scope == :public
|
17
17
|
public_list_assemblies_action?
|
18
18
|
public_read_assembly_action?
|
19
|
+
public_embed_assembly_action?
|
19
20
|
public_list_members_action?
|
20
21
|
return permission_action
|
21
22
|
end
|
@@ -136,6 +137,17 @@ module Decidim
|
|
136
137
|
allow!
|
137
138
|
end
|
138
139
|
|
140
|
+
def public_embed_assembly_action?
|
141
|
+
return unless permission_action.action == :embed &&
|
142
|
+
[:assembly, :participatory_space].include?(permission_action.subject) &&
|
143
|
+
assembly
|
144
|
+
|
145
|
+
return disallow! unless assembly.published?
|
146
|
+
return disallow! if assembly.private_space && !assembly.is_transparent?
|
147
|
+
|
148
|
+
allow!
|
149
|
+
end
|
150
|
+
|
139
151
|
# All users with a relation to a assembly and organization admins can enter
|
140
152
|
# the space area. The sapce area is considered to be the assemblies zone,
|
141
153
|
# not the assembly groups one.
|
data/config/locales/ar.yml
CHANGED
@@ -59,6 +59,7 @@ ar:
|
|
59
59
|
subtitle: العنوان الفرعي
|
60
60
|
target: من يشارك
|
61
61
|
title: العنوان
|
62
|
+
twitter: X
|
62
63
|
weight: موضع الطلب
|
63
64
|
youtube: يوتيوب
|
64
65
|
assembly_member:
|
@@ -302,7 +303,6 @@ ar:
|
|
302
303
|
select_parent_assembly: حدد الجمعية الأصلية
|
303
304
|
social_handlers: التواصل الاجتماعي
|
304
305
|
title: معلومات عامة
|
305
|
-
visbility: الرؤية
|
306
306
|
assemblies_settings:
|
307
307
|
edit:
|
308
308
|
update: تحديث
|
data/config/locales/bg.yml
CHANGED
@@ -2,11 +2,78 @@
|
|
2
2
|
bg:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
assemblies_setting:
|
6
|
+
enable_organization_chart: Активиране на организационна диаграма
|
5
7
|
assembly:
|
6
8
|
area_id: Район
|
7
9
|
assembly_type: Тип събрание
|
8
10
|
assembly_type_other: Друг тип събрание
|
11
|
+
errors:
|
12
|
+
models:
|
13
|
+
assembly:
|
14
|
+
attributes:
|
15
|
+
document:
|
16
|
+
allowed_file_content_types: 'Невалиден файлов формат. Разрешени са само файлове със следните разширения: %{types}'
|
9
17
|
decidim:
|
18
|
+
admin:
|
19
|
+
assemblies:
|
20
|
+
index:
|
21
|
+
not_published: Не публикувано
|
22
|
+
assemblies_settings:
|
23
|
+
update:
|
24
|
+
error: Възникна проблем при актуализирането на настройките.
|
25
|
+
success: Настройките са актуализирани успешно.
|
26
|
+
assembly_members:
|
27
|
+
edit:
|
28
|
+
title: Актуализиране на член на събранието.
|
29
|
+
new:
|
30
|
+
title: Нов член на събранието.
|
31
|
+
assembly_user_roles:
|
32
|
+
edit:
|
33
|
+
title: Актуализиране на администратора на събранието.
|
34
|
+
new:
|
35
|
+
title: Нов администратор на събранието.
|
36
|
+
menu:
|
37
|
+
assemblies_settings: Настройки
|
38
|
+
assemblies_submenu:
|
39
|
+
info: Информация
|
10
40
|
assemblies:
|
41
|
+
admin:
|
42
|
+
assemblies_settings:
|
43
|
+
form:
|
44
|
+
title: Настройки за събрания
|
45
|
+
assembly_imports:
|
46
|
+
form:
|
47
|
+
document_legend: Добавяне на документ
|
48
|
+
assembly_members:
|
49
|
+
form:
|
50
|
+
image_guide: За предпочитане използвайте хоризонтално изображение без текст.
|
51
|
+
index:
|
52
|
+
filter:
|
53
|
+
all: Всички
|
54
|
+
filter_by: Филтрирай по
|
55
|
+
search: Търсене
|
56
|
+
pages:
|
57
|
+
home:
|
58
|
+
highlighted_assemblies:
|
59
|
+
assemblies_button_title: Връзка към страницата „Събрания“, на която се показват всички събрания
|
11
60
|
show:
|
12
61
|
area: Район
|
62
|
+
is_transparent:
|
63
|
+
'false': непрозрачно
|
64
|
+
'true': прозрачно
|
65
|
+
read_less: Скрийте
|
66
|
+
read_more: Прочетете повече
|
67
|
+
social_networks: Социални мрежи
|
68
|
+
errors:
|
69
|
+
messages:
|
70
|
+
cannot_be_blank: не може да остане празно
|
71
|
+
layouts:
|
72
|
+
decidim:
|
73
|
+
assemblies:
|
74
|
+
index:
|
75
|
+
children: 'Събрания: '
|
76
|
+
organizational_chart: Организационна диаграма
|
77
|
+
reset_chart: Начално състояние
|
78
|
+
assembly_navigation:
|
79
|
+
assembly_menu_item: Събранието
|
data/config/locales/ca.yml
CHANGED
@@ -231,9 +231,9 @@ ca:
|
|
231
231
|
name: Membre
|
232
232
|
positions:
|
233
233
|
other: Altre
|
234
|
-
president:
|
235
|
-
secretary:
|
236
|
-
vice_president:
|
234
|
+
president: Presidència
|
235
|
+
secretary: Secretaria
|
236
|
+
vice_president: Vicepresidència
|
237
237
|
assembly_user_role:
|
238
238
|
fields:
|
239
239
|
email: Correu electrònic
|
data/config/locales/de.yml
CHANGED
@@ -141,7 +141,7 @@ de:
|
|
141
141
|
new:
|
142
142
|
copy: Kopieren
|
143
143
|
select: Wählen Sie die Daten aus, die Sie duplizieren möchten
|
144
|
-
title:
|
144
|
+
title: Dupliziertes Gremium
|
145
145
|
assembly_imports:
|
146
146
|
create:
|
147
147
|
error: Beim Importieren dieses Gremiums ist ein Fehler aufgetreten.
|
@@ -292,7 +292,7 @@ de:
|
|
292
292
|
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf dieses Gremium verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und es muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
293
293
|
social_handlers: Sozial
|
294
294
|
title: Allgemeine Information
|
295
|
-
visbility:
|
295
|
+
visbility: Sichtbarkeit
|
296
296
|
assemblies_settings:
|
297
297
|
edit:
|
298
298
|
update: Aktualisieren
|
data/config/locales/el.yml
CHANGED
data/config/locales/es.yml
CHANGED
@@ -231,9 +231,9 @@ es:
|
|
231
231
|
name: Miembro
|
232
232
|
positions:
|
233
233
|
other: Otro
|
234
|
-
president:
|
234
|
+
president: Presidencia
|
235
235
|
secretary: Secretaria
|
236
|
-
vice_president:
|
236
|
+
vice_president: Vicepresidencia
|
237
237
|
assembly_user_role:
|
238
238
|
fields:
|
239
239
|
email: Correo electrónico
|
data/config/locales/eu.yml
CHANGED
@@ -292,7 +292,7 @@ eu:
|
|
292
292
|
slug_help: 'URL-ren testu laburrak batzar honetara daramaten URL-ak sortzeko erabiltzen dira. Letrak, zenbakiak eta gidoiak soilik onartzen ditu, eta letra batez hasi behar du. Adibidea: % {url}'
|
293
293
|
social_handlers: Soziala
|
294
294
|
title: Informazio orokorra
|
295
|
-
visbility:
|
295
|
+
visbility: Ikusgarritasuna
|
296
296
|
assemblies_settings:
|
297
297
|
edit:
|
298
298
|
update: Eguneratu
|
data/config/locales/fi-plain.yml
CHANGED
@@ -292,7 +292,7 @@ fi-pl:
|
|
292
292
|
slug_help: 'URL-tunnisteita käytetään tähän ryhmään osoittavien URL-osoitteiden luonnissa. Hyväksyy kirjaimet, numerot ja viivat. Ensimmäinen merkki on oltava kirjain. Esimerkiksi: %{url}'
|
293
293
|
social_handlers: Sosiaalinen media
|
294
294
|
title: Yleiset tiedot
|
295
|
-
visbility:
|
295
|
+
visbility: Näkyvyys
|
296
296
|
assemblies_settings:
|
297
297
|
edit:
|
298
298
|
update: Päivitä
|
data/config/locales/gl.yml
CHANGED
@@ -0,0 +1,110 @@
|
|
1
|
+
---
|
2
|
+
he:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
assemblies_type:
|
6
|
+
title: כותרת
|
7
|
+
assembly:
|
8
|
+
announcement: הכרזה
|
9
|
+
area_id: אזור
|
10
|
+
assembly_type: סוג אסיפה
|
11
|
+
assembly_type_other: סוג אסיפה אחרת
|
12
|
+
banner_image: תמונת הבאנר
|
13
|
+
closing_date: תאריך סגירה
|
14
|
+
closing_date_reason: סיבת תאריך סגירה
|
15
|
+
composition: הרכב
|
16
|
+
copy_categories: העתקת קטגוריה
|
17
|
+
copy_components: העתקת רכיבים
|
18
|
+
copy_features: העתקת מאפיינים
|
19
|
+
created_by: נוצר ע"י
|
20
|
+
created_by_other: נוצר על ידי אחרים
|
21
|
+
creation_date: תאריך יצירה
|
22
|
+
decidim_area_id: אזור
|
23
|
+
decidim_assemblies_type_id: סוג אסיפה
|
24
|
+
decidim_scope_id: היקף
|
25
|
+
description: תיאור
|
26
|
+
developer_group: קבוצת יזמים
|
27
|
+
document: מסמך
|
28
|
+
domain: דומיין
|
29
|
+
duration: משך זמן
|
30
|
+
facebook: פייסבוק
|
31
|
+
github: Github
|
32
|
+
hashtag: תַּג הַקְבָּצָה
|
33
|
+
hero_image: תמונת ראשית
|
34
|
+
import_attachments: יבוא צרופות
|
35
|
+
import_categories: ייבוא קטגוריות
|
36
|
+
import_components: ייבוא רכיבים
|
37
|
+
included_at: נכלל ב
|
38
|
+
instagram: אינסטגרם
|
39
|
+
internal_organisation: ארגון פנימי
|
40
|
+
is_transparent: שקוף
|
41
|
+
local_area: אזור ארגון
|
42
|
+
meta_scope: מטא נתונים של היקף
|
43
|
+
parent_id: אסיפה (הורה)
|
44
|
+
participatory_processes_ids: תהליך השתתפותי מקושר
|
45
|
+
participatory_scope: מה הוחלט
|
46
|
+
participatory_structure: איך זה מוחלט
|
47
|
+
private_space: מרחב פרטי
|
48
|
+
promoted: הודגש
|
49
|
+
published_at: פורסם בתאריך
|
50
|
+
purpose_of_action: מטרת הפעולה
|
51
|
+
scope_id: היקף
|
52
|
+
scopes_enabled: היקפים מאופשרים
|
53
|
+
short_description: תיאור קצר
|
54
|
+
show_statistics: הצגת סטטיסטיקה
|
55
|
+
slug: כינוי לקישור
|
56
|
+
special_features: מאפיינים מיוחדים
|
57
|
+
decidim:
|
58
|
+
admin:
|
59
|
+
assembly_copies:
|
60
|
+
new:
|
61
|
+
title: שכפל אסיפה
|
62
|
+
assembly_imports:
|
63
|
+
create:
|
64
|
+
error: הייתה בעיה בייבוא אסיפה זו.
|
65
|
+
success: אסיפה יובאה בהצלחה.
|
66
|
+
new:
|
67
|
+
import: ייבוא
|
68
|
+
select: בחירת הנתונים לייבוא
|
69
|
+
title: ייבוא אסיפה
|
70
|
+
assembly_members:
|
71
|
+
create:
|
72
|
+
error: הייתה בעיה בהוספת חבר.ה עבור אסיפה זו.
|
73
|
+
success: חבר.ה נוצר.ה בהצלחה עבור האסיפה הזו.
|
74
|
+
destroy:
|
75
|
+
success: חבר.ה נמחק.ה בהצלחה מאסיפה זו.
|
76
|
+
edit:
|
77
|
+
update: עדכון
|
78
|
+
index:
|
79
|
+
assembly_members_title: חברי.ות אסיפה
|
80
|
+
new:
|
81
|
+
create: יצירה
|
82
|
+
update:
|
83
|
+
error: הייתה בעיה בעדכון חבר.ה עבור אסיפה זו.
|
84
|
+
success: חבר.ה עודכנ.ה בהצלחה עבור אסיפה זו.
|
85
|
+
assembly_publications:
|
86
|
+
create:
|
87
|
+
error: הייתה בעיה בפרסום אסיפה זו.
|
88
|
+
success: אסיפה פורסמה בהצלחה.
|
89
|
+
destroy:
|
90
|
+
error: הייתה בעיה בביטול פרסום אסיפה זו.
|
91
|
+
success: פרסום האסיפה בוטל בהצלחה.
|
92
|
+
assembly_user_roles:
|
93
|
+
create:
|
94
|
+
error: הייתה בעיה בהוספת מנהל.ת עבור אסיפה זו.
|
95
|
+
assemblies:
|
96
|
+
show:
|
97
|
+
area: אזור
|
98
|
+
closing_date: תאריך סגירה
|
99
|
+
composition: הרכב
|
100
|
+
created_by: נוצר ע"י
|
101
|
+
creation_date: תאריך יצירה
|
102
|
+
developer_group: קבוצת יזמים
|
103
|
+
included_at: נכלל ב
|
104
|
+
internal_organisation: ארגון פנימי
|
105
|
+
local_area: אזור ארגון
|
106
|
+
participatory_scope: מה הוחלט
|
107
|
+
participatory_structure: איך זה מוחלט
|
108
|
+
purpose_of_action: מטרת הפעולה
|
109
|
+
related_participatory_processes: תהליך השתתפותי מקושר
|
110
|
+
scope: היקף
|
data/config/locales/hu.yml
CHANGED
@@ -59,6 +59,7 @@ hu:
|
|
59
59
|
subtitle: Felirat
|
60
60
|
target: Ki vesz részt
|
61
61
|
title: Cím
|
62
|
+
twitter: X
|
62
63
|
weight: Pozíció sorrend
|
63
64
|
youtube: Youtube
|
64
65
|
assembly_member:
|
@@ -315,6 +316,7 @@ hu:
|
|
315
316
|
index:
|
316
317
|
filter:
|
317
318
|
all: Összes
|
319
|
+
ceased: Megszűnt
|
318
320
|
filter_by: 'Szűrés ez alapján:'
|
319
321
|
search: Keresés
|
320
322
|
content_blocks:
|
data/config/locales/id-ID.yml
CHANGED
@@ -225,7 +225,6 @@ id:
|
|
225
225
|
select_parent_assembly: Pilih perakitan induk
|
226
226
|
social_handlers: Sosial
|
227
227
|
title: Informasi Umum
|
228
|
-
visbility: Visibilitas
|
229
228
|
assemblies_settings:
|
230
229
|
edit:
|
231
230
|
update: Memperbarui
|
@@ -304,7 +303,7 @@ id:
|
|
304
303
|
purpose_of_action: Tujuan tindakan
|
305
304
|
read_less: Baca lebih sedikit
|
306
305
|
read_more: Baca lebih lajut
|
307
|
-
related_participatory_processes: Proses
|
306
|
+
related_participatory_processes: Proses Partisipatif Terkait
|
308
307
|
scope: Cakupan
|
309
308
|
social_networks: Jaringan sosial
|
310
309
|
target: Yang berpartisipasi
|
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ko.yml
CHANGED
@@ -1 +1,93 @@
|
|
1
|
+
---
|
1
2
|
ko:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
assembly:
|
6
|
+
document: 문서
|
7
|
+
domain: 도메인
|
8
|
+
duration: 지속 기간
|
9
|
+
facebook: 페이스북
|
10
|
+
github: 깃허브
|
11
|
+
hashtag: 해시태그
|
12
|
+
hero_image: 홈 이미지
|
13
|
+
import_attachments: '첨부 파일 가져오기:'
|
14
|
+
import_categories: 카테고리 가져오기
|
15
|
+
import_components: 구성요소 가져오기
|
16
|
+
instagram: 인스타그램
|
17
|
+
local_area: 조직 영역
|
18
|
+
private_space: 비공개 공간
|
19
|
+
scope_id: 범위
|
20
|
+
scopes_enabled: 범위 활성화됨
|
21
|
+
twitter: X
|
22
|
+
youtube: 유튜브
|
23
|
+
assembly_member:
|
24
|
+
birthday: 생일
|
25
|
+
birthplace: 출생지
|
26
|
+
full_name: 전체 이름
|
27
|
+
gender: 성별
|
28
|
+
non_user_avatar: 아바타
|
29
|
+
user_id: 사용자 또는 그룹
|
30
|
+
assembly_user_role:
|
31
|
+
email: 이메일
|
32
|
+
name: 이름
|
33
|
+
role: 역할
|
34
|
+
decidim:
|
35
|
+
admin:
|
36
|
+
assembly_copies:
|
37
|
+
new:
|
38
|
+
copy: 복사
|
39
|
+
assembly_imports:
|
40
|
+
new:
|
41
|
+
import: 가져오기
|
42
|
+
assembly_members:
|
43
|
+
edit:
|
44
|
+
update: 업데이트
|
45
|
+
new:
|
46
|
+
create: 생성하기
|
47
|
+
assembly_user_roles:
|
48
|
+
edit:
|
49
|
+
update: 업데이트
|
50
|
+
new:
|
51
|
+
create: 생성하기
|
52
|
+
menu:
|
53
|
+
assemblies_submenu:
|
54
|
+
assembly_members: 구성원들
|
55
|
+
attachment_collections: 폴더
|
56
|
+
attachment_files: 파일
|
57
|
+
attachments: 첨부 파일
|
58
|
+
categories: 카테고리
|
59
|
+
components: 구성요소
|
60
|
+
models:
|
61
|
+
assembly_member:
|
62
|
+
fields:
|
63
|
+
designation_date: 지정된 날짜
|
64
|
+
full_name: 이름
|
65
|
+
name: 멤버
|
66
|
+
assembly_user_role:
|
67
|
+
fields:
|
68
|
+
email: 이메일
|
69
|
+
name: 이름
|
70
|
+
role: 역할
|
71
|
+
assemblies:
|
72
|
+
admin:
|
73
|
+
assemblies:
|
74
|
+
form:
|
75
|
+
metadata: 메타데이터
|
76
|
+
select_an_area: 영역 선택
|
77
|
+
new_import:
|
78
|
+
accepted_types:
|
79
|
+
json: JSON
|
80
|
+
assembly_members:
|
81
|
+
index:
|
82
|
+
members: 멤버
|
83
|
+
show:
|
84
|
+
local_area: 조직 영역
|
85
|
+
layouts:
|
86
|
+
decidim:
|
87
|
+
assemblies:
|
88
|
+
assembly:
|
89
|
+
more_info: 추가 정보
|
90
|
+
promoted_assembly:
|
91
|
+
more_info: 추가 정보
|
92
|
+
assembly_navigation:
|
93
|
+
assembly_member_menu_item: 멤버
|
data/config/locales/lb.yml
CHANGED
@@ -309,7 +309,7 @@ lb:
|
|
309
309
|
purpose_of_action: Zweck der Aktion
|
310
310
|
read_less: Lese weniger
|
311
311
|
read_more: Weiterlesen
|
312
|
-
related_participatory_processes:
|
312
|
+
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
313
313
|
scope: Umfang
|
314
314
|
social_networks: Soziale Netzwerke
|
315
315
|
target: Wer nimmt teil?
|
data/config/locales/lt.yml
CHANGED
data/config/locales/lv.yml
CHANGED
data/config/locales/nl.yml
CHANGED
data/config/locales/no.yml
CHANGED
data/config/locales/pl.yml
CHANGED
@@ -375,7 +375,9 @@ pl:
|
|
375
375
|
pages:
|
376
376
|
home:
|
377
377
|
highlighted_assemblies:
|
378
|
+
active_assemblies: Aktywne zespoły
|
378
379
|
assemblies_button_title: Link do strony Zespołów wyświetlającej wszystkie zespoły
|
380
|
+
see_all_assemblies: Zobacz wszystkie zespoły
|
379
381
|
user_profile:
|
380
382
|
member_of:
|
381
383
|
member_of: Członek
|
@@ -405,6 +407,7 @@ pl:
|
|
405
407
|
related_participatory_processes: Powiązane procesy partycypacyjne
|
406
408
|
scope: Zakres
|
407
409
|
social_networks: Portale społecznościowe
|
410
|
+
social_networks_title: Odwiedź zespół na
|
408
411
|
target: Do kogo kierowane
|
409
412
|
assembly_members:
|
410
413
|
assembly_member:
|
@@ -415,6 +418,7 @@ pl:
|
|
415
418
|
assemblies:
|
416
419
|
create_assembly_member:
|
417
420
|
email_intro: Administrator zespołu <a href="%{resource_url}">%{resource_name}</a> ustanowił Cię jego członkiem.
|
421
|
+
email_outro: Otrzymujesz to powiadomienie, ponieważ zaproszono Cię do zespołu. Sprawdź <a href="%{resource_url}">stronę zespołu</a>, aby dołączyć!
|
418
422
|
email_subject: Zaproszono Cię do grona członków zespołu %{resource_name}!
|
419
423
|
notification_title: Zarejestrowano Cię jako członka Zespołu <a href="%{resource_path}">%{resource_name}</a>. Sprawdź <a href="%{resource_path}">stronę zespołu</a>, aby wnieść swój wkład!
|
420
424
|
assembly:
|