]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
8c6781e9 1import { Component, Input, OnInit } from '@angular/core'
60709df5 2import { I18n } from '@ngx-translate/i18n-polyfill'
cd83ea1b
C
3
4@Component({
5 selector: 'my-delete-button',
6 styleUrls: [ './button.component.scss' ],
7 templateUrl: './delete-button.component.html'
8})
9
8c6781e9 10export class DeleteButtonComponent implements OnInit {
eacb25c4 11 @Input() label: string
60709df5 12
8c6781e9
C
13 title: string
14
60709df5
C
15 constructor (private i18n: I18n) { }
16
8c6781e9
C
17 ngOnInit () {
18 this.title = this.label || this.i18n('Delete')
60709df5 19 }
cd83ea1b 20}