第一次提交

This commit is contained in:
7836246
2024-03-02 15:21:22 +08:00
parent 5ad838c5f3
commit 1ca7e58f24
24 changed files with 8336 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
export default defineI18nLocale(async locale => {
return {
index: {
tips: 'The information you submit for your query will not be recorded!',
},
error:{
formatDomain: 'Error formatting domain name',
validDomain: 'Domain must contain a valid top-level domain',
notFound: 'Domain not found',
},
result: {
result: 'Query Result',
title: 'WHOIS Query Result',
description: 'Here is the WHOIS information for the domain you queried',
domain: 'Domain Name',
//数据源
source: 'Source',
//注册商
registrar: 'Registrar',
//更新日
updateDate: 'Updated Date',
//注册日
createDate: 'Creation Date',
//到期日
expirationDate: 'Registry Expiry Date',
//IANAID
ianaId: 'IANAID',
//状态
status: 'Domain Status',
//DNS
dns: 'DNS',
//DNSSEC
dnssec: 'DNSSEC',
//原始数据
rawData: 'Raw Data',
}
}
})
+38
View File
@@ -0,0 +1,38 @@
export default defineI18nLocale(async locale => {
return {
index: {
tips: '您提交的查詢信息不會被記錄!',
},
error:{
formatDomain: '域名格式錯誤',
validDomain: '域名必須包含有效的頂級域',
notFound: '未找到域名資料',
},
result: {
result: '查詢結果',
title: 'WHOIS查詢結果',
description: '以下是您查詢的域名的WHOIS資訊',
domain: '域名',
//数据源
source: '資料來源',
//注册商
registrar: '註冊商',
//更新日
updateDate: '更新日',
//注册日
createDate: '註冊日',
//到期日
expirationDate: '到期日',
//IANAID
ianaId: 'IANAID',
//状态
status: '狀態',
//DNS
dns: 'DNS',
//DNSSEC
dnssec: 'DNSSEC',
//原始数据
rawData: '原始資料',
}
}
})
+39
View File
@@ -0,0 +1,39 @@
export default defineI18nLocale(async locale => {
return {
index: {
tips: '您提交的查询信息不会被记录!',
},
error:{
formatDomain: '域名格式错误',
//域名必须包含有效的顶级域
validDomain: '域名必须包含有效的顶级域',
notFound: '未找到域名信息',
},
result: {
result: '查询结果',
title: 'WHOIS查询结果',
description: '以下是您查询的域名的WHOIS信息',
domain: '域名',
//数据源
source: '数据源',
//注册商
registrar: '注册商',
//更新日
updateDate: '更新日',
//注册日
createDate: '注册日',
//到期日
expirationDate: '到期日',
//IANAID
ianaId: 'IANAID',
//状态
status: '状态',
//DNS
dns: 'DNS',
//DNSSEC
dnssec: 'DNSSEC',
//原始数据
rawData: '原始数据',
}
}
})