wisemapping-frontend/packages/mindplot/src/components/lang/Bundle.js
Matias Arriola b5fd708971 Merged in feature/mindplot-lint (pull request #11)
mindplot lint

* fix eqeqeq

* fix max-len

* fix max-len, guard-for-in

* fix import/no-named-as-default-member

* misc fixes

* fix no-shadow

* fix no-param-reassign

* fix issues introduced with "fix no-param-reassign"

* Merge 'origin/develop' into feature/mindplot-lint

* lint and docs fixes after merge


Approved-by: Paulo Veiga
2021-12-20 20:54:31 +00:00

40 lines
1.1 KiB
JavaScript

/* eslint-disable camelcase */
/*
* Copyright [2015] [wisemapping]
*
* 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;