decidim-admin 0.20.1 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-admin might be problematic. Click here for more details.

Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -0
  3. data/app/assets/javascripts/decidim/admin/application.js.es6 +1 -0
  4. data/app/assets/javascripts/decidim/admin/bundle.js +5 -5
  5. data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
  6. data/app/assets/javascripts/decidim/admin/newsletters.js.es6 +8 -0
  7. data/app/assets/stylesheets/decidim/admin/_variables.scss +1 -1
  8. data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +6 -0
  9. data/app/assets/stylesheets/decidim/admin/extra/_cards.scss +11 -0
  10. data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +5 -0
  11. data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +11 -0
  12. data/app/assets/stylesheets/decidim/admin/modules/_filters.scss +78 -1
  13. data/app/assets/stylesheets/decidim/admin/modules/_layout.scss +1 -1
  14. data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +5 -1
  15. data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +24 -3
  16. data/app/cells/decidim/admin/results_per_page/show.erb +16 -0
  17. data/app/cells/decidim/admin/results_per_page_cell.rb +14 -0
  18. data/app/commands/decidim/admin/deliver_newsletter.rb +1 -1
  19. data/app/commands/decidim/admin/update_organization.rb +4 -1
  20. data/app/controllers/concerns/decidim/admin/filterable.rb +152 -0
  21. data/app/controllers/concerns/decidim/admin/officializations/filterable.rb +31 -0
  22. data/app/controllers/concerns/decidim/admin/paginable.rb +20 -0
  23. data/app/controllers/decidim/admin/admin_terms_controller.rb +20 -0
  24. data/app/controllers/decidim/admin/application_controller.rb +2 -0
  25. data/app/controllers/decidim/admin/components/base_controller.rb +5 -1
  26. data/app/controllers/decidim/admin/components_controller.rb +16 -20
  27. data/app/controllers/decidim/admin/concerns/has_private_users.rb +4 -0
  28. data/app/controllers/decidim/admin/newsletters_controller.rb +12 -1
  29. data/app/controllers/decidim/admin/officializations_controller.rb +7 -6
  30. data/app/forms/decidim/admin/organization_form.rb +7 -0
  31. data/app/helpers/decidim/admin/admin_terms_helper.rb +47 -0
  32. data/app/helpers/decidim/admin/application_helper.rb +1 -0
  33. data/app/helpers/decidim/admin/dashboard_helper.rb +25 -0
  34. data/app/helpers/decidim/admin/filterable_helper.rb +121 -0
  35. data/app/helpers/decidim/admin/newsletters_helper.rb +18 -0
  36. data/app/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
  37. data/app/helpers/decidim/admin/scopes_helper.rb +6 -0
  38. data/app/helpers/decidim/admin/settings_helper.rb +18 -2
  39. data/app/helpers/decidim/admin/user_roles_helper.rb +19 -0
  40. data/app/permissions/decidim/admin/permissions.rb +23 -6
  41. data/app/queries/decidim/admin/newsletter_recipients.rb +11 -4
  42. data/app/views/decidim/admin/admin_terms/show.html.erb +26 -0
  43. data/app/views/decidim/admin/components/_component.html.erb +35 -33
  44. data/app/views/decidim/admin/components/index.html.erb +10 -8
  45. data/app/views/decidim/admin/dashboard/show.html.erb +15 -0
  46. data/app/views/decidim/admin/newsletters/index.html.erb +9 -3
  47. data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +4 -4
  48. data/app/views/decidim/admin/officializations/index.html.erb +2 -38
  49. data/app/views/decidim/admin/organization/_form.html.erb +16 -0
  50. data/app/views/decidim/admin/shared/_filters.html.erb +40 -0
  51. data/app/views/layouts/decidim/admin/_application.html.erb +1 -1
  52. data/config/locales/ar.yml +40 -6
  53. data/config/locales/ca.yml +45 -6
  54. data/config/locales/cs.yml +45 -6
  55. data/config/locales/de.yml +9 -6
  56. data/config/locales/el.yml +1 -0
  57. data/config/locales/en.yml +45 -6
  58. data/config/locales/es-MX.yml +45 -6
  59. data/config/locales/es-PY.yml +45 -6
  60. data/config/locales/es.yml +45 -6
  61. data/config/locales/eu.yml +9 -6
  62. data/config/locales/fi-plain.yml +45 -6
  63. data/config/locales/fi.yml +45 -6
  64. data/config/locales/fr.yml +9 -6
  65. data/config/locales/gl.yml +9 -6
  66. data/config/locales/hu.yml +45 -6
  67. data/config/locales/id-ID.yml +9 -6
  68. data/config/locales/is-IS.yml +9 -6
  69. data/config/locales/it.yml +45 -6
  70. data/config/locales/nl.yml +28 -6
  71. data/config/locales/no.yml +45 -6
  72. data/config/locales/pl.yml +9 -6
  73. data/config/locales/pt-BR.yml +9 -6
  74. data/config/locales/pt.yml +9 -6
  75. data/config/locales/ru.yml +9 -6
  76. data/config/locales/sv.yml +9 -6
  77. data/config/locales/tr-TR.yml +9 -6
  78. data/config/locales/uk.yml +9 -6
  79. data/config/routes.rb +6 -0
  80. data/db/migrate/20191118112040_add_accepted_admin_terms_at_field_to_users.rb +7 -0
  81. data/lib/decidim/admin.rb +17 -0
  82. data/lib/decidim/admin/form_builder.rb +5 -0
  83. data/lib/decidim/admin/test.rb +2 -0
  84. data/lib/decidim/admin/test/filterable_examples.rb +129 -0
  85. data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +22 -0
  86. data/lib/decidim/admin/version.rb +1 -1
  87. data/vendor/assets/javascripts/jquery.serializejson.js +344 -0
  88. metadata +26 -8
