mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-15 11:07:00 +01:00
add more localization tags #123
This commit is contained in:
parent
aa6e96e54d
commit
d6e733c56f
10 changed files with 35 additions and 39 deletions
|
|
@ -10,6 +10,6 @@
|
|||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-outline-dark" (click)="cancelClicked()">Cancel</button>
|
||||
<button type="button" class="btn btn-primary" (click)="selectClicked.emit(selected)">Select</button>
|
||||
<button type="button" class="btn btn-outline-dark" (click)="cancelClicked()" i18n>Cancel</button>
|
||||
<button type="button" class="btn btn-primary" (click)="selectClicked.emit(selected)" i18n>Select</button>
|
||||
</div>
|
||||
|
|
@ -15,10 +15,10 @@ export class SelectDialogComponent implements OnInit {
|
|||
public selectClicked = new EventEmitter()
|
||||
|
||||
@Input()
|
||||
title = "Select"
|
||||
title = $localize`Select`
|
||||
|
||||
@Input()
|
||||
message = "Please select an object"
|
||||
message = $localize`Please select an object`
|
||||
|
||||
@Input()
|
||||
objects: ObjectWithId[] = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue