install.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. 'bdd' => array(
  20. '_' => '資料庫',
  21. 'conf' => array(
  22. '_' => '資料庫配置',
  23. 'ko' => '請驗證你的資料庫資訊',
  24. 'ok' => '數據庫配置已保存',
  25. ),
  26. 'host' => '主機',
  27. 'password' => '密碼',
  28. 'prefix' => '表前綴',
  29. 'type' => '資料庫類型',
  30. 'username' => '使用者名',
  31. ),
  32. 'check' => array(
  33. '_' => '檢查',
  34. 'already_installed' => '我們檢測到 FreshRSS 已經安裝!',
  35. 'cache' => array(
  36. 'nok' => '請檢查 <em>%s</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  37. 'ok' => 'cache 目錄權限正常',
  38. ),
  39. 'ctype' => array(
  40. 'nok' => '找不到字符類型檢測庫(php-ctype)',
  41. 'ok' => '已找到字符類型檢測庫',
  42. ),
  43. 'curl' => array(
  44. 'nok' => '找不到 cURL 庫(php-curl)',
  45. 'ok' => '已找到 cURL 庫',
  46. ),
  47. 'data' => array(
  48. 'nok' => '請檢查 <em>%s</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  49. 'ok' => 'data 目錄權限正常',
  50. ),
  51. 'dom' => array(
  52. 'nok' => '找不到用於瀏覽 DOM 的庫(php-xml)',
  53. 'ok' => '已找到用於瀏覽 DOM 的庫',
  54. ),
  55. 'favicons' => array(
  56. 'nok' => '請檢查 <em>%s</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  57. 'ok' => 'favicons 目錄權限正常',
  58. ),
  59. 'fileinfo' => array(
  60. 'nok' => '找不到 PHP fileinfo 庫(php-fileinfo)',
  61. 'ok' => '已找到 fileinfo 庫',
  62. ),
  63. 'files' => '文件相關',
  64. 'intl' => array(
  65. 'nok' => 'Cannot find the recommended library php-intl for internationalisation.', // TODO
  66. 'ok' => 'You have the recommended library php-intl for internationalisation.', // TODO
  67. ),
  68. 'json' => array(
  69. 'nok' => '找不到推薦的 JSON 解析庫',
  70. 'ok' => '已找到推薦的 JSON 解析庫',
  71. ),
  72. 'mbstring' => array(
  73. 'nok' => '找不到推薦的 Unicode 解析庫(mbstring)',
  74. 'ok' => '已找到推薦的 Unicode 解析庫',
  75. ),
  76. 'pcre' => array(
  77. 'nok' => '找不到正則表達式解析庫(php-pcre)',
  78. 'ok' => '已找到正則表達式解析庫',
  79. ),
  80. 'pdo-mysql' => array(
  81. 'nok' => 'Cannot find the required PDO driver for MySQL/MariaDB.', // TODO
  82. ),
  83. 'pdo-pgsql' => array(
  84. 'nok' => 'Cannot find the required PDO driver for PostgreSQL.', // TODO
  85. ),
  86. 'pdo-sqlite' => array(
  87. 'nok' => 'Cannot find the PDO driver for SQLite.', // TODO
  88. 'ok' => 'You have the PDO driver for SQLite.', // TODO
  89. ),
  90. 'pdo' => array(
  91. 'nok' => '找不到 PDO 或支持的驅動(pdo_mysql、pdo_sqlite、pdo_pgsql)',
  92. 'ok' => '已找到 PDO 和支持的至少一種驅動(pdo_mysql、pdo_sqlite、pdo_pgsql)',
  93. ),
  94. 'php' => array(
  95. '_' => 'PHP 相關',
  96. 'nok' => '你的 PHP 版本為 %s,但 FreshRSS 最低需要 %s',
  97. 'ok' => '你的 PHP 版本為 %s,與 FreshRSS 相容',
  98. ),
  99. 'reload' => '再檢查一遍',
  100. 'tmp' => array(
  101. 'nok' => '請檢查 <em>%s</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  102. 'ok' => '緩存目錄權限正常。',
  103. ),
  104. 'tokens' => array(
  105. 'nok' => '請檢查 <em>./data/tokens</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  106. 'ok' => 'tokens 目錄權限正常',
  107. ),
  108. 'unknown_process_username' => '未知',
  109. 'users' => array(
  110. 'nok' => '請檢查 <em>%s</em> 目錄權限。HTTP 伺服器必須有其寫入權限。',
  111. 'ok' => 'users 目錄權限正常',
  112. ),
  113. 'xml' => array(
  114. 'nok' => '找不到用於 XML 解析庫',
  115. 'ok' => '已找到 XML 解析庫',
  116. ),
  117. 'zip' => array(
  118. 'nok' => '找不到 ZIP 擴展(php-zip)',
  119. 'ok' => '已找到 ZIP 擴展',
  120. ),
  121. ),
  122. 'conf' => array(
  123. '_' => '常規配置',
  124. 'ok' => '常規配置已保存',
  125. ),
  126. 'congratulations' => '恭喜!',
  127. 'default_user' => array(
  128. '_' => '預設使用者名',
  129. 'max_char' => '最多 16 個數字或字母',
  130. ),
  131. 'fix_errors_before' => '請在繼續下一步前修復錯誤',
  132. 'javascript_is_better' => '啟用 JavaScript 會使 FreshRSS 工作得更好',
  133. 'js' => array(
  134. 'confirm_reinstall' => '重新安裝 FreshRSS 將會重置之前的配置。你確定要繼續嗎?',
  135. ),
  136. 'language' => array(
  137. '_' => '語言',
  138. 'choose' => '為 FreshRSS 選擇語言',
  139. 'defined' => '語言已指定',
  140. ),
  141. 'missing_applied_migrations' => '出現錯誤,你需要手動創建一個空白檔案 <em>%s</em>。',
  142. 'ok' => '安裝成功',
  143. 'session' => array(
  144. 'nok' => 'Web 伺服器似乎未正確配置 PHP 會話所需的 cookie!',
  145. ),
  146. 'step' => '步驟 %d',
  147. 'steps' => '步驟',
  148. 'this_is_the_end' => '最後一步',
  149. 'title' => '安裝 FreshRSS',
  150. );