index.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. '_' => 'About', // IGNORE
  14. 'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // IGNORE
  15. 'bug_reports' => array(
  16. 'environment_information' => array(
  17. '_' => 'System information', // IGNORE
  18. 'browser' => 'Browser', // IGNORE
  19. 'database' => 'Database', // IGNORE
  20. 'server_software' => 'Server software', // IGNORE
  21. 'version_curl' => 'cURL version', // IGNORE
  22. 'version_frss' => 'FreshRSS version', // IGNORE
  23. 'version_php' => 'PHP version', // IGNORE
  24. ),
  25. ),
  26. 'bugs_reports' => 'Bug reports', // IGNORE
  27. 'documentation' => 'Documentation', // IGNORE
  28. 'freshrss_description' => 'FreshRSS is a self-hostable RSS aggregator and reader. It allows you to read and follow several news websites at a glance without the need to browse from one website to another. FreshRSS is lightweight, configurable, and easy to use.', // IGNORE
  29. 'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">on GitHub</a>', // IGNORE
  30. 'license' => 'License', // IGNORE
  31. 'project_website' => 'Project website', // IGNORE
  32. 'title' => 'About', // IGNORE
  33. 'version' => 'Version', // IGNORE
  34. ),
  35. 'feed' => array(
  36. 'empty' => 'There are no articles to show.', // IGNORE
  37. 'published' => array(
  38. '_' => 'Published', // IGNORE
  39. 'future' => 'Published in the future', // IGNORE
  40. 'today' => 'Published today', // IGNORE
  41. 'yesterday' => 'Published yesterday', // IGNORE
  42. ),
  43. 'received' => array(
  44. '_' => 'Received', // IGNORE
  45. 'today' => 'Received today', // IGNORE
  46. 'yesterday' => 'Received yesterday', // IGNORE
  47. ),
  48. 'rss_of' => 'RSS feed of %s', // IGNORE
  49. 'title' => 'Main stream', // IGNORE
  50. 'title_fav' => 'Favorites',
  51. 'title_global' => 'Global view', // IGNORE
  52. 'userModified' => array(
  53. '_' => 'Modified by user', // IGNORE
  54. 'today' => 'Modified by user today', // IGNORE
  55. 'yesterday' => 'Modified by user yesterday', // IGNORE
  56. ),
  57. ),
  58. 'log' => array(
  59. '_' => 'Logs', // IGNORE
  60. 'clear' => 'Clear the logs', // IGNORE
  61. 'empty' => 'Log file is empty', // IGNORE
  62. 'title' => 'Logs', // IGNORE
  63. ),
  64. 'menu' => array(
  65. 'about' => 'About FreshRSS', // IGNORE
  66. 'before_one_day' => 'Older than one day', // IGNORE
  67. 'before_one_week' => 'Older than one week', // IGNORE
  68. 'bookmark_query' => 'Bookmark current query', // IGNORE
  69. 'favorites' => 'Favorites (%s)',
  70. 'global_view' => 'Global view', // IGNORE
  71. 'important' => 'Important feeds', // IGNORE
  72. 'main_stream' => 'Main stream', // IGNORE
  73. 'mark_all_read' => 'Mark all as read', // IGNORE
  74. 'mark_cat_read' => 'Mark category as read', // IGNORE
  75. 'mark_feed_read' => 'Mark feed as read', // IGNORE
  76. 'mark_selection_unread' => 'Mark selection as unread', // IGNORE
  77. 'mylabels' => 'My labels', // IGNORE
  78. 'non-starred' => 'Show non-favorites',
  79. 'normal_view' => 'Normal view', // IGNORE
  80. 'queries' => 'User queries', // IGNORE
  81. 'read' => 'Show read', // IGNORE
  82. 'reader_view' => 'Reading view', // IGNORE
  83. 'rss_view' => 'RSS feed', // IGNORE
  84. 'search_short' => 'Search', // IGNORE
  85. 'sort' => array(
  86. 'asc' => 'Ascending', // IGNORE
  87. 'c' => array(
  88. 'name_asc' => 'Category, feed titles A→Z', // IGNORE
  89. 'name_desc' => 'Category, feed titles Z→A', // IGNORE
  90. ),
  91. 'date_asc' => 'Publication date 1→9', // IGNORE
  92. 'date_desc' => 'Publication date 9→1', // IGNORE
  93. 'desc' => 'Descending', // IGNORE
  94. 'f' => array(
  95. 'name_asc' => 'Feed title A→Z', // IGNORE
  96. 'name_desc' => 'Feed title Z→A', // IGNORE
  97. ),
  98. 'id_asc' => 'Freshly received last', // IGNORE
  99. 'id_desc' => 'Freshly received first', // IGNORE
  100. 'length_asc' => 'Content length 1→9', // IGNORE
  101. 'length_desc' => 'Content length 9→1', // IGNORE
  102. 'link_asc' => 'Link A→Z', // IGNORE
  103. 'link_desc' => 'Link Z→A', // IGNORE
  104. 'primary' => array(
  105. '_' => 'Sorting criterion', // IGNORE
  106. 'help' => 'Sorting by <em>received</em> date is recommended in most cases, for consistency and performance', // IGNORE
  107. ),
  108. 'rand' => 'Random order', // IGNORE
  109. 'secondary' => array(
  110. '_' => 'Secondary sorting criterion', // IGNORE
  111. 'help' => 'Only relevant when the primary sorting criterion is categories or feeds titles', // IGNORE
  112. ),
  113. 'title_asc' => 'Title A→Z', // IGNORE
  114. 'title_desc' => 'Title Z→A', // IGNORE
  115. 'user_modified_asc' => 'User modified 1→9', // IGNORE
  116. 'user_modified_desc' => 'User modified 9→1', // IGNORE
  117. ),
  118. 'starred' => 'Show favorites',
  119. 'stats' => 'Statistics', // IGNORE
  120. 'subscription' => 'Subscription management', // IGNORE
  121. 'unread' => 'Show unread', // IGNORE
  122. ),
  123. 'share' => 'Share', // IGNORE
  124. 'tag' => array(
  125. 'related' => 'Article tags', // IGNORE
  126. ),
  127. 'tos' => array(
  128. 'title' => 'Terms of Service', // IGNORE
  129. ),
  130. );