decidim-decidim_awesome 0.6.3 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -7
  3. data/app/assets/config/decidim_admin_decidim_awesome_manifest.js +1 -0
  4. data/app/assets/config/decidim_decidim_awesome_manifest.js +1 -1
  5. data/app/assets/javascripts/decidim/decidim_awesome/admin.js +1 -0
  6. data/app/assets/javascripts/decidim/decidim_awesome/admin/codemirror.js.es6 +15 -0
  7. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/hashtags.js.es6 +48 -0
  8. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/layers.js.es6 +106 -0
  9. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/map.js.es6 +166 -170
  10. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/markers.js.es6 +56 -0
  11. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/meetings.js.es6 +6 -5
  12. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/proposals.js.es6 +17 -4
  13. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/utilities.js.es6 +48 -0
  14. data/app/assets/javascripts/decidim/decidim_awesome/editors/legacy_quill_editor.js.es6 +160 -0
  15. data/app/assets/javascripts/decidim/decidim_awesome/editors/quill_editor.js.es6 +16 -5
  16. data/app/assets/javascripts/decidim/decidim_awesome/legacy_admin.js +3 -0
  17. data/app/assets/javascripts/decidim/decidim_awesome/legacy_application.js +4 -0
  18. data/app/assets/stylesheets/decidim/decidim_awesome/admin.scss +10 -3
  19. data/app/assets/stylesheets/decidim/decidim_awesome/admin/codemirror.scss +16 -0
  20. data/app/assets/stylesheets/decidim/decidim_awesome/awesome_map/leaflet.scss.erb +9 -0
  21. data/app/assets/stylesheets/decidim/decidim_awesome/awesome_map/map.scss +95 -0
  22. data/app/assets/stylesheets/decidim/decidim_awesome/editors/markdown_editor.scss +1 -1
  23. data/app/awesome_overrides/presenters/decidim/menu_presenter_override.rb +39 -0
  24. data/app/awesome_overrides/presenters/decidim/proposals/proposal_presenter_override.rb +3 -9
  25. data/app/commands/decidim/decidim_awesome/admin/create_menu_hack.rb +51 -0
  26. data/app/commands/decidim/decidim_awesome/admin/destroy_menu_hack.rb +47 -0
  27. data/app/commands/decidim/decidim_awesome/admin/update_config.rb +5 -2
  28. data/app/commands/decidim/decidim_awesome/admin/update_menu_hack.rb +47 -0
  29. data/app/controllers/decidim/decidim_awesome/admin/application_controller.rb +4 -3
  30. data/app/controllers/decidim/decidim_awesome/admin/checks_controller.rb +1 -1
  31. data/app/controllers/decidim/decidim_awesome/admin/config_controller.rb +12 -3
  32. data/app/controllers/decidim/decidim_awesome/admin/constraints_controller.rb +13 -0
  33. data/app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb +116 -0
  34. data/app/controllers/decidim/decidim_awesome/map_component/map_controller.rb +1 -4
  35. data/app/forms/decidim/decidim_awesome/admin/config_form.rb +21 -2
  36. data/app/forms/decidim/decidim_awesome/admin/constraint_form.rb +0 -2
  37. data/app/forms/decidim/decidim_awesome/admin/intergram_form.rb +0 -2
  38. data/app/forms/decidim/decidim_awesome/admin/menu_form.rb +39 -0
  39. data/app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb +5 -1
  40. data/app/helpers/decidim/decidim_awesome/map_helper.rb +12 -50
  41. data/app/permissions/decidim/decidim_awesome/admin/permissions.rb +19 -0
  42. data/app/permissions/decidim/decidim_awesome/permissions.rb +2 -0
  43. data/app/uploaders/decidim/decidim_awesome/image_uploader.rb +0 -5
  44. data/app/views/decidim/decidim_awesome/admin/checks/index.html.erb +1 -1
  45. data/app/views/decidim/decidim_awesome/admin/config/_form_styles.html.erb +1 -1
  46. data/app/views/decidim/decidim_awesome/admin/config/show.html.erb +1 -2
  47. data/app/views/decidim/decidim_awesome/admin/menu_hacks/_form.html.erb +7 -0
  48. data/app/views/decidim/decidim_awesome/admin/menu_hacks/edit.html.erb +13 -0
  49. data/app/views/decidim/decidim_awesome/admin/menu_hacks/index.html.erb +44 -0
  50. data/app/views/decidim/decidim_awesome/admin/menu_hacks/new.html.erb +13 -0
  51. data/app/views/decidim/decidim_awesome/map_component/map/show.html.erb +4 -31
  52. data/app/views/layouts/decidim/admin/decidim_awesome.html.erb +5 -0
  53. data/app/views/layouts/decidim/decidim_awesome/_awesome_config.html.erb +4 -1
  54. data/app/views/v0.23/layouts/decidim/_head.html.erb +1 -1
  55. data/app/views/v0.23/layouts/decidim/admin/_header.html.erb +1 -1
  56. data/app/views/{v0.22 → v0.24}/layouts/decidim/_head.html.erb +2 -0
  57. data/app/views/{v0.22 → v0.24}/layouts/decidim/admin/_header.html.erb +1 -0
  58. data/config/locales/ca.yml +70 -2
  59. data/config/locales/cs.yml +71 -3
  60. data/config/locales/en.yml +61 -4
  61. data/config/locales/es.yml +70 -2
  62. data/config/locales/eu.yml +225 -0
  63. data/config/locales/fr.yml +172 -104
  64. data/config/locales/nl.yml +225 -0
  65. data/config/locales/sv.yml +93 -25
  66. data/lib/decidim/decidim_awesome.rb +15 -0
  67. data/lib/decidim/decidim_awesome/admin_engine.rb +1 -0
  68. data/lib/decidim/decidim_awesome/awesome_helpers.rb +1 -1
  69. data/lib/decidim/decidim_awesome/checksums.yml +7 -4
  70. data/lib/decidim/decidim_awesome/config.rb +1 -3
  71. data/lib/decidim/decidim_awesome/engine.rb +3 -3
  72. data/lib/decidim/decidim_awesome/iframe_component/component.rb +1 -1
  73. data/lib/decidim/decidim_awesome/map_component/component.rb +8 -2
  74. data/lib/decidim/decidim_awesome/menu_hacker.rb +90 -0
  75. data/lib/decidim/decidim_awesome/system_checker.rb +1 -1
  76. data/lib/decidim/decidim_awesome/test/shared_examples/config_examples.rb +4 -2
  77. data/lib/decidim/decidim_awesome/test/shared_examples/menu_hack_contexts.rb +71 -0
  78. data/lib/decidim/decidim_awesome/version.rb +2 -2
  79. data/vendor/assets/javascripts/codemirror.js +9801 -0
  80. data/vendor/assets/javascripts/jquery.truncate.js +105 -0
  81. data/vendor/assets/javascripts/keymap/sublime.js +720 -0
  82. data/vendor/assets/javascripts/mode/css/css.js +864 -0
  83. data/vendor/assets/stylesheets/codemirror.css +350 -0
  84. data/vendor/assets/stylesheets/inscrybmde.min.scss +180 -0
  85. metadata +61 -20
  86. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/legacy_map.js.es6 +0 -225
  87. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/legacy_proposals.js.es6 +0 -82
  88. data/vendor/assets/stylesheets/inscrybmde.min.css +0 -8
