decidim-decidim_awesome 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/legacy_map.js.es6 +14 -4
  4. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/legacy_proposals.js.es6 +82 -0
  5. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/map.js.es6 +13 -2
  6. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/meetings.js.es6 +15 -13
  7. data/app/assets/javascripts/decidim/decidim_awesome/awesome_map/proposals.js.es6 +29 -13
  8. data/app/commands/decidim/decidim_awesome/create_editor_image.rb +5 -3
  9. data/app/controllers/decidim/decidim_awesome/editor_images_controller.rb +1 -1
  10. data/app/forms/decidim/decidim_awesome/editor_image_form.rb +2 -0
  11. data/app/helpers/decidim/decidim_awesome/map_helper.rb +11 -1
  12. data/app/models/decidim/decidim_awesome/editor_image.rb +4 -3
  13. data/app/uploaders/decidim/decidim_awesome/image_uploader.rb +9 -0
  14. data/app/views/decidim/decidim_awesome/iframe_component/iframe/show.html.erb +6 -1
  15. data/app/views/decidim/decidim_awesome/map_component/map/show.html.erb +40 -18
  16. data/config/locales/ca.yml +39 -7
  17. data/config/locales/cs.yml +33 -1
  18. data/config/locales/en.yml +9 -2
  19. data/config/locales/es.yml +70 -38
  20. data/config/locales/fr.yml +33 -1
  21. data/config/locales/sv.yml +33 -1
  22. data/lib/decidim/decidim_awesome/iframe_component/component.rb +2 -2
  23. data/lib/decidim/decidim_awesome/map_component/component.rb +6 -0
  24. data/lib/decidim/decidim_awesome/test/factories.rb +1 -1
  25. data/lib/decidim/decidim_awesome/version.rb +1 -1
  26. data/vendor/assets/javascripts/jsrender.min.js +4 -0
  27. metadata +5 -3
@@ -7,6 +7,16 @@ ca:
7
7
  allow_images_in_proposals: Permet imatges a l'editor de propostes
8
8
  allow_images_in_small_editor: Permet imatge a l'editor HTML reduït
9
9
  auto_save_forms: Desa automàticament els formularis a l'emmagatzematge local
10
+ intergram_auto_no_response: Un missatge que s'envia un minut després que la usuària hagi enviat el seu primer missatge i no s'hagi rebut cap resposta
11
+ intergram_auto_response: Un missatge que s'envia immediatament després que la usuària enviï el seu primer missatge
12
+ intergram_chat_id: ID de xat
13
+ intergram_color: Color del widget
14
+ intergram_for_admins: Activar el xat de Intergram al backend d'administració
15
+ intergram_intro_message: Primer missatge que s'envia quan la usuària obre el xat per primera vegada
16
+ intergram_require_login: Només per usuàries registrades
17
+ intergram_title_closed: Títol del xat tancat
18
+ intergram_title_open: Títol del xat obert
19
+ intergram_use_floating_button: Si està marcat, el xat tancat és sempre un botó en lloc d'un text
10
20
  use_markdown_editor: Fes servir l'editor Markdown en comptes de l'editor HTML
11
21
  constraint:
12
22
  component_id: o específicament a
@@ -19,15 +29,17 @@ ca:
19
29
  decidim_awesome: Decidim Awesome
20
30
  components:
21
31
  awesome_iframe:
22
- name: Fullscreen Iframe
32
+ name: Iframe en pantalla completa
23
33
  settings:
24
34
  global:
25
- iframe: Iframe code
26
- 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.'
27
- no_margins: No margins between the iframe and the rest of the page
28
- viewport_width: Limit maximum width to the application viewport
35
+ announcement: Anunci
36
+ iframe: Codi Iframe
37
+ iframe_help: 'Posa el teu codi com html: <iframe width="100%" height="700" frameBorder="0" allowFullscreen src="..."></iframe>. El contingut serà netejat de qualsevol altre tag HTML. Assegureu-vos de fer servir 100% per l''amplada per tal d''omplir la pantalla.'
38
+ no_margins: Sense marges entre el iframe i la resta de la pàgina
39
+ viewport_width: Limita l'amplada a màxima com a la resta de l'aplicació
29
40
  step:
