import type { Locale } from '.';

const koKR: Locale = {
  // locales for all components
  locale: 'ko-KR',
  global: {
    placeholder: '선택해 주세요',
    emptyText: '데이터가 없습니다',
    okText: '확실합니다',
    cancelText: '취소',
  },
  input: {
    placeholder: '입력해 주세요',
  },
  calendar: {
    weekdayNames: [
      '월요일',
      '화요일',
      '수요일',
      '목요일',
      '금요일',
      '토요일',
      '일요일',
    ],
    format: 'MM/YYYY',
    today: '오늘',
    start: '시작',
    end: '끝',
    startAndEnd: '시작/종료',
  },
  rangePicker: {
    startPlaceholder: '선택이 시작되지 않았습니다',
    endPlaceholder: '선택이 완료되지 않았습니다',
  },
  guideTour: {
    gotItText: '알았어요',
    nextStepText: '다음 단계',
    prevStepText: '이전 단계',
    jumpText: '건너뛰기',
  },
  imageUpload: {
    uploadingText: '업로드 중',
    uploadfailedText: '업로드 실패',
  },
  pageContainer: {
    failed: {
      title: '페이지에 작은 문제가 발생했습니다',
      message: '나중에 해볼게요',
    },
    disconnected: {
      title: '네트워크가 좀 바쁩니다',
      message: '손가락을 움직여 문제를 해결하세요',
    },
    empty: {
      title: '여기에는 아무것도 없습니다',
      message: '다른 것을 보세요',
    },
    busy: {
      title: '전방 혼잡',
      message: '새로 고침 해보세요',
    },
  },
};

export default koKR;