@@ -29,6 +29,12 @@ en:
29
29
  component_manifest: Only in components of type
30
30
  participatory_space_manifest: Apply to participatory spaces of type
31
31
  participatory_space_slug: Only in
32
+ menu:
33
+ position: Position
34
+ raw_label: Label
35
+ target: Opens in
36
+ url: URL
37
+ visibility: Visibility
32
38
  decidim:
33
39
  admin:
34
40
  menu:
@@ -55,7 +61,16 @@ en:
55
61
  global:
56
62
  announcement: Announcement
57
63
  collapse: Start with collapsed menu
64
+ map_center: Map center (Latitude, Longitude)
65
+ map_center_help: 'Use decimal points (ie: 41.38879, 2.15899). Leave it
66
+ empty to automatically fit all the markers'
58
67
  map_height: Map height (px)
68
+ map_zoom: Zoom (any number betwen 0 and 18)
69
+ map_zoom_help: Only applies if a map center is defined
70
+ menu_amendments: Show amendments
71
+ menu_hashtags: Show Hasthag search menu
72
+ menu_meetings: Show meetings
73
+ truncate: Maximum characters for popup descriptions
59
74
  step:
60
75
  announcement: Announcement
61
76
  show_accepted: Show accepted proposals
@@ -88,12 +103,14 @@ en:
88
103
  title: 'Applicable only in these cases:'
