11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import type { BaseTranslation } from "../i18n-types";
|
|
|
|
const companion: BaseTranslation = {
|
|
select: {
|
|
title: "Select your companion",
|
|
any: "No companion",
|
|
continue: "Continue",
|
|
},
|
|
};
|
|
|
|
export default companion;
|