fix: Companies card pluralization issue (#12919)

This commit is contained in:
Sivin Varghese
2025-11-21 12:22:02 +05:30
committed by GitHub
parent 38d6ee6dd2
commit 51fbf583b6
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ const formattedUpdatedAt = computed(() => {
class="inline-flex items-center gap-1.5 text-sm text-n-slate-11 truncate"
>
<Icon icon="i-lucide-contact" size="size-3.5 text-n-slate-11" />
{{ t('COMPANIES.CONTACTS_COUNT', { count: contactsCount }) }}
{{ t('COMPANIES.CONTACTS_COUNT', { n: contactsCount }) }}
</span>
</div>
<span

View File

@@ -19,7 +19,7 @@
"SEARCH_PLACEHOLDER": "Search companies...",
"LOADING": "Loading companies...",
"UNNAMED": "Unnamed Company",
"CONTACTS_COUNT": "{count} contacts",
"CONTACTS_COUNT": "{n} contact | {n} contacts",
"EMPTY_STATE": {
"TITLE": "No companies found"
}