]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/translations/messages.en.yml
Added a configuration to define the redirection after archiving an entry
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / translations / messages.en.yml
1 security:
2 login:
3 page_title: 'Welcome to wallabag!'
4 keep_logged_in: 'Keep me logged in'
5 forgot_password: 'Forgot your password?'
6 submit: 'Login'
7 register: 'Register'
8 username: 'Username'
9 password: 'Password'
10 cancel: 'Cancel'
11 resetting:
12 description: "Enter your email address below and we'll send you password reset instructions."
13 register:
14 page_title: 'Create an account'
15 go_to_account: 'Go to your account'
16
17 menu:
18 left:
19 unread: 'Unread'
20 starred: 'Starred'
21 archive: 'Archive'
22 all_articles: 'All entries'
23 config: 'Config'
24 tags: 'Tags'
25 internal_settings: 'Internal Settings'
26 import: 'Import'
27 howto: 'How to'
28 developer: 'Developer'
29 logout: 'Logout'
30 about: 'About'
31 search: 'Search'
32 save_link: 'Save a link'
33 back_to_unread: 'Back to unread articles'
34 users_management: 'Users management'
35 top:
36 add_new_entry: 'Add a new entry'
37 search: 'Search'
38 filter_entries: 'Filter entries'
39 export: 'Export'
40 search_form:
41 input_label: 'Enter your search here'
42
43 footer:
44 wallabag:
45 elsewhere: 'Take wallabag with you'
46 social: 'Social'
47 powered_by: 'powered by'
48 about: 'About'
49 stats: Since %user_creation% you read %nb_archives% articles. That is about %per_day% a day!
50
51 config:
52 page_title: 'Config'
53 tab_menu:
54 settings: 'Settings'
55 rss: 'RSS'
56 user_info: 'User information'
57 password: 'Password'
58 rules: 'Tagging rules'
59 new_user: 'Add a user'
60 form:
61 save: 'Save'
62 form_settings:
63 theme_label: 'Theme'
64 items_per_page_label: 'Items per page'
65 language_label: 'Language'
66 reading_speed:
67 label: 'Reading speed'
68 help_message: 'You can use online tools to estimate your reading speed:'
69 100_word: 'I read ~100 words per minute'
70 200_word: 'I read ~200 words per minute'
71 300_word: 'I read ~300 words per minute'
72 400_word: 'I read ~400 words per minute'
73 action_mark_as_read:
74 label: 'Where do you want to be redirected after mark an article as read?'
75 redirect_homepage: 'To the homepage'
76 redirect_current_page: 'To the current page'
77 pocket_consumer_key_label: Consumer key for Pocket to import contents
78 android_configuration: Configure your Android application
79 form_rss:
80 description: 'RSS feeds provided by wallabag allow you to read your saved articles with your favourite RSS reader. You need to generate a token first.'
81 token_label: 'RSS token'
82 no_token: 'No token'
83 token_create: 'Create your token'
84 token_reset: 'Regenerate your token'
85 rss_links: 'RSS links'
86 rss_link:
87 unread: 'unread'
88 starred: 'starred'
89 archive: 'archived'
90 rss_limit: 'Number of items in the feed'
91 form_user:
92 two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connection."
93 name_label: 'Name'
94 email_label: 'Email'
95 twoFactorAuthentication_label: 'Two factor authentication'
96 delete:
97 title: Delete my account (a.k.a danger zone)
98 description: If you remove your account, ALL your articles, ALL your tags, ALL your annotations and your account will be PERMANENTLY removed (it can't be UNDONE). You'll then be logged out.
99 confirm: Are you really sure? (THIS CAN'T BE UNDONE)
100 button: Delete my account
101 reset:
102 title: Reset area (a.k.a danger zone)
103 description: By hiting buttons below you'll have ability to remove some informations from your account. Be aware that these actions are IRREVERSIBLE.
104 annotations: Remove ALL annotations
105 tags: Remove ALL tags
106 entries: Remove ALL entries
107 confirm: Are you really really sure? (THIS CAN'T BE UNDONE)
108 form_password:
109 old_password_label: 'Current password'
110 new_password_label: 'New password'
111 repeat_new_password_label: 'Repeat new password'
112 form_rules:
113 if_label: 'if'
114 then_tag_as_label: 'then tag as'
115 delete_rule_label: 'delete'
116 edit_rule_label: 'edit'
117 rule_label: 'Rule'
118 tags_label: 'Tags'
119 faq:
120 title: 'FAQ'
121 tagging_rules_definition_title: 'What does « tagging rules » mean?'
122 tagging_rules_definition_description: 'They are rules used by Wallabag to automatically tag new entries.<br />Each time a new entry is added, all the tagging rules will be used to add the tags you configured, thus saving you the trouble of manually classifying your entries.'
123 how_to_use_them_title: 'How do I use them?'
124 how_to_use_them_description: 'Let us assume you want to tag new entries as « <i>short reading</i> » when the reading time is under 3 minutes.<br />In that case, you should put « readingTime &lt;= 3 » in the <i>Rule</i> field and « <i>short reading</i> » in the <i>Tags</i> field.<br />Several tags can added simultaneously by separating them with a comma: « <i>short reading, must read</i> »<br />Complex rules can be written by using predefined operators: if « <i>readingTime &gt;= 5 AND domainName = "github.com"</i> » then tag as « <i>long reading, github </i> »'
125 variables_available_title: 'Which variables and operators can I use to write rules?'
126 variables_available_description: 'The following variables and operators can be used to create tagging rules:'
127 meaning: 'Meaning'
128 variable_description:
129 label: 'Variable'
130 title: 'Title of the entry'
131 url: 'URL of the entry'
132 isArchived: 'Whether the entry is archived or not'
133 isStarred: 'Whether the entry is starred or not'
134 content: "The entry's content"
135 language: "The entry's language"
136 mimetype: "The entry's mime-type"
137 readingTime: "The estimated entry's reading time, in minutes"
138 domainName: 'The domain name of the entry'
139 operator_description:
140 label: 'Operator'
141 less_than: 'Less than...'
142 strictly_less_than: 'Strictly less than...'
143 greater_than: 'Greater than...'
144 strictly_greater_than: 'Strictly greater than...'
145 equal_to: 'Equal to...'
146 not_equal_to: 'Not equal to...'
147 or: 'One rule OR another'
148 and: 'One rule AND another'
149 matches: 'Tests that a <i>subject</i> is matches a <i>search</i> (case-insensitive).<br />Example: <code>title matches "football"</code>'
150
151 entry:
152 page_titles:
153 unread: 'Unread entries'
154 starred: 'Starred entries'
155 archived: 'Archived entries'
156 filtered: 'Filtered entries'
157 filtered_tags: 'Filtered by tags:'
158 untagged: 'Untagged entries'
159 list:
160 number_on_the_page: '{0} There are no entries.|{1} There is one entry.|]1,Inf[ There are %count% entries.'
161 reading_time: 'estimated reading time'
162 reading_time_minutes: 'estimated reading time: %readingTime% min'
163 reading_time_less_one_minute: 'estimated reading time: <small class="inferieur">&lt;</small> 1 min'
164 number_of_tags: '{1}and one other tag|]1,Inf[and %count% other tags'
165 reading_time_minutes_short: '%readingTime% min'
166 reading_time_less_one_minute_short: '<small class="inferieur">&lt;</small> 1 min'
167 original_article: 'original'
168 toogle_as_read: 'Toggle mark as read'
169 toogle_as_star: 'Toggle starred'
170 delete: 'Delete'
171 export_title: 'Export'
172 filters:
173 title: 'Filters'
174 status_label: 'Status'
175 archived_label: 'Archived'
176 starred_label: 'Starred'
177 unread_label: 'Unread'
178 preview_picture_label: 'Has a preview picture'
179 preview_picture_help: 'Preview picture'
180 language_label: 'Language'
181 reading_time:
182 label: 'Reading time in minutes'
183 from: 'from'
184 to: 'to'
185 domain_label: 'Domain name'
186 created_at:
187 label: 'Creation date'
188 from: 'from'
189 to: 'to'
190 action:
191 clear: 'Clear'
192 filter: 'Filter'
193 view:
194 left_menu:
195 back_to_top: 'Back to top'
196 back_to_homepage: 'Back'
197 set_as_read: 'Mark as read'
198 set_as_unread: 'Mark as unread'
199 set_as_starred: 'Toggle starred'
200 view_original_article: 'Original article'
201 re_fetch_content: 'Re-fetch content'
202 delete: 'Delete'
203 add_a_tag: 'Add a tag'
204 share_content: 'Share'
205 share_email_label: 'Email'
206 public_link: 'public link'
207 delete_public_link: 'delete public link'
208 download: 'Download'
209 print: 'Print'
210 problem:
211 label: 'Problems?'
212 description: 'Does this article appear wrong?'
213 edit_title: 'Edit title'
214 original_article: 'original'
215 annotations_on_the_entry: '{0} No annotations|{1} One annotation|]1,Inf[ %count% annotations'
216 created_at: 'Creation date'
217 new:
218 page_title: 'Save new entry'
219 placeholder: 'http://website.com'
220 form_new:
221 url_label: Url
222 edit:
223 page_title: 'Edit an entry'
224 title_label: 'Title'
225 url_label: 'Url'
226 is_public_label: 'Public'
227 save_label: 'Save'
228 public:
229 shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"
230
231 about:
232 page_title: 'About'
233 top_menu:
234 who_behind_wallabag: 'Who is behind wallabag'
235 getting_help: 'Getting help'
236 helping: 'Helping wallabag'
237 contributors: 'Contributors'
238 third_party: 'Third-party libraries'
239 who_behind_wallabag:
240 developped_by: 'Developed by'
241 website: 'website'
242 many_contributors: 'And many others contributors ♥ <a href="https://github.com/wallabag/wallabag/graphs/contributors">on Github</a>'
243 project_website: 'Project website'
244 license: 'License'
245 version: 'Version'
246 getting_help:
247 documentation: 'Documentation'
248 bug_reports: 'Bug reports'
249 support: '<a href="https://support.wallabag.org">On our support website</a> or <a href="https://github.com/wallabag/wallabag/issues">on GitHub</a>'
250 helping:
251 description: 'wallabag is free and open source. You can help us:'
252 by_contributing: 'by contributing to the project:'
253 by_contributing_2: 'an issue lists all our needs'
254 by_paypal: 'via Paypal'
255 contributors:
256 description: 'Thank you to contributors on wallabag web application'
257 third_party:
258 description: 'Here is the list of third-party libraries used in wallabag (with their licenses):'
259 package: 'Package'
260 license: 'License'
261
262 howto:
263 page_title: 'How to'
264 page_description: 'There are several ways to save an article:'
265 top_menu:
266 browser_addons: 'Browser addons'
267 mobile_apps: 'Mobile apps'
268 bookmarklet: 'Bookmarklet'
269 form:
270 description: 'Thanks to this form'
271 browser_addons:
272 firefox: 'Standard Firefox Add-On'
273 chrome: 'Chrome Extension'
274 mobile_apps:
275 android:
276 via_f_droid: 'via F-Droid'
277 via_google_play: 'via Google Play'
278 ios: 'on the iTunes Store'
279 windows: 'on the Microsoft Store'
280 bookmarklet:
281 description: 'Drag & drop this link to your bookmarks bar:'
282
283 quickstart:
284 page_title: 'Quickstart'
285 more: 'More…'
286 intro:
287 title: 'Welcome to wallabag!'
288 paragraph_1: "We'll accompany you on your visit to wallabag and show you some features that might interest you."
289 paragraph_2: 'Follow us!'
290 configure:
291 title: 'Configure the application'
292 description: 'In order to have an application which suits you, have a look into the configuration of wallabag.'
293 language: 'Change language and design'
294 rss: 'Enable RSS feeds'
295 tagging_rules: 'Write rules to automatically tag your articles'
296 admin:
297 title: 'Administration'
298 description: 'As an administrator, you have privileges on wallabag. You can:'
299 new_user: 'Create a new user'
300 analytics: 'Configure analytics'
301 sharing: 'Enable some parameters about article sharing'
302 export: 'Configure export'
303 import: 'Configure import'
304 first_steps:
305 title: 'First steps'
306 description: "Now wallabag is well configured, it's time to archive the web. You can click on the top right sign + to add a link."
307 new_article: 'Save your first article'
308 unread_articles: 'And classify it!'
309 migrate:
310 title: 'Migrate from an existing service'
311 description: "Are you using another service? We'll help you to retrieve your data on wallabag."
312 pocket: 'Migrate from Pocket'
313 wallabag_v1: 'Migrate from wallabag v1'
314 wallabag_v2: 'Migrate from wallabag v2'
315 readability: 'Migrate from Readability'
316 instapaper: 'Migrate from Instapaper'
317 developer:
318 title: 'Developers'
319 description: 'We also thought to the developers: Docker, API, translations, etc.'
320 create_application: 'Create your third application'
321 use_docker: 'Use Docker to install wallabag'
322 docs:
323 title: 'Full documentation'
324 description: "There are so much features in wallabag. Don't hesitate to read the manual to know them and to learn how to use them."
325 annotate: 'Annotate your article'
326 export: 'Convert your articles into ePUB or PDF'
327 search_filters: 'See how you can look for an article by using the search engine and filters'
328 fetching_errors: 'What can I do if an article encounters errors during fetching?'
329 all_docs: 'And so many other articles!'
330 support:
331 title: 'Support'
332 description: 'If you need some help, we are here for you.'
333 github: 'On GitHub'
334 email: 'By email'
335 gitter: 'On Gitter'
336
337 tag:
338 page_title: 'Tags'
339 list:
340 number_on_the_page: '{0} There are no tags.|{1} There is one tag.|]1,Inf[ There are %count% tags.'
341 see_untagged_entries: 'See untagged entries'
342 new:
343 add: 'Add'
344 placeholder: 'You can add several tags, separated by a comma.'
345
346 import:
347 page_title: 'Import'
348 page_description: 'Welcome to wallabag importer. Please select your previous service from which you want to migrate.'
349 action:
350 import_contents: 'Import contents'
351 form:
352 mark_as_read_title: 'Mark all as read?'
353 mark_as_read_label: 'Mark all imported entries as read'
354 file_label: 'File'
355 save_label: 'Upload file'
356 pocket:
357 page_title: 'Import > Pocket'
358 description: "This importer will import all of your Pocket data. Pocket doesn't allow us to retrieve content from their service, so the readable content of each article will be re-fetched by wallabag."
359 config_missing:
360 description: "Pocket import isn't configured."
361 admin_message: 'You need to define %keyurls%a pocket_consumer_key%keyurle%.'
362 user_message: 'Your server admin needs to define an API Key for Pocket.'
363 authorize_message: 'You can import your data from your Pocket account. You just have to click on the below button and authorize the application to connect to getpocket.com.'
364 connect_to_pocket: 'Connect to Pocket and import data'
365 wallabag_v1:
366 page_title: 'Import > Wallabag v1'
367 description: 'This importer will import all your wallabag v1 articles. On your config page, click on "JSON export" in the "Export your wallabag data" section. You will have a "wallabag-export-1-xxxx-xx-xx.json" file.'
368 how_to: 'Please select your wallabag export and click on the below button to upload and import it.'
369 wallabag_v2:
370 page_title: 'Import > Wallabag v2'
371 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.'
372 readability:
373 page_title: 'Import > Readability'
374 description: 'This importer will import all your Readability articles. On the tools (https://www.readability.com/tools/) page, click on "Export your data" in the "Data Export" section. You will received an email to download a json (which does not end with .json in fact).'
375 how_to: 'Please select your Readability export and click on the below button to upload and import it.'
376 worker:
377 enabled: "Import is made asynchronously. Once the import task is started, an external worker will handle jobs one at a time. The current service is:"
378 download_images_warning: "You enabled downloading images for your articles. Combined with classic import it can take ages to proceed (or maybe failed). We <strong>strongly recommend</strong> to enable asynchronous import to avoid errors."
379 firefox:
380 page_title: 'Import > Firefox'
381 description: "This importer will import all your Firefox bookmarks. Just go to your bookmarks (Ctrl+Maj+O), then into \"Import and backup\", choose \"Backup...\". You will obtain a .json file."
382 how_to: "Please choose the bookmark backup file and click on the button below to import it. Note that the process may take a long time since all articles have to be fetched."
383 chrome:
384 page_title: 'Import > Chrome'
385 description: "This importer will import all your Chrome bookmarks. The location of the file depends on your operating system : <ul><li>On Linux, go into the <code>~/.config/chromium/Default/</code> directory</li><li>On Windows, it should be at <code>%LOCALAPPDATA%\\Google\\Chrome\\User Data\\Default</code></li><li>On OS X, it should be at <code>~/Library/Application Support/Google/Chrome/Default/Bookmarks</code></li></ul>Once you got there, copy the <code>Bookmarks</code> file someplace you'll find.<em><br>Note that if you have Chromium instead of Chrome, you'll have to correct paths accordingly.</em></p>"
386 how_to: "Please choose the bookmark backup file and click on the button below to import it. Note that the process may take a long time since all articles have to be fetched."
387 instapaper:
388 page_title: 'Import > Instapaper'
389 description: 'This importer will import all your Instapaper articles. On the settings (https://www.instapaper.com/user) page, click on "Download .CSV file" in the "Export" section. A CSV file will be downloaded (like "instapaper-export.csv").'
390 how_to: 'Please select your Instapaper export and click on the below button to upload and import it.'
391 pinboard:
392 page_title: "Import > Pinboard"
393 description: 'This importer will import all your Pinboard articles. On the backup (https://pinboard.in/settings/backup) page, click on "JSON" in the "Bookmarks" section. A JSON file will be downloaded (like "pinboard_export").'
394 how_to: 'Please select your Pinboard export and click on the below button to upload and import it.'
395
396 developer:
397 page_title: 'Developer'
398 welcome_message: 'Welcome to the wallabag API'
399 documentation: 'Documentation'
400 how_to_first_app: 'How to create my first application'
401 full_documentation: 'View full API documentation'
402 list_methods: 'List API methods'
403 clients:
404 title: 'Clients'
405 create_new: 'Create a new client'
406 existing_clients:
407 title: 'Existing clients'
408 field_id: 'Client ID'
409 field_secret: 'Client secret'
410 field_uris: 'Redirect URIs'
411 field_grant_types: 'Grant type allowed'
412 no_client: 'No client yet.'
413 remove:
414 warn_message_1: 'You have the ability to remove the client %name%. This action is IRREVERSIBLE !'
415 warn_message_2: "If you remove it, every app configured with that client won't be able to auth on your wallabag."
416 action: 'Remove the client %name%'
417 client:
418 page_title: 'Developer > New client'
419 page_description: 'You are about to create a new client. Please fill the field below for the redirect URI of your application.'
420 form:
421 name_label: 'Name of the client'
422 redirect_uris_label: 'Redirect URIs (optional)'
423 save_label: 'Create a new client'
424 action_back: 'Back'
425 client_parameter:
426 page_title: 'Developer > Client parameters'
427 page_description: 'Here are your client parameters.'
428 field_name: 'Client name'
429 field_id: 'Client ID'
430 field_secret: 'Client secret'
431 back: 'Back'
432 read_howto: 'Read the howto "Create my first application"'
433 howto:
434 page_title: 'Developer > How to create my first application'
435 description:
436 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.'
437 paragraph_2: 'You need a token to communicate between your 3rd application and wallabag API.'
438 paragraph_3: 'To create this token, you need <a href="%link%">to create a new client</a>.'
439 paragraph_4: 'Now, create your token (replace client_id, client_secret, username and password with the good values):'
440 paragraph_5: 'The API will return a response like this:'
441 paragraph_6: 'The access_token is useful to do a call to the API endpoint. For example:'
442 paragraph_7: 'This call will return all the entries for your user.'
443 paragraph_8: 'If you want to see all the API endpoints, you can have a look <a href="%link%">to our API documentation</a>.'
444 back: 'Back'
445
446 user:
447 page_title: Users management
448 new_user: Create a new user
449 edit_user: Edit an existing user
450 description: "Here you can manage all users (create, edit and delete)"
451 list:
452 actions: Actions
453 edit_action: Edit
454 yes: Yes
455 no: No
456 create_new_one: Create a new user
457 form:
458 username_label: 'Username'
459 name_label: 'Name'
460 password_label: 'Password'
461 repeat_new_password_label: 'Repeat new password'
462 plain_password_label: '????'
463 email_label: 'Email'
464 enabled_label: 'Enabled'
465 locked_label: 'Locked'
466 last_login_label: 'Last login'
467 twofactor_label: Two factor authentication
468 save: Save
469 delete: Delete
470 delete_confirm: Are you sure?
471 back_to_list: Back to list
472
473 error:
474 page_title: An error occurred
475
476 flashes:
477 config:
478 notice:
479 config_saved: 'Config saved. Some parameters will be considered after disconnection.'
480 password_updated: 'Password updated'
481 password_not_updated_demo: "In demonstration mode, you can't change password for this user."
482 user_updated: 'Information updated'
483 rss_updated: 'RSS information updated'
484 tagging_rules_updated: 'Tagging rules updated'
485 tagging_rules_deleted: 'Tagging rule deleted'
486 rss_token_updated: 'RSS token updated'
487 annotations_reset: Annotations reset
488 tags_reset: Tags reset
489 entries_reset: Entries reset
490 entry:
491 notice:
492 entry_already_saved: 'Entry already saved on %date%'
493 entry_saved: 'Entry saved'
494 entry_saved_failed: 'Entry saved but fetching content failed'
495 entry_updated: 'Entry updated'
496 entry_reloaded: 'Entry reloaded'
497 entry_reloaded_failed: 'Entry reloaded but fetching content failed'
498 entry_archived: 'Entry archived'
499 entry_unarchived: 'Entry unarchived'
500 entry_starred: 'Entry starred'
501 entry_unstarred: 'Entry unstarred'
502 entry_deleted: 'Entry deleted'
503 tag:
504 notice:
505 tag_added: 'Tag added'
506 import:
507 notice:
508 failed: 'Import failed, please try again.'
509 failed_on_file: 'Error while processing import. Please verify your import file.'
510 summary: 'Import summary: %imported% imported, %skipped% already saved.'
511 summary_with_queue: 'Import summary: %queued% queued.'
512 error:
513 redis_enabled_not_installed: Redis is enabled for handle asynchronous import but it looks like <u>we can't connect to it</u>. Please check Redis configuration.
514 rabbit_enabled_not_installed: RabbitMQ is enabled for handle asynchronous import but it looks like <u>we can't connect to it</u>. Please check RabbitMQ configuration.
515 developer:
516 notice:
517 client_created: 'New client %name% created.'
518 client_deleted: 'Client %name% deleted'
519 user:
520 notice:
521 added: 'User "%username%" added'
522 updated: 'User "%username%" updated'
523 deleted: 'User "%username%" deleted'