[WEBLATE] fix issues.
This commit is contained in:
parent
83926eefce
commit
e15d070e8f
|
@ -40,6 +40,31 @@ module.exports = React.createClass({
|
||||||
onFinished: React.PropTypes.func,
|
onFinished: React.PropTypes.func,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getInitialState: function() {
|
||||||
|
return {
|
||||||
|
canRedact: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
componentWillMount: function() {
|
||||||
|
MatrixClientPeg.get().on('RoomMember.powerLevel', this._checkCanRedact);
|
||||||
|
this._checkCanRedact();
|
||||||
|
},
|
||||||
|
|
||||||
|
componentWillUnmount: function() {
|
||||||
|
const cli = MatrixClientPeg.get();
|
||||||
|
if (cli) {
|
||||||
|
cli.removeListener('RoomMember.powerLevel', this._checkCanRedact);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_checkCanRedact: function() {
|
||||||
|
const cli = MatrixClientPeg.get();
|
||||||
|
const room = cli.getRoom(this.props.mxEvent.getRoomId());
|
||||||
|
const canRedact = room.currentState.maySendRedactionForEvent(this.props.mxEvent, cli.credentials.userId);
|
||||||
|
this.setState({canRedact});
|
||||||
|
},
|
||||||
|
|
||||||
onResendClick: function() {
|
onResendClick: function() {
|
||||||
Resend.resend(this.props.mxEvent);
|
Resend.resend(this.props.mxEvent);
|
||||||
if (this.props.onFinished) this.props.onFinished();
|
if (this.props.onFinished) this.props.onFinished();
|
||||||
|
@ -136,10 +161,10 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!eventStatus && !this.props.mxEvent.isRedacted()) { // sent and not redacted
|
if (this.state.canRedact) {
|
||||||
redactButton = (
|
redactButton = (
|
||||||
<div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
<div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
||||||
{ _t('Redact') }
|
{ _t('Remove') }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,6 +178,7 @@ module.exports = React.createClass({
|
||||||
Modal.createDialog(TextInputDialog, {
|
Modal.createDialog(TextInputDialog, {
|
||||||
title: _t('Keywords'),
|
title: _t('Keywords'),
|
||||||
description: _t('Enter keywords separated by a comma:'),
|
description: _t('Enter keywords separated by a comma:'),
|
||||||
|
button: _t('OK'),
|
||||||
value: keywords,
|
value: keywords,
|
||||||
onFinished: function onFinished(should_leave, newValue) {
|
onFinished: function onFinished(should_leave, newValue) {
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"Add an email address above to configure email notifications": "Adicione um endereço de email acima para configurar as notificações por email",
|
"Add an email address above to configure email notifications": "Adicione um endereço de email acima para configurar as notificações por email",
|
||||||
"All messages": "Todas as mensagens",
|
"All messages": "Todas as mensagens",
|
||||||
"All messages (loud)": "Todas as mensagens (alto)",
|
"All messages (loud)": "Todas as mensagens (alto)",
|
||||||
"All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desativadas para todos os destinos",
|
|
||||||
"An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto salvava suas preferências de notificação por email.",
|
"An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto salvava suas preferências de notificação por email.",
|
||||||
"Cancel Sending": "Cancelar o envio",
|
"Cancel Sending": "Cancelar o envio",
|
||||||
"Can't update user notification settings": "Não é possível atualizar as preferências de notificação",
|
"Can't update user notification settings": "Não é possível atualizar as preferências de notificação",
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"Add an email address above to configure email notifications": "Insira um endereço de email no campo acima para configurar suas notificações por email",
|
"Add an email address above to configure email notifications": "Insira um endereço de email no campo acima para configurar suas notificações por email",
|
||||||
"All messages": "Todas as mensagens",
|
"All messages": "Todas as mensagens",
|
||||||
"All messages (loud)": "Todas as mensagens (alto)",
|
"All messages (loud)": "Todas as mensagens (alto)",
|
||||||
"All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os destinatários.",
|
|
||||||
"An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email.",
|
"An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email.",
|
||||||
"Call invitation": "Convite para chamada",
|
"Call invitation": "Convite para chamada",
|
||||||
"Cancel Sending": "Cancelar o envio",
|
"Cancel Sending": "Cancelar o envio",
|
||||||
|
|
Loading…
Reference in New Issue