mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-09-24 16:04:36 +08:00
@@ -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],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user