decidim-admin 0.26.8 → 0.26.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +36 -0
  3. data/app/controllers/concerns/decidim/moderations/admin/filterable.rb +4 -0
  4. data/app/packs/src/decidim/admin/autocomplete.component.js +11 -13
  5. data/app/views/decidim/admin/components/_actions.html.erb +43 -0
  6. data/app/views/decidim/admin/components/_component.html.erb +3 -41
  7. data/config/environment.rb +2 -0
  8. data/config/locales/ar.yml +7 -11
  9. data/config/locales/ca.yml +7 -7
  10. data/config/locales/cs.yml +4 -4
  11. data/config/locales/de.yml +24 -24
  12. data/config/locales/el.yml +1 -10
  13. data/config/locales/es-MX.yml +7 -7
  14. data/config/locales/es-PY.yml +7 -7
  15. data/config/locales/es.yml +7 -7
  16. data/config/locales/eu.yml +296 -281
  17. data/config/locales/fi-plain.yml +3 -3
  18. data/config/locales/fi.yml +3 -3
  19. data/config/locales/fr-CA.yml +7 -7
  20. data/config/locales/fr.yml +9 -9
  21. data/config/locales/gl.yml +2 -11
  22. data/config/locales/hu.yml +1 -10
  23. data/config/locales/id-ID.yml +3 -6
  24. data/config/locales/is-IS.yml +1 -1
  25. data/config/locales/it.yml +0 -9
  26. data/config/locales/ja.yml +7 -7
  27. data/config/locales/kaa.yml +14 -0
  28. data/config/locales/lb.yml +2 -11
  29. data/config/locales/lt.yml +23 -11
  30. data/config/locales/lv.yml +0 -9
  31. data/config/locales/nl.yml +2 -11
  32. data/config/locales/no.yml +0 -9
  33. data/config/locales/pl.yml +20 -4
  34. data/config/locales/pt-BR.yml +19 -12
  35. data/config/locales/pt.yml +3 -12
  36. data/config/locales/ro-RO.yml +2 -11
  37. data/config/locales/ru.yml +3 -7
  38. data/config/locales/sk.yml +0 -9
  39. data/config/locales/sq-AL.yml +65 -0
  40. data/config/locales/sr-CS.yml +10 -4
  41. data/config/locales/sv.yml +1 -9
  42. data/config/locales/th-TH.yml +1 -0
  43. data/config/locales/tr-TR.yml +3 -12
  44. data/config/locales/uk.yml +1 -7
  45. data/config/locales/zh-CN.yml +0 -9
  46. data/config/locales/zh-TW.yml +0 -9
  47. data/config/routes.rb +2 -0
  48. data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +49 -0
  49. data/lib/decidim/admin/version.rb +1 -1
  50. metadata +18 -9
  51. data/app/controllers/decidim/admin/space_publications_controller.rb +0 -63
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ae3bb30016e22eb88e8cdf9118dbe1c1c58702539d2a68ce4863eaf17d40099
4
- data.tar.gz: b319929c123442784d3416426d3b2cd30cf7a84a06ee15ecc40822270946782c
3
+ metadata.gz: 509031ee8d76a518423f29ea4b45b9ea580e539989cfab08750c9d422bb6bb9e
4
+ data.tar.gz: f475e7bd65b45f8375e63735b884fe39850614029679f85c1cfba2d4c6f4d37d
5
5
  SHA512:
6
- metadata.gz: d56cddac04cded212214f8f962171db9b0940650d338c9da3645ce15cf678cfca72ff58c6192b365a38da11b47773483daf59d4e51ae58f5b6e807a0def34907
7
- data.tar.gz: 7c060e1ba90c6a94afc4a26d0c94c0706bc8aab1db866045d3b7df7bb78f45fc5a80da36a530205ff8415328a53f27e9d8e772eef3b897f5ee3643f87dcefc93
6
+ metadata.gz: 4d599f92d96851fd7bef16df5bee367ab141dcfba575cf9cd1166fcff003f00cd3ce5f4364b8e4e74231946df472c1da77e574c1b6eac23af60069a37208e1a3
7
+ data.tar.gz: 8249837a53e098229068578ef1df4bf8f899646cff0f658f82455e4343acc8df8c4961a5e7b5e3539de6007920121cca9655bfc2ba02722cccc99cb5cd7b35e0
@@ -15,6 +15,7 @@ module Decidim
15
15
  def tos_accepted_by_admin
16
16
  return unless request.format.html?
17
17
  return unless current_user
18
+ return unless user_has_any_role?
18
19
  return if current_user.admin_terms_accepted?
19
20
  return if permitted_paths?
20
21
 
@@ -37,6 +38,41 @@ module Decidim
37
38
  def admin_tos_path
38
39
  decidim_admin.admin_terms_show_path
39
40
  end
