Implement typesafe-i18n
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user