admin.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. 'auth' => array(
  13. 'allow_anonymous' => 'Allow anonymous reading of the default user’s articles (%s)', // IGNORE
  14. 'allow_anonymous_refresh' => 'Allow anonymous refresh of the articles', // IGNORE
  15. 'api_enabled' => 'Allow <abbr>API</abbr> access <small>(required for mobile apps and sharing user queries)</small>', // IGNORE
  16. 'form' => 'Web form (traditional, requires JavaScript)', // IGNORE
  17. 'http' => 'HTTP (advanced: managed by Web server, OIDC, SSO…)', // IGNORE
  18. 'none' => 'None (dangerous)', // IGNORE
  19. 'title' => 'Authentication', // IGNORE
  20. 'token' => 'Master authentication token', // IGNORE
  21. 'token_help' => 'Allows access to all RSS outputs of the user as well as refreshing feeds without authentication:', // IGNORE
  22. 'type' => 'Authentication method', // IGNORE
  23. ),
  24. 'check_install' => array(
  25. 'cache' => array(
  26. 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have write permission.', // IGNORE
  27. 'ok' => 'Permissions on the cache directory are good.', // IGNORE
  28. ),
  29. 'categories' => array(
  30. 'nok' => 'Category table is improperly configured.', // IGNORE
  31. 'ok' => 'Category table is okay.', // IGNORE
  32. ),
  33. 'connection' => array(
  34. 'nok' => 'Connection to the database cannot be established.', // IGNORE
  35. 'ok' => 'Connection to the database is okay.', // IGNORE
  36. ),
  37. 'ctype' => array(
  38. 'nok' => 'Cannot find a required library for character type checking (php-ctype).', // IGNORE
  39. 'ok' => 'You have the required library for character type checking (ctype).', // IGNORE
  40. ),
  41. 'curl' => array(
  42. 'nok' => 'Cannot find the cURL library (php-curl package).', // IGNORE
  43. 'ok' => 'You have the cURL library.', // IGNORE
  44. ),
  45. 'data' => array(
  46. 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have write permission.', // IGNORE
  47. 'ok' => 'Permissions on the data directory are good.', // IGNORE
  48. ),
  49. 'database' => 'Database installation', // IGNORE
  50. 'dom' => array(
  51. 'nok' => 'Cannot find a required library to browse the DOM (php-xml package).', // IGNORE
  52. 'ok' => 'You have the required library to browse the DOM.', // IGNORE
  53. ),
  54. 'entries' => array(
  55. 'nok' => 'Entry table is improperly configured.', // IGNORE
  56. 'ok' => 'Entry table is okay.', // IGNORE
  57. ),
  58. 'favicons' => array(
  59. 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have write permission.', // IGNORE
  60. 'ok' => 'Permissions on the favicons directory are good.', // IGNORE
  61. ),
  62. 'feeds' => array(
  63. 'nok' => 'Feed table is improperly configured.', // IGNORE
  64. 'ok' => 'Feed table is okay.', // IGNORE
  65. ),
  66. 'fileinfo' => array(
  67. 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // IGNORE
  68. 'ok' => 'You have the fileinfo library.', // IGNORE
  69. ),
  70. 'files' => 'File installation', // IGNORE
  71. 'json' => array(
  72. 'nok' => 'Cannot find JSON (php-json package).', // IGNORE
  73. 'ok' => 'You have the JSON extension.', // IGNORE
  74. ),
  75. 'mbstring' => array(
  76. 'nok' => 'Cannot find the recommended mbstring library for Unicode.', // IGNORE
  77. 'ok' => 'You have the recommended mbstring library for Unicode.', // IGNORE
  78. ),
  79. 'pcre' => array(
  80. 'nok' => 'Cannot find a required library for regular expressions (php-pcre).', // IGNORE
  81. 'ok' => 'You have the required library for regular expressions (PCRE).', // IGNORE
  82. ),
  83. 'pdo' => array(
  84. 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // IGNORE
  85. 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // IGNORE
  86. ),
  87. 'php' => array(
  88. '_' => 'PHP installation', // IGNORE
  89. 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.', // IGNORE
  90. 'ok' => 'Your PHP version (%s) is compatible with FreshRSS.', // IGNORE
  91. ),
  92. 'tables' => array(
  93. 'nok' => 'There are one or more missing tables in the database.', // IGNORE
  94. 'ok' => 'The appropriate tables exist in the database.', // IGNORE
  95. ),
  96. 'title' => 'Installation check', // IGNORE
  97. 'tokens' => array(
  98. 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', // IGNORE
  99. 'ok' => 'Permissions on the tokens directory are good.', // IGNORE
  100. ),
  101. 'users' => array(
  102. 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have write permission', // IGNORE
  103. 'ok' => 'Permissions on the users directory are good.', // IGNORE
  104. ),
  105. 'zip' => array(
  106. 'nok' => 'Cannot find the ZIP extension (php-zip package).', // IGNORE
  107. 'ok' => 'You have the ZIP extension.', // IGNORE
  108. ),
  109. ),
  110. 'extensions' => array(
  111. 'author' => 'Author', // IGNORE
  112. 'community' => 'Available community extensions', // IGNORE
  113. 'description' => 'Description', // IGNORE
  114. 'disabled' => 'Disabled', // IGNORE
  115. 'empty_list' => 'There are no installed extensions', // IGNORE
  116. 'empty_list_help' => 'Check the logs to determine the reason behind the empty extension list.', // IGNORE
  117. 'enabled' => 'Enabled', // IGNORE
  118. 'is_compatible' => 'Is compatible', // IGNORE
  119. 'latest' => 'Installed', // IGNORE
  120. 'name' => 'Name', // IGNORE
  121. 'no_configure_view' => 'This extension cannot be configured.', // IGNORE
  122. 'system' => array(
  123. '_' => 'System extensions', // IGNORE
  124. 'no_rights' => 'System extension (you do not have the required permissions)', // IGNORE
  125. ),
  126. 'title' => 'Extensions', // IGNORE
  127. 'update' => 'Update available', // IGNORE
  128. 'user' => 'User extensions', // IGNORE
  129. 'version' => 'Version', // IGNORE
  130. ),
  131. 'stats' => array(
  132. '_' => 'Statistics', // IGNORE
  133. 'all_feeds' => 'All feeds', // IGNORE
  134. 'category' => 'Category', // IGNORE
  135. 'date_published' => 'Publication date', // IGNORE
  136. 'date_received' => 'Received date', // IGNORE
  137. 'entry_count' => 'Entry count', // IGNORE
  138. 'entry_per_category' => 'Entries per category', // IGNORE
  139. 'entry_per_day' => 'Entries per day (last 30 days)', // IGNORE
  140. 'entry_per_day_of_week' => 'Per day of week (average: %.2f messages)', // IGNORE
  141. 'entry_per_hour' => 'Per hour (average: %.2f messages)', // IGNORE
  142. 'entry_per_month' => 'Per month (average: %.2f messages)', // IGNORE
  143. 'entry_repartition' => 'Entries repartition', // IGNORE
  144. 'feed' => 'Feed', // IGNORE
  145. 'feed_per_category' => 'Feeds per category', // IGNORE
  146. 'idle' => 'Idle feeds', // IGNORE
  147. 'main' => 'Main statistics', // IGNORE
  148. 'main_stream' => 'Main stream', // IGNORE
  149. 'nb_unreads' => 'Number of unread articles', // IGNORE
  150. 'no_idle' => 'There are no idle feeds!', // IGNORE
  151. 'number_entries' => '%d articles', // IGNORE
  152. 'overview' => 'Overview', // IGNORE
  153. 'percent_of_total' => '% of total', // IGNORE
  154. 'repartition' => 'Articles repartition: %s', // IGNORE
  155. 'status_favorites' => 'Favorites',
  156. 'status_read' => 'Read', // IGNORE
  157. 'status_total' => 'Total', // IGNORE
  158. 'status_unread' => 'Unread', // IGNORE
  159. 'title' => 'Statistics', // IGNORE
  160. 'top_feed' => 'Top ten feeds', // IGNORE
  161. 'unread_dates' => 'Dates with most unread articles', // IGNORE
  162. ),
  163. 'system' => array(
  164. '_' => 'System configuration', // IGNORE
  165. 'auto-update-url' => 'Auto-update server URL', // IGNORE
  166. 'base-url' => array(
  167. '_' => 'Base URL', // IGNORE
  168. 'recommendation' => 'Automatic recommendation: <kbd>%s</kbd>', // IGNORE
  169. ),
  170. 'cookie-duration' => array(
  171. 'help' => 'in seconds', // IGNORE
  172. 'number' => 'Duration to keep logged in', // IGNORE
  173. ),
  174. 'force_email_validation' => 'Force email address validation', // IGNORE
  175. 'instance-name' => 'Instance name', // IGNORE
  176. 'max-categories' => 'Max number of categories per user', // IGNORE
  177. 'max-feeds' => 'Max number of feeds per user', // IGNORE
  178. 'registration' => array(
  179. 'number' => 'Max number of accounts', // IGNORE
  180. 'select' => array(
  181. 'label' => 'Registration form', // IGNORE
  182. 'option' => array(
  183. 'noform' => 'Disabled: No registration form', // IGNORE
  184. 'nolimit' => 'Enabled: No limit of accounts', // IGNORE
  185. 'setaccountsnumber' => 'Set max. number of accounts', // IGNORE
  186. ),
  187. ),
  188. 'status' => array(
  189. 'disabled' => 'Form disabled', // IGNORE
  190. 'enabled' => 'Form enabled', // IGNORE
  191. ),
  192. 'title' => 'User registration form', // IGNORE
  193. ),
  194. 'sensitive-parameter' => 'Sensitive parameter. Edit manually in <kbd>./data/config.php</kbd>', // IGNORE
  195. 'tos' => array(
  196. 'disabled' => 'is not given', // IGNORE
  197. 'enabled' => '<a href="./?a=tos">is enabled</a>', // IGNORE
  198. 'help' => 'How to <a href="https://freshrss.github.io/FreshRSS/en/admins/12_User_management.html#enable-terms-of-service-tos" target="_blank">enable the Terms of Service</a>', // IGNORE
  199. ),
  200. 'websub' => array(
  201. 'help' => 'About <a href="https://freshrss.github.io/FreshRSS/en/users/WebSub.html" target="_blank">WebSub</a>', // IGNORE
  202. ),
  203. ),
  204. 'update' => array(
  205. '_' => 'Update system', // IGNORE
  206. 'apply' => 'Apply', // IGNORE
  207. 'changelog' => 'Changelog', // IGNORE
  208. 'check' => 'Check for new updates', // IGNORE
  209. 'copiedFromURL' => 'update.php copied from %s to ./data', // IGNORE
  210. 'current_version' => 'Current installed version', // IGNORE
  211. 'last' => 'Last verification', // IGNORE
  212. 'loading' => 'Updating…', // IGNORE
  213. 'none' => 'No update to apply', // IGNORE
  214. 'releaseChannel' => array(
  215. '_' => 'Release channel', // IGNORE
  216. 'edge' => 'Rolling release (“edge”)', // IGNORE
  217. 'latest' => 'Stable release (“latest”)', // IGNORE
  218. ),
  219. 'title' => 'Update system', // IGNORE
  220. 'viaGit' => 'Update via git and GitHub.com started', // IGNORE
  221. ),
  222. 'user' => array(
  223. 'admin' => 'Administrator', // IGNORE
  224. 'article_count' => 'Articles', // IGNORE
  225. 'back_to_manage' => '← Return to user list', // IGNORE
  226. 'create' => 'Create new user', // IGNORE
  227. 'database_size' => 'Database size', // IGNORE
  228. 'email' => 'Email address', // IGNORE
  229. 'enabled' => 'Enabled', // IGNORE
  230. 'feed_count' => 'Feeds', // IGNORE
  231. 'is_admin' => 'Is admin', // IGNORE
  232. 'language' => 'Language', // IGNORE
  233. 'last_user_activity' => 'Last user activity', // IGNORE
  234. 'list' => 'User list', // IGNORE
  235. 'number' => 'There is %d account created', // IGNORE
  236. 'numbers' => 'There are %d accounts created', // IGNORE
  237. 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>', // IGNORE
  238. 'password_format' => 'At least 7 characters', // IGNORE
  239. 'title' => 'Manage users', // IGNORE
  240. 'username' => 'Username', // IGNORE
  241. ),
  242. );