Skip to content

Commit 0243907

Browse files
Merge pull request chriskacerguis#636 from ppcat/master
Add traditional chinese language support.
2 parents ccb162b + 05213fe commit 0243907

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>403 Forbidden</title>
5+
</head>
6+
<body>
7+
8+
<p>Directory access is forbidden.</p>
9+
10+
</body>
11+
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
/*
4+
* Traditional Chinese language
5+
*/
6+
7+
$lang['text_rest_invalid_api_key'] = '無效的 API 金鑰 %s'; // %s is the REST API key
8+
$lang['text_rest_invalid_credentials'] = '無效的憑證';
9+
$lang['text_rest_ip_denied'] = 'IP 位置被拒絕';
10+
$lang['text_rest_ip_unauthorized'] = 'IP 位置未認證';
11+
$lang['text_rest_unauthorized'] = '未認證';
12+
$lang['text_rest_ajax_only'] = '只有 AJAX 類型請求被允許';
13+
$lang['text_rest_api_key_unauthorized'] = '這個 API 金鑰沒有辦法存取指定的 controller';
14+
$lang['text_rest_api_key_permissions'] = '這個 API 金鑰沒有具備足夠權限';
15+
$lang['text_rest_api_key_time_limit'] = '這個 API 金鑰已經超過有效期限';
16+
$lang['text_rest_unknown_method'] = '未知的方法';
17+
$lang['text_rest_unsupported'] = '不支援的通訊協定';

0 commit comments

Comments
 (0)