install.php 5.7 KB

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