12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import type { Translation } from "../i18n-types";
|
|
|
|
const companion: NonNullable<Translation["companion"]> = {
|
|
select: {
|
|
title: "选择你的伙伴",
|
|
any: "没有伙伴",
|
|
continue: "继续",
|
|
},
|
|
};
|
|
|
|
export default companion;
|