install.php 4.1 KB

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