]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
Added french translations
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Resources / views / Import / index.html.twig
CommitLineData
d51b38ed 1{% extends "WallabagCoreBundle::layout.html.twig" %}
7019c7cf 2{% block title %}{% trans %}Import{% endtrans %}{% endblock %}
d51b38ed
NL
3
4{% block content %}
d51b38ed
NL
5<div class="row">
6 <div class="col s12">
7 <div class="card-panel settings">
8 {% trans %}Welcome on wallabag importer. Please select your previous service that you want to migrate.{% endtrans %}
9 <ul>
7019c7cf
JB
10 {% for import in imports %}
11 <li>
12 <h5>{{ import.name }}</h5>
13 <blockquote>{{ import.description|raw }}</blockquote>
d1af8ad4 14 <p><a class="waves-effect waves-light btn" href="{{ path(import.url) }}">{% trans %}Import contents{% endtrans %}</a></p>
7019c7cf
JB
15 </li>
16 {% endfor %}
d51b38ed
NL
17 </ul>
18 </div>
19 </div>
20</div>
21{% endblock %}