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