decidim-admin 0.31.0.rc1 → 0.31.0.rc2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c34cd47009937e22b9702e072abd4ed2b202b23b76d6977a1e82eb777dfa1fde
4
- data.tar.gz: 536f248f74f2b6c02c0d486b7d8c0237a9e714816b6a1d6be9fd4efb9e4de5f8
3
+ metadata.gz: 32abf87a4eb87254ce989593ab5cce3b149d143b2729094ffce3b5c1eafd0f3a
4
+ data.tar.gz: 8efd5fc04ee68a48ed3af0111a055ffd23afbc757187f433077b675e9534ae87
5
5
  SHA512:
6
- metadata.gz: 840132645dcff9896ac71fd53b2feb8dc4f3026ec9d1b855951b1285d3e914dd100bdb437269ef0e411195a1b8346761e8232f2ddc1833196a1343a49fe51d84
7
- data.tar.gz: 91dd77784880249c7909850780737c7dcbc6f0d619f3e553bbc677fcfac177e1504b790df63edf1a87d052d35fdf520c16400c53ac5799b3d43f648bc9e21f26
6
+ metadata.gz: d6a53b0abbe424b34f14337ca4c3ab33aad36551eccf8f96008fbb7677c4e10b6aaf20ff8c341f053679480ba4c822e06f0c5239c82fd4fb0af5d357e1f3feca
7
+ data.tar.gz: '04914cf45bf509f40a2b3f9abd4397ab470beb80256cad9ccde90b6da44cd78ec5432f86a47225a6d0261ab65bc8b088afd3db05d98d9c42c136f8368aef05dd'
@@ -49,24 +49,33 @@
49
49
  }
50
50
  }
51
51
 
