add greeting

add locales
This commit is contained in:
mo
2026-02-22 00:09:27 +01:00
parent 453577f1b2
commit bc0a6f2526
25 changed files with 183 additions and 449 deletions

View File

@@ -1,7 +1,7 @@
import { VoiceChannels } from "@avocadi/bot-core/entities/channels/channels.schema";
import { DynamicVoiceChannelsService } from "@avocadi/bot-core/features/dynamic-voice-channels/dynamic-voice-channels.service";
import { config } from "config";
import { voiceChannelsService } from "entitites/channels/voice/voice-channels.service";
import { voiceChannelsService } from "entities/channels/voice/voice-channels.service";
export const dynamicVoiceChannelService = new DynamicVoiceChannelsService(
voiceChannelsService,

View File

@@ -0,0 +1,9 @@
import { GreetingService } from "@avocadi/bot-core/features/greeting/greeting.service";
import { i18nService } from "@avocadi/bot-core/lib/i18n";
import { messagesService } from "entities/messages/messages.service";
export const greetingService = new GreetingService(
messagesService,
i18nService,
"de",
);

View File

@@ -1,4 +0,0 @@
import { GreetingService } from "@avocadi/bot-core/features/greeting/greeting.service";
import { messagesService } from "entitites/messages/messages.service";
export const greetingsService = new GreetingService(messagesService);

View File

@@ -1,6 +1,6 @@
import { WaterMeService } from "@avocadi/bot-core/features/water-me/water-me.service";
import { i18nService } from "@avocadi/bot-core/lib/i18n";
import { messagesService } from "entitites/messages/messages.service";
import { messagesService } from "entities/messages/messages.service";
export const waterMeService = new WaterMeService(
messagesService,