chore(i18n): add missing pt_BR locale imports for companies, mfa, snooze, webhooks and more (#13844)
## Description Add missing JSON imports and spread exports for `companies`, `contentTemplates`, `mfa`, `snooze`, `webhooks`, and `yearInReview` so these translations are properly loaded in the pt_BR locale. Without these imports, those sections of the UI were falling back to English for Brazilian Portuguese users. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] My changes generate no new warnings Co-authored-by: Sojan Jose <sojan@pepalo.com>
This commit is contained in:
@@ -8,9 +8,11 @@ import bulkActions from './bulkActions.json';
|
|||||||
import campaign from './campaign.json';
|
import campaign from './campaign.json';
|
||||||
import cannedMgmt from './cannedMgmt.json';
|
import cannedMgmt from './cannedMgmt.json';
|
||||||
import chatlist from './chatlist.json';
|
import chatlist from './chatlist.json';
|
||||||
|
import companies from './companies.json';
|
||||||
import components from './components.json';
|
import components from './components.json';
|
||||||
import contact from './contact.json';
|
import contact from './contact.json';
|
||||||
import contactFilters from './contactFilters.json';
|
import contactFilters from './contactFilters.json';
|
||||||
|
import contentTemplates from './contentTemplates.json';
|
||||||
import conversation from './conversation.json';
|
import conversation from './conversation.json';
|
||||||
import csatMgmt from './csatMgmt.json';
|
import csatMgmt from './csatMgmt.json';
|
||||||
import customRole from './customRole.json';
|
import customRole from './customRole.json';
|
||||||
@@ -26,6 +28,7 @@ import integrations from './integrations.json';
|
|||||||
import labelsMgmt from './labelsMgmt.json';
|
import labelsMgmt from './labelsMgmt.json';
|
||||||
import login from './login.json';
|
import login from './login.json';
|
||||||
import macros from './macros.json';
|
import macros from './macros.json';
|
||||||
|
import mfa from './mfa.json';
|
||||||
import report from './report.json';
|
import report from './report.json';
|
||||||
import resetPassword from './resetPassword.json';
|
import resetPassword from './resetPassword.json';
|
||||||
import search from './search.json';
|
import search from './search.json';
|
||||||
@@ -33,8 +36,11 @@ import setNewPassword from './setNewPassword.json';
|
|||||||
import settings from './settings.json';
|
import settings from './settings.json';
|
||||||
import signup from './signup.json';
|
import signup from './signup.json';
|
||||||
import sla from './sla.json';
|
import sla from './sla.json';
|
||||||
|
import snooze from './snooze.json';
|
||||||
import teamsSettings from './teamsSettings.json';
|
import teamsSettings from './teamsSettings.json';
|
||||||
|
import webhooks from './webhooks.json';
|
||||||
import whatsappTemplates from './whatsappTemplates.json';
|
import whatsappTemplates from './whatsappTemplates.json';
|
||||||
|
import yearInReview from './yearInReview.json';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
...advancedFilters,
|
...advancedFilters,
|
||||||
@@ -47,9 +53,11 @@ export default {
|
|||||||
...campaign,
|
...campaign,
|
||||||
...cannedMgmt,
|
...cannedMgmt,
|
||||||
...chatlist,
|
...chatlist,
|
||||||
|
...companies,
|
||||||
...components,
|
...components,
|
||||||
...contact,
|
...contact,
|
||||||
...contactFilters,
|
...contactFilters,
|
||||||
|
...contentTemplates,
|
||||||
...conversation,
|
...conversation,
|
||||||
...csatMgmt,
|
...csatMgmt,
|
||||||
...customRole,
|
...customRole,
|
||||||
@@ -65,6 +73,7 @@ export default {
|
|||||||
...labelsMgmt,
|
...labelsMgmt,
|
||||||
...login,
|
...login,
|
||||||
...macros,
|
...macros,
|
||||||
|
...mfa,
|
||||||
...report,
|
...report,
|
||||||
...resetPassword,
|
...resetPassword,
|
||||||
...search,
|
...search,
|
||||||
@@ -72,6 +81,9 @@ export default {
|
|||||||
...settings,
|
...settings,
|
||||||
...signup,
|
...signup,
|
||||||
...sla,
|
...sla,
|
||||||
|
...snooze,
|
||||||
...teamsSettings,
|
...teamsSettings,
|
||||||
|
...webhooks,
|
||||||
...whatsappTemplates,
|
...whatsappTemplates,
|
||||||
|
...yearInReview,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user