Spaces:
Sleeping
Sleeping
File size: 3,028 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import type { TranslationStrings } from '../types';
const dayplan: TranslationStrings = {
'dayplan.icsTooltip': 'μΊλ¦°λ λ΄λ³΄λ΄κΈ° (ICS)',
'dayplan.emptyDay': 'μ΄ λ μ κ³νλ μ₯μκ° μμ΅λλ€',
'dayplan.cannotReorderTransport':
'κ³ μ λ μκ°μ΄ μλ μμ½μ μμλ₯Ό λ³κ²½ν μ μμ΅λλ€',
'dayplan.confirmRemoveTimeTitle': 'μκ°μ μ κ±°ν κΉμ?',
'dayplan.confirmRemoveTimeBody':
'μ΄ μ₯μμ κ³ μ λ μκ° ({time})μ΄ μμ΅λλ€. μ΄λνλ©΄ μκ°μ΄ μ κ±°λκ³ μμ μ λ ¬μ΄ νμ©λ©λλ€.',
'dayplan.confirmRemoveTimeAction': 'μκ° μ κ±° λ° μ΄λ',
'dayplan.confirmDeleteNoteTitle': 'λ©λͺ¨λ₯Ό μμ ν κΉμ?',
'dayplan.confirmDeleteNoteBody': 'μ΄ λ©λͺ¨κ° μꡬμ μΌλ‘ μμ λ©λλ€.',
'dayplan.cannotDropOnTimed': 'μκ°μ΄ κ³ μ λ νλͺ© μ¬μ΄μ λ°°μΉν μ μμ΅λλ€',
'dayplan.cannotBreakChronology':
'μ΄ μμ
μ μκ° κ³ μ νλͺ©κ³Ό μμ½μ μκ° μμλ₯Ό κΉ¨λ¨λ¦½λλ€',
'dayplan.addNote': 'λ©λͺ¨ μΆκ°',
'dayplan.expandAll': 'λͺ¨λ λ νΌμΉκΈ°',
'dayplan.collapseAll': 'λͺ¨λ λ μ κΈ°',
'dayplan.editNote': 'λ©λͺ¨ νΈμ§',
'dayplan.noteAdd': 'λ©λͺ¨ μΆκ°',
'dayplan.noteEdit': 'λ©λͺ¨ νΈμ§',
'dayplan.noteTitle': 'λ©λͺ¨',
'dayplan.noteSubtitle': 'μΌλ³ λ©λͺ¨',
'dayplan.totalCost': 'μ΄ λΉμ©',
'dayplan.days': 'μΌ',
'dayplan.dayN': '{n}μΌμ°¨',
'dayplan.calculating': 'κ³μ° μ€...',
'dayplan.route': 'κ²½λ‘',
'dayplan.optimize': 'μ΅μ ν',
'dayplan.optimized': 'κ²½λ‘κ° μ΅μ νλμμ΅λλ€',
'dayplan.routeError': 'κ²½λ‘ κ³μ° μ€ν¨',
'dayplan.toast.needTwoPlaces':
'κ²½λ‘ μ΅μ νμλ μ΅μ λ κ°μ μ₯μκ° νμν©λλ€',
'dayplan.toast.routeOptimized': 'κ²½λ‘κ° μ΅μ νλμμ΅λλ€',
'dayplan.toast.routeOptimizedFromHotel': 'μμλ₯Ό κΈ°μ€μΌλ‘ κ²½λ‘κ° μ΅μ νλμμ΅λλ€',
'dayplan.toast.noGeoPlaces': 'κ²½λ‘ κ³μ°μ μν μ’νκ° μλ μ₯μκ° μμ΅λλ€',
'dayplan.confirmed': 'νμ λ¨',
'dayplan.pendingRes': 'λκΈ° μ€',
'dayplan.pdf': 'PDF',
'dayplan.pdfTooltip': 'μΌλ³ κ³νμ PDFλ‘ λ΄λ³΄λ΄κΈ°',
'dayplan.pdfError': 'PDF λ΄λ³΄λ΄κΈ° μ€ν¨',
'dayplan.mobile.addPlace': 'μ₯μ μΆκ°',
'dayplan.mobile.searchPlaces': 'μ₯μ κ²μ...',
'dayplan.mobile.allAssigned': 'λͺ¨λ μ₯μκ° λ°°μ λμμ΅λλ€',
'dayplan.mobile.noMatch': 'μΌμΉ μμ',
'dayplan.mobile.createNew': 'μ μ₯μ λ§λ€κΈ°',
'dayplan.reorderDays': 'λ μ§ μμ λ³κ²½',
'dayplan.reorderTitle': 'λ μ§ μμ λ³κ²½',
'dayplan.reorderHint': 'ν΄λΉ λ μ§μ μ₯μ, λ©λͺ¨, μμ½μ΄ ν¨κ» μ΄λν©λλ€.',
'dayplan.addDay': 'λ μ§ μΆκ°',
'dayplan.moveUp': 'μλ‘ μ΄λ',
'dayplan.moveDown': 'μλλ‘ μ΄λ',
'dayplan.reorderUndo': 'λ μ§ μμ λ³κ²½',
'dayplan.reorderError': 'λ μ§ μμλ₯Ό λ³κ²½νμ§ λͺ»νμ΅λλ€',
'dayplan.addDayError': 'λ μ§λ₯Ό μΆκ°νμ§ λͺ»νμ΅λλ€',
};
export default dayplan;
|