Blame view

resources/lang/zh-TW/settings.php 3.07 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  <?php
  
  return [
  
      'company' => [
          'name'              => '名稱',
          'email'             => '電子郵件',
          'phone'             => '電話',
          'address'           => '地址',
          'logo'              => '商標',
      ],
      'localisation' => [
          'tab'               => '本地化',
          'date' => [
              'format'        => '日期格式',
              'separator'     => '日期分隔',
              'dash'          => '破折號 (-)',
              'dot'           => '點 (.)',
              'comma'         => '逗號 (,)',
              'slash'         => '斜線 (/)',
              'space'         => '空格 ( )',
          ],
          'timezone'          => '時區',
          'percent' => [
              'title'         => '百分比 (%) 位置',
              'before'        => '編號之前',
              'after'         => '編號之後',
          ],
      ],
      'invoice' => [
          'tab'               => '訂單',
          'prefix'            => '數字字軌',
          'digit'             => '數字位數',
          'next'              => '下一個號碼',
          'logo'              => '商標',
      ],
      'default' => [
          'tab'               => '預設',
          'account'           => '預設帳號',
          'currency'          => '預設貨幣',
          'tax'               => '預設稅率',
          'payment'           => '預設付款方式',
          'language'          => '預設語言',
      ],
      'email' => [
          'protocol'          => '協定',
          'php'               => 'PHP Mail',
          'smtp' => [
              'name'          => 'SMTP',
              'host'          => 'SMTP 主機',
              'port'          => 'SMTP 通訊埠',
              'username'      => 'SMTP 帳號',
              'password'      => 'SMTP 密碼',
              'encryption'    => 'SMTP 安全性',
              'none'          => '無',
          ],
          'sendmail'          => 'Sendmail',
          'sendmail_path'     => 'Sendmail 路徑',
          'log'               => '郵件日誌',
      ],
      'scheduling' => [
          'tab'               => '排程',
          'send_invoice'      => '傳送訂單提醒',
          'invoice_days'      => '於到期日後傳送',
          'send_bill'         => '傳送帳單提醒',
          'bill_days'         => '於到期日前傳送',
          'cron_command'      => 'Cron指令',
          'schedule_time'     => '執行時間',
      ],
      'appearance' => [
          'tab'               => '外觀',
          'theme'             => '主題',
          'light'             => '明亮',
          'dark'              => '暗色',
          'list_limit'        => '每頁記錄',
          'use_gravatar'      => '使用 Gravatar',
      ],
      'system' => [
          'tab'               => '系統',
          'session' => [
              'lifetime'      => '工作階段保存 (分鐘)',
              'handler'       => '工作階段管理員',
              'file'          => '檔案',
              'database'      => '資料庫',
          ],
          'file_size'         => '最大檔案容量 (MB)',
          'file_types'        => '允許檔案格式',
      ],
  
  ];