30
- iframe: Iframe code
41
+ announcement: Anunci
42
+ iframe: Codi del Iframe
31
43
  awesome_map:
32
44
  name: Mapa global
33
45
  settings:
@@ -37,14 +49,24 @@ ca:
37
49
  map_height: Alçada del mapa (px)
38
50
  step:
39
51
  announcement: Anunci
52
+ show_accepted: Mostra les propostes acceptades
53
+ show_evaluating: Mostra les propostes en avaluació
54
+ show_not_answered: Mostra les propostes pendents de contestar
55
+ show_rejected: Mostra les propostes rebutjades
56
+ show_withdrawn: Mostra les propostes retirades
40
57
  decidim_awesome:
41
58
  admin:
42
59
  checks:
43
60
  index:
61
+ admin_head_tags: Etiquetes Awesome incloses a la capçalera de l'aplicació d'administració
44
62
  decidim-admin: Del mòdul Admin
45
63
  decidim-core: Del mòdul Core
46
64
  decidim-proposals: Del mòdul Proposals
47
65
  decidim_version: Versió de Decidim %{version}
66
+ errors:
67
+ CSS: La capçalera no conté les entrades necessàries <link> al full d'estil. Per resoldre-ho, es poden afegir manualment al fitxer personalitzat _head.html.erb
68
+ JavaScript: La capçalera no conté les entrades necessàries <script> de Javascript. Per resoldre-ho, es poden afegir manualment al fitxer personalitzat admin/_header.html.erb
69
+ head_tags: Etiquetes Awesome incloses a la capçalera de l'aplicació
48
70
  title: Anàlisi de compatibilitat amb el sistema
49
71
  config:
50
72
  constraints:
@@ -57,11 +79,13 @@ ca:
57
79
  form:
58
80
  help:
59
81
  allow_images_in_full_editor: Això afegirà un botó per pujar imatges a l'editor HTML complet.
60
- allow_images_in_markdown_editor: Això permetrà a l'editor markdown pujar imatges "arrastrant i deixant anar".
82
+ allow_images_in_markdown_editor: Això permetrà a l'editor markdown pujar imatges amb "copiar i enganxar" o "arrastrant i deixant anar".
61
83
  allow_images_in_proposals: Això permetrà pujar imatges a l'editor de propostes, disponible per qualsevol usuari
62
84
  allow_images_in_small_editor: Això afegirà un botó per pujar imatges a l'editor HTML mínim.
63
85
  auto_save_forms: Això farà servir l'emmagatzematge local del navegador per desar automàticament les dades introduïdes pels usuaris a les enquestes i altres formularis mentre les omplen. Les dades es restauraran en una futura visita amb el mateix navegador en cas que no s'enviï el formulari. Si s’envia el formulari, s’eliminaran les dades locals. Si els usuaris eliminen les seves dades del navegador, tampoc es restauraran.
64
86
  drag_and_drop_supported: Quan es pugin imatges, es pot fer a través del mètode de "arrossegar i deixar anar". Les imatges seran pujades al servidor i inserides com recursos externs (no es fa servir codificació en línia base64).
87
+ intergram_about: Intergram utilitza el Telegram Messenger per gestionar un widget de xat en viu de suport incrustat a la part inferior de la pàgina.
88
+ intergram_config: 'Convida a la <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bot</a> al teu grup o comença un xat amb ella directament. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
65
89
  use_markdown_editor: Això substituirà l'editor HTML (Quill), en el seu lloc s'utilitzarà un editor Markdown tant a l'admin com a la pàgina pública per processar el text (a la base de dades el text es desarà com a markdown)
66
90
  rich_text_editor_in_public_views: 'NOTA: "Editor de text enriquit per participants" està habilitat a la configuració general, aquesta opció no aplicarà. Feu servir les modificacions d''editor general per afegir imatges a les propostes.'
67
91
  show:
@@ -94,8 +118,16 @@ ca:
94
118
  menu:
95
119
  checks: Compatibilitat de sistema
96
120
  editors: Modificacions als editors
121
+ livechat: Xat en directe
97
122
  proposals: Modificacions a propostes
