mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
22 lines
452 B
JavaScript
22 lines
452 B
JavaScript
//#region src/core/i18n/text/volume.ts
|
|
const prefix = "volume.";
|
|
const mutedValueText = {
|
|
key: `${prefix}mutedValue`,
|
|
text: "{percent}, muted"
|
|
};
|
|
const mutedText = {
|
|
key: `${prefix}muted`,
|
|
text: "Muted"
|
|
};
|
|
const labelText = {
|
|
key: `${prefix}label`,
|
|
text: "Volume"
|
|
};
|
|
const valueText = {
|
|
key: `${prefix}value`,
|
|
text: "Volume {value}"
|
|
};
|
|
//#endregion
|
|
export { labelText, mutedText, mutedValueText, valueText };
|
|
|
|
//# sourceMappingURL=volume.js.map
|