mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 11:31:05 +00:00
Translate "how to" page
This commit is contained in:
parent
2766668b59
commit
f17281417c
3 changed files with 24 additions and 16 deletions
|
@ -265,3 +265,11 @@ Here are your client parameters.: "Voilà les paramètres de votre client"
|
||||||
Read the howto "Create my first application": "Lire \"comment créer ma première application\""
|
Read the howto "Create my first application": "Lire \"comment créer ma première application\""
|
||||||
Client deleted: "Client supprimé"
|
Client deleted: "Client supprimé"
|
||||||
No client yet.: "Aucun client pour le moment"
|
No client yet.: "Aucun client pour le moment"
|
||||||
|
"The following commands make use of the <a href=\"https://github.com/jkbrzt/httpie\">HTTPie library</a>. Make sure it is installed on your system before using it.": "Les commandes suivantes utilisent la <a href=\"https://github.com/jkbrzt/httpie\">librarie HTTPie</a>. Assurez-vous qu'elle soit installée avant de l'utiliser."
|
||||||
|
You need a token to communicate between your 3rd application and wallabag API.: "Vous avez besoin d'un token pour échanger entre votre appication et l'API de wallabag."
|
||||||
|
"To create this token, you need <a href=\"%link%\">to create a new client</a>.": "Pour créer un token, vous devez <a href=\"%link%\">créer un nouveau client</a>."
|
||||||
|
Now, create your token (replace client_id, client_secret, username and password with the good values):: "Maintenant créer votre token (remplacer client_id, client_secret, username et password avec les bonnes valeurs):"
|
||||||
|
The API will return a response like this:: "L'API vous retournera une réponse comme ça:"
|
||||||
|
The access_token is useful to do a call to the API endpoint. For example:: "L'access_token doit être utilisé pour faire un appel à l'API. Par exemple:"
|
||||||
|
This call will return all the entries for your user.: "Cet appel va retourner tous les articles de l'utilisateur."
|
||||||
|
"If you want to see all the API endpoints, you can have a look <a href=\"%link%\">to our API documentation</a>.": "Si vous voulez toutes les méthodes de l'API, jettez un oeil <a href=\"%link%\">à la documentation de l'API</a>."
|
||||||
|
|
|
@ -13,10 +13,10 @@
|
||||||
<div class="card-panel settings">
|
<div class="card-panel settings">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<p>The following commands make use of the <a href="https://github.com/jkbrzt/httpie">HTTPie library</a>. Make sure it is installed on your system before using it.</p>
|
<p>{% trans %}The following commands make use of the <a href="https://github.com/jkbrzt/httpie">HTTPie library</a>. Make sure it is installed on your system before using it.{% endtrans %}</p>
|
||||||
<p>You need a token to communicate between your 3rd application and wallabag API.</p>
|
<p>{% trans %}You need a token to communicate between your 3rd application and wallabag API.{% endtrans %}</p>
|
||||||
<p>To create this token, you need <a href="{{ path('developer_create_client') }}">to create a new client</a>.</p>
|
<p>{% trans with {'%link%': path('developer_create_client')} %}To create this token, you need <a href="%link%">to create a new client</a>.{% endtrans %}</p>
|
||||||
<p>Now, create your token (replace client_id, client_secret, username and password with the good values):</p>
|
<p>{% trans %}Now, create your token (replace client_id, client_secret, username and password with the good values):{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">http POST http://v2.wallabag.org/oauth/v2/token \
|
<pre><code class="language-bash">http POST http://v2.wallabag.org/oauth/v2/token \
|
||||||
grant_type=password \
|
grant_type=password \
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
username=yourUsername \
|
username=yourUsername \
|
||||||
password=yourPassw0rd</code></pre>
|
password=yourPassw0rd</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>The API will return a response like this:</p>
|
<p>{% trans %}The API will return a response like this:{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">HTTP/1.1 200 OK
|
<pre><code class="language-bash">HTTP/1.1 200 OK
|
||||||
Cache-Control: no-store, private
|
Cache-Control: no-store, private
|
||||||
|
@ -45,13 +45,13 @@ X-Powered-By: PHP/5.5.9-1ubuntu4.13
|
||||||
"token_type": "bearer"
|
"token_type": "bearer"
|
||||||
}</code></pre>
|
}</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>The access_token is useful to do a call to the API endpoint. For example:</p>
|
<p>{% trans %}The access_token is useful to do a call to the API endpoint. For example:{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">http GET http://v2.wallabag.org/api/entries.json \
|
<pre><code class="language-bash">http GET http://v2.wallabag.org/api/entries.json \
|
||||||
"Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"</code></pre>
|
"Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>This call will return all the entries for your user.</p>
|
<p>{% trans %}This call will return all the entries for your user.{% endtrans %}</p>
|
||||||
<p>If you want to see all the API endpoints, you can have a look <a href="{{ path('nelmio_api_doc_index') }}">to our API documentation</a>.</p>
|
<p>{% trans with {'%link%': path('nelmio_api_doc_index')} %}If you want to see all the API endpoints, you can have a look <a href="%link%">to our API documentation</a>.{% endtrans %}</p>
|
||||||
<p><a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a></p>
|
<p><a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -13,10 +13,10 @@
|
||||||
<div class="card-panel settings">
|
<div class="card-panel settings">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<p>The following commands make use of the <a href="https://github.com/jkbrzt/httpie">HTTPie library</a>. Make sure it is installed on your system before using it.</p>
|
<p>{% trans %}The following commands make use of the <a href="https://github.com/jkbrzt/httpie">HTTPie library</a>. Make sure it is installed on your system before using it.{% endtrans %}</p>
|
||||||
<p>You need a token to communicate between your 3rd application and wallabag API.</p>
|
<p>{% trans %}You need a token to communicate between your 3rd application and wallabag API.{% endtrans %}</p>
|
||||||
<p>To create this token, you need <a href="{{ path('developer_create_client') }}">to create a new client</a>.</p>
|
<p>{% trans with {'%link%': path('developer_create_client')} %}To create this token, you need <a href="%link%">to create a new client</a>.{% endtrans %}</p>
|
||||||
<p>Now, create your token (replace client_id, client_secret, username and password with the good values):</p>
|
<p>{% trans %}Now, create your token (replace client_id, client_secret, username and password with the good values):{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">http POST http://v2.wallabag.org/oauth/v2/token \
|
<pre><code class="language-bash">http POST http://v2.wallabag.org/oauth/v2/token \
|
||||||
grant_type=password \
|
grant_type=password \
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
username=yourUsername \
|
username=yourUsername \
|
||||||
password=yourPassw0rd</code></pre>
|
password=yourPassw0rd</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>The API will return a response like this:</p>
|
<p>{% trans %}The API will return a response like this:{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">HTTP/1.1 200 OK
|
<pre><code class="language-bash">HTTP/1.1 200 OK
|
||||||
Cache-Control: no-store, private
|
Cache-Control: no-store, private
|
||||||
|
@ -45,13 +45,13 @@ X-Powered-By: PHP/5.5.9-1ubuntu4.13
|
||||||
"token_type": "bearer"
|
"token_type": "bearer"
|
||||||
}</code></pre>
|
}</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>The access_token is useful to do a call to the API endpoint. For example:</p>
|
<p>{% trans %}The access_token is useful to do a call to the API endpoint. For example:{% endtrans %}</p>
|
||||||
<p>
|
<p>
|
||||||
<pre><code class="language-bash">http GET http://v2.wallabag.org/api/entries.json \
|
<pre><code class="language-bash">http GET http://v2.wallabag.org/api/entries.json \
|
||||||
"Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"</code></pre>
|
"Authorization:Bearer ZWFjNjA3ZWMwYWVmYzRkYTBlMmQ3NTllYmVhOGJiZDE0ZTg1NjE4MjczOTVlNzM0ZTRlMWQ0MmRlMmYwNTk5Mw"</code></pre>
|
||||||
</p>
|
</p>
|
||||||
<p>This call will return all the entries for your user.</p>
|
<p>{% trans %}This call will return all the entries for your user.{% endtrans %}</p>
|
||||||
<p>If you want to see all the API endpoints, you can have a look <a href="{{ path('nelmio_api_doc_index') }}">to our API documentation</a>.</p>
|
<p>{% trans with {'%link%': path('nelmio_api_doc_index')} %}If you want to see all the API endpoints, you can have a look <a href="%link%">to our API documentation</a>.{% endtrans %}</p>
|
||||||
<p><a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a></p>
|
<p><a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue