decidim-admin 0.23.1 → 0.24.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_admin_manifest.js +1 -0
- data/app/assets/javascripts/decidim/admin/application.js.es6 +2 -0
- data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +23 -20
- data/app/assets/javascripts/decidim/admin/bundle.js +10 -17
- data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/admin/form.js.es6 +1 -0
- data/app/assets/javascripts/decidim/admin/import_guidance.js.es6 +29 -0
- data/app/assets/javascripts/decidim/admin/moderations.js.es6 +24 -0
- data/app/assets/javascripts/decidim/admin/proposal_infinite_edit.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/subform_multi_toggler.component.js.es6 +2 -2
- data/app/assets/javascripts/decidim/admin/subform_toggler.component.js.es6 +2 -2
- data/app/assets/javascripts/decidim/admin/user_moderations.js +2 -0
- data/app/assets/stylesheets/decidim/admin/_variables.scss +9 -0
- data/app/assets/stylesheets/decidim/admin/components/_dropdown-menu.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +13 -0
- data/app/assets/stylesheets/decidim/admin/extra/_block_user.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_moderations.scss +39 -0
- data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/modules/_reveal.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +6 -3
- data/app/assets/stylesheets/decidim/admin/modules/_user-login.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/user_moderations.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +1 -0
- data/app/cells/decidim/admin/content_block/show.erb +1 -1
- data/app/cells/decidim/admin/content_block_cell.rb +4 -0
- data/app/commands/decidim/admin/block_user.rb +70 -0
- data/app/commands/decidim/admin/create_import.rb +29 -0
- data/app/commands/decidim/admin/create_participatory_space_admin_user_actions.rb +98 -0
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/create_static_page.rb +2 -1
- data/app/commands/decidim/admin/hide_resource.rb +21 -0
- data/app/commands/decidim/admin/impersonate_user.rb +17 -1
- data/app/commands/decidim/admin/promote_managed_user.rb +10 -0
- data/app/commands/decidim/admin/reorder_content_blocks.rb +6 -3
- data/app/commands/decidim/admin/transfer_user.rb +78 -0
- data/app/commands/decidim/admin/unblock_user.rb +48 -0
- data/app/commands/decidim/admin/unreport_user.rb +46 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +12 -4
- data/app/commands/decidim/admin/update_static_page.rb +2 -1
- data/app/commands/decidim/admin/verify_user_group.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +51 -0
- data/app/controllers/concerns/decidim/admin/landing_page.rb +105 -0
- data/app/controllers/concerns/decidim/admin/landing_page_content_blocks.rb +118 -0
- data/app/controllers/concerns/decidim/moderations/admin/filterable.rb +54 -0
- data/app/controllers/decidim/admin/block_user_controller.rb +60 -0
- data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
- data/app/controllers/decidim/admin/conflicts_controller.rb +46 -0
- data/app/controllers/decidim/admin/exports_controller.rb +1 -2
- data/app/controllers/decidim/admin/global_moderations/reports_controller.rb +18 -0
- data/app/controllers/decidim/admin/global_moderations_controller.rb +32 -0
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +52 -0
- data/app/controllers/decidim/admin/moderated_users_controller.rb +44 -0
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +39 -0
- data/app/controllers/decidim/admin/moderations_controller.rb +31 -7
- data/app/controllers/decidim/admin/officializations_controller.rb +3 -3
- data/app/controllers/decidim/admin/organization_homepage_controller.rb +6 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +7 -0
- data/app/events/decidim/resource_hidden_event.rb +37 -0
- data/app/forms/decidim/admin/block_user_form.rb +25 -0
- data/app/forms/decidim/admin/import_form.rb +85 -0
- data/app/forms/decidim/admin/organization_appearance_form.rb +1 -2
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +4 -5
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +0 -5
- data/app/forms/decidim/admin/selective_newsletter_form.rb +6 -0
- data/app/forms/decidim/admin/static_page_form.rb +6 -1
- data/app/forms/decidim/admin/transfer_user_form.rb +19 -0
- data/app/helpers/decidim/admin/admin_terms_helper.rb +0 -7
- data/app/helpers/decidim/admin/application_helper.rb +5 -4
- data/app/helpers/decidim/admin/exports_helper.rb +2 -2
- data/app/helpers/decidim/admin/filterable_helper.rb +3 -2
- data/app/helpers/decidim/admin/imports_helper.rb +43 -0
- data/app/helpers/decidim/admin/menu_helper.rb +10 -0
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +40 -0
- data/app/helpers/decidim/admin/moderations_helper.rb +36 -0
- data/app/helpers/decidim/admin/newsletters_helper.rb +4 -10
- data/app/helpers/decidim/admin/settings_helper.rb +2 -1
- data/app/helpers/decidim/admin/sidebar_menu_helper.rb +13 -0
- data/app/helpers/decidim/admin/user_moderations_helper.rb +6 -0
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +1 -1
- data/app/jobs/decidim/admin/verify_user_group_from_csv_job.rb +1 -1
- data/app/permissions/decidim/admin/permissions.rb +7 -6
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +1 -1
- data/app/presenters/decidim/admin/secondary_menu_presenter.rb +26 -0
- data/app/queries/decidim/admin/active_users_counter.rb +1 -2
- data/app/queries/decidim/admin/newsletter_recipients.rb +0 -7
- data/app/queries/decidim/admin/user_filter.rb +1 -2
- data/app/views/decidim/admin/admin_terms/show.html.erb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/index.html.erb +1 -1
- data/app/views/decidim/admin/block_user/new.html.erb +22 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/app/views/decidim/admin/components/_component.html.erb +12 -0
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/conflicts/edit.html.erb +46 -0
- data/app/views/decidim/admin/conflicts/index.html.erb +34 -0
- data/app/views/decidim/admin/dashboard/show.html.erb +2 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/_dropdown.html.erb +9 -0
- data/app/views/decidim/admin/imports/new.html.erb +57 -0
- data/app/views/decidim/admin/moderated_users/_report.html.erb +10 -0
- data/app/views/decidim/admin/moderated_users/index.html.erb +78 -0
- data/app/views/decidim/admin/moderations/_report.html.erb +1 -1
- data/app/views/decidim/admin/moderations/index.html.erb +27 -9
- data/app/views/decidim/admin/moderations/reports/index.html.erb +102 -0
- data/app/views/decidim/admin/moderations/reports/show.html.erb +62 -0
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +2 -2
- data/app/views/decidim/admin/officializations/index.html.erb +13 -4
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +0 -4
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +1 -1
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +4 -4
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/edit.html.erb +47 -0
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +15 -0
- data/app/views/decidim/admin/static_pages/_form.html.erb +6 -0
- data/app/views/decidim/admin/users/index.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_application.html.erb +5 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/global_moderations.html.erb +7 -0
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/app/views/layouts/decidim/admin/settings.html.erb +2 -33
- data/app/views/layouts/decidim/admin/users.html.erb +11 -0
- data/config/locales/ar.yml +0 -9
- data/config/locales/bg.yml +0 -5
- data/config/locales/ca.yml +151 -8
- data/config/locales/cs.yml +194 -51
- data/config/locales/de.yml +172 -28
- data/config/locales/el.yml +62 -9
- data/config/locales/en.yml +152 -9
- data/config/locales/es-MX.yml +150 -7
- data/config/locales/es-PY.yml +150 -7
- data/config/locales/es.yml +150 -7
- data/config/locales/eu.yml +18 -21
- data/config/locales/fi-plain.yml +150 -7
- data/config/locales/fi.yml +150 -7
- data/config/locales/fr-CA.yml +141 -8
- data/config/locales/fr.yml +142 -9
- data/config/locales/gl.yml +225 -4
- data/config/locales/hu.yml +13 -9
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +36 -6
- data/config/locales/it.yml +74 -9
- data/config/locales/ja.yml +43 -12
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +120 -11
- data/config/locales/no.yml +16 -9
- data/config/locales/pl.yml +168 -24
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -9
- data/config/locales/ro-RO.yml +21 -9
- data/config/locales/ru.yml +0 -7
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -9
- data/config/locales/sl.yml +0 -5
- data/config/locales/sr-CS.yml +0 -7
- data/config/locales/sv.yml +53 -9
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +206 -11
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -9
- data/config/routes.rb +21 -1
- data/lib/decidim/admin.rb +6 -0
- data/lib/decidim/admin/engine.rb +76 -1
- data/lib/decidim/admin/import.rb +12 -0
- data/lib/decidim/admin/import/creator.rb +82 -0
- data/lib/decidim/admin/import/importer.rb +82 -0
- data/lib/decidim/admin/import/importer_factory.rb +17 -0
- data/lib/decidim/admin/import/readers.rb +39 -0
- data/lib/decidim/admin/import/readers/base.rb +31 -0
- data/lib/decidim/admin/import/readers/csv.rb +23 -0
- data/lib/decidim/admin/import/readers/json.rb +25 -0
- data/lib/decidim/admin/import/readers/xls.rb +25 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +6 -6
- data/lib/decidim/admin/test/commands/create_category_examples.rb +6 -6
- data/lib/decidim/admin/test/filterable_examples.rb +1 -8
- data/lib/decidim/admin/test/manage_moderations_examples.rb +49 -4
- data/lib/decidim/admin/version.rb +1 -1
- metadata +78 -19
data/config/locales/pt-BR.yml
CHANGED
@@ -59,7 +59,6 @@ pt:
|
|
59
59
|
primary_color: Primário
|
60
60
|
reference_prefix: Prefixo de referência
|
61
61
|
secondary_color: Secundário
|
62
|
-
show_statistics: Exibir estatisticas
|
63
62
|
success_color: Sucesso
|
64
63
|
tos_version: Versão dos termos de serviço
|
65
64
|
twitter_handler: Manipulador do Twitter
|
@@ -471,7 +470,6 @@ pt:
|
|
471
470
|
instagram: Instagram
|
472
471
|
social_handlers: Social
|
473
472
|
twitter: Twitter
|
474
|
-
url: Url
|
475
473
|
youtube: YouTube
|
476
474
|
update:
|
477
475
|
error: Ocorreu um erro ao atualizar essa organização.
|
@@ -678,7 +676,6 @@ pt:
|
|
678
676
|
fields:
|
679
677
|
hidden_at: Escondido em
|
680
678
|
report_count: Contagem
|
681
|
-
reportable: Reportable
|
682
679
|
reported_content_url: URL de conteúdo relatado
|
683
680
|
reports: Denúncias
|
684
681
|
visit_url: URL de visita
|
data/config/locales/pt.yml
CHANGED
@@ -30,7 +30,6 @@ pt:
|
|
30
30
|
body: Corpo
|
31
31
|
subject: Assunto
|
32
32
|
organization:
|
33
|
-
address: Nome do anfitrião SMTP
|
34
33
|
alert_color: Alerta
|
35
34
|
badges_enabled: Ativar distintivos
|
36
35
|
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
@@ -63,20 +62,16 @@ pt:
|
|
63
62
|
omnipresent_banner_short_description: Pequena descrição
|
64
63
|
omnipresent_banner_title: Título
|
65
64
|
omnipresent_banner_url: URL
|
66
|
-
password: Palavra-passe
|
67
|
-
port: Porta
|
68
65
|
primary_color: Primário
|
69
66
|
reference_prefix: Prefixo de referência
|
70
67
|
rich_text_editor_in_public_views: Ativar o editor de texto avançado para os participantes
|
71
68
|
secondary_color: Secundário
|
72
69
|
send_welcome_notification: Enviar notificação de boas-vindas
|
73
|
-
show_statistics: Mostrar estatísticas
|
74
70
|
success_color: Sucesso
|
75
71
|
time_zone: Fuso Horário
|
76
72
|
tos_version: Versão dos termos de serviço
|
77
73
|
twitter_handler: Manipulador do Twitter
|
78
74
|
user_groups_enabled: Ativar grupos
|
79
|
-
user_name: Nome do utilizador
|
80
75
|
warning_color: Aviso
|
81
76
|
welcome_notification_body: Corpo da notificação de boas-vindas
|
82
77
|
welcome_notification_subject: Assunto da notificação de boas-vindas
|
@@ -146,7 +141,6 @@ pt:
|
|
146
141
|
error: Ocorreu um erro ao aceitar os termos de utilização de administrador.
|
147
142
|
success: Excelente! Aceitou os termos de utilização de administrador.
|
148
143
|
actions:
|
149
|
-
accept: Concordo com estes termos de administrador
|
150
144
|
are_you_sure: Tem a certeza de que pretende recusar os termos de administrador?
|
151
145
|
refuse: Recusar os termos de administrador
|
152
146
|
title: Concordar com os termos e condições de utilização
|
@@ -573,7 +567,6 @@ pt:
|
|
573
567
|
rich_text_editor_in_public_views_help: Em algumas áreas de texto, os participantes serão capazes de inserir algumas etiquetas HTML utilizando o editor de texto avançado.
|
574
568
|
social_handlers: Social
|
575
569
|
twitter: Twitter
|
576
|
-
url: Url
|
577
570
|
youtube: Youtube
|
578
571
|
update:
|
579
572
|
error: Ocorreu um problema ao atualizar esta organização.
|
@@ -608,7 +601,6 @@ pt:
|
|
608
601
|
error: Houve um problema ao eliminar um participante privado deste espaço participativo.
|
609
602
|
success: Espaço participativo acesso de usuário privado destruído com sucesso.
|
610
603
|
index:
|
611
|
-
import_via_csv: Importar através de csv
|
612
604
|
title: Espaço participativo de participante privado
|
613
605
|
new:
|
614
606
|
create: Criar
|
@@ -801,7 +793,6 @@ pt:
|
|
801
793
|
fields:
|
802
794
|
hidden_at: Escondido em
|
803
795
|
report_count: Contagem
|
804
|
-
reportable: Reportável
|
805
796
|
reported_content_url: URL de conteúdo reportado
|
806
797
|
reports: Relatórios
|
807
798
|
visit_url: URL de visita
|
data/config/locales/ro-RO.yml
CHANGED
@@ -26,12 +26,14 @@ ro:
|
|
26
26
|
published_at: Publicat la
|
27
27
|
weight: Greutate
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Creează importuri ca
|
29
31
|
newsletter:
|
30
32
|
body: Corp
|
31
33
|
subject: Subiect
|
32
34
|
organization:
|
33
|
-
address: SMTP hostname
|
34
35
|
alert_color: Alertă
|
36
|
+
available_authorizations: Autorizații disponibile
|
35
37
|
badges_enabled: Activează insigne
|
36
38
|
comments_max_length: Lungimea maximă a comentariilor (Leave 0 pentru valoarea implicită)
|
37
39
|
cta_button_path: Calea butonului Apel la acţiune
|
@@ -42,6 +44,8 @@ ro:
|
|
42
44
|
enable_omnipresent_banner: Show omnipresent banner
|
43
45
|
facebook_handler: Manipulator Facebook
|
44
46
|
favicon: Iconiță
|
47
|
+
force_authentication: Forțează autentificarea
|
48
|
+
force_users_to_authenticate_before_access_organization: Forțează utilizatorii să se autentifice înainte de a accesa organizația
|
45
49
|
from: De la adresa de e-mail
|
46
50
|
github_handler: GitHub handler
|
47
51
|
header_snippets: Snippet-uri antet
|
@@ -54,8 +58,11 @@ ro:
|
|
54
58
|
highlighted_content_banner_image: Imagine
|
55
59
|
highlighted_content_banner_short_description: Descriere scurtă
|
56
60
|
highlighted_content_banner_title: Titlu
|
61
|
+
host: Gazdă
|
57
62
|
instagram_handler: Gestionar instagram
|
58
63
|
logo: Logo
|
64
|
+
machine_translation_display_priority_original: Mai întâi textul original
|
65
|
+
machine_translation_display_priority_translation: Mai întâi textul tradus
|
59
66
|
name: Nume
|
60
67
|
official_img_footer: Subsol cu logo oficial
|
61
68
|
official_img_header: Antet logo oficial
|
@@ -63,20 +70,19 @@ ro:
|
|
63
70
|
omnipresent_banner_short_description: Descriere scurtă
|
64
71
|
omnipresent_banner_title: Titlu
|
65
72
|
omnipresent_banner_url: URL
|
66
|
-
|
67
|
-
|
73
|
+
organization_admin_email: E-mail administrator organizație
|
74
|
+
organization_admin_name: Nume administrator organizație
|
68
75
|
primary_color: Primară
|
69
76
|
reference_prefix: Prefix de referință
|
70
77
|
rich_text_editor_in_public_views: Activează editorul de text bogat pentru participanți
|
71
78
|
secondary_color: Secundar
|
72
79
|
send_welcome_notification: Trimite notificare de bun venit
|
73
|
-
show_statistics: Arată statistici
|
74
80
|
success_color: Succes
|
75
81
|
time_zone: Fus orar
|
76
82
|
tos_version: Termenii versiunii serviciului
|
77
83
|
twitter_handler: Twitter handler
|
78
84
|
user_groups_enabled: Activare grupuri
|
79
|
-
|
85
|
+
users_registration_mode: Mod înregistrare utilizatori
|
80
86
|
warning_color: Avertizare
|
81
87
|
welcome_notification_body: Organismul de notificare de bun venit
|
82
88
|
welcome_notification_subject: Subiectul notificării de bun venit
|
@@ -93,6 +99,7 @@ ro:
|
|
93
99
|
organization: Organizație
|
94
100
|
plural: Plural
|
95
101
|
static_page:
|
102
|
+
allow_public_access: Permiteți accesul fără autentificare
|
96
103
|
changed_notably: Au existat schimbări vizibile.
|
97
104
|
content: Conținut
|
98
105
|
organization: Organizație
|
@@ -133,20 +140,28 @@ ro:
|
|
133
140
|
admin:
|
134
141
|
actions:
|
135
142
|
add: Adăugare
|
143
|
+
attachment:
|
144
|
+
new: Atașament nou
|
145
|
+
attachment_collection:
|
146
|
+
new: Colecție nouă de atașamente
|
136
147
|
browse: Răsfoiţi
|
148
|
+
category:
|
149
|
+
new: Adaugă Categorie
|
137
150
|
export: Exportă
|
151
|
+
import: Importă
|
138
152
|
manage: Gestionează
|
139
153
|
new: '%{name} nou'
|
140
154
|
per_page: Pe pagină
|
141
155
|
permissions: Permisiuni
|
142
156
|
reject: Respingere
|
157
|
+
user:
|
158
|
+
new: Creează utilizator
|
143
159
|
verify: Verifică
|
144
160
|
admin_terms_of_use:
|
145
161
|
accept:
|
146
162
|
error: A apărut o eroare la acceptarea termenilor de utilizare ai administratorului.
|
147
163
|
success: Super! Ai acceptat termenii de utilizare ai administratorului.
|
148
164
|
actions:
|
149
|
-
accept: Sunt de acord cu termenii de administrare
|
150
165
|
are_you_sure: Sigur doriți să refuzați termenii de administrator?
|
151
166
|
refuse: Refuză termenii de administrare
|
152
167
|
title: Sunt de acord cu termenii și condițiile de utilizare
|
@@ -572,7 +587,6 @@ ro:
|
|
572
587
|
rich_text_editor_in_public_views_help: În unele domenii de text, participanţii vor putea insera unele tag-uri HTML folosind bogatul editor de text.
|
573
588
|
social_handlers: Sociale
|
574
589
|
twitter: Twitter
|
575
|
-
url: Url-ul
|
576
590
|
youtube: YouTube
|
577
591
|
update:
|
578
592
|
error: A apărut o eroare la actualizarea acestei organizații.
|
@@ -603,7 +617,6 @@ ro:
|
|
603
617
|
error: A apărut o eroare la ștergerea unui participant privat pentru acest spațiu participativ.
|
604
618
|
success: Accesul participanților privați la spațiul participativ a fost distrus cu succes.
|
605
619
|
index:
|
606
|
-
import_via_csv: Import prin csv
|
607
620
|
title: Participant privat la spațiu
|
608
621
|
new:
|
609
622
|
create: Crează
|
@@ -796,7 +809,6 @@ ro:
|
|
796
809
|
fields:
|
797
810
|
hidden_at: Ascuns la
|
798
811
|
report_count: Număr
|
799
|
-
reportable: Raportabil
|
800
812
|
reported_content_url: URL-ul conținutului raportat
|
801
813
|
reports: Rapoarte
|
802
814
|
visit_url: Vizitaţi URL-ul
|
data/config/locales/ru.yml
CHANGED
@@ -29,7 +29,6 @@ ru:
|
|
29
29
|
body: Основной текст
|
30
30
|
subject: Тема
|
31
31
|
organization:
|
32
|
-
address: Имя хоста SMTP
|
33
32
|
alert_color: Оповещение
|
34
33
|
badges_enabled: Включить значки
|
35
34
|
cta_button_path: Путь кнопки "Призвать к действию"
|
@@ -59,18 +58,14 @@ ru:
|
|
59
58
|
omnipresent_banner_short_description: Краткое описание
|
60
59
|
omnipresent_banner_title: Заголовок
|
61
60
|
omnipresent_banner_url: Веб-адрес
|
62
|
-
password: Пароль
|
63
|
-
port: Порт
|
64
61
|
primary_color: Основной
|
65
62
|
reference_prefix: Справочный префикс
|
66
63
|
secondary_color: Дополнительный
|
67
64
|
send_welcome_notification: Отправить приветственное уведомление
|
68
|
-
show_statistics: Показывать статистику
|
69
65
|
success_color: Успешно
|
70
66
|
tos_version: Версия условий участия
|
71
67
|
twitter_handler: Обработчик Twitter
|
72
68
|
user_groups_enabled: Включить группы
|
73
|
-
user_name: Имя пользователя
|
74
69
|
warning_color: Предупреждение
|
75
70
|
welcome_notification_body: Текст приветствия
|
76
71
|
welcome_notification_subject: Тема приветствия
|
@@ -491,7 +486,6 @@ ru:
|
|
491
486
|
instagram: Инстаграм
|
492
487
|
social_handlers: Социальные сети
|
493
488
|
twitter: Твиттер
|
494
|
-
url: Веб-сайт
|
495
489
|
youtube: ЮТуб
|
496
490
|
update:
|
497
491
|
error: При попытке обновить эту организацию произошла ошибка.
|
@@ -659,7 +653,6 @@ ru:
|
|
659
653
|
fields:
|
660
654
|
hidden_at: 'Скрыто:'
|
661
655
|
report_count: Количество
|
662
|
-
reportable: Вид жалобы
|
663
656
|
reported_content_url: Веб-адрес обжалованного содержимого
|
664
657
|
reports: Жалобы
|
665
658
|
visit_url: Посетите веб-адрес
|
@@ -0,0 +1 @@
|
|
1
|
+
si:
|
data/config/locales/sk.yml
CHANGED
@@ -29,7 +29,6 @@ sk:
|
|
29
29
|
body: Telo textu
|
30
30
|
subject: Predmet
|
31
31
|
organization:
|
32
|
-
address: SMTP hostname
|
33
32
|
alert_color: Upozornenie
|
34
33
|
badges_enabled: Povoliť odznaky
|
35
34
|
cta_button_path: URL odkaz na tlačítko Výzva do akcie
|
@@ -59,20 +58,16 @@ sk:
|
|
59
58
|
omnipresent_banner_short_description: Krátky popis
|
60
59
|
omnipresent_banner_title: Názov
|
61
60
|
omnipresent_banner_url: Adresa URL
|
62
|
-
password: Heslo
|
63
|
-
port: Port
|
64
61
|
primary_color: Primárne
|
65
62
|
reference_prefix: Referenčná predpona
|
66
63
|
rich_text_editor_in_public_views: Povoliť pokročilý textový editor pre účastníkov
|
67
64
|
secondary_color: Sekundárne
|
68
65
|
send_welcome_notification: Poslať úvodné privítanie
|
69
|
-
show_statistics: Zobrazenie štatistík
|
70
66
|
success_color: Úspech
|
71
67
|
time_zone: Časové pásmo
|
72
68
|
tos_version: Verzia podmienok použitia
|
73
69
|
twitter_handler: Twitter handler
|
74
70
|
user_groups_enabled: Povoliť skupiny
|
75
|
-
user_name: Používateľské meno
|
76
71
|
warning_color: Varovanie
|
77
72
|
welcome_notification_body: Telo textu úvodného privítania
|
78
73
|
welcome_notification_subject: Predmet textu úvodného privítania
|
@@ -142,7 +137,6 @@ sk:
|
|
142
137
|
error: Pri odsúhlasení podmienok použitia nastala chyba.
|
143
138
|
success: Skvele! Odsúhlasili ste podmienky použitia pre administrátorov.
|
144
139
|
actions:
|
145
|
-
accept: Súhlasím s týmito podmienkami použitia.
|
146
140
|
are_you_sure: Ste si istí, že chcete odmietnuť podmienky použitia pre administrátorov?
|
147
141
|
refuse: "Odmietnuť podmienky použitia pre administrátorov.\n"
|
148
142
|
title: Súhasím s podmienkami použitia.
|
@@ -561,7 +555,6 @@ sk:
|
|
561
555
|
rich_text_editor_in_public_views_help: V niektorých textových oknách budú účastníci môcť vkladať niektoré HTML tagy pomocou pokročilého textového editoru.
|
562
556
|
social_handlers: Sociálne
|
563
557
|
twitter: Twitter
|
564
|
-
url: URL
|
565
558
|
youtube: YouTube
|
566
559
|
update:
|
567
560
|
error: Pri aktualizácii organizácie došlo k chybe.
|
@@ -595,7 +588,6 @@ sk:
|
|
595
588
|
error: Pri vymazaní súkromného používateľa pre tento participačný priestor došlo k chybe.
|
596
589
|
success: Participatívny priestor bol zneprístupnený súkromnému užívateľovi.
|
597
590
|
index:
|
598
|
-
import_via_csv: Import z CSV
|
599
591
|
title: Súkromný účastník participatívneho priestoru
|
600
592
|
new:
|
601
593
|
create: Vytvoriť
|
@@ -788,7 +780,6 @@ sk:
|
|
788
780
|
fields:
|
789
781
|
hidden_at: Skryté
|
790
782
|
report_count: Počet
|
791
|
-
reportable: Nahlásiteľné
|
792
783
|
reported_content_url: Nahlásiť URL obsahu
|
793
784
|
reports: Nahlásenia
|
794
785
|
visit_url: Navštíviť URL
|
data/config/locales/sl.yml
CHANGED
@@ -29,7 +29,6 @@ sl:
|
|
29
29
|
body: Telo
|
30
30
|
subject: Zadeva
|
31
31
|
organization:
|
32
|
-
address: SMTP Gostitelj
|
33
32
|
alert_color: Opozorilo
|
34
33
|
badges_enabled: Omogoči značke
|
35
34
|
comments_max_length: Maksimalna dolžina komentarjev (0 je privzeta)
|
@@ -58,19 +57,15 @@ sl:
|
|
58
57
|
omnipresent_banner_short_description: Kratek opis
|
59
58
|
omnipresent_banner_title: Naziv
|
60
59
|
omnipresent_banner_url: URL
|
61
|
-
password: Geslo
|
62
|
-
port: Vrata
|
63
60
|
primary_color: Primarni
|
64
61
|
rich_text_editor_in_public_views: Omogoči napredni tekstovni urejevalnik za obiskovalce
|
65
62
|
secondary_color: Sekundarni
|
66
63
|
send_welcome_notification: Pošli sporočilo dobrodošlice
|
67
|
-
show_statistics: Pokaži statistiko
|
68
64
|
success_color: Uspeh
|
69
65
|
time_zone: Časovni pas
|
70
66
|
tos_version: Pogoji storitve - verzija
|
71
67
|
twitter_handler: Twitter krmilnik
|
72
68
|
user_groups_enabled: Omogoči grupe
|
73
|
-
user_name: Uporabniško ime
|
74
69
|
warning_color: Opozorilo
|
75
70
|
welcome_notification_body: Sporočilo dobrodošlice - vsebina
|
76
71
|
welcome_notification_subject: Sporočilo dobrodošlice - naslov
|
data/config/locales/sr-CS.yml
CHANGED
@@ -29,7 +29,6 @@ sr:
|
|
29
29
|
body: Glavni deo teksta
|
30
30
|
subject: Naslov
|
31
31
|
organization:
|
32
|
-
address: SMTP domaćin
|
33
32
|
alert_color: Upozorеnjе
|
34
33
|
badges_enabled: Omogući značke
|
35
34
|
cta_button_path: Put dugmeta poziva na akciju
|
@@ -59,20 +58,16 @@ sr:
|
|
59
58
|
omnipresent_banner_short_description: Kratak opis
|
60
59
|
omnipresent_banner_title: Naslov
|
61
60
|
omnipresent_banner_url: Adrеsa
|
62
|
-
password: Šifra
|
63
|
-
port: Port
|
64
61
|
primary_color: Primarni
|
65
62
|
reference_prefix: Prefiks reference
|
66
63
|
rich_text_editor_in_public_views: Omogući korisnicima uređivanje teksta sa formatiranjem
|
67
64
|
secondary_color: Sekundarni
|
68
65
|
send_welcome_notification: Pošalji obaveštenje dobrodošlice
|
69
|
-
show_statistics: Prikaži statistiku
|
70
66
|
success_color: Uspeh
|
71
67
|
time_zone: Vremenska zona
|
72
68
|
tos_version: Verzija uslova korišćenja
|
73
69
|
twitter_handler: Administrator Twitter-a
|
74
70
|
user_groups_enabled: Omogući grupe
|
75
|
-
user_name: Korisničko ime
|
76
71
|
warning_color: Upozorenje
|
77
72
|
welcome_notification_body: Glavni tekst obaveštenja dobrodošlice
|
78
73
|
welcome_notification_subject: Naslov obaveštenja dobrodošlice
|
@@ -142,7 +137,6 @@ sr:
|
|
142
137
|
error: Greška u postupku prihvatanja uslova korišćenja za administratore.
|
143
138
|
success: Odlično! Prihvatili ste uslove korišćenja za administratore.
|
144
139
|
actions:
|
145
|
-
accept: Prihvatam uslove korišćenja za administratore
|
146
140
|
are_you_sure: Da li ste sigurni da ne prihvatate uslove korišćenja za administratore?
|
147
141
|
refuse: Ne prihvatam uslove korišćenja za administratore
|
148
142
|
title: Prihvatam propisane načine i uslove korišćenja
|
@@ -561,7 +555,6 @@ sr:
|
|
561
555
|
rich_text_editor_in_public_views_help: U pojedinim delovima teksta učesnici će uz pomoć programa moći da ubace HTML oznake.
|
562
556
|
social_handlers: Društvene
|
563
557
|
twitter: Twitter
|
564
|
-
url: URL
|
565
558
|
youtube: YouTube
|
566
559
|
update:
|
567
560
|
error: Pojavio se problem pri ažuriranju ove organizacije.
|
data/config/locales/sv.yml
CHANGED
@@ -30,7 +30,6 @@ sv:
|
|
30
30
|
body: Innehåll
|
31
31
|
subject: Ämne
|
32
32
|
organization:
|
33
|
-
address: SMTP-värdnamn
|
34
33
|
alert_color: Larm
|
35
34
|
badges_enabled: Aktivera märken
|
36
35
|
comments_max_length: Maximal längd för kommentarer (Lämna 0 för standardvärde)
|
@@ -66,20 +65,16 @@ sv:
|
|
66
65
|
omnipresent_banner_short_description: Kort beskrivning
|
67
66
|
omnipresent_banner_title: Titel
|
68
67
|
omnipresent_banner_url: URL
|
69
|
-
password: Lösenord
|
70
|
-
port: Port
|
71
68
|
primary_color: Primär
|
72
69
|
reference_prefix: Referensprefix
|
73
70
|
rich_text_editor_in_public_views: Aktivera rik textredigering för deltagare
|
74
71
|
secondary_color: Sekundär
|
75
72
|
send_welcome_notification: Skicka välkomstmeddelande
|
76
|
-
show_statistics: Visa statistik
|
77
73
|
success_color: Färdigt
|
78
74
|
time_zone: Tidszon
|
79
75
|
tos_version: Version på användarvillkor
|
80
76
|
twitter_handler: Twitter-hanterare
|
81
77
|
user_groups_enabled: Aktivera grupper
|
82
|
-
user_name: Användarnamn
|
83
78
|
warning_color: Varning
|
84
79
|
welcome_notification_body: Välkomstmeddelandets brödtext
|
85
80
|
welcome_notification_subject: Välkomstmeddelandets ämnesrad
|
@@ -95,6 +90,8 @@ sv:
|
|
95
90
|
name: Namn
|
96
91
|
organization: Organisation
|
97
92
|
plural: Flertal
|
93
|
+
settings:
|
94
|
+
scope_id: Omfång
|
98
95
|
static_page:
|
99
96
|
changed_notably: Det har skett större förändringar.
|
100
97
|
content: Innehåll
|
@@ -136,7 +133,13 @@ sv:
|
|
136
133
|
admin:
|
137
134
|
actions:
|
138
135
|
add: Lägg till
|
136
|
+
attachment:
|
137
|
+
new: Ny bifogad fil
|
138
|
+
attachment_collection:
|
139
|
+
new: Ny mapp för bilagor
|
139
140
|
browse: Bläddra
|
141
|
+
category:
|
142
|
+
new: Ny kategori
|
140
143
|
export: Exportera
|
141
144
|
manage: Hantera
|
142
145
|
new: Ny %{name}
|
@@ -150,7 +153,7 @@ sv:
|
|
150
153
|
error: Ett fel inträffade när användarvillkoren för administratörer skulle godkännas.
|
151
154
|
success: Du har godkänt användarvillkoren för administratörer.
|
152
155
|
actions:
|
153
|
-
accept: Jag godkänner villkoren
|
156
|
+
accept: Jag godkänner villkoren
|
154
157
|
are_you_sure: Vill du avvisa villkoren för administratörer?
|
155
158
|
refuse: Avvisa villkoren för administratörer
|
156
159
|
title: Godkänn användarvillkoren
|
@@ -229,6 +232,10 @@ sv:
|
|
229
232
|
autocomplete:
|
230
233
|
no_results: Hittade inga resultat
|
231
234
|
search_prompt: Sök genom att skriva minst tre tecken
|
235
|
+
block_user:
|
236
|
+
new:
|
237
|
+
justification: Motivering
|
238
|
+
title: Blockera användare %{name}
|
232
239
|
categories:
|
233
240
|
create:
|
234
241
|
error: Det gick inte att skapa kategorin.
|
@@ -257,7 +264,7 @@ sv:
|
|
257
264
|
error: Det gick inte att skapa komponenten.
|
258
265
|
success: Komponenten har skapats.
|
259
266
|
destroy:
|
260
|
-
error:
|
267
|
+
error: Ett fel uppstod när komponenten skulle förstöras.
|
261
268
|
success: Komponenten har raderats.
|
262
269
|
edit:
|
263
270
|
title: Redigera komponent
|
@@ -284,6 +291,16 @@ sv:
|
|
284
291
|
update:
|
285
292
|
error: Det gick inte att uppdatera komponenten.
|
286
293
|
success: Komponenten har uppdaterats.
|
294
|
+
conflicts:
|
295
|
+
attempts: Försök
|
296
|
+
'false': 'Nej'
|
297
|
+
solved: Löst
|
298
|
+
transfer:
|
299
|
+
email: E-post
|
300
|
+
name: Namn
|
301
|
+
reason: Anledning
|
302
|
+
'true': 'Ja'
|
303
|
+
user_name: Användare
|
287
304
|
dashboard:
|
288
305
|
show:
|
289
306
|
view_more_logs: Visa fler loggar
|
@@ -300,6 +317,9 @@ sv:
|
|
300
317
|
category_id_eq:
|
301
318
|
label: Kategori
|
302
319
|
filter_label: Filtrera
|
320
|
+
moderations:
|
321
|
+
reportable_type_string_eq:
|
322
|
+
label: Typ
|
303
323
|
officialized_at_null:
|
304
324
|
label: Status
|
305
325
|
values:
|
@@ -320,6 +340,7 @@ sv:
|
|
320
340
|
search_label: Sök
|
321
341
|
search_placeholder:
|
322
342
|
name_or_nickname_or_email_cont: Sök i %{collection} efter e-post, namn eller smeknamn.
|
343
|
+
reported_id_string_or_reported_content_cont: Sök %{collection} efter anmälningsID eller innehåll.
|
323
344
|
title_cont: Sök %{collection} efter titel.
|
324
345
|
state_eq:
|
325
346
|
label: Län
|
@@ -481,6 +502,21 @@ sv:
|
|
481
502
|
does_not_belong: Hör inte hemma
|
482
503
|
offensive: Stötande
|
483
504
|
spam: Skräp
|
505
|
+
reports:
|
506
|
+
index:
|
507
|
+
author: Författare
|
508
|
+
callout_html: Ett innehåll visas i modereringspanelen när det har blivit signerat av en användare (kan vara vem som helst med ett registrerat konto) genom att klicka på %{icon} flaggan bredvid innehållet.
|
509
|
+
content_original_language: Innehållets originalspråk
|
510
|
+
participatory_space: Deltagarutrymme
|
511
|
+
reported_content: Rapporterat innehåll
|
512
|
+
see_current: Se nuvarande
|
513
|
+
see_original: Se original
|
514
|
+
title: Anmälningar
|
515
|
+
show:
|
516
|
+
report_details: Anledningsdetaljer
|
517
|
+
report_language: Anmälningsspråk
|
518
|
+
report_reason: Anledning
|
519
|
+
title: Anmälningsdetaljer
|
484
520
|
newsletter_templates:
|
485
521
|
index:
|
486
522
|
preview_template: Förhandsvisa
|
@@ -621,7 +657,7 @@ sv:
|
|
621
657
|
error: Det gick inte att ta bort en privat deltagare från deltagarutrymmet.
|
622
658
|
success: Åtkomsten för privat deltagare till deltagarutrymmet har tagits bort.
|
623
659
|
index:
|
624
|
-
import_via_csv: Importera via
|
660
|
+
import_via_csv: Importera via CSV
|
625
661
|
title: Privat deltagare i deltagarutrymme
|
626
662
|
new:
|
627
663
|
create: Skapa
|
@@ -809,6 +845,7 @@ sv:
|
|
809
845
|
reason: Du måste ange en anledning vid hantering av en icke-hanterad användare
|
810
846
|
moderations:
|
811
847
|
actions:
|
848
|
+
expand: Expandera
|
812
849
|
hidden: Dold
|
813
850
|
hide: Dölj
|
814
851
|
not_hidden: Inte dold
|
@@ -829,12 +866,19 @@ sv:
|
|
829
866
|
models:
|
830
867
|
moderation:
|
831
868
|
fields:
|
869
|
+
created_at: Skapandedatum
|
832
870
|
hidden_at: Dold
|
833
871
|
report_count: Antal
|
834
|
-
|
872
|
+
reportable_id: Id
|
873
|
+
reportable_type: Typ
|
835
874
|
reported_content_url: Rapporterad innehållsadress
|
836
875
|
reports: Rapporter
|
837
876
|
visit_url: Besök URL
|
877
|
+
report:
|
878
|
+
fields:
|
879
|
+
details: Anledningsdetaljer
|
880
|
+
locale: Språk
|
881
|
+
reason: Anledning
|
838
882
|
errors:
|
839
883
|
messages:
|
840
884
|
invalid_json: Ogiltig JSON
|