89
104
  create_scoped_style:
90
105
  error: Error creating a new CSS box! %{error}
91
- success: CSS box %{key} created successfully!
106
+ success: CSS box %{key} created successfully
92
107
  destroy_scoped_style:
93
108
  error: Error removing CSS box! %{error}
94
- success: CSS box %{key} removed successfully!
109
+ success: CSS box %{key} removed successfully
95
110
  experimental: Experimental options
96
111
  form:
112
+ errors:
113
+ incorrect_css: 'CSS in box #%{key} is invalid'
97
114
  help:
98
115
  allow_images_in_full_editor: This will add an image uploader icon in
99
116
  all the editors WYSIWYG with the full toolbar enabled.
@@ -137,7 +154,7 @@ en:
137
154
  system: Everywhere except participatory spaces
138
155
  update:
139
156
  error: Error updating configuration! %{error}
140
- success: Configuration updated successfully!
157
+ success: Configuration updated successfully
141
158
  constraints:
142
159
  create:
143
160
  error: Error creating condition case
@@ -162,9 +179,46 @@ en:
162
179
  checks: System compatibility
163
180
  editors: Editor hacks
164
181
  livechat: Live Chat
182
+ menu_hacks: Menu tweaks
165
183
  proposals: Proposals hacks
166
184
  styles: Custom styles
167
185
  surveys: Surveys & forms
186
+ menu_hacks:
187
+ create:
188
+ error: Error creating menu item! %{error}
189
+ success: Menu item created successfully
190
+ destroy:
191
+ error: Error removing menu item! %{error}
192
+ success: Menu item removed successfully
193
+ edit:
194
+ save: Save
195
+ title: Edit menu item
196
+ form:
197
+ label_help: Translations aren't automatically detected, be sure to fill
198
+ in all the fields!
199
+ target:
200
+ blank: New window
201
+ self: Same window
202
+ visibility:
203
+ default: Visible
204
+ hidden: Always hidden
205
+ logged: Only visible for logged users
206
+ non_logged: Only visible for non-logged users
207
+ index:
208
+ confirm_destroy: Are you sure to remove this customization?
209
+ edit: Edit
210
+ new: New item
211
+ remove: Remove addition
212
+ remove_hack: Remove customization
213
+ title: Main menu
214
+ new:
215
+ save: Save
216
+ title: New menu item
217
+ update:
218
+ error: Error updating menu item! %{error}
219
+ success: Menu item updated successfully
220
+ url_exists: The same URL is already configured, please edit that instead
221
+ of creating it again.
168
222
  config:
169
223
  intergram:
170
224
  auto_no_response: It seems that no one is available to answer right now.
@@ -178,7 +232,7 @@ en:
178
232
  editor_images:
179
233
  create:
180
234
  error: Error uploading image!
181
- success: Image uploaded successfully!
235
+ success: Image uploaded successfully
182
236
  map_component:
183
237
  map:
184
238
  error:
@@ -202,5 +256,8 @@ en:
202
256
  autosaved_success: Data saved in local storage
203
257
  categories: Categories
204
258
  drag_and_drop_image: Add images by dragging & dropping or pasting them.
259
+ hashtags: Hashtags
260
+ items: items
205
261
  meetings: Meetings
206
262
  proposals: Proposals
263
+ select_deselect_all: Select/deselect all
@@ -17,12 +17,19 @@ es:
17
17
  intergram_title_closed: Título del chat cerrado
18
18
  intergram_title_open: Título del chat abierto
19
19
  intergram_use_floating_button: Si está marcado, el chat cerrado siempre es un botón en lugar de un texto
20
+ scoped_styles: 'Estilos personalizados #%{id}'
20
21
  use_markdown_editor: Utilizar el editor Markdown en lugar del editor HTML
21
22
  constraint:
22
23
  component_id: o específicamente en
23
24
  component_manifest: Solo en componentes de tipo
24
25
  participatory_space_manifest: Aplicar en los espacios participativos de tipo
25
26
  participatory_space_slug: Solo en
27
+ menu:
28
+ position: Posición
29
+ raw_label: Etiqueta
30
+ target: Abrir en
31
+ url: URL
32
+ visibility: Visibilidad
26
33
  decidim:
27
34
  admin:
28
35
  menu:
