Implement typesafe-i18n
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import type { BaseTranslation } from "../i18n-types";
|
||||
|
||||
const warning: BaseTranslation = {
|
||||
title: "Warning!",
|
||||
content:
|
||||
'This world is close to its limit!. You can upgrade its capacity <a href={upgradeLink} target="_blank">here</a>',
|
||||
limit: "This world is close to its limit!",
|
||||
accessDenied: {
|
||||
camera: "Camera access denied. Click here and check your browser permissions.",
|
||||
screenSharing: "Screen sharing denied. Click here and check your browser permissions.",
|
||||
},
|
||||
importantMessage: "Important message",
|
||||
connectionLost: "Connection lost. Reconnecting...",
|
||||
};
|
||||
|
||||
export default warning;
|
||||
Reference in New Issue
Block a user