Spaces:
Sleeping
Sleeping
File size: 1,406 Bytes
48f8f0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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': "Costs",
'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;
|