diff --git a/frontend/src/components/Controls/Autocomplete.vue b/frontend/src/components/Controls/Autocomplete.vue
index 41acfff4..f8daceb1 100644
--- a/frontend/src/components/Controls/Autocomplete.vue
+++ b/frontend/src/components/Controls/Autocomplete.vue
@@ -53,7 +53,7 @@
"
:value="query"
autocomplete="off"
- placeholder="Search"
+ :placeholder="__('Search')"
/>
diff --git a/frontend/src/pages/Profile.vue b/frontend/src/pages/Profile.vue
index 9f9c67fb..ac9ca350 100644
--- a/frontend/src/pages/Profile.vue
+++ b/frontend/src/pages/Profile.vue
@@ -195,14 +195,14 @@ const isSessionUser = () => {
}
const getTabButtons = () => {
- let buttons = [{ label: 'About' }, { label: 'Certificates' }]
- if ($user.data?.is_moderator) buttons.push({ label: 'Roles' })
+ let buttons = [{ label: __('About') }, { label: __('Certificates') }]
+ if ($user.data?.is_moderator) buttons.push({ label: __('Roles') })
if (
isSessionUser() &&
($user.data?.is_evaluator || $user.data?.is_moderator)
) {
- buttons.push({ label: 'Slots' })
- buttons.push({ label: 'Schedule' })
+ buttons.push({ label: __('Slots') })
+ buttons.push({ label: __('Schedule') })
}
return buttons
diff --git a/frontend/src/utils/index.js b/frontend/src/utils/index.js
index d9b89681..aa781212 100644
--- a/frontend/src/utils/index.js
+++ b/frontend/src/utils/index.js
@@ -403,7 +403,7 @@ export function getUserTimezone() {
export function getSidebarLinks() {
return [
{
- label: 'Courses',
+ label: __('Courses'),
icon: 'BookOpen',
to: 'Courses',
activeFor: [
@@ -415,25 +415,25 @@ export function getSidebarLinks() {
],
},
{
- label: 'Batches',
+ label: __('Batches'),
icon: 'Users',
to: 'Batches',
activeFor: ['Batches', 'BatchDetail', 'Batch', 'BatchForm'],
},
{
- label: 'Certified Members',
+ label: __('Certified Members'),
icon: 'GraduationCap',
to: 'CertifiedParticipants',
activeFor: ['CertifiedParticipants'],
},
{
- label: 'Jobs',
+ label: __('Jobs'),
icon: 'Briefcase',
to: 'Jobs',
activeFor: ['Jobs', 'JobDetail'],
},
{
- label: 'Statistics',
+ label: __('Statistics'),
icon: 'TrendingUp',
to: 'Statistics',
activeFor: ['Statistics'],