@@ -32,6 +32,10 @@
32
32
  <%= form.collection_select :default_locale, localized_locales(current_organization.available_locales), :id, :name %>
33
33
  </div>
34
34
 
35
+ <div class="row column">
36
+ <%= form.time_zone_select :time_zone %>
37
+ </div>
38
+
35
39
  <div class="row">
36
40
  <div class="columns xlarge-6">
37
41
  <%= form.text_field :reference_prefix %>
@@ -50,6 +54,12 @@
50
54
  </div>
51
55
  </div>
52
56
 
57
+ <div class="row">
58
+ <div class="columns xlarge-6">
59
+ <%= form.check_box :rich_text_editor_in_public_views, help_text: t(".rich_text_editor_in_public_views_help") %>
60
+ </div>
61
+ </div>
62
+
53
63
  <div class="row" id="welcome-notification-details">
54
64
  <div class="columns xlarge-6">
55
65
  <%= form.check_box :send_welcome_notification %>
@@ -64,4 +74,10 @@
64
74
  </div>
65
75
  </div>
66
76
 
77
+ <div class="row">
78
+ <div class="columns xlarge-6">
79
+ <%= form.translated :editor, :admin_terms_of_use_body %>
80
+ </div>
81
+ </div>
82
+
67
83
  <%= javascript_include_tag "decidim/admin/welcome_notification.js" %>
@@ -0,0 +1,40 @@
1
+ <div class="filters__section">
2
+ <div class="fcell filter">
3
+ <ul class="dropdown menu" data-dropdown-menu data-close-on-click-inside="false">
4
+ <li>
5
+ <a href="#" class="dropdown button">
6
+ <%= t("filter_label", scope: "decidim.admin.filters") %>
7
+ </a>
8
+ <%= dropdown_submenu(submenu_options_tree) %>
9
+ </li>
10
+ </ul>
11
+ </div>
12
+ <div class="fcell search">
13
+ <%= search_form_for(query, url: url_for) do |form| %>
14
+ <%= applied_filters_hidden_field_tags %>
15
+ <div class="input-group">
16
+ <%= form.search_field(
17
+ search_field_predicate,
18
+ class: "input-group-field",
19
+ label: false,
20
+ placeholder: t(search_field_predicate,
21
+ collection: collection_name,
22
+ scope: "decidim.admin.filters.search_placeholder")
23
+ ) %>
24
+ <div class="input-group-button">
25
+ <button type="submit" class="button button--muted">
26
+ <%= icon "magnifying-glass", aria_label: t("search_label", scope: "decidim.admin.filters") %>
27
+ </button>
28
+ </div>
29
+ </div>
30
+ <% end %>
31
+ </div>
32
+ </div>
33
+ <div class="card-section fcell grid-x">
34
+ <div class="cell medium-10 filter-status">
35
+ <%= applied_filters_tags %>
36
+ </div>
37
+ <div class="cell auto text-right">
38
+ <%= admin_filters_pagination %>
39
+ </div>
40
+ </div>
@@ -1,5 +1,5 @@
1
1
  <!doctype html>
