mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
18 lines
369 B
JavaScript
18 lines
369 B
JavaScript
//#region src/core/i18n/text/cast.ts
|
|
const prefix = "cast.";
|
|
const startText = {
|
|
key: `${prefix}start`,
|
|
text: "Start casting"
|
|
};
|
|
const stopText = {
|
|
key: `${prefix}stop`,
|
|
text: "Stop casting"
|
|
};
|
|
const connectingText = {
|
|
key: `${prefix}connecting`,
|
|
text: "Connecting"
|
|
};
|
|
//#endregion
|
|
export { connectingText, startText, stopText };
|
|
|
|
//# sourceMappingURL=cast.js.map
|