fix(nc-gui): use i18n text

This commit is contained in:
Ramesh Mane
2025-05-19 10:52:54 +00:00
parent ccb5396db0
commit d613fb530e

View File

@@ -20,7 +20,7 @@ const inputRef = ref()
const placeholder = computed(() => {
return isLoading.value
? 'Search...'
? `${t('general.search')}...`
: `${t('activity.searchProject').charAt(0).toUpperCase()}${t('activity.searchProject').slice(1).toLowerCase()}`
})