2
- <html lang="<%= I18n.locale %>">
2
+ <html class="no-js" lang="<%= I18n.locale %>">
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
@@ -70,10 +70,12 @@ ar:
70
70
  port: المَنفذ
71
71
  primary_color: ابتدائي
72
72
  reference_prefix: بادئة المرجع
73
+ rich_text_editor_in_public_views: إتاحة محرر النص الغني للمشارِكين
73
74
  secondary_color: ثانوي
74
75
  send_welcome_notification: إرسال إشعار بالترحيب
75
76
  show_statistics: عرض الإحصائيات
76
77
  success_color: نجاح
78
+ time_zone: المنطقة الزمنية
77
79
  tos_version: شروط وأحكام الخدمة
78
80
  twitter_handler: مُعرّف حساب تويتر
79
81
  user_groups_enabled: تمكين المجموعات
@@ -142,9 +144,21 @@ ar:
142
144
  export: تصدير
143
145
  manage: تدبير
144
146
  new: جديد %{name}
147
+ per_page: في كل صفحة
145
148
  permissions: تصريحات
146
149
  reject: رفض
147
150
  verify: التحقق
151
+ admin_terms_of_use:
152
+ accept:
153
+ success: رائع! لقد قمت بالموافقة على شروط الإستخدام للمدير.
154
+ actions:
155
+ accept: أوافق على شروط المدير هذه
156
+ are_you_sure: هل أنت متأكد مِن أنك رافض لشروط المدير؟
157
+ refuse: ارفض شروط المدير
158
+ title: وافق على شروط وأحكام الإستخدام
159
+ required_review:
160
+ cta: راجِعها الآن.
161
+ title: شروط الاستخدام الخاصة بالمدير
148
162
  area_types:
149
163
  create:
150
164
  error: حدثت مشكلة أثناء إنشاء نوع منطقة جديد.
@@ -274,6 +288,31 @@ ar:
274
288
  exports:
275
289
  export_as: "%{name} ك %{export_format}"
276
290
  notice: التصدير الخاص بك قيد التقدم حاليًا. ستتلقى بريدًا إلكترونيًا عند اكتماله.
291
+ filters:
292
+ category_id_eq:
293
+ label: الفئة
294
+ filter_label: تصفية
295
+ officialized_at_null:
296
+ label: حالة
297
+ values:
298
+ 'false': Officialized
299
+ 'true': غير رسمي
300
+ private_space_eq:
301
+ label: خاص
302
+ values:
303
+ 'false': علني
304
+ 'true': خاص
305
+ published_at_null:
306
+ label: تم نشره
307
+ values:
308
+ 'false': تم نشره
309
+ 'true': لم يُنشَر
310
+ scope_id_eq:
311
+ label: النطاق
312
+ search_label: بحث
313
+ search_placeholder:
314
+ name_or_nickname_or_email_cont: البحث عن %{collection} بحسب عنوان البريد الإكتروني أو الإسم أو الإسم المستعار.
315
+ title_cont: البحث عن %{collection} بحسب العنوان.
277
316
  help_sections:
278
317
  error: حدثت مشكلة أثناء تحديث أقسام المساعدة
279
318
  form:
@@ -453,6 +492,7 @@ ar:
453
492
  not_sent: غير مرسَلة
454
493
  participants: 'مشاركون '
455
494
  segmented_to: 'مقسمه إلى %{subject}: '
495
+ subscribed_count: 'مُشترِك:'
456
496
  title: الرسائل الإخبارية
457
497
  new:
458
498
  save: حفظ
@@ -499,18 +539,12 @@ ar:
499
539
  actions: أفعال
500
540
  badge: شارة
501
541
  created_at: أنشئت في
502
- filter:
503
- all: الكل
504
- not_officialized: غير رسمي
505
- officialized: Officialized
506
- filter_by: مصنف بواسطة
507
542
  name: اسم
508
543
  nickname: كنية
509
544
  not_officialized: غير رسمي
510
545
  officialize: الصفة الرسمية
511
546
  officialized: Officialized
