augmenttoolkit / shared /src /i18n /zh /notif.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
cb43fbd verified
Raw
History Blame Contribute Delete
2.07 kB
import type { TranslationStrings } from '../types';
const notif: TranslationStrings = {
'notif.test.title': '[测试] 通知',
'notif.test.simple.text': '这是一条简单的测试通知。',
'notif.test.boolean.text': '您是否接受此测试通知?',
'notif.test.navigate.text': '点击下方前往控制台。',
'notif.trip_invite.title': '旅行邀请',
'notif.trip_invite.text': '{actor} 邀请您加入 {trip}',
'notif.booking_change.title': '预订已更新',
'notif.booking_change.text': '{actor} 更新了 {trip} 中的预订',
'notif.trip_reminder.title': '旅行提醒',
'notif.trip_reminder.text': '您的旅行 {trip} 即将开始!',
'notif.todo_due.title': '待办事项即将到期',
'notif.todo_due.text': '{trip} 中的 {todo} 将于 {due} 到期',
'notif.vacay_invite.title': 'Vacay 融合邀请',
'notif.vacay_invite.text': '{actor} 邀请您合并假期计划',
'notif.photos_shared.title': '照片已分享',
'notif.photos_shared.text': '{actor} 在 {trip} 中分享了 {count} 张照片',
'notif.collab_message.title': '新消息',
'notif.collab_message.text': '{actor} 在 {trip} 中发送了消息',
'notif.packing_tagged.title': '行李分配',
'notif.packing_tagged.text': '{actor} 将您分配到 {trip} 中的 {category}',
'notif.version_available.title': '新版本可用',
'notif.version_available.text': 'TREK {version} 现已可用',
'notif.action.view_trip': '查看旅行',
'notif.action.view_collab': '查看消息',
'notif.action.view_packing': '查看行李',
'notif.action.view_photos': '查看照片',
'notif.action.view_vacay': '查看 Vacay',
'notif.action.view_admin': '前往管理',
'notif.action.view': '查看',
'notif.action.accept': '接受',
'notif.action.decline': '拒绝',
'notif.generic.title': '通知',
'notif.generic.text': '您有一条新通知',
'notif.dev.unknown_event.title': '[DEV] 未知事件',
'notif.dev.unknown_event.text':
'事件类型 "{event}" 未在 EVENT_NOTIFICATION_CONFIG 中注册',
};
export default notif;