Unsuscribe translation

This commit is contained in:
vjrj 2018-03-02 10:08:13 +01:00
parent 3ce7d65bb8
commit 9062012d18
3 changed files with 6 additions and 1 deletions

View file

@ -63,7 +63,7 @@ class Subscriptions extends Component {
if (error) {
Bert.alert(error.reason, 'danger');
} else {
Bert.alert('Subscription deleted!', 'success');
Bert.alert(t('Desuscrito'), 'success');
if (num === 1) { // it was 1, now deleted
this.setState({ action: action.view });
}
@ -110,6 +110,7 @@ class Subscriptions extends Component {
loadingSubs={this.props.loading}
currentSubs={this.props.subscriptions}
onRemove={(id) => { this.handleRemove(id); }}
disableFstBtn={false}
/>
</div>
) : <Loading />);