decidim-admin 0.30.1 → 0.30.2
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/config/locales/ar.yml +7 -1
- data/config/locales/bg.yml +9 -1
- data/config/locales/ca-IT.yml +2 -2
- data/config/locales/ca.yml +2 -2
- data/config/locales/cs.yml +3 -3
- data/config/locales/de.yml +5 -5
- data/config/locales/el.yml +8 -0
- data/config/locales/es-MX.yml +3 -3
- data/config/locales/es-PY.yml +3 -3
- data/config/locales/es.yml +3 -3
- data/config/locales/eu.yml +6 -6
- data/config/locales/fi-plain.yml +12 -1
- data/config/locales/fi.yml +11 -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 +188 -1
- data/config/locales/ja.yml +12 -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: 58180bc41289372789171b2ef17d9c19f180706c0ef14abfec6f0138c1023096
|
4
|
+
data.tar.gz: 883dcbb55f9e176190864dbd6c9ae0bc7eb6207e03d0e4c9457b9c1a72a555ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 649fe2837003d50b0cc6f53467053e301e93b7d59fb66609f190f231c132ee7534fb6a51c2186ddb561e2f86ad17c50e1bc5199d501083c68cc67f1a81a9f088
|
7
|
+
data.tar.gz: 30ff7dfd91caf0049cc259428887152fc1a14db7a79ad7b2fbe57fd1d24e1d44b69d357fe746fb81679cf38dea1cb2b27eb72581dff6827f21fe5524276d39cc
|
@@ -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
|
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
@@ -700,7 +700,7 @@ ca-IT:
|
|
700
700
|
title: Desbloquejar
|
701
701
|
update_moderated_user_button: Desbloquejar usuàries
|
702
702
|
unreport:
|
703
|
-
title: Desfer
|
703
|
+
title: Desfer denúncia
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
706
706
|
title: Accions
|
@@ -732,7 +732,7 @@ ca-IT:
|
|
732
732
|
title: Tornar a mostrar
|
733
733
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
734
734
|
unreport:
|
735
|
-
title: Desfer
|
735
|
+
title: Desfer denúncia
|
736
736
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
737
737
|
cancel: Cancel·lar
|
738
738
|
selected: seleccionades
|
data/config/locales/ca.yml
CHANGED
@@ -700,7 +700,7 @@ ca:
|
|
700
700
|
title: Desbloquejar
|
701
701
|
update_moderated_user_button: Desbloquejar usuàries
|
702
702
|
unreport:
|
703
|
-
title: Desfer
|
703
|
+
title: Desfer denúncia
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Desfer la denúncia a les usuàries
|
706
706
|
title: Accions
|
@@ -732,7 +732,7 @@ ca:
|
|
732
732
|
title: Tornar a mostrar
|
733
733
|
update_moderation_button: Tornar a mostrar els continguts seleccionats
|
734
734
|
unreport:
|
735
|
-
title: Desfer
|
735
|
+
title: Desfer denúncia
|
736
736
|
update_moderation_button: Desfer la denúncia dels continguts seleccionats
|
737
737
|
cancel: Cancel·lar
|
738
738
|
selected: seleccionades
|
data/config/locales/cs.yml
CHANGED
@@ -70,7 +70,7 @@ cs:
|
|
70
70
|
highlighted_content_banner_enabled: Zobrazit zvýrazněný banner obsahu
|
71
71
|
highlighted_content_banner_image: Obrázek
|
72
72
|
highlighted_content_banner_short_description: Stručný popis
|
73
|
-
highlighted_content_banner_title:
|
73
|
+
highlighted_content_banner_title: Název
|
74
74
|
host: Hostitel
|
75
75
|
instagram_handler: Instagram handler
|
76
76
|
logo: Logo
|
@@ -739,7 +739,7 @@ cs:
|
|
739
739
|
title: Skrýt
|
740
740
|
update_moderation_button: Skrýt vybrané zdroje
|
741
741
|
unhide:
|
742
|
-
title:
|
742
|
+
title: Odkrýt
|
743
743
|
update_moderation_button: Odkrýt vybrané zdroje
|
744
744
|
unreport:
|
745
745
|
title: Zrušit nahlášení
|
@@ -870,7 +870,7 @@ cs:
|
|
870
870
|
index:
|
871
871
|
actions: Akce
|
872
872
|
badge: Odznak
|
873
|
-
block:
|
873
|
+
block: Blokovat uživatele
|
874
874
|
created_at: Vytvořeno na
|
875
875
|
name: Název
|
876
876
|
nickname: Přezdívka
|
data/config/locales/de.yml
CHANGED
@@ -524,7 +524,7 @@ de:
|
|
524
524
|
and: und
|
525
525
|
data_errors:
|
526
526
|
duplicate_headers:
|
527
|
-
detail: Bitte überprüfen Sie, dass die Datei
|
527
|
+
detail: Bitte überprüfen Sie, dass die Datei die benötigten Spalten oder Kopfzeilen nur einmal enthält.
|
528
528
|
message:
|
529
529
|
one: Spalte %{columns} duplizieren.
|
530
530
|
other: Spalten %{columns} duplizieren.
|
@@ -700,7 +700,7 @@ de:
|
|
700
700
|
title: Blockierung aufheben
|
701
701
|
update_moderated_user_button: Blockierung aufheben
|
702
702
|
unreport:
|
703
|
-
title: Meldung
|
703
|
+
title: Meldung Rückgängig machen
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Gemeldete Teilnehmende zurückweisen
|
706
706
|
title: Aktionen
|
@@ -732,7 +732,7 @@ de:
|
|
732
732
|
title: Einblenden
|
733
733
|
update_moderation_button: Ausgewählte Ressourcen einblenden
|
734
734
|
unreport:
|
735
|
-
title: Meldung
|
735
|
+
title: Meldung Rückgängig machen
|
736
736
|
update_moderation_button: Meldung ausgewählter Ressourcen aufheben
|
737
737
|
cancel: Abbrechen
|
738
738
|
selected: ausgewählt
|
@@ -871,7 +871,7 @@ de:
|
|
871
871
|
reports: Berichte
|
872
872
|
show_email: E-Mail-Adresse anzeigen
|
873
873
|
status: Status
|
874
|
-
unblock: Blockierung des
|
874
|
+
unblock: Blockierung des Benutzers aufheben
|
875
875
|
unofficialize: Nicht offiziell
|
876
876
|
new:
|
877
877
|
badge: Offizielles Abzeichen
|
@@ -941,7 +941,7 @@ de:
|
|
941
941
|
participatory_space_private_users:
|
942
942
|
create:
|
943
943
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
944
|
-
success:
|
944
|
+
success: Ein privater Zugriff für diesen Beteiligungsbereich wurde erfolgreich für das Konto erstellt.
|
945
945
|
destroy:
|
946
946
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
947
947
|
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/es-MX.yml
CHANGED
@@ -700,7 +700,7 @@ es-MX:
|
|
700
700
|
title: Desbloquear
|
701
701
|
update_moderated_user_button: Desbloquear usuarias
|
702
702
|
unreport:
|
703
|
-
title: Deshacer
|
703
|
+
title: Deshacer denuncia
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
706
706
|
title: Acciones
|
@@ -729,10 +729,10 @@ es-MX:
|
|
729
729
|
title: Esconder
|
730
730
|
update_moderation_button: Ocultar los contenidos seleccionados
|
731
731
|
unhide:
|
732
|
-
title:
|
732
|
+
title: Ocultar
|
733
733
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
734
734
|
unreport:
|
735
|
-
title: Deshacer
|
735
|
+
title: Deshacer denuncia
|
736
736
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
737
737
|
cancel: Cancelar
|
738
738
|
selected: seleccionadas
|
data/config/locales/es-PY.yml
CHANGED
@@ -700,7 +700,7 @@ es-PY:
|
|
700
700
|
title: Desbloquear
|
701
701
|
update_moderated_user_button: Desbloquear usuarias
|
702
702
|
unreport:
|
703
|
-
title: Deshacer
|
703
|
+
title: Deshacer denuncia
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
706
706
|
title: Acciones
|
@@ -729,10 +729,10 @@ es-PY:
|
|
729
729
|
title: Esconder
|
730
730
|
update_moderation_button: Ocultar los contenidos seleccionados
|
731
731
|
unhide:
|
732
|
-
title:
|
732
|
+
title: Ocultar
|
733
733
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
734
734
|
unreport:
|
735
|
-
title: Deshacer
|
735
|
+
title: Deshacer denuncia
|
736
736
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
737
737
|
cancel: Cancelar
|
738
738
|
selected: seleccionadas
|
data/config/locales/es.yml
CHANGED
@@ -700,7 +700,7 @@ es:
|
|
700
700
|
title: Desbloquear
|
701
701
|
update_moderated_user_button: Desbloquear usuarias
|
702
702
|
unreport:
|
703
|
-
title: Deshacer
|
703
|
+
title: Deshacer denuncia
|
704
704
|
ignore:
|
705
705
|
update_moderated_user_button: Deshacer la denuncia a las usuarias
|
706
706
|
title: Acciones
|
@@ -729,10 +729,10 @@ es:
|
|
729
729
|
title: Esconder
|
730
730
|
update_moderation_button: Ocultar los contenidos seleccionados
|
731
731
|
unhide:
|
732
|
-
title:
|
732
|
+
title: Vuelve a mostrar
|
733
733
|
update_moderation_button: Volver a mostrar los contenidos seleccionados
|
734
734
|
unreport:
|
735
|
-
title: Deshacer
|
735
|
+
title: Deshacer denuncia
|
736
736
|
update_moderation_button: Deshacer la denuncia de los contenidos seleccionados
|
737
737
|
cancel: Cancelar
|
738
738
|
selected: seleccionadas
|
data/config/locales/eu.yml
CHANGED
@@ -189,9 +189,9 @@ eu:
|
|
189
189
|
Ziur zaude osagai hau ezabatu nahi duzula?
|
190
190
|
Osagai honek honako hauek ditu:
|
191
191
|
<ul class="list-disc ml-6 my-2">
|
192
|
-
<li class="font-bold">%{
|
192
|
+
<li class="font-bold">%{resources_count} resources</li>
|
193
193
|
</ul>
|
194
|
-
Iritziz aldatzen baduzu, geroago berreskuratu ahal izango duzu.
|
194
|
+
Iritziz aldatzen baduzu, geroago berreskuratu ahal izango duzu.na
|
195
195
|
export: Esportatu dena
|
196
196
|
export-selection: Esportatu hautaketa
|
197
197
|
import: Inportatu
|
@@ -860,7 +860,7 @@ eu:
|
|
860
860
|
index:
|
861
861
|
actions: Ekintzak
|
862
862
|
badge: Garaikurra
|
863
|
-
block: Blokeatu
|
863
|
+
block: Blokeatu erabiltzailea
|
864
864
|
created_at: Noiz sortua
|
865
865
|
name: Izena
|
866
866
|
nickname: Ezizena
|
@@ -905,7 +905,7 @@ eu:
|
|
905
905
|
success: Erakundea zuzen eguneratua.
|
906
906
|
organization_appearance:
|
907
907
|
edit:
|
908
|
-
update:
|
908
|
+
update: Onartu
|
909
909
|
form:
|
910
910
|
colors:
|
911
911
|
choose_color: Aukeratu kolore nagusia
|
@@ -998,7 +998,7 @@ eu:
|
|
998
998
|
submit: Bidali
|
999
999
|
title: Editatu baimenak
|
1000
1000
|
options_form:
|
1001
|
-
ephemeral_warning: Baimen-metodo hori ahalbidetzeko, <a href="%
|
1001
|
+
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
1002
|
update:
|
1003
1003
|
success: Baimenak behar bezala eguneratuak.
|
1004
1004
|
scope_types:
|
@@ -1269,7 +1269,7 @@ eu:
|
|
1269
1269
|
deleted_component_info: Osagai hau ezabatu ahal izateko, egoera "Argitaratugabea" izan behar da.
|
1270
1270
|
trash_management:
|
1271
1271
|
restore:
|
1272
|
-
invalid: Arazo bat egon da %
|
1272
|
+
invalid: Arazo bat egon da %{resource_name} berreskuratzean.
|
1273
1273
|
success: "%{resource_name} zuzen berreskuratu da."
|
1274
1274
|
soft_delete:
|
1275
1275
|
invalid: Arazo bat egon da %{resource_name} ezabatzean.
|
data/config/locales/fi-plain.yml
CHANGED
@@ -729,7 +729,7 @@ fi-pl:
|
|
729
729
|
title: Piilota
|
730
730
|
update_moderation_button: Piilota valitut sisällöt
|
731
731
|
unhide:
|
732
|
-
title:
|
732
|
+
title: unhide
|
733
733
|
update_moderation_button: Poista valittujen sisältöjen piilotus
|
734
734
|
unreport:
|
735
735
|
title: Poista ilmoitus
|
@@ -907,6 +907,15 @@ fi-pl:
|
|
907
907
|
edit:
|
908
908
|
update: Päivitä
|
909
909
|
form:
|
910
|
+
colors:
|
911
|
+
choose_color: Valitse ensisijainen väri
|
912
|
+
colors_title: Organisaation värit
|
913
|
+
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.
|
914
|
+
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ä.
|
915
|
+
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.
|
916
|
+
saturation: Värikylläisyys
|
917
|
+
title: Värin valinta
|
918
|
+
update_suggested_colors: Päivitä ehdotetut värit
|
910
919
|
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
920
|
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
921
|
header_snippets:
|
@@ -1333,6 +1342,7 @@ fi-pl:
|
|
1333
1342
|
hidden: Piilotettu
|
1334
1343
|
hide: Piilota
|
1335
1344
|
not_hidden: Näkyvillä
|
1345
|
+
parent_hidden: Et voi palauttaa tätä kohdetta näkyviin, koska se on liitetty kohteeseen, joka on edelleen piilotettu.
|
1336
1346
|
title: Toiminnot
|
1337
1347
|
unhide: unhide
|
1338
1348
|
unreport: Poista ilmoitus
|
@@ -1359,6 +1369,7 @@ fi-pl:
|
|
1359
1369
|
success: Resurssi piilotettu onnistuneesti.
|
1360
1370
|
unhide:
|
1361
1371
|
invalid: Resurssin irrottamisessa on ollut ongelma.
|
1372
|
+
parent_invalid: Kohteen palautus näkyviin epäonnistui. Kohde on liitetty toiseen kohteeseen, joka on piilotettu.
|
1362
1373
|
success: Resurssi hylättiin onnistuneesti.
|
1363
1374
|
unreport:
|
1364
1375
|
invalid: Resurssin raportoinnin poistamisessa tapahtui virhe.
|
data/config/locales/fi.yml
CHANGED
@@ -907,6 +907,15 @@ fi:
|
|
907
907
|
edit:
|
908
908
|
update: Päivitä
|
909
909
|
form:
|
910
|
+
colors:
|
911
|
+
choose_color: Valitse ensisijainen väri
|
912
|
+
colors_title: Organisaation värit
|
913
|
+
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.
|
914
|
+
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ä.
|
915
|
+
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.
|
916
|
+
saturation: Värikylläisyys
|
917
|
+
title: Värin valinta
|
918
|
+
update_suggested_colors: Päivitä ehdotetut värit
|
910
919
|
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
920
|
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
921
|
header_snippets:
|
@@ -1333,6 +1342,7 @@ fi:
|
|
1333
1342
|
hidden: Piilotettu
|
1334
1343
|
hide: Piilota
|
1335
1344
|
not_hidden: Näkyvillä
|
1345
|
+
parent_hidden: Et voi palauttaa tätä kohdetta näkyviin, koska se on liitetty kohteeseen, joka on edelleen piilotettu.
|
1336
1346
|
title: Toiminnot
|
1337
1347
|
unhide: Poista piilotus
|
1338
1348
|
unreport: Poista ilmoitus
|
@@ -1359,6 +1369,7 @@ fi:
|
|
1359
1369
|
success: Resurssin piilotus onnistui.
|
1360
1370
|
unhide:
|
1361
1371
|
invalid: Kohteen piilotuksen poisto epäonnistui.
|
1372
|
+
parent_invalid: Kohteen palautus näkyviin epäonnistui. Kohde on liitetty toiseen kohteeseen, joka on piilotettu.
|
1362
1373
|
success: Resurssin piilotuksen poistaminen onnistui.
|
1363
1374
|
unreport:
|
1364
1375
|
invalid: Kohteen ilmoituksen poisto epäonnistui.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -932,7 +932,7 @@ fr-CA:
|
|
932
932
|
external_domain:
|
933
933
|
down: Descendre
|
934
934
|
external_domain: Domaine externe
|
935
|
-
remove:
|
935
|
+
remove: Supprimer
|
936
936
|
up: Monter
|
937
937
|
form:
|
938
938
|
add: Ajouter à la liste autorisée
|
@@ -1140,6 +1140,12 @@ fr-CA:
|
|
1140
1140
|
edit: Modifier la taxonomie
|
1141
1141
|
new: Nouvelle taxonomie
|
1142
1142
|
count: Ressources associées
|
1143
|
+
edit:
|
1144
|
+
update: Mettre à jour
|
1145
|
+
filters:
|
1146
|
+
search_placeholder: Rechercher
|
1147
|
+
index:
|
1148
|
+
new_taxonomy: Nouvelle taxonomie
|
1143
1149
|
total_filters: Filtres
|
1144
1150
|
taxonomy_filters:
|
1145
1151
|
breadcrumb:
|
@@ -1174,6 +1180,7 @@ fr-CA:
|
|
1174
1180
|
save: Enregistrer
|
1175
1181
|
show:
|
1176
1182
|
items_count: "%{count} éléments"
|
1183
|
+
remove: Supprimer
|
1177
1184
|
taxonomies_select:
|
1178
1185
|
filters: Filtres
|
1179
1186
|
titles:
|
data/config/locales/fr.yml
CHANGED
@@ -932,7 +932,7 @@ fr:
|
|
932
932
|
external_domain:
|
933
933
|
down: Descendre
|
934
934
|
external_domain: Domaine externe
|
935
|
-
remove:
|
935
|
+
remove: Supprimer
|
936
936
|
up: Monter
|
937
937
|
form:
|
938
938
|
add: Ajouter à la liste autorisée
|
@@ -1140,6 +1140,12 @@ fr:
|
|
1140
1140
|
edit: Modifier la taxonomie
|
1141
1141
|
new: Nouvelle taxonomie
|
1142
1142
|
count: Ressources associées
|
1143
|
+
edit:
|
1144
|
+
update: Mettre à jour
|
1145
|
+
filters:
|
1146
|
+
search_placeholder: Rechercher
|
1147
|
+
index:
|
1148
|
+
new_taxonomy: Nouvelle taxonomie
|
1143
1149
|
total_filters: Filtres
|
1144
1150
|
taxonomy_filters:
|
1145
1151
|
breadcrumb:
|
@@ -1174,6 +1180,7 @@ fr:
|
|
1174
1180
|
save: Enregistrer
|
1175
1181
|
show:
|
1176
1182
|
items_count: "%{count} éléments"
|
1183
|
+
remove: Supprimer
|
1177
1184
|
taxonomies_select:
|
1178
1185
|
filters: Filtres
|
1179
1186
|
titles:
|
data/config/locales/ga-IE.yml
CHANGED
@@ -241,6 +241,9 @@ ga:
|
|
241
241
|
moderated_users:
|
242
242
|
index:
|
243
243
|
actions:
|
244
|
+
bulk_actions:
|
245
|
+
unreport:
|
246
|
+
title: Cuir ar ceal tuairisc
|
244
247
|
title: Gníomhartha
|
245
248
|
unreport: Cuir ar ceal tuairisc
|
246
249
|
name: Ainm
|
@@ -252,6 +255,12 @@ ga:
|
|
252
255
|
tabs:
|
253
256
|
blocked: Blocáilte
|
254
257
|
moderations:
|
258
|
+
index:
|
259
|
+
actions:
|
260
|
+
unhide:
|
261
|
+
title: Nocht
|
262
|
+
unreport:
|
263
|
+
title: Cuir ar ceal tuairisc
|
255
264
|
report:
|
256
265
|
reasons:
|
257
266
|
spam: Turscar
|
data/config/locales/gl.yml
CHANGED
@@ -534,6 +534,9 @@ gl:
|
|
534
534
|
index:
|
535
535
|
actions:
|
536
536
|
block: Bloquear usuario
|
537
|
+
bulk_actions:
|
538
|
+
unreport:
|
539
|
+
title: Desfacer denuncia
|
537
540
|
title: Accións
|
538
541
|
unblock: Desbloquear usuario
|
539
542
|
unreport: Desfacer denuncia
|
@@ -550,6 +553,12 @@ gl:
|
|
550
553
|
blocked: Bloqueados
|
551
554
|
unblocked: Sen bloquear
|
552
555
|
moderations:
|
556
|
+
index:
|
557
|
+
actions:
|
558
|
+
unhide:
|
559
|
+
title: Unhide
|
560
|
+
unreport:
|
561
|
+
title: Desfacer denuncia
|
553
562
|
report:
|
554
563
|
reasons:
|
555
564
|
does_not_belong: Non pertence
|
data/config/locales/hu.yml
CHANGED
@@ -641,6 +641,9 @@ hu:
|
|
641
641
|
index:
|
642
642
|
actions:
|
643
643
|
block: Felhasználó tiltása
|
644
|
+
bulk_actions:
|
645
|
+
unreport:
|
646
|
+
title: Jelentés visszavonása
|
644
647
|
title: Műveletek
|
645
648
|
unblock: Felhasználó feloldása
|
646
649
|
unreport: Jelentés visszavonása
|
@@ -659,6 +662,11 @@ hu:
|
|
659
662
|
unblocked: Nincs letiltva
|
660
663
|
moderations:
|
661
664
|
index:
|
665
|
+
actions:
|
666
|
+
unhide:
|
667
|
+
title: Felfedés
|
668
|
+
unreport:
|
669
|
+
title: Jelentés visszavonása
|
662
670
|
title: Jelentett tartalom
|
663
671
|
report:
|
664
672
|
reasons:
|
@@ -762,7 +770,7 @@ hu:
|
|
762
770
|
reports: Jelentések
|
763
771
|
show_email: E-mail cím megjelenítése
|
764
772
|
status: Állapot
|
765
|
-
unblock: Felhasználó
|
773
|
+
unblock: Felhasználó feloldása
|
766
774
|
unofficialize: Hivatalossá tétel visszavonása
|
767
775
|
new:
|
768
776
|
badge: A hivatalosság jelvénye
|
@@ -948,7 +956,7 @@ hu:
|
|
948
956
|
authorization_workflows: Ellenőrzési módszerek
|
949
957
|
dashboard: Vezérlőpult
|
950
958
|
edit_external_domains: Engedélyezett külső domainek listája
|
951
|
-
edit_landing_page:
|
959
|
+
edit_landing_page: Oldal tartalom
|
952
960
|
edit_organization_appearance: Honlap megjelenésének szerkesztése
|
953
961
|
impersonatable_users: Kezelhető résztvevők
|
954
962
|
impersonations: Résztvevők kezelése
|