98
123
  surveys: Formularis i enquestes
124
+ config:
125
+ intergram:
126
+ auto_no_response: Sembla que no hi ha ningú disponible per a respondre en aquest moment. Si us plau, indica'ns com et podem contactar i ens comunicarem amb tu tan aviat com ens sigui possible.
127
+ auto_response: Buscant la primera administradora disponible (pot tardar un minut)
128
+ intro_message: Hola! En què et puc ajudar?
129
+ title_closed: Fes clic per xatejar!
130
+ title_open: Parlem!
99
131
  credits: Decidim Awesome %{version} · Made with ♥ by Platoniq
100
132
  editor_images:
101
133
  create:
@@ -7,6 +7,16 @@ cs:
7
7
  allow_images_in_proposals: Povolit obrázky v editoru návrhů
8
8
  allow_images_in_small_editor: Povolit obrázky v minimálním HTML editoru
9
9
  auto_save_forms: Automaticky ukládat formuláře v místním úložišti
10
+ intergram_auto_no_response: Zpráva, která je odeslána jednu minutu poté, co uživatel odešle svou první zprávu a nebyla obdržena odpověď
11
+ intergram_auto_response: Zpráva, která je odeslána okamžitě poté, co uživatel odešle svou první zprávu
12
+ intergram_chat_id: ID Chatu
13
+ intergram_color: Barva widgetu
14
+ intergram_for_admins: Povolit Intergram chat v administraci
15
+ intergram_intro_message: První zpráva při prvním otevření chatu
16
+ intergram_require_login: Pouze pro přihlášené uživatele
17
+ intergram_title_closed: Titulek uzavřeného chatu
18
+ intergram_title_open: Titulek otevřeného chatu
19
+ intergram_use_floating_button: Je-li zaškrtnuto, uzavřený chat je vždy tlačítko místo textu
10
20
  use_markdown_editor: Použít Markdown editor namísto HTML editoru
11
21
  constraint:
12
22
  component_id: nebo konkrétně v
@@ -22,11 +32,13 @@ cs:
22
32
  name: Celá obrazovka Iframe
23
33
  settings:
24
34
  global:
35
+ announcement: Oznámení
25
36
  iframe: Kód Iframe
26
37
  iframe_help: 'Zadejte kód jako html: <iframe width="100%" height="700" frameBorder="0" allowFullscreen src="..."></iframe>. Obsah bude sanitován z jiných HTML tagů. Pro vyplnění obrazovky použijte 100% šířku.'
27
38
  no_margins: Mezi iframe a zbytkem stránky nejsou žádné okraje
28
39
  viewport_width: Omezit maximální šířku na zobrazení aplikace
29
40
  step:
41
+ announcement: Oznámení
30
42
  iframe: Kód Iframe
31
43
  awesome_map:
32
44
  name: Úžasná mapa
@@ -37,14 +49,24 @@ cs:
37
49
  map_height: Výška mapy (px)
38
50
  step:
39
51
  announcement: Oznámení
52
+ show_accepted: Zobrazit přijaté návrhy
53
+ show_evaluating: Zobrazit hodnocení návrhů
54
+ show_not_answered: Zobrazit nezodpovězené návrhy
55
+ show_rejected: Zobrazit odmítnuté návrhy
56
+ show_withdrawn: Zobrazit stažené návrhy
40
57
  decidim_awesome:
41
58
  admin:
42
59
  checks:
43
60
  index:
61
+ admin_head_tags: Úžasné tagy zahrnuté v hlavičce administrace aplikace
44
62
  decidim-admin: Z modulu Admin
45
63
  decidim-core: Z hlavního Core modulu
46
64
  decidim-proposals: Z modulu Návrhy
47
65
  decidim_version: Decidim verze %{version}
66
+ errors:
67
+ CSS: Hlavička neobsahuje požadované položky <link> stylu. Chcete-li to vyřešit, můžete je ručně přidat do vlastního _head.html.erb
68
+ JavaScript: Hlavička neobsahuje požadované <script> položky javascriptu. Pro vyřešení je můžete ručně přidat do vlastního admin/_header.html.erb
69
+ head_tags: Úžasné tagy zahrnuté v hlavičce aplikace
48
70
  title: Kontroly kompatibility systému
