99eaf59509
* Ability to change the account name * Ability to set a language to the account Addresses: #667 #307 Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
37 lines
786 B
JavaScript
37 lines
786 B
JavaScript
import en from './locale/en';
|
|
|
|
export default {
|
|
...en,
|
|
APP_GLOBAL: {
|
|
TRIAL_MESSAGE: 'days trial remaining.',
|
|
TRAIL_BUTTON: 'Buy Now',
|
|
},
|
|
COMPONENTS: {
|
|
CODE: {
|
|
BUTTON_TEXT: 'Copy',
|
|
COPY_SUCCESSFUL: 'Code copied to clipboard successfully',
|
|
},
|
|
FILE_BUBBLE: {
|
|
DOWNLOAD: 'Download',
|
|
UPLOADING: 'Uploading...',
|
|
},
|
|
},
|
|
CONFIRM_EMAIL: 'Verifying...',
|
|
SETTINGS: {
|
|
INBOXES: {
|
|
NEW_INBOX: 'Add Inbox',
|
|
},
|
|
},
|
|
SIDEBAR: {
|
|
CONVERSATIONS: 'Conversations',
|
|
REPORTS: 'Reports',
|
|
SETTINGS: 'Settings',
|
|
HOME: 'Home',
|
|
AGENTS: 'Agents',
|
|
INBOXES: 'Inboxes',
|
|
CANNED_RESPONSES: 'Canned Responses',
|
|
BILLING: 'Billing',
|
|
INTEGRATIONS: 'Integrations',
|
|
ACCOUNT_SETTINGS: 'Account Settings',
|
|
},
|
|
};
|