mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
26 lines
492 B
JavaScript
26 lines
492 B
JavaScript
//#region src/core/i18n/text/buttons.ts
|
|
const prefix = "buttons.";
|
|
const playText = {
|
|
key: `${prefix}play`,
|
|
text: "Play"
|
|
};
|
|
const pauseText = {
|
|
key: `${prefix}pause`,
|
|
text: "Pause"
|
|
};
|
|
const replayText = {
|
|
key: `${prefix}replay`,
|
|
text: "Replay"
|
|
};
|
|
const muteText = {
|
|
key: `${prefix}mute`,
|
|
text: "Mute"
|
|
};
|
|
const unmuteText = {
|
|
key: `${prefix}unmute`,
|
|
text: "Unmute"
|
|
};
|
|
//#endregion
|
|
export { muteText, pauseText, playText, replayText, unmuteText };
|
|
|
|
//# sourceMappingURL=buttons.js.map
|