/**
 * This file is part of the NocoBase (R) project.
 * Copyright (c) 2020-2024 NocoBase Co., Ltd.
 * Authors: NocoBase Team.
 *
 * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
 * For more information, please refer to: https://www.nocobase.com/agreement.
 */

import type { Locale } from './interface';

const locale: Locale = {
  _lang: 'zh-CN',
  followPrimary: '跟随主色',
  reset: '重置',
  next: '下一步',
  groupView: '分组显示',
  fill: '填充',
  border: '描边',
  background: '背景',
  text: '文本',
  demo: {
    overview: '概览',
    components: '组件',
    relatedTokens: '关联 Token',
  },
};

export default locale;
