fix(panel_sharing): use correct term

This commit is contained in:
hexxa 2022-01-16 11:53:01 +08:00 committed by Hexxa
parent 7a932d2528
commit f7506b6ffa
3 changed files with 3 additions and 1 deletions

View file

@ -81,7 +81,7 @@ export class SharingsPanel extends React.Component<Props, State, {}> {
this.deleteSharing(dirPath); this.deleteSharing(dirPath);
}} }}
> >
{this.props.msg.pkg.get("browser.delete")} {this.props.msg.pkg.get("op.cancel")}
</button>, </button>,
])} ])}
childrenStyles={List([ childrenStyles={List([

View file

@ -130,6 +130,7 @@ export const msgs: Map<string, string> = Map({
"error.report.title": "Error Report", "error.report.title": "Error Report",
"op.truncate": "Truncate", "op.truncate": "Truncate",
"op.submit": "Submit", "op.submit": "Submit",
"op.cancel": "Cancel",
"term.time": "Time", "term.time": "Time",
"breadcrumb.loc": "Location", "breadcrumb.loc": "Location",
}); });

View file

@ -127,6 +127,7 @@ export const msgs: Map<string, string> = Map({
"error.report.title": "报告错误", "error.report.title": "报告错误",
"op.truncate": "清空", "op.truncate": "清空",
"op.submit": "提交", "op.submit": "提交",
"op.cancel": "取消",
"term.time": "时间", "term.time": "时间",
"breadcrumb.loc": "位置", "breadcrumb.loc": "位置",
}); });