512
547
  reofficialize: Reofficialize
513
- search: بحث
514
548
  status: الحالة
515
549
  unofficialize: Unofficialize
516
550
  new:
@@ -70,10 +70,12 @@ ca:
70
70
  port: Port
71
71
  primary_color: Primària
72
72
  reference_prefix: prefix de referència
73
+ rich_text_editor_in_public_views: Habilitar l'editor de text enriquit
73
74
  secondary_color: Secundari
74
75
  send_welcome_notification: Envia la notificació de benvinguda
75
76
  show_statistics: Mostrar estadístiques
76
77
  success_color: Èxit
78
+ time_zone: Zona horària
77
79
  tos_version: Versió dels Termes de Servei
78
80
  twitter_handler: Nom d'usuària de Twitter
79
81
  user_groups_enabled: Habilitar grups
@@ -142,9 +144,24 @@ ca:
142
144
  export: Exporta
143
145
  manage: Gestionar
144
146
  new: Nou %{name}
147
+ per_page: Per pàgina
145
148
  permissions: Permisos
146
149
  reject: Rebutjar
147
150
  verify: Verificar
151
+ admin_terms_of_use:
152
+ accept:
153
+ error: S'ha produït un error en acceptar els Termes i Condicions dell panell d'administració.
154
+ success: Genial! Has acceptat els Termes i Condicions del panell d'administració.
155
+ actions:
156
+ accept: Estic d'acord amb aquests termes
157
+ are_you_sure: Segur que vols rebutjar els Termes i Condicions del panell d'administració?
158
+ refuse: Rebutjar els termes
159
+ title: Accepto els Termes i Condicions d'Administració
160
+ required_review:
161
+ alert: 'Requerit: Revisa els nostres Termes i Condicions del panell d''administració'
162
+ callout: Si us plau dedica un moment a revisar l'actualització dels nostres Termes i Condicions del panell d'administració. En cas contrari, no podràs utilitzar la plataforma.
163
+ cta: Revisa-les ara.
164
+ title: Termes i Condicions del panell d'administració
148
165
  area_types:
149
166
  create:
150
167
  error: S'ha produït un error en crear un tipus d'àrea nova.
@@ -276,6 +293,31 @@ ca:
276
293
  exports:
277
294
  export_as: "%{name} com a %{export_format}"
278
295
  notice: La teva exportació està actualment en curs. Rebràs un correu electrònic quan hagi finalitzat.
296
+ filters:
297
+ category_id_eq:
298
+ label: Categoria
299
+ filter_label: Filtre
300
+ officialized_at_null:
301
+ label: Estat
302
+ values:
303
+ 'false': Oficialitzada
304
+ 'true': No oficialitzada
305
+ private_space_eq:
306
+ label: Privat
307
+ values:
308
+ 'false': Públic
309
+ 'true': Privat
310
+ published_at_null:
311
+ label: Publicat
312
+ values:
313
+ 'false': Publicat
314
+ 'true': Despublicat
315
+ scope_id_eq:
316
+ label: Àmbit
317
+ search_label: Cercar
318
+ search_placeholder:
319
+ name_or_nickname_or_email_cont: Buscar %{collection} per correu electrònic, nom o àlies.
320
+ title_cont: Buscar %{collection} per títol.
279
321
  help_sections:
280
322
  error: S'ha produït un error en actualitzar les seccions d'ajuda
281
323
  form:
@@ -455,6 +497,7 @@ ca:
455
497
  not_sent: No enviat
456
498
  participants: 'participants '
457
499
  segmented_to: 'Segmentat a %{subject}: '
500
+ subscribed_count: 'Subscrites:'
458
501
  title: Butlletins
459
502
  new:
460
503
  save: Desar
@@ -467,6 +510,7 @@ ca:
467
510
  followers_help: Envia el butlletí a tots els usuaris confirmats que segueixin qualsevol dels espais participatius seleccionats a la llista.
468
511
  none: Cap
469
512
  participants_help: Envia el butlletí a tots els usuaris confirmats que hagin participat a qualsevol dels espais participatius de la llista.
513
+ recipients_count: Aquest bulleti s'enviarà a <strong id='recipients_count'>%{count}</strong> participants.
470
514
  scopes_help: Envia el butlletí als usuaris que tinguin qualsevol dels àmbits seleccionats activat als paràmetres "Els meus interessos" del seu compte.
