wisemapping-frontend/packages/mindplot/src/components/lang/Bundle.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

/* eslint-disable camelcase */
2021-12-18 06:29:28 +01:00
/*
2021-12-25 23:39:34 +01:00
* Copyright [2021] [wisemapping]
2021-12-18 06:29:28 +01:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import CA from './ca';
import ES from './es';
import EN from './en';
import DE from './de';
import FR from './fr';
import PT_BR from './pt_BR';
import ZH_CN from './zh_CN';
import ZH_TW from './zh_TW';
const Bundle = {
ca: CA,
es: ES,
en: EN,
de: DE,
fe: FR,
pt_BR: PT_BR,
zh_CN: ZH_CN,
zh_TW: ZH_TW,
};
export default Bundle;