fix: 补全缺失的i18n文本
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m15s
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m15s
- 搜索栏目与搜索卡片内部分文本补全
This commit is contained in:
@ -12,7 +12,7 @@
|
||||
{{ hit.summary }}
|
||||
</p>
|
||||
<p v-if="hit.type" class="result-type">
|
||||
<span>内容类型: </span>
|
||||
<span>{{ $t('search.section') }}: </span>
|
||||
<span class="result-type-name">{{ getIndexLabel(hit.type) }}</span>
|
||||
</p>
|
||||
</el-card>
|
||||
|
||||
@ -22,11 +22,11 @@
|
||||
}>();
|
||||
|
||||
const tabs = [
|
||||
{ name: 'all', label: '全部' },
|
||||
{ name: 'product', label: '产品' },
|
||||
{ name: 'solution', label: '解决方案' },
|
||||
{ name: 'question', label: '相关问题' },
|
||||
{ name: 'document', label: '文档资料' },
|
||||
{ name: 'all', label: $t('all') },
|
||||
{ name: 'product', label: $t('search.sections.product') },
|
||||
{ name: 'solution', label: $t('search.sections.solution') },
|
||||
{ name: 'question', label: $t('search.sections.faq') },
|
||||
{ name: 'document', label: $t('search.sections.document') },
|
||||
];
|
||||
|
||||
const resultCount = computed(() => {
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
"result-count": "{count} results",
|
||||
"no-results": "No results found for \"{query}\".",
|
||||
"no-query": "Enter a keyword to start searching.",
|
||||
"section": "Section",
|
||||
"untitled": "Untitled",
|
||||
"sections": {
|
||||
"product": "Products",
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
"result-count": "{count} resultados",
|
||||
"no-results": "No se encontraron coincidencias para \"{query}\".",
|
||||
"no-query": "Ingrese una palabra clave para comenzar a buscar.",
|
||||
"section": "sección",
|
||||
"untitled": "sin título",
|
||||
"sections": {
|
||||
"product": "Productos",
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
"result-count": "Всего {count} результатов",
|
||||
"no-results": "Ничего не найдено по запросу \"{query}\".",
|
||||
"no-query": "Введите ключевые слова для начала поиска.",
|
||||
"section": "раздел",
|
||||
"untitled": "Без названия",
|
||||
"sections": {
|
||||
"product": "Продукты",
|
||||
|
||||
@ -10,6 +10,7 @@
|
||||
"result-count": "共 {count} 条结果",
|
||||
"no-results": "没有找到与 “{query}” 匹配的内容。",
|
||||
"no-query": "请输入关键字开始搜索。",
|
||||
"section": "内容类型",
|
||||
"untitled": "未命名条目",
|
||||
"sections": {
|
||||
"product": "产品",
|
||||
|
||||
Reference in New Issue
Block a user