20 lines
403 B
TypeScript
20 lines
403 B
TypeScript
import z from "zod";
|
|
|
|
export const Activities = z.enum([
|
|
"playing",
|
|
"streaming",
|
|
"listening",
|
|
"watching",
|
|
"competing",
|
|
"invisible",
|
|
]);
|
|
|
|
export const ActivityLocales: Record<z.infer<typeof Activities>, string> = {
|
|
playing: "spielt sudoku",
|
|
streaming: "streamt sudoku",
|
|
listening: "hört sudoku",
|
|
watching: "schaut sudoku",
|
|
competing: "wettstreitet sudoku",
|
|
invisible: "versteckt sudoku",
|
|
};
|