@@ -46,7 +53,15 @@ es:
46
53
  global:
47
54
  announcement: Anuncio
48
55
  collapse: Iniciar con el menú contraído
56
+ map_center: Centro del mapa (Latitud, Longitud)
57
+ map_center_help: 'Utiliza un punto para marcar los decimales (pe: 41.38879, 2.15899). Deja este campo vacío para incluir automáticamente todos los marcadores'
49
58
  map_height: Altura del mapa (px)
59
+ map_zoom: Zoom (cualquier número entre 0 y 18)
60
+ map_zoom_help: Solo aplica si se define el punto central del mapa
61
+ menu_amendments: Mostrar enmiendas
62
+ menu_hashtags: Mostrar el menú de búsqueda por Hashtag
63
+ menu_meetings: Mostrar encuentros
64
+ truncate: Número máximo de caracteres para las descripciones emergentes
50
65
  step:
51
66
  announcement: Anuncio
52
67
  show_accepted: Muestra las propuestas aceptadas
@@ -75,8 +90,16 @@ es:
75
90
  delete: Eliminar
76
91
  edit: Editar
77
92
  title: 'Se aplica solo en estos casos:'
93
+ create_scoped_style:
94
+ error: '¡Error al crear una nueva caja CSS! %{error}'
95
+ success: Caja CSS %{key} creada correctamente
96
+ destroy_scoped_style:
97
+ error: '¡Error al eliminar la caja CSS! %{error}'
98
+ success: Caja CSS %{key} eliminada correctamente
78
99
  experimental: Opciones experimentales
79
100
  form:
101
+ errors:
102
+ incorrect_css: 'El CSS de la caja #%{key} no es válido'
80
103
  help:
81
104
  allow_images_in_full_editor: Esto añadirá un botón para subir imágenes en el editor HTML completo.
82
105
  allow_images_in_markdown_editor: Esto permitirá al editor markdown subir imágenes con "copiar & pegar" o con "arrastrar & soltar".
@@ -86,7 +109,13 @@ es:
86
109
  drag_and_drop_supported: Cuando se suban imágenes, se puede hacer a través del método "arrastrar & soltar". Las imágenes se subirán en el servidor y se insertarán como recursos externos (no se utiliza codificación en línea base64).
87
110
  intergram_about: Intergram utiliza el Telegram Messenger para gestionar un widget de chat de soporte incrustado en la parte inferior de la página.
88
111
  intergram_config: 'Invita a la <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bot</a> a tu grupo o inicia un chat con ella directamente. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
112
+ scoped_styles: Crea CSS personalizados que solo se apliquen en ciertas partes de la web pública (para ello, utiliza el editor de restricciones)
113
+ scoped_styles_variables: 'Puedes utilizar las siguientes variables CSS para los colores personalizados de la organización:'
89
114
  use_markdown_editor: Esto sustituirá al editor HTML (Quill), utilice un editor de Markdown en su lugar. El texto se mostrará como HTML en las páginas públicas (en la base de datos, el texto se almacenará como markdown)
115
+ form_styles:
116
+ new: Añadir una nueva caja CSS
117
+ remove: Eliminar esta caja CSS
118
+ sure_to_remove: '¿Estás segura de que quieres eliminar esta caja CSS?'
90
119
  rich_text_editor_in_public_views: 'NOTA: "Editor de texto enriquecido para participantes" está habilitado, esta opción no se aplicará. Utiliza las modificaciones del editor general para añadir imágenes a las propuestas.'
91
120
  show:
92
121
  title: Ajustes para %{setting}
@@ -94,7 +123,7 @@ es:
94
123
  system: En todas partes excepto en espacios participativos
95
124
  update:
96
125
  error: '¡Error actualizando la configuración! %{error}'
97
- success: Configuración actualizada correctamente!'
126
+ success: Configuración actualizada correctamente
98
127
  constraints:
99
128
  create:
100
129
  error: Error creando una nueva restricción
@@ -119,8 +148,44 @@ es:
119
148
  checks: Compatibilidad del sistema
120
149
  editors: Modificaciones a los editores
121
150
  livechat: Chat en vivo
151
+ menu_hacks: Ajustes en el menú
122
152
  proposals: Modificaciones a las propuestas
153
+ styles: Estilos personalizados
123
154
  surveys: Encuestas y formularios
