]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/buttons/delete-button.component.ts
Add ability to list redundancies
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / delete-button.component.ts
1 import { Component, Input, OnInit } from '@angular/core'
2 import { I18n } from '@ngx-translate/i18n-polyfill'
3
4 @Component({
5 selector: 'my-delete-button',
6 styleUrls: [ './button.component.scss' ],
7 templateUrl: './delete-button.component.html'
8 })
9
10 export class DeleteButtonComponent implements OnInit {
11 @Input() label: string
12
13 title: string
14
15 constructor (private i18n: I18n) { }
16
17 ngOnInit () {
18 this.title = this.label || this.i18n('Delete')
19 }
20 }