install.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. return array(
  3. 'action' => array(
  4. 'finish' => 'Complete installation', // TODO - Translation
  5. 'fix_errors_before' => 'Please all fix errors before continuing to the next step.', // TODO - Translation
  6. 'keep_install' => 'Keep previous configuration', // TODO - Translation
  7. 'next_step' => 'Go to the next step', // TODO - Translation
  8. 'reinstall' => 'Reinstall FreshRSS', // TODO - Translation
  9. ),
  10. 'auth' => array(
  11. 'form' => 'Web form (traditional, requires JavaScript)', // TODO - Translation
  12. 'http' => 'HTTP (for advanced users with HTTPS)', // TODO - Translation
  13. 'none' => 'None (dangerous)', // TODO - Translation
  14. 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>', // TODO - Translation
  15. 'password_format' => 'At least 7 characters', // TODO - Translation
  16. 'type' => 'Authentication method', // TODO - Translation
  17. ),
  18. 'bdd' => array(
  19. '_' => 'Database', // TODO - Translation
  20. 'conf' => array(
  21. '_' => 'Database configuration', // TODO - Translation
  22. 'ko' => 'Verify your database configuration.', // TODO - Translation
  23. 'ok' => 'Database configuration has been saved.', // TODO - Translation
  24. ),
  25. 'host' => 'Host', // TODO - Translation
  26. 'password' => 'Database password', // TODO - Translation
  27. 'prefix' => 'Table prefix', // TODO - Translation
  28. 'type' => 'Type of database', // TODO - Translation
  29. 'username' => 'Database username', // TODO - Translation
  30. ),
  31. 'check' => array(
  32. '_' => 'Checks', // TODO - Translation
  33. 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO - Translation
  34. 'cache' => array(
  35. 'nok' => 'Check permissions on the <em>./data/cache</em> directory. The HTTP server must have write permission.', // TODO - Translation
  36. 'ok' => 'Permissions on the cache directory are good.', // TODO - Translation
  37. ),
  38. 'ctype' => array(
  39. 'nok' => 'Cannot find the required library for character type checking (php-ctype).', // TODO - Translation
  40. 'ok' => 'You have the required library for character type checking (ctype).', // TODO - Translation
  41. ),
  42. 'curl' => array(
  43. 'nok' => 'Cannot find the cURL library (php-curl package).', // TODO - Translation
  44. 'ok' => 'You have the cURL library.', // TODO - Translation
  45. ),
  46. 'data' => array(
  47. 'nok' => 'Check permissions on the <em>./data</em> directory. The HTTP server must have write permission.', // TODO - Translation
  48. 'ok' => 'Permissions on the data directory are good.', // TODO - Translation
  49. ),
  50. 'dom' => array(
  51. 'nok' => 'Cannot find the required library to browse the DOM.', // TODO - Translation
  52. 'ok' => 'You have the required library to browse the DOM.', // TODO - Translation
  53. ),
  54. 'favicons' => array(
  55. 'nok' => 'Check permissions on the <em>./data/favicons</em> directory. The HTTP server must have write permission.', // TODO - Translation
  56. 'ok' => 'Permissions on the favicons directory are good.', // TODO - Translation
  57. ),
  58. 'fileinfo' => array(
  59. 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO - Translation
  60. 'ok' => 'You have the fileinfo library.', // TODO - Translation
  61. ),
  62. 'http_referer' => array(
  63. 'nok' => 'Please check that you are not altering your HTTP REFERER.', // TODO - Translation
  64. 'ok' => 'Your HTTP REFERER is known and corresponds to your server.', // TODO - Translation
  65. ),
  66. 'json' => array(
  67. 'nok' => 'Cannot find the recommended library to parse JSON.', // TODO - Translation
  68. 'ok' => 'You have the recommended library to parse JSON.', // TODO - Translation
  69. ),
  70. 'mbstring' => array(
  71. 'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO - Translation
  72. 'ok' => 'You have the recommended library mbstring for Unicode.', // TODO - Translation
  73. ),
  74. 'minz' => array(
  75. 'nok' => 'Cannot find the Minz framework.', // TODO - Translation
  76. 'ok' => 'You have the Minz framework.', // TODO - Translation
  77. ),
  78. 'pcre' => array(
  79. 'nok' => 'Cannot find the required library for regular expressions (php-pcre).', // TODO - Translation
  80. 'ok' => 'You have the required library for regular expressions (PCRE).', // TODO - Translation
  81. ),
  82. 'pdo' => array(
  83. 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation
  84. 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', // TODO - Translation
  85. ),
  86. 'php' => array(
  87. 'nok' => 'Your PHP version is %s, but FreshRSS requires at least version %s.', // TODO - Translation
  88. 'ok' => 'Your PHP version, %s, is compatible with FreshRSS.', // TODO - Translation
  89. ),
  90. 'users' => array(
  91. 'nok' => 'Check permissions on the <em>./data/users</em> directory. The HTTP server must have write permissions', // TODO - Translation
  92. 'ok' => 'Permissions on the users directory are good.', // TODO - Translation
  93. ),
  94. 'xml' => array(
  95. 'nok' => 'Cannot find the required library to parse XML.', // TODO - Translation
  96. 'ok' => 'You have the required library to parse XML.', // TODO - Translation
  97. ),
  98. ),
  99. 'conf' => array(
  100. '_' => 'General configuration', // TODO - Translation
  101. 'ok' => 'General configuration has been saved.', // TODO - Translation
  102. ),
  103. 'congratulations' => 'Congratulations!', // TODO - Translation
  104. 'default_user' => 'Username of the default user <small>(maximum 16 alphanumeric characters)</small>', // TODO - Translation
  105. 'delete_articles_after' => 'Remove articles after', // TODO - Translation
  106. 'fix_errors_before' => 'Please fix errors before continuing to the next step.', // TODO - Translation
  107. 'javascript_is_better' => 'FreshRSS is more pleasant with JavaScript enabled', // TODO - Translation
  108. 'js' => array(
  109. 'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO - Translation
  110. ),
  111. 'language' => array(
  112. '_' => 'Language', // TODO - Translation
  113. 'choose' => 'Choose a language for FreshRSS', // TODO - Translation
  114. 'defined' => 'Language has been defined.', // TODO - Translation
  115. ),
  116. 'not_deleted' => 'Something went wrong; you must delete the file <em>%s</em> manually.', // TODO - Translation
  117. 'ok' => 'The installation process was successful.', // TODO - Translation
  118. 'step' => 'step %d', // TODO - Translation
  119. 'steps' => 'Steps', // TODO - Translation
  120. 'this_is_the_end' => 'This is the end', // TODO - Translation
  121. 'title' => 'Installation · FreshRSS', // TODO - Translation
  122. );