12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import type { Translation } from "../i18n-types";
|
|
|
|
const audio: NonNullable<Translation["audio"]> = {
|
|
manager: {
|
|
reduce: "说话时降低音乐音量",
|
|
allow: "播放声音",
|
|
},
|
|
message: "音频消息",
|
|
};
|
|
|
|
export default audio;
|