install.php 4.9 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' => '完成安装',
  14. 'fix_errors_before' => '请在继续下一步前修复错误',
  15. 'keep_install' => '保留当前配置',
  16. 'next_step' => '下一步',
  17. 'reinstall' => '重新安装 FreshRSS',
  18. ),
  19. 'auth' => array(
  20. 'form' => '网页表单(传统方式, 依赖 JavaScript)',
  21. 'http' => 'HTTP(面向启用 HTTPS 的高级用户)',
  22. 'none' => '无(危险)',
  23. 'password_form' => '密码<br /><small>(用于网页表单登录方式)</small>',
  24. 'password_format' => '至少 7 个字符',
  25. 'type' => '认证方式',
  26. ),
  27. 'bdd' => array(
  28. '_' => '数据库',
  29. 'conf' => array(
  30. '_' => '数据库配置',
  31. 'ko' => '验证你的数据库信息',
  32. 'ok' => '数据库配置已保存',
  33. ),
  34. 'host' => '主机',
  35. 'password' => '数据库密码',
  36. 'prefix' => '表前缀',
  37. 'type' => '数据库类型',
  38. 'username' => '数据库用户名',
  39. ),
  40. 'check' => array(
  41. '_' => '检查',
  42. 'already_installed' => '我们检测到 FreshRSS 已经安装!',
  43. 'cache' => array(
  44. 'nok' => '请检查 <em>%s</em> 目录权限,HTTP 服务器必须拥有写入权限。',
  45. 'ok' => 'cache 目录权限正常',
  46. ),
  47. 'ctype' => array(
  48. 'nok' => '找不到字符类型检测库(php-ctype)',
  49. 'ok' => '已找到字符类型检测库(ctype)',
  50. ),
  51. 'curl' => array(
  52. 'nok' => '找不到 cURL 库(php-curl 包)',
  53. 'ok' => '已找到 cURL 库',
  54. ),
  55. 'data' => array(
  56. 'nok' => '请检查 <em>%s</em> 目录权限,HTTP 服务器必须拥有写入权限。',
  57. 'ok' => 'data 目录权限正常',
  58. ),
  59. 'dom' => array(
  60. 'nok' => '找不到用于浏览 DOM 的库(php-xml 包)',
  61. 'ok' => '已找到用于浏览 DOM 的库',
  62. ),
  63. 'favicons' => array(
  64. 'nok' => '请检查 <em>./data/favicons</em> 目录权限,HTTP 服务器必须拥有写入权限。',
  65. 'ok' => 'favicons 目录权限正常',
  66. ),
  67. 'fileinfo' => array(
  68. 'nok' => '找不到 PHP fileinfo 库(fileinfo 包)',
  69. 'ok' => '已找到 fileinfo 库',
  70. ),
  71. 'json' => array(
  72. 'nok' => '找不到 JSON 扩展(php-json 包)',
  73. 'ok' => '已找到 JSON 扩展',
  74. ),
  75. 'mbstring' => array(
  76. 'nok' => '找不到推荐用于 Unicode 的 mbstring 库',
  77. 'ok' => '已找到推荐用于 Unicode 的 mbstring 库',
  78. ),
  79. 'pcre' => array(
  80. 'nok' => '找不到正则表达式解析库(php-pcre)',
  81. 'ok' => '已找到正则表达式解析库(PCRE)',
  82. ),
  83. 'pdo' => array(
  84. 'nok' => '找不到 PDO 或其中一种支持的驱动(pdo_mysql、pdo_sqlite、pdo_pgsql)',
  85. 'ok' => '已找到 PDO 和至少一种支持的驱动(pdo_mysql、pdo_sqlite、pdo_pgsql)',
  86. ),
  87. 'php' => array(
  88. 'nok' => '你的 PHP 版本为 %s,但 FreshRSS 最低需要 %s',
  89. 'ok' => '你的 PHP 版本为 %s,与 FreshRSS 兼容',
  90. ),
  91. 'reload' => '再检查一遍',
  92. 'tmp' => array(
  93. 'nok' => '请检查 <em>%s</em> 目录权限,HTTP 服务器必须拥有写入权限。',
  94. 'ok' => '缓存目录权限正常。',
  95. ),
  96. 'unknown_process_username' => '未知',
  97. 'users' => array(
  98. 'nok' => '请检查 <em>%s</em> 目录权限,HTTP 服务器必须拥有写入权限。',
  99. 'ok' => 'users 目录权限正常',
  100. ),
  101. 'xml' => array(
  102. 'nok' => '找不到用于 XML 解析库',
  103. 'ok' => '已找到 XML 解析库',
  104. ),
  105. ),
  106. 'conf' => array(
  107. '_' => '常规配置',
  108. 'ok' => '常规配置已保存',
  109. ),
  110. 'congratulations' => '恭喜!',
  111. 'default_user' => array(
  112. '_' => '默认用户名',
  113. 'max_char' => '最多 16 个数字或字母',
  114. ),
  115. 'fix_errors_before' => '请在继续下一步前修复错误',
  116. 'javascript_is_better' => '启用 JavaScript 会使 FreshRSS 工作得更好',
  117. 'js' => array(
  118. 'confirm_reinstall' => '重新安装 FreshRSS 将会重置之前的配置,你确定要继续吗?',
  119. ),
  120. 'language' => array(
  121. '_' => '语言',
  122. 'choose' => '为 FreshRSS 选择语言',
  123. 'defined' => '语言已指定',
  124. ),
  125. 'missing_applied_migrations' => '出现错误,你需要手动创建一个空文件 <em>%s</em>。',
  126. 'ok' => '安装成功',
  127. 'session' => array(
  128. 'nok' => 'Web 服务器似乎未正确配置 PHP 会话所需的 cookie!',
  129. ),
  130. 'step' => '步骤 %d',
  131. 'steps' => '步骤',
  132. 'this_is_the_end' => '最后一步',
  133. 'title' => '安装 FreshRSS',
  134. );