index.js 2.42 KB
const qulificationEn = {
  qulification: {
    title: "Memberships' and Market Participants' Inquiry", // 会员及市场参与者情况查询
    searchAction: {
      product: {
        name: 'Product', // 非法人产品
        key: 'product',
        placeholder: "Please input the products' name/manage person", // 请输入产品名/管理人
      },
      org: {
        name: 'Organization', // 机构
        key: 'org',
        placeholder: "Please input the organizations' name", // 请输入机构名称
      }
    },
    product: 'Product', // 非法人产品
    org: 'Organization', // 机构
    orgType: 'Organization Type', // 机构类型
    productInput: "Please input the products' name/manage person", // 请输入产品名/管理人
    orgInput: "Please input the organizations' name", // 请输入机构名称
    history: 'Search History', // 搜索历史
    membership: 'Membership', // 是否会员
    membershipType: 'Membership Type', // 会籍类别
    underwriterType: 'Type of Lead Underwriter', // 主承销商类型
    marketmaker: 'Market Maker', // 做市商
    mitigation: 'Credit Risk Mitigation', // 信用风险缓释工具
    masterAgree: 'Signed Master Agreement' // 已签署备案主协议
  },
}

const qulificationZh = {
  qulification: {
    title: '会员及市场参与者情况查询', // 会员及市场参与者情况查询
    searchAction: {
      product: {
        name: '非法人产品', // 非法人产品
        key: 'product',
        placeholder: '请输入产品名/管理人', // 请输入产品名/管理人
      },
      org: {
        name: '机构', // 机构
        key: 'org',
        placeholder: '请输入机构名称', // 请输入机构名称
      }
    },
    product: '非法人产品', // 非法人产品
    org: '机构', // 机构
    orgType: '机构类型', // 机构类型
    productInput: "请输入产品名/管理人", // 请输入产品名/管理人
    orgInput: "请输入机构名称", // 请输入机构名称
    history: '搜索历史', // 搜索历史
    membership: '是否会员', // 是否会员
    membershipType: '会籍类别', // 会籍类别
    underwriterType: '主承销商类型', // 主承销商类型
    marketmaker: '做市商', // 做市商
    mitigation: '信用风险缓释工具', // 信用风险缓释工具
    masterAgree: '已签署备案主协议' // 已签署备案主协议
  },
}
export default {
  qulificationEn,
  qulificationZh
};