Files
panel/lang/zh_TW/installer.php
github-actions[bot] 9e0f7cee35 New Crowdin Translations (#2421)
Co-authored-by: notAreYouScared <1757840+notAreYouScared@users.noreply.github.com>
2026-07-02 08:24:53 -04:00

114 lines
4.9 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'title' => '面板安裝程式',
'requirements' => [
'title' => '伺服器需求',
'sections' => [
'version' => [
'title' => 'PHP 版本',
'or_newer' => ':version 或更新版本',
'content' => '您的 PHP 版本為 :version。',
],
'extensions' => [
'title' => 'PHP 擴充功能',
'good' => '所有需要的 PHP 擴充功能皆已安裝。',
'bad' => '缺少以下 PHP 擴充功能::extensions',
],
'permissions' => [
'title' => '資料夾權限',
'good' => '所有資料夾皆具有正確的權限。',
'bad' => '以下資料夾的權限錯誤::folders',
],
],
'exception' => '缺少部分需求',
],
'environment' => [
'title' => '環境',
'fields' => [
'app_name' => '應用程式名稱',
'app_name_help' => '這將會是您的面板名稱。',
'app_url' => '應用程式網址',
'app_url_help' => '這將會是您存取面板的網址。',
'account' => [
'section' => '管理員使用者',
'email' => '電子郵件',
'username' => '使用者名稱',
'password' => '密碼',
],
],
],
'database' => [
'title' => '資料庫',
'driver' => '資料庫驅動程式',
'driver_help' => '面板資料庫所使用的驅動程式。我們建議使用「SQLite」。',
'fields' => [
'host' => '資料庫主機',
'host_help' => '您的資料庫主機。請確保它是可以連線的。',
'port' => '資料庫連接埠',
'port_help' => '您的資料庫連接埠。',
'path' => '資料庫路徑',
'path_help' => '您的 .sqlite 檔案相對於資料庫資料夾的路徑。',
'name' => '資料庫名稱',
'name_help' => '面板資料庫的名稱。',
'username' => '資料庫使用者名稱',
'username_help' => '您的資料庫使用者名稱。',
'password' => '資料庫密碼',
'password_help' => '您的資料庫使用者密碼。可以留空。',
],
'exceptions' => [
'connection' => '資料庫連線失敗',
'migration' => '遷移失敗',
],
],
'egg' => [
'title' => 'Egg',
'no_eggs' => '沒有可用的 Egg',
'background_install_started' => '已開始安裝 Egg',
'background_install_description' => '已將 :count 個 Egg 的安裝排入佇列,並將在背景繼續執行。',
'exceptions' => [
'failed_to_update' => '無法更新 Egg 索引',
'no_eggs' => '目前沒有可安裝的 Egg。',
'installation_failed' => '無法安裝所選的 Egg。請在安裝完成後透過 Egg 列表匯入它們。',
],
],
'session' => [
'title' => '工作階段',
'driver' => '工作階段驅動程式',
'driver_help' => '用於儲存工作階段的驅動程式。我們建議使用「Filesystem」或「Database」。',
],
'cache' => [
'title' => '快取',
'driver' => '快取驅動程式',
'driver_help' => '用於快取的驅動程式。我們建議使用「Filesystem」。',
'fields' => [
'host' => 'Redis 主機',
'host_help' => '您的 Redis 伺服器主機。請確保它是可以連線的。',
'port' => 'Redis 連接埠',
'port_help' => '您的 Redis 伺服器連接埠。',
'username' => 'Redis 使用者名稱',
'username_help' => '您的 Redis 使用者名稱。可以留空。',
'password' => 'Redis 密碼',
'password_help' => '您的 Redis 使用者密碼。可以留空。',
],
'exception' => 'Redis 連線失敗',
],
'queue' => [
'title' => '佇列',
'driver' => '佇列驅動程式',
'driver_help' => '用於處理佇列的驅動程式。我們建議使用「Database」。',
'fields' => [
'done' => '我已經完成了以下兩個步驟。',
'done_validation' => '您必須完成這兩個步驟才能繼續!',
'crontab' => '執行以下指令來設定您的 crontab。請注意<code>www-data</code> 是您的網頁伺服器使用者。在某些系統上,此使用者名稱可能會有所不同!',
'service' => '若要設定佇列工作者服務,您只需執行以下指令。',
],
],
'exceptions' => [
'write_env' => '無法寫入 .env 檔案',
'migration' => '無法執行遷移',
'create_user' => '無法建立管理員使用者',
],
'finish' => '完成',
];