decidim-admin 0.30.0 → 0.30.1
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/impersonations_controller.rb +1 -1
- data/app/packs/src/decidim/admin/global_moderations.js +21 -18
- data/app/packs/src/decidim/admin/managed_moderated_users.js +21 -19
- data/app/permissions/decidim/admin/permissions.rb +0 -2
- data/config/locales/ar.yml +0 -2
- data/config/locales/bg.yml +0 -9
- data/config/locales/ca-IT.yml +3 -3
- data/config/locales/ca.yml +3 -3
- data/config/locales/cs.yml +1 -1
- data/config/locales/el.yml +0 -9
- data/config/locales/es-MX.yml +4 -4
- data/config/locales/es-PY.yml +4 -4
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +6 -6
- data/config/locales/fi-plain.yml +0 -9
- data/config/locales/fi.yml +0 -9
- data/config/locales/fr-CA.yml +2 -2
- data/config/locales/fr.yml +2 -2
- data/config/locales/gl.yml +1 -4
- data/config/locales/hu.yml +1 -10
- data/config/locales/id-ID.yml +1 -2
- data/config/locales/is-IS.yml +1 -0
- data/config/locales/it.yml +0 -9
- data/config/locales/ja.yml +0 -9
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -3
- data/config/locales/lb.yml +0 -2
- data/config/locales/lt.yml +0 -9
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +1 -4
- data/config/locales/no.yml +0 -3
- data/config/locales/pl.yml +0 -9
- data/config/locales/pt-BR.yml +0 -9
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -3
- data/config/locales/ru.yml +1 -0
- data/config/locales/sk.yml +1 -2
- data/config/locales/sl.yml +0 -4
- data/config/locales/sq-AL.yml +2 -9
- data/config/locales/sv.yml +9 -7
- data/config/locales/tr-TR.yml +324 -3
- data/config/locales/uk.yml +1 -0
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +0 -3
- 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: 5d9a36f20b03c890e4ffaaa64ed9d80deb07ef73ee4f550d950840c08623a125
|
4
|
+
data.tar.gz: 5eaccb3a7f2327f244c9a8b8b71bc4bd923cf763b1d63ed5ddf7fd4d76f69e67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 939bd69210abf20272825c2b7b7d5a7089727e32fb7ec0667adb338e2d8dec379150ddb54b24a48fdb3a2aba3d02ce8c52702071394f8a40f2d126245f24826f
|
7
|
+
data.tar.gz: 34c44b4ef00e560f6d71ab6f5476df3d7fb8387962ed06b92d877d51163d7b13f9d22919d406a550cd745c04fdebd81c5968c376171d92ebc2330e4849217f0e
|
@@ -99,7 +99,7 @@ module Decidim
|
|
99
99
|
managed: true,
|
100
100
|
name: params.dig(:impersonate_user, :name)
|
101
101
|
) do |u|
|
102
|
-
u.nickname = Decidim::UserBaseEntity.nicknamize(u.name,
|
102
|
+
u.nickname = Decidim::UserBaseEntity.nicknamize(u.name, current_organization.id)
|
103
103
|
u.admin = false
|
104
104
|
u.tos_agreement = true
|
105
105
|
end
|
@@ -108,26 +108,29 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
108
108
|
});
|
109
109
|
|
110
110
|
// select all checkboxes
|
111
|
-
document.
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
row.
|
111
|
+
const moderatedContentList = document.getElementById("moderations_bulk");
|
112
|
+
if (moderatedContentList !== null) {
|
113
|
+
moderatedContentList.addEventListener("change", function () {
|
114
|
+
const isChecked = this.checked;
|
115
|
+
const checkboxes = document.querySelectorAll(".js-check-all-moderations");
|
116
|
+
|
117
|
+
checkboxes.forEach((checkbox) => {
|
118
|
+
checkbox.checked = isChecked;
|
119
|
+
const row = checkbox.closest("tr");
|
120
|
+
if (row) {
|
121
|
+
row.classList.toggle("selected", isChecked);
|
122
|
+
}
|
123
|
+
});
|
124
|
+
|
125
|
+
if (isChecked) {
|
126
|
+
showBulkActionsButton();
|
127
|
+
} else {
|
128
|
+
hideBulkActionsButton();
|
120
129
|
}
|
121
|
-
});
|
122
130
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
hideBulkActionsButton();
|
127
|
-
}
|
128
|
-
|
129
|
-
selectedModerationsCountUpdate();
|
130
|
-
});
|
131
|
+
selectedModerationsCountUpdate();
|
132
|
+
});
|
133
|
+
}
|
131
134
|
|
132
135
|
// moderation checkbox change
|
133
136
|
document.querySelector(".table-list").addEventListener("change", (event) => {
|
@@ -108,27 +108,29 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
108
108
|
});
|
109
109
|
|
110
110
|
// Select all checkboxes
|
111
|
-
document.
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
row.
|
111
|
+
const moderatedUsersList = document.getElementById("moderated_users_bulk");
|
112
|
+
if (moderatedUsersList !== null) {
|
113
|
+
moderatedUsersList.addEventListener("change", function () {
|
114
|
+
const isChecked = this.checked;
|
115
|
+
const checkboxes = document.querySelectorAll(".js-check-all-moderated_users");
|
116
|
+
|
117
|
+
checkboxes.forEach((checkbox) => {
|
118
|
+
checkbox.checked = isChecked;
|
119
|
+
const row = checkbox.closest("tr");
|
120
|
+
if (row) {
|
121
|
+
row.classList.toggle("selected", isChecked);
|
122
|
+
}
|
123
|
+
});
|
124
|
+
|
125
|
+
if (isChecked) {
|
126
|
+
showBulkActionsButton();
|
127
|
+
} else {
|
128
|
+
hideBulkActionsButton();
|
120
129
|
}
|
121
|
-
});
|
122
|
-
|
123
|
-
if (isChecked) {
|
124
|
-
showBulkActionsButton();
|
125
|
-
} else {
|
126
|
-
hideBulkActionsButton();
|
127
|
-
}
|
128
|
-
|
129
|
-
selectedModeratedUsersCountUpdate();
|
130
|
-
});
|
131
130
|
|
131
|
+
selectedModeratedUsersCountUpdate();
|
132
|
+
});
|
133
|
+
}
|
132
134
|
// moderated users checkbox change
|
133
135
|
document.querySelector(".table-list").addEventListener("change", (event) => {
|
134
136
|
if (!event.target.matches(".js-check-all-moderated_users")) {
|
data/config/locales/ar.yml
CHANGED
@@ -698,8 +698,6 @@ ar:
|
|
698
698
|
edit:
|
699
699
|
update: تحديث
|
700
700
|
form:
|
701
|
-
colors:
|
702
|
-
colors_title: ألوان المنظمة
|
703
701
|
cta_button_text_help: يمكنك الكتابة فوق نص زر Call To Action في الصفحة الرئيسية لكل لغة متاحة في مؤسستك. إذا لم يتم تعيينها ، سيتم استخدام القيمة الافتراضية. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف.
|
704
702
|
homepage_appearance_title: تحرير مظهر الصفحة الرئيسية
|
705
703
|
homepage_highlighted_content_banner_title: لافتة المحتوى الراقي
|
data/config/locales/bg.yml
CHANGED
@@ -819,15 +819,6 @@ bg:
|
|
819
819
|
edit:
|
820
820
|
update: Актуализация
|
821
821
|
form:
|
822
|
-
colors:
|
823
|
-
choose_color: Изберете основен цвят
|
824
|
-
colors_title: Цветове на организацията
|
825
|
-
colors_warning_html: Внимание! Промяната на тези цветове може да наруши контрастите на достъпността. Можете да проверите контраста на Вашия избор с <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> или други подобни инструменти.
|
826
|
-
explanation: Този инструмент ви помага да изберете цветова схема, съставена от нюанси, разположени на еднакво разстояние около цветното колело, която ще се използва в уебсайта на организацията.
|
827
|
-
legend_html: Основни цветове на приложението, базирани на <a href="https://www.color-meanings.com/triadic-colors/">Триаден алгоритъм</a>. <i>Вторичният</i> цвят се изчислява автоматично от основния цвят и наситеността, която сте избрали.
|
828
|
-
saturation: Наситеност
|
829
|
-
title: Палитра
|
830
|
-
update_suggested_colors: Обнови предложените цветове
|
831
822
|
cta_button_path_help_html: 'Можете да презапишете къде да води бутонът, призоваващ към действие, на началната страница. Тук използвайте частични пътища, а не пълни URL адреси. Допуска се използването на букви, цифри, тирета, наклонени черти и пътят трябва да започва с буква. Бутонът, призоваващ към действие, се показва на началната страница между текста за добре дошли и описанието. Пример: %{url}'
|
832
823
|
cta_button_text_help: Можете да презапишете текста на бутона, призоваващ към действие, в началната страница за всеки наличен език във вашата организация. Ако не е зададено, ще се използва стойността по подразбиране. Бутонът, призоваващ към действие, се показва на началната страница между текста за добре дошли и описанието.
|
833
824
|
header_snippets:
|
data/config/locales/ca-IT.yml
CHANGED
@@ -911,11 +911,11 @@ ca-IT:
|
|
911
911
|
choose_color: Triar un color primari
|
912
912
|
colors_title: Colors de l'organització
|
913
913
|
colors_warning_html: Advertència! Canviant aquests colors pot trencar l'accessibilitat dels contrasts. Pots comprovar el contrast de la teva selecció a <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> o amb altres eines similars.
|
914
|
-
explanation: Aquesta eina
|
915
|
-
legend_html: Colors principals de l'aplicació, basats en l'<a href="https://www.color-meanings.com/triadic-colors/">algoritme
|
914
|
+
explanation: Aquesta eina us ajuda a triar un esquema de colors, compost per tons igualment espaiats al voltant de la roda cromàtica, que s'utilitzarà al lloc web de l'organització.
|
915
|
+
legend_html: Colors principals de l'aplicació, basats en l'<a href="https://www.color-meanings.com/triadic-colors/">algoritme Triàdic</a>. El color <i>secundari</i> es calcula automàticament a partir del color primari i de la saturació que has triat.
|
916
916
|
saturation: Saturació
|
917
917
|
title: Selector de color
|
918
|
-
update_suggested_colors: Actualitzar als colors
|
918
|
+
update_suggested_colors: Actualitzar als colors recomanats
|
919
919
|
cta_button_path_help_html: 'Pots redirigir la direcció on enllaça el Botó d''Acció principal de la pàgina d''inici on desitgis. Utilitza rutes parcials, no URLs completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. El Botó d''Acció es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
|
920
920
|
cta_button_text_help: Pots sobreescriure el text del botó d'acció principal a la pàgina d'inici per cada idioma disponible a la teva organització. Si no s'omple, s'utilitzarà el valor predeterminat. El botó d'acció principal es mostra a la pàgina d'inici entre el text de benvinguda i la descripció.
|
921
921
|
header_snippets:
|
data/config/locales/ca.yml
CHANGED
@@ -911,11 +911,11 @@ ca:
|
|
911
911
|
choose_color: Triar un color primari
|
912
912
|
colors_title: Colors de l'organització
|
913
913
|
colors_warning_html: Advertència! Canviant aquests colors pot trencar l'accessibilitat dels contrasts. Pots comprovar el contrast de la teva selecció a <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> o amb altres eines similars.
|
914
|
-
explanation: Aquesta eina
|
915
|
-
legend_html: Colors principals de l'aplicació, basats en l'<a href="https://www.color-meanings.com/triadic-colors/">algoritme
|
914
|
+
explanation: Aquesta eina us ajuda a triar un esquema de colors, compost per tons igualment espaiats al voltant de la roda cromàtica, que s'utilitzarà al lloc web de l'organització.
|
915
|
+
legend_html: Colors principals de l'aplicació, basats en l'<a href="https://www.color-meanings.com/triadic-colors/">algoritme Triàdic</a>. El color <i>secundari</i> es calcula automàticament a partir del color primari i de la saturació que has triat.
|
916
916
|
saturation: Saturació
|
917
917
|
title: Selector de color
|
918
|
-
update_suggested_colors: Actualitzar als colors
|
918
|
+
update_suggested_colors: Actualitzar als colors recomanats
|
919
919
|
cta_button_path_help_html: 'Pots redirigir la direcció on enllaça el Botó d''Acció principal de la pàgina d''inici on desitgis. Utilitza rutes parcials, no URLs completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. El Botó d''Acció es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
|
920
920
|
cta_button_text_help: Pots sobreescriure el text del botó d'acció principal a la pàgina d'inici per cada idioma disponible a la teva organització. Si no s'omple, s'utilitzarà el valor predeterminat. El botó d'acció principal es mostra a la pàgina d'inici entre el text de benvinguda i la descripció.
|
921
921
|
header_snippets:
|
data/config/locales/cs.yml
CHANGED
@@ -919,7 +919,7 @@ cs:
|
|
919
919
|
form:
|
920
920
|
colors:
|
921
921
|
choose_color: Vyberte hlavní barvu
|
922
|
-
colors_title:
|
922
|
+
colors_title: Barvy organizace
|
923
923
|
colors_warning_html: Varování! Změna těchto barev může narušit kontrasty přístupnosti. Můžete zkontrolovat kontrast výběru s <a href="%{link}">kontrolou kontrastu WebAIM Contrast Checker</a> nebo jinými podobnými nástroji.
|
924
924
|
explanation: Tento nástroj vám pomůže vybrat barevné schéma skládající se z odstínů rovnoměrně rozložených kolem barevného kruhového spektra, který bude použit na internetových stránkách organizace.
|
925
925
|
legend_html: Hlavní barvy aplikace, založené na <a href="https://www.color-meanings.com/triadic-colors/">Triadic algoritmu</a>. <i>sekundární</i> barva je automaticky vypočítána z primární barvy a sytosti, kterou vyberete.
|
data/config/locales/el.yml
CHANGED
@@ -761,15 +761,6 @@ el:
|
|
761
761
|
edit:
|
762
762
|
update: Ενημέρωση
|
763
763
|
form:
|
764
|
-
colors:
|
765
|
-
choose_color: Επιλέξτε ένα πρωτεύον χρώμα
|
766
|
-
colors_title: Χρώματα οργανισμού
|
767
|
-
colors_warning_html: Προσοχή! Η αλλαγή αυτών των χρωμάτων μπορεί να σπάσει τις αντιθέσεις προσβασιμότητας. Μπορείτε να ελέγξετε την αντίθεση της επιλογής σας με <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> ή άλλα παρόμοια εργαλεία.
|
768
|
-
explanation: Αυτό το εργαλείο σας βοηθά να επιλέξετε ένα συνδυασμό χρωμάτων, που αποτελείται από αποχρώσεις εξίσου τοποθετημένες γύρω από τον τροχό χρωμάτων, που θα χρησιμοποιηθούν στην ιστοσελίδα του οργανισμού.
|
769
|
-
legend_html: Κύρια χρώματα εφαρμογής, με βάση τον <a href="https://www.color-meanings.com/triadic-colors/">τριαδικό αλγόριθμο</a>. Το <i>δευτερεύον</i> χρώμα υπολογίζεται αυτόματα από το πρωτεύον χρώμα και τον κορεσμό που επιλέξατε.
|
770
|
-
saturation: Κορεσμός
|
771
|
-
title: Επιλογέας χρωμάτων
|
772
|
-
update_suggested_colors: Ενημέρωση προτεινόμενων χρωμάτων
|
773
764
|
cta_button_text_help: Μπορείτε να αντικαταστήσετε το κείμενο του κουμπιού «Call To Action» στην αρχική σελίδα για κάθε διαθέσιμη γλώσσα στον οργανισμό σας. Εάν δεν έχει οριστεί, θα χρησιμοποιηθεί η προεπιλεγμένη τιμή. Το κουμπί «Call To Action» εμφανίζεται στην αρχική σελίδα μεταξύ του κειμένου καλωσορίσματος και της περιγραφής.
|
774
765
|
homepage_appearance_title: Επεξεργασία εμφάνισης αρχικής σελίδας
|
775
766
|
homepage_highlighted_content_banner_title: Επισημασμένο πλαίσιο περιεχομένου
|
data/config/locales/es-MX.yml
CHANGED
@@ -909,10 +909,10 @@ es-MX:
|
|
909
909
|
form:
|
910
910
|
colors:
|
911
911
|
choose_color: Elegir un color primario
|
912
|
-
colors_title: Colores de
|
913
|
-
colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="
|
914
|
-
explanation: Esta herramienta
|
915
|
-
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo
|
912
|
+
colors_title: Colores de la organización
|
913
|
+
colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> u otras herramientas similares.'
|
914
|
+
explanation: Esta herramienta le ayuda a elegir un esquema de colores, compuesto por tonos igualmente espaciados alrededor de la rueda cromática, que se utilizará en el sitio web de la organización.
|
915
|
+
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo Triádico</a>. El color <i>secundario</i> es autocalculado a partir del color primario y la saturación que has elegido.
|
916
916
|
saturation: Saturación
|
917
917
|
title: Selector de color
|
918
918
|
update_suggested_colors: Actualizar a los colores sugeridos
|
data/config/locales/es-PY.yml
CHANGED
@@ -909,10 +909,10 @@ es-PY:
|
|
909
909
|
form:
|
910
910
|
colors:
|
911
911
|
choose_color: Elegir un color primario
|
912
|
-
colors_title: Colores de
|
913
|
-
colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="
|
914
|
-
explanation: Esta herramienta
|
915
|
-
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo
|
912
|
+
colors_title: Colores de la organización
|
913
|
+
colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> u otras herramientas similares.'
|
914
|
+
explanation: Esta herramienta le ayuda a elegir un esquema de colores, compuesto por tonos igualmente espaciados alrededor de la rueda cromática, que se utilizará en el sitio web de la organización.
|
915
|
+
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo Triádico</a>. El color <i>secundario</i> es autocalculado a partir del color primario y la saturación que has elegido.
|
916
916
|
saturation: Saturación
|
917
917
|
title: Selector de color
|
918
918
|
update_suggested_colors: Actualizar a los colores sugeridos
|
data/config/locales/es.yml
CHANGED
@@ -911,8 +911,8 @@ es:
|
|
911
911
|
choose_color: Elegir un color primario
|
912
912
|
colors_title: Colores de la organización
|
913
913
|
colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> u otras herramientas similares.'
|
914
|
-
explanation: Esta herramienta
|
915
|
-
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo
|
914
|
+
explanation: Esta herramienta le ayuda a elegir un esquema de colores, compuesto por tonos igualmente espaciados alrededor de la rueda cromática, que se utilizará en el sitio web de la organización.
|
915
|
+
legend_html: Colores principales de la aplicación, basados en el <a href="https://www.color-meanings.com/triadic-colors/">algoritmo Triádico</a>. El color <i>secundario</i> es autocalculado a partir del color primario y la saturación que has elegido.
|
916
916
|
saturation: Saturación
|
917
917
|
title: Selector de color
|
918
918
|
update_suggested_colors: Actualizar a los colores sugeridos
|
data/config/locales/eu.yml
CHANGED
@@ -37,19 +37,19 @@ eu:
|
|
37
37
|
import:
|
38
38
|
user_group_id: Inportatu hau bezala
|
39
39
|
newsletter:
|
40
|
-
body:
|
40
|
+
body: Testua
|
41
41
|
send_to_all_users: Bidali parte-hartzaile guztiei
|
42
42
|
send_to_followers: Bidali jarraitzaileei
|
43
43
|
send_to_participants: Bidali parte-hartzaileei
|
44
44
|
subject: Gaia
|
45
45
|
organization:
|
46
|
-
admin_terms_of_service_body: Administratzailearen zerbitzu-baldintzen
|
46
|
+
admin_terms_of_service_body: Administratzailearen zerbitzu-baldintzen testua
|
47
47
|
alert_color: Abisua
|
48
48
|
available_authorizations: Baimen erabilgarriak
|
49
49
|
badges_enabled: Gaitu garaikurrak
|
50
50
|
comments_max_length: Iruzkinen gehieneko luzera (utzi 0 defektuz konfigurazioa mantendu nahi baduzu)
|
51
|
-
cta_button_path: Ekintza-botoiaren
|
52
|
-
cta_button_text: Ekintza-botoiaren testua
|
51
|
+
cta_button_path: Ekintza-dei botoiaren bidea
|
52
|
+
cta_button_text: Ekintza-dei botoiaren testua
|
53
53
|
customize_welcome_notification: Pertsonalizatu ongi etorri jakinarazpena
|
54
54
|
default_locale: Kokapen lehenetsia
|
55
55
|
description: Deskribapena
|
@@ -100,7 +100,7 @@ eu:
|
|
100
100
|
user_groups_enabled: Gaitu parte-hartzaileen taldeak
|
101
101
|
users_registration_mode: Parte-hartzaileak erregistratzeko modua
|
102
102
|
warning_color: Abisua
|
103
|
-
welcome_notification_body: Ongietorri-jakinarazpenaren
|
103
|
+
welcome_notification_body: Ongietorri-jakinarazpenaren testua
|
104
104
|
welcome_notification_subject: Ongi etorri jakinarazpenaren mezuaren gaia
|
105
105
|
youtube_handler: YouTubeko kudeatzailea
|
106
106
|
participatory_space_private_user:
|
@@ -925,7 +925,7 @@ eu:
|
|
925
925
|
homepage_highlighted_content_banner_title: Edukien bannerra nabarmendua
|
926
926
|
images:
|
927
927
|
layout_appearance_title: Editatu itxura globalaren itxura
|
928
|
-
preview:
|
928
|
+
preview: Aurreikusi
|
929
929
|
omnipresent_banner_appearance_title: Editatu banner nonahikoa
|
930
930
|
organization_external_domain_allowlist:
|
931
931
|
edit:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -907,15 +907,6 @@ 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="%{link}">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: Pääsovelluksen 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
|
919
910
|
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}'
|
920
911
|
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ä.
|
921
912
|
header_snippets:
|
data/config/locales/fi.yml
CHANGED
@@ -907,15 +907,6 @@ 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: Pääsovelluksen 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
|
919
910
|
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}'
|
920
911
|
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ä.
|
921
912
|
header_snippets:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -909,8 +909,8 @@ fr-CA:
|
|
909
909
|
colors:
|
910
910
|
choose_color: Choisir une couleur primaire
|
911
911
|
colors_title: Couleurs de l'organisation
|
912
|
-
colors_warning_html: Attention ! La modification de ces couleurs peut
|
913
|
-
explanation: Cet outil vous aide à choisir une palette de couleurs, composée de teintes placées à égale distance autour de la roue
|
912
|
+
colors_warning_html: Attention ! La modification de ces couleurs peut contrevenir aux règles d'accessibilité sur les taux de contraste. Vous pouvez vérifier le taux de contraste choisi avec <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> ou d'autres outils similaires.
|
913
|
+
explanation: Cet outil vous aide à choisir une palette de couleurs, composée de teintes placées à égale distance autour de la roue des couleurs, qui seront utilisées sur la plateforme.
|
914
914
|
legend_html: Couleurs principales de l'application, basées sur <a href="https://www.color-meanings.com/triadic-colors/">l'algorithme triadique</a>. La couleur <i>secondaire</i> est automatiquement calculée à partir de la couleur primaire et de la saturation que vous avez choisies.
|
915
915
|
saturation: Saturation
|
916
916
|
title: Sélecteur de couleurs
|
data/config/locales/fr.yml
CHANGED
@@ -909,8 +909,8 @@ fr:
|
|
909
909
|
colors:
|
910
910
|
choose_color: Choisir une couleur primaire
|
911
911
|
colors_title: Couleurs de l'organisation
|
912
|
-
colors_warning_html: Attention ! La modification de ces couleurs peut contrevenir aux règles d'accessibilité sur les taux de contraste. Vous pouvez vérifier le taux de contraste
|
913
|
-
explanation: Cet outil vous aide à choisir une palette de couleurs, composée de teintes placées à égale distance autour de la roue
|
912
|
+
colors_warning_html: Attention ! La modification de ces couleurs peut contrevenir aux règles d'accessibilité sur les taux de contraste. Vous pouvez vérifier le taux de contraste choisi avec <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> ou d'autres outils similaires.
|
913
|
+
explanation: Cet outil vous aide à choisir une palette de couleurs, composée de teintes placées à égale distance autour de la roue des couleurs, qui seront utilisées sur la plateforme.
|
914
914
|
legend_html: Couleurs principales de l'application, basées sur <a href="https://www.color-meanings.com/triadic-colors/">l'algorithme triadique</a>. La couleur <i>secondaire</i> est automatiquement calculée à partir de la couleur primaire et de la saturation que vous avez choisies.
|
915
915
|
saturation: Saturation
|
916
916
|
title: Sélecteur de couleurs
|
data/config/locales/gl.yml
CHANGED
@@ -669,15 +669,12 @@ gl:
|
|
669
669
|
edit:
|
670
670
|
update: Actualización
|
671
671
|
form:
|
672
|
-
colors:
|
673
|
-
colors_title: Cores da organización
|
674
|
-
colors_warning_html: Atención! Mudar estas cores pode estragar ao contrastes de accesibilidade. Podes verificar o contraste da túa elección a través de <a href="%{link}">WebAIM Contrast Checker</a> ou outras ferramentas semellantes.
|
675
672
|
cta_button_text_help: Pode sobrescribir o texto do botón de chamada a acción na páxina de inicio para cada idioma dispoñible na súa organización. Se non se establece, empregarase o valor predeterminado. O botón de chamada a acción amósase na páxina de inicio entre o texto de benvida ea descrición.
|
676
673
|
homepage_appearance_title: Editar o aspecto da páxina de inicio
|
677
674
|
homepage_highlighted_content_banner_title: Banner de contido de alto nivel
|
678
675
|
images:
|
679
676
|
layout_appearance_title: Editar aspecto de deseño
|
680
|
-
preview: Vista
|
677
|
+
preview: Vista previa
|
681
678
|
omnipresent_banner_appearance_title: Editar o banner omnipresente
|
682
679
|
participatory_space_private_users:
|
683
680
|
create:
|
data/config/locales/hu.yml
CHANGED
@@ -426,7 +426,7 @@ hu:
|
|
426
426
|
search_placeholder:
|
427
427
|
name_or_nickname_or_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
428
428
|
report_count_eq: Jelentések száma
|
429
|
-
reported_id_string_or_reported_content_cont: Keresés %{
|
429
|
+
reported_id_string_or_reported_content_cont: Keresés %{collection} a jelentendő azonosító vagy tartalom alapján.
|
430
430
|
title_cont: Keresés %{collection} cím alapján.
|
431
431
|
user_name_or_user_nickname_or_user_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
432
432
|
state_eq:
|
@@ -797,15 +797,6 @@ hu:
|
|
797
797
|
edit:
|
798
798
|
update: Frissítés
|
799
799
|
form:
|
800
|
-
colors:
|
801
|
-
choose_color: Elsődleges szín kiválasztása
|
802
|
-
colors_title: Szervezet színei
|
803
|
-
colors_warning_html: Óvatosan! A színek megváltoztatása megtörik az akadálymentes kontrasztokat. Ellenőrizheti a kontrasztot a <a href="%{link}">WebAIM Contrast Checker</a> vagy más, hasonló eszköz segítségével.
|
804
|
-
explanation: Ez az eszköz segít kiválasztani egy színsémát, amely a színkör körül egyenlően elosztott árnyalatokból áll, és amelyet a szervezet weboldalán használnak.
|
805
|
-
legend_html: Az alkalmazás fő színei a <a href="https://www.color-meanings.com/triadic-colors/">Triadic algoritmus</a>. A <i>szekunder</i> szín automatikusan kiszámításra kerül az elsődleges színből és a kiválasztott telítettségből.
|
806
|
-
saturation: Telítettség
|
807
|
-
title: Színválasztó
|
808
|
-
update_suggested_colors: A javasolt színekre frissítés
|
809
800
|
cta_button_path_help_html: 'Felülírhatod, hogy a kezdőlap felhívás gombja link hova mutasson. Részleges, ne pedig teljes URL címeket használj. A megengedett karakterek: betű, szám, kötőjel vagy perjel, de mindig betűvel kell kezdődnie. A felhívás gomb az üdvözlő szöveg és a leírás között jelenik meg a nyitólapon. Példa: %{url}'
|
810
801
|
cta_button_text_help: A felhívás gomb szövegét a szervezethez tartozó minden egyes nyelven megjelenítheted. Amennyiben nincs beállítva, akkor akkor az alapértelmezett értéket fogja használni. A felhívás gomb az üdvözlő szöveg és a leírás között jelenik meg a nyitólapon.
|
811
802
|
homepage_appearance_title: Honlap megjelenésének szerkesztése
|
data/config/locales/id-ID.yml
CHANGED
@@ -425,13 +425,12 @@ id:
|
|
425
425
|
edit:
|
426
426
|
update: Memperbarui
|
427
427
|
form:
|
428
|
-
colors:
|
429
|
-
colors_title: Warna organisasi
|
430
428
|
cta_button_text_help: Anda dapat menimpa teks tombol Ajakan Bertindak di beranda untuk setiap bahasa yang tersedia di organisasi Anda. Jika tidak disetel, nilai default akan digunakan. Tombol Ajakan Bertindak ditampilkan di homepage antara teks selamat datang dan deskripsi.
|
431
429
|
homepage_appearance_title: Edit tampilan homepage
|
432
430
|
homepage_highlighted_content_banner_title: Spanduk konten berkecepatan tinggi
|
433
431
|
images:
|
434
432
|
layout_appearance_title: Edit tampilan tata letak
|
433
|
+
preview: Preview
|
435
434
|
omnipresent_banner_appearance_title: Edit spanduk yang ada di mana-mana
|
436
435
|
participatory_space_private_users:
|
437
436
|
create:
|
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -851,15 +851,6 @@ it:
|
|
851
851
|
edit:
|
852
852
|
update: Modifica
|
853
853
|
form:
|
854
|
-
colors:
|
855
|
-
choose_color: Scegli un colore primario
|
856
|
-
colors_title: Colori dell'organizzazione
|
857
|
-
colors_warning_html: Attenzione! Cambiare questi colori può violare l'accessibilità dei contrasti dei colori. Puoi controllare il contrasto della tua scelta dei colori con <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> o altri strumenti simili.
|
858
|
-
explanation: Questo strumento ti aiuta a scegliere uno schema di colori, composto da tonalità ugualmente distanziate intorno alla gamma dei colori, che saranno utilizzate nel sito web dell'organizzazione.
|
859
|
-
legend_html: I principali colori dell'applicazione, basati sull'algoritmo <a href="https://www.color-meanings.com/triadic-colors/">Triadic</a>. Il colore <i>secondario</i> è calcolato a partire dal colore primario e dalla saturazione che hai scelto.
|
860
|
-
saturation: Saturazione
|
861
|
-
title: Selettore colore
|
862
|
-
update_suggested_colors: Aggiorna i colori suggeriti
|
863
854
|
cta_button_path_help_html: 'È possibile modificare la posizione in cui il pulsante "Chiamata all''Azione" nella home page viene mostrato. Per farlo utilizzare URL relativi, non URL assoluti. Accetta lettere, numeri, trattini e barre, e deve iniziare con una lettera. Il pulsante "Chiamata all''Azione" è mostrato nella home page tra il testo di benvenuto e la descrizione. Ad esempio: %{url}'
|
864
855
|
cta_button_text_help: Puoi sovrascrivere il testo del pulsante Chiamata all'azione nella home page per ogni lingua disponibile nell'organizzazione. Se non è impostato, verrà utilizzato il valore predefinito. Il pulsante Chiamata all'azione è mostrato nella homepage tra il testo di benvenuto e la descrizione.
|
865
856
|
header_snippets:
|
data/config/locales/ja.yml
CHANGED
@@ -902,15 +902,6 @@ ja:
|
|
902
902
|
edit:
|
903
903
|
update: 更新
|
904
904
|
form:
|
905
|
-
colors:
|
906
|
-
choose_color: プライマリカラーを選択
|
907
|
-
colors_title: 組織の色
|
908
|
-
colors_warning_html: '警告: これらの色を変更すると、アクセシビリティのコントラストが壊れる可能性があります。 <a href="%{link}">WebAIM Contrast Checker</a> または他の同様のツールで、選択したコントラストを確認できます。'
|
909
|
-
explanation: このツールは、カラーホイールの周りに均等に間隔を置いた色相で構成された配色を選択するのに役立ちます。 これは組織のウェブサイトに掲載されています
|
910
|
-
legend_html: <a href="https://www.color-meanings.com/triadic-colors/">三角法に基づく</a>に基づくメインのアプリケーションカラーです. 選択されたプライマリカラーと彩度に基づいて、<i>セカンダリ</i> カラーはは自動的に計算されます.
|
911
|
-
saturation: 彩度
|
912
|
-
title: 色の選択
|
913
|
-
update_suggested_colors: 提案色を更新
|
914
905
|
cta_button_path_help_html: 'ホームページにあるCall to Actionボタンのリンク先を上書きすることができます。完全なURLではなく、相対パスを使用してください。 英字、数字、ハイフン、スラッシュを使用でき、英字で始まる必要があります。 Call To Actionボタンは、ホームページ内のウェルカムテキストと説明の間に表示されます。例: %{url}'
|
915
906
|
cta_button_text_help: 組織の利用可能な言語ごとにホームページの [Call To Action] ボタンのテキストを上書きできます。 設定されていない場合は、デフォルト値が使用されます。 Call To Actionボタンは、ウェルカムテキストと説明の間のホームページに表示されます。
|
916
907
|
header_snippets:
|
data/config/locales/kaa.yml
CHANGED
data/config/locales/ko.yml
CHANGED
@@ -564,9 +564,6 @@ ko:
|
|
564
564
|
title: 참가자의 이메일 주소 보기
|
565
565
|
organization_appearance:
|
566
566
|
form:
|
567
|
-
colors:
|
568
|
-
choose_color: 기본 색상 선택
|
569
|
-
title: 색상 선택기
|
570
567
|
cta_button_path_help_html: '홈페이지에서 수행 호출 단추가 링크되는 위치를 덮어쓸 수 있습니다. 여기서는 전체 URL이 아닌 일부 경로를 사용하십시오. 문자, 숫자, 대시 및 슬래시를 사용할 수 있으며 문자로 시작해야 합니다. 시작 텍스트와 설명 사이에 홈페이지에서 수행 호출 단추가 표시됩니다. 예: %{url}'
|
571
568
|
cta_button_text_help: You can overwrite the Call To Action button text in the homepage for each available language in your organization. If not set, the default value will be used. The Call To Action button is shown in the homepage between the welcome text and the description.
|
572
569
|
header_snippets:
|
data/config/locales/lb.yml
CHANGED
@@ -637,8 +637,6 @@ lb:
|
|
637
637
|
edit:
|
638
638
|
update: Aktualisieren
|
639
639
|
form:
|
640
|
-
colors:
|
641
|
-
colors_title: Organisationsfarben
|
642
640
|
cta_button_text_help: Sie können den Text der Call To Action-Schaltfläche auf der Startseite für jede verfügbare Sprache in Ihrer Organisation überschreiben. Wenn nicht festgelegt, wird der Standardwert verwendet. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt.
|
643
641
|
homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
|
644
642
|
homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
|
data/config/locales/lt.yml
CHANGED
@@ -775,15 +775,6 @@ lt:
|
|
775
775
|
edit:
|
776
776
|
update: Atnaujinti
|
777
777
|
form:
|
778
|
-
colors:
|
779
|
-
choose_color: Pasirinkite pagrindinę spalvą
|
780
|
-
colors_title: Organizacijos spalvos
|
781
|
-
colors_warning_html: Dėmesio! Spalvų pakeitimas gali padaryti puslapį neprieinamu. Norėdami patikrinti spalvų prieinamumą naudokite <a href="%{link}"> WebAIM Contrast Checker </a> arba kitus panašius įrankius.
|
782
|
-
explanation: Šis įrankis padės jums pasirinkti spalvų schemą, sudarytą iš atspalvių, lygiai pasiskirstiusių spalvų rate, kuri bus naudojama organizacijos svetainėje.
|
783
|
-
legend_html: Pagrindinės programos spalvos, remiantis <a href="https://www.color-meanings.com/triadic-colors/">Triadinio algoritmo</a>. <i>Antrinė</i> spalva yra automatiškai apskaičiuojama iš pagrindinės spalvos ir pasirinkto prisotinimo.
|
784
|
-
saturation: Sodrumas
|
785
|
-
title: Spalvų parinkėjas
|
786
|
-
update_suggested_colors: Atnaujinti pasiūlytas spalvas
|
787
778
|
cta_button_text_help: Galite pakeisti pagrindinio numatytojo puslapio mygtuko tekstą priklausomai nuo kalbos. Jei ne, bus naudojamas numatytasis mygtuko tekstas.
|
788
779
|
homepage_appearance_title: Keisti numatytojo puslapio išvaizdą
|
789
780
|
homepage_highlighted_content_banner_title: Paryškinta turinio juosta
|
data/config/locales/lv.yml
CHANGED
@@ -478,8 +478,6 @@ lv:
|
|
478
478
|
edit:
|
479
479
|
update: Atjaunināt
|
480
480
|
form:
|
481
|
-
colors:
|
482
|
-
colors_title: Organizācijas krāsas
|
483
481
|
cta_button_text_help: Jūs varat pārrakstīt sākumlapā redzamās pogas Call To Action tekstu visās jūsu organizācijā pieejamajās valodās. Ja vērtība nav iestatīta, tiks izmantota noklusējuma vērtība. Poga Call To Action redzama sākumlapā starp sveiciena tekstu un aprakstu.
|
484
482
|
homepage_appearance_title: Labot sākumlapas izskatu
|
485
483
|
homepage_highlighted_content_banner_title: Izceltais satura reklāmkarogs
|
data/config/locales/nl.yml
CHANGED
@@ -685,15 +685,12 @@ nl:
|
|
685
685
|
edit:
|
686
686
|
update: Bijwerken
|
687
687
|
form:
|
688
|
-
colors:
|
689
|
-
colors_title: Organisatiekleuren
|
690
|
-
colors_warning_html: Waarschuwing! Het wijzigen van deze kleuren kan de toegankelijkheid verminderen door een te klein contrast. Je kunt het contrast van je keuze nakijken met <a href="%{link}">WebAIM Contrast Checker</a> of andere vergelijkbare tools.
|
691
688
|
cta_button_text_help: U kunt de tekst voor "Call To Action" overschrijven op de homepage voor elke beschikbare taal in uw organisatie. Indien niet ingesteld, wordt de standaardwaarde gebruikt. De knop Call to Action wordt weergegeven op de homepage tussen de welkomsttekst en de omschrijving.
|
692
689
|
homepage_appearance_title: Bewerk de startpagina-weergave
|
693
690
|
homepage_highlighted_content_banner_title: Uitgelichte inhoudsbanner
|
694
691
|
images:
|
695
692
|
layout_appearance_title: Weergave van de lay-out bewerken
|
696
|
-
preview:
|
693
|
+
preview: Voorbeeld
|
697
694
|
omnipresent_banner_appearance_title: Bewerk de permanente banner
|
698
695
|
participatory_space_private_users:
|
699
696
|
create:
|
data/config/locales/no.yml
CHANGED
@@ -689,9 +689,6 @@
|
|
689
689
|
edit:
|
690
690
|
update: Oppdater
|
691
691
|
form:
|
692
|
-
colors:
|
693
|
-
colors_title: Organisasjonens farger
|
694
|
-
colors_warning_html: Advarsel! Endring av disse fargene kan ødelegge tilgjengelighetskontraster. Du kan sjekke kontrasten du velger, <a href="%{link}">WebAIM Contrast Checker</a> eller andre lignende verktøy.
|
695
692
|
cta_button_text_help: Du kan overskrive Handlingsknappens tekst på hjemmesiden for hvert tilgjengelige språk i organisasjonen. Hvis ikke satt, blir standardverdien brukt. Kall til Handlingknappen vises på hjemmesiden mellom velkomstteksten og beskrivelsen.
|
696
693
|
homepage_appearance_title: Endre hjemmesidens utseende
|
697
694
|
homepage_highlighted_content_banner_title: Markert innholdsbanner
|
data/config/locales/pl.yml
CHANGED
@@ -808,15 +808,6 @@ pl:
|
|
808
808
|
edit:
|
809
809
|
update: Aktualizuj
|
810
810
|
form:
|
811
|
-
colors:
|
812
|
-
choose_color: Wybierz kolor podstawowy
|
813
|
-
colors_title: Kolory organizacji
|
814
|
-
colors_warning_html: Uwaga! Zmiana tych kolorów może ograniczyć czytelność. Możesz sprawdzić kontrast wybranych kolorów korzystając z <a href="%{link}">WebAIM Contrast Checker</a> albo innych podobnych narzędzi.
|
815
|
-
explanation: To narzędzie pomaga ci wybrać zestaw kolorów złożony z odcieni równomiernie rozmieszczonych na kole barw, który będzie używany na stronie internetowej organizacji.
|
816
|
-
legend_html: Główne kolory aplikacji, oparte na algorytmie <a href="https://www.color-meanings.com/triadic-colors/">Algorytm trójkowy</a>. <i>drugorzędowy</i> kolor jest obliczany automatycznie na podstawie koloru podstawowego i wybranej przez ciebie saturacji.
|
817
|
-
saturation: Saturacja
|
818
|
-
title: Wybór koloru
|
819
|
-
update_suggested_colors: Zaktualizuj sugerowane kolory
|
820
811
|
cta_button_path_help_html: 'Możesz nadpisać lokalizację, do której prowadzi przycisk CTA na stronie głównej. Użyj częściowych ścieżek adresu, a nie pełnych adresów URL. Można używać liter, cyfr, myślników i ukośników. Należy zacząć od litery. Przycisk CTA znajduje się na stronie głównej pomiędzy tekstem powitalnym a opisem. Przykład: %{url}'
|
821
812
|
cta_button_text_help: Można nadpisać tekst przycisku CTA na stronie głównej dla każdego dostępnego języka organizacji. Jeśli to pole nie zostanie wypełnione, zostanie użyta wartość domyślna. Przycisk CTA zostanie wyświetlony na stronie głównej między tekstem powitalnym a opisem.
|
822
813
|
header_snippets:
|