155
+ menu_hacks:
156
+ create:
157
+ error: 'Error al crear nuevo ítem de menú: %{error}'
158
+ success: Ítem de menú creado correctamente
159
+ destroy:
160
+ error: 'Error al eliminar ítem de menú: %{error}'
161
+ success: Ítem de menú eliminado correctamente
162
+ edit:
163
+ save: Guardar
164
+ title: Editar ítem de menú
165
+ form:
166
+ label_help: Las traducciones no se detectan automáticamente, ¡asegúrate de rellenar todos los campos!
167
+ target:
168
+ blank: Nueva ventana
169
+ self: La misma ventana
170
+ visibility:
171
+ default: Visible
172
+ hidden: Siempre oculto
173
+ logged: Solo visible para usuarias logeadas
174
+ non_logged: Solo visible para usuarias no logeadas
175
+ index:
176
+ confirm_destroy: '¿Estás segura que quieres eliminar este elemento?'
177
+ edit: Editar
178
+ new: Crear nuevo ítem
179
+ remove: Eliminar adición
180
+ remove_hack: Eliminar personalización
181
+ title: Menú principal
182
+ new:
183
+ save: Guardar
184
+ title: Nuevo ítem de menú
185
+ update:
186
+ error: 'Error al actualizar el ítem de menú: %{error}'
187
+ success: Ítem de menú actualizado correctamente
188
+ url_exists: Esta URL ya ha sido configurada en otro ítem de menú, por favor edítalo en lugar de crear uno nuevo.
124
189
  config:
125
190
  intergram:
126
191
  auto_no_response: Parece que no hay nadie disponible para responder en este momento. Por favor, indícanos cómo te podemos contactar y nos comunicaremos contigo lo antes posible.
@@ -132,7 +197,7 @@ es:
132
197
  editor_images:
133
198
  create:
134
199
  error: '¡Error cargando imagen!'
135
- success: '¡La imagen se ha cargado correctamente!'
200
+ success: Imagen subida correctamente
136
201
  map_component:
137
202
  map:
138
203
  error:
@@ -153,5 +218,8 @@ es:
153
218
  autosaved_success: Datos guardados en el almacenamiento local
154
219
  categories: Categorías
155
220
  drag_and_drop_image: Puedes añadir imágenes arrastrando y soltándolas o también pegándolas.
221
+ hashtags: Hashtags
222
+ items: elementos
156
223
  meetings: Encuentros
157
224
  proposals: Propuestas
