mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31:46 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const trip: TranslationStrings = {
|
|
'trip.tabs.plan': '계획',
|
|
'trip.tabs.transports': '교통',
|
|
'trip.tabs.reservations': '예약',
|
|
'trip.tabs.reservationsShort': '예약',
|
|
'trip.tabs.packing': '짐 목록',
|
|
'trip.tabs.packingShort': '짐',
|
|
'trip.tabs.lists': '목록',
|
|
'trip.tabs.listsShort': '목록',
|
|
'trip.tabs.budget': '예산',
|
|
'trip.tabs.files': '파일',
|
|
'trip.loading': '여행 불러오는 중...',
|
|
'trip.loadingPhotos': '장소 사진 불러오는 중...',
|
|
'trip.mobilePlan': '계획',
|
|
'trip.mobilePlaces': '장소',
|
|
'trip.toast.placeUpdated': '장소가 업데이트되었습니다',
|
|
'trip.toast.placeAdded': '장소가 추가되었습니다',
|
|
'trip.toast.placeDeleted': '장소가 삭제되었습니다',
|
|
'trip.toast.selectDay': '먼저 날을 선택하세요',
|
|
'trip.toast.assignedToDay': '장소가 날에 배정되었습니다',
|
|
'trip.toast.reorderError': '순서 변경 실패',
|
|
'trip.toast.reservationUpdated': '예약이 업데이트되었습니다',
|
|
'trip.toast.reservationAdded': '예약이 추가되었습니다',
|
|
'trip.toast.deleted': '삭제됨',
|
|
'trip.confirm.deletePlace': '이 장소를 삭제할까요?',
|
|
'trip.confirm.deletePlaces': '{count}개 장소를 삭제할까요?',
|
|
'trip.toast.placesDeleted': '{count}개 장소가 삭제되었습니다',
|
|
};
|
|
export default trip;
|