projects/isy-angular-widgets/src/lib/i18n/widgets-translation.ts
Represents a set of translated strings used in a component or application.
Properties |
|
| formWrapper |
formWrapper:
|
Type : literal type
|
| Optional |
| hauptfenster |
hauptfenster:
|
Type : literal type
|
| Optional |
| inputChar |
inputChar:
|
Type : literal type
|
| Optional |
| seitentoolbar |
seitentoolbar:
|
Type : literal type
|
| Optional |
| wizard |
wizard:
|
Type : literal type
|
| Optional |
export interface WidgetsTranslation {
wizard?: {
back?: string;
next?: string;
save?: string;
close?: string;
};
inputChar?: {
title?: string;
headerBaseChars?: string;
headerGroups?: string;
headerAllCharacters?: string;
insert?: string;
preview?: {
letters?: string;
information?: string;
};
aria?: {
togglePicker?: string;
closePicker?: string;
characterGrid?: string;
filterAllCharacters?: string;
filterBaseChars?: string;
filterGroups?: string;
};
};
hauptfenster?: {
altLogoAwl?: string;
altLogoAnbieterAwl?: string;
logout?: string;
browserWarning?: {
currentBrowserFallback?: string;
message?: string;
supportedBrowser?: string;
};
};
formWrapper?: {
required?: string;
invalid?: string;
};
seitentoolbar?: {
back?: string;
};
}