index.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /******************************************************************************/
  3. /* Each entry of that file can be associated with a comment to indicate its */
  4. /* state. When there is no comment, it means the entry is fully translated. */
  5. /* The recognized comments are (comment matching is case-insensitive): */
  6. /* + TODO: the entry has never been translated. */
  7. /* + DIRTY: the entry has been translated but needs to be updated. */
  8. /* + IGNORE: the entry does not need to be translated. */
  9. /* When a comment is not recognized, it is discarded. */
  10. /******************************************************************************/
  11. return array(
  12. 'about' => array(
  13. '_' => 'À propos',
  14. 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // IGNORE
  15. 'bugs_reports' => 'Rapports de bugs',
  16. 'credits' => 'Crédits',
  17. 'credits_content' => 'Des éléments de design sont issus du <a href="http://twitter.github.io/bootstrap/">projet Bootstrap</a> bien que FreshRSS n’utilise pas ce framework. Les <a href="https://gitlab.gnome.org/Archive/gnome-icon-theme-symbolic">icônes</a> sont issues du <a href="https://www.gnome.org/">projet GNOME</a>. La police <em>Open Sans</em> utilisée a été créée par <a href="https://fonts.google.com/specimen/Open+Sans">Steve Matteson</a>. FreshRSS repose sur <a href="https://framagit.org/marienfressinaud/MINZ">Minz</a>, un framework PHP.',
  18. 'documentation' => 'Documentation', // IGNORE
  19. 'freshrss_description' => 'FreshRSS est un agrégateur de flux RSS à auto-héberger. Il se veut léger et facile à prendre en main tout en étant un outil puissant et paramétrable.',
  20. 'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">sur GitHub</a>',
  21. 'license' => 'Licence',
  22. 'project_website' => 'Site du projet',
  23. 'title' => 'À propos',
  24. 'version' => 'Version', // IGNORE
  25. ),
  26. 'feed' => array(
  27. 'empty' => 'Il n’y a aucun article à afficher.',
  28. 'rss_of' => 'Flux RSS de %s',
  29. 'title' => 'Flux principal',
  30. 'title_fav' => 'Favoris',
  31. 'title_global' => 'Vue globale',
  32. ),
  33. 'log' => array(
  34. '_' => 'Logs', // IGNORE
  35. 'clear' => 'Effacer les logs',
  36. 'empty' => 'Les logs sont vides.',
  37. 'title' => 'Logs', // IGNORE
  38. ),
  39. 'menu' => array(
  40. 'about' => 'À propos de FreshRSS',
  41. 'before_one_day' => 'Antérieurs à 1 jour',
  42. 'before_one_week' => 'Antérieurs à 1 semaine',
  43. 'bookmark_query' => 'Enregistrer la recherche courante',
  44. 'favorites' => 'Articles favoris (%s)',
  45. 'global_view' => 'Vue globale',
  46. 'important' => 'Flux importants',
  47. 'main_stream' => 'Flux principaux',
  48. 'mark_all_read' => 'Tout marquer comme lu',
  49. 'mark_cat_read' => 'Marquer la catégorie comme lue',
  50. 'mark_feed_read' => 'Marquer le flux comme lu',
  51. 'mark_selection_unread' => 'Marquer la sélection comme non-lue',
  52. 'newer_first' => 'Plus récents en premier',
  53. 'non-starred' => 'Afficher les non-favoris',
  54. 'normal_view' => 'Vue normale',
  55. 'older_first' => 'Plus anciens en premier',
  56. 'queries' => 'Filtres utilisateurs',
  57. 'read' => 'Afficher les lus',
  58. 'reader_view' => 'Vue lecture',
  59. 'rss_view' => 'Flux RSS',
  60. 'search_short' => 'Rechercher',
  61. 'starred' => 'Afficher les favoris',
  62. 'stats' => 'Statistiques',
  63. 'subscription' => 'Gestion des abonnements',
  64. 'tags' => 'Mes étiquettes',
  65. 'unread' => 'Afficher les non-lus',
  66. ),
  67. 'share' => 'Partager',
  68. 'tag' => array(
  69. 'related' => 'Tags de l’article',
  70. ),
  71. 'tos' => array(
  72. 'title' => 'Conditions Générales d’Utilisation',
  73. ),
  74. );