mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
Added a command to sync files in the locale/*/ folder. Run `pnpm sync:i18n` would copy index.js in `dashboard/locale/en` to every other folder `dashboard/locale/*/` --------- Co-authored-by: Pranav <pranavrajs@gmail.com>
78 lines
2.2 KiB
JavaScript
78 lines
2.2 KiB
JavaScript
import advancedFilters from './advancedFilters.json';
|
|
import agentBots from './agentBots.json';
|
|
import agentMgmt from './agentMgmt.json';
|
|
import attributesMgmt from './attributesMgmt.json';
|
|
import auditLogs from './auditLogs.json';
|
|
import automation from './automation.json';
|
|
import bulkActions from './bulkActions.json';
|
|
import campaign from './campaign.json';
|
|
import cannedMgmt from './cannedMgmt.json';
|
|
import chatlist from './chatlist.json';
|
|
import components from './components.json';
|
|
import contact from './contact.json';
|
|
import contactFilters from './contactFilters.json';
|
|
import conversation from './conversation.json';
|
|
import csatMgmt from './csatMgmt.json';
|
|
import customRole from './customRole.json';
|
|
import datePicker from './datePicker.json';
|
|
import emoji from './emoji.json';
|
|
import general from './general.json';
|
|
import generalSettings from './generalSettings.json';
|
|
import helpCenter from './helpCenter.json';
|
|
import inbox from './inbox.json';
|
|
import inboxMgmt from './inboxMgmt.json';
|
|
import integrationApps from './integrationApps.json';
|
|
import integrations from './integrations.json';
|
|
import labelsMgmt from './labelsMgmt.json';
|
|
import login from './login.json';
|
|
import macros from './macros.json';
|
|
import report from './report.json';
|
|
import resetPassword from './resetPassword.json';
|
|
import search from './search.json';
|
|
import setNewPassword from './setNewPassword.json';
|
|
import settings from './settings.json';
|
|
import signup from './signup.json';
|
|
import sla from './sla.json';
|
|
import teamsSettings from './teamsSettings.json';
|
|
import whatsappTemplates from './whatsappTemplates.json';
|
|
|
|
export default {
|
|
...advancedFilters,
|
|
...agentBots,
|
|
...agentMgmt,
|
|
...attributesMgmt,
|
|
...auditLogs,
|
|
...automation,
|
|
...bulkActions,
|
|
...campaign,
|
|
...cannedMgmt,
|
|
...chatlist,
|
|
...components,
|
|
...contact,
|
|
...contactFilters,
|
|
...conversation,
|
|
...csatMgmt,
|
|
...customRole,
|
|
...datePicker,
|
|
...emoji,
|
|
...general,
|
|
...generalSettings,
|
|
...helpCenter,
|
|
...inbox,
|
|
...inboxMgmt,
|
|
...integrationApps,
|
|
...integrations,
|
|
...labelsMgmt,
|
|
...login,
|
|
...macros,
|
|
...report,
|
|
...resetPassword,
|
|
...search,
|
|
...setNewPassword,
|
|
...settings,
|
|
...signup,
|
|
...sla,
|
|
...teamsSettings,
|
|
...whatsappTemplates,
|
|
};
|