admin.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. return array(
  3. 'auth' => array(
  4. 'allow_anonymous' => 'Allow anonymous reading of the articles of the default user (%s)',
  5. 'allow_anonymous_refresh' => 'Allow anonymous refresh of the articles',
  6. 'api_enabled' => 'Allow <abbr>API</abbr> access <small>(required for mobile apps)</small>',
  7. 'form' => 'Web form (traditional, requires JavaScript)',
  8. 'http' => 'HTTP (for advanced users with HTTPS)',
  9. 'none' => 'None (dangerous)',
  10. 'title' => 'Authentication',
  11. 'title_reset' => 'Authentication reset',
  12. 'token' => 'Authentication token',
  13. 'token_help' => 'Allows access to RSS output of the default user without authentication:',
  14. 'type' => 'Authentication method',
  15. 'unsafe_autologin' => 'Allow unsafe automatic login using the format: ',
  16. ),
  17. 'check_install' => array(
  18. 'cache' => array(
  19. 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have rights to write into',
  20. 'ok' => 'Permissions on cache directory are good.',
  21. ),
  22. 'categories' => array(
  23. 'nok' => 'Category table is improperly configured.',
  24. 'ok' => 'Category table is ok.',
  25. ),
  26. 'connection' => array(
  27. 'nok' => 'Connection to the database cannot be established.',
  28. 'ok' => 'Connection to the database is ok.',
  29. ),
  30. 'ctype' => array(
  31. 'nok' => 'Cannot find a required library for character type checking (php-ctype).',
  32. 'ok' => 'You have the required library for character type checking (ctype).',
  33. ),
  34. 'curl' => array(
  35. 'nok' => 'Cannot find the cURL library (php-curl package).',
  36. 'ok' => 'You have the cURL library.',
  37. ),
  38. 'data' => array(
  39. 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have rights to write into',
  40. 'ok' => 'Permissions on data directory are good.',
  41. ),
  42. 'database' => 'Database installation',
  43. 'dom' => array(
  44. 'nok' => 'Cannot find a required library to browse the DOM (php-xml package).',
  45. 'ok' => 'You have the required library to browse the DOM.',
  46. ),
  47. 'entries' => array(
  48. 'nok' => 'Entry table is improperly configured.',
  49. 'ok' => 'Entry table is ok.',
  50. ),
  51. 'favicons' => array(
  52. 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have rights to write into',
  53. 'ok' => 'Permissions on favicons directory are good.',
  54. ),
  55. 'feeds' => array(
  56. 'nok' => 'Feed table is improperly configured.',
  57. 'ok' => 'Feed table is ok.',
  58. ),
  59. 'fileinfo' => array(
  60. 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).',
  61. 'ok' => 'You have the fileinfo library.',
  62. ),
  63. 'files' => 'File installation',
  64. 'json' => array(
  65. 'nok' => 'Cannot find JSON (php-json package).',
  66. 'ok' => 'You have JSON extension.',
  67. ),
  68. 'mbstring' => array(
  69. 'nok' => 'Cannot find the recommended library mbstring for Unicode.',
  70. 'ok' => 'You have the recommended library mbstring for Unicode.',
  71. ),
  72. 'minz' => array(
  73. 'nok' => 'Cannot find the Minz framework.',
  74. 'ok' => 'You have the Minz framework.',
  75. ),
  76. 'pcre' => array(
  77. 'nok' => 'Cannot find a required library for regular expressions (php-pcre).',
  78. 'ok' => 'You have the required library for regular expressions (PCRE).',
  79. ),
  80. 'pdo' => array(
  81. 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).',
  82. 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).',
  83. ),
  84. 'php' => array(
  85. '_' => 'PHP installation',
  86. 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.',
  87. 'ok' => 'Your PHP version is %s, which is compatible with FreshRSS.',
  88. ),
  89. 'tables' => array(
  90. 'nok' => 'There are one or more missing tables in the database.',
  91. 'ok' => 'The appropriate tables exist in the database.',
  92. ),
  93. 'title' => 'Installation checking',
  94. 'tokens' => array(
  95. 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have rights to write into',
  96. 'ok' => 'Permissions on tokens directory are good.',
  97. ),
  98. 'users' => array(
  99. 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have rights to write into',
  100. 'ok' => 'Permissions on users directory are good.',
  101. ),
  102. 'zip' => array(
  103. 'nok' => 'Cannot find ZIP extension (php-zip package).',
  104. 'ok' => 'You have ZIP extension.',
  105. ),
  106. ),
  107. 'extensions' => array(
  108. 'author' => 'Author',
  109. 'community' => 'Available community extensions',
  110. 'description' => 'Description',
  111. 'disabled' => 'Disabled',
  112. 'empty_list' => 'There are no installed extensions',
  113. 'enabled' => 'Enabled',
  114. 'latest' => 'Installed',
  115. 'name' => 'Name',
  116. 'no_configure_view' => 'This extension cannot be configured.',
  117. 'system' => array(
  118. '_' => 'System extensions',
  119. 'no_rights' => 'System extension (you have no rights on it)',
  120. ),
  121. 'title' => 'Extensions',
  122. 'update' => 'Update available',
  123. 'user' => 'User extensions',
  124. 'version' => 'Version',
  125. ),
  126. 'stats' => array(
  127. '_' => 'Statistics',
  128. 'all_feeds' => 'All feeds',
  129. 'category' => 'Category',
  130. 'entry_count' => 'Entry count',
  131. 'entry_per_category' => 'Entries per category',
  132. 'entry_per_day' => 'Entries per day (last 30 days)',
  133. 'entry_per_day_of_week' => 'Per day of week (average: %.2f messages)',
  134. 'entry_per_hour' => 'Per hour (average: %.2f messages)',
  135. 'entry_per_month' => 'Per month (average: %.2f messages)',
  136. 'entry_repartition' => 'Entries repartition',
  137. 'feed' => 'Feed',
  138. 'feed_per_category' => 'Feeds per category',
  139. 'idle' => 'Idle feeds',
  140. 'main' => 'Main statistics',
  141. 'main_stream' => 'Main stream',
  142. 'menu' => array(
  143. 'idle' => 'Idle feeds',
  144. 'main' => 'Main statistics',
  145. 'repartition' => 'Articles repartition',
  146. ),
  147. 'no_idle' => 'There is no idle feed!',
  148. 'number_entries' => '%d articles',
  149. 'percent_of_total' => '%% of total',
  150. 'repartition' => 'Articles repartition',
  151. 'status_favorites' => 'Favourites',
  152. 'status_read' => 'Read',
  153. 'status_total' => 'Total',
  154. 'status_unread' => 'Unread',
  155. 'title' => 'Statistics',
  156. 'top_feed' => 'Top ten feeds',
  157. ),
  158. 'system' => array(
  159. '_' => 'System configuration',
  160. 'auto-update-url' => 'Auto-update server URL',
  161. 'cookie-duration' => array(
  162. 'help' => 'in seconds',
  163. 'number' => 'Duration to keep logged in',
  164. ),
  165. 'force_email_validation' => 'Force email addresses validation',
  166. 'instance-name' => 'Instance name',
  167. 'max-categories' => 'Categories per user limit',
  168. 'max-feeds' => 'Feeds per user limit',
  169. 'registration' => array(
  170. 'help' => '0 means that there is no account limit',
  171. 'number' => 'Max number of accounts',
  172. ),
  173. ),
  174. 'update' => array(
  175. '_' => 'Update system',
  176. 'apply' => 'Apply',
  177. 'check' => 'Check for new updates',
  178. 'current_version' => 'Your current version of FreshRSS is %s.',
  179. 'last' => 'Last verification: %s',
  180. 'none' => 'No update to apply',
  181. 'title' => 'Update system',
  182. ),
  183. 'user' => array(
  184. 'admin' => 'Administrator',
  185. 'article_count' => 'Articles',
  186. 'articles_and_size' => '%s articles (%s)',
  187. 'back_to_manage' => '← Return to user list',
  188. 'create' => 'Create new user',
  189. 'database_size' => 'Database size',
  190. 'delete_users' => 'Delete user',
  191. 'email' => 'Email address',
  192. 'enabled' => 'Enabled',
  193. 'feed_count' => 'Feeds',
  194. 'is_admin' => 'Is admin',
  195. 'language' => 'Language',
  196. 'last_user_activity' => 'Last user activity',
  197. 'list' => 'User list',
  198. 'number' => 'There is %d account created',
  199. 'numbers' => 'There are %d accounts created',
  200. 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>',
  201. 'password_format' => 'At least 7 characters',
  202. 'selected' => 'Selected user',
  203. 'title' => 'Manage users',
  204. 'update_users' => 'Update user',
  205. 'user_list' => 'List of users',
  206. 'username' => 'Username',
  207. 'users' => 'Users',
  208. ),
  209. );