aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 08:21:39 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-29 21:28:25 +0100
commit6a2c524a2cee02a0e053574155f173147cd3c870 (patch)
treee71bc675b073ff8062715b69807252bb777c1efb
parentb6321bed7b8b8ba34e23a3d0c048f7d05ab309bf (diff)
downloadwallabag-6a2c524a2cee02a0e053574155f173147cd3c870.tar.gz
wallabag-6a2c524a2cee02a0e053574155f173147cd3c870.tar.zst
wallabag-6a2c524a2cee02a0e053574155f173147cd3c870.zip
API: rename application to client
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig8
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig5
2 files changed, 6 insertions, 7 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
index 5ab35700..08d1cb15 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
@@ -1,6 +1,6 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %} 1{% extends "WallabagCoreBundle::layout.html.twig" %}
2 2
3{% block title %}{% trans %}New application{% endtrans %}{% endblock %} 3{% block title %}{% trans %}New client{% endtrans %}{% endblock %}
4 4
5{% block content %} 5{% block content %}
6<div class="row"> 6<div class="row">
@@ -8,11 +8,11 @@
8 <div class="card-panel settings"> 8 <div class="card-panel settings">
9 9
10 <div class="row"> 10 <div class="row">
11 <h3>My application parameters</h3> 11 <h3>My client parameters</h3>
12 <p>Here are your application parameters.</p> 12 <p>Here are your client parameters.</p>
13 <ul> 13 <ul>
14 <li>Client ID: {{ client_id }}</li> 14 <li>Client ID: {{ client_id }}</li>
15 <li>Client Secret: {{ client_secret }}</li> 15 <li>Client secret: {{ client_secret }}</li>
16 </ul> 16 </ul>
17 <a class="waves-effect waves-light btn" href="{{ path('developer') }}">Back to Developer main page</a> 17 <a class="waves-effect waves-light btn" href="{{ path('developer') }}">Back to Developer main page</a>
18 </div> 18 </div>
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
index 36d5c2bd..3507b654 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
@@ -17,10 +17,9 @@
17 <li><a href="{{ path('nelmio_api_doc_index') }}">View full API documentation</a></li> 17 <li><a href="{{ path('nelmio_api_doc_index') }}">View full API documentation</a></li>
18 </ul> 18 </ul>
19 19
20 <h4>My applications</h4> 20 <h4>My clients</h4>
21 <ul> 21 <ul>
22 <li><a href="{{ path('create_client') }}">Create a new application</a></li> 22 <li><a href="{{ path('create_client') }}">Create a new client</a></li>
23 <li><a href="#">See my applications</a></li>
24 </ul> 23 </ul>
25 24
26 </div> 25 </div>