mirror of
https://github.com/Fabio286/antares.git
synced 2025-04-07 06:51:05 +02:00
Merge pull request #596 from 64knl/fix/spelling-appearance
fix: spelling corrections
This commit is contained in:
commit
5bdbebfbc3
@ -7,7 +7,7 @@
|
|||||||
<div class="modal-title h6">
|
<div class="modal-title h6">
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<i class="mdi mdi-24px mdi-brush-variant mr-1" />
|
<i class="mdi mdi-24px mdi-brush-variant mr-1" />
|
||||||
<span class="cut-text">{{ t('message.editConnectionAppearence') }}</span>
|
<span class="cut-text">{{ t('message.editConnectionAppearance') }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a class="btn btn-clear c-hand" @click.stop="closeModal" />
|
<a class="btn btn-clear c-hand" @click.stop="closeModal" />
|
||||||
@ -48,7 +48,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearence">
|
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearance">
|
||||||
{{ t('word.update') }}
|
{{ t('word.update') }}
|
||||||
</button>
|
</button>
|
||||||
<button class="btn btn-link" @click.stop="closeModal">
|
<button class="btn btn-link" @click.stop="closeModal">
|
||||||
@ -136,7 +136,7 @@ const { trapRef } = useFocusTrap();
|
|||||||
const firstInput: Ref<HTMLInputElement> = ref(null);
|
const firstInput: Ref<HTMLInputElement> = ref(null);
|
||||||
const localConnection: Ref<SidebarElement> = ref(unproxify(props.connection));
|
const localConnection: Ref<SidebarElement> = ref(unproxify(props.connection));
|
||||||
|
|
||||||
const editFolderAppearence = () => {
|
const editFolderAppearance = () => {
|
||||||
updateConnectionOrder(localConnection.value);
|
updateConnectionOrder(localConnection.value);
|
||||||
closeModal();
|
closeModal();
|
||||||
};
|
};
|
@ -51,7 +51,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearence">
|
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearance">
|
||||||
{{ t('word.update') }}
|
{{ t('word.update') }}
|
||||||
</button>
|
</button>
|
||||||
<button class="btn btn-link" @click.stop="closeModal">
|
<button class="btn btn-link" @click.stop="closeModal">
|
||||||
@ -110,7 +110,7 @@ const { trapRef } = useFocusTrap();
|
|||||||
const firstInput: Ref<HTMLInputElement> = ref(null);
|
const firstInput: Ref<HTMLInputElement> = ref(null);
|
||||||
const localFolder: Ref<SidebarElement> = ref(unproxify(props.folder));
|
const localFolder: Ref<SidebarElement> = ref(unproxify(props.folder));
|
||||||
|
|
||||||
const editFolderAppearence = () => {
|
const editFolderAppearance = () => {
|
||||||
updateConnectionOrder(localFolder.value);
|
updateConnectionOrder(localFolder.value);
|
||||||
closeModal();
|
closeModal();
|
||||||
};
|
};
|
@ -17,8 +17,8 @@
|
|||||||
>
|
>
|
||||||
<span class="d-flex"><i class="mdi mdi-18px mdi-content-duplicate text-light pr-1" /> {{ t('word.duplicate') }}</span>
|
<span class="d-flex"><i class="mdi mdi-18px mdi-content-duplicate text-light pr-1" /> {{ t('word.duplicate') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="context-element" @click.stop="showAppearenceModal">
|
<div class="context-element" @click.stop="showAppearanceModal">
|
||||||
<span class="d-flex"><i class="mdi mdi-18px mdi-brush-variant text-light pr-1" /> {{ t('word.appearence') }}</span>
|
<span class="d-flex"><i class="mdi mdi-18px mdi-brush-variant text-light pr-1" /> {{ t('word.appearance') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="context-element" @click="showConfirmModal">
|
<div class="context-element" @click="showConfirmModal">
|
||||||
<span class="d-flex"><i class="mdi mdi-18px mdi-delete text-light pr-1" /> {{ t('word.delete') }}</span>
|
<span class="d-flex"><i class="mdi mdi-18px mdi-delete text-light pr-1" /> {{ t('word.delete') }}</span>
|
||||||
@ -40,15 +40,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</ConfirmModal>
|
</ConfirmModal>
|
||||||
<ModalFolderAppearence
|
<ModalFolderAppearance
|
||||||
v-if="isFolderEdit"
|
v-if="isFolderEdit"
|
||||||
:folder="contextConnection"
|
:folder="contextConnection"
|
||||||
@close="hideAppearenceModal"
|
@close="hideAppearanceModal"
|
||||||
/>
|
/>
|
||||||
<ModalConnectionAppearence
|
<ModalConnectionAppearance
|
||||||
v-if="isConnectionEdit"
|
v-if="isConnectionEdit"
|
||||||
:connection="contextConnection"
|
:connection="contextConnection"
|
||||||
@close="hideAppearenceModal"
|
@close="hideAppearanceModal"
|
||||||
/>
|
/>
|
||||||
</BaseContextMenu>
|
</BaseContextMenu>
|
||||||
</template>
|
</template>
|
||||||
@ -62,8 +62,8 @@ import { SidebarElement, useConnectionsStore } from '@/stores/connections';
|
|||||||
import { useWorkspacesStore } from '@/stores/workspaces';
|
import { useWorkspacesStore } from '@/stores/workspaces';
|
||||||
import BaseContextMenu from '@/components/BaseContextMenu.vue';
|
import BaseContextMenu from '@/components/BaseContextMenu.vue';
|
||||||
import ConfirmModal from '@/components/BaseConfirmModal.vue';
|
import ConfirmModal from '@/components/BaseConfirmModal.vue';
|
||||||
import ModalFolderAppearence from '@/components/ModalFolderAppearence.vue';
|
import ModalFolderAppearance from '@/components/ModalFolderAppearance.vue';
|
||||||
import ModalConnectionAppearence from '@/components/ModalConnectionAppearence.vue';
|
import ModalConnectionAppearance from '@/components/ModalConnectionAppearance.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
@ -118,14 +118,14 @@ const duplicateConnection = () => {
|
|||||||
closeContext();
|
closeContext();
|
||||||
};
|
};
|
||||||
|
|
||||||
const showAppearenceModal = () => {
|
const showAppearanceModal = () => {
|
||||||
if (props.contextConnection.isFolder)
|
if (props.contextConnection.isFolder)
|
||||||
isFolderEdit.value = true;
|
isFolderEdit.value = true;
|
||||||
else
|
else
|
||||||
isConnectionEdit.value = true;
|
isConnectionEdit.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
const hideAppearenceModal = () => {
|
const hideAppearanceModal = () => {
|
||||||
isConnectionEdit.value = false;
|
isConnectionEdit.value = false;
|
||||||
isFolderEdit.value = false;
|
isFolderEdit.value = false;
|
||||||
closeContext();
|
closeContext();
|
||||||
|
@ -145,7 +145,7 @@ export const enUS = {
|
|||||||
console: 'Console',
|
console: 'Console',
|
||||||
shortcuts: 'Shortcuts',
|
shortcuts: 'Shortcuts',
|
||||||
folder: 'Folder | Folders',
|
folder: 'Folder | Folders',
|
||||||
appearence: 'Appearence',
|
appearance: 'Appearance',
|
||||||
color: 'Color',
|
color: 'Color',
|
||||||
label: 'Label',
|
label: 'Label',
|
||||||
icon: 'Icon',
|
icon: 'Icon',
|
||||||
@ -296,7 +296,7 @@ export const enUS = {
|
|||||||
autoCommit: 'Auto commit',
|
autoCommit: 'Auto commit',
|
||||||
manualCommit: 'Manual commit',
|
manualCommit: 'Manual commit',
|
||||||
actionSuccessful: '{action} successful',
|
actionSuccessful: '{action} successful',
|
||||||
importQueryErrors: 'Warning: {n} error has occurrend | Warning: {n} errors occurred',
|
importQueryErrors: 'Warning: {n} error has occurred | Warning: {n} errors occurred',
|
||||||
executedQueries: '{n} query executed | {n} queries executed',
|
executedQueries: '{n} query executed | {n} queries executed',
|
||||||
ourputFormat: 'Output format',
|
ourputFormat: 'Output format',
|
||||||
singleFile: 'Single {ext} file',
|
singleFile: 'Single {ext} file',
|
||||||
@ -305,7 +305,7 @@ export const enUS = {
|
|||||||
untrustedConnection: 'Untrusted connection',
|
untrustedConnection: 'Untrusted connection',
|
||||||
missingOrIncompleteTranslation: 'Missing or incomplete translation?',
|
missingOrIncompleteTranslation: 'Missing or incomplete translation?',
|
||||||
findOutHowToContribute: 'Find out how to contribute',
|
findOutHowToContribute: 'Find out how to contribute',
|
||||||
disableFKChecks: 'Disable foreigh key checks',
|
disableFKChecks: 'Disable foreign key checks',
|
||||||
allConnections: 'All connections',
|
allConnections: 'All connections',
|
||||||
searchForConnections: 'Search for connections',
|
searchForConnections: 'Search for connections',
|
||||||
disableScratchpad: 'Disable scratchpad',
|
disableScratchpad: 'Disable scratchpad',
|
||||||
@ -337,7 +337,7 @@ export const enUS = {
|
|||||||
editFolder: 'Edit folder',
|
editFolder: 'Edit folder',
|
||||||
folderName: 'Folder name',
|
folderName: 'Folder name',
|
||||||
deleteFolder: 'Delete folder',
|
deleteFolder: 'Delete folder',
|
||||||
editConnectionAppearence: 'Edit connection appearence',
|
editConnectionAppearance: 'Edit connection appearance',
|
||||||
executeSelectedQuery: 'Execute selected query',
|
executeSelectedQuery: 'Execute selected query',
|
||||||
defaultCopyType: 'Default copy type',
|
defaultCopyType: 'Default copy type',
|
||||||
showTableSize: 'Show table size in sidebar',
|
showTableSize: 'Show table size in sidebar',
|
||||||
|
@ -145,7 +145,7 @@ export const idID = {
|
|||||||
console: 'Konsol',
|
console: 'Konsol',
|
||||||
shortcuts: 'Shortcut',
|
shortcuts: 'Shortcut',
|
||||||
folder: 'Folder | Folder',
|
folder: 'Folder | Folder',
|
||||||
appearence: 'Appearence',
|
appearance: 'Appearance',
|
||||||
color: 'Color',
|
color: 'Color',
|
||||||
label: 'Label',
|
label: 'Label',
|
||||||
icon: 'Icon'
|
icon: 'Icon'
|
||||||
@ -332,7 +332,7 @@ export const idID = {
|
|||||||
editFolder: 'Ubah folder',
|
editFolder: 'Ubah folder',
|
||||||
folderName: 'Nama folder',
|
folderName: 'Nama folder',
|
||||||
deleteFolder: 'Hapus folder',
|
deleteFolder: 'Hapus folder',
|
||||||
editConnectionAppearence: 'Ubah connection appearence',
|
editConnectionAppearance: 'Ubah connection appearance',
|
||||||
executeSelectedQuery: 'Eksekusi query yang dipilih',
|
executeSelectedQuery: 'Eksekusi query yang dipilih',
|
||||||
defaultCopyType: 'Jenis salin default'
|
defaultCopyType: 'Jenis salin default'
|
||||||
},
|
},
|
||||||
|
@ -145,7 +145,7 @@ export const itIT = {
|
|||||||
console: 'Console',
|
console: 'Console',
|
||||||
shortcuts: 'Scorciatoie',
|
shortcuts: 'Scorciatoie',
|
||||||
folder: 'Cartella | Cartelle',
|
folder: 'Cartella | Cartelle',
|
||||||
appearence: 'Aspetto',
|
appearance: 'Aspetto',
|
||||||
color: 'Colore',
|
color: 'Colore',
|
||||||
label: 'Etichetta',
|
label: 'Etichetta',
|
||||||
icon: 'Icona',
|
icon: 'Icona',
|
||||||
@ -333,7 +333,7 @@ export const itIT = {
|
|||||||
editFolder: 'Modifica cartella',
|
editFolder: 'Modifica cartella',
|
||||||
folderName: 'Nome cartella',
|
folderName: 'Nome cartella',
|
||||||
deleteFolder: 'Cancella cartella',
|
deleteFolder: 'Cancella cartella',
|
||||||
editConnectionAppearence: 'Modifica aspetto connessione',
|
editConnectionAppearance: 'Modifica aspetto connessione',
|
||||||
executeSelectedQuery: 'Esegui la query selezionata',
|
executeSelectedQuery: 'Esegui la query selezionata',
|
||||||
defaultCopyType: 'Tipo di copia default',
|
defaultCopyType: 'Tipo di copia default',
|
||||||
showTableSize: 'Mostra dimensioni tabella nella sidebar',
|
showTableSize: 'Mostra dimensioni tabella nella sidebar',
|
||||||
|
@ -112,7 +112,7 @@ export const koKR = {
|
|||||||
small: '작음',
|
small: '작음',
|
||||||
medium: '중간',
|
medium: '중간',
|
||||||
large: '큼',
|
large: '큼',
|
||||||
row: '행 | 행들',
|
row: '행 | 행들',
|
||||||
cell: '셀 | 셀들',
|
cell: '셀 | 셀들',
|
||||||
triggerFunction: '트리거 함수 | 트리거 함수들',
|
triggerFunction: '트리거 함수 | 트리거 함수들',
|
||||||
all: '모두',
|
all: '모두',
|
||||||
@ -145,7 +145,7 @@ export const koKR = {
|
|||||||
console: '콘솔',
|
console: '콘솔',
|
||||||
shortcuts: '바로가기',
|
shortcuts: '바로가기',
|
||||||
folder: '폴더 | 폴더들',
|
folder: '폴더 | 폴더들',
|
||||||
appearence: '외형',
|
appearance: '외형',
|
||||||
color: '색상',
|
color: '색상',
|
||||||
label: '라벨',
|
label: '라벨',
|
||||||
icon: '아이콘',
|
icon: '아이콘',
|
||||||
@ -333,7 +333,7 @@ export const koKR = {
|
|||||||
editFolder: '폴더 수정',
|
editFolder: '폴더 수정',
|
||||||
folderName: '폴더 이름',
|
folderName: '폴더 이름',
|
||||||
deleteFolder: '폴더 삭제',
|
deleteFolder: '폴더 삭제',
|
||||||
editConnectionAppearence: '연결 형태 수정',
|
editConnectionAppearance: '연결 형태 수정',
|
||||||
executeSelectedQuery: '선택한 쿼리 실행',
|
executeSelectedQuery: '선택한 쿼리 실행',
|
||||||
defaultCopyType: '기본 복사 유형',
|
defaultCopyType: '기본 복사 유형',
|
||||||
showTableSize: '사이드바에 테이블 크기 표시',
|
showTableSize: '사이드바에 테이블 크기 표시',
|
||||||
@ -506,4 +506,4 @@ export const koKR = {
|
|||||||
fuel: '연료',
|
fuel: '연료',
|
||||||
vin: '차량식별번호'
|
vin: '차량식별번호'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -139,12 +139,12 @@ export const ptBR = {
|
|||||||
rollback: 'Reverter',
|
rollback: 'Reverter',
|
||||||
connectionString: 'String da conexão',
|
connectionString: 'String da conexão',
|
||||||
contributors: 'Contribuintes',
|
contributors: 'Contribuintes',
|
||||||
pin: 'Fixar',
|
pin: 'Fixar',
|
||||||
unpin: 'Desafixar',
|
unpin: 'Desafixar',
|
||||||
console: 'Console',
|
console: 'Console',
|
||||||
shortcuts: 'Atalhos',
|
shortcuts: 'Atalhos',
|
||||||
folder: 'Pasta | Pastas',
|
folder: 'Pasta | Pastas',
|
||||||
appearence: 'Aparência',
|
appearance: 'Aparência',
|
||||||
color: 'Cor',
|
color: 'Cor',
|
||||||
label: 'Rótulo',
|
label: 'Rótulo',
|
||||||
icon: 'Icone'
|
icon: 'Icone'
|
||||||
@ -295,42 +295,42 @@ export const ptBR = {
|
|||||||
singleFile: 'Arquivo {ext} único',
|
singleFile: 'Arquivo {ext} único',
|
||||||
zipCompressedFile: 'Arquivo compactado {ext} ZIP',
|
zipCompressedFile: 'Arquivo compactado {ext} ZIP',
|
||||||
disableBlur: 'Desabilitar Blur',
|
disableBlur: 'Desabilitar Blur',
|
||||||
untrustedConnection: 'Conexão insegura',
|
untrustedConnection: 'Conexão insegura',
|
||||||
missingOrIncompleteTranslation: 'Tradução incorreta ou incompleta?',
|
missingOrIncompleteTranslation: 'Tradução incorreta ou incompleta?',
|
||||||
findOutHowToContribute: 'Saiba como contribuir',
|
findOutHowToContribute: 'Saiba como contribuir',
|
||||||
disableFKChecks: 'Desativar verificação de chave estrangeira',
|
disableFKChecks: 'Desativar verificação de chave estrangeira',
|
||||||
allConnections: 'Todas as conexões',
|
allConnections: 'Todas as conexões',
|
||||||
searchForConnections: 'Procurar por conexões',
|
searchForConnections: 'Procurar por conexões',
|
||||||
disableScratchpad: 'Desativar bloco de notas',
|
disableScratchpad: 'Desativar bloco de notas',
|
||||||
reportABug: 'Reportar um problema',
|
reportABug: 'Reportar um problema',
|
||||||
nextTab: 'Próxima guia',
|
nextTab: 'Próxima guia',
|
||||||
previousTab: 'Guia anterior',
|
previousTab: 'Guia anterior',
|
||||||
selectTabNumber: 'Selecionar guia número {param}',
|
selectTabNumber: 'Selecionar guia número {param}',
|
||||||
toggleConsole: 'Alterar console',
|
toggleConsole: 'Alterar console',
|
||||||
addShortcut: 'Adicionar Atalho',
|
addShortcut: 'Adicionar Atalho',
|
||||||
editShortcut: 'Editar atalho',
|
editShortcut: 'Editar atalho',
|
||||||
deleteShortcut: 'Delete shortcut',
|
deleteShortcut: 'Delete shortcut',
|
||||||
restoreDefaults: 'Restaurar padrões',
|
restoreDefaults: 'Restaurar padrões',
|
||||||
restoreDefaultsQuestion: 'Você confirma que quer restaurar os valores padrões?',
|
restoreDefaultsQuestion: 'Você confirma que quer restaurar os valores padrões?',
|
||||||
registerAShortcut: 'Registrar um atalho',
|
registerAShortcut: 'Registrar um atalho',
|
||||||
invalidShortcutMessage: 'Combinação inválida, continue digitando',
|
invalidShortcutMessage: 'Combinação inválida, continue digitando',
|
||||||
shortcutAlreadyExists: 'O atalho já existe',
|
shortcutAlreadyExists: 'O atalho já existe',
|
||||||
saveContent: 'Salvar conteúdo',
|
saveContent: 'Salvar conteúdo',
|
||||||
openAllConnections: 'Abrir todas as conexões',
|
openAllConnections: 'Abrir todas as conexões',
|
||||||
openSettings: 'Abrir Configurações',
|
openSettings: 'Abrir Configurações',
|
||||||
openScratchpad: 'Abrir scratchpad',
|
openScratchpad: 'Abrir scratchpad',
|
||||||
runOrReload: 'Executar ou recarregar',
|
runOrReload: 'Executar ou recarregar',
|
||||||
formatQuery: 'Formatar consulta',
|
formatQuery: 'Formatar consulta',
|
||||||
queryHistory: 'Histórico de consulta',
|
queryHistory: 'Histórico de consulta',
|
||||||
clearQuery: 'Limpar consulta',
|
clearQuery: 'Limpar consulta',
|
||||||
openFilter: 'Abrir Filtro',
|
openFilter: 'Abrir Filtro',
|
||||||
nextResultsPage: 'Próxima página de resultados',
|
nextResultsPage: 'Próxima página de resultados',
|
||||||
previousResultsPage: 'Página de resultados anterior',
|
previousResultsPage: 'Página de resultados anterior',
|
||||||
fillCell: 'Preencher Célula',
|
fillCell: 'Preencher Célula',
|
||||||
editFolder: 'Editar Pasta',
|
editFolder: 'Editar Pasta',
|
||||||
folderName: 'Nome da pasta',
|
folderName: 'Nome da pasta',
|
||||||
deleteFolder: 'Apagar Pasta',
|
deleteFolder: 'Apagar Pasta',
|
||||||
editConnectionAppearence: 'Editar aparência da conexão'
|
editConnectionAppearance: 'Editar aparência da conexão'
|
||||||
},
|
},
|
||||||
faker: {
|
faker: {
|
||||||
address: 'Endereço',
|
address: 'Endereço',
|
||||||
|
@ -145,7 +145,7 @@ export const ruRU = {
|
|||||||
console: 'Консоль',
|
console: 'Консоль',
|
||||||
shortcuts: 'Горячие клавиши',
|
shortcuts: 'Горячие клавиши',
|
||||||
folder: 'Директория | Директории',
|
folder: 'Директория | Директории',
|
||||||
appearence: 'Внешний вид',
|
appearance: 'Внешний вид',
|
||||||
color: 'Цвет',
|
color: 'Цвет',
|
||||||
label: 'Метка',
|
label: 'Метка',
|
||||||
icon: 'Иконка',
|
icon: 'Иконка',
|
||||||
@ -334,7 +334,7 @@ export const ruRU = {
|
|||||||
editFolder: 'Изменить директорию',
|
editFolder: 'Изменить директорию',
|
||||||
folderName: 'Название директории',
|
folderName: 'Название директории',
|
||||||
deleteFolder: 'Удалить директорию',
|
deleteFolder: 'Удалить директорию',
|
||||||
editConnectionAppearence: 'Изменить внешний вид соединения',
|
editConnectionAppearance: 'Изменить внешний вид соединения',
|
||||||
executeSelectedQuery: 'Выполнить выделенный запрос',
|
executeSelectedQuery: 'Выполнить выделенный запрос',
|
||||||
defaultCopyType: 'Тип копирования по-умолчанию',
|
defaultCopyType: 'Тип копирования по-умолчанию',
|
||||||
showTableSize: 'Показывать размер таблицы в сайдбаре',
|
showTableSize: 'Показывать размер таблицы в сайдбаре',
|
||||||
|
@ -145,7 +145,7 @@ export const zhCN = {
|
|||||||
console: '控制台',
|
console: '控制台',
|
||||||
shortcuts: '快捷键',
|
shortcuts: '快捷键',
|
||||||
folder: '文件夹 | 文件夹',
|
folder: '文件夹 | 文件夹',
|
||||||
appearence: '外观',
|
appearance: '外观',
|
||||||
color: '颜色',
|
color: '颜色',
|
||||||
label: '标签',
|
label: '标签',
|
||||||
icon: '图标',
|
icon: '图标',
|
||||||
@ -333,7 +333,7 @@ export const zhCN = {
|
|||||||
editFolder: '编辑文件夹',
|
editFolder: '编辑文件夹',
|
||||||
folderName: '文件夹名称',
|
folderName: '文件夹名称',
|
||||||
deleteFolder: '删除文件夹',
|
deleteFolder: '删除文件夹',
|
||||||
editConnectionAppearence: '编辑连接的外观',
|
editConnectionAppearance: '编辑连接的外观',
|
||||||
executeSelectedQuery: '执行所选查询',
|
executeSelectedQuery: '执行所选查询',
|
||||||
defaultCopyType: '默认复制类型',
|
defaultCopyType: '默认复制类型',
|
||||||
showTableSize: '在侧边栏显示表大小',
|
showTableSize: '在侧边栏显示表大小',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user