install.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. return array(
  3. 'action' => array(
  4. 'finish' => 'Complete installation',
  5. 'fix_errors_before' => 'Fix errors before skip to the next step.',
  6. 'next_step' => 'Go to the next step',
  7. ),
  8. 'auth' => array(
  9. 'email_persona' => 'Login mail address<br /><small>(for <a href="https://persona.org/" rel="external">Mozilla Persona</a>)</small>',
  10. 'form' => 'Web form (traditional, requires JavaScript)',
  11. 'http' => 'HTTP (for advanced users with HTTPS)',
  12. 'none' => 'None (dangerous)',
  13. 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>',
  14. 'password_format' => 'At least 7 characters',
  15. 'persona' => 'Mozilla Persona (modern, requires JavaScript)',
  16. 'type' => 'Authentication method',
  17. ),
  18. 'bdd' => array(
  19. '_' => 'Database',
  20. 'conf' => array(
  21. '_' => 'Database configuration',
  22. 'ko' => 'Verify your database information.',
  23. 'ok' => 'Database configuration has been saved.',
  24. ),
  25. 'host' => 'Host',
  26. 'prefix' => 'Table prefix',
  27. 'password' => 'HTTP password',
  28. 'type' => 'Type of database',
  29. 'username' => 'HTTP username',
  30. ),
  31. 'check' => array(
  32. '_' => 'Checks',
  33. 'cache' => array(
  34. 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have rights to write into',
  35. 'ok' => 'Permissions on cache directory are good.',
  36. ),
  37. 'ctype' => array(
  38. 'nok' => 'You lack a required library for character type checking (php-ctype).',
  39. 'ok' => 'You have the required library for character type checking (ctype).',
  40. ),
  41. 'curl' => array(
  42. 'nok' => 'You lack cURL (php5-curl package).',
  43. 'ok' => 'You have cURL extension.',
  44. ),
  45. 'data' => array(
  46. 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have rights to write into',
  47. 'ok' => 'Permissions on data directory are good.',
  48. ),
  49. 'dom' => array(
  50. 'nok' => 'You lack a required library to browse the DOM (php-xml package).',
  51. 'ok' => 'You have the required library to browse the DOM.',
  52. ),
  53. 'favicons' => array(
  54. 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have rights to write into',
  55. 'ok' => 'Permissions on favicons directory are good.',
  56. ),
  57. 'http_referer' => array(
  58. 'nok' => 'Please check that you are not altering your HTTP REFERER.',
  59. 'ok' => 'Your HTTP REFERER is known and corresponds to your server.',
  60. ),
  61. 'minz' => array(
  62. 'nok' => 'You lack the Minz framework.',
  63. 'ok' => 'You have the Minz framework.',
  64. ),
  65. 'pcre' => array(
  66. 'nok' => 'You lack a required library for regular expressions (php-pcre).',
  67. 'ok' => 'You have the required library for regular expressions (PCRE).',
  68. ),
  69. 'pdo' => array(
  70. 'nok' => 'You lack PDO or one of the supported drivers (pdo_mysql, pdo_sqlite).',
  71. 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite).',
  72. ),
  73. 'persona' => array(
  74. 'nok' => 'Check permissions on <em>./data/persona</em> directory. HTTP server must have rights to write into',
  75. 'ok' => 'Permissions on Mozilla Persona directory are good.',
  76. ),
  77. 'php' => array(
  78. 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.',
  79. 'ok' => 'Your PHP version is %s, which is compatible with FreshRSS.',
  80. ),
  81. 'users' => array(
  82. 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have rights to write into',
  83. 'ok' => 'Permissions on users directory are good.',
  84. ),
  85. ),
  86. 'conf' => array(
  87. '_' => 'General configuration',
  88. 'ok' => 'General configuration has been saved.',
  89. ),
  90. 'congratulations' => 'Congratulations!',
  91. 'default_user' => 'Username of the default user <small>(maximum 16 alphanumeric characters)</small>',
  92. 'delete_articles_after' => 'Remove articles after',
  93. 'fix_errors_before' => 'Fix errors before skip to the next step.',
  94. 'javascript_is_better' => 'FreshRSS is more pleasant with JavaScript enabled',
  95. 'language' => array(
  96. '_' => 'Language',
  97. 'choose' => 'Choose a language for FreshRSS',
  98. 'defined' => 'Language has been defined.',
  99. ),
  100. 'not_deleted' => 'Something went wrong; you must delete the file <em>%s</em> manually.',
  101. 'ok' => 'The installation process was successful.',
  102. 'step' => 'step %d',
  103. 'steps' => 'Steps',
  104. 'title' => 'Installation · FreshRSS',
  105. 'this_is_the_end' => 'This is the end',
  106. );