mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 22:41:42 +01:00
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import type { Messages } from '../types'
|
|
import { defineLocale } from '../composables/defineLocale'
|
|
|
|
export default defineLocale<Messages>({
|
|
name: '한국어',
|
|
code: 'ko',
|
|
messages: {
|
|
inputMenu: {
|
|
noMatch: '일치하는 데이터가 없습니다.',
|
|
noData: '데이터가 없습니다.',
|
|
create: '"{label}" 생성'
|
|
},
|
|
calendar: {
|
|
prevYear: '이전 해',
|
|
nextYear: '다음 해',
|
|
prevMonth: '이전 달',
|
|
nextMonth: '다음 달'
|
|
},
|
|
inputNumber: {
|
|
increment: '증가',
|
|
decrement: '감소'
|
|
},
|
|
commandPalette: {
|
|
placeholder: '명령을 입력하거나 검색...',
|
|
noMatch: '일치하는 데이터가 없습니다.',
|
|
noData: '데이터가 없습니다.',
|
|
close: '닫기',
|
|
back: '뒤로'
|
|
},
|
|
selectMenu: {
|
|
noMatch: '일치하는 데이터가 없습니다.',
|
|
noData: '데이터가 없습니다.',
|
|
create: '"{label}" 생성',
|
|
search: '검색...'
|
|
},
|
|
toast: {
|
|
close: '닫기'
|
|
},
|
|
carousel: {
|
|
prev: '이전',
|
|
next: '다음',
|
|
goto: '{slide} 페이지로 이동'
|
|
},
|
|
modal: {
|
|
close: '닫기'
|
|
},
|
|
slideover: {
|
|
close: '닫기'
|
|
},
|
|
alert: {
|
|
close: '닫기'
|
|
},
|
|
table: {
|
|
noData: '데이터가 없습니다.'
|
|
}
|
|
}
|
|
})
|