6d9a3f45dc
* Removing old unused images Just a bit of cleanup! * Allow audio feature * Pretty * Ignored screenshot folder * Added manual test * Simplified test map Co-authored-by: Valdo Romao <v.romao@thecodingmachine.com>
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import type { Translation } from "../i18n-types";
|
|
|
|
const audio: NonNullable<Translation["audio"]> = {
|
|
manager: {
|
|
reduce: "Diminuer le volume du lecteur audio dans les conversations",
|
|
allow: "Autoriser l'audio",
|
|
},
|
|
message: "Message audio",
|
|
};
|
|
|
|
export default audio;
|