Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const planner: TranslationStrings = { | |
| 'planner.places': '地点', | |
| 'planner.bookings': '预订', | |
| 'planner.packingList': '行李清单', | |
| 'planner.documents': '文档', | |
| 'planner.dayPlan': '日程计划', | |
| 'planner.reservations': '预订', | |
| 'planner.minTwoPlaces': '至少需要 2 个有坐标的地点', | |
| 'planner.noGeoPlaces': '没有有坐标的地点', | |
| 'planner.routeCalculated': '路线已计算', | |
| 'planner.routeCalcFailed': '无法计算路线', | |
| 'planner.routeError': '路线计算错误', | |
| 'planner.icsExportFailed': 'ICS 导出失败', | |
| 'planner.routeOptimized': '路线已优化', | |
| 'planner.reservationUpdated': '预订已更新', | |
| 'planner.reservationAdded': '预订已添加', | |
| 'planner.confirmDeleteReservation': '删除预订?', | |
| 'planner.reservationDeleted': '预订已删除', | |
| 'planner.days': '天', | |
| 'planner.allPlaces': '所有地点', | |
| 'planner.totalPlaces': '共 {n} 个地点', | |
| 'planner.noDaysPlanned': '尚未规划天数', | |
| 'planner.editTrip': '编辑旅行 →', | |
| 'planner.placeOne': '1 个地点', | |
| 'planner.placeN': '{n} 个地点', | |
| 'planner.addNote': '添加备注', | |
| 'planner.noEntries': '当天无条目', | |
| 'planner.addPlace': '添加地点/活动', | |
| 'planner.addPlaceShort': '+ 添加地点/活动', | |
| 'planner.resPending': '预订待确认 · ', | |
| 'planner.resConfirmed': '预订已确认 · ', | |
| 'planner.notePlaceholder': '备注…', | |
| 'planner.noteTimePlaceholder': '时间(可选)', | |
| 'planner.noteExamplePlaceholder': | |
| '如:14:30 从中央车站乘 S3,7 号码头渡轮,午餐休息…', | |
| 'planner.totalCost': '总费用', | |
| 'planner.searchPlaces': '搜索地点…', | |
| 'planner.allCategories': '所有分类', | |
| 'planner.noPlacesFound': '未找到地点', | |
| 'planner.addFirstPlace': '添加第一个地点', | |
| 'planner.noReservations': '暂无预订', | |
| 'planner.addFirstReservation': '添加第一个预订', | |
| 'planner.new': '新建', | |
| 'planner.addToDay': '+ 天', | |
| 'planner.calculating': '计算中…', | |
| 'planner.route': '路线', | |
| 'planner.optimize': '优化', | |
| 'planner.openGoogleMaps': '在 Google Maps 中打开', | |
| 'planner.selectDayHint': '从左侧列表选择一天以查看日程计划', | |
| 'planner.noPlacesForDay': '当天暂无地点', | |
| 'planner.addPlacesLink': '添加地点 →', | |
| 'planner.minTotal': '分钟 合计', | |
| 'planner.noReservation': '无预订', | |
| 'planner.removeFromDay': '从当天移除', | |
| 'planner.addToThisDay': '添加到当天', | |
| 'planner.overview': '概览', | |
| 'planner.noDays': '暂无天数', | |
| 'planner.editTripToAddDays': '编辑旅行以添加天数', | |
| 'planner.dayCount': '{n} 天', | |
| 'planner.clickToUnlock': '点击解锁', | |
| 'planner.keepPosition': '路线优化时保持位置', | |
| 'planner.dayDetails': '日程详情', | |
| 'planner.dayN': '第 {n} 天', | |
| }; | |
| export default planner; | |