decidim-admin 0.28.5 → 0.29.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +13 -0
- 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/block_user.rb +0 -1
- 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 +4 -4
- 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 -43
- 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 +79 -4
- 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/paginable.rb +20 -0
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +2 -1
- 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 +1 -1
- data/app/controllers/decidim/admin/block_user_controller.rb +1 -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/conflicts_controller.rb +6 -14
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/impersonations_controller.rb +0 -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 +6 -7
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +1 -1
- 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/help_section_form.rb +1 -1
- data/app/forms/decidim/admin/impersonate_user_form.rb +0 -5
- data/app/forms/decidim/admin/organization_appearance_form.rb +2 -5
- 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 +4 -4
- data/app/forms/decidim/admin/static_page_form.rb +1 -2
- data/app/forms/decidim/admin/transfer_user_form.rb +0 -15
- data/app/helpers/decidim/admin/application_helper.rb +0 -13
- 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/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
- 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 +19 -15
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/newsletters.js +9 -18
- 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/_moderations.scss +0 -8
- 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/newsletter_recipients.rb +5 -9
- 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/block_user/new.html.erb +1 -1
- 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/components/index.html.erb +1 -5
- data/app/views/decidim/admin/conflicts/edit.html.erb +11 -21
- data/app/views/decidim/admin/conflicts/index.html.erb +6 -29
- 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 +6 -6
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +5 -7
- data/app/views/decidim/admin/imports/new.html.erb +6 -7
- 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 +4 -4
- 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 +3 -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 +6 -7
- 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_appearance/form/_minimap.html.erb +3 -3
- 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/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -1
- 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/_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 -54
- data/config/locales/bg.yml +15 -12
- data/config/locales/ca.yml +18 -15
- data/config/locales/cs.yml +15 -17
- data/config/locales/de.yml +18 -15
- data/config/locales/el.yml +0 -11
- data/config/locales/en.yml +15 -12
- data/config/locales/es-MX.yml +17 -14
- data/config/locales/es-PY.yml +17 -14
- data/config/locales/es.yml +19 -16
- data/config/locales/eu.yml +145 -154
- data/config/locales/fi-plain.yml +18 -15
- data/config/locales/fi.yml +39 -36
- data/config/locales/fr-CA.yml +15 -12
- data/config/locales/fr.yml +13 -10
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +2 -6
- data/config/locales/hu.yml +9 -10
- data/config/locales/id-ID.yml +0 -7
- data/config/locales/is-IS.yml +0 -15
- data/config/locales/it.yml +3 -10
- data/config/locales/ja.yml +20 -17
- data/config/locales/kaa.yml +3 -3
- data/config/locales/ko.yml +1 -6
- data/config/locales/lb.yml +4 -11
- data/config/locales/lt.yml +0 -12
- data/config/locales/lv.yml +2 -6
- data/config/locales/nl.yml +1 -8
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +15 -10
- data/config/locales/pt-BR.yml +8 -12
- data/config/locales/pt.yml +0 -11
- data/config/locales/ro-RO.yml +5 -22
- data/config/locales/ru.yml +1 -6
- data/config/locales/sk.yml +2 -6
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq-AL.yml +3 -3
- data/config/locales/sr-CS.yml +3 -6
- data/config/locales/sv.yml +209 -357
- data/config/locales/th-TH.yml +0 -13
- data/config/locales/tr-TR.yml +2 -6
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +0 -11
- data/config/routes.rb +2 -2
- data/decidim-admin.gemspec +2 -2
- data/lib/decidim/admin/engine.rb +0 -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/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 +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +0 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +52 -28
- data/lib/decidim/admin/test/manage_categories_examples.rb +13 -13
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +4 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +15 -0
- metadata +28 -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/controllers/concerns/decidim/admin/verification_conflicts/filterable.rb +0 -31
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -528
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "active_support/concern"
|
4
|
-
|
5
|
-
module Decidim
|
6
|
-
module Admin
|
7
|
-
module VerificationConflicts
|
8
|
-
module Filterable
|
9
|
-
extend ActiveSupport::Concern
|
10
|
-
|
11
|
-
included do
|
12
|
-
include Decidim::Admin::Filterable
|
13
|
-
|
14
|
-
private
|
15
|
-
|
16
|
-
def base_query
|
17
|
-
collection
|
18
|
-
end
|
19
|
-
|
20
|
-
def search_field_predicate
|
21
|
-
:current_user_name_or_current_user_nickname_or_current_user_email_cont
|
22
|
-
end
|
23
|
-
|
24
|
-
def filters
|
25
|
-
[]
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>Decidim - Login</title>
|
5
|
-
<%= render partial: "layouts/decidim/admin/header" %>
|
6
|
-
</head>
|
7
|
-
|
8
|
-
<body class="login">
|
9
|
-
<div class="login-form-wrapper">
|
10
|
-
<div class="login-form">
|
11
|
-
<h1>Decidim</h1>
|
12
|
-
<%= display_flash_messages %>
|
13
|
-
<div class="login-form-inner">
|
14
|
-
<%= yield %>
|
15
|
-
</div>
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
</body>
|
19
|
-
</html>
|
data/config/locales/bn-BD.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
bn:
|
data/config/locales/bs-BA.yml
DELETED
@@ -1,528 +0,0 @@
|
|
1
|
-
---
|
2
|
-
bs:
|
3
|
-
activemodel:
|
4
|
-
attributes:
|
5
|
-
area:
|
6
|
-
area_type: Tip oblasti
|
7
|
-
name: Ime
|
8
|
-
organization: Organizacija
|
9
|
-
area_type:
|
10
|
-
name: Ime
|
11
|
-
organization: Organizacija
|
12
|
-
plural: Množina
|
13
|
-
attachment:
|
14
|
-
attachment_collection_id: Fascikla
|
15
|
-
description: Opis
|
16
|
-
file: Fajl
|
17
|
-
attachment_collection:
|
18
|
-
description: Opis
|
19
|
-
name: Ime
|
20
|
-
category:
|
21
|
-
description: Opis
|
22
|
-
name: Ime
|
23
|
-
parent_id: Roditelj
|
24
|
-
component:
|
25
|
-
name: Ime
|
26
|
-
published_at: Objavljeno
|
27
|
-
id: ID
|
28
|
-
newsletter:
|
29
|
-
body: Glavni deo teksta
|
30
|
-
subject: Naslov
|
31
|
-
organization:
|
32
|
-
alert_color: Upozorenje
|
33
|
-
badges_enabled: Omogući značke
|
34
|
-
cta_button_path: Put dugmeta poziva na akciju
|
35
|
-
cta_button_text: Tekst dugmeta poziva na akciju
|
36
|
-
customize_welcome_notification: Prilagodi obaveštenje dobrodošlice
|
37
|
-
default_locale: Podrazumevana vrednost
|
38
|
-
description: Opis
|
39
|
-
enable_omnipresent_banner: Prikaži sveprisutni baner
|
40
|
-
facebook_handler: Administrator Facebook-a
|
41
|
-
favicon: Ikona
|
42
|
-
github_handler: Administrator GitHub-a
|
43
|
-
header_snippets: Fragmenti zaglavlja
|
44
|
-
highlighted_content_banner_action_subtitle: Podnastlov dugmeta akcije
|
45
|
-
highlighted_content_banner_action_title: Naslov dugmeta akcije
|
46
|
-
highlighted_content_banner_action_url: Link dugmeta akcije
|
47
|
-
highlighted_content_banner_enabled: Prikaži istaknut baner sadržaja
|
48
|
-
highlighted_content_banner_image: Slika
|
49
|
-
highlighted_content_banner_short_description: Kratak opis
|
50
|
-
highlighted_content_banner_title: Naslov
|
51
|
-
instagram_handler: Administrator Instagram-a
|
52
|
-
logo: Logo
|
53
|
-
name: Ime
|
54
|
-
official_img_footer: Zvanično podnožje logoa
|
55
|
-
official_url: Zvaničan link organizacije
|
56
|
-
omnipresent_banner_short_description: Kratak opis
|
57
|
-
omnipresent_banner_title: Naslov
|
58
|
-
omnipresent_banner_url: Adresa
|
59
|
-
primary_color: Primarni
|
60
|
-
reference_prefix: Prefiks reference
|
61
|
-
rich_text_editor_in_public_views: Omogući korisnicima uređivanje teksta sa formatiranjem
|
62
|
-
secondary_color: Sekundarni
|
63
|
-
send_welcome_notification: Pošalji obaveštenje dobrodošlice
|
64
|
-
success_color: Uspeh
|
65
|
-
time_zone: Vremenska zona
|
66
|
-
tos_version: Verzija uslova korišćenja
|
67
|
-
user_groups_enabled: Omogući grupe
|
68
|
-
warning_color: Upozorenje
|
69
|
-
welcome_notification_body: Glavni tekst obaveštenja dobrodošlice
|
70
|
-
welcome_notification_subject: Naslov obaveštenja dobrodošlice
|
71
|
-
youtube_handler: Administrator YouTube-a
|
72
|
-
scope:
|
73
|
-
code: Kod
|
74
|
-
name: Ime
|
75
|
-
organization: Organizacija
|
76
|
-
parent_id: Roditelj
|
77
|
-
scope_type: Tip opsega
|
78
|
-
scope_type_id: Tip opsega
|
79
|
-
scope_type:
|
80
|
-
name: Ime
|
81
|
-
organization: Organizacija
|
82
|
-
plural: Množina
|
83
|
-
static_page:
|
84
|
-
changed_notably: Bilo je primetnih promena.
|
85
|
-
content: Sadržaj
|
86
|
-
organization: Organizacija
|
87
|
-
show_in_footer: Prikaži u podnožju
|
88
|
-
slug: Zadnji deo URL-a
|
89
|
-
title: Naslov
|
90
|
-
static_page_topic:
|
91
|
-
description: Opis
|
92
|
-
show_in_footer: Prikaži u podnožju
|
93
|
-
title: Naslov
|
94
|
-
user_group_csv_verification:
|
95
|
-
file: Fajl
|
96
|
-
errors:
|
97
|
-
models:
|
98
|
-
organization:
|
99
|
-
attributes:
|
100
|
-
official_img_footer:
|
101
|
-
allowed_file_content_types: Neodgovarajući fajl slike
|
102
|
-
activerecord:
|
103
|
-
attributes:
|
104
|
-
decidim/static_page:
|
105
|
-
content: Sadržaj
|
106
|
-
slug: Zadnji deo URL-a
|
107
|
-
title: Naslov
|
108
|
-
doorkeeper/application:
|
109
|
-
authorize_url: Autorizuj URL
|
110
|
-
client_id: Identitet klijenta
|
111
|
-
client_secret: Tajni ključ klijenta
|
112
|
-
organization_name: Ime organizacije
|
113
|
-
organization_url: Link organizacije
|
114
|
-
redirect_uri: Preusmeren URL
|
115
|
-
site: Veb stranica
|
116
|
-
decidim:
|
117
|
-
admin:
|
118
|
-
actions:
|
119
|
-
add: Dodaj
|
120
|
-
browse: Pregledaj
|
121
|
-
manage: Upravljaj
|
122
|
-
per_page: Po stranici
|
123
|
-
permissions: Dozvole
|
124
|
-
reject: Odbaci
|
125
|
-
verify: Overi
|
126
|
-
area_types:
|
127
|
-
create:
|
128
|
-
error: Nastao je problem pri stvaranju novog tipa oblasti.
|
129
|
-
success: Tip oblasti je uspešno stvoren.
|
130
|
-
edit:
|
131
|
-
title: Izmeni tip oblasti
|
132
|
-
update: Ažuriraj
|
133
|
-
new:
|
134
|
-
create: Stvori tip oblasti
|
135
|
-
title: Nov tip oblasti
|
136
|
-
update:
|
137
|
-
error: Nastao je problem pri ažuriranju ovog tipa oblasti.
|
138
|
-
areas:
|
139
|
-
create:
|
140
|
-
error: Nastao je problem pri stvaranju nove oblasti.
|
141
|
-
success: Oblast je uspešno stvorena.
|
142
|
-
edit:
|
143
|
-
title: Uređivanje oblasti
|
144
|
-
update: Ažuriraj
|
145
|
-
new:
|
146
|
-
create: Stvori oblast
|
147
|
-
title: Nova oblast
|
148
|
-
no_areas: Nema Oblasti
|
149
|
-
update:
|
150
|
-
error: Nastao je problem pri ažuriranju ove oblasti.
|
151
|
-
attachment_collections:
|
152
|
-
create:
|
153
|
-
error: Nastao je problem pri stvaranju nove fascikle.
|
154
|
-
success: Fascikla je uspešno stvorena.
|
155
|
-
destroy:
|
156
|
-
success: Fascikla je uspešno uništena.
|
157
|
-
edit:
|
158
|
-
title: Izmeni fasciklu
|
159
|
-
update: Ažuriraj
|
160
|
-
index:
|
161
|
-
attachment_collections_title: Fascikle priloga
|
162
|
-
new:
|
163
|
-
create: Stvori
|
164
|
-
title: Nova fascikla
|
165
|
-
update:
|
166
|
-
error: Nastao je problem pri ažuriranju ove fascikle.
|
167
|
-
success: Fascikla je uspešno ažurirana.
|
168
|
-
attachments:
|
169
|
-
create:
|
170
|
-
error: Nastao je problem pri stvaranju novog priloga.
|
171
|
-
success: Prilog je uspešno stvoren.
|
172
|
-
destroy:
|
173
|
-
success: Prilog je uspešno uništen.
|
174
|
-
edit:
|
175
|
-
title: Izmeni prilog
|
176
|
-
update: Ažuriraj
|
177
|
-
index:
|
178
|
-
attachments_title: Prilozi
|
179
|
-
new:
|
180
|
-
create: Stvori prilog
|
181
|
-
title: Novi prilog
|
182
|
-
update:
|
183
|
-
error: Nastao je problem pri ažuriranju ovog priloga.
|
184
|
-
success: Prilog je uspešno ažuriran.
|
185
|
-
autocomplete:
|
186
|
-
no_results: Nema rezultata
|
187
|
-
categories:
|
188
|
-
create:
|
189
|
-
error: Nastao je problem pri stvaranju ove kategorije.
|
190
|
-
success: Kategorija je uspešno stvorena.
|
191
|
-
destroy:
|
192
|
-
error: Nastao je problem pri brisanju ove kategorije. Molimo Vas da prvo obrišete sve podkategorije, proverite da nijedan drugi entitet ne pripada ovoj kategoriji i pokušate ponovo.
|
193
|
-
success: Kategorija je uspešno obrisana.
|
194
|
-
edit:
|
195
|
-
title: Izmeni kategoriju
|
196
|
-
update: Ažuriraj
|
197
|
-
index:
|
198
|
-
categories_title: Kategorije
|
199
|
-
new:
|
200
|
-
create: Stvori kategoriju
|
201
|
-
title: Nova kategorija
|
202
|
-
update:
|
203
|
-
error: Nastao je problem pri ažuriranju ove kategorije.
|
204
|
-
success: Kategorija je uspešno ažurirana.
|
205
|
-
component_permissions:
|
206
|
-
update:
|
207
|
-
error: Nastao je problem pri ažuriranju dozvola ove komponente.
|
208
|
-
success: Dozvole su uspešno ažurirane.
|
209
|
-
components:
|
210
|
-
create:
|
211
|
-
error: Nastao je problem pri stvaranju ove komponente.
|
212
|
-
success: Komponenta je uspešno stvorena.
|
213
|
-
destroy:
|
214
|
-
error: Nastao je problem pri uništavanju ove komponente.
|
215
|
-
success: Komponenta je uspešno obrisana.
|
216
|
-
edit:
|
217
|
-
title: Uređivanje komponente
|
218
|
-
update: Ažuriraj
|
219
|
-
form:
|
220
|
-
default_step_settings: Podrazumevana podešavanja koraka
|
221
|
-
global_settings: Opšta podešavanja
|
222
|
-
step_settings: Podešavanja koraka
|
223
|
-
index:
|
224
|
-
add: Dodavanje komponente
|
225
|
-
headers:
|
226
|
-
actions: Akcije
|
227
|
-
name: Ime komponente
|
228
|
-
type: Tip komponente
|
229
|
-
new:
|
230
|
-
add: Dodaj komponentu
|
231
|
-
title: 'Dodaj komponentu: %{name}'
|
232
|
-
publish:
|
233
|
-
success: Komponenta je uspešno objavljena.
|
234
|
-
title: Komponente
|
235
|
-
unpublish:
|
236
|
-
success: Objava komponente je uspešno povučena.
|
237
|
-
update:
|
238
|
-
error: Pojavio se problem pri ažuriranju ove komponente.
|
239
|
-
success: Komponenta je uspešno ažurirana.
|
240
|
-
dashboard:
|
241
|
-
show:
|
242
|
-
view_more_logs: Pogledaj još zapisa iz evidencije
|
243
|
-
exports:
|
244
|
-
export_as: "%{name} kao %{export_format}"
|
245
|
-
filters:
|
246
|
-
category_id_eq:
|
247
|
-
label: Kategorija
|
248
|
-
filter_label: Filter
|
249
|
-
officialized_at_null:
|
250
|
-
label: Državno
|
251
|
-
values:
|
252
|
-
'false': Službeno
|
253
|
-
'true': Neslužbeno
|
254
|
-
private_space_eq:
|
255
|
-
label: Privatno
|
256
|
-
values:
|
257
|
-
'false': Javno
|
258
|
-
'true': Privatno
|
259
|
-
published_at_null:
|
260
|
-
label: Objavljeno
|
261
|
-
values:
|
262
|
-
'false': Objavljeno
|
263
|
-
'true': Neobjavljeno
|
264
|
-
search_label: Pretraži
|
265
|
-
search_placeholder:
|
266
|
-
name_or_nickname_or_email_cont: Pretraži %{collection} prema e-pošti, imenu ili nadimku.
|
267
|
-
title_cont: Pretraži %{collection} prema nazivu.
|
268
|
-
help_sections:
|
269
|
-
form:
|
270
|
-
save: Sačuvaj
|
271
|
-
impersonatable_users:
|
272
|
-
index:
|
273
|
-
filter:
|
274
|
-
all: Sve
|
275
|
-
managed: Obrađeno
|
276
|
-
not_managed: Neobrađeno
|
277
|
-
impersonate: Predstavlja
|
278
|
-
impersonate_new_managed_user: Upravljanje novim učesnikom
|
279
|
-
managed: Obrađeno
|
280
|
-
name: Ime
|
281
|
-
needs_authorization_warning: Potrebna vam je barem jedna aktivirana autorizacija za ovu organizaciju.
|
282
|
-
not_managed: Neobrađeno
|
283
|
-
promote: Unapredi
|
284
|
-
search: Pretraži
|
285
|
-
status: Status
|
286
|
-
view_logs: Pogledaj evidenciju
|
287
|
-
impersonations:
|
288
|
-
close_session:
|
289
|
-
error: Pojavio se problem pri zatvaranju aktuelne sesije upravljanja učesnicima.
|
290
|
-
success: Aktuelna sesija predstavljanja je uspešno okončana.
|
291
|
-
create:
|
292
|
-
error: Pojavio se problem prilikom upravljanja učesnikom.
|
293
|
-
success: Upravljani učesnik je uspešno kreiran.
|
294
|
-
form:
|
295
|
-
authorization_method: Metod autorizacije
|
296
|
-
name: Ime
|
297
|
-
reason: Razlog
|
298
|
-
new:
|
299
|
-
impersonate: Predstavlja
|
300
|
-
impersonate_existing_managed_user: Upravljaj učesnikom "%{name}"
|
301
|
-
impersonate_existing_user: Upravljaj učesnikom "%{name}"
|
302
|
-
impersonate_new_managed_user: Upravljanje novim učesnikom
|
303
|
-
managed_users:
|
304
|
-
promotion:
|
305
|
-
error: Pojavio se problem pri unapređivanju učesnika.
|
306
|
-
success: Upravljani učesnik je uspešno unapređen.
|
307
|
-
promotions:
|
308
|
-
new:
|
309
|
-
explanation: Upravljani učesnici mogu biti unapređeni u regularne učesnike. To znači da će biti pozvani da se prijave, nakon čega nećete više biti u mogućnosti da upravljate njihovim nalozima. Pozvani učesnici će primiti e-mail i potrebno je da prihvate poziv.
|
310
|
-
new_managed_user_promotion: Unapređenje novog upravljanog učesnika
|
311
|
-
promote: Unapredi
|
312
|
-
menu:
|
313
|
-
admin_log: Zapisnik aktivnosti administratora
|
314
|
-
admins: Administratori
|
315
|
-
appearance: Izgled
|
316
|
-
area_types: Tipovi oblasti
|
317
|
-
areas: Oblasti
|
318
|
-
configuration: Konfiguracija
|
319
|
-
help_sections: Sekcije za pomoć
|
320
|
-
homepage: Početna stranica
|
321
|
-
impersonations: Predstavljanja
|
322
|
-
manage: Upravljaj
|
323
|
-
newsletters: Bilteni
|
324
|
-
participants: Učesnici
|
325
|
-
scope_types: Vrste oblasti
|
326
|
-
scopes: Oblasti
|
327
|
-
settings: Podešavanja
|
328
|
-
static_pages: Stranice
|
329
|
-
user_groups: Grupe
|
330
|
-
users: Učesnici
|
331
|
-
metrics:
|
332
|
-
metrics:
|
333
|
-
see_more_metrics: Prikaži više metrika
|
334
|
-
models:
|
335
|
-
area:
|
336
|
-
fields:
|
337
|
-
area_type: Tip oblasti
|
338
|
-
name: Ime
|
339
|
-
area_type:
|
340
|
-
fields:
|
341
|
-
name: Ime
|
342
|
-
plural: Množina
|
343
|
-
attachment:
|
344
|
-
fields:
|
345
|
-
collection: Fascikla
|
346
|
-
content_type: Tip
|
347
|
-
file_size: Veličina
|
348
|
-
title: Naslov
|
349
|
-
name: Prilog
|
350
|
-
attachment_collection:
|
351
|
-
name: Fascikla
|
352
|
-
category:
|
353
|
-
name: Kategorija
|
354
|
-
impersonation_log:
|
355
|
-
fields:
|
356
|
-
admin: Administrator
|
357
|
-
ended_at: Završilo se
|
358
|
-
expired_at: Isteklo
|
359
|
-
reason: Razlog
|
360
|
-
started_at: Počelo
|
361
|
-
user: Učesnik
|
362
|
-
newsletter:
|
363
|
-
fields:
|
364
|
-
created_at: Stvoreno
|
365
|
-
progress: Napredak
|
366
|
-
sent_at: Poslato
|
367
|
-
sent_to: Poslato
|
368
|
-
subject: Naslov
|
369
|
-
name: Bilten
|
370
|
-
participatory_space_private_user:
|
371
|
-
name: Privatni učesnik prostora za diskusiju
|
372
|
-
scope:
|
373
|
-
fields:
|
374
|
-
name: Ime
|
375
|
-
scope_type: Tip opsega
|
376
|
-
scope_type:
|
377
|
-
fields:
|
378
|
-
name: Ime
|
379
|
-
plural: Množina
|
380
|
-
share_token:
|
381
|
-
fields:
|
382
|
-
created_at: Stvoreno
|
383
|
-
static_page:
|
384
|
-
fields:
|
385
|
-
created_at: Kreirano na
|
386
|
-
title: Naslov
|
387
|
-
user:
|
388
|
-
fields:
|
389
|
-
created_at: Datum kreiranja
|
390
|
-
email: E-pošta
|
391
|
-
name: Ime
|
392
|
-
role: Uloga
|
393
|
-
roles:
|
394
|
-
admin: Administrator
|
395
|
-
user_manager: Rukovodilac učesnika
|
396
|
-
name: Učesnik
|
397
|
-
user_group:
|
398
|
-
fields:
|
399
|
-
actions: Akcije
|
400
|
-
created_at: Kreirano na
|
401
|
-
document_number: Broj dokumenta
|
402
|
-
name: Ime
|
403
|
-
phone: Telefon
|
404
|
-
state: Država
|
405
|
-
users_count: Broj učesnika
|
406
|
-
moderations:
|
407
|
-
report:
|
408
|
-
reasons:
|
409
|
-
does_not_belong: Ne pripada
|
410
|
-
offensive: Uvredljivo
|
411
|
-
spam: Spam
|
412
|
-
newsletter_templates:
|
413
|
-
index:
|
414
|
-
preview_template: Pregled
|
415
|
-
title: Šabloni biltena
|
416
|
-
use_template: Koristite ovaj šablon
|
417
|
-
show:
|
418
|
-
preview: 'Pregledajte šablon %{template_name}'
|
419
|
-
use_template: Koristite ovaj šablon
|
420
|
-
newsletters:
|
421
|
-
create:
|
422
|
-
error: Pojavio se problem pri kreiranju ovog biltena.
|
423
|
-
deliver:
|
424
|
-
error: Pojavio se problem pri dostavljanju ovog biltena.
|
425
|
-
success: Bilten je uspešno dostavljen.
|
426
|
-
destroy:
|
427
|
-
error_already_sent: 'Bilten se ne može ukloniti jer je već dostavljen.'
|
428
|
-
success: Bilten je uspešno uklonjen.
|
429
|
-
edit:
|
430
|
-
save_and_preview: Sačuvaj i pregledaj
|
431
|
-
title: Uredi bilten
|
432
|
-
index:
|
433
|
-
all: sve
|
434
|
-
all_users: 'Svi korisnici'
|
435
|
-
and: 'i'
|
436
|
-
confirm_delete: Da li ste sigurni da želite da obrišete ovaj bilten?
|
437
|
-
followers: 'pratioci'
|
438
|
-
has_been_sent_to: 'Poslat je:'
|
439
|
-
no_scopes: Nema oblasti
|
440
|
-
not_sent: Nije poslato
|
441
|
-
participants: 'učesnici'
|
442
|
-
segmented_to: 'Podeljeno po %{subject}:'
|
443
|
-
subscribed_count: 'Broj pratilaca:'
|
444
|
-
title: Bilteni
|
445
|
-
new:
|
446
|
-
save: Sačuvaj
|
447
|
-
title: Novi bilten
|
448
|
-
select_recipients_to_deliver:
|
449
|
-
all_spaces: Svi
|
450
|
-
all_users_help: Pošalji biltene svim potvrđenim učesnicima.
|
451
|
-
confirm_deliver: Da li ste sigurni da želite da dostavite ovaj bilten? Ova radnja se ne može poništiti.
|
452
|
-
deliver: Dostavi bilten
|
453
|
-
followers_help: Pošalji bilten svim potvrđenim učesnicima koji prate bilo koji od odabranih prostora za učešće sa liste.
|
454
|
-
participants_help: Pošalji bilten svim potvrđenim učesnicima koji su učestvovali u bilo kojem od odabranih prostora za učešće sa liste.
|
455
|
-
recipients_count: Ovaj bilten biće dostavljen %{count} korisnicima.
|
456
|
-
scopes_help: Šalje bilten korisnicima koji su aktivirali makar jedan od odabranih opsega u podešavanjima "Moji interesi" svog naloga.
|
457
|
-
select_scopes: Filter za korisnike koji su aktivirali makar jedan od odabranih opsega u podešavanjima "Moji interesi" svog naloga.
|
458
|
-
select_spaces: Izaberite prostore da podelite bilten
|
459
|
-
select_users: Izaberite kojim korisnicima želite da pošaljete bilten
|
460
|
-
title: Izaberi primaoce za dostavu
|
461
|
-
warning: "Pažnja: Ovaj bilten će biti poslan samo korisnicima koji su aktivirali Želim da dobijam biltene u svojim podešavanjima obaveštenja."
|
462
|
-
show:
|
463
|
-
preview: Pregled
|
464
|
-
select_recipients_to_deliver: Izaberi primaoce za dostavu
|
465
|
-
subject: Naslov
|
466
|
-
update:
|
467
|
-
error: Nastao je problem pri ažuriranju ovog biltena.
|
468
|
-
success: Bilten je uspešno ažuriran. Molimo vas da ga pregledate pre slanja.
|
469
|
-
officializations:
|
470
|
-
index:
|
471
|
-
actions: Akcije
|
472
|
-
badge: Bedž
|
473
|
-
created_at: Kreirano u
|
474
|
-
name: Ime
|
475
|
-
nickname: Nadimak
|
476
|
-
not_officialized: Nije ozvaničeno
|
477
|
-
officialize: Ozvaniči
|
478
|
-
officialized: Ozvaničen
|
479
|
-
reofficialize: Ponovo ozvaniči
|
480
|
-
show_email: Prikaži adresu e-pošte
|
481
|
-
status: Status
|
482
|
-
unofficialize: Razreši zvaničnog statusa
|
483
|
-
new:
|
484
|
-
badge: Zvanična oznaka
|
485
|
-
officialize: Ozvaniči
|
486
|
-
title: Ozvaniči status učesnika "%{name}"
|
487
|
-
show_email_modal:
|
488
|
-
email_address: Adresa e-pošte
|
489
|
-
full_name: Puno ime
|
490
|
-
hidden: sakriveno
|
491
|
-
show: Prikaži
|
492
|
-
organization:
|
493
|
-
edit:
|
494
|
-
title: Uredi organizaciju
|
495
|
-
update: Ažuriraj
|
496
|
-
form:
|
497
|
-
facebook: Facebook
|
498
|
-
github: GitHub
|
499
|
-
instagram: Instagram
|
500
|
-
rich_text_editor_in_public_views_help: U pojedinim delovima teksta učesnici će uz pomoć programa moći da ubace HTML oznake.
|
501
|
-
social_handlers: Društvene
|
502
|
-
youtube: YouTube
|
503
|
-
update:
|
504
|
-
error: Pojavio se problem pri ažuriranju ove organizacije.
|
505
|
-
success: Organizacija je uspešno ažurirana.
|
506
|
-
organization_appearance:
|
507
|
-
edit:
|
508
|
-
update: Ažuriraj
|
509
|
-
form:
|
510
|
-
homepage_appearance_title: Promeni izgled početne stranice
|
511
|
-
images:
|
512
|
-
preview: Pregled
|
513
|
-
omnipresent_banner_appearance_title: Izmeni sveprisutni baner
|
514
|
-
organization_external_domain_whitelist:
|
515
|
-
edit:
|
516
|
-
update: Ažuriraj
|
517
|
-
shared:
|
518
|
-
gallery:
|
519
|
-
add_images: Dodaj slike
|
520
|
-
gallery_legend: Dodaj galeriju slika (opciono)
|
521
|
-
titles:
|
522
|
-
metrics: Metrika
|
523
|
-
statistics: Aktivnost
|
524
|
-
users_statistics:
|
525
|
-
users_count:
|
526
|
-
last_day: Poslednji dan
|
527
|
-
last_month: Poslednji mesec
|
528
|
-
last_week: Poslednje nedelje
|
/data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js}
RENAMED
File without changes
|