mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
//#region src/core/i18n/text/captions.ts
|
|
const prefix = "captions.";
|
|
const enableText = {
|
|
key: `${prefix}enable`,
|
|
text: "Enable captions"
|
|
};
|
|
const disableText = {
|
|
key: `${prefix}disable`,
|
|
text: "Disable captions"
|
|
};
|
|
//#endregion
|
|
export { disableText, enableText };
|
|
|
|
//# sourceMappingURL=captions.js.map
|