mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
36 lines
1022 B
TypeScript
36 lines
1022 B
TypeScript
//#region src/core/i18n/text/status.d.ts
|
|
declare const captionsOnText: {
|
|
readonly key: "status.captionsOn";
|
|
readonly text: 'Captions on';
|
|
};
|
|
declare const captionsOffText: {
|
|
readonly key: "status.captionsOff";
|
|
readonly text: 'Captions off';
|
|
};
|
|
declare const pausedText: {
|
|
readonly key: "status.paused";
|
|
readonly text: 'Paused';
|
|
};
|
|
declare const playingText: {
|
|
readonly key: "status.playing";
|
|
readonly text: 'Playing';
|
|
};
|
|
declare const fullscreenText: {
|
|
readonly key: "status.fullscreen";
|
|
readonly text: 'Fullscreen';
|
|
};
|
|
declare const pipText: {
|
|
readonly key: "status.pip";
|
|
readonly text: 'Picture in picture';
|
|
};
|
|
declare const exitPipText: {
|
|
readonly key: "status.exitPip";
|
|
readonly text: 'Exit picture in picture';
|
|
};
|
|
declare const seekedToText: {
|
|
readonly key: "status.seekedTo";
|
|
readonly text: 'Seeked to {time}';
|
|
};
|
|
//#endregion
|
|
export { captionsOffText, captionsOnText, exitPipText, fullscreenText, pausedText, pipText, playingText, seekedToText };
|
|
//# sourceMappingURL=status.d.ts.map
|