Fix missing translations, enable dutch language (#878)

* Fix missing translations, enable dutch language
This commit is contained in:
Pranav Raj S
2020-05-19 19:05:10 +05:30
committed by GitHub
parent 3f5ce2ddbf
commit 8af200ad20
16 changed files with 216 additions and 107 deletions

View File

@@ -1,12 +1,13 @@
import ca from './locale/ca';
import ro from './locale/ro';
import fr from './locale/fr';
import pt_BR from './locale/pt_BR';
import de from './locale/de';
import el from './locale/el';
import en from './locale/en';
import fr from './locale/fr';
import nl from './locale/nl';
import ml from './locale/ml';
import pt from './locale/pt';
import pt_BR from './locale/pt_BR';
import ro from './locale/ro';
export default {
ca,
@@ -14,6 +15,7 @@ export default {
el,
en,
fr,
nl,
ml,
pt_BR,
pt,

View File

@@ -0,0 +1,34 @@
/* eslint-disable */
import { default as _agentMgmt } from './agentMgmt.json';
import { default as _billing } from './billing.json';
import { default as _cannedMgmt } from './cannedMgmt.json';
import { default as _chatlist } from './chatlist.json';
import { default as _contact } from './contact.json';
import { default as _conversation } from './conversation.json';
import { default as _inboxMgmt } from './inboxMgmt.json';
import { default as _login } from './login.json';
import { default as _report } from './report.json';
import { default as _resetPassword } from './resetPassword.json';
import { default as _setNewPassword } from './setNewPassword.json';
import { default as _settings } from './settings.json';
import { default as _signup } from './signup.json';
import { default as _integrations } from './integrations.json';
import { default as _generalSettings } from './generalSettings.json';
export default {
..._agentMgmt,
..._billing,
..._cannedMgmt,
..._chatlist,
..._contact,
..._conversation,
..._inboxMgmt,
..._login,
..._report,
..._resetPassword,
..._setNewPassword,
..._settings,
..._signup,
..._integrations,
..._generalSettings,
};