src/lib/logging-viewer-translation.model.ts
Describes all values needed in a translation for LoggingViewerModalComponent.
Properties |
| cancel |
cancel:
|
Type : string
|
|
Cancel button. This text is shown only on iOS. On Android or Windows, just an close-icon is used. |
| searchPlaceholder |
searchPlaceholder:
|
Type : string
|
|
Placeholder for search bar. |
| title |
title:
|
Type : string
|
|
Title of the modal. |
export interface LoggingViewerTranslation {
/**
* Title of the modal.
*/
title: string;
/**
* Cancel button.
* This text is shown only on iOS.
* On Android or Windows, just an close-icon is used.
*/
cancel: string;
/**
* Placeholder for search bar.
*/
searchPlaceholder: string;
}