Use explicit plural strings on management pages

This commit is contained in:
Michael Shamoon 2022-05-12 20:34:32 -07:00
parent 109dd45b56
commit 52480e0bc4
5 changed files with 6 additions and 2 deletions

View File

@ -31,6 +31,7 @@ export class CorrespondentListComponent extends ManagementListComponent<Paperles
queryParamsService,
FILTER_CORRESPONDENT,
$localize`correspondent`,
$localize`correspondents`,
[
{
key: 'last_correspondence',

View File

@ -28,6 +28,7 @@ export class DocumentTypeListComponent extends ManagementListComponent<Paperless
queryParamsService,
FILTER_DOCUMENT_TYPE,
$localize`document type`,
$localize`document types`,
[]
)
}

View File

@ -1,4 +1,4 @@
<app-page-header title="{{ typeName | titlecase }}s">
<app-page-header title="{{ typeNamePlural | titlecase }}">
<button type="button" class="btn btn-sm btn-outline-primary" (click)="openCreateDialog()" i18n>Create</button>
</app-page-header>
@ -71,6 +71,6 @@
</table>
<div class="d-flex">
<div i18n *ngIf="collectionSize > 0">{collectionSize, plural, =1 {One {{typeName}}} other {{{collectionSize || 0}} total {{typeName}}s}}</div>
<div i18n *ngIf="collectionSize > 0">{collectionSize, plural, =1 {One {{typeName}}} other {{{collectionSize || 0}} total {{typeNamePlural}}}}</div>
<ngb-pagination *ngIf="collectionSize > 20" class="ms-auto" [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" aria-label="Default pagination"></ngb-pagination>
</div>

View File

@ -45,6 +45,7 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
private queryParamsService: QueryParamsService,
protected filterRuleType: number,
public typeName: string,
public typeNamePlural: string,
public extraColumns: ManagementListColumn[]
) {}

View File

@ -28,6 +28,7 @@ export class TagListComponent extends ManagementListComponent<PaperlessTag> {
queryParamsService,
FILTER_HAS_TAGS_ALL,
$localize`tag`,
$localize`tags`,
[
{
key: 'color',