471
515
  select_scopes: Filtra per als usuaris que hagin activat qualsevol àmbit seleccionat a la configuració "Els meus interessos" del seu compte.
472
516
  select_spaces: Selecciona espais per segmentar el butlletí
@@ -513,18 +557,12 @@ ca:
513
557
  actions: Accions
514
558
  badge: Insígnia
515
559
  created_at: Creat el
516
- filter:
517
- all: Tots
518
- not_officialized: No oficialitzada
519
- officialized: Oficialitzada
520
- filter_by: Filtra per
521
560
  name: Nom
522
561
  nickname: Àlies
523
562
  not_officialized: No oficialitzada
524
563
  officialize: Oficialitza
525
564
  officialized: Oficialitzada
526
565
  reofficialize: Torna a oficialitzar
527
- search: Cerca
528
566
  status: Estat
529
567
  unofficialize: Des-oficialitzar
530
568
  new:
@@ -539,6 +577,7 @@ ca:
539
577
  facebook: Facebook
540
578
  github: GitHub
541
579
  instagram: Instagram
580
+ rich_text_editor_in_public_views_help: En algunes àrees de text, les participants podran inserir algunes etiquetes HTML amb l'editor de text enriquit.
542
581
  social_handlers: Social
543
582
  twitter: Twitter
544
583
  url: URL
@@ -70,10 +70,12 @@ cs:
70
70
  port: Port
71
71
  primary_color: Hlavní
72
72
  reference_prefix: Referenční předpona
73
+ rich_text_editor_in_public_views: Povolit plnohodnotný textový editor pro účastníky
73
74
  secondary_color: Sekundární
74
75
  send_welcome_notification: Odeslat uvítací oznámení
75
76
  show_statistics: Zobrazit statistiky
76
77
  success_color: Úspěch
78
+ time_zone: Časové pásmo
77
79
  tos_version: Verze podmínek služby
78
80
  twitter_handler: Twitter handler
79
81
  user_groups_enabled: Povolit skupiny
@@ -142,9 +144,24 @@ cs:
142
144
  export: Exportovat
143
145
  manage: Spravovat
144
146
  new: Nový %{name}
147
+ per_page: Na stránku
145
148
  permissions: Oprávnění
146
149
  reject: Odmítnout
147
150
  verify: Ověřit
151
+ admin_terms_of_use:
152
+ accept:
153
+ error: Při přijímání správcovských podmínek použití došlo k chybě.
154
+ success: Skvělé! Přijali jste administrátorské podmínky použití.
155
+ actions:
156
+ accept: Souhlasím s těmito podmínkami administrátora
157
+ are_you_sure: Opravdu chcete odmítnout administrátorské podmínky?
158
+ refuse: Odmítnout administrátorské podmínky
159
+ title: Souhlasit s podmínkami používání
160
+ required_review:
161
+ alert: 'Vyžadováno: Zkontrolujte naše administrátorské podmínky použití'
162
+ callout: Věnujte prosím chvilku a přečtěte si administrátorské podmínky použití. V opačném případě nebudete moci platformu spravovat.
163
+ cta: Zkontrolovat je nyní.
164
+ title: Administrátorské podmínky použití
148
165
  area_types:
149
166
  create:
150
167
  error: Při vytváření nového typu oblasti došlo k chybě.
@@ -276,6 +293,31 @@ cs:
276
293
  exports:
277
294
  export_as: "%{name} jako %{export_format}"
278
295
  notice: Váš export právě probíhá. Po jeho dokončení obdržíte e-mail.
296
+ filters:
297
+ category_id_eq:
298
+ label: Kategorie
299
+ filter_label: Filtr
300
+ officialized_at_null:
301
+ label: Stát
302
+ values:
303
+ 'false': Úředně
304
+ 'true': Není oficializováno
305
+ private_space_eq:
306
+ label: Soukromé
307
+ values:
308
+ 'false': Veřejné
309
+ 'true': Soukromé
310
+ published_at_null:
311
+ label: Zveřejněno
312
+ values:
313
+ 'false': Zveřejněno
314
+ 'true': Nezveřejněno
315
+ scope_id_eq:
316
+ label: Rozsah
317
+ search_label: Vyhledávání
318
+ search_placeholder:
319
+ name_or_nickname_or_email_cont: Hledat %{collection} podle e-mailu, jména nebo přezdívky.
320
+ title_cont: Hledat %{collection} podle názvu.
279
321
  help_sections:
