fundamental-ngx
Version:
SAP Fundamentals, implemented in Angular
18 lines (17 loc) • 886 B
TypeScript
/**
* Provides i18n support for labels inside the calendar component.
*/
export declare class CalendarI18nLabels {
/** Year selection aria label. Used on the button to navigate to the years view. */
yearSelectionLabel: string;
/** Previous year aria label. Used on the button to switch to a previous year in the years view. */
previousYearLabel: string;
/** Next year aria label. Used on the button to switch to a next year in the years view. */
nextYearLabel: string;
/** Month selection aria label. Used on the button to navigate to the months view. */
monthSelectionLabel: string;
/** Previous month aria label. Used on the button to switch to a previous month in the months view. */
previousMonthLabel: string;
/** Next month aria label. Used on the button to switch to a next month in the months view. */
nextMonthLabel: string;
}