49
71
  config:
50
72
  constraints:
@@ -62,7 +84,9 @@ cs:
62
84
  allow_images_in_small_editor: Tímto se přidá ikona pro nahrávání obrázků ve všech editorech WYSIWYG s minimálními možnostmi v panelu nástrojů.
63
85
  auto_save_forms: Toto bude používat místní úložiště pro automatické ukládání dat zavedených uživateli do průzkumů a jiných formulářů během vyplňování. Data budou obnovena v budoucí návštěvě stejného prohlížeče v případě, že formulář nebude odeslán. Pokud je formulář odeslán, data budou odstraněna. Pokud uživatelé odstraní svá data z místního úložiště, data nebudou obnovena.
64
86
  drag_and_drop_supported: Při nahrávání obrázků je podporováno vložení přetažením. Obrázky budou nahrány na server a vloženy jako externí zdroje (nepoužívá base64 inline kódování).
65
- use_markdown_editor: Toto nahradí WYSIWYG editor, použije Markdown editor v administraci a webový procesor pro vykreslení textu (text v databázi bude uložen jako text markdown)
87
+ intergram_about: Intergram používá Telegram messenger pro zpracování widgetu live podpory v dolní části stránky.
88
+ intergram_config: 'Pozvěte <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bota</a> do vaší skupiny nebo začněte chatovat přímo. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
89
+ use_markdown_editor: Toto nahradí WYSIWYG editor, místo toho použijte Markdown editor. Text bude vykreslen jako HTML na veřejných stránkách (text v databázi bude uložen jako text markdown)
66
90
  rich_text_editor_in_public_views: 'POZNÁMKA: "Kompletní textový editor pro účastníky" je povolen, tato možnost nebude využita. Pro povolení obrázků v Návrzích používejte místo toho hacky editoru.'
67
91
  show:
68
92
  title: Vylepšení pro %{setting}
@@ -94,8 +118,16 @@ cs:
94
118
  menu:
95
119
  checks: Systémová kompatibilita
96
120
  editors: Hack editoru
121
+ livechat: Live Chat
97
122
  proposals: Návrhy hacků
98
123
  surveys: Průzkumy a formuláře
124
+ config:
125
+ intergram:
126
+ auto_no_response: Zdá se, že právě teď nikdo není k dispozici odpovědět. Řekněte nám, jak vás můžeme kontaktovat, a co nejdříve se k vám vrátíme.
127
+ auto_response: Hledání prvního dostupného administrátora (může to chvíli trvat)
128
+ intro_message: Dobrý den! Jak Vám můžeme pomoci?
129
+ title_closed: Kliknutím chatujte!
130
+ title_open: Pojďme chatovat!
99
131
  credits: Vylepšení Decidim %{version} · Vyrobeno s ♥ od Platoniq
100
132
  editor_images:
101
133
  create:
@@ -37,6 +37,7 @@ en:
37
37
  name: Fullscreen Iframe
38
38
  settings:
39
39
  global:
40
+ announcement: Announcement
40
41
  iframe: Iframe code
41
42
  iframe_help: 'Put your code as html: <iframe width="100%" height="700"
42
43
  frameBorder="0" allowFullscreen src="..."></iframe>. Content will be
@@ -45,6 +46,7 @@ en:
45
46
  no_margins: No margins between the iframe and the rest of the page
46
47
  viewport_width: Limit maximum width to the application viewport
47
48
  step:
49
+ announcement: Announcement
48
50
  iframe: Iframe code
49
51
  awesome_map:
50
52
  name: Awesome Map
@@ -55,6 +57,11 @@ en:
55
57
  map_height: Map height (px)
56
58
  step:
57
59
  announcement: Announcement
60
+ show_accepted: Show accepted proposals
61
+ show_evaluating: Show evaluating proposals
62
+ show_not_answered: Show not answered proposals
63
+ show_rejected: Show rejected proposals
64
+ show_withdrawn: Show withdrawn proposals
58
65
  decidim_awesome:
59
66
  admin:
60
67
  checks:
@@ -104,8 +111,8 @@ en:
104
111
  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">+