225
+ select_deselect_all: Seleccionar/deseleccionar todo
@@ -0,0 +1,225 @@
1
+ eu:
2
+ activemodel:
3
+ attributes:
4
+ config:
5
+ allow_images_in_full_editor: Allow images in the full HTML editor
6
+ allow_images_in_markdown_editor: Allow images in the markdown editor
7
+ allow_images_in_proposals: Allow images in the proposals editor
8
+ allow_images_in_small_editor: Allow images in the minimal HTML editor
9
+ auto_save_forms: Auto save forms in local storage
10
+ intergram_auto_no_response: A message that is sent one minute after the user sends its first message and no response was received
11
+ intergram_auto_response: A message that is sent immediately after the user sends its first message
12
+ intergram_chat_id: Chat ID
13
+ intergram_color: Color of the widget
14
+ intergram_for_admins: Enable Intergram Chat in the admin backend
15
+ intergram_intro_message: First message when the user opens the chat for the first time
16
+ intergram_require_login: Only for logged users
17
+ intergram_title_closed: Closed chat title
18
+ intergram_title_open: Opened chat title
19
+ intergram_use_floating_button: If checked, the closed chat is always a button instead of a text
20
+ scoped_styles: 'Custom styles #%{id}'
21
+ use_markdown_editor: Use a Markdown editor instead of the HTML editor
22
+ constraint:
23
+ component_id: or specifically in
24
+ component_manifest: Only in components of type
25
+ participatory_space_manifest: Apply to participatory spaces of type
26
+ participatory_space_slug: Only in
27
+ menu:
28
+ position: Position
29
+ raw_label: Label
30
+ target: Opens in
31
+ url: URL
32
+ visibility: Visibility
33
+ decidim:
34
+ admin:
35
+ menu:
36
+ decidim_awesome: Decidim awesome
37
+ components:
38
+ awesome_iframe:
39
+ name: Fullscreen Iframe
40
+ settings:
41
+ global:
42
+ announcement: Oharra
43
+ iframe: Iframe code
44
+ iframe_help: 'Put your code as html: <iframe width="100%" height="700" frameBorder="0" allowFullscreen src="..."></iframe>. Content will be sanitized from other HTML tags. Ensure to use 100% as width to fill the screen.'
45
+ no_margins: No margins between the iframe and the rest of the page
46
+ viewport_width: Limit maximum width to the application viewport
47
+ step:
48
+ announcement: Oharra
49
+ iframe: Iframe code
50
+ awesome_map:
51
+ name: Awesome Map
52
+ settings:
53
+ global:
54
+ announcement: Oharra
55
+ collapse: Start with collapsed menu
56
+ map_center: Map center (Latitude, Longitude)
57
+ map_center_help: 'Use decimal points (ie: 41.38879, 2.15899). Leave it empty to automatically fit all the markers'
58
+ map_height: Map height (px)
59
+ map_zoom: Zoom (any number betwen 0 and 18)
60
+ map_zoom_help: Only applies if a map center is defined
61
+ menu_amendments: Show amendments
62
+ menu_hashtags: Show Hasthag search menu
63
+ menu_meetings: Show meetings
64
+ truncate: Maximum characters for popup descriptions
65
+ step:
66
+ announcement: Oharra
67
+ show_accepted: Show accepted proposals
68
+ show_evaluating: Show evaluating proposals
69
+ show_not_answered: Show not answered proposals
70
+ show_rejected: Show rejected proposals
71
+ show_withdrawn: Show withdrawn proposals
72
+ decidim_awesome:
73
+ admin:
74
+ checks:
75
+ index:
76
+ admin_head_tags: Awesome tags included in the admin application header
77
+ decidim-admin: From Admin module
78
+ decidim-core: From Core module
79
+ decidim-proposals: From Proposals module
80
+ decidim_version: Decidim version %{version}
81
+ errors:
82
+ CSS: Head does not contain the required <link> stylesheet entries. To solve it, you can manually add it to your custom _head.html.erb
83
+ JavaScript: Head does not contain the required <script> Javascript entries. To solve it, you can manually add it to your custom admin/_header.html.erb
84
+ head_tags: Awesome tags included in the application header
85
+ title: System compatibility checks
86
+ config:
87
+ constraints:
88
+ add_condition: Add case
89
+ always: Always
90
+ delete: Ezabatu
91
+ edit: Editatu
92
+ title: 'Applicable only in these cases:'
93
+ create_scoped_style:
94
+ error: Error creating a new CSS box! %{error}
95
+ success: CSS box %{key} created successfully
96
+ destroy_scoped_style:
97
+ error: Error removing CSS box! %{error}
98
+ success: CSS box %{key} removed successfully
99
+ experimental: Experimental options
100
+ form:
101
+ errors:
102
+ incorrect_css: 'CSS in box #%{key} is invalid'
103
+ help:
104
+ allow_images_in_full_editor: This will add an image uploader icon in all the editors WYSIWYG with the full toolbar enabled.
105
+ allow_images_in_markdown_editor: This will allow markdown editor to upload images by copy & paste or drag & drop.
106
+ allow_images_in_proposals: This will allow to upload images in the proposals editor, available to any user
107
+ allow_images_in_small_editor: This will add an image uploader icon in all the editors WYSIWYG with minimal options in the toolbar enabled.
108
+ auto_save_forms: This will use LocalStorage to automatically save data introduced by users in surveys and other forms while they are filling it. Data will be restored in a future visit with the same browser in case the form is not submitted. If the form is submitted, data will be removed. If users remove their LocalStorage data, data won't be restored either.
109
+ drag_and_drop_supported: When uploading images, Drag & Drop is supported. Images will be uploaded to the server and inserted as external resources (it doesn't use base64 inline encoding).
110
+ intergram_about: Intergram uses Telegram messenger to handle a live support chat widget embedded in the bottom of the page.
111
+ intergram_config: 'Invite the <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bot</a> to your group or start a chat with it directly. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
112
+ scoped_styles: Create custom CSS that applies only in certain parts of the public web (use the restrictions editor for that)
113
+ scoped_styles_variables: 'You can use the following CSS variables for organization customized colors:'
114
+ use_markdown_editor: This will substitute the Quill WYSIWYG editor, use a Markdown editor instead. Text will be rendered as HTML in the public pages (text in database will be saved as markdown text)
115
+ form_styles:
116
+ new: Add a new CSS box
117
+ remove: Remove this CSS box
118
+ sure_to_remove: Are you sure you want to destroy this CSS box?
119
+ rich_text_editor_in_public_views: 'NOTE: "Rich text editor for participants" is enabled, this option won''t apply. Use the editors hacks instead to enable images in proposals.'
120
+ show:
121
+ title: Tweaks for %{setting}
122
+ update: Update configuration
123
+ system: Everywhere except participatory spaces
124
+ update:
125
+ error: Error updating configuration! %{error}
126
+ success: Configuration updated successfully
127
+ constraints:
128
+ create:
129
+ error: Error creating condition case
130
+ success: Condition case created successfully
131
+ destroy:
132
+ error: Error removing condition case
133
+ success: Condition case removed successfully
134
+ errors:
135
+ not_unique: Same condition already exists
136
+ new:
137
+ cancel: Ezeztatu
138
+ constraint: New condition case
139
+ save: Save
140
+ show:
141
+ cancel: Ezeztatu
142
+ constraint: Edit condition case
143
+ save: Save
144
+ update:
145
+ error: Error updating condition case
146
+ success: Condition case updated successfully
147
+ menu:
148
+ checks: System compatibility
149
+ editors: Editor hacks
150
+ livechat: Live Chat
151
+ menu_hacks: Menu tweaks
152
+ proposals: Proposals hacks
153
+ styles: Custom styles
154
+ surveys: Surveys & forms
155
+ menu_hacks:
156
+ create:
157
+ error: Error creating menu item! %{error}
158
+ success: Menu item created successfully
159
+ destroy:
160
+ error: Error removing menu item! %{error}
161
+ success: Menu item removed successfully
162
+ edit:
163
+ save: Save
164
+ title: Edit menu item
165
+ form:
166
+ label_help: Translations aren't automatically detected, be sure to fill in all the fields!
167
+ target:
168
+ blank: New window
169
+ self: Same window
170
+ visibility:
171
+ default: Visible
172
+ hidden: Always hidden
173
+ logged: Only visible for logged users
174
+ non_logged: Only visible for non-logged users
175
+ index:
176
+ confirm_destroy: Are you sure to remove this customization?
177
+ edit: Edit
178
+ new: New item
179
+ remove: Remove addition
180
+ remove_hack: Remove customization
181
+ title: Main menu
182
+ new:
183
+ save: Save
184
+ title: New menu item
185
+ update:
186
+ error: Error updating menu item! %{error}
187
+ success: Menu item updated successfully
188
+ url_exists: The same URL is already configured, please edit that instead of creating it again.
189
+ config:
190
+ intergram:
191
+ auto_no_response: It seems that no one is available to answer right now. Please tell us how we can contact you, and we will get back to you as soon as we can.
192
+ auto_response: Looking for the first available admin (It might take a minute)
193
+ intro_message: Hello! How can we help you?
194
+ title_closed: Click to chat!
195
+ title_open: Let's chat!
196
+ credits: Decidim Awesome %{version} · Made with ♥ by Platoniq
197
+ editor_images:
198
+ create:
199
+ error: Error uploading image!
200
+ success: Image uploaded successfully
201
+ map_component:
202
+ map:
203
+ error:
204
+ unavailable: The map is unavailable. Please configure geocoding to enable this component.
205
+ show:
206
+ view_meeting: Ikusi bilera
207
+ view_proposal: Ikusi proposamena
208
+ layouts:
209
+ decidim:
210
+ admin:
211
+ decidim_awesome:
212
+ title: Decidim Tweaks
213
+ decidim_awesome:
214
+ awesome_config:
215
+ amendments: Zuzenketak
216
+ autosaved_error: LocalStorage ez da onartzen zure arakatzailean, inprimakia ezin da automatikoki gorde.
217
+ autosaved_retrieved: Data for this form has been recovered from a previous session
218
+ autosaved_success: Tokiko biltegian gordetako datuak
219
+ categories: Kategoriak
220
+ drag_and_drop_image: Gehitu irudiak arrastatuz, jareginez edo itsatsita.
221
+ hashtags: Hashtags
222
+ items: items
223
+ meetings: Topaketa-zerrenda
224
+ proposals: Proposamenak
225
+ select_deselect_all: Select/deselect all