install.php 4.1 KB

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