23 lines
883 B
TypeScript
23 lines
883 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const menuUiHandler: SimpleTranslationEntries = {
|
|
"GAME_SETTINGS": '游戏设置',
|
|
"ACHIEVEMENTS": "成就",
|
|
"STATS": "统计数据",
|
|
"VOUCHERS": "代币券",
|
|
"EGG_LIST": "精灵蛋",
|
|
"EGG_GACHA": "扭蛋机",
|
|
"MANAGE_DATA": "数据管理",
|
|
"COMMUNITY": "社区",
|
|
"RETURN_TO_TITLE": "返回标题",
|
|
"LOG_OUT": "退出登录",
|
|
"slot": "位置 {{slotNumber}}",
|
|
"importSession": "导入存档数据",
|
|
"importSlotSelect": "选择导入存档位置。",
|
|
"exportSession": "导出存档数据",
|
|
"exportSlotSelect": "选择导出存档。",
|
|
"importData": "导入用户数据",
|
|
"exportData": "导出用户数据",
|
|
"cancel": "取消",
|
|
"losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?"
|
|
} as const; |