decidim-admin 0.30.1 → 0.30.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/decidim/admin/share_tokens_controller.rb +6 -6
- data/app/packs/stylesheets/decidim/admin/_forms.scss +22 -13
- data/app/views/decidim/admin/officializations/index.html.erb +7 -2
- data/config/locales/ar.yml +7 -1
- data/config/locales/bg.yml +9 -1
- data/config/locales/ca-IT.yml +5 -4
- data/config/locales/ca.yml +5 -4
- data/config/locales/cs.yml +4 -3
- data/config/locales/de.yml +7 -6
- data/config/locales/el.yml +8 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +4 -3
- data/config/locales/es-PY.yml +4 -3
- data/config/locales/es.yml +4 -3
- data/config/locales/eu.yml +7 -6
- data/config/locales/fi-plain.yml +13 -1
- data/config/locales/fi.yml +12 -0
- data/config/locales/fr-CA.yml +8 -1
- data/config/locales/fr.yml +8 -1
- data/config/locales/ga-IE.yml +9 -0
- data/config/locales/gl.yml +9 -0
- data/config/locales/hu.yml +10 -2
- data/config/locales/id-ID.yml +4 -0
- data/config/locales/it.yml +189 -2
- data/config/locales/ja.yml +13 -3
- data/config/locales/ko.yml +2 -3
- data/config/locales/lb.yml +10 -1
- data/config/locales/lt.yml +8 -1
- data/config/locales/lv.yml +4 -0
- data/config/locales/nl.yml +9 -0
- data/config/locales/no.yml +10 -0
- data/config/locales/pl.yml +8 -0
- data/config/locales/pt-BR.yml +131 -2
- data/config/locales/pt.yml +6 -0
- data/config/locales/ro-RO.yml +9 -1
- data/config/locales/ru.yml +4 -0
- data/config/locales/sk.yml +4 -0
- data/config/locales/sl.yml +1 -1
- data/config/locales/sq-AL.yml +3 -1
- data/config/locales/sv.yml +3 -3
- data/config/locales/th-TH.yml +5 -0
- data/config/locales/tr-TR.yml +7 -1
- data/config/locales/uk.yml +1 -1
- data/config/locales/zh-CN.yml +4 -0
- data/config/locales/zh-TW.yml +8 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50628d7a45718c008e1a77f9f443bff0170179846fc40febea0e788a19746da3
|
|
4
|
+
data.tar.gz: fb299468e2e066697faa0a483950629787dd4ebe72e6706d55b822398a8098b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 532e2947b49c89996f8ddfc6633ff7127b922565ed88425788d47fa20c9d89ed22dc23d332ae20f07b19abcc8dcb6228036a1c3a73e3df7b5597281aa7fa2131
|
|
7
|
+
data.tar.gz: b43e20bf3b1d5f0022de001af00bcff644e173d69ef86125b837d8ddf25aef84455462cb41f543d8c37a3f9125e28ce0d94fd21b46d435abb2cb6f0a790a33df
|
|
@@ -10,17 +10,17 @@ module Decidim
|
|
|
10
10
|
helper_method :current_token, :resource, :resource_title, :share_tokens_path
|
|
11
11
|
|
|
12
12
|
def index
|
|
13
|
-
enforce_permission_to :read, :
|
|
13
|
+
enforce_permission_to :read, :share_token
|
|
14
14
|
@share_tokens = filtered_collection
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def new
|
|
18
|
-
enforce_permission_to :create, :
|
|
18
|
+
enforce_permission_to :create, :share_token
|
|
19
19
|
@form = form(ShareTokenForm).instance
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def create
|
|
23
|
-
enforce_permission_to :create, :
|
|
23
|
+
enforce_permission_to :create, :share_token
|
|
24
24
|
@form = form(ShareTokenForm).from_params(params, resource:)
|
|
25
25
|
|
|
26
26
|
CreateShareToken.call(@form) do
|
|
@@ -37,12 +37,12 @@ module Decidim
|
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def edit
|
|
40
|
-
enforce_permission_to(:update, :
|
|
40
|
+
enforce_permission_to(:update, :share_token, share_token: current_token)
|
|
41
41
|
@form = form(ShareTokenForm).from_model(current_token)
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
def update
|
|
45
|
-
enforce_permission_to(:update, :
|
|
45
|
+
enforce_permission_to(:update, :share_token, share_token: current_token)
|
|
46
46
|
@form = form(ShareTokenForm).from_params(params, resource:)
|
|
47
47
|
|
|
48
48
|
UpdateShareToken.call(@form, current_token) do
|
|
@@ -59,7 +59,7 @@ module Decidim
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
def destroy
|
|
62
|
-
enforce_permission_to(:destroy, :
|
|
62
|
+
enforce_permission_to(:destroy, :share_token, share_token: current_token)
|
|
63
63
|
|
|
64
64
|
DestroyShareToken.call(current_token, current_user) do
|
|
65
65
|
on(:ok) do
|
|
@@ -58,24 +58,33 @@
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
.questionnaire-
|
|
62
|
-
|
|
63
|
-
.
|
|
64
|
-
@apply block;
|
|
65
|
-
}
|
|
61
|
+
.questionnaire-questions {
|
|
62
|
+
.questionnaire-question {
|
|
63
|
+
transition: all 0.2s ease;
|
|
66
64
|
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
svg[role="img"] {
|
|
66
|
+
cursor: default !important;
|
|
67
|
+
transition: color 0.2s ease;
|
|
69
68
|
}
|
|
70
|
-
}
|
|
71
69
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
button[aria-expanded="true"] {
|
|
71
|
+
.icon-collapse {
|
|
72
|
+
@apply block;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.icon-expand {
|
|
76
|
+
@apply hidden;
|
|
77
|
+
}
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
|
|
78
|
-
|
|
80
|
+
button[aria-expanded="false"] {
|
|
81
|
+
.icon-collapse {
|
|
82
|
+
@apply hidden;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.icon-expand {
|
|
86
|
+
@apply block;
|
|
87
|
+
}
|
|
79
88
|
}
|
|
80
89
|
}
|
|
81
90
|
}
|
|
@@ -20,8 +20,13 @@
|
|
|
20
20
|
<tbody>
|
|
21
21
|
<% @users.each do |user| %>
|
|
22
22
|
<tr data-user-id="<%= user.id %>">
|
|
23
|
-
|
|
24
|
-
<td><%=
|
|
23
|
+
<% if user.nickname.present? %>
|
|
24
|
+
<td><%= link_to user.name, decidim.profile_path(user.nickname) %></td>
|
|
25
|
+
<td><%= link_to user.nickname, decidim.profile_path(user.nickname) %></td>
|
|
26
|
+
<% else %>
|
|
27
|
+
<td><%= user.name %></td>
|
|
28
|
+
<td><%= user.nickname %></td>
|
|
29
|
+
<% end %>
|
|
25
30
|
<td><%= l user.created_at, format: :short %></td>
|
|
26
31
|
<td><%= user.officialized? ? t(".officialized") : t(".not_officialized") %></td>
|
|
27
32
|
<td><%= translated_attribute(user.officialized_as) %></td>
|
data/config/locales/ar.yml
CHANGED
|
@@ -69,7 +69,7 @@ ar:
|
|
|
69
69
|
highlighted_content_banner_action_url: عنوان URL لزر الإجراء
|
|
70
70
|
highlighted_content_banner_enabled: إظهار شعار المحتوى المميز
|
|
71
71
|
highlighted_content_banner_image: الصورة
|
|
72
|
-
highlighted_content_banner_short_description: وصف
|
|
72
|
+
highlighted_content_banner_short_description: وصف قصير
|
|
73
73
|
highlighted_content_banner_title: العنوان
|
|
74
74
|
host: المضيف
|
|
75
75
|
instagram_handler: مُعرّف حساب استجرام
|
|
@@ -567,6 +567,8 @@ ar:
|
|
|
567
567
|
block: حظر مستخدم
|
|
568
568
|
bulk_actions:
|
|
569
569
|
actions_dropdown: الإجراءات
|
|
570
|
+
unreport:
|
|
571
|
+
title: إلغاء التبليغ
|
|
570
572
|
title: الإجراءات
|
|
571
573
|
unblock: إلغاء حظر المستخدم
|
|
572
574
|
unreport: إلغاء التبليغ
|
|
@@ -586,6 +588,10 @@ ar:
|
|
|
586
588
|
actions_dropdown: الإجراءات
|
|
587
589
|
hide:
|
|
588
590
|
title: إخفاء
|
|
591
|
+
unhide:
|
|
592
|
+
title: إظهار
|
|
593
|
+
unreport:
|
|
594
|
+
title: إلغاء التبليغ
|
|
589
595
|
report:
|
|
590
596
|
reasons:
|
|
591
597
|
does_not_belong: لا ينتمي
|
data/config/locales/bg.yml
CHANGED
|
@@ -663,6 +663,9 @@ bg:
|
|
|
663
663
|
index:
|
|
664
664
|
actions:
|
|
665
665
|
block: Блокиране на потребител
|
|
666
|
+
bulk_actions:
|
|
667
|
+
unreport:
|
|
668
|
+
title: Отмяна на доклада
|
|
666
669
|
title: Активности
|
|
667
670
|
unblock: Разблокирай потребител
|
|
668
671
|
unreport: Отмяна на доклада
|
|
@@ -681,6 +684,11 @@ bg:
|
|
|
681
684
|
unblocked: Не блокирано
|
|
682
685
|
moderations:
|
|
683
686
|
index:
|
|
687
|
+
actions:
|
|
688
|
+
unhide:
|
|
689
|
+
title: Разкриване
|
|
690
|
+
unreport:
|
|
691
|
+
title: Отмяна на доклада
|
|
684
692
|
title: Докладвано съдържание
|
|
685
693
|
report:
|
|
686
694
|
reasons:
|
|
@@ -784,7 +792,7 @@ bg:
|
|
|
784
792
|
reports: Доклади
|
|
785
793
|
show_email: Показване на електронната поща
|
|
786
794
|
status: Статус
|
|
787
|
-
unblock: Разблокирай
|
|
795
|
+
unblock: Разблокирай потребител
|
|
788
796
|
unofficialize: Премахване на официализирането
|
|
789
797
|
new:
|
|
790
798
|
badge: Бадж за официализиране
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -53,6 +53,7 @@ ca-IT:
|
|
|
53
53
|
customize_welcome_notification: Personalitza la notificació de benvinguda
|
|
54
54
|
default_locale: Idioma per defecte
|
|
55
55
|
description: Descripció
|
|
56
|
+
enable_machine_translations: Habilitar traduccions automàtiques
|
|
56
57
|
enable_omnipresent_banner: Mostrar el banner omnipresent
|
|
57
58
|
enable_participatory_space_filters: Habilitar els filtres a l'espai de participació
|
|
58
59
|
facebook_handler: Nom d'usuari de Facebook
|
|
@@ -700,7 +701,7 @@ ca-IT:
|
|
|
700
701
|
title: Desbloquejar
|
|
701
702
|
update_moderated_user_button: Desbloquejar usuàries
|
|
702
703
|
unreport:
|
|
703
|
-
title: Desfer
|
|
704
|
+
title: Desfer denúncia
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
706
707
|
title: Accions
|
|
@@ -732,7 +733,7 @@ ca-IT:
|
|
|
732
733
|
title: Tornar a mostrar
|
|
733
734
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
|
734
735
|
unreport:
|
|
735
|
-
title: Desfer
|
|
736
|
+
title: Desfer denúncia
|
|
736
737
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
|
737
738
|
cancel: Cancel·lar
|
|
738
739
|
selected: seleccionades
|
|
@@ -859,7 +860,7 @@ ca-IT:
|
|
|
859
860
|
success: S'ha retirat correctament l'oficialització de la participant.
|
|
860
861
|
index:
|
|
861
862
|
actions: Accions
|
|
862
|
-
badge:
|
|
863
|
+
badge: Ensenya
|
|
863
864
|
block: Bloquejar usuària
|
|
864
865
|
created_at: Creat el
|
|
865
866
|
name: Nom
|
|
@@ -874,7 +875,7 @@ ca-IT:
|
|
|
874
875
|
unblock: Desbloquejar usuària
|
|
875
876
|
unofficialize: Des-oficialitzar
|
|
876
877
|
new:
|
|
877
|
-
badge:
|
|
878
|
+
badge: Ensenya d'oficialització
|
|
878
879
|
officialize: Oficialitza
|
|
879
880
|
title: Oficialitza la participant "%{name}"
|
|
880
881
|
show_email_modal:
|
data/config/locales/ca.yml
CHANGED
|
@@ -53,6 +53,7 @@ ca:
|
|
|
53
53
|
customize_welcome_notification: Personalitza la notificació de benvinguda
|
|
54
54
|
default_locale: Idioma per defecte
|
|
55
55
|
description: Descripció
|
|
56
|
+
enable_machine_translations: Habilitar traduccions automàtiques
|
|
56
57
|
enable_omnipresent_banner: Mostrar el banner omnipresent
|
|
57
58
|
enable_participatory_space_filters: Habilitar els filtres a l'espai de participació
|
|
58
59
|
facebook_handler: Nom d'usuari de Facebook
|
|
@@ -700,7 +701,7 @@ ca:
|
|
|
700
701
|
title: Desbloquejar
|
|
701
702
|
update_moderated_user_button: Desbloquejar usuàries
|
|
702
703
|
unreport:
|
|
703
|
-
title: Desfer
|
|
704
|
+
title: Desfer denúncia
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
|
706
707
|
title: Accions
|
|
@@ -732,7 +733,7 @@ ca:
|
|
|
732
733
|
title: Tornar a mostrar
|
|
733
734
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
|
734
735
|
unreport:
|
|
735
|
-
title: Desfer
|
|
736
|
+
title: Desfer denúncia
|
|
736
737
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
|
737
738
|
cancel: Cancel·lar
|
|
738
739
|
selected: seleccionades
|
|
@@ -859,7 +860,7 @@ ca:
|
|
|
859
860
|
success: S'ha retirat correctament l'oficialització de la participant.
|
|
860
861
|
index:
|
|
861
862
|
actions: Accions
|
|
862
|
-
badge:
|
|
863
|
+
badge: Ensenya
|
|
863
864
|
block: Bloquejar usuària
|
|
864
865
|
created_at: Creat el
|
|
865
866
|
name: Nom
|
|
@@ -874,7 +875,7 @@ ca:
|
|
|
874
875
|
unblock: Desbloquejar usuària
|
|
875
876
|
unofficialize: Des-oficialitzar
|
|
876
877
|
new:
|
|
877
|
-
badge:
|
|
878
|
+
badge: Ensenya d'oficialització
|
|
878
879
|
officialize: Oficialitza
|
|
879
880
|
title: Oficialitza la participant "%{name}"
|
|
880
881
|
show_email_modal:
|
data/config/locales/cs.yml
CHANGED
|
@@ -53,6 +53,7 @@ cs:
|
|
|
53
53
|
customize_welcome_notification: Přizpůsobit uvítací oznámení
|
|
54
54
|
default_locale: Výchozí jazyk
|
|
55
55
|
description: Popis
|
|
56
|
+
enable_machine_translations: Povolit strojové překlady
|
|
56
57
|
enable_omnipresent_banner: Zobrazit všudypřítomný banner
|
|
57
58
|
enable_participatory_space_filters: Povolit filtry participačního prostoru
|
|
58
59
|
facebook_handler: Facebook handler
|
|
@@ -70,7 +71,7 @@ cs:
|
|
|
70
71
|
highlighted_content_banner_enabled: Zobrazit zvýrazněný banner obsahu
|
|
71
72
|
highlighted_content_banner_image: Obrázek
|
|
72
73
|
highlighted_content_banner_short_description: Stručný popis
|
|
73
|
-
highlighted_content_banner_title:
|
|
74
|
+
highlighted_content_banner_title: Název
|
|
74
75
|
host: Hostitel
|
|
75
76
|
instagram_handler: Instagram handler
|
|
76
77
|
logo: Logo
|
|
@@ -739,7 +740,7 @@ cs:
|
|
|
739
740
|
title: Skrýt
|
|
740
741
|
update_moderation_button: Skrýt vybrané zdroje
|
|
741
742
|
unhide:
|
|
742
|
-
title:
|
|
743
|
+
title: Odkrýt
|
|
743
744
|
update_moderation_button: Odkrýt vybrané zdroje
|
|
744
745
|
unreport:
|
|
745
746
|
title: Zrušit nahlášení
|
|
@@ -870,7 +871,7 @@ cs:
|
|
|
870
871
|
index:
|
|
871
872
|
actions: Akce
|
|
872
873
|
badge: Odznak
|
|
873
|
-
block:
|
|
874
|
+
block: Blokovat uživatele
|
|
874
875
|
created_at: Vytvořeno na
|
|
875
876
|
name: Název
|
|
876
877
|
nickname: Přezdívka
|
data/config/locales/de.yml
CHANGED
|
@@ -53,6 +53,7 @@ de:
|
|
|
53
53
|
customize_welcome_notification: Willkommens-Benachrichtigung anpassen
|
|
54
54
|
default_locale: Standardgebietsschema
|
|
55
55
|
description: Beschreibung
|
|
56
|
+
enable_machine_translations: Maschinelle Übersetzungen aktivieren
|
|
56
57
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
|
57
58
|
enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
|
|
58
59
|
facebook_handler: Facebook-Handler
|
|
@@ -524,7 +525,7 @@ de:
|
|
|
524
525
|
and: und
|
|
525
526
|
data_errors:
|
|
526
527
|
duplicate_headers:
|
|
527
|
-
detail: Bitte überprüfen Sie, dass die Datei
|
|
528
|
+
detail: Bitte überprüfen Sie, dass die Datei die benötigten Spalten oder Kopfzeilen nur einmal enthält.
|
|
528
529
|
message:
|
|
529
530
|
one: Spalte %{columns} duplizieren.
|
|
530
531
|
other: Spalten %{columns} duplizieren.
|
|
@@ -700,7 +701,7 @@ de:
|
|
|
700
701
|
title: Blockierung aufheben
|
|
701
702
|
update_moderated_user_button: Blockierung aufheben
|
|
702
703
|
unreport:
|
|
703
|
-
title: Meldung
|
|
704
|
+
title: Meldung Rückgängig machen
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Gemeldete Teilnehmende zurückweisen
|
|
706
707
|
title: Aktionen
|
|
@@ -732,7 +733,7 @@ de:
|
|
|
732
733
|
title: Einblenden
|
|
733
734
|
update_moderation_button: Ausgewählte Ressourcen einblenden
|
|
734
735
|
unreport:
|
|
735
|
-
title: Meldung
|
|
736
|
+
title: Meldung Rückgängig machen
|
|
736
737
|
update_moderation_button: Meldung ausgewählter Ressourcen aufheben
|
|
737
738
|
cancel: Abbrechen
|
|
738
739
|
selected: ausgewählt
|
|
@@ -821,7 +822,7 @@ de:
|
|
|
821
822
|
select_conferences: Konferenzen auswählen
|
|
822
823
|
select_initiatives: Initiativen auswählen
|
|
823
824
|
select_participatory_processes: Beteiligungsprozesse auswählen
|
|
824
|
-
select_spaces:
|
|
825
|
+
select_spaces: Bereiche zum Segmentieren des Newsletters auswählen
|
|
825
826
|
select_users_for_participatory_space: Newsletter an einen oder mehrere partizipative Bereiche senden
|
|
826
827
|
select_users_general: Plattformweiter Newsletter senden
|
|
827
828
|
select_verification_types: Verifizierungsmethoden auswählen
|
|
@@ -871,7 +872,7 @@ de:
|
|
|
871
872
|
reports: Berichte
|
|
872
873
|
show_email: E-Mail-Adresse anzeigen
|
|
873
874
|
status: Status
|
|
874
|
-
unblock: Blockierung des
|
|
875
|
+
unblock: Blockierung des Benutzers aufheben
|
|
875
876
|
unofficialize: Nicht offiziell
|
|
876
877
|
new:
|
|
877
878
|
badge: Offizielles Abzeichen
|
|
@@ -941,7 +942,7 @@ de:
|
|
|
941
942
|
participatory_space_private_users:
|
|
942
943
|
create:
|
|
943
944
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
944
|
-
success:
|
|
945
|
+
success: Ein privater Zugriff für diesen Beteiligungsbereich wurde erfolgreich für das Konto erstellt.
|
|
945
946
|
destroy:
|
|
946
947
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
947
948
|
success: Privater Zugriff zum partizipativen Raum erfolgreich gelöscht.
|
data/config/locales/el.yml
CHANGED
|
@@ -609,6 +609,9 @@ el:
|
|
|
609
609
|
index:
|
|
610
610
|
actions:
|
|
611
611
|
block: Αποκλεισμός χρήστη
|
|
612
|
+
bulk_actions:
|
|
613
|
+
unreport:
|
|
614
|
+
title: Κατάργηση αναφοράς
|
|
612
615
|
title: Ενέργειες
|
|
613
616
|
unblock: Ξεμπλοκάρισμα χρήστη
|
|
614
617
|
unreport: Κατάργηση αναφοράς
|
|
@@ -627,6 +630,11 @@ el:
|
|
|
627
630
|
unblocked: Δεν έχει μπλοκαριστεί
|
|
628
631
|
moderations:
|
|
629
632
|
index:
|
|
633
|
+
actions:
|
|
634
|
+
unhide:
|
|
635
|
+
title: Επανεμφάνιση
|
|
636
|
+
unreport:
|
|
637
|
+
title: Κατάργηση αναφοράς
|
|
630
638
|
title: Περιεχόμενο που αναφέρθηκε
|
|
631
639
|
report:
|
|
632
640
|
reasons:
|
data/config/locales/en.yml
CHANGED
|
@@ -53,6 +53,7 @@ en:
|
|
|
53
53
|
customize_welcome_notification: Customize welcome notification
|
|
54
54
|
default_locale: Default locale
|
|
55
55
|
description: Description
|
|
56
|
+
enable_machine_translations: Enable machine translations
|
|
56
57
|
enable_omnipresent_banner: Show omnipresent banner
|
|
57
58
|
enable_participatory_space_filters: Enable participatory space filters
|
|
58
59
|
facebook_handler: Facebook handler
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -53,6 +53,7 @@ es-MX:
|
|
|
53
53
|
customize_welcome_notification: Personalizar notificación de bienvenida
|
|
54
54
|
default_locale: Idioma predeterminado
|
|
55
55
|
description: Descripción
|
|
56
|
+
enable_machine_translations: Habilitar traducciones automáticas
|
|
56
57
|
enable_omnipresent_banner: Mostrar banner omnipresente
|
|
57
58
|
enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
|
|
58
59
|
facebook_handler: Nombre en Facebook
|
|
@@ -700,7 +701,7 @@ es-MX:
|
|
|
700
701
|
title: Desbloquear
|
|
701
702
|
update_moderated_user_button: Desbloquear usuarias
|
|
702
703
|
unreport:
|
|
703
|
-
title: Deshacer
|
|
704
|
+
title: Deshacer denuncia
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
|
706
707
|
title: Acciones
|
|
@@ -729,10 +730,10 @@ es-MX:
|
|
|
729
730
|
title: Esconder
|
|
730
731
|
update_moderation_button: Ocultar los contenidos seleccionados
|
|
731
732
|
unhide:
|
|
732
|
-
title:
|
|
733
|
+
title: Ocultar
|
|
733
734
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
|
734
735
|
unreport:
|
|
735
|
-
title: Deshacer
|
|
736
|
+
title: Deshacer denuncia
|
|
736
737
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
|
737
738
|
cancel: Cancelar
|
|
738
739
|
selected: seleccionadas
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -53,6 +53,7 @@ es-PY:
|
|
|
53
53
|
customize_welcome_notification: Personalizar notificación de bienvenida
|
|
54
54
|
default_locale: Idioma predeterminado
|
|
55
55
|
description: Descripción
|
|
56
|
+
enable_machine_translations: Habilitar traducciones automáticas
|
|
56
57
|
enable_omnipresent_banner: Mostrar banner omnipresente
|
|
57
58
|
enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
|
|
58
59
|
facebook_handler: Nombre en Facebook
|
|
@@ -700,7 +701,7 @@ es-PY:
|
|
|
700
701
|
title: Desbloquear
|
|
701
702
|
update_moderated_user_button: Desbloquear usuarias
|
|
702
703
|
unreport:
|
|
703
|
-
title: Deshacer
|
|
704
|
+
title: Deshacer denuncia
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
|
706
707
|
title: Acciones
|
|
@@ -729,10 +730,10 @@ es-PY:
|
|
|
729
730
|
title: Esconder
|
|
730
731
|
update_moderation_button: Ocultar los contenidos seleccionados
|
|
731
732
|
unhide:
|
|
732
|
-
title:
|
|
733
|
+
title: Ocultar
|
|
733
734
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
|
734
735
|
unreport:
|
|
735
|
-
title: Deshacer
|
|
736
|
+
title: Deshacer denuncia
|
|
736
737
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
|
737
738
|
cancel: Cancelar
|
|
738
739
|
selected: seleccionadas
|
data/config/locales/es.yml
CHANGED
|
@@ -53,6 +53,7 @@ es:
|
|
|
53
53
|
customize_welcome_notification: Personalizar notificación de bienvenida
|
|
54
54
|
default_locale: Idioma predeterminado
|
|
55
55
|
description: Descripción
|
|
56
|
+
enable_machine_translations: Habilitar traducciones automáticas
|
|
56
57
|
enable_omnipresent_banner: Mostrar banner omnipresente
|
|
57
58
|
enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
|
|
58
59
|
facebook_handler: Nombre en Facebook
|
|
@@ -700,7 +701,7 @@ es:
|
|
|
700
701
|
title: Desbloquear
|
|
701
702
|
update_moderated_user_button: Desbloquear usuarias
|
|
702
703
|
unreport:
|
|
703
|
-
title: Deshacer
|
|
704
|
+
title: Deshacer denuncia
|
|
704
705
|
ignore:
|
|
705
706
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
|
706
707
|
title: Acciones
|
|
@@ -729,10 +730,10 @@ es:
|
|
|
729
730
|
title: Esconder
|
|
730
731
|
update_moderation_button: Ocultar los contenidos seleccionados
|
|
731
732
|
unhide:
|
|
732
|
-
title:
|
|
733
|
+
title: Vuelve a mostrar
|
|
733
734
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
|
734
735
|
unreport:
|
|
735
|
-
title: Deshacer
|
|
736
|
+
title: Deshacer denuncia
|
|
736
737
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
|
737
738
|
cancel: Cancelar
|
|
738
739
|
selected: seleccionadas
|
data/config/locales/eu.yml
CHANGED
|
@@ -53,6 +53,7 @@ eu:
|
|
|
53
53
|
customize_welcome_notification: Pertsonalizatu ongi etorri jakinarazpena
|
|
54
54
|
default_locale: Kokapen lehenetsia
|
|
55
55
|
description: Deskribapena
|
|
56
|
+
enable_machine_translations: Gaitu itzulpen automatikoak
|
|
56
57
|
enable_omnipresent_banner: Erakutsi banner nonahikoa
|
|
57
58
|
enable_participatory_space_filters: Gaitu iragazkiak parte hartzeko espazioan
|
|
58
59
|
facebook_handler: Facebook kudeatzailea
|
|
@@ -189,9 +190,9 @@ eu:
|
|
|
189
190
|
Ziur zaude osagai hau ezabatu nahi duzula?
|
|
190
191
|
Osagai honek honako hauek ditu:
|
|
191
192
|
<ul class="list-disc ml-6 my-2">
|
|
192
|
-
<li class="font-bold">%{
|
|
193
|
+
<li class="font-bold">%{resources_count} resources</li>
|
|
193
194
|
</ul>
|
|
194
|
-
Iritziz aldatzen baduzu, geroago berreskuratu ahal izango duzu.
|
|
195
|
+
Iritziz aldatzen baduzu, geroago berreskuratu ahal izango duzu.na
|
|
195
196
|
export: Esportatu dena
|
|
196
197
|
export-selection: Esportatu hautaketa
|
|
197
198
|
import: Inportatu
|
|
@@ -860,7 +861,7 @@ eu:
|
|
|
860
861
|
index:
|
|
861
862
|
actions: Ekintzak
|
|
862
863
|
badge: Garaikurra
|
|
863
|
-
block: Blokeatu
|
|
864
|
+
block: Blokeatu erabiltzailea
|
|
864
865
|
created_at: Noiz sortua
|
|
865
866
|
name: Izena
|
|
866
867
|
nickname: Ezizena
|
|
@@ -905,7 +906,7 @@ eu:
|
|
|
905
906
|
success: Erakundea zuzen eguneratua.
|
|
906
907
|
organization_appearance:
|
|
907
908
|
edit:
|
|
908
|
-
update:
|
|
909
|
+
update: Onartu
|
|
909
910
|
form:
|
|
910
911
|
colors:
|
|
911
912
|
choose_color: Aukeratu kolore nagusia
|
|
@@ -998,7 +999,7 @@ eu:
|
|
|
998
999
|
submit: Bidali
|
|
999
1000
|
title: Editatu baimenak
|
|
1000
1001
|
options_form:
|
|
1001
|
-
ephemeral_warning: Baimen-metodo hori ahalbidetzeko, <a href="%
|
|
1002
|
+
ephemeral_warning: Baimen-metodo hori ahalbidetzeko, <a href="%{path}"> indarrean dauden baimen guztiak ezeztatu behar dira. Horrela, egiaztatze-gatazkak izateko arriskua murrizten da. Horrelako baimen guztiak automatikoki ezeztatuko dira erakundean, baldin eta metodo hori gehitzen duten aldaketak aurkezten badituzu edo, gehitu ondoren, konfigurazioa aldatzen baduzu.
|
|
1002
1003
|
update:
|
|
1003
1004
|
success: Baimenak behar bezala eguneratuak.
|
|
1004
1005
|
scope_types:
|
|
@@ -1269,7 +1270,7 @@ eu:
|
|
|
1269
1270
|
deleted_component_info: Osagai hau ezabatu ahal izateko, egoera "Argitaratugabea" izan behar da.
|
|
1270
1271
|
trash_management:
|
|
1271
1272
|
restore:
|
|
1272
|
-
invalid: Arazo bat egon da %
|
|
1273
|
+
invalid: Arazo bat egon da %{resource_name} berreskuratzean.
|
|
1273
1274
|
success: "%{resource_name} zuzen berreskuratu da."
|
|
1274
1275
|
soft_delete:
|
|
1275
1276
|
invalid: Arazo bat egon da %{resource_name} ezabatzean.
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -53,6 +53,7 @@ fi-pl:
|
|
|
53
53
|
customize_welcome_notification: Muokkaa tervetuloilmoitusta
|
|
54
54
|
default_locale: Oletuskieli
|
|
55
55
|
description: Kuvaus
|
|
56
|
+
enable_machine_translations: Ota konekäännökset käyttöön
|
|
56
57
|
enable_omnipresent_banner: Näytä kaikkialla näkyvä banneri
|
|
57
58
|
enable_participatory_space_filters: Ota käyttöön osallistumistilan suodattimet
|
|
58
59
|
facebook_handler: Facebook-käsittelijä
|
|
@@ -729,7 +730,7 @@ fi-pl:
|
|
|
729
730
|
title: Piilota
|
|
730
731
|
update_moderation_button: Piilota valitut sisällöt
|
|
731
732
|
unhide:
|
|
732
|
-
title:
|
|
733
|
+
title: unhide
|
|
733
734
|
update_moderation_button: Poista valittujen sisältöjen piilotus
|
|
734
735
|
unreport:
|
|
735
736
|
title: Poista ilmoitus
|
|
@@ -907,6 +908,15 @@ fi-pl:
|
|
|
907
908
|
edit:
|
|
908
909
|
update: Päivitä
|
|
909
910
|
form:
|
|
911
|
+
colors:
|
|
912
|
+
choose_color: Valitse ensisijainen väri
|
|
913
|
+
colors_title: Organisaation värit
|
|
914
|
+
colors_warning_html: Varoitus! Näiden värien muuttaminen voi rikkoa palvelun saavutettavuuden vaatimat kontrastiarvot. Voit tarkastaa kontrastiarvot valitsemillesi väreille <a href="https://webaim.org/resources/contrastchecker">WebAIM kontrastintarkastustyökalulla</a> tai muilla vastaavilla työkaluilla.
|
|
915
|
+
explanation: Tämä työkalu auttaa sinua valitsemaan värimaailman, joka koostuu tasaisesti valituista väriympyrän sävyistä. Näitä värejä käytetään verkkosivuston värimäärityksissä.
|
|
916
|
+
legend_html: Sovelluksen päävärit valitaan <a href="https://www.color-meanings.com/triadic-colors/">kolmiasteisella algoritmilla (triadic)</a>. <i>Toissijainen</i> väri lasketaan automaattisesti ensisijaisen värin ja valitsemasi värikylläisyysarvon perusteella.
|
|
917
|
+
saturation: Värikylläisyys
|
|
918
|
+
title: Värin valinta
|
|
919
|
+
update_suggested_colors: Päivitä ehdotetut värit
|
|
910
920
|
cta_button_path_help_html: 'Voit määrittää, mihin kotisivun toimintopainike (Call To Action) linkkaa. Käytä tässä osoitepolkuja, ei kokonaisia URL-osoitteita. Hyväksyy kirjaimet, numerot, viivat ja kauttaviivat. Arvon on alettava kirjaimella. Toimintopainike näytetään kotisivulla Tervetuloa-tekstin ja kuvauksen välissä. Esimerkki: %{url}'
|
|
911
921
|
cta_button_text_help: Voit korvata toimintopainikkeen (Call to Action) tekstin kotisivulla jokaiselle organisaatiosi kielelle. Mikäli tätä ei ole asetettu, oletusarvoa käytetään. Toimintopainike näytetään kotisivulla Tervetuloa-tekstin ja kuvauksen välissä.
|
|
912
922
|
header_snippets:
|
|
@@ -1333,6 +1343,7 @@ fi-pl:
|
|
|
1333
1343
|
hidden: Piilotettu
|
|
1334
1344
|
hide: Piilota
|
|
1335
1345
|
not_hidden: Näkyvillä
|
|
1346
|
+
parent_hidden: Et voi palauttaa tätä kohdetta näkyviin, koska se on liitetty kohteeseen, joka on edelleen piilotettu.
|
|
1336
1347
|
title: Toiminnot
|
|
1337
1348
|
unhide: unhide
|
|
1338
1349
|
unreport: Poista ilmoitus
|
|
@@ -1359,6 +1370,7 @@ fi-pl:
|
|
|
1359
1370
|
success: Resurssi piilotettu onnistuneesti.
|
|
1360
1371
|
unhide:
|
|
1361
1372
|
invalid: Resurssin irrottamisessa on ollut ongelma.
|
|
1373
|
+
parent_invalid: Kohteen palautus näkyviin epäonnistui. Kohde on liitetty toiseen kohteeseen, joka on piilotettu.
|
|
1362
1374
|
success: Resurssi hylättiin onnistuneesti.
|
|
1363
1375
|
unreport:
|
|
1364
1376
|
invalid: Resurssin raportoinnin poistamisessa tapahtui virhe.
|
data/config/locales/fi.yml
CHANGED
|
@@ -53,6 +53,7 @@ fi:
|
|
|
53
53
|
customize_welcome_notification: Muokkaa tervetuloilmoitusta
|
|
54
54
|
default_locale: Oletuskieli
|
|
55
55
|
description: Kuvaus
|
|
56
|
+
enable_machine_translations: Ota konekäännökset käyttöön
|
|
56
57
|
enable_omnipresent_banner: Näytä kaikkialla näkyvä banneri
|
|
57
58
|
enable_participatory_space_filters: Ota käyttöön osallistumistilan suodattimet
|
|
58
59
|
facebook_handler: Facebook-käsittelijä
|
|
@@ -907,6 +908,15 @@ fi:
|
|
|
907
908
|
edit:
|
|
908
909
|
update: Päivitä
|
|
909
910
|
form:
|
|
911
|
+
colors:
|
|
912
|
+
choose_color: Valitse ensisijainen väri
|
|
913
|
+
colors_title: Organisaation värit
|
|
914
|
+
colors_warning_html: Varoitus! Näiden värien muuttaminen voi rikkoa palvelun saavutettavuuden vaatimat kontrastiarvot. Voit tarkastaa kontrastiarvot valitsemillesi väreille <a href="https://webaim.org/resources/contrastchecker">WebAIM kontrastintarkastustyökalulla</a> tai muilla vastaavilla työkaluilla.
|
|
915
|
+
explanation: Tämä työkalu auttaa sinua valitsemaan värimaailman, joka koostuu tasaisesti valituista väriympyrän sävyistä. Näitä värejä käytetään verkkosivuston värimäärityksissä.
|
|
916
|
+
legend_html: Sovelluksen päävärit valitaan <a href="https://www.color-meanings.com/triadic-colors/">kolmiasteisella algoritmilla (triadic)</a>. <i>Toissijainen</i> väri lasketaan automaattisesti ensisijaisen värin ja valitsemasi värikylläisyysarvon perusteella.
|
|
917
|
+
saturation: Värikylläisyys
|
|
918
|
+
title: Värin valinta
|
|
919
|
+
update_suggested_colors: Päivitä ehdotetut värit
|
|
910
920
|
cta_button_path_help_html: 'Voit määrittää, mihin kotisivun toimintopainike (Call To Action) linkkaa. Käytä tässä osoitepolkuja, ei kokonaisia URL-osoitteita. Hyväksyy kirjaimet, numerot, viivat ja kauttaviivat. Arvon on alettava kirjaimella. Toimintopainike näytetään kotisivulla Tervetuloa-tekstin ja kuvauksen välissä. Esimerkki: %{url}'
|
|
911
921
|
cta_button_text_help: Voit korvata toimintopainikkeen (Call to Action) tekstin kotisivulla jokaiselle organisaatiosi kielelle. Mikäli tätä ei ole asetettu, oletusarvoa käytetään. Toimintopainike näytetään kotisivulla Tervetuloa-tekstin ja kuvauksen välissä.
|
|
912
922
|
header_snippets:
|
|
@@ -1333,6 +1343,7 @@ fi:
|
|
|
1333
1343
|
hidden: Piilotettu
|
|
1334
1344
|
hide: Piilota
|
|
1335
1345
|
not_hidden: Näkyvillä
|
|
1346
|
+
parent_hidden: Et voi palauttaa tätä kohdetta näkyviin, koska se on liitetty kohteeseen, joka on edelleen piilotettu.
|
|
1336
1347
|
title: Toiminnot
|
|
1337
1348
|
unhide: Poista piilotus
|
|
1338
1349
|
unreport: Poista ilmoitus
|
|
@@ -1359,6 +1370,7 @@ fi:
|
|
|
1359
1370
|
success: Resurssin piilotus onnistui.
|
|
1360
1371
|
unhide:
|
|
1361
1372
|
invalid: Kohteen piilotuksen poisto epäonnistui.
|
|
1373
|
+
parent_invalid: Kohteen palautus näkyviin epäonnistui. Kohde on liitetty toiseen kohteeseen, joka on piilotettu.
|
|
1362
1374
|
success: Resurssin piilotuksen poistaminen onnistui.
|
|
1363
1375
|
unreport:
|
|
1364
1376
|
invalid: Kohteen ilmoituksen poisto epäonnistui.
|