Spaces:
Sleeping
Sleeping
File size: 610 Bytes
cb43fbd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import type { TranslationStrings } from '../types';
const trips: TranslationStrings = {
'trips.memberRemoved': '{username} 已移除',
'trips.memberRemoveError': '移除失败',
'trips.memberAdded': '{username} 已添加',
'trips.memberAddError': '添加失败',
'trips.reminder': '提醒',
'trips.reminderNone': '无',
'trips.reminderDay': '天',
'trips.reminderDays': '天',
'trips.reminderCustom': '自定义',
'trips.reminderDaysBefore': '天前提醒',
'trips.reminderDisabledHint':
'旅行提醒已禁用。请在管理 > 设置 > 通知中启用。',
};
export default trips;
|