diff --git a/src/Controller/FediPlanController.php b/src/Controller/FediPlanController.php index 00cc190..dcf2c23 100644 --- a/src/Controller/FediPlanController.php +++ b/src/Controller/FediPlanController.php @@ -289,6 +289,14 @@ class FediPlanController extends AbstractController return new JsonResponse($response); } + /** + * @Route("/about", name="about") + */ + public function about() + { + return $this->render("fediplan/about.html.twig"); + } + /** * @Route("/logout", name="logout") */ diff --git a/templates/base.html.twig b/templates/base.html.twig index 3c7bac6..2f1e801 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -1,3 +1,4 @@ +{% trans_default_domain 'fediplan' %}
@@ -49,7 +50,7 @@ diff --git a/templates/fediplan/about.html.twig b/templates/fediplan/about.html.twig new file mode 100644 index 0000000..82cf231 --- /dev/null +++ b/templates/fediplan/about.html.twig @@ -0,0 +1,27 @@ +{% extends 'base.html.twig' %} +{% trans_default_domain 'fediplan' %} +{% block title %}{{ 'common.about'|trans }}{% endblock %} + +{% block content %} + {% include 'nav.html.twig' %} +-diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index c60dc47..6adc051 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -174,7 +174,7 @@ @@ -383,7 +383,7 @@ setHeader(xhr); }, success: function (data) { - + var message = "{{ 'common.delete'|trans }}"; var content; content = 'FediPlan is an open source application (source code) built for scheduling your messages with Mastodon or Pleroma (2.7+).
-It does not store any data (token or messages), that is why you need to create a new Token when your session expired.
+{{ 'page.index.about'|trans |raw}}
+{{ 'page.index.data'|trans |raw}}