105
112
  info</a>
106
113
  use_markdown_editor: This will substitute the Quill WYSIWYG editor,
107
- use a Markdown editor in the admin side and a frontend processor to
108
- render the text (text in database will be saved as markdown text)
114
+ use a Markdown editor instead. Text will be rendered as HTML in the
115
+ public pages (text in database will be saved as markdown text)
109
116
  rich_text_editor_in_public_views: 'NOTE: "Rich text editor for participants"
110
117
  is enabled, this option won''t apply. Use the editors hacks instead to
111
118
  enable images in proposals.'
@@ -7,6 +7,16 @@ es:
7
7
  allow_images_in_proposals: Permitir imágenes en el editor de propuestas
8
8
  allow_images_in_small_editor: Permitir imágenes en el editor HTML reducido
9
9
  auto_save_forms: Guardar automáticamente los formularios en el almacenamiento local
10
+ intergram_auto_no_response: Un mensaje que se envía un minuto después de que la usuaria haya enviado su primer mensaje y no se haya recibido respuesta
11
+ intergram_auto_response: Un mensaje que se envía inmediatamente después de que la usuaria envíe su primer mensaje
12
+ intergram_chat_id: ID de chat
13
+ intergram_color: Color del widget
14
+ intergram_for_admins: Activar el chat de Intergram en el backend de administración
15
+ intergram_intro_message: Primer mensaje cuando la usuaria abre el chat por primera vez
16
+ intergram_require_login: Solo para usuarias registradas
17
+ intergram_title_closed: Título del chat cerrado
18
+ intergram_title_open: Título del chat abierto
19
+ intergram_use_floating_button: Si está marcado, el chat cerrado siempre es un botón en lugar de un texto
10
20
  use_markdown_editor: Utilizar el editor Markdown en lugar del editor HTML
11
21
  constraint:
12
22
  component_id: o específicamente en
@@ -19,15 +29,17 @@ es:
19
29
  decidim_awesome: Decidim Awesome
20
30
  components:
21
31
  awesome_iframe:
22
- name: Fullscreen Iframe
32
+ name: Iframe en pantalla completa
23
33
  settings:
24
34
  global:
25
- iframe: Iframe code
26
- 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.'
27
- no_margins: No margins between the iframe and the rest of the page
28
- viewport_width: Limit maximum width to the application viewport
35
+ announcement: Anuncio
36
+ iframe: Código iframe
37
+ iframe_help: 'Pon tu código como html: <iframe width="100%" height="700" frameBorder="0" allowFullscreen src="..."></iframe>. El contenido se limpiará de otras etiquetas HTML. Asegúrate de usar 100% como ancho de pantalla.'
38
+ no_margins: Sin márgenes entre el iframe y el resto de la página
39
+ viewport_width: Limitar el ancho máximo a la vista de la aplicación
29
40
  step:
30
- iframe: Iframe code
41
+ announcement: Anuncio
42
+ iframe: Código iframe
31
43
  awesome_map:
32
44
  name: Mapa Global
33
45
  settings:
@@ -37,14 +49,24 @@ es:
37
49
  map_height: Altura del mapa (px)
38
50
  step:
39
51
  announcement: Anuncio
52
+ show_accepted: Muestra las propuestas aceptadas
53
+ show_evaluating: Muestra las propuestas en evaluación
54
+ show_not_answered: Muestra las propuestas pendientes de contestart
55
+ show_rejected: Muestra las propuestas rechazadas
56
+ show_withdrawn: Muestra las propuestas retiradas
40
57
  decidim_awesome:
41
58
  admin:
42
59
  checks:
43
60
  index:
61
+ admin_head_tags: Etiquetas Awesome incluidas en el encabezado de la aplicación de administración
44
62
  decidim-admin: Del módulo Admin
45
63
  decidim-core: Del módulo Core
46
64
  decidim-proposals: Del módulo Propuestas
47
65
  decidim_version: Versión de Decidim %{version}
