]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/buttons/delete-button.component.ts
Merge branch 'release/v1.0.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / delete-button.component.ts
1 import { Component, Input } 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 {
11 @Input() label: string
12
13 constructor (private i18n: I18n) { }
14
15 getTitle () {
16 return this.label || this.i18n('Delete')
17 }
18 }