diff --git a/app/javascript/dashboard/i18n/locale/en/campaign.json b/app/javascript/dashboard/i18n/locale/en/campaign.json
index 0d111b265..4d727b8e3 100644
--- a/app/javascript/dashboard/i18n/locale/en/campaign.json
+++ b/app/javascript/dashboard/i18n/locale/en/campaign.json
@@ -3,9 +3,6 @@
"HEADER": "Campaigns",
"SIDEBAR_TXT": "Proactive messages allow the customer to send outbound messages to their contacts which would trigger more conversations. Click on Add Campaign to create a new campaign. You can also edit or delete an existing campaign by clicking on the Edit or Delete button.",
"HEADER_BTN_TXT": "Create a campaign",
- "LIST": {
- "404": "There are no campaigns created for this inbox."
- },
"ADD": {
"TITLE": "Create a campaign",
"DESC": "Proactive messages allow the customer to send outbound messages to their contacts which would trigger more conversations.",
@@ -44,6 +41,27 @@
"SUCCESS_MESSAGE": "Campaign created successfully",
"ERROR_MESSAGE": "There was an error. Please try again."
}
+ },
+ "LIST": {
+ "LOADING_MESSAGE": "Loading campaigns...",
+ "TABLE_HEADER": {
+ "TITLE": "Title",
+ "MESSAGE": "Message",
+ "STATUS": "Status",
+ "SENDER": "Sender",
+ "URL": "URL",
+ "TIME_ON_PAGE": "Time(Seconds)",
+ "CREATED_AT": "Created at"
+ },
+ "BUTTONS": {
+ "ADD": "Add",
+ "EDIT": "Edit",
+ "DELETE": "Delete"
+ },
+ "STATUS": {
+ "ENABLED": "Enabled",
+ "DISABLED": "Disabled"
+ }
}
}
}
diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue
index 69d4fe205..4ba8cedc2 100644
--- a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue
+++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue
@@ -258,7 +258,7 @@