52
- .questionnaire-question {
53
- button[aria-expanded="true"] {
54
- .icon-collapse {
55
- @apply block;
56
- }
52
+ .questionnaire-questions {
53
+ .questionnaire-question {
54
+ transition: all 0.2s ease;
57
55
 
58
- .icon-expand {
59
- @apply hidden;
56
+ svg[role="img"] {
57
+ cursor: default !important;
58
+ transition: color 0.2s ease;
60
59
  }
61
- }
62
60
 
63
- button[aria-expanded="false"] {
64
- .icon-collapse {
65
- @apply hidden;
61
+ button[aria-expanded="true"] {
62
+ .icon-collapse {
63
+ @apply block;
64
+ }
65
+
66
+ .icon-expand {
67
+ @apply hidden;
68
+ }
66
69
  }
67
70
 
68
- .icon-expand {
69
- @apply block;
71
+ button[aria-expanded="false"] {
72
+ .icon-collapse {
73
+ @apply hidden;
74
+ }
75
+
76
+ .icon-expand {
77
+ @apply block;
78
+ }
70
79
  }
71
80
  }
72
81
  }
@@ -21,12 +21,21 @@
21
21
  <tbody>
22
22
  <% @users.each do |user| %>
23
23
  <tr data-user-id="<%= user.id %>">
24
- <td data-label="<%= t(".name") %>">
25
- <%= link_to_if user.nickname.present?, user.name, decidim.profile_path(user.nickname) %>
26
- </td>
27
- <td data-label="<%= t(".nickname") %>">
28
- <%= link_to_if user.nickname.present?, user.nickname, decidim.profile_path(user.nickname) %>
29
- </td>
24
+ <% if user.nickname.present? %>
25
+ <td data-label="<%= t(".name") %>">
26
+ <%= link_to user.name, decidim.profile_path(user.nickname) %>
27
+ </td>
28
+ <td data-label="<%= t(".nickname") %>">
29
+ <%= link_to user.nickname, decidim.profile_path(user.nickname) %>
30
+ </td>
31
+ <% else %>
32
+ <td data-label="<%= t(".name") %>">
33
+ <%= user.name %>
34
+ </td>
35
+ <td data-label="<%= t(".nickname") %>">
36
+ <%= user.nickname %>
37
+ </td>
38
+ <% end %>
30
39
  <td data-label="<%= t(".created_at") %>">
31
40
  <%= l user.created_at, format: :short %>
32
41
  </td>
@@ -48,7 +48,7 @@
48
48
  <input id="preview-tertiary" type="hidden">
49
49
  </label>
50
50
 
51
- <button id="set-colors" class="button button__sm button__secondary">
51
+ <button id="set-colors" type="button" class="button button__sm button__secondary">
52
52
  <%= t("update_suggested_colors", scope: "decidim.admin.organization.form.colors") %>
53
53
  </button>
54
54
  </fieldset>
@@ -49,6 +49,7 @@ ca-IT:
49
49
  customize_welcome_notification: Personalitza la notificació de benvinguda
50
50
  default_locale: Idioma per defecte
51
51
  description: Descripció
52
+ enable_machine_translations: Habilitar traduccions automàtiques
52
53
  enable_omnipresent_banner: Mostrar el banner omnipresent
53
54
  enable_participatory_space_filters: Habilitar els filtres a l'espai de participació
54
55
  facebook_handler: Nom d'usuari de Facebook
@@ -843,7 +844,7 @@ ca-IT:
843
844
  success: S'ha retirat correctament l'oficialització de la participant.
844
845
  index:
845
846
  actions: Accions
846
- badge: Insígnia
847
+ badge: Ensenya
847
848
  block: Bloquejar
848
849
  created_at: Creat el
849
850
  name: Nom
@@ -859,7 +860,7 @@ ca-IT:
859
860
  unblock: Desbloquejar
860
861
  unofficialize: Des-oficialitzar
861
862
  new:
862
- badge: Insígnia d'oficialització
863
+ badge: Ensenya d'oficialització
863
864
  officialize: Oficialitza
864
865
  title: Oficialitza la participant "%{name}"
865
866
  show_email_modal:
@@ -49,6 +49,7 @@ ca:
49
49
  customize_welcome_notification: Personalitza la notificació de benvinguda
50
50
  default_locale: Idioma per defecte
51
51
  description: Descripció
52
+ enable_machine_translations: Habilitar traduccions automàtiques
52
53
  enable_omnipresent_banner: Mostrar el banner omnipresent
53
54
  enable_participatory_space_filters: Habilitar els filtres a l'espai de participació
54
55
  facebook_handler: Nom d'usuari de Facebook
@@ -843,7 +844,7 @@ ca:
843
844
  success: S'ha retirat correctament l'oficialització de la participant.
844
845
  index:
845
846
  actions: Accions
846
- badge: Insígnia
847
+ badge: Ensenya
847
848
  block: Bloquejar
848
849
  created_at: Creat el
849
850
  name: Nom
@@ -859,7 +860,7 @@ ca:
859
860
  unblock: Desbloquejar
860
861
  unofficialize: Des-oficialitzar
861
862
  new:
862
- badge: Insígnia d'oficialització
863
+ badge: Ensenya d'oficialització
863
864
  officialize: Oficialitza
864
865
  title: Oficialitza la participant "%{name}"
865
866
  show_email_modal:
@@ -49,6 +49,7 @@ cs:
49
49
  customize_welcome_notification: Přizpůsobit uvítací oznámení
50
50
  default_locale: Výchozí jazyk
51
51
  description: Popis
52
+ enable_machine_translations: Povolit strojové překlady
52
53
  enable_omnipresent_banner: Zobrazit všudypřítomný banner
53
54
  enable_participatory_space_filters: Povolit filtry participačního prostoru
54
55
  facebook_handler: Facebook handler
@@ -49,6 +49,7 @@ de:
49
49
  customize_welcome_notification: Willkommens-Benachrichtigung anpassen
50
50
  default_locale: Standardgebietsschema
51
51
  description: Beschreibung
52
+ enable_machine_translations: Maschinelle Übersetzungen aktivieren
52
53
  enable_omnipresent_banner: Zeige allgegenwärtiges Banner
53
54
  enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
54
55
  facebook_handler: Facebook-Handler
@@ -805,7 +806,7 @@ de:
805
806
  select_conferences: Konferenzen auswählen
806
807
  select_initiatives: Initiativen auswählen
807
808
  select_participatory_processes: Beteiligungsprozesse auswählen
808
- select_spaces: Wählen Sie Abschnitte, um den Newsletter zu unterteilen
809
+ select_spaces: Bereiche zum Segmentieren des Newsletters auswählen
809
810
  select_users_for_participatory_space: Newsletter an einen oder mehrere partizipative Bereiche senden
810
811
  select_users_general: Plattformweiter Newsletter senden
811
812
  select_verification_types: Verifizierungsmethoden auswählen
@@ -49,6 +49,7 @@ en:
49
49
  customize_welcome_notification: Customize welcome notification
50
50
  default_locale: Default locale
51
51
  description: Description
52
+ enable_machine_translations: Enable machine translations
52
53
  enable_omnipresent_banner: Show omnipresent banner
53
54
  enable_participatory_space_filters: Enable participatory space filters
54
55
  facebook_handler: Facebook handler
@@ -49,6 +49,7 @@ es-MX:
49
49
  customize_welcome_notification: Personalizar notificación de bienvenida
50
50
  default_locale: Idioma predeterminado
51
51
  description: Descripción
52
+ enable_machine_translations: Habilitar traducciones automáticas
52
53
  enable_omnipresent_banner: Mostrar banner omnipresente
53
54
  enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
54
55
  facebook_handler: Nombre en Facebook
@@ -49,6 +49,7 @@ es-PY:
49
49
  customize_welcome_notification: Personalizar notificación de bienvenida
50
50
  default_locale: Idioma predeterminado
51
51
  description: Descripción
52
+ enable_machine_translations: Habilitar traducciones automáticas
52
53
  enable_omnipresent_banner: Mostrar banner omnipresente
53
54
  enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
54
55
  facebook_handler: Nombre en Facebook
@@ -49,6 +49,7 @@ es:
49
49
  customize_welcome_notification: Personalizar notificación de bienvenida
50
50
  default_locale: Idioma predeterminado
51
51
  description: Descripción
52
+ enable_machine_translations: Habilitar traducciones automáticas
52
53
  enable_omnipresent_banner: Mostrar banner omnipresente
53
54
  enable_participatory_space_filters: Habilitar los filtros en el espacio de participación
54
55
  facebook_handler: Nombre en Facebook
@@ -49,6 +49,7 @@ eu:
49
49
  customize_welcome_notification: Pertsonalizatu ongi etorri jakinarazpena
50
50
  default_locale: Kokapen lehenetsia
51
51
  description: Deskribapena
52
+ enable_machine_translations: Gaitu itzulpen automatikoak
52
53
  enable_omnipresent_banner: Erakutsi banner nonahikoa
53
54
  enable_participatory_space_filters: Gaitu iragazkiak parte hartzeko espazioan
54
55
  facebook_handler: Facebook kudeatzailea
@@ -49,6 +49,7 @@ fi-pl:
49
49
  customize_welcome_notification: Muokkaa tervetuloilmoitusta
50
50
  default_locale: Oletuskieli
51
51
  description: Kuvaus
52
+ enable_machine_translations: Ota konekäännökset käyttöön
52
53
  enable_omnipresent_banner: Näytä kaikkialla näkyvä banneri
53
54
  enable_participatory_space_filters: Ota käyttöön osallistumistilan suodattimet
54
55
  facebook_handler: Facebook-käsittelijä
@@ -49,6 +49,7 @@ fi:
49
49
  customize_welcome_notification: Muokkaa tervetuloilmoitusta
50
50
  default_locale: Oletuskieli
51
51
  description: Kuvaus
52
+ enable_machine_translations: Ota konekäännökset käyttöön
52
53
  enable_omnipresent_banner: Näytä kaikkialla näkyvä banneri
53
54
  enable_participatory_space_filters: Ota käyttöön osallistumistilan suodattimet
54
55
  facebook_handler: Facebook-käsittelijä
@@ -49,6 +49,7 @@ ja:
49
49
  customize_welcome_notification: ウェルカム通知をカスタマイズ
50
50
  default_locale: 既定のロケール:
51
51
  description: 説明
52
+ enable_machine_translations: 機械翻訳を有効にする
52
53
  enable_omnipresent_banner: Omnipresentバナーを表示
53
54
  enable_participatory_space_filters: 参加型スペースフィルタを有効にする
54
55
  facebook_handler: Facebook ハンドラー
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-admin version.
5
5
  module Admin
6
6
  def self.version
7
- "0.31.0.rc1"
7
+ "0.31.0.rc2"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0.rc1
4
+ version: 0.31.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-09-25 00:00:00.000000000 Z
13
+ date: 2025-10-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: active_link_to
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.31.0.rc1
35
+ version: 0.31.0.rc2
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.31.0.rc1
42
+ version: 0.31.0.rc2
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: devise
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -94,28 +94,28 @@ dependencies:
94
94
  requirements:
95
95
  - - '='
96
96
  - !ruby/object:Gem::Version
97
- version: 0.31.0.rc1
97
+ version: 0.31.0.rc2
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - '='
103
103
  - !ruby/object:Gem::Version
104
- version: 0.31.0.rc1
104
+ version: 0.31.0.rc2
105
105
  - !ruby/object:Gem::Dependency
106
106
  name: decidim-participatory_processes
107
107
  requirement: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - '='
110
110
  - !ruby/object:Gem::Version
111
- version: 0.31.0.rc1
111
+ version: 0.31.0.rc2
112
112
  type: :development
113
113
  prerelease: false
114
114
  version_requirements: !ruby/object:Gem::Requirement
115
115
  requirements:
116
116
  - - '='
117
117
  - !ruby/object:Gem::Version
118
- version: 0.31.0.rc1
118
+ version: 0.31.0.rc2
119
119
  description: Organization administration to manage a single organization.
120
120
  email:
121
121
  - josepjaume@gmail.com