]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
... / ...
CommitLineData
1import { Component, Input } from '@angular/core'
2import { 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
10export class DeleteButtonComponent {
11 @Input() label: string
12
13 constructor (private i18n: I18n) { }
14
15 getTitle () {
16 return this.label || this.i18n('Delete')
17 }
18}