280
322
  error: Při aktualizaci sekcí nápovědy došlo k chybě
281
323
  form:
@@ -455,6 +497,7 @@ cs:
455
497
  not_sent: Neodesláno
456
498
  participants: 'uživatelé '
457
499
  segmented_to: 'Rozděleno na %{subject}: '
500
+ subscribed_count: 'Přihlášeno:'
458
501
  title: Zpravodaje
459
502
  new:
460
503
  save: Uložit
@@ -467,6 +510,7 @@ cs:
467
510
  followers_help: Poslat zpravodaj všem potvrzeným uživatelům, kteří sledují všechny vybrané participační prostory v seznamu.
468
511
  none: Žádný
469
512
  participants_help: Odešle newsletter všem potvrzeným uživatelům, kteří se zúčastnili některého z vybraných participačních prostorů v seznamu.
513
+ recipients_count: Tento newsletter bude odeslán <strong id='recipients_count'>%{count}</strong> uživatelům.
470
514
  scopes_help: Odešle newsletter uživatelům, kteří mají některý z vybraných rozsahů aktivovaný v nastavení svého účtu "Moje zájmy".
471
515
  select_scopes: Filtrovat uživatele, kteří aktivovali jakýkoli vybraný rozsah v nastavení jejich účtu Moje Zájmy.
472
516
  select_spaces: Vybrat mezery pro rozdělení zpravodaje
@@ -513,18 +557,12 @@ cs:
513
557
  actions: Akce
514
558
  badge: Odznak
515
559
  created_at: Vytvořeno na
516
- filter:
517
- all: Vše
518
- not_officialized: Není oficializováno
519
- officialized: Úředně
520
- filter_by: Filtrovat podle
521
560
  name: název
522
561
  nickname: Přezdívka
523
562
  not_officialized: Není oficializováno
524
563
  officialize: Úředně
525
564
  officialized: Úředně
526
565
  reofficialize: Reofficialize
527
- search: Vyhledávání
528
566
  status: Postavení
529
567
  unofficialize: Neoficiálně
530
568
  new:
@@ -539,6 +577,7 @@ cs:
539
577
  facebook: Facebook
540
578
  github: GitHub
541
579
  instagram: Instagram
580
+ rich_text_editor_in_public_views_help: V některých textových oblastech budou účastníci moci vložit některé HTML tagy pomocí textového editoru.
542
581
  social_handlers: Sociální
543
582
  twitter: Twitter
544
583
  url: Url
@@ -274,6 +274,15 @@ de:
274
274
  exports:
275
275
  export_as: "%{name} als %{export_format}"
276
276
  notice: Ihr Export wird gerade ausgeführt. Sie erhalten nach Fertigstellung eine E-Mail.
277
+ filters:
278
+ category_id_eq:
279
+ label: Kategorie
280
+ officialized_at_null:
281
+ label: Zustand
282
+ values:
283
+ 'false': Offizialisiert
284
+ 'true': Nicht offiziell
285
+ search_label: Suche
277
286
  help_sections:
278
287
  error: Beim Aktualisieren der Hilfeabschnitte ist ein Fehler aufgetreten
279
288
  form:
@@ -498,18 +507,12 @@ de:
498
507
  actions: Aktionen
499
508
  badge: Abzeichen
500
509
  created_at: Hergestellt in
501
- filter:
502
- all: Alle
503
- not_officialized: Nicht offiziell
504
- officialized: Offizialisiert
505
- filter_by: Filtern nach
506
510
  name: Name
507
511
  nickname: Spitzname
508
512
  not_officialized: Nicht offiziell
509
513
  officialize: Offizialisieren
510
514
  officialized: Offizialisiert
511
515
  reofficialize: Reoffizialisieren
512
- search: Suche
513
516
  status: Status
514
517
  unofficialize: Nicht offiziell
515
518
  new:
@@ -0,0 +1 @@
1
+ el:
@@ -71,10 +71,12 @@ en:
71
71
  port: Port
72
72
  primary_color: Primary
73
73
  reference_prefix: Reference prefix
74
+ rich_text_editor_in_public_views: Enable rich text editor for participants
74
75
  secondary_color: Secondary
