2019-08-14 09:48:44 +00:00
|
|
|
{
|
|
|
|
"REPORT": {
|
2022-04-25 14:34:41 +00:00
|
|
|
"HEADER": "Conversations",
|
2019-08-14 09:48:44 +00:00
|
|
|
"LOADING_CHART": "Loading chart data...",
|
|
|
|
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
|
2020-12-15 18:05:03 +00:00
|
|
|
"DOWNLOAD_AGENT_REPORTS": "Download agent reports",
|
2020-09-27 13:26:52 +00:00
|
|
|
"METRICS": {
|
|
|
|
"CONVERSATIONS": {
|
|
|
|
"NAME": "Conversations",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"INCOMING_MESSAGES": {
|
|
|
|
"NAME": "Incoming Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"OUTGOING_MESSAGES": {
|
|
|
|
"NAME": "Outgoing Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"FIRST_RESPONSE_TIME": {
|
2022-03-28 07:38:23 +00:00
|
|
|
"NAME": "First Response Time",
|
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
2020-09-27 13:26:52 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_TIME": {
|
|
|
|
"NAME": "Resolution Time",
|
2022-03-28 07:38:23 +00:00
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
2020-09-27 13:26:52 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_COUNT": {
|
|
|
|
"NAME": "Resolution Count",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
}
|
|
|
|
},
|
2019-08-14 09:48:44 +00:00
|
|
|
"DATE_RANGE": [
|
2020-09-27 13:26:52 +00:00
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Last 7 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "Last 30 days"
|
2021-05-16 11:11:30 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Last 3 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "Last 6 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
|
|
|
"name": "Last year"
|
2021-07-13 10:41:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Custom date range"
|
2020-09-27 13:26:52 +00:00
|
|
|
}
|
2021-07-13 10:41:03 +00:00
|
|
|
],
|
|
|
|
"CUSTOM_DATE_RANGE": {
|
|
|
|
"CONFIRM": "Apply",
|
|
|
|
"PLACEHOLDER": "Select date range"
|
2022-02-15 11:40:49 +00:00
|
|
|
},
|
|
|
|
"GROUP_BY_FILTER_DROPDOWN_LABEL": "Group By",
|
|
|
|
"GROUP_BY_DAY_OPTIONS": [{ "id": 1, "groupBy": "Day" }],
|
|
|
|
"GROUP_BY_WEEK_OPTIONS": [
|
|
|
|
{ "id": 1, "groupBy": "Day" },
|
|
|
|
{ "id": 2, "groupBy": "Week" }
|
|
|
|
],
|
|
|
|
"GROUP_BY_MONTH_OPTIONS": [
|
|
|
|
{ "id": 1, "groupBy": "Day" },
|
|
|
|
{ "id": 2, "groupBy": "Week" },
|
|
|
|
{ "id": 3, "groupBy": "Month" }
|
|
|
|
],
|
|
|
|
"GROUP_BY_YEAR_OPTIONS": [
|
|
|
|
{ "id": 1, "groupBy": "Day" },
|
|
|
|
{ "id": 2, "groupBy": "Week" },
|
|
|
|
{ "id": 3, "groupBy": "Month" },
|
|
|
|
{ "id": 4, "groupBy": "Year" }
|
2022-04-08 07:18:18 +00:00
|
|
|
],
|
|
|
|
"BUSINESS_HOURS": "Business Hours"
|
2021-07-14 04:50:06 +00:00
|
|
|
},
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
"AGENT_REPORTS": {
|
|
|
|
"HEADER": "Agents Overview",
|
|
|
|
"LOADING_CHART": "Loading chart data...",
|
|
|
|
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
|
|
|
|
"DOWNLOAD_AGENT_REPORTS": "Download agent reports",
|
|
|
|
"FILTER_DROPDOWN_LABEL": "Select Agent",
|
|
|
|
"METRICS": {
|
|
|
|
"CONVERSATIONS": {
|
|
|
|
"NAME": "Conversations",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"INCOMING_MESSAGES": {
|
|
|
|
"NAME": "Incoming Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"OUTGOING_MESSAGES": {
|
|
|
|
"NAME": "Outgoing Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"FIRST_RESPONSE_TIME": {
|
2022-03-28 07:38:23 +00:00
|
|
|
"NAME": "First Response Time",
|
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_TIME": {
|
|
|
|
"NAME": "Resolution Time",
|
2022-03-28 07:38:23 +00:00
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_COUNT": {
|
|
|
|
"NAME": "Resolution Count",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"DATE_RANGE": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Last 7 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "Last 30 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Last 3 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "Last 6 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
|
|
|
"name": "Last year"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Custom date range"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"CUSTOM_DATE_RANGE": {
|
|
|
|
"CONFIRM": "Apply",
|
|
|
|
"PLACEHOLDER": "Select date range"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"LABEL_REPORTS": {
|
|
|
|
"HEADER": "Labels Overview",
|
|
|
|
"LOADING_CHART": "Loading chart data...",
|
|
|
|
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
|
|
|
|
"DOWNLOAD_LABEL_REPORTS": "Download label reports",
|
|
|
|
"FILTER_DROPDOWN_LABEL": "Select Label",
|
|
|
|
"METRICS": {
|
|
|
|
"CONVERSATIONS": {
|
|
|
|
"NAME": "Conversations",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"INCOMING_MESSAGES": {
|
|
|
|
"NAME": "Incoming Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"OUTGOING_MESSAGES": {
|
|
|
|
"NAME": "Outgoing Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"FIRST_RESPONSE_TIME": {
|
2022-03-28 07:38:23 +00:00
|
|
|
"NAME": "First Response Time",
|
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_TIME": {
|
|
|
|
"NAME": "Resolution Time",
|
2022-03-28 07:38:23 +00:00
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_COUNT": {
|
|
|
|
"NAME": "Resolution Count",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"DATE_RANGE": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Last 7 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "Last 30 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Last 3 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "Last 6 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
|
|
|
"name": "Last year"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Custom date range"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"CUSTOM_DATE_RANGE": {
|
|
|
|
"CONFIRM": "Apply",
|
|
|
|
"PLACEHOLDER": "Select date range"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"INBOX_REPORTS": {
|
|
|
|
"HEADER": "Inbox Overview",
|
|
|
|
"LOADING_CHART": "Loading chart data...",
|
|
|
|
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
|
|
|
|
"DOWNLOAD_INBOX_REPORTS": "Download inbox reports",
|
|
|
|
"FILTER_DROPDOWN_LABEL": "Select Inbox",
|
|
|
|
"METRICS": {
|
|
|
|
"CONVERSATIONS": {
|
|
|
|
"NAME": "Conversations",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"INCOMING_MESSAGES": {
|
|
|
|
"NAME": "Incoming Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"OUTGOING_MESSAGES": {
|
|
|
|
"NAME": "Outgoing Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"FIRST_RESPONSE_TIME": {
|
2022-03-28 07:38:23 +00:00
|
|
|
"NAME": "First Response Time",
|
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_TIME": {
|
|
|
|
"NAME": "Resolution Time",
|
2022-03-28 07:38:23 +00:00
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_COUNT": {
|
|
|
|
"NAME": "Resolution Count",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"DATE_RANGE": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Last 7 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "Last 30 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Last 3 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "Last 6 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
2021-10-06 18:23:51 +00:00
|
|
|
"name": "Last year"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Custom date range"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"CUSTOM_DATE_RANGE": {
|
|
|
|
"CONFIRM": "Apply",
|
|
|
|
"PLACEHOLDER": "Select date range"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"TEAM_REPORTS": {
|
|
|
|
"HEADER": "Team Overview",
|
|
|
|
"LOADING_CHART": "Loading chart data...",
|
|
|
|
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
|
|
|
|
"DOWNLOAD_TEAM_REPORTS": "Download team reports",
|
|
|
|
"FILTER_DROPDOWN_LABEL": "Select Team",
|
|
|
|
"METRICS": {
|
|
|
|
"CONVERSATIONS": {
|
|
|
|
"NAME": "Conversations",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"INCOMING_MESSAGES": {
|
|
|
|
"NAME": "Incoming Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"OUTGOING_MESSAGES": {
|
|
|
|
"NAME": "Outgoing Messages",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
},
|
|
|
|
"FIRST_RESPONSE_TIME": {
|
2022-03-28 07:38:23 +00:00
|
|
|
"NAME": "First Response Time",
|
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)"
|
2021-10-06 18:23:51 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_TIME": {
|
|
|
|
"NAME": "Resolution Time",
|
2022-03-28 07:38:23 +00:00
|
|
|
"DESC": "( Avg )",
|
2022-04-11 15:27:22 +00:00
|
|
|
"INFO_TEXT": "Total number of conversations used for computation:",
|
|
|
|
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
|
2021-10-06 18:23:51 +00:00
|
|
|
},
|
|
|
|
"RESOLUTION_COUNT": {
|
|
|
|
"NAME": "Resolution Count",
|
|
|
|
"DESC": "( Total )"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"DATE_RANGE": [
|
|
|
|
{
|
|
|
|
"id": 0,
|
|
|
|
"name": "Last 7 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "Last 30 days"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Last 3 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "Last 6 months"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
"name": "Last year"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Custom date range"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"CUSTOM_DATE_RANGE": {
|
|
|
|
"CONFIRM": "Apply",
|
|
|
|
"PLACEHOLDER": "Select date range"
|
|
|
|
}
|
|
|
|
},
|
2021-07-14 04:50:06 +00:00
|
|
|
"CSAT_REPORTS": {
|
|
|
|
"HEADER": "CSAT Reports",
|
|
|
|
"NO_RECORDS": "There are no CSAT survey responses available.",
|
2022-05-17 15:31:45 +00:00
|
|
|
"DOWNLOAD": "Download CSAT Reports",
|
2022-03-04 11:49:26 +00:00
|
|
|
"FILTERS": {
|
|
|
|
"AGENTS": {
|
|
|
|
"PLACEHOLDER": "Choose Agents"
|
|
|
|
}
|
|
|
|
},
|
2021-07-14 04:50:06 +00:00
|
|
|
"TABLE": {
|
|
|
|
"HEADER": {
|
|
|
|
"CONTACT_NAME": "Contact",
|
|
|
|
"AGENT_NAME": "Assigned agent",
|
|
|
|
"RATING": "Rating",
|
|
|
|
"FEEDBACK_TEXT": "Feedback comment"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"METRIC": {
|
|
|
|
"TOTAL_RESPONSES": {
|
|
|
|
"LABEL": "Total responses",
|
|
|
|
"TOOLTIP": "Total number of responses collected"
|
|
|
|
},
|
|
|
|
"SATISFACTION_SCORE": {
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
"LABEL": "Satisfaction score",
|
|
|
|
"TOOLTIP": "Total number of positive responses / Total number of responses * 100"
|
2021-07-14 04:50:06 +00:00
|
|
|
},
|
|
|
|
"RESPONSE_RATE": {
|
feat - Add filter for reports by agent, label and inboxes (#3084)
* Adds filter for agents, labels and inboxes
* Added Inboxes Reports Feature
* Fixed populating of filter dropdown issue
* If applied, fixes code climate style-lint warnings
* Fixes codeclimate warnings
* if applied, Refactors sidebar file to fix codclimate warnings
* if applied, fixes the download reports button for filtered report-data
* If applied, replaces native img tag with thumbnail component
* If applied, replaces hardcoded color string with variable
* If applied, adds a11y labels to multiselect dropdowns
* If applied, Renames reports methods to generic names
* If applied, Adds test cases for Labels and Inboxes
* If applied, write a test spec for fileDownload helper
* if applied, Moves fileDownload method to a utils folder
* If applied, Fixes the report file name type
* Test Spec for Reports Store module
* Fix specs - add restoreAllMocks
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-09-30 07:43:45 +00:00
|
|
|
"LABEL": "Response rate",
|
|
|
|
"TOOLTIP": "Total number of responses / Total number of CSAT survey messages sent * 100"
|
2021-07-14 04:50:06 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-25 14:34:41 +00:00
|
|
|
},
|
|
|
|
"OVERVIEW_REPORTS": {
|
|
|
|
"HEADER": "Overview",
|
|
|
|
"LIVE": "Live",
|
|
|
|
"ACCOUNT_CONVERSATIONS": {
|
|
|
|
"HEADER": "Open Conversations",
|
2022-04-26 12:52:13 +00:00
|
|
|
"LOADING_MESSAGE": "Loading conversation metrics...",
|
|
|
|
"OPEN" : "Open",
|
2022-04-25 14:34:41 +00:00
|
|
|
"UNATTENDED": "Unattended",
|
|
|
|
"UNASSIGNED": "Unassigned"
|
|
|
|
},
|
|
|
|
"AGENT_CONVERSATIONS": {
|
|
|
|
"HEADER": "Conversations by agents",
|
2022-04-26 12:52:13 +00:00
|
|
|
"LOADING_MESSAGE": "Loading agent metrics...",
|
2022-04-25 14:34:41 +00:00
|
|
|
"NO_AGENTS": "There are no conversations by agents",
|
|
|
|
"TABLE_HEADER": {
|
|
|
|
"AGENT": "Agent",
|
2022-04-26 12:52:13 +00:00
|
|
|
"OPEN": "OPEN",
|
2022-04-25 14:34:41 +00:00
|
|
|
"UNATTENDED": "Unattended",
|
|
|
|
"STATUS": "Status"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"AGENT_STATUS": {
|
|
|
|
"HEADER": "Agent status",
|
|
|
|
"ONLINE": "Online",
|
|
|
|
"BUSY": "Busy",
|
|
|
|
"OFFLINE": "Offline"
|
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2022-04-11 15:27:22 +00:00
|
|
|
}
|