diff --git a/components/mention/index.en-US.md b/components/mention/index.en-US.md index 1f2c4c348272..6e4c7b5b8ad6 100644 --- a/components/mention/index.en-US.md +++ b/components/mention/index.en-US.md @@ -38,7 +38,7 @@ When need to mention someone or something. | getSuggestionContainer | rendered to the root of the menu. Default rendered to the body dom. If gets any problem of the menu while scrolling. Try to make the root the dom scrolled, and make it position relative. | function | () => document.body | | loading | loading mode | boolean | false | | multiLines | multilines mode | boolean | false | -| notFoundContent | suggestion when suggestions empty | string | '无匹配结果,轻敲空格完成输入' | +| notFoundContent | suggestion when suggestions empty | string | 'No matches found' | | placeholder | placeholder of input | string | null | | placement | The position of the suggestion relative to the target, which can be one of `top` and `bottom` | string | 'bottom'. | | prefix | character which will trigger Mention to show mention list | string or Array<string> | '@' | diff --git a/components/mention/index.tsx b/components/mention/index.tsx index 0ff8deaf6d52..94c16358255e 100644 --- a/components/mention/index.tsx +++ b/components/mention/index.tsx @@ -40,7 +40,7 @@ export interface MentionState { class Mention extends React.Component { static getMentions = getMentions; static defaultProps = { - notFoundContent: '无匹配结果,轻敲空格完成输入', + notFoundContent: 'No matches found', loading: false, multiLines: false, placement: 'bottom' as MentionPlacement,