66
+ errors:
67
+ CSS: El encabezado no contiene las entradas requeridas <link> a la hoja de estilo. Para resolverlo, se pueden añadir manualmente al fichero personalizado _head.html.erb
68
+ JavaScript: El encabezado no contiene las entradas requeridas de Javascript <script>. Para resolverlo, se pueden añadir manualmente al fichero personalizado admin/_header.html.erb
69
+ head_tags: Etiquetas Awesome incluidas en el encabezado de la aplicación
48
70
  title: Análisis de compatibilidad del sistema
49
71
  config:
50
72
  constraints:
@@ -57,50 +79,60 @@ es:
57
79
  form:
58
80
  help:
59
81
  allow_images_in_full_editor: Esto añadirá un botón para subir imágenes en el editor HTML completo.
60
- allow_images_in_markdown_editor: This will allow markdown editor to upload images by copy & paste or drag & drop.
61
- allow_images_in_proposals: This will allow to upload images in the proposals editor, available to any user
62
- allow_images_in_small_editor: This will add an image uploader icon in all the editors WYSIWYG with minimal options in the toolbar enabled.
63
- 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.
64
- 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).
65
- use_markdown_editor: This will substitute the Quill WYSIWYG editor, use a Markdown editor in the admin side and a frontend processor to render the text (text in database will be saved as markdown text)
66
- 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.'
82
+ allow_images_in_markdown_editor: Esto permitirá al editor markdown subir imágenes con "copiar & pegar" o con "arrastrar & soltar".
83
+ allow_images_in_proposals: Esto permitirá subir imágenes en el editor de propuestas, disponibles para cualquier usuaria
84
+ allow_images_in_small_editor: Esto añadirá un botón para subir imágenes en el editor HTML mínimo.
85
+ auto_save_forms: Esto usará el almacenamiento local del navegador para guardar automáticamente los datos introducidos por las usuarias en las encuestas y otros formularios mientras los rellenen. Si no se ha mandado el formulario, los datos se restaurarán en la siguiente visita con el mismo navegador. Los datos se eliminarán una vez se envíe el formulario. Si las usuarias eliminan sus datos del navegador, estos tampoco se restaurarán.
86
+ 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
+ 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
+ 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>'
89
+ 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)
90
+ 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.'
67
91
  show:
68
- title: Tweaks for %{setting}
69
- update: Update configuration
70
- system: Everywhere except participatory spaces
92
+ title: Ajustes para %{setting}
93
+ update: Actualizar la configuración
94
+ system: En todas partes excepto en espacios participativos
71
95
  update:
72
- error: Error updating configuration! %{error}
73
- success: Configuration updated successfully!
96
+ error: Error actualizando la configuración! %{error}'
97
+ success: '¡Configuración actualizada correctamente!'
74
98
  constraints:
75
99
  create:
76
- error: Error creating condition case
77
- success: Condition case created successfully
100
+ error: Error creando una nueva restricción
101
+ success: Restricción creada correctamente
78
102
  destroy:
79
- error: Error removing condition case
80
- success: Condition case removed successfully
103
+ error: Error eliminando la restricción
104
+ success: Restricción eliminada correctamente
81
105
  errors:
82
- not_unique: Same condition already exists
106
+ not_unique: Esta restricción ya existe
83
107
  new:
84
- cancel: Cancel
85
- constraint: New condition case
86
- save: Save
108
+ cancel: Cancelar
109
+ constraint: Nueva restricción
110
+ save: Guardar
87
111
  show:
88
- cancel: Cancel
89
- constraint: Edit condition case
90
- save: Save
112
+ cancel: Cancelar
113
+ constraint: Editar la restricción
114
+ save: Guardar
91
115
  update:
92
- error: Error updating condition case
93
- success: Condition case updated successfully
116
+ error: Error actualizando la restricción
117
+ success: Restricción actualizada correctamente
94
118
  menu:
95
- checks: System compatibility
96
- editors: Editor hacks
97
- proposals: Proposals hacks
98
- surveys: Surveys & forms
119
+ checks: Compatibilidad del sistema
120
+ editors: Modificaciones a los editores
121
+ livechat: Chat en vivo
122
+ proposals: Modificaciones a las propuestas
123
+ surveys: Encuestas y formularios
124
+ config:
125
+ intergram:
126
+ 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.
127
+ auto_response: Buscando la primera administradora disponible (puede tardar un minuto)
128
+ intro_message: Hola, ¿en qué puedo ayudarte?
129
+ title_closed: '¡Haz clic para chatear!'
130
+ title_open: '¡Hablemos!'
99
131
  credits: Decidim Awesome %{version} · Made with ♥ by Platoniq
