aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-03-16 23:56:42 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-03-20 21:56:42 +0100
commit3fae7f1d08be2debb5aff7d14e0976b6197323b8 (patch)
tree87a44e1b0206b790a22a54d8bcc2222531bd37c8 /src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
parenta0c6c244d9e873abee2c1d4b078f781e41ad8331 (diff)
downloadwallabag-3fae7f1d08be2debb5aff7d14e0976b6197323b8.tar.gz
wallabag-3fae7f1d08be2debb5aff7d14e0976b6197323b8.tar.zst
wallabag-3fae7f1d08be2debb5aff7d14e0976b6197323b8.zip
Add missing developer page
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/translations/messages.en.yml')
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.en.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
index 4f4ed215..1cd8b26e 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
@@ -325,6 +325,53 @@ import:
325 page_title: 'Import > Wallabag v2' 325 page_title: 'Import > Wallabag v2'
326 description: 'This importer will import all your wallabag v2 articles. Go to All articles, then, on the export sidebar, click on "JSON". You will have a "All articles.json" file.' 326 description: 'This importer will import all your wallabag v2 articles. Go to All articles, then, on the export sidebar, click on "JSON". You will have a "All articles.json" file.'
327 327
328developer:
329 page_title: 'Developer'
330 welcome_message: 'Welcome to the wallabag API'
331 documentation: 'Documentation'
332 how_to_first_app: 'How to create my first application'
333 full_documentation: 'View full API documentation'
334 clients:
335 title: 'Clients'
336 create_new: 'Create a new client'
337 existing_clients:
338 title: 'Existing clients'
339 field_id: 'Client ID'
340 field_secret: 'Client secret'
341 field_uris: 'Redirect URIs'
342 field_grant_types: 'Grant type allowed'
343 no_client: 'No client yet.'
344 remove:
345 warn_message_1: 'You have the ability to remove this client. This action is IRREVERSIBLE !'
346 warn_message_2: "If you remove it, every app configured with that client won't be able to auth on your wallabag."
347 action: 'Remove this client'
348 client:
349 page_title: 'Developer > New client'
350 page_description: 'You are about to create a new client. Please fill the field below for the redirect URI of your application.'
351 form:
352 redirect_uris_label: 'Redirect URIs'
353 save_label: 'Create a new client'
354 action_back: 'Back'
355 client_parameter:
356 page_title: 'Developer > Client parameters'
357 page_description: 'Here are your client parameters.'
358 field_id: 'Client ID'
359 field_secret: 'Client secret'
360 back: 'Back'
361 read_howto: 'Read the howto "Create my first application"'
362 howto:
363 page_title: 'Developer > How to create my first application'
364 description:
365 paragraph_1: '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.'
366 paragraph_2: 'You need a token to communicate between your 3rd application and wallabag API.'
367 paragraph_3: 'To create this token, you need <a href="%link%">to create a new client</a>.'
368 paragraph_4: 'Now, create your token (replace client_id, client_secret, username and password with the good values):'
369 paragraph_5: 'The API will return a response like this:'
370 paragraph_6: 'The access_token is useful to do a call to the API endpoint. For example:'
371 paragraph_7: 'This call will return all the entries for your user.'
372 paragraph_8: 'If you want to see all the API endpoints, you can have a look <a href="%link%">to our API documentation</a>.'
373 back: 'Back'
374
328validator: 375validator:
329 password_must_match: 'The password fields must match.' 376 password_must_match: 'The password fields must match.'
330 password_too_short: 'Password should by at least 8 chars long' 377 password_too_short: 'Password should by at least 8 chars long'
@@ -364,3 +411,7 @@ flashes:
364 failed: 'Import failed, please try again.' 411 failed: 'Import failed, please try again.'
365 failed_on_file: 'Error while processing import. Please verify your import file.' 412 failed_on_file: 'Error while processing import. Please verify your import file.'
366 summary: 'Import summary: %imported% imported, %skipped% already saved.' 413 summary: 'Import summary: %imported% imported, %skipped% already saved.'
414 developer:
415 notice:
416 client_created: 'New client created.'
417 client_deleted: 'Client deleted'