decidim-admin 0.23.0 → 0.24.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.
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/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/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/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 +1 -0
- 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 +33 -9
- data/config/locales/cs.yml +193 -50
- 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 +42 -9
- data/config/locales/es-PY.yml +42 -9
- data/config/locales/es.yml +42 -9
- 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 +148 -15
- 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 +159 -15
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -9
- data/config/locales/ro-RO.yml +8 -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 +59 -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/ro-RO.yml
CHANGED
@@ -26,11 +26,12 @@ 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ă
|
35
36
|
badges_enabled: Activează insigne
|
36
37
|
comments_max_length: Lungimea maximă a comentariilor (Leave 0 pentru valoarea implicită)
|
@@ -56,6 +57,8 @@ ro:
|
|
56
57
|
highlighted_content_banner_title: Titlu
|
57
58
|
instagram_handler: Gestionar instagram
|
58
59
|
logo: Logo
|
60
|
+
machine_translation_display_priority_original: Mai întâi textul original
|
61
|
+
machine_translation_display_priority_translation: Mai întâi textul tradus
|
59
62
|
name: Nume
|
60
63
|
official_img_footer: Subsol cu logo oficial
|
61
64
|
official_img_header: Antet logo oficial
|
@@ -63,20 +66,16 @@ ro:
|
|
63
66
|
omnipresent_banner_short_description: Descriere scurtă
|
64
67
|
omnipresent_banner_title: Titlu
|
65
68
|
omnipresent_banner_url: URL
|
66
|
-
password: Parolă
|
67
|
-
port: Portul
|
68
69
|
primary_color: Primară
|
69
70
|
reference_prefix: Prefix de referință
|
70
71
|
rich_text_editor_in_public_views: Activează editorul de text bogat pentru participanți
|
71
72
|
secondary_color: Secundar
|
72
73
|
send_welcome_notification: Trimite notificare de bun venit
|
73
|
-
show_statistics: Arată statistici
|
74
74
|
success_color: Succes
|
75
75
|
time_zone: Fus orar
|
76
76
|
tos_version: Termenii versiunii serviciului
|
77
77
|
twitter_handler: Twitter handler
|
78
78
|
user_groups_enabled: Activare grupuri
|
79
|
-
user_name: Nume
|
80
79
|
warning_color: Avertizare
|
81
80
|
welcome_notification_body: Organismul de notificare de bun venit
|
82
81
|
welcome_notification_subject: Subiectul notificării de bun venit
|
@@ -134,19 +133,22 @@ ro:
|
|
134
133
|
actions:
|
135
134
|
add: Adăugare
|
136
135
|
browse: Răsfoiţi
|
136
|
+
category:
|
137
|
+
new: Adaugă Categorie
|
137
138
|
export: Exportă
|
138
139
|
manage: Gestionează
|
139
140
|
new: '%{name} nou'
|
140
141
|
per_page: Pe pagină
|
141
142
|
permissions: Permisiuni
|
142
143
|
reject: Respingere
|
144
|
+
user:
|
145
|
+
new: Creează utilizator
|
143
146
|
verify: Verifică
|
144
147
|
admin_terms_of_use:
|
145
148
|
accept:
|
146
149
|
error: A apărut o eroare la acceptarea termenilor de utilizare ai administratorului.
|
147
150
|
success: Super! Ai acceptat termenii de utilizare ai administratorului.
|
148
151
|
actions:
|
149
|
-
accept: Sunt de acord cu termenii de administrare
|
150
152
|
are_you_sure: Sigur doriți să refuzați termenii de administrator?
|
151
153
|
refuse: Refuză termenii de administrare
|
152
154
|
title: Sunt de acord cu termenii și condițiile de utilizare
|
@@ -572,7 +574,6 @@ ro:
|
|
572
574
|
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
575
|
social_handlers: Sociale
|
574
576
|
twitter: Twitter
|
575
|
-
url: Url-ul
|
576
577
|
youtube: YouTube
|
577
578
|
update:
|
578
579
|
error: A apărut o eroare la actualizarea acestei organizații.
|
@@ -603,7 +604,6 @@ ro:
|
|
603
604
|
error: A apărut o eroare la ștergerea unui participant privat pentru acest spațiu participativ.
|
604
605
|
success: Accesul participanților privați la spațiul participativ a fost distrus cu succes.
|
605
606
|
index:
|
606
|
-
import_via_csv: Import prin csv
|
607
607
|
title: Participant privat la spațiu
|
608
608
|
new:
|
609
609
|
create: Crează
|
@@ -796,7 +796,6 @@ ro:
|
|
796
796
|
fields:
|
797
797
|
hidden_at: Ascuns la
|
798
798
|
report_count: Număr
|
799
|
-
reportable: Raportabil
|
800
799
|
reported_content_url: URL-ul conținutului raportat
|
801
800
|
reports: Rapoarte
|
802
801
|
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
|
@@ -271,6 +278,7 @@ sv:
|
|
271
278
|
headers:
|
272
279
|
actions: Åtgärder
|
273
280
|
name: Komponentnamn
|
281
|
+
scope: Komponentsomfång
|
274
282
|
type: Komponenttyp
|
275
283
|
new:
|
276
284
|
add: Lägg till komponent
|
@@ -283,6 +291,16 @@ sv:
|
|
283
291
|
update:
|
284
292
|
error: Det gick inte att uppdatera komponenten.
|
285
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
|
286
304
|
dashboard:
|
287
305
|
show:
|
288
306
|
view_more_logs: Visa fler loggar
|
@@ -299,6 +317,9 @@ sv:
|
|
299
317
|
category_id_eq:
|
300
318
|
label: Kategori
|
301
319
|
filter_label: Filtrera
|
320
|
+
moderations:
|
321
|
+
reportable_type_string_eq:
|
322
|
+
label: Typ
|
302
323
|
officialized_at_null:
|
303
324
|
label: Status
|
304
325
|
values:
|
@@ -319,6 +340,7 @@ sv:
|
|
319
340
|
search_label: Sök
|
320
341
|
search_placeholder:
|
321
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.
|
322
344
|
title_cont: Sök %{collection} efter titel.
|
323
345
|
state_eq:
|
324
346
|
label: Län
|
@@ -480,6 +502,21 @@ sv:
|
|
480
502
|
does_not_belong: Hör inte hemma
|
481
503
|
offensive: Stötande
|
482
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
|
483
520
|
newsletter_templates:
|
484
521
|
index:
|
485
522
|
preview_template: Förhandsvisa
|
@@ -620,7 +657,7 @@ sv:
|
|
620
657
|
error: Det gick inte att ta bort en privat deltagare från deltagarutrymmet.
|
621
658
|
success: Åtkomsten för privat deltagare till deltagarutrymmet har tagits bort.
|
622
659
|
index:
|
623
|
-
import_via_csv: Importera via
|
660
|
+
import_via_csv: Importera via CSV
|
624
661
|
title: Privat deltagare i deltagarutrymme
|
625
662
|
new:
|
626
663
|
create: Skapa
|
@@ -630,6 +667,7 @@ sv:
|
|
630
667
|
invalid: Det gick inte att läsa CSV-filen.
|
631
668
|
success: CSV-filen har skickats in och vi skickar inbjudningar via e-brev till deltagarna. Det kan ta en stund.
|
632
669
|
new:
|
670
|
+
explanation: 'Skicka in din CSV-fil. Den måste ha två kolumner över de användare som du vill lägga till deltagarutrymmet, utan rubriker, med e-postadressen i den första kolumnen i filen och namnet i den sista kolumnen i filen (e-post, namn). Undvik olämpliga karaktärer som `<>?%&^*#@()[]=+:;"{}\|` i användarnamn.'
|
633
671
|
title: Skicka CSV-fil
|
634
672
|
upload: Skicka
|
635
673
|
resource_permissions:
|
@@ -638,6 +676,10 @@ sv:
|
|
638
676
|
title: Redigera behörigheter
|
639
677
|
update:
|
640
678
|
success: Behörigheterna har uppdaterats.
|
679
|
+
resources:
|
680
|
+
index:
|
681
|
+
headers:
|
682
|
+
scope: Omfång
|
641
683
|
scope_types:
|
642
684
|
create:
|
643
685
|
error: Det gick inte att skapa en ny omfångstyp.
|
@@ -803,6 +845,7 @@ sv:
|
|
803
845
|
reason: Du måste ange en anledning vid hantering av en icke-hanterad användare
|
804
846
|
moderations:
|
805
847
|
actions:
|
848
|
+
expand: Expandera
|
806
849
|
hidden: Dold
|
807
850
|
hide: Dölj
|
808
851
|
not_hidden: Inte dold
|
@@ -823,12 +866,19 @@ sv:
|
|
823
866
|
models:
|
824
867
|
moderation:
|
825
868
|
fields:
|
869
|
+
created_at: Skapandedatum
|
826
870
|
hidden_at: Dold
|
827
871
|
report_count: Antal
|
828
|
-
|
872
|
+
reportable_id: Id
|
873
|
+
reportable_type: Typ
|
829
874
|
reported_content_url: Rapporterad innehållsadress
|
830
875
|
reports: Rapporter
|
831
876
|
visit_url: Besök URL
|
877
|
+
report:
|
878
|
+
fields:
|
879
|
+
details: Anledningsdetaljer
|
880
|
+
locale: Språk
|
881
|
+
reason: Anledning
|
832
882
|
errors:
|
833
883
|
messages:
|
834
884
|
invalid_json: Ogiltig JSON
|