14 lines
570 B
TypeScript
14 lines
570 B
TypeScript
import type { BaseTranslation } from "../i18n-types";
|
|
|
|
const login: BaseTranslation = {
|
|
input: {
|
|
name: {
|
|
placeholder: "Enter your name",
|
|
empty: "The name is empty",
|
|
},
|
|
},
|
|
terms: 'By continuing, you are agreeing our <a href="https://workadventu.re/terms-of-use" target="_blank">terms of use</a>, <a href="https://workadventu.re/privacy-policy" target="_blank">privacy policy</a> and <a href="https://workadventu.re/cookie-policy" target="_blank">cookie policy</a>.',
|
|
continue: "Continue",
|
|
};
|
|
|
|
export default login;
|