feat: optimize Arabic localization of SMS notifications module.

This commit is contained in:
a.bouhuolia
2021-11-11 10:21:41 +02:00
parent 567b4da7e9
commit 22069f4795
2 changed files with 30 additions and 29 deletions

View File

@@ -73,21 +73,21 @@ export function useSMSIntegrationTableColumns({ onSwitchChange }) {
() => [
{
id: 'notification',
Header: intl.get('sms_messages.label_notification'),
Header: intl.get('sms_messages.column.notification'),
accessor: NotificationAccessor,
className: 'notification',
width: '180',
disableSortBy: true,
},
{
Header: intl.get('service'),
Header: intl.get('sms_messages.column.service'),
accessor: 'module_formatted',
className: 'service',
width: '80',
disableSortBy: true,
},
{
Header: intl.get('sms_messages.label_mesage'),
Header: intl.get('sms_messages.column.message'),
accessor: 'sms_message',
Cell: SMSMessageCell,
className: 'sms_message',
@@ -95,7 +95,7 @@ export function useSMSIntegrationTableColumns({ onSwitchChange }) {
disableSortBy: true,
},
{
Header: intl.get('sms_messages.label_auto'),
Header: intl.get('sms_messages.column.auto'),
accessor: 'is_notification_enabled',
Cell: SwitchFieldCell,
className: 'is_notification_enabled',