10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import type { BaseTranslation } from "../i18n-types";
|
|
|
|
const audio: BaseTranslation = {
|
|
manager: {
|
|
reduce: "reduce in conversations",
|
|
},
|
|
message: "Audio message",
|
|
};
|
|
|
|
export default audio;
|