Browse Source

replace instances of typo 'collpse' with collapse (#18488)

pull/18491/head
Nova Courtois 5 years ago
committed by 偏右
parent
commit
817f3c231f
  1. 2
      site/theme/en-US.js
  2. 2
      site/theme/template/Content/ComponentDoc.jsx
  3. 2
      site/theme/zh-CN.js

2
site/theme/en-US.js

@ -16,7 +16,7 @@ module.exports = {
'app.content.edit-demo': 'Edit this demo on GitHub!',
'app.component.examples': 'Examples',
'app.component.examples.expand': 'Expand all code',
'app.component.examples.collpse': 'Collpse all code',
'app.component.examples.collapse': 'Collapse all code',
'app.demo.debug': "Debug only, won't display at online",
'app.demo.copy': 'Copy code',
'app.demo.copied': 'Copied!',

2
site/theme/template/Content/ComponentDoc.jsx

@ -125,7 +125,7 @@ class ComponentDoc extends React.Component {
<Tooltip
title={
<FormattedMessage
id={`app.component.examples.${expandAll ? 'collpse' : 'expand'}`}
id={`app.component.examples.${expandAll ? 'collapse' : 'expand'}`}
/>
}
>

2
site/theme/zh-CN.js

@ -16,7 +16,7 @@ module.exports = {
'app.content.edit-demo': '在 GitHub 上编辑此示例!',
'app.component.examples': '代码演示',
'app.component.examples.expand': '展开全部代码',
'app.component.examples.collpse': '收起全部代码',
'app.component.examples.collapse': '收起全部代码',
'app.demo.debug': '此演示仅供调试,线上不会展示',
'app.demo.copy': '复制代码',
'app.demo.copied': '复制成功',

Loading…
Cancel
Save