更多翻译

This commit is contained in:
2022-09-02 13:11:12 +08:00
parent 96d67f0b6a
commit fbc14e854a
5 changed files with 14 additions and 14 deletions

View File

@@ -56,7 +56,7 @@ export default class Chats extends Component {
showContextMenu(user) {
var menu = new remote.Menu.buildFromTemplate([
{
label: 'Send Message',
label: '发送消息',
click: () => {
this.props.chatTo(user);
}
@@ -65,19 +65,19 @@ export default class Chats extends Component {
type: 'separator'
},
{
label: helper.isTop(user) ? 'Unsticky' : 'Sticky on Top',
label: helper.isTop(user) ? '取消置顶' : '聊天置顶',
click: () => {
this.props.sticky(user);
}
},
{
label: 'Delete',
label: '删除',
click: () => {
this.props.removeChat(user);
}
},
{
label: 'Mark as Read',
label: '标为已读',
click: () => {
this.props.markedRead(user.UserName);
}