feat(PageIndex): make PageIndex published text configurable

This commit is contained in:
Danny Koppenhagen
2021-10-26 20:02:33 +02:00
committed by Bastian
parent a509e0a0da
commit 265a8318b0
4 changed files with 16 additions and 1 deletions

View File

@@ -35,6 +35,10 @@ interface PageItem {
quadrantOverview: string;
}
interface PageIndex {
publishedLabel: string;
}
export interface Messages {
footerFootnote?: string;
socialLinks?: SocialLink[];
@@ -42,6 +46,7 @@ export interface Messages {
pageHelp?: PageHelp;
pageOverview?: PageOverview;
pageItem?: PageItem;
pageIndex?: PageIndex;
searchPlaceholder?: string;
}