41
+
42
+ def user_has_any_role?
43
+ return true if current_user.admin
44
+ return true if current_user.roles.any?
45
+ return true if participatory_process_user_role?
46
+ return true if assembly_user_role?
47
+ return true if conference_user_role?
48
+ return true if voting_monitoring_commitee_member?
49
+
50
+ false
51
+ end
52
+
53
+ def participatory_process_user_role?
54
+ return false unless Decidim.module_installed?(:participatory_processes)
55
+
56
+ true if Decidim::ParticipatoryProcessUserRole.exists?(user: current_user)
57
+ end
58
+
59
+ def assembly_user_role?
60
+ return false unless Decidim.module_installed?(:assemblies)
61
+
62
+ true if Decidim::AssemblyUserRole.exists?(user: current_user)
63
+ end
64
+
65
+ def conference_user_role?
66
+ return false unless Decidim.module_installed?(:conferences)
67
+
68
+ true if Decidim::ConferenceUserRole.exists?(user: current_user)
69
+ end
70
+
71
+ def voting_monitoring_commitee_member?
72
+ return false unless Decidim.module_installed?(:elections)
73
+
74
+ true if Decidim::Votings::MonitoringCommitteeMember.exists?(user: current_user)
75
+ end
40
76
  end
41
77
  end
42
78
  end
@@ -47,6 +47,10 @@ module Decidim
47
47
  def reportable_types
48
48
  collection.pluck(:decidim_reportable_type).uniq.sort
49
49
  end
50
+
51
+ def extra_allowed_params
52
+ [:hidden]
53
+ end
50
54
  end
51
55
  end
52
56
  end
