aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources')
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml4
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
index 542ddf48..cd239b5c 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
@@ -515,7 +515,7 @@ user:
515 twofactor_label: "Double authentification" 515 twofactor_label: "Double authentification"
516 save: "Sauvegarder" 516 save: "Sauvegarder"
517 delete: "Supprimer" 517 delete: "Supprimer"
518 delete_confirm: "Êtes-vous sur ?" 518 delete_confirm: "Êtes-vous sûr ?"
519 back_to_list: "Revenir à la liste" 519 back_to_list: "Revenir à la liste"
520 search: 520 search:
521 placeholder: "Filtrer par nom d’utilisateur ou email" 521 placeholder: "Filtrer par nom d’utilisateur ou email"
@@ -537,7 +537,7 @@ site_credential:
537 password_label: 'Mot de passe' 537 password_label: 'Mot de passe'
538 save: "Sauvegarder" 538 save: "Sauvegarder"
539 delete: "Supprimer" 539 delete: "Supprimer"
540 delete_confirm: "Êtes-vous sur ?" 540 delete_confirm: "Êtes-vous sûr ?"
541 back_to_list: "Revenir à la liste" 541 back_to_list: "Revenir à la liste"
542 542
543error: 543error:
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
index c128bceb..4d30a692 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
@@ -16,6 +16,7 @@
16 <tr> 16 <tr>
17 <th>{{ 'site_credential.form.host_label'|trans }}</th> 17 <th>{{ 'site_credential.form.host_label'|trans }}</th>
18 <th>{{ 'site_credential.form.username_label'|trans }}</th> 18 <th>{{ 'site_credential.form.username_label'|trans }}</th>
19 <th>{{ 'site_credential.form.password_label'|trans }}</th>
19 <th>{{ 'site_credential.list.actions'|trans }}</th> 20 <th>{{ 'site_credential.list.actions'|trans }}</th>
20 </tr> 21 </tr>
21 </thead> 22 </thead>
@@ -23,7 +24,8 @@
23 {% for credential in credentials %} 24 {% for credential in credentials %}
24 <tr> 25 <tr>
25 <td>{{ credential.host }}</td> 26 <td>{{ credential.host }}</td>
26 <td>{{ credential.username }}</td> 27 <td>*****</td>
28 <td>*****</td>
27 <td> 29 <td>
28 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> 30 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
29 </td> 31 </td>