mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[6.7] Introduce Chinese translations (#29616)
This commit is contained in:
parent
97b163ec00
commit
83c63ce944
3 changed files with 8482 additions and 0 deletions
|
@ -33,6 +33,7 @@ import { taskManager } from './plugins/task_manager';
|
|||
import { rollup } from './plugins/rollup';
|
||||
import { remoteClusters } from './plugins/remote_clusters';
|
||||
import { crossClusterReplication } from './plugins/cross_cluster_replication';
|
||||
import { translations } from './plugins/translations';
|
||||
import { upgradeAssistant } from './plugins/upgrade_assistant';
|
||||
import { uptime } from './plugins/uptime';
|
||||
import { ossTelemetry } from './plugins/oss_telemetry';
|
||||
|
@ -68,6 +69,7 @@ module.exports = function (kibana) {
|
|||
rollup(kibana),
|
||||
remoteClusters(kibana),
|
||||
crossClusterReplication(kibana),
|
||||
translations(kibana),
|
||||
upgradeAssistant(kibana),
|
||||
uptime(kibana),
|
||||
ossTelemetry(kibana),
|
||||
|
|
15
x-pack/plugins/translations/index.ts
Normal file
15
x-pack/plugins/translations/index.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
|
||||
export function translations(kibana: any) {
|
||||
return new kibana.Plugin({
|
||||
id: 'translations',
|
||||
|
||||
init() {
|
||||
// There is nothing to initialize.
|
||||
},
|
||||
});
|
||||
}
|
8465
x-pack/plugins/translations/translations/zh-CN.json
Normal file
8465
x-pack/plugins/translations/translations/zh-CN.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue