diff --git a/frontend/src/pages/CallLogs.vue b/frontend/src/pages/CallLogs.vue index 280c11a4..029061e9 100644 --- a/frontend/src/pages/CallLogs.vue +++ b/frontend/src/pages/CallLogs.vue @@ -45,7 +45,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Logs Found') }} + {{ __('No {0} Found', [__('Logs')]) }} - {{ __('No Contacts Found') }} + {{ __('No {0} Found', [__('Contacts')]) }} diff --git a/frontend/src/pages/Deals.vue b/frontend/src/pages/Deals.vue index 71c0096b..d65d2113 100644 --- a/frontend/src/pages/Deals.vue +++ b/frontend/src/pages/Deals.vue @@ -48,7 +48,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Deals Found') }} + {{ __('No {0} Found', [__('Deals')]) }} diff --git a/frontend/src/pages/EmailTemplates.vue b/frontend/src/pages/EmailTemplates.vue index b9a48918..416a9baa 100644 --- a/frontend/src/pages/EmailTemplates.vue +++ b/frontend/src/pages/EmailTemplates.vue @@ -52,7 +52,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Email Templates Found') }} + {{ __('No {0} Found', [__('Email Templates')]) }} diff --git a/frontend/src/pages/Leads.vue b/frontend/src/pages/Leads.vue index daa9367c..88e81028 100644 --- a/frontend/src/pages/Leads.vue +++ b/frontend/src/pages/Leads.vue @@ -49,7 +49,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Leads Found') }} + {{ __('No {0} Found', [__('Leads')]) }} diff --git a/frontend/src/pages/Notes.vue b/frontend/src/pages/Notes.vue index 718c82f8..cb9f9c30 100644 --- a/frontend/src/pages/Notes.vue +++ b/frontend/src/pages/Notes.vue @@ -88,7 +88,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Notes Found') }} + {{ __('No {0} Found', [__('Notes')]) }} diff --git a/frontend/src/pages/Organizations.vue b/frontend/src/pages/Organizations.vue index 967c20b9..b0002553 100644 --- a/frontend/src/pages/Organizations.vue +++ b/frontend/src/pages/Organizations.vue @@ -51,7 +51,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Organizations Found') }} + {{ __('No {0} Found', [__('Organizations')]) }} diff --git a/frontend/src/pages/Tasks.vue b/frontend/src/pages/Tasks.vue index 7edcb72c..f21f7b49 100644 --- a/frontend/src/pages/Tasks.vue +++ b/frontend/src/pages/Tasks.vue @@ -45,7 +45,7 @@ class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500" > - {{ __('No Tasks Found') }} + {{ __('No {0} Found', [__('Tasks')]) }}