更多翻译
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user