aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2016-10-01 16:09:31 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2016-10-01 17:13:53 +0200
commita44d2613c730b8933ba17a1295ae6c170345cad5 (patch)
tree86c8d6d37fd6043d1b47339546a82c510d96c554
parent555ed552ca974fde57d3c153e33b28c32fb3115e (diff)
downloadwallabag-a44d2613c730b8933ba17a1295ae6c170345cad5.tar.gz
wallabag-a44d2613c730b8933ba17a1295ae6c170345cad5.tar.zst
wallabag-a44d2613c730b8933ba17a1295ae6c170345cad5.zip
Changed quickstart layout
-rwxr-xr-xapp/Resources/static/themes/material/css/main.css4
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.da.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.de.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.en.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.es.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml5
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.it.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml7
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig142
13 files changed, 169 insertions, 52 deletions
diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css
index 9ea59eb0..005cc302 100755
--- a/app/Resources/static/themes/material/css/main.css
+++ b/app/Resources/static/themes/material/css/main.css
@@ -411,12 +411,12 @@ main ul.row {
411} 411}
412 412
413.card .card-action a { 413.card .card-action a {
414 color: #fff; 414 color: #fff !important;
415 margin: 0; 415 margin: 0;
416} 416}
417 417
418.card .card-action a:hover { 418.card .card-action a:hover {
419 color: #fff; 419 color: #fff !important;
420} 420}
421 421
422.settings .div_tabs { 422.settings .div_tabs {
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml
index 7ad5c100..016765e4 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 # page_title: 'Quickstart' 268 # page_title: 'Quickstart'
269 # more: 'More…'
269 # intro: 270 # intro:
270 # title: 'Welcome to wallabag!' 271 # title: 'Welcome to wallabag!'
271 # paragraph_1: "We'll accompany you to visit wallabag and show you some features which can interest you." 272 # paragraph_1: "We'll accompany you to visit wallabag and show you some features which can interest you."
272 # paragraph_2: 'Follow us!' 273 # paragraph_2: 'Follow us!'
273 # configure: 274 # configure:
274 # title: 'Configure the application' 275 # title: 'Configure the application'
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 # language: 'Change language and design' 277 # language: 'Change language and design'
276 # rss: 'Enable RSS feeds' 278 # rss: 'Enable RSS feeds'
277 # tagging_rules: 'Write rules to automatically tag your articles' 279 # tagging_rules: 'Write rules to automatically tag your articles'
@@ -285,6 +287,7 @@ quickstart:
285 # import: 'Configure import' 287 # import: 'Configure import'
286 # first_steps: 288 # first_steps:
287 # title: 'First steps' 289 # title: 'First steps'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 # new_article: 'Save your first article' 291 # new_article: 'Save your first article'
289 # unread_articles: 'And classify it!' 292 # unread_articles: 'And classify it!'
290 # migrate: 293 # migrate:
@@ -294,11 +297,15 @@ quickstart:
294 # wallabag_v1: 'Migrate from wallabag v1' 297 # wallabag_v1: 'Migrate from wallabag v1'
295 # wallabag_v2: 'Migrate from wallabag v2' 298 # wallabag_v2: 'Migrate from wallabag v2'
296 # readability: 'Migrate from Readability' 299 # readability: 'Migrate from Readability'
300 # instapaper: 'Migrate from Instapaper'
297 # developer: 301 # developer:
298 # title: 'Developers' 302 # title: 'Developers'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 # create_application: 'Create your third application' 304 # create_application: 'Create your third application'
305 # use_docker: 'Use Docker to install wallabag'
300 # docs: 306 # docs:
301 # title: 'Full documentation' 307 # title: 'Full documentation'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 # annotate: 'Annotate your article' 309 # annotate: 'Annotate your article'
303 # export: 'Convert your articles into ePUB or PDF' 310 # export: 'Convert your articles into ePUB or PDF'
304 # search_filters: 'See how you can look for an article by using search engine and filters' 311 # search_filters: 'See how you can look for an article by using search engine and filters'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml
index 650e4761..d35ead7d 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Schnelleinstieg' 268 page_title: 'Schnelleinstieg'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'Willkommen zu wallabag!' 271 title: 'Willkommen zu wallabag!'
271 paragraph_1: "Wir werden dich bei der Benutzung von wallabag begleiten und dir einige Funktionen zeigen, die dich interessieren könnten." 272 paragraph_1: "Wir werden dich bei der Benutzung von wallabag begleiten und dir einige Funktionen zeigen, die dich interessieren könnten."
272 paragraph_2: 'Folge uns!' 273 paragraph_2: 'Folge uns!'
273 configure: 274 configure:
274 title: 'Anwendung konfigurieren' 275 title: 'Anwendung konfigurieren'
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: 'Sprache und Design ändern' 277 language: 'Sprache und Design ändern'
276 rss: 'RSS-Feeds aktivieren' 278 rss: 'RSS-Feeds aktivieren'
277 tagging_rules: 'Schreibe Regeln, um deine Beiträge automatisch zu taggen (verschlagworten)' 279 tagging_rules: 'Schreibe Regeln, um deine Beiträge automatisch zu taggen (verschlagworten)'
@@ -285,6 +287,7 @@ quickstart:
285 import: 'Import-Einstellungen ändern' 287 import: 'Import-Einstellungen ändern'
286 first_steps: 288 first_steps:
287 title: 'Erste Schritte' 289 title: 'Erste Schritte'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'Speichere deinen ersten Artikel' 291 new_article: 'Speichere deinen ersten Artikel'
289 unread_articles: 'Und klassifiziere ihn!' 292 unread_articles: 'Und klassifiziere ihn!'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'von wallabag v1 migrieren' 297 wallabag_v1: 'von wallabag v1 migrieren'
295 wallabag_v2: 'von wallabag v2 migrieren' 298 wallabag_v2: 'von wallabag v2 migrieren'
296 readability: 'von Readability migrieren' 299 readability: 'von Readability migrieren'
300 instapaper: 'von Instapaper migrieren'
297 developer: 301 developer:
298 title: 'Entwickler' 302 title: 'Entwickler'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'Erstelle eine Anwendung und nutze die wallabag API' 304 create_application: 'Erstelle eine Anwendung und nutze die wallabag API'
305 # use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Komplette Dokumentation' 307 title: 'Komplette Dokumentation'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Anmerkungen zu Artikeln hinzufügen' 309 annotate: 'Anmerkungen zu Artikeln hinzufügen'
303 export: 'Artikel nach ePUB oder PDF konvertieren' 310 export: 'Artikel nach ePUB oder PDF konvertieren'
304 search_filters: 'Schau nach, wie du nach einem Artikel über die Such- und Filterfunktion suchen kannst' 311 search_filters: 'Schau nach, wie du nach einem Artikel über die Such- und Filterfunktion suchen kannst'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
index d5842cc5..26e5328e 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Quickstart' 268 page_title: 'Quickstart'
269 more: 'More…'
269 intro: 270 intro:
270 title: 'Welcome to wallabag!' 271 title: 'Welcome to wallabag!'
271 paragraph_1: "We'll accompany you on your visit to wallabag and show you some features that might interest you." 272 paragraph_1: "We'll accompany you on your visit to wallabag and show you some features that might interest you."
272 paragraph_2: 'Follow us!' 273 paragraph_2: 'Follow us!'
273 configure: 274 configure:
274 title: 'Configure the application' 275 title: 'Configure the application'
276 description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: 'Change language and design' 277 language: 'Change language and design'
276 rss: 'Enable RSS feeds' 278 rss: 'Enable RSS feeds'
277 tagging_rules: 'Write rules to automatically tag your articles' 279 tagging_rules: 'Write rules to automatically tag your articles'
@@ -285,6 +287,7 @@ quickstart:
285 import: 'Configure import' 287 import: 'Configure import'
286 first_steps: 288 first_steps:
287 title: 'First steps' 289 title: 'First steps'
290 description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'Save your first article' 291 new_article: 'Save your first article'
289 unread_articles: 'And classify it!' 292 unread_articles: 'And classify it!'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'Migrate from wallabag v1' 297 wallabag_v1: 'Migrate from wallabag v1'
295 wallabag_v2: 'Migrate from wallabag v2' 298 wallabag_v2: 'Migrate from wallabag v2'
296 readability: 'Migrate from Readability' 299 readability: 'Migrate from Readability'
300 instapaper: 'Migrate from Instapaper'
297 developer: 301 developer:
298 title: 'Developers' 302 title: 'Developers'
303 description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'Create your third application' 304 create_application: 'Create your third application'
305 use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Full documentation' 307 title: 'Full documentation'
308 description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Annotate your article' 309 annotate: 'Annotate your article'
303 export: 'Convert your articles into ePUB or PDF' 310 export: 'Convert your articles into ePUB or PDF'
304 search_filters: 'See how you can look for an article by using the search engine and filters' 311 search_filters: 'See how you can look for an article by using the search engine and filters'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml
index bd691c1c..2e3e6248 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Comienzo rápido' 268 page_title: 'Comienzo rápido'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'Bienvenido a wallabag !' 271 title: 'Bienvenido a wallabag !'
271 paragraph_1: "Le acompañaremos a su visita de wallabag y le mostraremos algunas características que le pueden interesar." 272 paragraph_1: "Le acompañaremos a su visita de wallabag y le mostraremos algunas características que le pueden interesar."
272 paragraph_2: '¡Síganos!' 273 paragraph_2: '¡Síganos!'
273 configure: 274 configure:
274 title: 'Configure la aplicación' 275 title: 'Configure la aplicación'
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: 'Cambie el idioma y el diseño de la aplicación' 277 language: 'Cambie el idioma y el diseño de la aplicación'
276 rss: 'Activar los feeds RSS' 278 rss: 'Activar los feeds RSS'
277 tagging_rules: 'Escribir reglas para etiquetear automaticamente sus artículos' 279 tagging_rules: 'Escribir reglas para etiquetear automaticamente sus artículos'
@@ -285,6 +287,7 @@ quickstart:
285 import: 'Configure importación' 287 import: 'Configure importación'
286 first_steps: 288 first_steps:
287 title: 'Primeros pasos' 289 title: 'Primeros pasos'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'Guarde su primer artículo' 291 new_article: 'Guarde su primer artículo'
289 unread_articles: '¡Y clasifíquelo!' 292 unread_articles: '¡Y clasifíquelo!'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'Migrar desde wallabag v1' 297 wallabag_v1: 'Migrar desde wallabag v1'
295 wallabag_v2: 'Migrar desde wallabag v2' 298 wallabag_v2: 'Migrar desde wallabag v2'
296 readability: 'Migrar desde Readability' 299 readability: 'Migrar desde Readability'
300 instapaper: 'Migrar desde Instapaper'
297 developer: 301 developer:
298 title: 'Promotores' 302 title: 'Promotores'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'Cree su tercera aplicación' 304 create_application: 'Cree su tercera aplicación'
305 # use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Documentación completa' 307 title: 'Documentación completa'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Anote su artículo' 309 annotate: 'Anote su artículo'
303 export: 'Convierta sus artículos a ePub o a PDF' 310 export: 'Convierta sus artículos a ePub o a PDF'
304 search_filters: 'Aprenda a utilizar el buscador y los filtros para encontrar el artículo que le interese' 311 search_filters: 'Aprenda a utilizar el buscador y los filtros para encontrar el artículo que le interese'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml
index a9989a83..ca01ce13 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml
@@ -266,6 +266,7 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Quickstart' 268 page_title: 'Quickstart'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'به wallabag خوش آمدید!!' 271 title: 'به wallabag خوش آمدید!!'
271 paragraph_1: "به شما کمک خواهیم کرد تا wallabag را بشناسید و با برخی از ویژگی‌های جالبش آشنا شوید" 272 paragraph_1: "به شما کمک خواهیم کرد تا wallabag را بشناسید و با برخی از ویژگی‌های جالبش آشنا شوید"
@@ -294,11 +295,15 @@ quickstart:
294 wallabag_v1: 'مهاجرت از نسخهٔ یکم wallabag' 295 wallabag_v1: 'مهاجرت از نسخهٔ یکم wallabag'
295 wallabag_v2: 'مهاجرت از نسخهٔ دوم wallabag' 296 wallabag_v2: 'مهاجرت از نسخهٔ دوم wallabag'
296 readability: 'مهاجرت از نسخهٔ دوم Readability' 297 readability: 'مهاجرت از نسخهٔ دوم Readability'
298 instapaper: 'مهاجرت از نسخهٔ دوم Instapaper'
297 developer: 299 developer:
298 title: 'برنامه‌نویسان' 300 title: 'برنامه‌نویسان'
301 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'برنامهٔ wallabag خود را بسازید' 302 create_application: 'برنامهٔ wallabag خود را بسازید'
303 # use_docker: 'Use Docker to install wallabag'
300 docs: 304 docs:
301 title: 'راهنمای کامل' 305 title: 'راهنمای کامل'
306 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'روی مقاله‌هایتان یادداشت بگذارید' 307 annotate: 'روی مقاله‌هایتان یادداشت بگذارید'
303 export: 'مقاله‌هایتان را به قالب ePUB یا PDF دربیاورید' 308 export: 'مقاله‌هایتان را به قالب ePUB یا PDF دربیاورید'
304 search_filters: 'به کمک موتور جستجو و فیلترها به دنبال مقاله‌هایتان بگردید' 309 search_filters: 'به کمک موتور جستجو و فیلترها به دنبال مقاله‌هایتان بگردید'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
index b70ca64d..e2a61059 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Pour bien débuter' 268 page_title: 'Pour bien débuter'
269 more: 'Plus…'
269 intro: 270 intro:
270 title: 'Bienvenue sur wallabag !' 271 title: 'Bienvenue sur wallabag !'
271 paragraph_1: "Nous allons vous accompagner pour vous faire faire le tour de la maison et vous présenter quelques fonctionnalités qui pourraient vous intéresser pour vous approprier cet outil." 272 paragraph_1: "Nous allons vous accompagner pour vous faire faire le tour de la maison et vous présenter quelques fonctionnalités qui pourraient vous intéresser pour vous approprier cet outil."
272 paragraph_2: 'Suivez-nous !' 273 paragraph_2: 'Suivez-nous !'
273 configure: 274 configure:
274 title: "Configurez l'application" 275 title: "Configurez l'application"
276 description: 'Pour voir une application qui vous correspond, allez voir du côté de la configuration de wallabag.'
275 language: "Changez la langue et le design de l'application" 277 language: "Changez la langue et le design de l'application"
276 rss: 'Activez les flux RSS' 278 rss: 'Activez les flux RSS'
277 tagging_rules: 'Écrivez des règles pour classer automatiquement vos articles' 279 tagging_rules: 'Écrivez des règles pour classer automatiquement vos articles'
@@ -285,6 +287,7 @@ quickstart:
285 import: "Configurer l'import" 287 import: "Configurer l'import"
286 first_steps: 288 first_steps:
287 title: 'Premiers pas' 289 title: 'Premiers pas'
290 description: "Maintenant que wallabag est bien configurée, il est temps d'archiver le web"
288 new_article: 'Ajoutez votre premier article' 291 new_article: 'Ajoutez votre premier article'
289 unread_articles: 'Et rangez-le !' 292 unread_articles: 'Et rangez-le !'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'Migrer depuis wallabag v1' 297 wallabag_v1: 'Migrer depuis wallabag v1'
295 wallabag_v2: 'Migrer depuis wallabag v2' 298 wallabag_v2: 'Migrer depuis wallabag v2'
296 readability: 'Migrer depuis Readability' 299 readability: 'Migrer depuis Readability'
300 instapaper: 'Migrer depuis Instapaper'
297 developer: 301 developer:
298 title: 'Pour les développeurs' 302 title: 'Pour les développeurs'
303 description: 'Nous avons aussi pensé aux développeurs : Docker, API, traductions, etc.'
299 create_application: 'Créer votre application tierce' 304 create_application: 'Créer votre application tierce'
305 use_docker: 'Utiliser Docker pour installer wallabag'
300 docs: 306 docs:
301 title: 'Documentation complète' 307 title: 'Documentation complète'
308 description: "Il y a tellement de fonctionnalités dans wallabag. N'hésitez pas à lire le manuel pour les connaitre et apprendre comment les utiliser.There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Annoter votre article' 309 annotate: 'Annoter votre article'
303 export: 'Convertissez vos articles en ePub ou en PDF' 310 export: 'Convertissez vos articles en ePub ou en PDF'
304 search_filters: "Apprenez à utiliser le moteur de recherche et les filtres pour retrouver l'article qui vous intéresse" 311 search_filters: "Apprenez à utiliser le moteur de recherche et les filtres pour retrouver l'article qui vous intéresse"
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml
index 118098fe..ae486c70 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml
@@ -265,12 +265,14 @@ howto:
265 265
266quickstart: 266quickstart:
267 page_title: 'Introduzione' 267 page_title: 'Introduzione'
268 # more: 'More…'
268 intro: 269 intro:
269 title: 'Benvenuto su wallabag!' 270 title: 'Benvenuto su wallabag!'
270 paragraph_1: "Un tour in cui ti guideremo per scoprire e che ti mostrerà delle funzionalità che potrebbero interessarti." 271 paragraph_1: "Un tour in cui ti guideremo per scoprire e che ti mostrerà delle funzionalità che potrebbero interessarti."
271 paragraph_2: 'Seguici!' 272 paragraph_2: 'Seguici!'
272 configure: 273 configure:
273 title: "Configura l'applicazione" 274 title: "Configura l'applicazione"
275 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
274 language: 'Cambia lingua e design' 276 language: 'Cambia lingua e design'
275 rss: 'Abilita i feed RSS' 277 rss: 'Abilita i feed RSS'
276 tagging_rules: 'Scrivi delle regole per taggare automaticamente i contenuti' 278 tagging_rules: 'Scrivi delle regole per taggare automaticamente i contenuti'
@@ -284,6 +286,7 @@ quickstart:
284 import: "Configura l'importazione" 286 import: "Configura l'importazione"
285 first_steps: 287 first_steps:
286 title: 'Pimi passi' 288 title: 'Pimi passi'
289 # description: "Now wallabag is well configured, it's time to archive the web"
287 new_article: 'Salva il tuo primo contenuto' 290 new_article: 'Salva il tuo primo contenuto'
288 unread_articles: 'E classificalo!' 291 unread_articles: 'E classificalo!'
289 migrate: 292 migrate:
@@ -293,11 +296,15 @@ quickstart:
293 wallabag_v1: 'Trasferisci da wallabag v1' 296 wallabag_v1: 'Trasferisci da wallabag v1'
294 wallabag_v2: 'Trasferisci da wallabag v2' 297 wallabag_v2: 'Trasferisci da wallabag v2'
295 readability: 'Trasferisci da Readability' 298 readability: 'Trasferisci da Readability'
299 instapaper: 'Trasferisci da Instapaper'
296 developer: 300 developer:
297 title: 'Sviluppatori' 301 title: 'Sviluppatori'
302 # description: 'We also thought to the developers: Docker, API, translations, etc.'
298 create_application: 'Crea la tua applicazione' 303 create_application: 'Crea la tua applicazione'
304 # use_docker: 'Use Docker to install wallabag'
299 docs: 305 docs:
300 title: 'Documentazione completa' 306 title: 'Documentazione completa'
307 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
301 annotate: 'Annota il tuo contenuto' 308 annotate: 'Annota il tuo contenuto'
302 export: 'Converti i tuoi contenuti in EPUB o PDF' 309 export: 'Converti i tuoi contenuti in EPUB o PDF'
303 search_filters: 'Impara come puoi recuperare un contenuto tramite la ricerca e i filtri' 310 search_filters: 'Impara come puoi recuperare un contenuto tramite la ricerca e i filtri'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml
index 93467dac..d82ed4cb 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Per ben començar' 268 page_title: 'Per ben començar'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'Benvenguda sus wallabag !' 271 title: 'Benvenguda sus wallabag !'
271 paragraph_1: "Anem vos guidar per far lo torn de la proprietat e vos presentar unas fonccionalitats que vos poirián interessar per vos apropriar aquesta aisina." 272 paragraph_1: "Anem vos guidar per far lo torn de la proprietat e vos presentar unas fonccionalitats que vos poirián interessar per vos apropriar aquesta aisina."
272 paragraph_2: 'Seguètz-nos ' 273 paragraph_2: 'Seguètz-nos '
273 configure: 274 configure:
274 title: "Configuratz l'aplicacio" 275 title: "Configuratz l'aplicacio"
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: "Cambiatz la lenga e l'estil de l'aplicacion" 277 language: "Cambiatz la lenga e l'estil de l'aplicacion"
276 rss: 'Activatz los fluxes RSS' 278 rss: 'Activatz los fluxes RSS'
277 tagging_rules: 'Escrivètz de règlas per classar automaticament vòstres articles' 279 tagging_rules: 'Escrivètz de règlas per classar automaticament vòstres articles'
@@ -285,6 +287,7 @@ quickstart:
285 import: 'Configurar los impòrt' 287 import: 'Configurar los impòrt'
286 first_steps: 288 first_steps:
287 title: 'Primièrs passes' 289 title: 'Primièrs passes'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'Ajustatz vòstre primièr article' 291 new_article: 'Ajustatz vòstre primièr article'
289 unread_articles: 'E racaptatz-lo !' 292 unread_articles: 'E racaptatz-lo !'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'Migrar dempuèi wallabag v1' 297 wallabag_v1: 'Migrar dempuèi wallabag v1'
295 wallabag_v2: 'Migrar dempuèi wallabag v2' 298 wallabag_v2: 'Migrar dempuèi wallabag v2'
296 readability: 'Migrar dempuèi Readability' 299 readability: 'Migrar dempuèi Readability'
300 instapaper: 'Migrar dempuèi Instapaper'
297 developer: 301 developer:
298 title: 'Pels desvolopadors' 302 title: 'Pels desvolopadors'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'Crear vòstra aplicacion tèrça' 304 create_application: 'Crear vòstra aplicacion tèrça'
305 # use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Documentacion complèta' 307 title: 'Documentacion complèta'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Anotatar vòstre article' 309 annotate: 'Anotatar vòstre article'
303 export: 'Convertissètz vòstres articles en ePub o en PDF' 310 export: 'Convertissètz vòstres articles en ePub o en PDF'
304 search_filters: "Aprenètz a utilizar lo motor de recèrca e los filtres per retrobar l'article que vos interèssa" 311 search_filters: "Aprenètz a utilizar lo motor de recèrca e los filtres per retrobar l'article que vos interèssa"
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml
index 27507a81..4a035520 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Szybki start' 268 page_title: 'Szybki start'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'Witaj w wallabag!' 271 title: 'Witaj w wallabag!'
271 paragraph_1: "Będziemy ci towarzyszyli w Twojej poznaniu wallabag i pokażemy możliwości, które mogą cię zainteresować." 272 paragraph_1: "Będziemy ci towarzyszyli w Twojej poznaniu wallabag i pokażemy możliwości, które mogą cię zainteresować."
272 paragraph_2: 'Śledź nas!' 273 paragraph_2: 'Śledź nas!'
273 configure: 274 configure:
274 title: 'Konfiguruj aplikację' 275 title: 'Konfiguruj aplikację'
276 description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: 'Zmień język i wygląd' 277 language: 'Zmień język i wygląd'
276 rss: 'Włącz kanały RSS' 278 rss: 'Włącz kanały RSS'
277 tagging_rules: 'Napisz reguły pozwalające na automatyczne otagowanie twoich artykułów' 279 tagging_rules: 'Napisz reguły pozwalające na automatyczne otagowanie twoich artykułów'
@@ -285,6 +287,7 @@ quickstart:
285 import: 'Skonfigurować import' 287 import: 'Skonfigurować import'
286 first_steps: 288 first_steps:
287 title: 'Pierwsze kroki' 289 title: 'Pierwsze kroki'
290 description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'Zapisz swój pierwszy artukuł' 291 new_article: 'Zapisz swój pierwszy artukuł'
289 unread_articles: 'I sklasyfikuj go!' 292 unread_articles: 'I sklasyfikuj go!'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: 'Migruj z wallabag v1' 297 wallabag_v1: 'Migruj z wallabag v1'
295 wallabag_v2: 'Migruj z wallabag v2' 298 wallabag_v2: 'Migruj z wallabag v2'
296 readability: 'Migruj z Readability' 299 readability: 'Migruj z Readability'
300 instapaper: 'Migruj z Instapaper'
297 developer: 301 developer:
298 title: 'Deweloperzy' 302 title: 'Deweloperzy'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 create_application: 'Stwórz swoją aplikację' 304 create_application: 'Stwórz swoją aplikację'
305 # use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Pełna Dokumentacja' 307 title: 'Pełna Dokumentacja'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 annotate: 'Dadaj adnotację do swojego artykułu' 309 annotate: 'Dadaj adnotację do swojego artykułu'
303 export: 'Konwertuj swoje artykuły do ePUB lub PDF' 310 export: 'Konwertuj swoje artykuły do ePUB lub PDF'
304 search_filters: 'Zabacz jak możesz znaleźć artykuł dzięku użyciu silnika wyszukiwarki i filtrów' 311 search_filters: 'Zabacz jak możesz znaleźć artykuł dzięku użyciu silnika wyszukiwarki i filtrów'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml
index 7c77ffb7..39a2f33d 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 # page_title: 'Quickstart' 268 # page_title: 'Quickstart'
269 # more: 'More…'
269 # intro: 270 # intro:
270 # title: 'Welcome to wallabag!' 271 # title: 'Welcome to wallabag!'
271 # paragraph_1: "We'll accompany you to visit wallabag and show you some features which can interest you." 272 # paragraph_1: "We'll accompany you to visit wallabag and show you some features which can interest you."
272 # paragraph_2: 'Follow us!' 273 # paragraph_2: 'Follow us!'
273 # configure: 274 # configure:
274 # title: 'Configure the application' 275 # title: 'Configure the application'
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 # language: 'Change language and design' 277 # language: 'Change language and design'
276 # rss: 'Enable RSS feeds' 278 # rss: 'Enable RSS feeds'
277 # tagging_rules: 'Write rules to automatically tag your articles' 279 # tagging_rules: 'Write rules to automatically tag your articles'
@@ -285,6 +287,7 @@ quickstart:
285 # import: 'Configure import' 287 # import: 'Configure import'
286 # first_steps: 288 # first_steps:
287 # title: 'First steps' 289 # title: 'First steps'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 # new_article: 'Save your first article' 291 # new_article: 'Save your first article'
289 # unread_articles: 'And classify it!' 292 # unread_articles: 'And classify it!'
290 # migrate: 293 # migrate:
@@ -294,11 +297,15 @@ quickstart:
294 # wallabag_v1: 'Migrate from wallabag v1' 297 # wallabag_v1: 'Migrate from wallabag v1'
295 # wallabag_v2: 'Migrate from wallabag v2' 298 # wallabag_v2: 'Migrate from wallabag v2'
296 # readability: 'Migrate from Readability' 299 # readability: 'Migrate from Readability'
300 # instapaper: 'Migrate from Instapaper'
297 # developer: 301 # developer:
298 # title: 'Developers' 302 # title: 'Developers'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 # create_application: 'Create your third application' 304 # create_application: 'Create your third application'
305 # use_docker: 'Use Docker to install wallabag'
300 # docs: 306 # docs:
301 # title: 'Full documentation' 307 # title: 'Full documentation'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 # annotate: 'Annotate your article' 309 # annotate: 'Annotate your article'
303 # export: 'Convert your articles into ePUB or PDF' 310 # export: 'Convert your articles into ePUB or PDF'
304 # search_filters: 'See how you can look for an article by using search engine and filters' 311 # search_filters: 'See how you can look for an article by using search engine and filters'
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml
index 8bc0c4b9..73adc78e 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml
@@ -266,12 +266,14 @@ howto:
266 266
267quickstart: 267quickstart:
268 page_title: 'Hızlı başlangıç' 268 page_title: 'Hızlı başlangıç'
269 # more: 'More…'
269 intro: 270 intro:
270 title: 'wallabag' 271 title: 'wallabag'
271 paragraph_1: "wallabag kurduğunuz için teşekkür ederiz. Bu sayfada biz size eşlik edecek ve ilginizi çekecek birkaç özellik göstereceğim." 272 paragraph_1: "wallabag kurduğunuz için teşekkür ederiz. Bu sayfada biz size eşlik edecek ve ilginizi çekecek birkaç özellik göstereceğim."
272 paragraph_2: 'Bizi takip edin!' 273 paragraph_2: 'Bizi takip edin!'
273 configure: 274 configure:
274 title: 'Uygulamayı Yapılandırma' 275 title: 'Uygulamayı Yapılandırma'
276 # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
275 language: 'Dili ve tasarımı değiştirme' 277 language: 'Dili ve tasarımı değiştirme'
276 rss: 'RSS akışını aktifleştirme' 278 rss: 'RSS akışını aktifleştirme'
277 # tagging_rules: 'Write rules to automatically tag your articles' 279 # tagging_rules: 'Write rules to automatically tag your articles'
@@ -285,6 +287,7 @@ quickstart:
285 # import: 'Configure import' 287 # import: 'Configure import'
286 first_steps: 288 first_steps:
287 title: 'İlk adım' 289 title: 'İlk adım'
290 # description: "Now wallabag is well configured, it's time to archive the web"
288 new_article: 'İlk makalenizi kaydedin' 291 new_article: 'İlk makalenizi kaydedin'
289 unread_articles: 'Ve bunu sınıflandırın!' 292 unread_articles: 'Ve bunu sınıflandırın!'
290 migrate: 293 migrate:
@@ -294,11 +297,15 @@ quickstart:
294 wallabag_v1: "wallabag v1 üzerindeki verilerinizi wallabag'in yeni sürümüne aktarın" 297 wallabag_v1: "wallabag v1 üzerindeki verilerinizi wallabag'in yeni sürümüne aktarın"
295 wallabag_v2: "wallabag v2 üzerindeki verilerinizi wallabag'in yeni sürümüne aktarın" 298 wallabag_v2: "wallabag v2 üzerindeki verilerinizi wallabag'in yeni sürümüne aktarın"
296 readability: "Readability üzerindeki verilerinizi wallabag'e aktarın'" 299 readability: "Readability üzerindeki verilerinizi wallabag'e aktarın'"
300 instapaper: "Instapaper üzerindeki verilerinizi wallabag'e aktarın'"
297 developer: 301 developer:
298 # title: 'Developers' 302 # title: 'Developers'
303 # description: 'We also thought to the developers: Docker, API, translations, etc.'
299 # create_application: 'Create your third application' 304 # create_application: 'Create your third application'
305 # use_docker: 'Use Docker to install wallabag'
300 docs: 306 docs:
301 title: 'Dokümantasyon' 307 title: 'Dokümantasyon'
308 # description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
302 # annotate: 'Annotate your article' 309 # annotate: 'Annotate your article'
303 export: 'Makalelerinizi ePUB ya da PDF formatına çevirme' 310 export: 'Makalelerinizi ePUB ya da PDF formatına çevirme'
304 search_filters: 'Makaleleri görüntülemek için arama motorlarını ve filteri kullanma' 311 search_filters: 'Makaleleri görüntülemek için arama motorlarını ve filteri kullanma'
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig
index 8cbf4ab4..226bafea 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig
@@ -10,64 +10,106 @@
10 10
11 <div class="row"> 11 <div class="row">
12 <h3>{{ 'quickstart.intro.title'|trans }}</h3> 12 <h3>{{ 'quickstart.intro.title'|trans }}</h3>
13 <p>{{ 'quickstart.intro.paragraph_1'|trans }}</p>
14 <p>{{ 'quickstart.intro.paragraph_2'|trans }}</p>
15 13
16 <h4>{{ 'quickstart.configure.title'|trans }}</h4> 14 <ul class="row data">
17 <ul> 15 <li class="col l4 m6 s12">
18 <li><a href="{{ path('config') }}">{{ 'quickstart.configure.language'|trans }}</a></li> 16 <div class="card teal darken-1">
19 <li><a href="{{ path('config') }}#set2">{{ 'quickstart.configure.rss'|trans }}</a></li> 17 <div class="card-content white-text">
20 <li><a href="{{ path('config') }}#set5">{{ 'quickstart.configure.tagging_rules'|trans }}</a></li> 18 <span class="card-title">{{ 'quickstart.configure.title'|trans }}</span>
21 </ul> 19 <p>{{ 'quickstart.configure.description'|trans }}</p>
20 </div>
21 <div class="card-action">
22 <ul>
23 <li><a href="{{ path('config') }}">{{ 'quickstart.configure.language'|trans }}</a></li>
24 <li><a href="{{ path('config') }}#set2">{{ 'quickstart.configure.rss'|trans }}</a></li>
25 <li><a href="{{ path('config') }}#set5">{{ 'quickstart.more'|trans }}</a></li>
26 </ul>
27 </div>
28 </div>
29 </li>
22 30
23 {% if is_granted('ROLE_SUPER_ADMIN') %} 31 <li class="col l4 m6 s12">
24 <h4>{{ 'quickstart.admin.title'|trans }}</h4> 32 <div class="card green darken-1">
25 <p>{{ 'quickstart.admin.description'|trans }}</p> 33 <div class="card-content white-text">
26 <ul> 34 <span class="card-title">{{ 'quickstart.first_steps.title'|trans }}</span>
27 <li><a href="{{ path('config') }}#set6">{{ 'quickstart.admin.new_user'|trans }}</a></li> 35 <p>{{ 'quickstart.first_steps.description'|trans }}</p>
28 <li><a href="{{ path('craue_config_settings_modify') }}#set-analytics">{{ 'quickstart.admin.analytics'|trans }}</a></li> 36 </div>
29 <li><a href="{{ path('craue_config_settings_modify') }}#set-entry">{{ 'quickstart.admin.sharing'|trans }}</a></li> 37 <div class="card-action">
30 <li><a href="{{ path('craue_config_settings_modify') }}#set-export">{{ 'quickstart.admin.export'|trans }}</a></li> 38 <ul>
31 <li><a href="{{ path('craue_config_settings_modify') }}#set-import">{{ 'quickstart.admin.import'|trans }}</a></li> 39 <li><a href="{{ path('new') }}">{{ 'quickstart.first_steps.new_article'|trans }}</a></li>
32 </ul> 40 <li><a href="{{ path('unread') }}">{{ 'quickstart.first_steps.unread_articles'|trans }}</a></li>
33 {% endif %} 41 </ul>
42 </div>
43 </div>
44 </li>
34 45
35 <h4>{{ 'quickstart.first_steps.title'|trans }}</h4> 46 <li class="col l4 m6 s12">
36 <ul> 47 <div class="card light-green darken-1">
37 <li><a href="{{ path('new') }}">{{ 'quickstart.first_steps.new_article'|trans }}</a></li> 48 <div class="card-content white-text">
38 <li><a href="{{ path('unread') }}">{{ 'quickstart.first_steps.unread_articles'|trans }}</a></li> 49 <span class="card-title">{{ 'quickstart.migrate.title'|trans }}</span>
39 </ul> 50 <p>{{ 'quickstart.migrate.description'|trans }}</p>
51 </div>
52 <div class="card-action">
53 <ul>
54 <li><a href="{{ path('import_pocket') }}">{{ 'quickstart.migrate.pocket'|trans }}</a></li>
55 <li><a href="{{ path('import_readability') }}">{{ 'quickstart.migrate.readability'|trans }}</a></li>
56 <li><a href="{{ path('import_instapaper') }}">{{ 'quickstart.migrate.instapaper'|trans }}</a></li>
57 <li><a href="{{ path('import') }}">{{ 'quickstart.more'|trans }}</a></li>
58 </ul>
59 </div>
60 </div>
61 </li>
40 62
41 <h4>{{ 'quickstart.migrate.title'|trans }}</h4> 63 <li class="col l4 m6 s12">
42 <p>{{ 'quickstart.migrate.description'|trans }}</p> 64 <div class="card blue darken-1">
43 <ul> 65 <div class="card-content white-text">
44 <li><a href="{{ path('import_pocket') }}">{{ 'quickstart.migrate.pocket'|trans }}</a></li> 66 <span class="card-title">{{ 'quickstart.developer.title'|trans }}</span>
45 <li><a href="{{ path('import_wallabag_v1') }}">{{ 'quickstart.migrate.wallabag_v1'|trans }}</a></li> 67 <p>{{ 'quickstart.developer.description'|trans }}</p>
46 <li><a href="{{ path('import_wallabag_v2') }}">{{ 'quickstart.migrate.wallabag_v2'|trans }}</a></li> 68 </div>
47 <li><a href="{{ path('import_readability') }}">{{ 'quickstart.migrate.readability'|trans }}</a></li> 69 <div class="card-action">
48 </ul> 70 <ul>
71 <li><a href="{{ path('developer') }}">{{ 'quickstart.developer.create_application'|trans }}</a></li>
72 <li><a href="http://doc.wallabag.org/en/master/developer/docker.html">{{ 'quickstart.developer.use_docker'|trans }}</a></li>
73 <li><a href="http://doc.wallabag.org/en/master/index.html#dev-docs">{{ 'quickstart.more'|trans }}</a></li>
74 </ul>
75 </div>
76 </div>
77 </li>
49 78
50 <h4>{{ 'quickstart.developer.title'|trans }}</h4> 79 <li class="col l4 m6 s12">
51 <ul> 80 <div class="card light-blue darken-1">
52 <li><a href="{{ path('developer') }}">{{ 'quickstart.developer.create_application'|trans }}</a></li> 81 <div class="card-content white-text">
53 </ul> 82 <span class="card-title">{{ 'quickstart.docs.title'|trans }}</span>
83 <p>{{ 'quickstart.docs.description'|trans }}</p>
84 </div>
85 <div class="card-action">
86 <ul>
87 <li><a href="http://doc.wallabag.org/en/master/user/annotations.html">{{ 'quickstart.docs.annotate'|trans }}</a></li>
88 <li><a href="http://doc.wallabag.org/en/master/user/download_articles.html">{{ 'quickstart.docs.export'|trans }}</a></li>
89 <li><a href="http://doc.wallabag.org/">{{ 'quickstart.docs.all_docs'|trans }}</a></li>
90 </ul>
91 </div>
92 </div>
93 </li>
54 94
55 <h4>{{ 'quickstart.docs.title'|trans }}</h4> 95 <li class="col l4 m6 s12">
56 <ul> 96 <div class="card cyan darken-1">
57 <li><a href="http://doc.wallabag.org/en/master/user/annotations.html">{{ 'quickstart.docs.annotate'|trans }}</a></li> 97 <div class="card-content white-text">
58 <li><a href="http://doc.wallabag.org/en/master/user/download_articles.html">{{ 'quickstart.docs.export'|trans }}</a></li> 98 <span class="card-title">{{ 'quickstart.support.title'|trans }}</span>
59 <li><a href="http://doc.wallabag.org/en/master/user/filters.html">{{ 'quickstart.docs.search_filters'|trans }}</a></li> 99 <p>{{ 'quickstart.support.description'|trans }}</p>
60 <li><a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html">{{ 'quickstart.docs.fetching_errors'|trans }}</a></li> 100 </div>
61 <li><a href="http://doc.wallabag.org/">{{ 'quickstart.docs.all_docs'|trans }}</a></li> 101 <div class="card-action">
62 </ul> 102 <ul>
103 <li><a href="https://github.com/wallabag/wallabag/issues/">{{ 'quickstart.support.github'|trans }}</a></li>
104 <li><a href="mailto:hello@wallabag.org">{{ 'quickstart.support.email'|trans }}</a></li>
105 <li><a href="https://gitter.im/wallabag/wallabag">{{ 'quickstart.support.gitter'|trans }}</a></li>
106 </ul>
107 </div>
108 </div>
109 </li>
63 110
64 <h4>{{ 'quickstart.support.title'|trans }}</h4>
65 <p>{{ 'quickstart.support.description'|trans }}</p>
66 <ul>
67 <li><a href="https://github.com/wallabag/wallabag/issues/">{{ 'quickstart.support.github'|trans }}</a></li>
68 <li><a href="mailto:hello@wallabag.org">{{ 'quickstart.support.email'|trans }}</a></li>
69 <li><a href="https://gitter.im/wallabag/wallabag">{{ 'quickstart.support.gitter'|trans }}</a></li>
70 </ul> 111 </ul>
112
71 </div> 113 </div>
72 114
73 </div> 115 </div>