mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
Merge branch 'master' of https://github.com/antares-sql/antares
This commit is contained in:
@@ -275,6 +275,24 @@
|
|||||||
"contributions": [
|
"contributions": [
|
||||||
"code"
|
"code"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "penguinlab",
|
||||||
|
"name": "Naoki Ishikawa",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/10959317?v=4",
|
||||||
|
"profile": "https://github.com/penguinlab",
|
||||||
|
"contributions": [
|
||||||
|
"translation"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"login": "mangas",
|
||||||
|
"name": "Filipe Azevedo",
|
||||||
|
"avatar_url": "https://avatars.githubusercontent.com/u/1640325?v=4",
|
||||||
|
"profile": "https://fazevedo.dev",
|
||||||
|
"contributions": [
|
||||||
|
"code"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"contributorsPerLine": 7,
|
"contributorsPerLine": 7,
|
||||||
|
@@ -150,6 +150,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bagusindrayana"><img src="https://avatars.githubusercontent.com/u/36830534?v=4?s=100" width="100px;" alt="Bagus Indrayana"/><br /><sub><b>Bagus Indrayana</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=bagusindrayana" title="Code">💻</a></td>
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bagusindrayana"><img src="https://avatars.githubusercontent.com/u/36830534?v=4?s=100" width="100px;" alt="Bagus Indrayana"/><br /><sub><b>Bagus Indrayana</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=bagusindrayana" title="Code">💻</a></td>
|
||||||
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/penguinlab"><img src="https://avatars.githubusercontent.com/u/10959317?v=4?s=100" width="100px;" alt="Naoki Ishikawa"/><br /><sub><b>Naoki Ishikawa</b></sub></a><br /><a href="#translation-penguinlab" title="Translation">🌍</a></td>
|
||||||
|
<td align="center" valign="top" width="14.28%"><a href="https://fazevedo.dev"><img src="https://avatars.githubusercontent.com/u/1640325?v=4?s=100" width="100px;" alt="Filipe Azevedo"/><br /><sub><b>Filipe Azevedo</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=mangas" title="Code">💻</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@@ -65,9 +65,16 @@ export const zhCN = {
|
|||||||
actionSuccessful: '{action} 成功',
|
actionSuccessful: '{action} 成功',
|
||||||
outputFormat: '输出格式',
|
outputFormat: '输出格式',
|
||||||
singleFile: '单个 {ext} 文件',
|
singleFile: '单个 {ext} 文件',
|
||||||
zipCompressedFile: 'ZIP 压缩 {ext} 文件'
|
zipCompressedFile: 'ZIP 压缩 {ext} 文件',
|
||||||
|
copyName: '复制名称',
|
||||||
|
search: '搜索',
|
||||||
|
title: '标题',
|
||||||
|
archive: '归档',
|
||||||
|
undo: '重做',
|
||||||
|
moveTo: '移动到'
|
||||||
},
|
},
|
||||||
connection: { // 数据库连接
|
connection: { // 数据库连接
|
||||||
|
connection: '连接',
|
||||||
connectionName: '连接名称',
|
connectionName: '连接名称',
|
||||||
hostName: '主机名',
|
hostName: '主机名',
|
||||||
client: '数据库类型',
|
client: '数据库类型',
|
||||||
@@ -101,7 +108,8 @@ export const zhCN = {
|
|||||||
readOnlyMode: '只读模式',
|
readOnlyMode: '只读模式',
|
||||||
allConnections: '所有连接',
|
allConnections: '所有连接',
|
||||||
searchForConnections: '搜索连接',
|
searchForConnections: '搜索连接',
|
||||||
keepAliveInterval: '保持活跃间隔'
|
keepAliveInterval: '保持活跃间隔',
|
||||||
|
singleConnection: '单一连接'
|
||||||
},
|
},
|
||||||
database: { // 数据库相关术语
|
database: { // 数据库相关术语
|
||||||
schema: '模式(schema)',
|
schema: '模式(schema)',
|
||||||
@@ -265,12 +273,11 @@ export const zhCN = {
|
|||||||
targetTable: '目标表',
|
targetTable: '目标表',
|
||||||
switchDatabase: '切换数据库',
|
switchDatabase: '切换数据库',
|
||||||
searchForElements: '搜索元素',
|
searchForElements: '搜索元素',
|
||||||
searchForSchemas: '搜索模式(schema)'
|
searchForSchemas: '搜索模式(schema)',
|
||||||
|
savedQueries: '已保存的查询'
|
||||||
},
|
},
|
||||||
application: { // 应用程序相关术语
|
application: { // 应用程序相关术语
|
||||||
settings: '设置',
|
settings: '设置',
|
||||||
scratchpad: '草稿栏',
|
|
||||||
disableScratchpad: '禁用草稿栏',
|
|
||||||
console: '控制台',
|
console: '控制台',
|
||||||
general: '常规',
|
general: '常规',
|
||||||
themes: '主题',
|
themes: '主题',
|
||||||
@@ -375,7 +382,19 @@ export const zhCN = {
|
|||||||
ignoreDuplicates: '忽略重复',
|
ignoreDuplicates: '忽略重复',
|
||||||
wrongImportPassword: '错误的导入密码',
|
wrongImportPassword: '错误的导入密码',
|
||||||
wrongFileFormat: '错误的文件格式',
|
wrongFileFormat: '错误的文件格式',
|
||||||
dataImportSuccess: '数据已成功导入'
|
dataImportSuccess: '数据已成功导入',
|
||||||
|
note: '笔记 | 笔记',
|
||||||
|
thereAreNoNotesYet: '目前还没有笔记',
|
||||||
|
addNote: '添加笔记',
|
||||||
|
editNote: '编辑笔记',
|
||||||
|
saveAsNote: '另存为笔记',
|
||||||
|
showArchivedNotes: '显示归档笔记',
|
||||||
|
hideArchivedNotes: '隐藏归档笔记',
|
||||||
|
tag: '笔记标签', // Note tag,
|
||||||
|
saveFile: '保存文件',
|
||||||
|
saveFileAs: '将文件另存为',
|
||||||
|
openFile: '打开文件',
|
||||||
|
openNotes: '打开笔记'
|
||||||
},
|
},
|
||||||
faker: { // Faker.js 方法,用于随机生成的内容
|
faker: { // Faker.js 方法,用于随机生成的内容
|
||||||
address: '地址',
|
address: '地址',
|
||||||
|
Reference in New Issue
Block a user