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
303 B
TypeScript
12 lines
303 B
TypeScript
import type { Translation } from "../i18n-types";
|
|
|
|
const audio: NonNullable<Translation["audio"]> = {
|
|
manager: {
|
|
reduce: "Verringern Sie die Lautstärke des Audioplayers während des Sprechens",
|
|
allow: "Ton zulassen",
|
|
},
|
|
message: "Sprachnachricht",
|
|
};
|
|
|
|
export default audio;
|