@@ -16,29 +16,27 @@ export class Autocomplete extends React.Component {
16
16
  this.handleChange = (selectedOption) => {
17
17
  this.setState({ selectedOption });
18
18
  if (this.props.changeURL) {
19
- axios.get(this.props.changeURL, {
20
- headers: {
21
- Accept: "text/javascript"
22
- },
23
- withCredentials: true,
24
- params: {
25
- id: selectedOption.value
26
- }
27
- }).
28
- then((response) => {
19
+ Rails.ajax({
20
+ url: this.props.changeURL,
21
+ type: "GET",
22
+ data: new URLSearchParams({
23
+ "id": selectedOption.value
24
+ }),
25
+ success: (response) => {
29
26
  const script = document.createElement("script");
30
27
  script.type = "text/javascript";
31
28
  script.innerHTML = response.data;
32
29
  document.getElementsByTagName("head")[0].appendChild(script);
33
- }).
34
- catch((error) => {
30
+ },
31
+ error: (error) => {
35
32
  if (axios.isCancel(error)) {
36
33
  // console.log("Request canceled", error.message);
37
34
  }
38
35
  else {
39
36
  //
40
37
  }
41
- });
38
+ }
39
+ })
42
40
  }
43
41
  };
44
42
 
@@ -0,0 +1,43 @@
1
+ <% if component.manifest.admin_engine %>
2
+ <%= icon_link_to "pencil", manage_component_path(component), t("actions.manage", scope: "decidim.admin"), class: "action-icon--manage" %>
3
+ <% else %>
4
+ <span class="action-space icon"></span>
5
+ <% end %>
6
+
7
+ <% if allowed_to?(:update, :component, component: component) %>
8
+ <% if component.published? %>
9
+ <%= icon_link_to "x", url_for(action: :unpublish, id: component, controller: "components"), t("actions.unpublish", scope: "decidim.admin"), class: "action-icon--unpublish", method: :put %>
10
+ <% else %>
11
+ <%= icon_link_to "check", url_for(action: :publish, id: component, controller: "components"), t("actions.publish", scope: "decidim.admin"), class: "action-icon--publish", method: :put %>
12
+ <% end %>
13
+ <% else %>
14
+ <span class="action-space icon"></span>
15
+ <% end %>
16
+
17
+ <% if allowed_to? :update, :component, component: component %>
18
+ <%= icon_link_to "cog", url_for(action: :edit, id: component, controller: "components"), t("actions.configure", scope: "decidim.admin"), class: "action-icon--configure" %>
19
+ <% else %>
20
+ <span class="action-space icon"></span>
21
+ <% end %>
22
+
23
+ <% if allowed_to? :update, :component, component: component %>
24
+ <% if component.manifest.actions.empty? %>
25
+ <%= icon "key", class: "action-icon action-icon--disabled" %>
26
+ <% else %>
27
+ <%= icon_link_to "key", url_for(action: :edit, component_id: component, controller: "component_permissions"), t("actions.permissions", scope: "decidim.admin"), class: "action-icon--permissions" %>
28
+ <% end %>
29
+ <% else %>
30
+ <span class="action-space icon"></span>
31
+ <% end %>
32
+
33
+ <% if allowed_to? :share, :component, component: component %>
34
+ <%= icon_link_to "share", url_for(action: :share, id: component, controller: "components"), t("actions.share", scope: "decidim.admin"), class: "action-icon--share", target: "_blank" %>
35
+ <% else %>
36
+ <span class="action-space icon"></span>
37
+ <% end %>
38
+
39
+ <% if allowed_to? :destroy, :component, component: component %>
40
+ <%= icon_link_to "circle-x", url_for(action: :destroy, id: component, controller: "components"), t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete %>
41
+ <% else %>
42
+ <span class="action-space icon"></span>
43
+ <% end %>
@@ -10,48 +10,10 @@
10
10
  </td>
11
11
  <%= td_resource_scope_for(component.scope) %>
12
12
  <td class="table-list__actions">
13
- <% if component.manifest.admin_engine %>
14
- <%= icon_link_to "pencil", manage_component_path(component), t("actions.manage", scope: "decidim.admin"), class: "action-icon--manage" %>
13
+ <% if lookup_context.find_all("decidim/#{component.manifest_name}/admin/component/_actions").any? %>
14
+ <%= render partial: "decidim/#{component.manifest_name}/admin/component/actions", locals: { component: component } %>
15
15
  <% else %>
16
- <span class="action-space icon"></span>
17
- <% end %>
18
-
19
- <% if allowed_to?(:update, :component, component: component) %>
20
- <% if component.published? %>
21
- <%= icon_link_to "x", url_for(action: :unpublish, id: component, controller: "components"), t("actions.unpublish", scope: "decidim.admin"), class: "action-icon--unpublish", method: :put %>
22
- <% else %>
23
- <%= icon_link_to "check", url_for(action: :publish, id: component, controller: "components"), t("actions.publish", scope: "decidim.admin"), class: "action-icon--publish", method: :put %>
24
- <% end %>
25
- <% else %>
26
- <span class="action-space icon"></span>
27
- <% end %>
28
-
29
- <% if allowed_to? :update, :component, component: component %>
30
- <%= icon_link_to "cog", url_for(action: :edit, id: component, controller: "components"), t("actions.configure", scope: "decidim.admin"), class: "action-icon--configure" %>
31
- <% else %>
32
- <span class="action-space icon"></span>
33
- <% end %>
34
-
35
- <% if allowed_to? :update, :component, component: component %>
36
- <% if component.manifest.actions.empty? %>
37
- <%= icon "key", class: "action-icon action-icon--disabled" %>
38
- <% else %>
39
- <%= icon_link_to "key", url_for(action: :edit, component_id: component, controller: "component_permissions"), t("actions.permissions", scope: "decidim.admin"), class: "action-icon--permissions" %>
40
- <% end %>
41
- <% else %>
42
- <span class="action-space icon"></span>
43
- <% end %>
44
-
45
- <% if allowed_to? :share, :component, component: component %>
46
- <%= icon_link_to "share", url_for(action: :share, id: component, controller: "components"), t("actions.share", scope: "decidim.admin"), class: "action-icon--share", target: "_blank" %>
47
- <% else %>
48
- <span class="action-space icon"></span>
49
- <% end %>
50
-
51
- <% if allowed_to? :destroy, :component, component: component %>
52
- <%= icon_link_to "circle-x", url_for(action: :destroy, id: component, controller: "components"), t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete %>
53
- <% else %>
54
- <span class="action-space icon"></span>
16
+ <%= render partial: "actions", locals: { component: component } %>
55
17
  <% end %>
56
18
  </td>
57
19
  </tr>
@@ -1 +1,3 @@
1
1
  # frozen_string_literal: true
2
+
3
+ # Empty line for playing nice with tpope/vim-rails
@@ -637,9 +637,6 @@ ar:
637
637
  none: لا شَيْء
638
638
  scopes_help: إرسال النشرة الإخبارية للمستخدمين الذين لديهم أي من المجالات المحددة تم تفعيله في إعدادات "اهتماماتي" لحسابهم.
639
639
  select_scopes: أختر للمستخدمين الذين فعلوا أي مجال محدد في إعدادات أهتماماتي لحساباتهم.
640
- send_to_all_users: إرسال إلى كافة المستخدمين
641
- send_to_followers: إرسال إلى المتابِعين
642
- send_to_participants: إرسال إلى المشاركين
643
640
  title: حدد المستلمين للإرسال اليهم
644
641
  warning: "<strong>تنبيه:</strong> سيتم إرسال هذه النشرة الإخبارية فقط للمستخدمين الذين فعلوا <em>أريد تلقي النشرات الإخبارية</em> في إعدادات الإشعارات الخاصة بهم."
645
642
  send:
@@ -712,7 +709,6 @@ ar:
712
709
  colors:
713
710
  colors_title: ألوان المنظمة
714
711
  header_snippets_help: استخدم هذا الحقل لإضافة أشياء إلى رأس HTML. الاستخدام الأكثر شيوعًا هو دمج خدمات الجهات الخارجية التي تتطلب بعض JavaScript أو CSS إضافية. أيضًا ، يمكنك استخدامه لإضافة علامات وصفية إضافية إلى HTML. لاحظ أنه سيتم عرض هذا فقط في الصفحات العامة ، وليس في قسم المسؤول.
715
- cta_button_path_help: 'يمكنك الكتابة فوق المكان الذي يرتبط به زر Call To Action في الصفحة الرئيسية. استخدم المسارات الجزئية ، وليس عناوين URL الكاملة هنا. يقبل الحروف والأرقام والشرطات والمائلة ، ويجب أن يبدأ بحرف. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف. مثال: %{url}'
716
712
  cta_button_text_help: يمكنك الكتابة فوق نص زر Call To Action في الصفحة الرئيسية لكل لغة متاحة في مؤسستك. إذا لم يتم تعيينها ، سيتم استخدام القيمة الافتراضية. يظهر زر Call To Action في الصفحة الرئيسية بين نص الترحيب والوصف.
717
713
  homepage_appearance_title: تحرير مظهر الصفحة الرئيسية
718
714
  homepage_highlighted_content_banner_title: لافتة المحتوى الراقي
@@ -725,12 +721,11 @@ ar:
725
721
  update: تحديث
726
722
  external_domain:
727
723
  down: أسفل
724
+ external_domain: نطاق خارجي
728
725
  remove: إزالة
729
726
  up: أعلى
730
- organization_homepage:
731
- edit:
732
- active_content_blocks: كتل المحتوى النشط
733
- inactive_content_blocks: كتل المحتوى غير النشطة
727
+ form:
728
+ add: إضافة إلى القائمة البيضاء
734
729
  organization_homepage_content_blocks:
735
730
  edit:
736
731
  update: تحديث
@@ -750,7 +745,7 @@ ar:
750
745
  create:
751
746
  invalid: حدثت مشكلة في قراءة ملف CSV.
752
747
  new:
753
- title: حمّل ملف CSV الخاص بك
748
+ title: قم بتحميل ملف CSV الخاص بك
754
749
  upload: حمّل
755
750
  resource_permissions:
756
751
  edit:
@@ -851,6 +846,7 @@ ar:
851
846
  dashboard: لوحة القيادة
852
847
  impersonatable_users: المشاركون في الإدارة
853
848
  impersonations: إدارة المشاركين
849
+ pages: الصفحات
854
850
  panel: مدير
855
851
  participants: المشاركين
856
852
  scope_types: أنواع النطاق
@@ -954,8 +950,8 @@ ar:
954
950
  decidim:
955
951
  admin:
956
952
  newsletters:
957
- title: النشرات الإخبارية
953
+ title: الرسائل الإخبارية
958
954
  settings:
959
955
  title: الإعدادات
960
956
  users:
961
- title: المشاركين
957
+ title: المشاركون
@@ -725,9 +725,9 @@ ca:
725
725
  select_scopes: Filtra per als usuaris que hagin activat qualsevol àmbit seleccionat a la configuració "Els meus interessos" del seu compte.
726
726
  select_spaces: Selecciona espais per segmentar el butlletí
727
727
  select_users: Selecciona a quines participants vols enviar el butlletí de notícies
728
- send_to_all_users: Envia a totes les participants
728
+ send_to_all_users: Envia a totes les usuàries
729
729
  send_to_followers: Envia a totes les seguidores
730
- send_to_participants: Envia a totes les participants
730
+ send_to_participants: Envia a les participants
731
731
  title: Selecciona les destinatàries a lliurar
732
732
  warning: "<strong>Atenció:</strong> Aquest butlletí només s'enviarà a les participants que hagin activat <em>Vull rebre butlletins</em> a la configuració de les notificacions."
733
733
  send:
@@ -802,7 +802,7 @@ ca:
802
802
  colors_title: Colors de l'organització
803
803
  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="%{link}">WebAIM Contrast Checker</a> o amb altres eines similars.
804
804
  header_snippets_help: Utilitza aquest camp per afegir coses al head d'HTML. L'ús més habitual és integrar serveis de tercers que requereixen codi JavaScript o CSS addicional. A més, pots utilitzar-lo per afegir etiquetes meta addicionals a l'HTML. Tingues en compte que això només es mostrarà a les pàgines públiques, no a la secció d'administració.
805
- cta_button_path_help: '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ó principal es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
805
+ cta_button_path_help: '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}'
806
806
  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ó.
807
807
  homepage_appearance_title: Edita l'aparença de la pàgina d'inici
808
808
  homepage_highlighted_content_banner_title: Banner de contingut ressaltat
@@ -823,8 +823,8 @@ ca:
823
823
  title: Llista blanca de dominis externs
824
824
  organization_homepage:
825
825
  edit:
826
- active_content_blocks: Blocs de contingut actiu
827
- inactive_content_blocks: Blocs de contingut inactiu
826
+ active_content_blocks: Blocs de contingut actius
827
+ inactive_content_blocks: Blocs de contingut inactius
828
828
  organization_homepage_content_blocks:
829
829
  edit:
830
830
  update: Actualitzar
@@ -936,7 +936,7 @@ ca:
936
936
  update: Actualitzar
937
937
  form:
938
938
  none: Cap
939
- slug_help: 'Utilitza rutes parcials, no URL complerts aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. Exemple: %{url}'
939
+ slug_help: 'Utilitza rutes parcials, no URL completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. Exemple: %{url}'
940
940
  index:
941
941
  last_notable_change: Últims canvis notables
942
942
  new:
@@ -1014,7 +1014,7 @@ ca:
1014
1014
  last_week: La darrera setmana
1015
1015
  no_users_count_statistics_yet: Encara no hi ha estadístiques de recompte d’usuàries
1016
1016
  participants: Participants
1017
- view_public_page: Mostra la pàgina pública
1017
+ view_public_page: Visualitzar la pàgina pública
1018
1018
  forms:
1019
1019
  errors:
1020
1020
  impersonate_user:
@@ -810,7 +810,7 @@ cs:
810
810
  colors_title: Organizační barvy
811
811
  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.
812
812
  header_snippets_help: Toto pole použijte k přidání věcí do hlavičky HTML. Nejběžnějším používáním je integrace služeb třetích stran, které vyžadují nějaký extra JavaScript nebo CSS. Můžete také použít k přidání dalších metaznaček do HTML. Všimněte si, že to bude vykresleno pouze na veřejných stránkách, nikoliv v sekci admin.
813
- cta_button_path_help: 'Můžete přepsat, kde se na domovské stránce odkazuje tlačítko Výzvy k akci. Použijte zde částečné cesty, ne úplné adresy URL. Přijme písmena, čísla, pomlčky a lomítka a musí začínat písmenem. Tlačítko Výzvy k akci se na domovské stránce zobrazí mezi uvítacím textem a popisem. Příklad: %{url}'
813
+ cta_button_path_help: 'Místo, kam tlačítko Výzva k akci na domovské stránce vede, lze přepsat. V tomto případě použijte částečnou cestu, nikoliv kompletní URL. Lze použít písmena, číslice, pomlčky a lomítka a musí se začínat písmenem. Tlačítko Výzva k akci je na domovské stránce umístěno mezi uvítacím textem a popisem. Příklad: %{url}'
814
814
  cta_button_text_help: Text tlačítka výzvy k akci můžete na domovské stránce přepsat pro každý dostupný jazyk ve vaší organizaci. Pokud není nastaveno, bude použita výchozí hodnota. Tlačítko Výzvy k akci se na domovské stránce zobrazí mezi uvítacím textem a popisem.
815
815
  homepage_appearance_title: Upravit vzhled stránky
816
816
  homepage_highlighted_content_banner_title: Zvýrazněný obsahový banner
@@ -831,7 +831,7 @@ cs:
831
831
  title: Seznam externích povolených domén
832
832
  organization_homepage:
833
833
  edit:
834
- active_content_blocks: Bloky aktivního obsahu
834
+ active_content_blocks: Aktivní bloky obsahu
835
835
  inactive_content_blocks: Neaktivní bloky obsahu
836
836
  organization_homepage_content_blocks:
837
837
  edit:
@@ -855,7 +855,7 @@ cs:
855
855
  success: CSV soubor byl úspěšně nahrán, posíláme e-maily na účastníky. To může trvat nějakou dobu.
856
856
  new:
857
857
  explanation: 'Nahrajte soubor CSV. Musí mít dva sloupce s e-mailem v prvním sloupci souboru a jméno v posledním sloupci souboru (e-mail, jméno) uživatelů, které chcete přidat do participačního prostoru, bez záhlaví. Vyhněte se používání neplatných znaků jako `<>?%&^*#@()[]=+:;"{}\|` v uživatelském jméně.'
858
- title: Nahrajte Váš CSV soubor
858
+ title: Nahrát soubor CSV
859
859
  upload: Nahrát
860
860
  resource_permissions:
861
861
  edit:
@@ -944,7 +944,7 @@ cs:
944
944
  update: Aktualizace
945
945
  form:
946
946
  none: Žádný
947
- slug_help: 'Zde použijte částečné cesty, nikoli úplné adresy URL. Jsou povolena písmena, čísla, pomlčky a lomítka a musí začínat písmenem. Příklad: %{url}'
947
+ slug_help: 'Použijte v tomto případě částečnou cestu, nikoliv kompletní URL. Lze použít písmena, číslice, pomlčky a lomítka a musí se začínat písmenem. Příklad: %{url}'
948
948
  index:
949
949
  last_notable_change: Poslední významná změna
950
950
  new:
@@ -10,7 +10,7 @@ de:
10
10
  organization: Organisation
11
11
  plural: Plural
12
12
  attachment:
13
- attachment_collection_id: Verzeichnis
13
+ attachment_collection_id: Ordner
14
14
  description: Beschreibung
15
15
  file: Datei
16
16
  title: Anhang oder Bildname
@@ -26,7 +26,7 @@ de:
26
26
  weight: Reihenfolge
27
27
  component:
28
28
  name: Name
29
- published_at: Veröffentlicht unter
29
+ published_at: Veröffentlicht am
30
30
  weight: Reihenfolge
31
31
  external_domain:
32
32
  value: Wert
@@ -378,7 +378,7 @@ de:
378
378
  'false': 'Nein'
379
379
  'true': 'Ja'
380
380
  last_sign_in_at_present:
381
- label: Schon einmal eingeloggt
381
+ label: Zuletzt angemeldet
382
382
  values:
383
383
  'false': 'Nein'
384
384
  'true': 'Ja'
@@ -393,7 +393,7 @@ de:
393
393
  reportable_type_string_eq:
394
394
  label: Art
395
395
  officialized_at_null:
396
- label: Zustand
396
+ label: Status
397
397
  values:
398
398
  'false': Offizialisiert
399
399
  'true': Nicht offiziell
@@ -422,12 +422,12 @@ de:
422
422
  label: Themenbereich
423
423
  search_label: Suche
424
424
  search_placeholder:
425
- name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
425
+ name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Kontoname.
426
426
  report_count_eq: Anzahl Meldungen
427
427
  reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
428
428
  title_cont: In %{collection} nach Titel suchen.
429
429
  user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
430
- user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder Benutzername durchsuchen.'
430
+ user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder Kontoname durchsuchen.'
431
431
  state_eq:
432
432
  label: Bundesland
433
433
  values:
@@ -547,7 +547,7 @@ de:
547
547
  reported_users: Gemeldete Nutzer
548
548
  scope_types: Bereichstypen
549
549
  scopes: Bereiche
550
- settings: die Einstellungen
550
+ settings: Einstellungen
551
551
  static_pages: Seiten
552
552
  user_groups: Benutzergruppen
553
553
  users: Benutzer
@@ -565,13 +565,13 @@ de:
565
565
  plural: Plural
566
566
  attachment:
567
567
  fields:
568
- collection: Mappe
568
+ collection: Ordner
569
569
  content_type: Art
570
570
  file_size: Größe
571
571
  title: Titel
572
572
  name: Befestigung
573
573
  attachment_collection:
574
- name: Mappe
574
+ name: Ordner
575
575
  category:
576
576
  name: Kategorie
577
577
  impersonation_log:
@@ -584,7 +584,7 @@ de:
584
584
  user: Benutzer
585
585
  newsletter:
586
586
  fields:
587
- created_at: Hergestellt in
587
+ created_at: Erstellt am
588
588
  progress: Fortschritt
589
589
  sent_at: Gesendet um
590
590
  sent_to: Gesendet an
@@ -610,7 +610,7 @@ de:
610
610
  user: Erstellt von
611
611
  static_page:
612
612
  fields:
613
- created_at: Hergestellt in
613
+ created_at: Erstellt am
614
614
  title: Titel
615
615
  user:
616
616
  fields:
@@ -626,11 +626,11 @@ de:
626
626
  user_group:
627
627
  fields:
628
628
  actions: Aktionen
629
- created_at: Hergestellt in
629
+ created_at: Erstellt am
630
630
  document_number: Dokumentnummer
631
631
  name: Name
632
632
  phone: Telefon
633
- state: Zustand
633
+ state: Status
634
634
  users_count: Benutzer zählen
635
635
  moderated_users:
636
636
  index:
@@ -715,8 +715,8 @@ de:
715
715
  select_recipients_to_deliver:
716
716
  all_spaces: Alle
717
717
  all_users_help: Sendet Newsletter an alle bestätigten Benutzer.
718
- confirm_deliver: Möchten Sie diesen Newsletter wirklich liefern? Diese Aktion kann nicht rückgängig gemacht werden.
719
- deliver: Liefern Newsletter
718
+ confirm_deliver: Möchten Sie diesen Newsletter wirklich versenden? Diese Aktion kann nicht rückgängig gemacht werden.
719
+ deliver: Newsletter versenden
720
720
  followers_help: Sendet den Newsletter an alle bestätigten Benutzer, die den ausgewählten Teilnehmerräumen in der Liste folgen.
721
721
  none: Niemand
722
722
  participants_help: Sendet den Newsletter an alle bestätigten Benutzer, die an den ausgewählten Teilnehmerräumen der Liste teilgenommen haben.
@@ -725,9 +725,9 @@ de:
725
725
  select_scopes: Nur Teilnehmer anzeigen, die einen der gewählten Themenbereiche in Ihren "Meine Interessen" Einstellungen ihres Kontos aktiviert haben.
726
726
  select_spaces: Wählen Sie Abschnitte, um den Newsletter zu unterteilen
727
727
  select_users: Wählen Sie aus, welchen Benutzern Sie den Newsletter senden möchten
728
- send_to_all_users: An alle Benutzer senden
728
+ send_to_all_users: An alle Benutzenden senden
729
729
  send_to_followers: An Follower senden
730
- send_to_participants: An Teilnehmer senden
730
+ send_to_participants: An Teilnehmende senden
731
731
  title: Empfänger auswählen
732
732
  warning: "<strong>Achtung:</strong> Dieser Newsletter wird nur an Benutzer gesendet, die <em>Ich möchte Newsletter empfangen</em> in ihren Benachrichtigungseinstellungen aktiviert haben."
733
733
  send:
@@ -751,7 +751,7 @@ de:
751
751
  actions: Aktionen
752
752
  badge: Abzeichen
753
753
  block: Benutzer blockieren
754
- created_at: Hergestellt in
754
+ created_at: Erstellt am
755
755
  name: Name
756
756
  nickname: Spitzname
757
757
  not_officialized: Nicht offiziell
@@ -802,7 +802,7 @@ de:
802
802
  colors_title: Organisationsfarben
803
803
  colors_warning_html: Warnung! Das Ändern dieser Farben kann die für Barrierefreiheit notwendigen Kontraste brechen. Sie können den Kontrast Ihrer Wahl mit <a href="%{link}">WebAIM Contrast Checker</a> oder ähnlichen Tools überprüfen.
804
804
  header_snippets_help: Verwenden Sie dieses Feld, um Dinge zum HTML-Kopf hinzuzufügen. Die häufigste Verwendung ist die Integration von Drittanbieterdiensten, für die zusätzliches JavaScript oder CSS erforderlich ist. Außerdem können Sie damit dem HTML zusätzliche Meta-Tags hinzufügen. Beachten Sie, dass dies nur auf öffentlichen Seiten und nicht im Admin-Bereich erfolgt.
805
- cta_button_path_help: 'Sie können überschreiben, wo die Call To Action-Schaltfläche in der Homepage verlinkt ist. Verwenden Sie hier Teilpfade, nicht vollständige URLs. Akzeptiert Buchstaben, Zahlen, Bindestriche und Schrägstriche und muss mit einem Buchstaben beginnen. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt. Beispiel: %{url}'
805
+ cta_button_path_help: 'Sie können überschreiben, womit die Call To Action-Schaltfläche auf der Homepage verlinkt ist. Verwenden Sie hier Teilpfade, nicht die vollständige URL. Buchstaben, Zahlen, Bindestriche und Schrägstriche sind erlaubt; an der ersten Stelle ist ein Buchstabe erforderlich. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt. Beispiel: %{url}'
806
806
  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.
807
807
  homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
808
808
  homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
@@ -847,7 +847,7 @@ de:
847
847
  success: CSV-Datei wurde erfolgreich hochgeladen, wir senden eine Einladungs-E-Mail an die Teilnehmer. Dies kann eine Weile dauern.
848
848
  new:
849
849
  explanation: 'Laden Sie Ihre CSV-Datei hoch. Diese muss zwei Spalten haben ohne Kopfzeile, mit E-Mail in der ersten Spalte der Datei und Namen in der letzten Spalte der Datei (E-Mail, Name) in Bezug auf die Benutzer, die Sie dem Beteiligungsbereich hinzufügen möchten. Vermeiden sie ungültige Zeichen wie `<>?%&^*#@()[]=+:;"{}\|` im Namen des Nutzers zu verwenden.'
850
- title: CSV-Datei hochladen
850
+ title: Laden Sie Ihre CSV-Datei hoch
851
851
  upload: Hochladen
852
852
  resource_permissions:
853
853
  edit:
@@ -936,9 +936,9 @@ de:
936
936
  update: Aktualisieren
937
937
  form:
938
938
  none: Keiner
939
- slug_help: 'Benutze partielle Pfade, nicht vollständige URLs. Akzeptiert Buchstaben, Zahlen, Bindestriche und Schrägstriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
939
+ slug_help: 'Verwenden Sie hier Teilpfade, nicht die vollständige URL. Buchstaben, Zahlen, Bindestriche und Schrägstriche sind erlaubt; an der ersten Stelle ist ein Buchstabe erforderlich. Beispiel: %{url}'
940
940
  index:
941
- last_notable_change: Letzte bemerkenswerte Änderung
941
+ last_notable_change: Letzte signifikante Änderung
942
942
  new:
943
943
  create: Seite erstellen
944
944
  title: Neue Seite
@@ -1078,6 +1078,6 @@ de:
1078
1078
  newsletters:
1079
1079
  title: Newsletter
1080
1080
  settings:
1081
- title: die Einstellungen
1081
+ title: Einstellungen
1082
1082
  users:
1083
- title: Benutzer
1083
+ title: Teilnehmer
@@ -719,9 +719,6 @@ el:
719
719
  select_scopes: Φιλτράρισμα με βάση χρήστες που έχουν ενεργοποιήσει οποιοδήποτε επιλεγμένο πεδίο εφαρμογής στις ρυθμίσεις «Τα ενδιαφέροντά μου» του λογαριασμού τους.
720
720
  select_spaces: Επιλέξτε χώρους για τμηματοποίηση του ενημερωτικού δελτίου
721
721
  select_users: Επιλέξτε τους χρήστες στους οποίους θέλετε να στείλετε το ενημερωτικό δελτίο
722
- send_to_all_users: Αποστολή σε όλους τους χρήστες
723
- send_to_followers: Αποστολή σε ακολούθους
724
- send_to_participants: Αποστολή σε συμμετέχοντες
725
722
  title: Επιλέξτε παραλήπτες για παράδοση
726
723
  warning: "<strong>Προσοχή:</strong> Αυτό το ενημερωτικό δελτίο θα σταλεί μόνο σε χρήστες που έχουν ενεργοποιήσει την επιλογή <em>Θέλω να λαμβάνω ενημερωτικά δελτία</em> στις ρυθμίσεις ειδοποιήσεών τους."
727
724
  send:
@@ -795,7 +792,6 @@ el:
795
792
  colors:
796
793
  colors_title: Χρώματα οργανισμού
797
794
  header_snippets_help: Χρησιμοποιήστε αυτό το πεδίο για να προσθέσετε στοιχεία στην κεφαλίδα HTML. Η πιο συχνή χρήση είναι η ενσωμάτωση υπηρεσιών τρίτων οι οποίες απαιτούν επιπλέον στοιχεία JavaScript ή CSS. Επίσης, μπορείτε να το χρησιμοποιήσετε για να προσθέσετε επιπλέον ετικέτες μεταδεδομένων στο HTML. Λάβετε υπόψη ότι αυτό θα απεικονίζεται στις δημόσιες σελίδες και όχι στην ενότητα διαχειριστή.
798
- cta_button_path_help: 'Μπορείτε να αντικαταστήσετε το σημείο σύνδεσης του κουμπιού «Call To Action» στην αρχική σελίδα. Χρησιμοποιήστε μερικές διαδρομές, όχι πλήρεις διευθύνσεις URL εδώ. Δέχεται γράμματα, αριθμούς, παύλες και καθέτους, και πρέπει να ξεκινά με γράμμα. Το κουμπί «Call To Action» εμφανίζεται στην αρχική σελίδα μεταξύ του κειμένου καλωσορίσματος και της περιγραφής. Παράδειγμα: διεύθυνση %{url}'
799
795
  cta_button_text_help: Μπορείτε να αντικαταστήσετε το κείμενο του κουμπιού «Call To Action» στην αρχική σελίδα για κάθε διαθέσιμη γλώσσα στον οργανισμό σας. Εάν δεν έχει οριστεί, θα χρησιμοποιηθεί η προεπιλεγμένη τιμή. Το κουμπί «Call To Action» εμφανίζεται στην αρχική σελίδα μεταξύ του κειμένου καλωσορίσματος και της περιγραφής.
800
796
  homepage_appearance_title: Επεξεργασία εμφάνισης αρχικής σελίδας
801
797
  homepage_highlighted_content_banner_title: Επισημασμένο πλαίσιο περιεχομένου
@@ -814,10 +810,6 @@ el:
814
810
  form:
815
811
  add: Προσθήκη στη λευκή λίστα
816
812
  title: Εξωτερική λευκή λίστα τομέων
817
- organization_homepage:
818
- edit:
819
- active_content_blocks: Ενεργά μπλοκ περιεχομένου
820
- inactive_content_blocks: Ανενεργά μπλοκ περιεχομένου
821
813
  organization_homepage_content_blocks:
822
814
  edit:
823
815
  update: Ενημέρωση
@@ -840,7 +832,7 @@ el:
840
832
  success: Η αποστολή του αρχείου CSV ήταν επιτυχής, στέλνουμε email πρόσκλησης στους συμμετέχοντες. Αυτό μπορεί να διαρκέσει μερικά λεπτά.
841
833
  new:
842
834
  explanation: 'Ανεβάστε το αρχείο CSV. Πρέπει να έχει δύο στήλες με το email στην πρώτη στήλη του αρχείου και το όνομα στην τελευταία στήλη του αρχείου (email, όνομα) των χρηστών που θέλετε να προσθέσετε στον συμμετοχικό χώρο, χωρίς επικεφαλίδες. Αποφύγετε τη χρήση άκυρων χαρακτήρων όπως `<>?%&^*#@()[]=+:;"{}\|` στο όνομα χρήστη.'
843
- title: Αποστολή του CSV αρχείου σας
835
+ title: Αποστολή του αρχείου σας CSV
844
836
  upload: Αποστολή
845
837
  resource_permissions:
846
838
  edit:
@@ -929,7 +921,6 @@ el:
929
921
  update: Ενημέρωση
930
922
  form:
931
923
  none: Κανένας
932
- slug_help: 'Χρησιμοποιήστε μερικές διαδρομές, όχι πλήρεις διευθύνσεις URL εδώ. Δέχεται γράμματα, αριθμούς, παύλες και καθέτους, και πρέπει να ξεκινά με γράμμα. Παράδειγμα: διεύθυνση %{url}'
933
924
  index:
934
925
  last_notable_change: Τελευταία σημαντική αλλαγή
935
926
  new:
@@ -725,9 +725,9 @@ es-MX:
725
725
  select_scopes: Filtrar para las participantes que hayan activado cualquier ámbito en su configuración de "Mis intereses".
726
726
  select_spaces: Selecciona espacios para segmentar el boletín
727
727
  select_users: Selecciona a qué usuarios deseas enviar el boletín
728
- send_to_all_users: Enviar a todos los usuarios
729
- send_to_followers: Enviar a los seguidores
730
- send_to_participants: Enviar a los participantes
728
+ send_to_all_users: Enviar a todas las usuarias
729
+ send_to_followers: Enviar a las seguidoras
730
+ send_to_participants: Enviar a las participantes
731
731
  title: Selecciona los destinatarios
732
732
  warning: "<strong>Atención:</strong> Este boletín sólo será enviado a participantes que hayan activado <em>Quiero recibir boletines de noticias</em> en sus ajustes de notificaciones."
733
733
  send:
@@ -802,7 +802,7 @@ es-MX:
802
802
  colors_title: Colores de organizacion
803
803
  colors_warning_html: '¡Advertencia! Cambiar estos colores puede romper los contrastes de accesibilidad. Puedes comprobar el contraste de tu elección con <a href="%{link}">WebAIM Contrast Checker</a> u otras herramientas similares.'
804
804
  header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
805
- cta_button_path_help: 'Puedes sobrescribir el enlace al botón de acción principal en la página principal. Usa rutas parciales, no URLs completas aquí. Acepta letras, números, guiones y barras, y debe comenzar con una letra. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción. Ejemplo: %{url}'
805
+ cta_button_path_help: 'Puedes redirigir la dirección donde enlaza el Botón de Acción principal de la página de inicio donde desees. Usa rutas parciales, no URLs completas aquí. Acepta letras, números, guiones y barras, y debe comenzar con una letra. El Botón de Acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción. Ejemplo: %{url}'
806
806
  cta_button_text_help: Puedes sobrescribir el texto del botón de acción principal en la página de inicio para cada idioma disponible en tu organización. Si no está configurado, se usará el valor predeterminado. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción.
807
807
  homepage_appearance_title: Editar apariencia de página de inicio
808
808
  homepage_highlighted_content_banner_title: Banner de contenido resaltado
@@ -1014,7 +1014,7 @@ es-MX:
1014
1014
  last_week: La última semana
1015
1015
  no_users_count_statistics_yet: Aún no hay estadísticas de recuenteo de usuarias
1016
1016
  participants: Participantes
1017
- view_public_page: Ver página pública
1017
+ view_public_page: Ver la página pública
1018
1018
  forms:
1019
1019
  errors:
1020
1020
  impersonate_user:
@@ -1078,6 +1078,6 @@ es-MX:
1078
1078
  newsletters:
1079
1079
  title: Boletines
1080
1080
  settings:
1081
- title: Ajustes
1081
+ title: Configuración
1082
1082
  users:
1083
- title: Usuarios
1083
+ title: Participantes