100
132
  editor_images:
101
133
  create:
102
- error: Error uploading image!
103
- success: Image uploaded successfully!
134
+ error: Error cargando imagen!'
135
+ success: '¡La imagen se ha cargado correctamente!'
104
136
  map_component:
105
137
  map:
106
138
  error:
@@ -112,7 +144,7 @@ es:
112
144
  decidim:
113
145
  admin:
114
146
  decidim_awesome:
115
- title: Decidim Tweaks
147
+ title: Modificaciones a Decidim
116
148
  decidim_awesome:
117
149
  awesome_config:
118
150
  amendments: Enmiendas
@@ -7,6 +7,16 @@ fr:
7
7
  allow_images_in_proposals: Allow images in the proposals editor
8
8
  allow_images_in_small_editor: Allow images in the minimal HTML editor
9
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
10
20
  use_markdown_editor: Use a Markdown editor instead of the HTML editor
11
21
  constraint:
12
22
  component_id: or specifically in
@@ -22,11 +32,13 @@ fr:
22
32
  name: Fullscreen Iframe
23
33
  settings:
24
34
  global:
35
+ announcement: Announcement
25
36
  iframe: Iframe code
26
37
  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.'
27
38
  no_margins: No margins between the iframe and the rest of the page
28
39
  viewport_width: Limit maximum width to the application viewport
29
40
  step:
41
+ announcement: Announcement
30
42
  iframe: Iframe code
31
43
  awesome_map:
32
44
  name: Awesome Map
@@ -37,14 +49,24 @@ fr:
37
49
  map_height: Map height (px)
38
50
  step:
39
51
  announcement: Announcement
52
+ show_accepted: Show accepted proposals
53
+ show_evaluating: Show evaluating proposals
54
+ show_not_answered: Show not answered proposals
55
+ show_rejected: Show rejected proposals
56
+ show_withdrawn: Show withdrawn proposals
40
57
  decidim_awesome:
41
58
  admin:
42
59
  checks:
43
60
  index:
61
+ admin_head_tags: Awesome tags included in the admin application header
44
62
  decidim-admin: From Admin module
45
63
  decidim-core: From Core module
46
64
  decidim-proposals: From Proposals module
47
65
  decidim_version: Decidim version %{version}
66
+ errors:
67
+ CSS: Head does not contain the required <link> stylesheet entries. To solve it, you can manually add it to your custom _head.html.erb
68
+ 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
69
+ head_tags: Awesome tags included in the application header
48
70
  title: System compatibility checks
49
71
  config:
50
72
  constraints:
@@ -62,7 +84,9 @@ fr:
62
84
  allow_images_in_small_editor: This will add an image uploader icon in all the editors WYSIWYG with minimal options in the toolbar enabled.
63
85
  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.
64
86
  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).
65
- use_markdown_editor: This will substitute the Quill WYSIWYG editor, use a Markdown editor in the admin side and a frontend processor to render the text (text in database will be saved as markdown text)
87
+ intergram_about: Intergram uses Telegram messenger to handle a live support chat widget embedded in the bottom of the page.
88
+ 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>'
89
+ 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)
66
90
  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.'
67
91
  show:
68
92
  title: Tweaks for %{setting}
@@ -94,8 +118,16 @@ fr:
94
118
  menu:
95
119
  checks: System compatibility
96
120
  editors: Editor hacks
121
+ livechat: Live Chat
97
122
  proposals: Proposals hacks
98
123
  surveys: Surveys & forms
124
+ config:
125
+ intergram:
126
+ 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.
127
+ auto_response: Looking for the first available admin (It might take a minute)
128
+ intro_message: Hello! How can we help you?
129
+ title_closed: Click to chat!
130
+ title_open: Let's chat!
99
131
  credits: Decidim Awesome %{version} · Made with ♥ by Platoniq
100
132
  editor_images:
101
133
  create: