searchPage.js 899 字节
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
export default {
  category: [
    {
      text: 'uni-app',
      type: 'algolia',
    },
    {
      text: 'uniCloud',
      type: 'algolia',
    },
    {
      text: '问答社区',
      tag: 'ask',
D
DCloud_LXH 已提交
14
      type: 'server',
D
DCloud_LXH 已提交
15 16 17 18
    },
    {
      text: '插件市场',
      tag: 'ext',
D
DCloud_LXH 已提交
19
      type: 'server',
D
DCloud_LXH 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    },
    {
      text: '原生开发文档',
      type: 'link',
      link: 'https://nativesupport.dcloud.net.cn/?s=',
    },
    {
      text: 'HBuilderX 文档',
      type: 'link',
      link: 'https://hx.dcloud.net.cn/?s=',
    },
  ],
  translations: {
    searchBox: {
      buttonText: '取消',
      placeholder: '搜索内容',
      searchBy: '搜索提供者'
    },
    resultsScreen: {
      resultsText: '${resultHits}个相关结果',
      noResultsText: '`没有找到${categoryText}相关内容`',
      askNoResultsText: '以下为${categoryText}相关内容'
    }
  }
}