mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-19 19:05:20 +09:00
불필요한 파일 제거
This commit is contained in:
@@ -68,7 +68,7 @@ const links = ref<NavbarItem[]>([
|
||||
|
||||
<template #extra>
|
||||
<ClientOnly>
|
||||
<VReloadPrompt app-name="Vuero" />
|
||||
<VReloadPrompt app-name="소액계약관리" />
|
||||
</ClientOnly>
|
||||
</template>
|
||||
</NavbarLayout>
|
||||
|
||||
@@ -1324,7 +1324,7 @@ const linksBottom = ref<SidebarItem[]>([
|
||||
<PanelTask />
|
||||
|
||||
<ClientOnly>
|
||||
<VReloadPrompt app-name="Vuero" />
|
||||
<VReloadPrompt app-name="소액계약관리" />
|
||||
</ClientOnly>
|
||||
</template>
|
||||
</SidebarLayout>
|
||||
|
||||
@@ -50,7 +50,7 @@ const links = ref<SideblockItem[]>([
|
||||
|
||||
<template #extra>
|
||||
<ClientOnly>
|
||||
<VReloadPrompt app-name="Vuero" />
|
||||
<VReloadPrompt app-name="소액계약관리" />
|
||||
</ClientOnly>
|
||||
</template>
|
||||
</SideblockLayout>
|
||||
|
||||
36
src/locales/ko.json
Normal file
36
src/locales/ko.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"select-language": "언어 선택",
|
||||
"cancel-label": "취소",
|
||||
"auth.title": "지금 우리와 함께하세요.",
|
||||
"auth.subtitle": "계정 생성부터 시작하세요",
|
||||
"auth.label.promotional": "프로모션 제안 받기",
|
||||
"auth.action.login": "이미 계정이 있습니다.",
|
||||
"auth.action.signup": "가입",
|
||||
"auth.placeholder.name": "이름",
|
||||
"auth.placeholder.email": "이메일 주소",
|
||||
"auth.placeholder.password": "비밀번호",
|
||||
"auth.placeholder.passwordCheck": "비밀번호 인증",
|
||||
"auth.errors.name.required": "이름이 필요합니다.",
|
||||
"auth.errors.email.required": "이메일을 입력하면 로그인이 필요합니다.",
|
||||
"auth.errors.email.format": "유효한 이메일을 입력해 주세요.",
|
||||
"auth.errors.password.required": "비밀번호를 8자 이상 입력하면 로그인이 필요합니다.",
|
||||
"auth.errors.password.length": "비밀번호에는 최소 8자가 포함되어야 합니다.",
|
||||
"auth.errors.passwordCheck.required": "비밀번호를 확인해 주세요.",
|
||||
"auth.errors.passwordCheck.match": "비밀번호가 일치하지 않습니다",
|
||||
"pages.dashboard-personnal-1.page-title": "퍼스널 1",
|
||||
"pages.not-found.page-title": "페이지를 찾을 수 없습니다",
|
||||
"pages.not-found.page-heading": "그 페이지를 찾을 수 없습니다.",
|
||||
"pages.not-found.page-body": "해당 페이지를 찾을 수 없는 것 같습니다. 문제가 계속되면 다시 시도하거나 관리자에게 문의해 주세요.",
|
||||
"pages.not-found.page-button": "테이크 미 백",
|
||||
"components.v-reload-prompt.offline-ready": "{appName}이(가) 오프라인으로 작업할 준비가 되었습니다.",
|
||||
"components.v-reload-prompt.need-refresh": "새 버전의 {appName}을 사용할 수 있습니다. 새로고침 버튼을 클릭하여 업데이트하세요.",
|
||||
"components.v-reload-prompt.reload-button": "다시 로드",
|
||||
"components.v-reload-prompt.close-button": "닫기",
|
||||
"components.v-flex-pagination.goto-page-title": "페이지 {page}로 이동",
|
||||
"components.v-credit-card.holder-label": "카드 소지자 이름",
|
||||
"components.v-credit-card.number-label": "카드 번호",
|
||||
"components.v-credit-card.expiration-label": "유효 기간",
|
||||
"components.v-credit-card.cvc-label": "보안 코드",
|
||||
"components.v-credit-card.valid-label": "유효",
|
||||
"components.v-credit-card.valid-thru-label": "THRU"
|
||||
}
|
||||
@@ -16,7 +16,7 @@ import { useSSRContext } from 'vue'
|
||||
const { t } = useI18n()
|
||||
|
||||
useHead({
|
||||
title: `${t('pages.not-found.page-title')} - Vuero`,
|
||||
title: `${t('pages.not-found.page-title')} - 소액계약관리`,
|
||||
meta: [
|
||||
{
|
||||
name: 'robots',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
useHead({
|
||||
title: 'Error Page 1 - Vuero',
|
||||
title: '소액계약관리 - 에러페이지',
|
||||
})
|
||||
|
||||
const router = useRouter()
|
||||
|
||||
@@ -9,7 +9,7 @@ import { createI18n } from 'vue-i18n'
|
||||
import messages from '@intlify/unplugin-vue-i18n/messages'
|
||||
|
||||
export default definePlugin(({ app }) => {
|
||||
const defaultLocale = useStorage('locale', 'en')
|
||||
const defaultLocale = useStorage('locale', 'ko')
|
||||
const i18n = createI18n({
|
||||
locale: defaultLocale.value,
|
||||
messages,
|
||||
|
||||
Reference in New Issue
Block a user