feat: restructure i18n into a dir

This commit is contained in:
Mohamed Marrouchi
2024-09-22 08:55:15 +01:00
parent 7d5962d84f
commit 38950a0287
28 changed files with 69 additions and 64 deletions

View File

@@ -19,7 +19,7 @@ import { AttachmentService } from '@/attachment/services/attachment.service';
import { ContentRepository } from '@/cms/repositories/content.repository';
import { ContentModel } from '@/cms/schemas/content.schema';
import { ContentService } from '@/cms/services/content.service';
import { ExtendedI18nService } from '@/extended-i18n.service';
import { I18nService } from '@/i18n/services/i18n.service';
import { LoggerService } from '@/logger/logger.service';
import { PluginService } from '@/plugins/plugins.service';
import { SettingService } from '@/setting/services/setting.service';
@@ -108,7 +108,7 @@ describe('BlockController', () => {
PluginService,
LoggerService,
{
provide: ExtendedI18nService,
provide: I18nService,
useValue: {
t: jest.fn().mockImplementation((t) => t),
},