diff options
Diffstat (limited to 'src')
7 files changed, 80 insertions, 16 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml index 84144705..1286847c 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml | |||
@@ -1,3 +1,11 @@ | |||
1 | #Login | ||
2 | Keep me logged in: 'Rester connecté' | ||
3 | Forgot your password?: 'Mot de passe oublié ?' | ||
4 | Login: 'Se connecter' | ||
5 | Back to login: 'Revenir au formulaire de connexion' | ||
6 | Send: 'Envoyer' | ||
7 | "Enter your email address below and we'll send you password reset instructions.": "Saisissez votre adresse e-mail ci-dessous, nous vous enverrons les instructions pour réinitialiser votre mot de passe." | ||
8 | |||
1 | # Menu | 9 | # Menu |
2 | unread: 'Non lus' | 10 | unread: 'Non lus' |
3 | starred: 'Favoris' | 11 | starred: 'Favoris' |
@@ -7,6 +15,8 @@ tags: 'Tags' | |||
7 | config: 'Configuration' | 15 | config: 'Configuration' |
8 | howto: 'Aide' | 16 | howto: 'Aide' |
9 | logout: 'Déconnexion' | 17 | logout: 'Déconnexion' |
18 | Filtered: 'Articles filtrés' | ||
19 | About: 'À propos' | ||
10 | 20 | ||
11 | # Header | 21 | # Header |
12 | Back to unread articles: 'Retour aux articles non lus' | 22 | Back to unread articles: 'Retour aux articles non lus' |
@@ -39,3 +49,58 @@ New password: 'Nouveau mot de passe' | |||
39 | Repeat new password: 'Confirmez votre nouveau mot de passe' | 49 | Repeat new password: 'Confirmez votre nouveau mot de passe' |
40 | Username: "Nom d'utilisateur" | 50 | Username: "Nom d'utilisateur" |
41 | 51 | ||
52 | # Entries | ||
53 | 'estimated reading time': 'durée de lecture' | ||
54 | original: original | ||
55 | Toggle mark as read: 'Marquer comme lu/non lu' | ||
56 | Toggle favorite: 'Marquer comme favori' | ||
57 | Delete: 'Supprimer' | ||
58 | |||
59 | # Filters | ||
60 | Filters: 'Filtres' | ||
61 | Status: 'Statut' | ||
62 | Archived: 'Lu' | ||
63 | Starred: 'Favori' | ||
64 | Preview picture: 'Photo' | ||
65 | Has a preview picture: 'A une photo' | ||
66 | Reading time in minutes: 'Durée de lecture en minutes' | ||
67 | from: 'de' | ||
68 | to: 'à' | ||
69 | website.com: 'website.com' | ||
70 | Domain name: 'Nom de domaine' | ||
71 | Creation date: 'Date de création' | ||
72 | dd/mm/yyyy: 'dd/mm/aaaa' | ||
73 | Clear: 'Effacer' | ||
74 | Filter: 'Filtrer' | ||
75 | |||
76 | # About | ||
77 | Who is behind wallabag: "L'équipe derrière wallabag" | ||
78 | Getting help: "Besoin d'aide" | ||
79 | Helping wallabag: "Aider wallabag" | ||
80 | Developed by: "Développé par" | ||
81 | website: "Site web" | ||
82 | And many others contributors ♥: "Et plein de contributeurs ♥" | ||
83 | on GitHub: "sur GitHub" | ||
84 | Project website: "Site web du projet" | ||
85 | License: "Licence" | ||
86 | Version: "Version" | ||
87 | Documentation: "Documentation" | ||
88 | Bug reports: "Rapport de bugs" | ||
89 | On our support website: "Sur notre site de support" | ||
90 | or: "ou" | ||
91 | "wallabag is free and opensource. You can help us:": "wallabag est gratuit et opensource. Vous pouvez nous aider :" | ||
92 | "by contributing to the project:": "en contribuant au projet :" | ||
93 | an issue lists all our needs: "un ticket recense tous nos besoins" | ||
94 | via Paypal: "via Paypal" | ||
95 | via Flattr: "via Flattr" | ||
96 | |||
97 | # Howto | ||
98 | Form: Formulaire | ||
99 | Thanks to this form: "Grâce à ce formulaire" | ||
100 | Browser addons: "Extensions de navigateur" | ||
101 | Mobile apps: "Applications smartphone" | ||
102 | Bookmarklet: "Bookmarklet" | ||
103 | Standard Firefox Add-On: "Extension Firefox" | ||
104 | Chrome Extension: "Extension Chrome" | ||
105 | download the application: "téléchargez l'application" | ||
106 | "Drag & drop this link to your bookmarks bar:": "Glissez et déposez ce lien dans votre barre de favoris :" | ||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig index 156bc05f..0ff21f22 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig | |||
@@ -169,7 +169,7 @@ | |||
169 | 169 | ||
170 | <div class="hidden">{{ form_rest(form.pwd) }}</div> | 170 | <div class="hidden">{{ form_rest(form.pwd) }}</div> |
171 | <button class="btn waves-effect waves-light" type="submit" name="action"> | 171 | <button class="btn waves-effect waves-light" type="submit" name="action"> |
172 | {% trans %}Update{% endtrans %} | 172 | {% trans %}Save{% endtrans %} |
173 | </button> | 173 | </button> |
174 | 174 | ||
175 | </form> | 175 | </form> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index ff69e821..a1d4746e 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | |||
@@ -4,13 +4,13 @@ | |||
4 | {% set currentRoute = app.request.attributes.get('_route') %} | 4 | {% set currentRoute = app.request.attributes.get('_route') %} |
5 | 5 | ||
6 | {% if currentRoute == 'starred' %} | 6 | {% if currentRoute == 'starred' %} |
7 | {% trans %}Starred{% endtrans %} | 7 | {% trans %}starred{% endtrans %} |
8 | {% elseif currentRoute == 'archive' %} | 8 | {% elseif currentRoute == 'archive' %} |
9 | {% trans %}Archive{% endtrans %} | 9 | {% trans %}archive{% endtrans %} |
10 | {% elseif currentRoute == 'all' %} | 10 | {% elseif currentRoute == 'all' %} |
11 | {% trans %}Filtered{% endtrans %} | 11 | {% trans %}Filtered{% endtrans %} |
12 | {% else %} | 12 | {% else %} |
13 | {% trans %}Unread{% endtrans %} | 13 | {% trans %}unread{% endtrans %} |
14 | {% endif %} | 14 | {% endif %} |
15 | 15 | ||
16 | {% endblock %} | 16 | {% endblock %} |
@@ -49,9 +49,9 @@ | |||
49 | <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw|striptags|slice(0, 42) }}</a></span> | 49 | <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw|striptags|slice(0, 42) }}</a></span> |
50 | 50 | ||
51 | {% if entry.readingTime > 0 %} | 51 | {% if entry.readingTime > 0 %} |
52 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} {{ entry.readingTime }} min</span></div> | 52 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: {{ entry.readingTime }} min</span></div> |
53 | {% else %} | 53 | {% else %} |
54 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} <small class="inferieur"><</small> 1 min</span></div> | 54 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: <small class="inferieur"><</small> 1 min</span></div> |
55 | {% endif %} | 55 | {% endif %} |
56 | 56 | ||
57 | {% if entry.previewPicture is null %} | 57 | {% if entry.previewPicture is null %} |
@@ -66,9 +66,9 @@ | |||
66 | <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span> | 66 | <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}">{{ entry.title|raw }}</a></span> |
67 | 67 | ||
68 | {% if entry.readingTime > 0 %} | 68 | {% if entry.readingTime > 0 %} |
69 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} {{ entry.readingTime }} min</span></div> | 69 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: {{ entry.readingTime }} min</span></div> |
70 | {% else %} | 70 | {% else %} |
71 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time: {% endtrans %} <small class="inferieur"><</small> 1 min</span></div> | 71 | <div class="estimatedTime grey-text"><span class="tool reading-time">{% trans %}estimated reading time{% endtrans %}: <small class="inferieur"><</small> 1 min</span></div> |
72 | {% endif %} | 72 | {% endif %} |
73 | 73 | ||
74 | <p>{{ entry.content|striptags|slice(0, 300) }}…</p> | 74 | <p>{{ entry.content|striptags|slice(0, 300) }}…</p> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig index 9750f8ba..7d916237 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig | |||
@@ -9,12 +9,11 @@ | |||
9 | {% block content %} | 9 | {% block content %} |
10 | <main class="valign-wrapper"> | 10 | <main class="valign-wrapper"> |
11 | <div class="valign row"> | 11 | <div class="valign row"> |
12 | <h1>{% trans %}Forgot password{% endtrans %}</h1> | ||
13 | <div class="card sw"> | 12 | <div class="card sw"> |
13 | <div class="center"><img src="{{ asset('themes/baggy/img/logo-other_themes.png') }}" alt="wallabag logo" /></div> | ||
14 | <form action="{{ path('forgot_password') }}" method="post" name="forgotPasswordform"> | 14 | <form action="{{ path('forgot_password') }}" method="post" name="forgotPasswordform"> |
15 | <div class="card-content"> | 15 | <div class="card-content"> |
16 | 16 | <span class="black-text"><p>{% trans %}Enter your email address below and we'll send you password reset instructions.{% endtrans %}</p></span> | |
17 | <span class="card-title black-text"><p>{% trans %}Enter your email address below and we'll send you password reset instructions.{% endtrans %}</p></span> | ||
18 | 17 | ||
19 | {% if form_errors(form) %} | 18 | {% if form_errors(form) %} |
20 | <span class="black-text">{{ form_errors(form) }}</span> | 19 | <span class="black-text">{{ form_errors(form) }}</span> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig index 5de71d77..ef1fe916 100755 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig | |||
@@ -22,7 +22,7 @@ | |||
22 | <dd><a href="mailto:nicolas@loeuillet.org">Nicolas Lœuillet</a> — <a href="http://cdetc.fr">{% trans %}website{% endtrans %}</a></dd> | 22 | <dd><a href="mailto:nicolas@loeuillet.org">Nicolas Lœuillet</a> — <a href="http://cdetc.fr">{% trans %}website{% endtrans %}</a></dd> |
23 | <dd>Thomas Citharel — <a href="https://tcit.fr">{% trans %}website{% endtrans %}</a></dd> | 23 | <dd>Thomas Citharel — <a href="https://tcit.fr">{% trans %}website{% endtrans %}</a></dd> |
24 | <dd>Jérémy Benoist — <a href="http://www.j0k3r.net">{% trans %}website{% endtrans %}</a></dd> | 24 | <dd>Jérémy Benoist — <a href="http://www.j0k3r.net">{% trans %}website{% endtrans %}</a></dd> |
25 | <dt>{% trans %}And many others contributors ♥{% endtrans %} <a href="https://github.com/wallabag/wallabag/graphs/contributors">{% trans %}on Github{% endtrans %}</a></dt> | 25 | <dt>{% trans %}And many others contributors ♥{% endtrans %} <a href="https://github.com/wallabag/wallabag/graphs/contributors">{% trans %}on GitHub{% endtrans %}</a></dt> |
26 | <dt>{% trans %}Project website{% endtrans %}</dt> | 26 | <dt>{% trans %}Project website{% endtrans %}</dt> |
27 | <dd><a href="https://www.wallabag.org">https://www.wallabag.org</a></dd> | 27 | <dd><a href="https://www.wallabag.org">https://www.wallabag.org</a></dd> |
28 | <dt>{% trans %}License{% endtrans %}: <a href="http://en.wikipedia.org/wiki/MIT_License">MIT</a></dt> | 28 | <dt>{% trans %}License{% endtrans %}: <a href="http://en.wikipedia.org/wiki/MIT_License">MIT</a></dt> |
@@ -37,14 +37,14 @@ | |||
37 | <dd><a href="https://doc.wallabag.org/de">deutsch</a></dd> | 37 | <dd><a href="https://doc.wallabag.org/de">deutsch</a></dd> |
38 | 38 | ||
39 | <dt>{% trans %}Bug reports{% endtrans %}</dt> | 39 | <dt>{% trans %}Bug reports{% endtrans %}</dt> |
40 | <dd><a href="https://support.wallabag.org">{% trans %}On our support website{% endtrans %}</a> {% trans %}or{% endtrans %} <a href="https://github.com/wallabag/wallabag/issues">{% trans %}on Github{% endtrans %}</a></dd> | 40 | <dd><a href="https://support.wallabag.org">{% trans %}On our support website{% endtrans %}</a> {% trans %}or{% endtrans %} <a href="https://github.com/wallabag/wallabag/issues">{% trans %}on GitHub{% endtrans %}</a></dd> |
41 | </dl> | 41 | </dl> |
42 | </div> | 42 | </div> |
43 | 43 | ||
44 | <div id="set3" class="col s12"> | 44 | <div id="set3" class="col s12"> |
45 | <dl> | 45 | <dl> |
46 | <dt>{% trans %}wallabag is free and opensource. You can help us:{% endtrans %}</dt> | 46 | <dt>{% trans %}wallabag is free and opensource. You can help us:{% endtrans %}</dt> |
47 | <dd>by contributing to the project: <a href="https://github.com/wallabag/wallabag/issues/1254">an issue lists all our needs</a></dd> | 47 | <dd>{% trans %}by contributing to the project:{% endtrans %} <a href="https://github.com/wallabag/wallabag/issues/1254">{% trans %}an issue lists all our needs{% endtrans %}</a></dd> |
48 | <dd><a href="{{ paypal_url }}">{% trans %}via Paypal{% endtrans %}</a></dd> | 48 | <dd><a href="{{ paypal_url }}">{% trans %}via Paypal{% endtrans %}</a></dd> |
49 | 49 | ||
50 | <dd><a href="{{ flattr_url }}">{% trans %}via Flattr{% endtrans %}</a></dd> | 50 | <dd><a href="{{ flattr_url }}">{% trans %}via Flattr{% endtrans %}</a></dd> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/howto.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/howto.html.twig index 6f98ba99..78591172 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/howto.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/howto.html.twig | |||
@@ -1,6 +1,6 @@ | |||
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} | 1 | {% extends "WallabagCoreBundle::layout.html.twig" %} |
2 | 2 | ||
3 | {% block title %}{% trans %}Howto{% endtrans %}{% endblock %} | 3 | {% block title %}{% trans %}howto{% endtrans %}{% endblock %} |
4 | 4 | ||
5 | {% block content %} | 5 | {% block content %} |
6 | 6 | ||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig index a4b1d030..2d1d3ded 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig | |||
@@ -108,7 +108,7 @@ | |||
108 | <div class="footer-copyright"> | 108 | <div class="footer-copyright"> |
109 | <div class="container"> | 109 | <div class="container"> |
110 | <p>{% trans %}powered by{% endtrans %} <a target="_blank" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a></p> | 110 | <p>{% trans %}powered by{% endtrans %} <a target="_blank" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a></p> |
111 | <a class="grey-text text-lighten-4 right" href="{{ path('about') }}">{% trans %}about{% endtrans %}</a> | 111 | <a class="grey-text text-lighten-4 right" href="{{ path('about') }}">{% trans %}About{% endtrans %}</a> |
112 | </div> | 112 | </div> |
113 | </div> | 113 | </div> |
114 | </footer> | 114 | </footer> |