mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
//#region src/core/i18n/text/time.d.ts
|
|
declare const currentText: {
|
|
readonly key: "time.current";
|
|
readonly text: 'Current time';
|
|
};
|
|
declare const durationText: {
|
|
readonly key: "time.duration";
|
|
readonly text: 'Duration';
|
|
};
|
|
declare const remainingText: {
|
|
readonly key: "time.remaining";
|
|
readonly text: 'Remaining';
|
|
};
|
|
declare const remainingSuffixText: {
|
|
readonly key: "time.remainingSuffix";
|
|
readonly text: '{duration} remaining';
|
|
};
|
|
declare const showElapsedText: {
|
|
readonly key: "time.showElapsed";
|
|
readonly text: '{duration}. Show elapsed time.';
|
|
};
|
|
declare const showDurationText: {
|
|
readonly key: "time.showDuration";
|
|
readonly text: '{duration}. Show duration.';
|
|
};
|
|
declare const showRemainingText: {
|
|
readonly key: "time.showRemaining";
|
|
readonly text: '{duration}. Show remaining time.';
|
|
};
|
|
declare const positionText: {
|
|
readonly key: "time.position";
|
|
readonly text: '{current} of {duration}';
|
|
};
|
|
//#endregion
|
|
export { currentText, durationText, positionText, remainingSuffixText, remainingText, showDurationText, showElapsedText, showRemainingText };
|
|
//# sourceMappingURL=time.d.ts.map
|