mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-12 01:24:38 +08:00
fix: Fix the problem that the verification code is not displayed when… (#8325)
This commit is contained in:
parent
949e3c25a7
commit
e352de6744
8 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "Default group, unable to delete"
|
|||
ErrGroupIsInUse: "The group is in use and cannot be deleted."
|
||||
ErrLocalDelete: "Cannot delete the local node!"
|
||||
ErrPortInUsed: "The {{ .name }} port is already in use!"
|
||||
ErrInternalServerKey: "Internal server error:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "Application store package requires .tar.gz format"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "デフォルトグループの削除はできません"
|
|||
ErrGroupIsInUse: "グループは使用中のため、削除できません。"
|
||||
ErrLocalDelete: "ローカルノードは削除できません!"
|
||||
ErrPortInUsed: "{{ .name }} ポートはすでに使用されています!"
|
||||
ErrInternalServerKey: "サーバー内部エラー:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "アプリストアパッケージは .tar.gz 形式である必要があります"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "기본 그룹은 삭제할 수 없습니다"
|
|||
ErrGroupIsInUse: "그룹이 사용 중이므로 삭제할 수 없습니다."
|
||||
ErrLocalDelete: "로컬 노드는 삭제할 수 없습니다!"
|
||||
ErrPortInUsed: "{{ .name }} 포트가 이미 사용 중입니다!"
|
||||
ErrInternalServerKey: "서버 내부 오류:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "앱 스토어 패키지는 .tar.gz 형식이어야 합니다"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "Kumpulan lalai tidak boleh dihapuskan"
|
|||
ErrGroupIsInUse: "Kumpulan sedang digunakan dan tidak boleh dipadam."
|
||||
ErrLocalDelete: "Nod tempatan tidak boleh dihapuskan!"
|
||||
ErrPortInUsed: "Port {{ .name }} telah digunakan!"
|
||||
ErrInternalServerKey: "Ralat dalaman pelayan:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "Pakej stor aplikasi perlu dalam format .tar.gz"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "Grupo padrão não pode ser excluído"
|
|||
ErrGroupIsInUse: "O grupo está em uso e não pode ser excluído."
|
||||
ErrLocalDelete: "O nó local não pode ser excluído!"
|
||||
ErrPortInUsed: "A porta {{ .name }} já está em uso!"
|
||||
ErrInternalServerKey: "Erro interno do servidor:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "O pacote da loja de aplicativos deve estar no formato .tar.gz"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "Группу по умолчанию нельзя удали
|
|||
ErrGroupIsInUse: "Группа используется и не может быть удалена."
|
||||
ErrLocalDelete: "Локальный узел нельзя удалить!"
|
||||
ErrPortInUsed: "Порт {{ .name }} уже используется!"
|
||||
ErrInternalServerKey: "Внутренняя ошибка сервера:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "Пакет магазина приложений должен быть в формате .tar.gz"
|
||||
|
|
|
@ -30,6 +30,7 @@ ErrGroupIsDefault: "預設分組無法刪除"
|
|||
ErrGroupIsInUse: "分組正被使用,無法刪除。"
|
||||
ErrLocalDelete: "無法刪除本地節點!"
|
||||
ErrPortInUsed: "{{ .name }} 埠已被佔用!"
|
||||
ErrInternalServerKey: "服務內部錯誤:"
|
||||
|
||||
# app
|
||||
CustomAppStoreFileValid: "應用商店包需要 .tar.gz 格式"
|
||||
|
|
|
@ -346,12 +346,14 @@ const login = (formEl: FormInstance | undefined) => {
|
|||
loginForm.captcha = '';
|
||||
errCaptcha.value = true;
|
||||
errAuthInfo.value = false;
|
||||
loginVerify();
|
||||
return;
|
||||
}
|
||||
if (res.message === 'ErrAuth') {
|
||||
globalStore.ignoreCaptcha = false;
|
||||
errCaptcha.value = false;
|
||||
errAuthInfo.value = true;
|
||||
loginVerify();
|
||||
return;
|
||||
}
|
||||
MsgError(res.message);
|
||||
|
|
Loading…
Add table
Reference in a new issue