decidim-admin 0.28.1 → 0.29.0.rc1
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/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -3
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -42
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +78 -3
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +3 -1
- data/app/controllers/decidim/admin/categories_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +5 -5
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +8 -5
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -3
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +2 -2
- data/app/forms/decidim/admin/static_page_form.rb +0 -1
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +25 -16
- data/app/packs/src/decidim/admin/choose_language.js +2 -0
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +2 -1
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -2
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +2 -2
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +2 -2
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +2 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/_js-callout.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_sidebar_menu.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +1 -7
- data/config/locales/bg.yml +1013 -11
- data/config/locales/ca.yml +18 -11
- data/config/locales/cs.yml +17 -10
- data/config/locales/de.yml +25 -18
- data/config/locales/el.yml +1 -12
- data/config/locales/en.yml +18 -11
- data/config/locales/es-MX.yml +25 -18
- data/config/locales/es-PY.yml +25 -18
- data/config/locales/es.yml +34 -27
- data/config/locales/eu.yml +18 -11
- data/config/locales/fi-plain.yml +16 -9
- data/config/locales/fi.yml +16 -9
- data/config/locales/fr-CA.yml +16 -9
- data/config/locales/fr.yml +15 -8
- data/config/locales/ga-IE.yml +1 -3
- data/config/locales/gl.yml +1 -5
- data/config/locales/hu.yml +10 -10
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +1 -3
- data/config/locales/it.yml +2 -8
- data/config/locales/ja.yml +18 -11
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +1 -8
- data/config/locales/lt.yml +2 -13
- data/config/locales/lv.yml +1 -3
- data/config/locales/nl.yml +1 -8
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +17 -9
- data/config/locales/pt-BR.yml +9 -10
- data/config/locales/pt.yml +1 -8
- data/config/locales/ro-RO.yml +1 -12
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +1 -3
- data/config/locales/sl.yml +1 -0
- data/config/locales/sq-AL.yml +410 -0
- data/config/locales/sr-CS.yml +1 -3
- data/config/locales/sv.yml +1 -8
- data/config/locales/th-TH.yml +98 -0
- data/config/locales/tr-TR.yml +1 -5
- data/config/locales/uk.yml +1 -3
- data/config/locales/zh-CN.yml +1 -3
- data/config/locales/zh-TW.yml +2 -12
- data/config/routes.rb +1 -1
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +27 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +180 -0
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +67 -0
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +77 -0
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +33 -0
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +24 -23
- data/lib/decidim/admin/test/manage_attachments_examples.rb +51 -15
- data/lib/decidim/admin/test/manage_categories_examples.rb +24 -21
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +8 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/test.rb +1 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +32 -27
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/mailers/decidim/admin/application_mailer.rb +0 -12
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/sl.yml
CHANGED
data/config/locales/sq-AL.yml
CHANGED
@@ -62,6 +62,10 @@ sq:
|
|
62
62
|
from: Adresa email e dërguesit
|
63
63
|
github_handler: Emri i përdoruesit Github
|
64
64
|
highlight_color: Theksim
|
65
|
+
highlighted_content_banner_action_subtitle: Nëntitull i butonit të veprimit
|
66
|
+
highlighted_content_banner_action_title: Titulli i butonit të veprimit
|
67
|
+
highlighted_content_banner_action_url: URL e butonit të veprimit
|
68
|
+
highlighted_content_banner_enabled: Shfaq banerin e theksuar të përmbajtjes
|
65
69
|
highlighted_content_banner_image: Imazhi
|
66
70
|
highlighted_content_banner_short_description: Përshkrim i shkurtër
|
67
71
|
highlighted_content_banner_title: Titulli
|
@@ -111,19 +115,369 @@ sq:
|
|
111
115
|
organization: Organizata
|
112
116
|
slug: Slug i adresës URL
|
113
117
|
title: Titulli
|
118
|
+
topic_id: Temë
|
119
|
+
weight: Rendit pozicionet
|
120
|
+
static_page_topic:
|
121
|
+
description: Përshkrimi
|
122
|
+
name: Emri i temës
|
123
|
+
title: Titulli
|
124
|
+
weight: Rendit pozicionet
|
125
|
+
user_group_csv_verification:
|
126
|
+
file: Skeda
|
127
|
+
errors:
|
128
|
+
models:
|
129
|
+
organization:
|
130
|
+
attributes:
|
131
|
+
official_img_footer:
|
132
|
+
allowed_file_content_types: Skedar imazhi i pavlefshëm
|
114
133
|
activerecord:
|
115
134
|
attributes:
|
116
135
|
decidim/static_page:
|
117
136
|
content: Përmbajtje
|
118
137
|
slug: Slug i adresës URL
|
119
138
|
title: Titulli
|
139
|
+
doorkeeper/application:
|
140
|
+
authorize_url: Autorizo URL
|
141
|
+
client_secret: Sekreti i klientit
|
142
|
+
organization_name: Emri i organizatës
|
143
|
+
organization_url: URL e organizatës
|
144
|
+
redirect_uri: Ridrejto URL-të
|
145
|
+
site: Faqe interneti
|
120
146
|
decidim:
|
121
147
|
admin:
|
148
|
+
actions:
|
149
|
+
add: Shto
|
150
|
+
attachment:
|
151
|
+
new: Shtojcë e re
|
152
|
+
browse: Shfleto
|
153
|
+
category:
|
154
|
+
new: Kategoria e re
|
155
|
+
export: Eksporto të gjitha
|
156
|
+
import: Importo
|
157
|
+
newsletter:
|
158
|
+
new: Newsletter i ri
|
159
|
+
per_page: Për faqe
|
160
|
+
permissions: Lejet
|
161
|
+
reject: Refuzo
|
162
|
+
send_me_a_test_email: Më dërgo një email prove
|
163
|
+
share: Shpërndaj
|
164
|
+
user:
|
165
|
+
new: Administrator i ri
|
166
|
+
verify: Verifiko
|
167
|
+
admin_terms_of_service:
|
168
|
+
actions:
|
169
|
+
accept: Pranoj kushtet
|
170
|
+
refuse: Refuzoj kushtet e administratorit
|
171
|
+
title: Pranoj kushtet e përdorimit
|
172
|
+
area_types:
|
173
|
+
edit:
|
174
|
+
update: Përditëso
|
175
|
+
areas:
|
176
|
+
edit:
|
177
|
+
title: Përditëso zonën
|
178
|
+
update: Përditëso
|
179
|
+
new:
|
180
|
+
create: Krijo zonën
|
181
|
+
attachment_collections:
|
182
|
+
new:
|
183
|
+
create: Krijo
|
184
|
+
title: Dojse e re
|
185
|
+
update:
|
186
|
+
error: Ndodhi një gabim gjatë përditësimit të kësaj dosjeje.
|
187
|
+
success: Dosja u përditësua me sukses.
|
188
|
+
attachments:
|
189
|
+
edit:
|
190
|
+
update: Përditëso
|
191
|
+
index:
|
192
|
+
attachments_title: Skedat e bashkëlidhura
|
193
|
+
new:
|
194
|
+
create: Krijo bashkangjitje
|
195
|
+
autocomplete:
|
196
|
+
no_results: Nuk u gjetën rezultate
|
197
|
+
search_prompt: Shkruaj të paktën 3 shkronja për të kërkuar.
|
198
|
+
block_user:
|
199
|
+
new:
|
200
|
+
action: Blloko llogarinë dhe dërgo arsyen
|
201
|
+
justification: Arsye
|
202
|
+
title: Blloko përdoruesin %{name}
|
203
|
+
categories:
|
204
|
+
create:
|
205
|
+
error: Ndodhi një gabim gjatë krijimit të kësaj kategorie.
|
206
|
+
success: Kategoria u krijua me sukses.
|
207
|
+
destroy:
|
208
|
+
success: Kategoria u fshi me sukses.
|
209
|
+
edit:
|
210
|
+
title: Përpuno kategoritë
|
211
|
+
update: Përditëso
|
212
|
+
index:
|
213
|
+
categories_title: Kategoritë
|
214
|
+
new:
|
215
|
+
create: Krijo kategori
|
216
|
+
title: Kategori e re
|
217
|
+
update:
|
218
|
+
error: Ndodhi një gabim gjatë përditësimit të kësaj kategorie.
|
219
|
+
success: Kategoria u përditësua me sukses.
|
220
|
+
component_permissions:
|
221
|
+
update:
|
222
|
+
success: Të drejtat u përditësuan me sukses.
|
223
|
+
components:
|
224
|
+
edit:
|
225
|
+
update: Përditëso
|
226
|
+
index:
|
227
|
+
headers:
|
228
|
+
actions: Veprimet
|
229
|
+
title: Komponentet
|
230
|
+
conflicts:
|
231
|
+
attempts: Tentativa
|
232
|
+
'false': 'Jo'
|
233
|
+
solved: Është zgjidhur
|
234
|
+
transfer:
|
235
|
+
email: Email
|
236
|
+
name: Emri
|
237
|
+
reason: Arsyeja
|
238
|
+
title: Transfero
|
239
|
+
'true': 'Po'
|
240
|
+
user_name: Perdoruesit
|
241
|
+
content_blocks:
|
242
|
+
edit:
|
243
|
+
title: Përmbatja e faqes
|
244
|
+
update: Përditëso
|
245
|
+
exports:
|
246
|
+
formats:
|
247
|
+
CSV: CSV
|
248
|
+
Excel: Excel
|
249
|
+
FormPDF: PDF
|
250
|
+
JSON: JSON
|
251
|
+
notice: Eksportimi është duke u kryer. Do të merrni një email kur të ketë perfunduar.
|
252
|
+
filters:
|
253
|
+
category_id_eq:
|
254
|
+
label: Kategori
|
255
|
+
filter_label: Filtra
|
256
|
+
invitation_accepted_at_present:
|
257
|
+
label: Ftesa u pranua
|
258
|
+
values:
|
259
|
+
'false': 'Jo'
|
260
|
+
'true': 'Po'
|
261
|
+
last_sign_in_at_present:
|
262
|
+
values:
|
263
|
+
'false': 'Jo'
|
264
|
+
'true': 'Po'
|
265
|
+
moderated_users:
|
266
|
+
reports_reason_eq:
|
267
|
+
label: Arsyeja e raportimit
|
268
|
+
values:
|
269
|
+
does_not_belong: Nuk përket
|
270
|
+
offensive: Ofenduese
|
271
|
+
spam: Spam
|
272
|
+
moderations:
|
273
|
+
reportable_type_string_eq:
|
274
|
+
label: Tipi
|
275
|
+
officialized_at_null:
|
276
|
+
label: Gjendja
|
277
|
+
participatory_space_private_users:
|
278
|
+
user_invitation_accepted_at_not_null:
|
279
|
+
label: Ftesa u pranua
|
280
|
+
values:
|
281
|
+
'false': E papranuar
|
282
|
+
'true': Pranuar
|
283
|
+
user_invitation_sent_at_not_null:
|
284
|
+
label: Ftesa u dërguan
|
285
|
+
values:
|
286
|
+
'false': Nuk është dërguar
|
287
|
+
'true': Dërguar
|
288
|
+
private_space_eq:
|
289
|
+
label: Private
|
290
|
+
values:
|
291
|
+
'false': Publike
|
292
|
+
'true': Private
|
293
|
+
published_at_null:
|
294
|
+
label: Publikuar
|
295
|
+
values:
|
296
|
+
'false': Publikuar
|
297
|
+
'true': E papublikuar
|
298
|
+
scope_id_eq:
|
299
|
+
label: Qëllimi
|
300
|
+
search_label: Kërko
|
301
|
+
state_eq:
|
302
|
+
label: Gjendja
|
303
|
+
values:
|
304
|
+
all: Të gjitha
|
305
|
+
pending: Në pritje
|
306
|
+
rejected: Refuzuar
|
307
|
+
verified: Verifikuar
|
308
|
+
forms:
|
309
|
+
file_help:
|
310
|
+
import:
|
311
|
+
message_1: Skedat CSV, JSON dhe Excel (.xlsx) janë të suportuara
|
312
|
+
impersonations:
|
313
|
+
form:
|
314
|
+
authorization_method: Mënyra e autorizimit
|
315
|
+
name: Emri
|
316
|
+
reason: Arsyeja
|
317
|
+
new:
|
318
|
+
impersonate: Hiqet si dikush
|
319
|
+
imports:
|
320
|
+
and: dhe
|
321
|
+
new:
|
322
|
+
accepted_mime_types:
|
323
|
+
csv: CSV
|
324
|
+
json: JSON
|
325
|
+
xlsx: Excel (.xlsx)
|
326
|
+
actions:
|
327
|
+
back: Prapa
|
328
|
+
import: Importo
|
329
|
+
logs:
|
330
|
+
filters:
|
331
|
+
text: Kërko me email përdoruesi, emër ose nofkë.
|
332
|
+
user: Përdorues
|
333
|
+
managed_users:
|
334
|
+
promotions:
|
335
|
+
new:
|
336
|
+
promote: Promovo
|
337
|
+
menu:
|
338
|
+
admins: Administratorët
|
339
|
+
appearance: Pamja
|
340
|
+
area_types: Lloji i zonës
|
341
|
+
areas: Zonat
|
342
|
+
components: Komponentët
|
343
|
+
configuration: Konfigurimi
|
344
|
+
content: Përmbajtje e raportuar
|
345
|
+
homepage: Kryefaqja
|
346
|
+
newsletters: Buletinet
|
347
|
+
participants: Pjesëmarrësit
|
348
|
+
scopes: Fushëveprimet
|
349
|
+
settings: Cilësimet
|
350
|
+
static_page_topics: Temat
|
351
|
+
static_pages: Faqet
|
352
|
+
user_groups: Grupet
|
353
|
+
users: Pjesëmarrësit
|
354
|
+
metrics:
|
355
|
+
metrics:
|
356
|
+
see_more_metrics: Shiko më shumë të dhëna
|
122
357
|
models:
|
358
|
+
area:
|
359
|
+
fields:
|
360
|
+
area_type: Lloji i zonës
|
361
|
+
name: Emri
|
362
|
+
area_type:
|
363
|
+
fields:
|
364
|
+
name: Emri
|
365
|
+
plural: Shumës
|
366
|
+
attachment:
|
367
|
+
fields:
|
368
|
+
collection: Dosje
|
369
|
+
content_type: Lloji
|
370
|
+
file_size: Madhësia
|
371
|
+
title: Titulli
|
372
|
+
name: Bashkëngjitje
|
373
|
+
attachment_collection:
|
374
|
+
name: Dosje
|
375
|
+
category:
|
376
|
+
name: Kategori
|
377
|
+
impersonation_log:
|
378
|
+
fields:
|
379
|
+
admin: Administrator
|
380
|
+
expired_at: Skaduar më
|
381
|
+
reason: Arsyeja
|
382
|
+
user: Pjesëmarrës
|
383
|
+
newsletter:
|
384
|
+
fields:
|
385
|
+
created_at: Krijuar më
|
386
|
+
progress: Ecuria
|
387
|
+
sent_to: Dërguar drejt
|
388
|
+
subject: Subjekt
|
389
|
+
name: Buletin
|
390
|
+
scope:
|
391
|
+
fields:
|
392
|
+
name: Emri
|
393
|
+
scope_type:
|
394
|
+
fields:
|
395
|
+
name: Emri
|
396
|
+
plural: Shumës
|
123
397
|
share_token:
|
124
398
|
fields:
|
399
|
+
created_at: Krijuar më
|
400
|
+
expires_at: Skadon më
|
125
401
|
last_used_at: Hera e fundit që u përdor
|
126
402
|
times_used: Sa herë është përdorur
|
403
|
+
token: Token
|
404
|
+
moderated_users:
|
405
|
+
index:
|
406
|
+
reason: Arsyeja
|
407
|
+
report:
|
408
|
+
reasons:
|
409
|
+
does_not_belong: Nuk përket
|
410
|
+
offensive: Ofenduese
|
411
|
+
spam: Spam
|
412
|
+
tabs:
|
413
|
+
blocked: Bllokuar
|
414
|
+
moderations:
|
415
|
+
index:
|
416
|
+
title: Përmbajtje e raportuar
|
417
|
+
report:
|
418
|
+
reasons:
|
419
|
+
does_not_belong: Nuk përket
|
420
|
+
offensive: Ofenduese
|
421
|
+
spam: Spam
|
422
|
+
reports:
|
423
|
+
index:
|
424
|
+
author: Autor(ët)
|
425
|
+
content_original_language: Gjuha origjinale e përmbajtjes
|
426
|
+
reported_content: Përmbajtje e raportuar
|
427
|
+
show:
|
428
|
+
report_reason: Arsyeja
|
429
|
+
title: Detajet e raportit
|
430
|
+
newsletter_templates:
|
431
|
+
index:
|
432
|
+
preview_template: Parapamje
|
433
|
+
title: Shabllonet e newsletter
|
434
|
+
use_template: Përdor këtë shabllon
|
435
|
+
show:
|
436
|
+
use_template: Përdor këtë shabllon
|
437
|
+
newsletters:
|
438
|
+
create:
|
439
|
+
error: Ndodhi një gabim gjatë krijimit të newsletter.
|
440
|
+
success: Newsletter u krijua me sukses. Të lutem, verifikoje para se ta dërgosh.
|
441
|
+
deliver:
|
442
|
+
error: Ndodhi një gabim gjatë dërgimit të newsletter.
|
443
|
+
success: Newsletter u dërgua me sukses.
|
444
|
+
destroy:
|
445
|
+
success: Newsletter u shkatërrua me sukses.
|
446
|
+
edit:
|
447
|
+
save_and_preview: Ruaj dhe parashiko
|
448
|
+
title: Përpuno newsletter
|
449
|
+
index:
|
450
|
+
all: të gjitha
|
451
|
+
all_users: 'Të gjithë përdoruesit '
|
452
|
+
and: 'dhe '
|
453
|
+
confirm_delete: A je i sigurt që do ta fshish këtë newsletter?
|
454
|
+
followers: 'ndjekësit '
|
455
|
+
has_been_sent_to: 'I është dërguar: '
|
456
|
+
not_sent: Nuk është dërguar
|
457
|
+
participants: 'pjesëmarrësit '
|
458
|
+
subscribed_count: 'Abonuar:'
|
459
|
+
title: Newsletters
|
460
|
+
new:
|
461
|
+
save: Ruaj
|
462
|
+
title: Buletin i ri
|
463
|
+
select_recipients_to_deliver:
|
464
|
+
all_spaces: Të gjitha
|
465
|
+
all_users_help: Dërgo buletinin te të gjithë përdoruesit e konfirmuar.
|
466
|
+
confirm_deliver: A je i sigurt që do ta dërgosh këtë buletin? Veprimi nuk mund të anulohet.
|
467
|
+
deliver: Dërgo buletinin
|
468
|
+
none: Asnjë
|
469
|
+
show:
|
470
|
+
preview: Parapamje
|
471
|
+
subject: Tema
|
472
|
+
officializations:
|
473
|
+
index:
|
474
|
+
actions: Veprimet
|
475
|
+
block: Blloko përdoruesin
|
476
|
+
created_at: Krijuar më
|
477
|
+
name: Emri
|
478
|
+
nickname: Nofka
|
479
|
+
reports: Raportet
|
480
|
+
status: Statusi
|
127
481
|
organization:
|
128
482
|
form:
|
129
483
|
social_handlers: Rrjetet sociale
|
@@ -138,3 +492,59 @@ sq:
|
|
138
492
|
saturation: Thellësia
|
139
493
|
title: Përzgjedhësi i ngjyrës
|
140
494
|
update_suggested_colors: Përditëso ngjyrat e rekomanduara
|
495
|
+
resource_permissions:
|
496
|
+
edit:
|
497
|
+
title: Github
|
498
|
+
scope_types:
|
499
|
+
edit:
|
500
|
+
update: Përditëso
|
501
|
+
scopes:
|
502
|
+
edit:
|
503
|
+
update: Përditëso
|
504
|
+
share_tokens:
|
505
|
+
actions:
|
506
|
+
destroy: Fshi
|
507
|
+
share: Shpërndaj
|
508
|
+
static_page_topics:
|
509
|
+
edit:
|
510
|
+
title: Përpuno temën
|
511
|
+
update: Përditëso temën
|
512
|
+
new:
|
513
|
+
create: Krijo temën
|
514
|
+
title: Temë e re
|
515
|
+
static_pages:
|
516
|
+
edit:
|
517
|
+
title: Përpuno faqen
|
518
|
+
update: Përditëso
|
519
|
+
titles:
|
520
|
+
dashboard: Paneli
|
521
|
+
menu: Menu
|
522
|
+
page_topics: Temat
|
523
|
+
pages: Faqet
|
524
|
+
panel: Administrator
|
525
|
+
participants: Pjesëmarrësit
|
526
|
+
statistics: Aktiviteti
|
527
|
+
user_groups: Grupet
|
528
|
+
users: Administratorët
|
529
|
+
user_groups_csv_verifications:
|
530
|
+
new:
|
531
|
+
upload: Ngarko
|
532
|
+
users:
|
533
|
+
form:
|
534
|
+
email: Email
|
535
|
+
name: Emri
|
536
|
+
role: Roli
|
537
|
+
new:
|
538
|
+
create: Fto
|
539
|
+
users_statistics:
|
540
|
+
users_count:
|
541
|
+
admins: Administratorët
|
542
|
+
last_day: Dita e fundit
|
543
|
+
last_month: Muaji i kaluar
|
544
|
+
last_week: Java e kaluar
|
545
|
+
participants: Pjesëmarrësit
|
546
|
+
moderations:
|
547
|
+
models:
|
548
|
+
moderation:
|
549
|
+
fields:
|
550
|
+
reportable_type: Lloji
|
data/config/locales/sr-CS.yml
CHANGED
@@ -118,6 +118,7 @@ sr:
|
|
118
118
|
actions:
|
119
119
|
add: Dodaj
|
120
120
|
browse: Prеglеdaj
|
121
|
+
manage: Upravljaj
|
121
122
|
per_page: Po stranici
|
122
123
|
permissions: Dozvole
|
123
124
|
reject: Odbaci
|
@@ -510,9 +511,6 @@ sr:
|
|
510
511
|
images:
|
511
512
|
preview: Pregled
|
512
513
|
omnipresent_banner_appearance_title: Izmeni sveprisutni baner
|
513
|
-
organization_external_domain_whitelist:
|
514
|
-
edit:
|
515
|
-
update: Ažuriraj
|
516
514
|
shared:
|
517
515
|
gallery:
|
518
516
|
add_images: Dodaj slike
|
data/config/locales/sv.yml
CHANGED
@@ -170,6 +170,7 @@ sv:
|
|
170
170
|
export: Exportera alla
|
171
171
|
export-selection: Exportera markering
|
172
172
|
import: Importera
|
173
|
+
manage: Hantera
|
173
174
|
newsletter:
|
174
175
|
new: Nytt nyhetsbrev
|
175
176
|
participatory_space_private_user:
|
@@ -314,7 +315,6 @@ sv:
|
|
314
315
|
title: Verifieringskonflikter
|
315
316
|
transfer:
|
316
317
|
email: E-post
|
317
|
-
error: Det gick inte att konvertera användaren till hanterad användare.
|
318
318
|
name: Namn
|
319
319
|
reason: Anledning
|
320
320
|
success: Flytten slutfördes problemfritt.
|
@@ -389,7 +389,6 @@ sv:
|
|
389
389
|
report_count_eq: Antal rapporteringar
|
390
390
|
reported_id_string_or_reported_content_cont: Sök %{collection} efter anmälningsID eller innehåll.
|
391
391
|
title_cont: Sök %{collection} efter titel.
|
392
|
-
user_name_or_user_email_cont: Sök %{collection} efter namn eller e-post.
|
393
392
|
user_name_or_user_nickname_or_user_email_cont: Sök i %{collection} efter e-post, namn eller användarnamn.
|
394
393
|
state_eq:
|
395
394
|
label: Län
|
@@ -749,12 +748,6 @@ sv:
|
|
749
748
|
layout_appearance_title: Redigera layoutens utseende
|
750
749
|
preview: Förhandsgranska
|
751
750
|
omnipresent_banner_appearance_title: Redigera banner på alla sidor
|
752
|
-
organization_external_domain_whitelist:
|
753
|
-
edit:
|
754
|
-
update: Uppdatera
|
755
|
-
form:
|
756
|
-
add: Lägg till i vitlistan
|
757
|
-
title: Vitlista för externa domäner
|
758
751
|
participatory_space_private_users:
|
759
752
|
create:
|
760
753
|
error: Det gick inte att lägga till en privat deltagare i deltagarutrymmet.
|
data/config/locales/th-TH.yml
CHANGED
@@ -1 +1,99 @@
|
|
1
|
+
---
|
1
2
|
th:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
area:
|
6
|
+
area_type: ประเภทพื้นที่
|
7
|
+
name: ชื่อ
|
8
|
+
organization: องค์กร
|
9
|
+
area_type:
|
10
|
+
name: ชื่อ
|
11
|
+
organization: องค์กร
|
12
|
+
plural: พหูพจน์
|
13
|
+
attachment:
|
14
|
+
attachment_collection_id: โฟลเดอร์
|
15
|
+
description: คำอธิบาย
|
16
|
+
file: ไฟล์
|
17
|
+
title: ชื่อไฟล์แนบหรือรูปภาพ
|
18
|
+
weight: ตำแหน่งการสั่งซื้อ
|
19
|
+
attachment_collection:
|
20
|
+
description: คำอธิบาย
|
21
|
+
name: ชื่อ
|
22
|
+
organization:
|
23
|
+
machine_translation_display_priority_translation: แปลข้อความก่อน
|
24
|
+
name: ชื่อ
|
25
|
+
official_img_footer: ส่วนท้ายของโลโก้อย่างเป็นทางการ
|
26
|
+
official_url: URL องค์กรอย่างเป็นทางการ
|
27
|
+
omnipresent_banner_short_description: คำอธิบายสั้น
|
28
|
+
omnipresent_banner_title: ชื่อ
|
29
|
+
omnipresent_banner_url: URL
|
30
|
+
organization_admin_email: อีเมลผู้ดูแลระบบองค์กร
|
31
|
+
organization_admin_name: อีเมลผู้ดูแลระบบองค์กร
|
32
|
+
organization_locales: สถานที่ขององค์กร
|
33
|
+
primary_color: หลัก
|
34
|
+
reference_prefix: คำนำหน้าอ้างอิง
|
35
|
+
rich_text_editor_in_public_views: เปิดใช้งานโปรแกรมแก้ไขข้อความแบบ Rich Text สำหรับผู้เข้าร่วม
|
36
|
+
secondary_color: รอง
|
37
|
+
secondary_hosts: เจ้าภาพรอง
|
38
|
+
send_welcome_notification: ส่งการแจ้งเตือนยินดีต้อนรับ
|
39
|
+
success_color: ความสำเร็จ
|
40
|
+
tertiary_color: ระดับอุดมศึกษา
|
41
|
+
time_zone: เขตเวลา
|
42
|
+
tos_version: เงื่อนไขการให้บริการเวอร์ชัน
|
43
|
+
twitter_handler: ตัวจัดการเอ็กซ์
|
44
|
+
user_groups_enabled: เปิดใช้งานกลุ่ม
|
45
|
+
users_registration_mode: โหมดการลงทะเบียนผู้ใช้
|
46
|
+
warning_color: คำเตือน
|
47
|
+
welcome_notification_body: ยินดีต้อนรับเนื้อหาการแจ้งเตือน
|
48
|
+
welcome_notification_subject: ยินดีต้อนรับเรื่องการแจ้งเตือน
|
49
|
+
youtube_handler: ตัวจัดการ YouTube
|
50
|
+
participatory_space_private_user:
|
51
|
+
email: อีเมล
|
52
|
+
name: ชื่อ
|
53
|
+
scope:
|
54
|
+
code: รหัส
|
55
|
+
name: ชื่อ
|
56
|
+
organization: องค์กร
|
57
|
+
parent_id: พ่อแม่
|
58
|
+
scope_type: ประเภทขอบเขต
|
59
|
+
scope_type_id: ประเภทขอบเขต
|
60
|
+
scope_type:
|
61
|
+
name: ชื่อ
|
62
|
+
organization: องค์กร
|
63
|
+
plural: พหูพจน์
|
64
|
+
settings:
|
65
|
+
scope_id: ขอบเขต
|
66
|
+
static_page:
|
67
|
+
allow_public_access: อนุญาตการเข้าถึงโดยไม่ต้องตรวจสอบสิทธิ์
|
68
|
+
changed_notably: มีการเปลี่ยนแปลงที่เห็นได้ชัดเจน
|
69
|
+
content: เนื้อหา
|
70
|
+
organization: องค์กร
|
71
|
+
show_in_footer: แสดงในส่วนท้าย
|
72
|
+
slug: บุ้ง URL
|
73
|
+
title: ชื่อ
|
74
|
+
topic_id: หัวข้อ
|
75
|
+
weight: ตำแหน่งการสั่งซื้อ
|
76
|
+
static_page_topic:
|
77
|
+
description: คำอธิบาย
|
78
|
+
name: ชื่อหัวข้อ
|
79
|
+
decidim:
|
80
|
+
admin:
|
81
|
+
area_types:
|
82
|
+
edit:
|
83
|
+
title: แก้ไขประเภทพื้นที่
|
84
|
+
update: อัปเดต
|
85
|
+
new:
|
86
|
+
create: สร้างประเภทพื้นที่
|
87
|
+
title: ประเภทพื้นที่ใหม่
|
88
|
+
update:
|
89
|
+
error: เกิดปัญหาในการอัปเดตประเภทพื้นที่นี้
|
90
|
+
success: อัปเดตประเภทพื้นที่เรียบร้อยแล้ว
|
91
|
+
areas:
|
92
|
+
create:
|
93
|
+
error: เกิดปัญหาในการสร้างพื้นที่ใหม่
|
94
|
+
success: สร้างพื้นที่สำเร็จแล้ว
|
95
|
+
destroy:
|
96
|
+
has_spaces: พื้นที่นี้มีช่องว่างที่ต้องพึ่งพา โปรดตรวจสอบให้แน่ใจว่าไม่มี Participatory Space อ้างอิงถึงพื้นที่นี้ก่อนที่จะลบออก
|
97
|
+
success: ทำลายพื้นที่สำเร็จ
|
98
|
+
edit:
|
99
|
+
title: แก้ไขพื้นที่
|
data/config/locales/tr-TR.yml
CHANGED
@@ -131,6 +131,7 @@ tr:
|
|
131
131
|
actions:
|
132
132
|
add: Eklemek
|
133
133
|
browse: Araştır
|
134
|
+
manage: yönetme
|
134
135
|
per_page: Sayfa başına
|
135
136
|
permissions: İzinler
|
136
137
|
reject: reddetmek
|
@@ -264,7 +265,6 @@ tr:
|
|
264
265
|
solved: Çözüldü
|
265
266
|
transfer:
|
266
267
|
email: E-Posta
|
267
|
-
error: Mevcut katılımcıyı yönetilen katılımcıya aktarırken bir sorun oluştu.
|
268
268
|
name: İsim
|
269
269
|
reason: Nedeni
|
270
270
|
success: Aktarım başarıyla tamamlandı.
|
@@ -603,9 +603,6 @@ tr:
|
|
603
603
|
layout_appearance_title: Düzen görünümünü düzenle
|
604
604
|
preview: Önizleme
|
605
605
|
omnipresent_banner_appearance_title: Her yerde bulunan banner'ı düzenle
|
606
|
-
organization_external_domain_whitelist:
|
607
|
-
edit:
|
608
|
-
update: Güncelleştirme
|
609
606
|
participatory_space_private_users:
|
610
607
|
create:
|
611
608
|
error: Bu katılımcı alan için özel bir kullanıcı eklenirken bir hata oluştu.
|
@@ -717,7 +714,6 @@ tr:
|
|
717
714
|
areas: alanlar
|
718
715
|
authorization_workflows: Doğrulama yöntemleri
|
719
716
|
dashboard: Pano
|
720
|
-
edit_external_domains: Harici Güvenli Alan
|
721
717
|
edit_landing_page: Sayfa İçeriği
|
722
718
|
edit_organization_appearance: Ana Sayfayı Düzenleme
|
723
719
|
impersonatable_users: Yönetilebilir kullanıcılar
|
data/config/locales/uk.yml
CHANGED
@@ -92,6 +92,7 @@ uk:
|
|
92
92
|
actions:
|
93
93
|
add: Додати
|
94
94
|
browse: Переглянути
|
95
|
+
manage: Керувати
|
95
96
|
permissions: Права
|
96
97
|
reject: Відхилити
|
97
98
|
verify: Підтвердити
|
@@ -424,9 +425,6 @@ uk:
|
|
424
425
|
images:
|
425
426
|
layout_appearance_title: Редагувати зовнішній вигляд шаблону
|
426
427
|
omnipresent_banner_appearance_title: Редагувати всюдисущий банер
|
427
|
-
organization_external_domain_whitelist:
|
428
|
-
edit:
|
429
|
-
update: Оновити
|
430
428
|
participatory_space_private_users:
|
431
429
|
create:
|
432
430
|
error: При спробі додати приватного учасника до цього простору співучасті сталася помилка.
|
data/config/locales/zh-CN.yml
CHANGED
@@ -125,6 +125,7 @@ zh-CN:
|
|
125
125
|
actions:
|
126
126
|
add: 添加
|
127
127
|
browse: 浏览
|
128
|
+
manage: 管理
|
128
129
|
per_page: 每页
|
129
130
|
permissions: 权限
|
130
131
|
reject: 拒绝
|
@@ -539,9 +540,6 @@ zh-CN:
|
|
539
540
|
layout_appearance_title: 编辑布局外观
|
540
541
|
preview: 预览
|
541
542
|
omnipresent_banner_appearance_title: Edit omnipresent banner
|
542
|
-
organization_external_domain_whitelist:
|
543
|
-
edit:
|
544
|
-
update: 更新
|
545
543
|
participatory_space_private_users:
|
546
544
|
create:
|
547
545
|
error: 在这种参与空间中添加私人参与者时出现了问题。
|