/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ComponentMessages } from '@progress/kendo-angular-l10n'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class Messages extends ComponentMessages { /** * The text for the empty group panel. */ groupPanelEmpty: string; /** * The no-records text. */ noRecords: string; /** * The label of the pager. By default follows the pattern 'Page navigation, page {currentPage} of {totalPages}'. * The default label text when the current page is 1, and the total number of pages is 10 will be * 'Page navigation, page 1 of 10'. * * The message consists of several parts - the current page number, the total number of pages, and a localizable string. * To allow for reordering its parts, the `pagerLabel` input accepts a string with placeholders for the current page * and total number of pages. The '{currentPage}' and '{totalPages}' placeholders will be replaced * internally with the respective actual values. */ pagerLabel: string; /** * The label for the **First page** button. */ pagerFirstPage: string; /** * The label for the **Last page** button. */ pagerLastPage: string; /** * The label for the **Previous page** button. */ pagerPreviousPage: string; /** * The label for the **Next page** button. */ pagerNextPage: string; /** * The label displayed before the pager input. */ pagerPage: string; /** * The title attribute of the page number input element. */ pagerPageNumberInputTitle: string; /** * The label displayed after the page-size selector. */ pagerItemsPerPage: string; /** * The label before the total-page number. */ pagerOf: string; /** * The label after the total items count in the TreeList pager */ pagerItemsTotal: string; /** * The text of the title and aria-label attributes applied to the page chooser in the TreeList Pager. */ selectPage: string; /** * The label of the filter cell or icon. */ filter: string; /** * The label of the filter row and menu inputs. */ filterInputLabel: string; /** * The label of the filter cell operators DropDownList. * * The label consists of a two-part message - the name of the column and a localizable string. * For a column named **Product Name**, the default label will be **Filter cell operators for Product Name**. * * To allow reordering the column name and the localizable part, the `filterCellOperatorLabel` accepts a string with a * placeholder for the column name, for example, **Filter operators for {columnName}**. The `{columnName}` placeholder will be replaced * internally with the current column name, and the resulting label will be rendered as **Filter operators for Product Name**. * [See example](slug:globalization_treelist#toc-custom-messages). */ filterCellOperatorLabel: string; /** * The label of the boolean filter cell DropDownList. * * The label consists of a two-part message - the name of the column and a localizable string. * For a column named **Product Name**, the default label will be **Boolean filter cell for Product Name**. * * To allow reordering the column name and the localizable part, the `booleanFilterCellLabel` accepts a string with a * placeholder for the column name, for example, **Boolean Filter operator for {columnName}**. The `{columnName}` placeholder will be replaced * internally with the current column name, and the resulting label will be rendered as **Boolean Filter operator for Product Name**. * [See example](slug:globalization_treelist#toc-custom-messages). */ booleanFilterCellLabel: string; /** * The text of the `Equal` (**Is equal to**) filter operator. */ filterEqOperator: string; /** * The text of the `NotEqual` (**Is not equal to**) filter operator. */ filterNotEqOperator: string; /** * The text of the `IsNull` (**Is null**) filter operator. */ filterIsNullOperator: string; /** * The text of the `IsNotNull` (**Is not null**) filter operator. */ filterIsNotNullOperator: string; /** * The text of the `IsEmpty` (**Is empty**) filter operator. */ filterIsEmptyOperator: string; /** * The text of the `IsNotEmpty` (**Is not empty**) filter operator. */ filterIsNotEmptyOperator: string; /** * The text of the `StartsWith` (**Starts with**) filter operator. */ filterStartsWithOperator: string; /** * The text of the `Contains` (**Contains**) filter operator. */ filterContainsOperator: string; /** * The text of the `DoesNotContain` (**Does not contain**) filter operator. */ filterNotContainsOperator: string; /** * The text of the `EndsWith` (**Ends with**) string filter operator. */ filterEndsWithOperator: string; /** * The text of the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator. */ filterGteOperator: string; /** * The text of the `Greater` (**Is greater than**) numeric filter operator. */ filterGtOperator: string; /** * The text of the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator. */ filterLteOperator: string; /** * The text of the `Less` (**Is less than**) numeric filter operator. */ filterLtOperator: string; /** * The text of the `IsTrue` Boolean filter option. */ filterIsTrue: string; /** * The text of the `IsFalse` Boolean filter option. */ filterIsFalse: string; /** * The text of the `(All)` option for Boolean filter. */ filterBooleanAll: string; /** * The text of the `AfterOrEqualTo` (**Is after or equal to**) date filter operator. */ filterAfterOrEqualOperator: string; /** * The text of the `After` (**Is after**) date filter operator. */ filterAfterOperator: string; /** * The text of the `Before` (**Is before**) date filter operator. */ filterBeforeOperator: string; /** * The text of the `BeforeOrEqualTo` (**Is before or equal to**) date filter operator. */ filterBeforeOrEqualOperator: string; /** * The text of the **Filter** button. */ filterFilterButton: string; /** * The text of the **Clear filter** button. */ filterClearButton: string; /** * The text of the `And` filter logic. */ filterAndLogic: string; /** * The text of the `Or` filter logic. */ filterOrLogic: string; /** * The loading text. * * The `loading` property is part of the accessibility support of the TreeList. * Its value is detectable by screen readers and is not otherwise visible. */ loading: string; /** * The title of the icon for the column menu. */ columnMenu: string; /** * The text that is displayed in the column menu for the column items. */ columns: string; /** * The text that is displayed in the column menu for the lock item. */ lock: string; /** * The text that is displayed in the column menu for the unlock item. */ unlock: string; /** * The label of the sort icon. */ sortable: string; /** * The text that is displayed in the column menu for the ascending sort item. */ sortAscending: string; /** * The text that is displayed in the column menu for the descending sort item. */ sortDescending: string; /** * The status announcement when a column is sorted in an ascending order. * Deprecated - the announcement now relies entirely on the `aria-sort` attribute. * @hidden */ sortedAscending: string; /** * The status announcement when a column is sorted in a descending order. * Deprecated - the announcement now relies entirely on the `aria-sort` attribute. * @hidden */ sortedDescending: string; /** * The status announcement when a column is no longer sorted. */ sortedDefault: string; /** * The text that is displayed in the column menu or in the column chooser item * for the **Apply** button of the columns. */ columnsApply: string; /** * The text that is displayed in the column menu or in the column chooser item * for the **Reset** button of the columns. */ columnsReset: string; /** * The label of the TreeList top toolbar. */ topToolbarLabel: string; /** * The label of the TreeList bottom toolbar. */ bottomToolbarLabel: string; /** * The label for the TreeList drag row handle. */ dragRowHandleLabel: string; /** * The label for the select row checkbox */ selectRowCheckboxLabel: string; /** * The label for the select all rows checkbox */ selectAllRowsCheckboxLabel: string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }