Fix/cb-4141/localization (#2071) (#2075)

This commit is contained in:
Alexey
2023-10-20 19:51:04 +03:00
committed by GitHub
parent 4645a8e3d1
commit 518410c2e8
6 changed files with 53 additions and 1 deletions
@@ -0,0 +1,35 @@
/*
* CloudBeaver - Cloud Database Manager
* Copyright (C) 2020-2023 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
import { Bootstrap, injectable } from '@cloudbeaver/core-di';
import { LocalizationService } from '@cloudbeaver/core-localization';
@injectable()
export class LocaleService extends Bootstrap {
constructor(private readonly localizationService: LocalizationService) {
super();
}
register(): void | Promise<void> {
this.localizationService.addProvider(this.provider.bind(this));
}
load(): void | Promise<void> {}
private async provider(locale: string) {
switch (locale) {
case 'ru':
return (await import('./locales/ru')).default;
case 'it':
return (await import('./locales/it')).default;
case 'zh':
return (await import('./locales/zh')).default;
default:
return (await import('./locales/en')).default;
}
}
}
@@ -0,0 +1,4 @@
export default [
['product_name', 'CE'],
['product_full_name', 'CloudBeaver Community'],
];
@@ -0,0 +1,4 @@
export default [
['product_name', 'CE'],
['product_full_name', 'CloudBeaver Community'],
];
@@ -0,0 +1,4 @@
export default [
['product_name', 'CE'],
['product_full_name', 'CloudBeaver Community'],
];
@@ -0,0 +1,4 @@
export default [
['product_name', 'CE'],
['product_full_name', 'CloudBeaver Community'],
];
@@ -7,6 +7,7 @@
*/
import type { PluginManifest } from '@cloudbeaver/core-di';
import { LocaleService } from './LocaleService';
import { ProductBootstrap } from './ProductBootstrap';
import { ProductConfigService } from './ProductConfigService';
@@ -15,5 +16,5 @@ export const defaultProductManifest: PluginManifest = {
name: 'Default Product',
},
providers: [ProductBootstrap, ProductConfigService],
providers: [ProductBootstrap, ProductConfigService, LocaleService],
};