75
76
  send_welcome_notification: Send welcome notification
76
77
  show_statistics: Show statistics
77
78
  success_color: Success
79
+ time_zone: Time Zone
78
80
  tos_version: Terms of service version
79
81
  twitter_handler: Twitter handler
80
82
  user_groups_enabled: Enable groups
@@ -143,9 +145,24 @@ en:
143
145
  export: Export
144
146
  manage: Manage
145
147
  new: New %{name}
148
+ per_page: Per page
146
149
  permissions: Permissions
147
150
  reject: Reject
148
151
  verify: Verify
152
+ admin_terms_of_use:
153
+ accept:
154
+ error: There's been an error while accepting the admin terms of use.
155
+ success: Great! You've accepted the admin terms of use.
156
+ actions:
157
+ accept: I agree this admin terms
158
+ are_you_sure: Are you sure to refuse the admin terms?
159
+ refuse: Refuse the admin terms
160
+ title: Agree to the terms and conditions of use
161
+ required_review:
162
+ alert: 'Required: Review our admin terms of use'
163
+ callout: Please take a moment to review Admin Terms of Use. Otherwise you won't be able to admin the platform.
164
+ cta: Review them now.
165
+ title: Admin Terms of Use
149
166
  area_types:
150
167
  create:
151
168
  error: There was a problem creating a new area type.
@@ -277,6 +294,31 @@ en:
277
294
  exports:
278
295
  export_as: "%{name} as %{export_format}"
279
296
  notice: Your export is currently in progress. You'll receive an email when it's complete.
297
+ filters:
298
+ category_id_eq:
299
+ label: Category
300
+ filter_label: Filter
301
+ officialized_at_null:
302
+ label: State
303
+ values:
304
+ 'false': Officialized
305
+ 'true': Not officialized
306
+ private_space_eq:
307
+ label: Private
308
+ values:
309
+ 'false': Public
310
+ 'true': Private
311
+ published_at_null:
312
+ label: Published
313
+ values:
314
+ 'false': Published
315
+ 'true': Unpublished
316
+ scope_id_eq:
317
+ label: Scope
318
+ search_label: Search
319
+ search_placeholder:
320
+ name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
321
+ title_cont: Search %{collection} by title.
280
322
  help_sections:
281
323
  error: There was a problem updating the help sections
282
324
  form:
@@ -456,6 +498,7 @@ en:
456
498
  not_sent: Not sent
457
499
  participants: 'participants '
458
500
  segmented_to: 'Segmented to %{subject}: '
501
+ subscribed_count: 'Subscribed:'
459
502
  title: Newsletters
460
503
  new:
461
504
  save: Save
@@ -468,6 +511,7 @@ en:
468
511
  followers_help: Sends newsletter to all confirmed users that follow any selected participatory spaces in the list.
469
512
  none: None
470
513
  participants_help: Sends newsletter to all confirmed users that have participated in any of the selected participatory spaces in the list.
514
+ recipients_count: This newsletter will be send to <strong id='recipients_count'>%{count}</strong> users.
471
515
  scopes_help: Sends newsletter to users that have any of the selected scope activated in their account's "My Interests" settings.
472
516
  select_scopes: Filter for users having activated any selected scope in their account's My Interests settings.
473
517
  select_spaces: Select spaces to segment the newsletter
@@ -514,18 +558,12 @@ en:
514
558
  actions: Actions
515
559
  badge: Badge
516
560
  created_at: Created At
517
- filter:
518
- all: All
519
- not_officialized: Not officialized
520
- officialized: Officialized
521
- filter_by: Filter by
522
561
  name: Name
523
562
  nickname: Nickname
524
563
  not_officialized: Not officialized
525
564
  officialize: Officialize
526
565
  officialized: Officialized
527
566
  reofficialize: Reofficialize
528
- search: Search
529
567
  status: Status
530
568
  unofficialize: Unofficialize
531
569
  new:
@@ -540,6 +578,7 @@ en:
540
578
  facebook: Facebook
541
579
  github: GitHub
542
580
  instagram: Instagram
581
+ rich_text_editor_in_public_views_help: In some text areas, participants will be able to insert some HTML tags by using the rich text editor.
543
582
  social_handlers: Social
544
583
  twitter: Twitter
545
584
  url: Url