From ce3c47ac8e37b327f72027fa715742f88c020bb1 Mon Sep 17 00:00:00 2001
From: Yanmario Menev <49076727+yanmariomenev@users.noreply.github.com>
Date: Thu, 26 Dec 2024 09:08:18 +0200
Subject: [PATCH] chore: update i18n app
---
.github/workflows/ci.yml | 6 +
README.md | 14 +-
examples/projects/integration-i18n/README.md | 22 +-
.../projects/integration-i18n/angular.json | 132 +
.../projects/integration-i18n/karma.conf.js | 32 -
.../projects/integration-i18n/package.json | 66 +
.../integration-i18n/locale/messages.xlf | 767 -----
.../integration-i18n/public/favicon.ico | Bin 0 -> 15086 bytes
.../{app.component.scss => app.component.css} | 0
.../src/app/app.component.html | 18 +-
.../src/app/app.component.spec.ts | 32 -
.../integration-i18n/src/app/app.component.ts | 48 +-
.../integration-i18n/src/app/app.config.ts | 9 +
.../integration-i18n/src/app/app.module.ts | 22 -
.../integration-i18n/src/app/app.routes.ts | 3 +
.../integration-i18n/src/assets/.gitkeep | 0
.../src/environments/environment.prod.ts | 3 -
.../src/environments/environment.ts | 16 -
.../projects/integration-i18n/src/favicon.ico | Bin 5430 -> 0 bytes
.../projects/integration-i18n/src/index.html | 1 -
.../src/locale/messages.de.xlf | 2871 +++++++++++++++
.../src/locale/messages.es.xlf | 3064 ++++++++++++++---
.../integration-i18n/src/locale/messages.xlf | 2742 ++++++++++++---
.../projects/integration-i18n/src/main.ts | 16 +-
.../integration-i18n/src/polyfills.ts | 57 -
.../projects/integration-i18n/src/test.ts | 22 -
.../integration-i18n/tsconfig.app.json | 15 +-
.../projects/integration-i18n/tsconfig.json | 27 +
.../integration-i18n/tsconfig.spec.json | 16 +-
.../projects/integration-i18n/tslint.json | 17 -
30 files changed, 8143 insertions(+), 1895 deletions(-)
create mode 100644 examples/projects/integration-i18n/angular.json
delete mode 100644 examples/projects/integration-i18n/karma.conf.js
create mode 100644 examples/projects/integration-i18n/package.json
delete mode 100644 examples/projects/integration-i18n/projects/integration-i18n/locale/messages.xlf
create mode 100644 examples/projects/integration-i18n/public/favicon.ico
rename examples/projects/integration-i18n/src/app/{app.component.scss => app.component.css} (100%)
delete mode 100644 examples/projects/integration-i18n/src/app/app.component.spec.ts
create mode 100644 examples/projects/integration-i18n/src/app/app.config.ts
delete mode 100644 examples/projects/integration-i18n/src/app/app.module.ts
create mode 100644 examples/projects/integration-i18n/src/app/app.routes.ts
delete mode 100644 examples/projects/integration-i18n/src/assets/.gitkeep
delete mode 100644 examples/projects/integration-i18n/src/environments/environment.prod.ts
delete mode 100644 examples/projects/integration-i18n/src/environments/environment.ts
delete mode 100644 examples/projects/integration-i18n/src/favicon.ico
create mode 100644 examples/projects/integration-i18n/src/locale/messages.de.xlf
delete mode 100644 examples/projects/integration-i18n/src/polyfills.ts
delete mode 100644 examples/projects/integration-i18n/src/test.ts
create mode 100644 examples/projects/integration-i18n/tsconfig.json
delete mode 100644 examples/projects/integration-i18n/tslint.json
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 784353a2..a49e9730 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -70,6 +70,12 @@ jobs:
run: |
npm ci
npm run build
+
+ - name: Translation of Messages
+ working-directory: ./examples/projects/integration-18n
+ run: |
+ npm ci
+ npm run build
- name: Spreadsheet App
working-directory: ./examples-standalone/spreadsheet-app
diff --git a/README.md b/README.md
index a2a2663a..e01935e4 100644
--- a/README.md
+++ b/README.md
@@ -2,18 +2,18 @@
Kendo UI for Angular uses GitHub Issues as an official bug tracker.
-This repository is intended to support users by providing information on available support options and by storing the sample projects that are referred to from the official Kendo UI for Angular documentation.
+This repository is intended to support users by providing information on available support options and by storing the sample projects that are referred to from the [official Kendo UI for Angular documentation](https://www.telerik.com/kendo-angular-ui/components/).
**This repository does not contain the actual source code of the components.**
## In This Article
* [Available Support Options](#support-options)
- * [Information on How to Use Specific Features](#how-do-i)
- * [Queries on Future Releases](#when-do-you-plan-on-releasing-feature-x)
- * [Bug Discovery](#i-think-i-found-a-bug)
- * [Bug Reports](#i-want-to-report-a-bug)
- * [Tailor-Made Solutions](#i-need-a-tailor-made-solution)
+ * [Information on How to Use Specific Features](#how-do-i)
+ * [Queries on Future Releases](#when-do-you-plan-on-releasing-feature-x)
+ * [Bug Discovery](#i-think-i-found-a-bug)
+ * [Bug Reports](#i-want-to-report-a-bug)
+ * [Tailor-Made Solutions](#i-need-a-tailor-made-solution)
* [Sample Projects and Applications](#sample-projects)
## Support Options
@@ -59,7 +59,7 @@ The [Progress Services](https://www.progress.com/services) team is available to
## Sample Projects
-The kendo-angular repository is a single storing place for all sample applications that are referred in the [official Kendo UI for Angular documentation]. All currently available sample applications are located under the following folders:
+The kendo-angular repository is a single storing place for all sample applications that are referred in the [official Kendo UI for Angular documentation](https://www.telerik.com/kendo-angular-ui/components/). All currently available sample applications are located under the following folders:
* [examples/projects/](https://github.com/telerik/kendo-angular/tree/master/examples/projects)
* [examples-standalone](https://github.com/telerik/kendo-angular/tree/master/examples-standalone)
diff --git a/examples/projects/integration-i18n/README.md b/examples/projects/integration-i18n/README.md
index 1f943a39..72144f44 100644
--- a/examples/projects/integration-i18n/README.md
+++ b/examples/projects/integration-i18n/README.md
@@ -1,13 +1,17 @@
-# Translating Built-In Component Messages
+# IntegrationI18n
-This Kendo UI for Angular sample project demonstrates how to translate the built-in messages of [Kendo UI for Angular components](https://www.telerik.com/kendo-angular-ui/components/).
+This project demonstrates how to use Angular i18n and Kendo UI for Angular components in an Angular application. For more information, refer to the [Translation of Messages](https://www.telerik.com/kendo-angular-ui/components/globalization/localization/messages) and [Angular Internationalization](https://angular.dev/guide/i18n) articles.
-The demo is referred to in the [Kendo UI for Angular official documentation](https://www.telerik.com/kendo-angular-ui/components) in the article on [translating messages](https://www.telerik.com/kendo-angular-ui/components/globalization/localization/messages/).
+## Development server
-## Getting Started
+To run the different i18n configurations, you can use the following commands:
-1. Clone this repository by using your favorite Git client or by executing `git clone https://github.com/telerik/kendo-angular.git`.
-1. Enter the examples directory by running `cd examples`.
-1. Run `npm install` to install the project dependencies.
-1. Enter the project directory by running `cd projects/integration-i18n`.
-1. Run `ng serve integration-i18n --configuration=es`.
+```bash
+ng serve --configuration=es
+```
+
+```bash
+ng serve --configuration=de
+```
+
+Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
\ No newline at end of file
diff --git a/examples/projects/integration-i18n/angular.json b/examples/projects/integration-i18n/angular.json
new file mode 100644
index 00000000..09089b39
--- /dev/null
+++ b/examples/projects/integration-i18n/angular.json
@@ -0,0 +1,132 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "newProjectRoot": "projects",
+ "projects": {
+ "integration-i18n": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "i18n": {
+ "sourceLocale": "en-US",
+ "locales": {
+ "es": {
+ "translation": "src/locale/messages.es.xlf",
+ "baseHref": ""
+ },
+ "de": {
+ "translation": "src/locale/messages.de.xlf",
+ "baseHref": ""
+ }
+ }
+ },
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:application",
+ "options": {
+ "outputPath": "dist/integration-i18n",
+ "index": "src/index.html",
+ "browser": "src/main.ts",
+ "polyfills": [
+ "zone.js",
+ "@angular/localize/init"
+ ],
+ "tsConfig": "tsconfig.app.json",
+ "assets": [
+ {
+ "glob": "**/*",
+ "input": "public"
+ }
+ ],
+ "styles": [
+ {
+ "input": "node_modules/@progress/kendo-theme-default/dist/all.css"
+ },
+ "src/styles.css"
+ ],
+ "scripts": []
+ },
+ "configurations": {
+ "production": {
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kB",
+ "maximumError": "1MB"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "4kB",
+ "maximumError": "8kB"
+ }
+ ],
+ "outputHashing": "all"
+ },
+ "development": {
+ "optimization": false,
+ "extractLicenses": false,
+ "sourceMap": true
+ },
+ "es": {
+ "localize": ["es"]
+ },
+ "de": {
+ "localize": ["de"]
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "configurations": {
+ "production": {
+ "buildTarget": "integration-i18n:build:production"
+ },
+ "development": {
+ "buildTarget": "integration-i18n:build:development"
+ },
+ "es": {
+ "buildTarget": "integration-i18n:build:es"
+ },
+ "de": {
+ "buildTarget": "integration-i18n:build:de"
+ }
+ },
+ "defaultConfiguration": "development"
+ },
+ "extract-i18n": {
+ "builder": "@angular-devkit/build-angular:extract-i18n"
+ },
+ "test": {
+ "builder": "@angular-devkit/build-angular:karma",
+ "options": {
+ "polyfills": [
+ "zone.js",
+ "zone.js/testing",
+ "@angular/localize/init"
+ ],
+ "tsConfig": "tsconfig.spec.json",
+ "assets": [
+ {
+ "glob": "**/*",
+ "input": "public"
+ }
+ ],
+ "styles": [
+ {
+ "input": "node_modules/@progress/kendo-theme-default/dist/all.css"
+ },
+ "src/styles.css"
+ ],
+ "scripts": []
+ }
+ }
+ }
+ }
+ },
+ "cli": {
+ "analytics": false
+ }
+}
\ No newline at end of file
diff --git a/examples/projects/integration-i18n/karma.conf.js b/examples/projects/integration-i18n/karma.conf.js
deleted file mode 100644
index 44600418..00000000
--- a/examples/projects/integration-i18n/karma.conf.js
+++ /dev/null
@@ -1,32 +0,0 @@
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-module.exports = function (config) {
- config.set({
- basePath: '',
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
- plugins: [
- require('karma-jasmine'),
- require('karma-chrome-launcher'),
- require('karma-jasmine-html-reporter'),
- require('karma-coverage-istanbul-reporter'),
- require('@angular-devkit/build-angular/plugins/karma')
- ],
- client: {
- clearContext: false // leave Jasmine Spec Runner output visible in browser
- },
- coverageIstanbulReporter: {
- dir: require('path').join(__dirname, '../../coverage/integration-i18n'),
- reports: ['html', 'lcovonly', 'text-summary'],
- fixWebpackSourcePaths: true
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['Chrome'],
- singleRun: false,
- restartOnFileChange: true
- });
-};
diff --git a/examples/projects/integration-i18n/package.json b/examples/projects/integration-i18n/package.json
new file mode 100644
index 00000000..028c9f58
--- /dev/null
+++ b/examples/projects/integration-i18n/package.json
@@ -0,0 +1,66 @@
+{
+ "name": "integration-i18n",
+ "version": "0.0.0",
+ "scripts": {
+ "ng": "ng",
+ "start": "ng serve",
+ "build": "ng build",
+ "watch": "ng build --watch --configuration development",
+ "test": "ng test"
+ },
+ "private": true,
+ "dependencies": {
+ "@angular/animations": "^19.0.0",
+ "@angular/common": "^19.0.0",
+ "@angular/compiler": "^19.0.0",
+ "@angular/core": "^19.0.0",
+ "@angular/forms": "^19.0.0",
+ "@angular/localize": "^19.0.0",
+ "@angular/platform-browser": "^19.0.0",
+ "@angular/platform-browser-dynamic": "^19.0.0",
+ "@angular/router": "^19.0.0",
+ "@progress/kendo-angular-buttons": "17.2.0",
+ "@progress/kendo-angular-common": "17.2.0",
+ "@progress/kendo-angular-dateinputs": "17.2.0",
+ "@progress/kendo-angular-dialog": "17.2.0",
+ "@progress/kendo-angular-dropdowns": "17.2.0",
+ "@progress/kendo-angular-excel-export": "17.2.0",
+ "@progress/kendo-angular-grid": "^17.2.0",
+ "@progress/kendo-angular-icons": "17.2.0",
+ "@progress/kendo-angular-inputs": "17.2.0",
+ "@progress/kendo-angular-intl": "17.2.0",
+ "@progress/kendo-angular-l10n": "17.2.0",
+ "@progress/kendo-angular-label": "17.2.0",
+ "@progress/kendo-angular-layout": "17.2.0",
+ "@progress/kendo-angular-messages": "^1.59.0",
+ "@progress/kendo-angular-navigation": "17.2.0",
+ "@progress/kendo-angular-pager": "17.2.0",
+ "@progress/kendo-angular-pdf-export": "17.2.0",
+ "@progress/kendo-angular-popup": "17.2.0",
+ "@progress/kendo-angular-progressbar": "17.2.0",
+ "@progress/kendo-angular-toolbar": "17.2.0",
+ "@progress/kendo-angular-treeview": "17.2.0",
+ "@progress/kendo-angular-utils": "17.2.0",
+ "@progress/kendo-data-query": "^1.0.0",
+ "@progress/kendo-drawing": "^1.21.0",
+ "@progress/kendo-licensing": "^1.0.2",
+ "@progress/kendo-svg-icons": "^4.0.0",
+ "@progress/kendo-theme-default": "^10.0.1",
+ "rxjs": "~7.8.0",
+ "tslib": "^2.3.0",
+ "zone.js": "~0.15.0"
+ },
+ "devDependencies": {
+ "@angular-devkit/build-angular": "^19.0.6",
+ "@angular/cli": "^19.0.6",
+ "@angular/compiler-cli": "^19.0.0",
+ "@types/jasmine": "~5.1.0",
+ "jasmine-core": "~5.4.0",
+ "karma": "~6.4.0",
+ "karma-chrome-launcher": "~3.2.0",
+ "karma-coverage": "~2.2.0",
+ "karma-jasmine": "~5.1.0",
+ "karma-jasmine-html-reporter": "~2.1.0",
+ "typescript": "~5.6.2"
+ }
+}
diff --git a/examples/projects/integration-i18n/projects/integration-i18n/locale/messages.xlf b/examples/projects/integration-i18n/projects/integration-i18n/locale/messages.xlf
deleted file mode 100644
index 3d93c25d..00000000
--- a/examples/projects/integration-i18n/projects/integration-i18n/locale/messages.xlf
+++ /dev/null
@@ -1,767 +0,0 @@
-
-
-
-
-
- NO DATA FOUND
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/autocomplete.component.d.ts
- 4
-
- The text displayed in the popup when there are no items
- kendo.autocomplete.noDataText
-
-
- clear
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/autocomplete.component.d.ts
- 7
-
- The title of the clear button
- kendo.autocomplete.clearTitle
-
-
- NO DATA FOUND
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/combobox.component.d.ts
- 4
-
- The text displayed in the popup when there are no items
- kendo.combobox.noDataText
-
-
- clear
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/combobox.component.d.ts
- 7
-
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/multiselect.component.d.ts
- 7
-
- The title of the clear button
- kendo.combobox.clearTitle
-
-
- NO DATA FOUND
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/dropdownlist.component.d.ts
- 4
-
- The text displayed in the popup when there are no items
- kendo.dropdownlist.noDataText
-
-
- NO DATA FOUND
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/multiselect.component.d.ts
- 4
-
- The text displayed in the popup when there are no items
- kendo.multiselect.noDataText
-
-
- increment
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/slider/slider.component.d.ts
- 4
-
- The title of the **Increase** button of the Slider.
- kendo.slider.increment
-
-
- decrement
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/slider/slider.component.d.ts
- 6
-
- The title of the **Decrease** button of the Slider.
- kendo.slider.decrement
-
-
- Drag
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/slider/slider.component.d.ts
- 8
-
- The title of the drag handle of the Slider.
- kendo.slider.dragHandle
-
-
- ON
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/switch/switch.component.d.ts
- 4
-
- The **On** label of the Switch.
- kendo.switch.on
-
-
- OFF
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/switch/switch.component.d.ts
- 6
-
- The **Off** label of the Switch.
- kendo.switch.off
-
-
- Increase value
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/numerictextbox/numerictextbox.component.d.ts
- 4
-
- The title for the **Increment** button in the NumericTextBox
- kendo.numerictextbox.increment
-
-
- Decrease value
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/numerictextbox/numerictextbox.component.d.ts
- 6
-
- The title for the **Decrement** button in the NumericTextBox
- kendo.numerictextbox.decrement
-
-
- TODAY
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/calendar/calendar.component.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.calendar.today
-
-
- Increase value
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/dateinput/dateinput.component.d.ts
- 4
-
- The label for the **Increment** button in the DateInput
- kendo.dateinput.increment
-
-
- Decrease value
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/dateinput/dateinput.component.d.ts
- 7
-
- The label for the **Decrement** button in the DateInput
- kendo.dateinput.decrement
-
-
- TODAY
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/datepicker/datepicker.component.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.datepicker.today
-
-
- Toggle calendar
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/datepicker/datepicker.component.d.ts
- 7
-
- The label for the toggle button in the datepicker component
- kendo.datepicker.toggle
-
-
- Set
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 4
-
- The Accept button text in the timepicker component
- kendo.timepicker.accept
-
-
- Set time
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 7
-
- The label for the Accept button in the timepicker component
- kendo.timepicker.acceptLabel
-
-
- Cancel
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 10
-
- The Cancel button text in the timepicker component
- kendo.timepicker.cancel
-
-
- Cancel changes
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 13
-
- The label for the Cancel button in the timepicker component
- kendo.timepicker.cancelLabel
-
-
- Now
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 16
-
- The Now button text in the timepicker component
- kendo.timepicker.now
-
-
- Select now
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 19
-
- The label for the Now button in the timepicker component
- kendo.timepicker.nowLabel
-
-
- Toggle time list
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timepicker.component.d.ts
- 22
-
- The label for the toggle button in the timepicker component
- kendo.timepicker.toggle
-
-
- TODAY
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/calendar/multiview-calendar.component.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.multiviewcalendar.today
-
-
- Navigate to previous view
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/calendar/multiview-calendar.component.d.ts
- 7
-
- The label for the previous button in the Multiview calendar
- kendo.multiviewcalendar.prevButtonTitle
-
-
- Navigate to next view
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/calendar/multiview-calendar.component.d.ts
- 10
-
- The label for the next button in the Multiview calendar
- kendo.multiviewcalendar.nextButtonTitle
-
-
- Set
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 4
-
- The Accept button text in the timeselector component
- kendo.timeselector.accept
-
-
- Set time
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 7
-
- The label for the Accept button in the timeselector component
- kendo.timeselector.acceptLabel
-
-
- Cancel
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 10
-
- The Cancel button text in the timeselector component
- kendo.timeselector.cancel
-
-
- Cancel changes
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 13
-
- The label for the Cancel button in the timeselector component
- kendo.timeselector.cancelLabel
-
-
- Now
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 16
-
- The Now button text in the timeselector component
- kendo.timeselector.now
-
-
- Select now
-
- ../../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/timepicker/timeselector.component.d.ts
- 19
-
- The label for the Now button in the timeselector component
- kendo.timeselector.nowLabel
-
-
- Drag a column header and drop it here to group by that column
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 4
-
- The label visible in the Grid group panel when it is empty
- kendo.grid.groupPanelEmpty
-
-
- No records available.
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 7
-
- The label visible in the Grid when there are no records
- kendo.grid.noRecords
-
-
- Go to the first page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 10
-
- The label for the first page button in Grid pager
- kendo.grid.pagerFirstPage
-
-
- Go to the previous page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 13
-
- The label for the previous page button in Grid pager
- kendo.grid.pagerPreviousPage
-
-
- Go to the next page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 16
-
- The label for the next page button in Grid pager
- kendo.grid.pagerNextPage
-
-
- Go to the last page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 19
-
- The label for the last page button in Grid pager
- kendo.grid.pagerLastPage
-
-
- Page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 22
-
- The label before the current page number in the Grid pager
- kendo.grid.pagerPage
-
-
- of
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 25
-
- The label before the total pages number in the Grid pager
- kendo.grid.pagerOf
-
-
- items
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 28
-
- The label after the total pages number in the Grid pager
- kendo.grid.pagerItems
-
-
- items per page
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 31
-
- The label for the page size chooser in the Grid pager
- kendo.grid.pagerItemsPerPage
-
-
- Filter
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 34
-
- The label of the filter cell or icon
- kendo.grid.filter
-
-
- Is equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 37
-
- The text of the equal filter operator
- kendo.grid.filterEqOperator
-
-
- Is not equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 40
-
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
-
-
- Is null
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 43
-
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
-
-
- Is not null
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 46
-
- The text of the is not null filter operator
- kendo.grid.filterIsNotNullOperator
-
-
- Is empty
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 49
-
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
-
-
- Is not empty
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 52
-
- The text of the is not empty filter operator
- kendo.grid.filterIsNotEmptyOperator
-
-
- Starts with
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 55
-
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
-
-
- Contains
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 58
-
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
-
-
- Does not contain
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 61
-
- The text of the does not contain filter operator
- kendo.grid.filterNotContainsOperator
-
-
- Ends with
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 64
-
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
-
-
- Is greater than or equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 67
-
- The text of the greater than or equal filter operator
- kendo.grid.filterGteOperator
-
-
- Is greater than
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 70
-
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
- Is less than or equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 73
-
- The text of the less than or equal filter operator
- kendo.grid.filterLteOperator
-
-
- Is less than
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 76
-
- The text of the less than filter operator
- kendo.grid.filterLtOperator
-
-
- Is True
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 79
-
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
-
-
- Is False
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 82
-
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
-
-
- (All)
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 85
-
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
-
-
- Is after or equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 88
-
- The text of the after or equal date filter operator
- kendo.grid.filterAfterOrEqualOperator
-
-
- Is after
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 91
-
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
-
-
- Is before
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 94
-
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
-
-
- Is before or equal to
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 97
-
- The text of the before or equal date filter operator
- kendo.grid.filterBeforeOrEqualOperator
-
-
- Filter
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 100
-
- The text of the filter button
- kendo.grid.filterFilterButton
-
-
- Clear
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 103
-
- The text of the clear filter button
- kendo.grid.filterClearButton
-
-
- And
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 106
-
- The text of the And filter logic
- kendo.grid.filterAndLogic
-
-
- Or
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 109
-
- The text of the Or filter logic
- kendo.grid.filterOrLogic
-
-
- Loading
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 112
-
- The loading text
- kendo.grid.loading
-
-
- Column Menu
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 115
-
- The title of the column menu icon
- kendo.grid.columnMenu
-
-
- Columns
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 118
-
- The text shown in the column menu for the columns item
- kendo.grid.columns
-
-
- Lock
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 121
-
- The text shown in the column menu for the lock item
- kendo.grid.lock
-
-
- Unlock
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 124
-
- The text shown in the column menu for the unlock item
- kendo.grid.unlock
-
-
- Sortable
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 127
-
- The label of the sort icon
- kendo.grid.sortable
-
-
- Sort Ascending
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 130
-
- The text shown in the column menu for the sort ascending item
- kendo.grid.sortAscending
-
-
- Sort Descending
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 133
-
- The text shown in the column menu for the sort descending item
- kendo.grid.sortDescending
-
-
- Sorted Ascending
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 136
-
- The status announcement when a column is sorted ascending
- kendo.grid.sortedAscending
-
-
- Sorted Descending
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 139
-
- The status announcement when a column is sorted descending
- kendo.grid.sortedDescending
-
-
- Not Sorted
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 142
-
- The status announcement when a column is no longer sorted
- kendo.grid.sortedDefault
-
-
- Apply
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 145
-
- The text shown in the column menu or column chooser for the columns apply button
- kendo.grid.columnsApply
-
-
- Reset
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 148
-
- The text shown in the column menu or column chooser for the columns reset button
- kendo.grid.columnsReset
-
-
- Hello, World!
-
- src/app/app.component.html
- 1
-
- An introduction header for this sample
- User welcome
-
-
-
-
diff --git a/examples/projects/integration-i18n/public/favicon.ico b/examples/projects/integration-i18n/public/favicon.ico
new file mode 100644
index 0000000000000000000000000000000000000000..57614f9c967596fad0a3989bec2b1deff33034f6
GIT binary patch
literal 15086
zcmd^G33O9Omi+`8$@{|M-I6TH3wzF-p5CV8o}7f~KxR60LK+ApEFB<$bcciv%@SmA
zV{n>g85YMFFeU*Uvl=i4v)C*qgnb;$GQ=3XTe9{Y%c`mO%su)noNCCQ*@t1WXn|B(hQ7i~
zrUK8|pUkD6#lNo!bt$6)jR!&C?`P5G(`e((P($RaLeq+o0Vd~f11;qB05kdbAOm?r
zXv~GYr_sibQO9NGTCdT;+G(!{4Xs@4fPak8#L8PjgJwcs-Mm#nR_Z0s&u?nDX5^~@
z+A6?}g0|=4e_LoE69pPFO`yCD@BCjgKpzMH0O4Xs{Ahc?K3HC5;l=f
zg>}alhBXX&);z$E-wai+9TTRtBX-bWYY@cl$@YN#gMd~tM_5lj6W%8ah4;uZ;jP@Q
zVbuel1rPA?2@x9Y+u?e`l{Z4ngfG5q5BLH5QsEu4GVpt{KIp1?U)=3+KQ;%7ec8l*
zdV=zZgN5>O3G(3L2fqj3;oBbZZw$Ij@`Juz@?+yy#OPw)>#wsTewVgTK9BGt5AbZ&?K&B3GVF&yu?@(Xj3fR3n+ZP0%+wo)D9_xp>Z$`A4
zfV>}NWjO#3lqumR0`gvnffd9Ka}JJMuHS&|55-*mCD#8e^anA<+sFZVaJe7{=p*oX
zE_Uv?1>e~ga=seYzh{9P+n5<+7&9}&(kwqSaz;1aD|YM3HBiy<))4~QJSIryyqp|
z8nGc(8>3(_nEI4n)n7j(&d4idW1tVLjZ7QbNLXg;LB
ziHsS5pXHEjGJZb59KcvS~wv;uZR-+4qEqow`;JCfB*+b^UL^3!?;-^F%yt=VjU|v
z39SSqKcRu_NVvz!zJzL0CceJaS6%!(eMshPv_0U5G`~!a#I$qI5Ic(>IONej@aH=f
z)($TAT#1I{iCS4f{D2+ApS=$3E7}5=+y(rA9mM#;Cky%b*Gi0KfFA`ofKTzu`AV-9
znW|y@19rrZ*!N2AvDi<_ZeR3O2R{#dh1#3-d%$k${Rx42h+i&GZo5!C^dSL34*AKp
z27mTd>k>?V&X;Nl%GZ(>0s`1UN~Hfyj>KPjtnc|)xM@{H_B9rNr~LuH`Gr5_am&Ep
zTjZA8hljNj5H1Ipm-uD9rC}U{-vR!eay5&6x6FkfupdpT*84MVwGpdd(}ib)zZ3Ky
z7C$pnjc82(W_y_F{PhYj?o!@3__UUvpX)v69aBSzYj3
zdi}YQkKs^SyXyFG2LTRz9{(w}y~!`{EuAaUr6G1M{*%c+kP1olW9z23dSH!G4_HSK
zzae-DF$OGR{ofP*!$a(r^5Go>I3SObVI6FLY)N@o<*gl0&kLo-OT{Tl*7nCz>Iq=?
zcigIDHtj|H;6sR?or8Wd_a4996GI*CXGU}o;D9`^FM!AT1pBY~?|4h^61BY#_yIfO
zKO?E0
zJ{Pc`9rVEI&$xxXu`<5E)&+m(7zX^v0rqofLs&bnQT(1baQkAr^kEsk)15vlzAZ-l
z@OO9RF<+IiJ*O@HE256gCt!bF=NM*vh|WVWmjVawcNoksRTMvR03H{p@cjwKh(CL4
z7_PB(dM=kO)!s4fW!1p0f93YN@?ZSG`
z$B!JaAJCtW$B97}HNO9(x-t30&E}Mo1UPi@Av%uHj~?T|!4JLwV;KCx8xO#b9IlUW
zI6+{a@Wj|<2Y=U;a@vXbxqZNngH8^}LleE_4*0&O7#3iGxfJ%Id>+sb;7{L=aIic8
z|EW|{{S)J-wr@;3PmlxRXU8!e2gm_%s|ReH!reFcY8%$Hl4M5>;6^UDUUae?kOy#h
zk~6Ee_@ZAn48Bab__^bNmQ~+k=02jz)e0d9Z3>G?RGG!65?d1>9}7iG17?P*=GUV-#SbLRw)Hu{zx*azHxWkGNTWl@HeWjA?39Ia|sCi{e;!^`1Oec
zb>Z|b65OM*;eC=ZLSy?_fg$&^2xI>qSLA2G*$nA3GEnp3$N-)46`|36m*sc#4%C|h
zBN<2U;7k>&G_wL4=Ve5z`ubVD&*Hxi)r@{4RCDw7U_D`lbC(9&pG5C*z#W>8>HU)h
z!h3g?2UL&sS!oY5$3?VlA0Me9W5e~V;2jds*fz^updz#AJ%G8w2V}AEE?E^=MK%Xt
z__Bx1cr7+DQmuHmzn*|hh%~eEc9@m05@clWfpEFcr+06%0&dZJH&@8^&@*$qR@}o3
z@Tuuh2FsLz^zH+dN&T&?0G3I?MpmYJ;GP$J!EzjeM#YLJ!W$}MVNb0^HfOA>5Fe~UNn%Zk(PT@~9}1dt)1UQ
zU*B5K?Dl#G74qmg|2>^>0WtLX#Jz{lO4NT`NYB*(L#D|5IpXr9v&7a@YsGp3vLR7L
zHYGHZg7{ie6n~2p$6Yz>=^cEg7tEgk-1YRl%-s7^cbqFb(U7&Dp78+&ut5!Tn(hER
z|Gp4Ed@CnOPeAe|N>U(dB;SZ?NU^AzoD^UAH_vamp6Ws}{|mSq`^+VP1g~2B{%N-!mWz<`)G)>V-<`9`L4?3dM%Qh6<@kba+m`JS{Ya@9Fq*m6$$
zA1%Ogc~VRH33|S9l%CNb4zM%k^EIpqY}@h{w(aBcJ9c05oiZx#SK9t->5lSI`=&l~
z+-Ic)a{FbBhXV$Xt!WRd`R#Jk-$+_Z52rS>?Vpt2IK<84|E-SBEoIw>cs=a{BlQ7O
z-?{Fy_M&84&9|KM5wt~)*!~i~E=(6m8(uCO)I=)M?)&sRbzH$9Rovzd?ZEY}GqX+~
zFbEbLz`BZ49=2Yh-|<`waK-_4!7`ro@zlC|r&I4fc4oyb+m=|c8)8%tZ-z5FwhzDt
zL5kB@u53`d@%nHl0Sp)Dw`(QU&>vujEn?GPEXUW!Wi<+4e%BORl&BIH+SwRcbS}X@
z01Pk|vA%OdJKAs17zSXtO55k!;%m9>1eW9LnyAX4uj7@${O6cfii`49qTNItzny5J
zH&Gj`e}o}?xjQ}r?LrI%FjUd@xflT3|7LA|ka%Q3i}a8gVm<`HIWoJGH=$EGClX^C0lysQJ>UO(q&;`T#8txuoQ_{l^kEV9CAdXuU1Ghg8
zN_6hHFuy&1x24q5-(Z7;!poYdt*`UTdrQOIQ!2O7_+AHV2hgXaEz7)>$LEdG
z<8vE^Tw$|YwZHZDPM!SNOAWG$?J)MdmEk{U!!$M#fp7*Wo}jJ$Q(=8>R`Ats?e|VU?Zt7Cdh%AdnfyN3MBWw{
z$OnREvPf7%z6`#2##_7id|H%Y{vV^vWXb?5d5?a_y&t3@p9t$ncHj-NBdo&X{wrfJ
zamN)VMYROYh_SvjJ=Xd!Ga?PY_$;*L=SxFte!4O6%0HEh%iZ4=gvns7IWIyJHa|hT
z2;1+e)`TvbNb3-0z&DD_)Jomsg-7p_Uh`wjGnU1urmv1_oVqRg#=C?e?!7DgtqojU
zWoAB($&53;TsXu^@2;8M`#z{=rPy?JqgYM0CDf4v@z=ZD|ItJ&8%_7A#K?S{wjxgd
z?xA6JdJojrWpB7fr2p_MSsU4(R7=XGS0+Eg#xR=j>`H@R9{XjwBmqAiOxOL`
zt?XK-iTEOWV}f>Pz3H-s*>W
z4~8C&Xq25UQ^xH6H9kY_RM1$ch+%YLF72AA7^b{~VNTG}Tj#qZltz5Q=qxR`&oIlW
Nr__JTFzvMr^FKp4S3v*(
literal 0
HcmV?d00001
diff --git a/examples/projects/integration-i18n/src/app/app.component.scss b/examples/projects/integration-i18n/src/app/app.component.css
similarity index 100%
rename from examples/projects/integration-i18n/src/app/app.component.scss
rename to examples/projects/integration-i18n/src/app/app.component.css
diff --git a/examples/projects/integration-i18n/src/app/app.component.html b/examples/projects/integration-i18n/src/app/app.component.html
index de667987..7e937a5f 100644
--- a/examples/projects/integration-i18n/src/app/app.component.html
+++ b/examples/projects/integration-i18n/src/app/app.component.html
@@ -1,5 +1,17 @@
Hello, World!
-
-
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/projects/integration-i18n/src/app/app.component.spec.ts b/examples/projects/integration-i18n/src/app/app.component.spec.ts
deleted file mode 100644
index ce614fb2..00000000
--- a/examples/projects/integration-i18n/src/app/app.component.spec.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { TestBed, waitForAsync } from '@angular/core/testing';
-
-import { AppComponent } from './app.component';
-
-describe('AppComponent', () => {
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [
- AppComponent
- ],
- }).compileComponents();
- }));
-
- it('should create the app', waitForAsync(() => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app).toBeTruthy();
- }));
-
- it(`should have as title 'app works!'`, waitForAsync(() => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app.title).toEqual('app works!');
- }));
-
- it('should render title in a h1 tag', waitForAsync(() => {
- const fixture = TestBed.createComponent(AppComponent);
- fixture.detectChanges();
- const compiled = fixture.debugElement.nativeElement;
- expect(compiled.querySelector('h1').textContent).toContain('app works!');
- }));
-});
diff --git a/examples/projects/integration-i18n/src/app/app.component.ts b/examples/projects/integration-i18n/src/app/app.component.ts
index c97e171d..2dcfa027 100644
--- a/examples/projects/integration-i18n/src/app/app.component.ts
+++ b/examples/projects/integration-i18n/src/app/app.component.ts
@@ -1,10 +1,54 @@
import { Component } from '@angular/core';
+import { KENDO_GRID } from "@progress/kendo-angular-grid";
@Component({
selector: 'app-root',
+ imports: [KENDO_GRID],
templateUrl: './app.component.html',
- styleUrls: ['./app.component.scss']
+ styleUrl: './app.component.css'
})
export class AppComponent {
- public title = 'app works!';
+ public gridData: Customer[] = [
+ {
+ Id: "ALFKI",
+ CompanyName: "Alfreds Futterkiste",
+ ContactName: "Maria Anders",
+ ContactTitle: "Sales Representative",
+ City: "Berlin",
+ },
+ {
+ Id: "ANATR",
+ CompanyName: "Ana Trujillo Emparedados y helados",
+ ContactName: "Ana Trujillo",
+ ContactTitle: "Owner",
+ City: "México D.F.",
+ },
+ {
+ Id: "ANTON",
+ CompanyName: "Antonio Moreno TaquerÃa",
+ ContactName: "Antonio Moreno",
+ ContactTitle: "Owner",
+ City: "México D.F.",
+ },
+ {
+ Id: "AROUT",
+ CompanyName: "Around the Horn",
+ ContactName: "Thomas Hardy",
+ ContactTitle: "Sales Representative",
+ City: "London",
+ },
+ {
+ Id: "BERGS",
+ CompanyName: "Berglunds snabbköp",
+ ContactName: "Christina Berglund",
+ ContactTitle: "Order Administrator",
+ City: "Luleå",
+ }];
}
+export interface Customer {
+ Id: string;
+ CompanyName: string;
+ ContactName: string;
+ ContactTitle: string;
+ City: string;
+}
\ No newline at end of file
diff --git a/examples/projects/integration-i18n/src/app/app.config.ts b/examples/projects/integration-i18n/src/app/app.config.ts
new file mode 100644
index 00000000..3e6693b0
--- /dev/null
+++ b/examples/projects/integration-i18n/src/app/app.config.ts
@@ -0,0 +1,9 @@
+import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
+import { provideRouter } from '@angular/router';
+import { provideAnimations } from '@angular/platform-browser/animations';
+
+import { routes } from './app.routes';
+
+export const appConfig: ApplicationConfig = {
+ providers: [provideZoneChangeDetection({ eventCoalescing: true }),provideAnimations(), provideRouter(routes)]
+};
diff --git a/examples/projects/integration-i18n/src/app/app.module.ts b/examples/projects/integration-i18n/src/app/app.module.ts
deleted file mode 100644
index 15e8ecf2..00000000
--- a/examples/projects/integration-i18n/src/app/app.module.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { BrowserModule } from '@angular/platform-browser';
-import { FormsModule } from '@angular/forms';
-import { HttpClientModule } from '@angular/common/http';
-import { NgModule } from '@angular/core';
-
-import { GridModule } from '@progress/kendo-angular-grid';
-
-import { AppComponent } from './app.component';
-
-@NgModule({
- declarations: [
- AppComponent
- ],
- imports: [
- BrowserModule,
- FormsModule,
- HttpClientModule,
- GridModule
- ],
- bootstrap: [AppComponent]
-})
-export class AppModule { }
diff --git a/examples/projects/integration-i18n/src/app/app.routes.ts b/examples/projects/integration-i18n/src/app/app.routes.ts
new file mode 100644
index 00000000..dc39edb5
--- /dev/null
+++ b/examples/projects/integration-i18n/src/app/app.routes.ts
@@ -0,0 +1,3 @@
+import { Routes } from '@angular/router';
+
+export const routes: Routes = [];
diff --git a/examples/projects/integration-i18n/src/assets/.gitkeep b/examples/projects/integration-i18n/src/assets/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/examples/projects/integration-i18n/src/environments/environment.prod.ts b/examples/projects/integration-i18n/src/environments/environment.prod.ts
deleted file mode 100644
index 3612073b..00000000
--- a/examples/projects/integration-i18n/src/environments/environment.prod.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export const environment = {
- production: true
-};
diff --git a/examples/projects/integration-i18n/src/environments/environment.ts b/examples/projects/integration-i18n/src/environments/environment.ts
deleted file mode 100644
index 30d7bccb..00000000
--- a/examples/projects/integration-i18n/src/environments/environment.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-// This file can be replaced during build by using the `fileReplacements` array.
-// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
-// The list of file replacements can be found in `angular.json`.
-
-export const environment = {
- production: false
-};
-
-/*
- * For easier debugging in development mode, you can import the following file
- * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
- *
- * This import should be commented out in production mode because it will have a negative impact
- * on performance if an error is thrown.
- */
-// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
diff --git a/examples/projects/integration-i18n/src/favicon.ico b/examples/projects/integration-i18n/src/favicon.ico
deleted file mode 100644
index 8081c7ceaf2be08bf59010158c586170d9d2d517..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 5430
zcmc(je{54#6vvCoAI3i*G5%$U7!sA3wtMZ$fH6V9C`=eXGJb@R1%(I_{vnZtpD{6n
z5Pl{DmxzBDbrB>}`90e12m8T*36WoeDLA&SD_hw{H^wM!cl_RWcVA!I+x87ee975;
z@4kD^=bYPn&pmG@(+JZ`rqQEKxW<}RzhW}I!|ulN=fmjVi@x{p$cC`)5$a!)X&U+blKNvN5tg=uLvuLnuqRM;Yc*swiexsoh#XPNu{9F#c`G
zQLe{yWA(Y6(;>y|-efAy11k<09(@Oo1B2@0`PtZSkqK&${
zgEY}`W@t{%?9u5rF?}Y7OL{338l*JY#P!%MVQY@oqnItpZ}?s
z!r?*kwuR{A@jg2Chlf0^{q*>8n5Ir~YWf*wmsh7B5&EpHfd5@xVaj&gqsdui^spyL
zB|kUoblGoO7G(MuKTfa9?pGH0@QP^b#!lM1yHWLh*2iq#`C1TdrnO-d#?Oh@XV2HK
zKA{`eo{--^K&MW66Lgsktfvn#cCAc*(}qsfhrvOjMGLE?`dHVipu1J3Kgr%g?cNa8
z)pkmC8DGH~fG+dlrp(5^-QBeEvkOvv#q7MBVLtm2oD^$lJZx--_=K&Ttd=-krx(Bb
zcEoKJda@S!%%@`P-##$>*u%T*mh+QjV@)Qa=Mk1?#zLk+M4tIt%}wagT{5J%!tXAE;r{@=bb%nNVxvI+C+$t?!VJ@0d@HIyMJTI{vEw0Ul
ze(ha!e&qANbTL1ZneNl45t=#Ot??C0MHjjgY8%*mGisN|S6%g3;Hlx#fMNcL<87MW
zZ>6moo1YD?P!fJ#Jb(4)_cc50X5n0KoDYfdPoL^iV`k&o{LPyaoqMqk92wVM#_O0l
z09$(A-D+gVIlq4TA&{1T@BsUH`Bm=r#l$Z51J-U&F32+hfUP-iLo=jg7Xmy+WLq6_tWv&`wDlz#`&)Jp~iQf
zZP)tu>}pIIJKuw+$&t}GQuqMd%Z>0?t%&BM&Wo^4P^Y
z)c6h^f2R>X8*}q|bblAF?@;%?2>$y+cMQbN{X$)^R>vtNq_5AB|0N5U*d^T?X9{xQnJYeU{
zoZL#obI;~Pp95f1`%X3D$Mh*4^?O?IT~7HqlWguezmg?Ybq|7>qQ(@pPHbE9V?f|(
z+0xo!#m@Np9PljsyxBY-UA*{U*la#8Wz2sO|48_-5t8%_!n?S$zlGe+NA%?vmxjS-
zHE5O3ZarU=X}$7>;Okp(UWXJxI%G_J-@IH;%5#Rt$(WUX?6*Ux!IRd$dLP6+SmPn=
z8zjm4jGjN772R{FGkXwcNv8GBcZI#@Y2m{RNF_w8(Z%^A*!bS*!}s6sh*NnURytky
humW;*g7R+&|Ledvc-
IntegrationI18n
-
diff --git a/examples/projects/integration-i18n/src/locale/messages.de.xlf b/examples/projects/integration-i18n/src/locale/messages.de.xlf
new file mode 100644
index 00000000..8cf6d841
--- /dev/null
+++ b/examples/projects/integration-i18n/src/locale/messages.de.xlf
@@ -0,0 +1,2871 @@
+
+
+
+
+
+
+ {buttonText} geteilter Button
+
+ node_modules/@progress/kendo-angular-buttons/fesm2022/progress-kendo-angular-buttons.mjs
+ 5256,5258
+
+ The text for the SplitButton aria-label
+ kendo.splitbutton.splitButtonLabel
+
+
+ Today
+ Heute
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4782
+
+ The label for the today button in the calendar header
+ kendo.multiviewcalendar.today
+
+
+ Navigate to previous view
+ Vorheriger Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4783,4785
+
+ The label for the previous button in the Multiview calendar
+ kendo.multiviewcalendar.prevButtonTitle
+
+
+ Navigate to next view
+ Nächster Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4786,4788
+
+ The label for the next button in the Multiview calendar
+ kendo.multiviewcalendar.nextButtonTitle
+
+
+ Navigate to parent view
+ Auf Hauptansicht navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4789,4794
+
+ The title of the parent view button in the Multiview calendar header
+ kendo.multiviewcalendar.parentViewButtonTitle
+
+
+ Today
+ Heute
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7962
+
+ The label for the today button in the calendar header
+ kendo.calendar.today
+
+
+ Navigate to previous view
+ Vorheriger Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7963,7965
+
+ The title of the previous button in the Classic calendar
+ kendo.calendar.prevButtonTitle
+
+
+ Navigate to next view
+ Nächster Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7966,7968
+
+ The title of the next button in the Classic calendar
+ kendo.calendar.nextButtonTitle
+
+
+ Navigate to parent view
+ Auf übergeordnete Seite navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7969,7973
+
+ The title of the parent view button in the calendar header
+ kendo.calendar.parentViewButtonTitle
+
+
+ Increase value
+ Wert erhöhen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9379,9381
+
+ The label for the **Increment** button in the DateInput
+ kendo.dateinput.increment
+
+
+ Decrease value
+ Wert verringern
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9382,9385
+
+ The label for the **Decrement** button in the DateInput
+ kendo.dateinput.decrement
+
+
+ clear
+ Clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+ Today
+ Heute
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11056
+
+ The label for the today button in the calendar header
+ kendo.datepicker.today
+
+
+ Toggle calendar
+ Kalender umschalten
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11057,11059
+
+ The title of the toggle button in the datepicker component
+ kendo.datepicker.toggle
+
+
+ Navigate to previous view
+ Auf vorherige Seite navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11060,11062
+
+ The title of the previous button in the Classic calendar
+ kendo.datepicker.prevButtonTitle
+
+
+ Navigate to next view
+ Auf nächste Seite navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11063,11065
+
+ The title of the next button in the Classic calendar
+ kendo.datepicker.nextButtonTitle
+
+
+ Navigate to parent view
+ Auf Hauptansicht navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11066,11069
+
+ The title of the parent view button in the calendar header
+ kendo.datepicker.parentViewButtonTitle
+
+
+ clear
+ Clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11070,11073
+
+ The title of the clear button
+ kendo.datepicker.clearTitle
+
+
+ Set
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+ Set time
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13273,13275
+
+ The label for the Accept button in the timeselector component
+ kendo.timeselector.acceptLabel
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+ Cancel changes
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13279,13282
+
+ The label for the Cancel button in the timeselector component
+ kendo.timeselector.cancelLabel
+
+
+ Now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.now
+
+
+ Select now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13285,13289
+
+ The label for the Now button in the timeselector component
+ kendo.timeselector.nowLabel
+
+
+ Set
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14713
+
+ The Accept button text in the timepicker component
+ kendo.timepicker.accept
+
+
+ Set time
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14714,14716
+
+ The label for the Accept button in the timepicker component
+ kendo.timepicker.acceptLabel
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14719
+
+ The Cancel button text in the timepicker component
+ kendo.timepicker.cancel
+
+
+ Cancel changes
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14720,14723
+
+ The label for the Cancel button in the timepicker component
+ kendo.timepicker.cancelLabel
+
+
+ Now
+ Jetzt
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14725
+
+ The Now button text in the timepicker component
+ kendo.timepicker.now
+
+
+ Select now
+ Jetzt
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14726,14728
+
+ The label for the Now button in the timepicker component
+ kendo.timepicker.nowLabel
+
+
+ Toggle time list
+ Zeitleiste umschalten
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14729,14731
+
+ The label for the toggle button in the timepicker component
+ kendo.timepicker.toggle
+
+
+ Hour
+ Stunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14734
+
+ The label for the hour part in the timepicker component
+ kendo.timepicker.hour
+
+
+ Minute
+ Minute
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14737
+
+ The label for the minute part in the timepicker component
+ kendo.timepicker.minute
+
+
+ Second
+ Sekunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14740
+
+ The label for the second part in the timepicker component
+ kendo.timepicker.second
+
+
+ Millisecond
+ Millisekunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14741,14743
+
+ The label for the millisecond part in the timepicker component
+ kendo.timepicker.millisecond
+
+
+ Dayperiod
+ Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14744,14747
+
+ The label for the dayperiod part in the timepicker component
+ kendo.timepicker.dayperiod
+
+
+ clear
+ Clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
+
+ The title of the clear button
+ kendo.timepicker.clearTitle
+
+
+ Date
+ Datum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16870
+
+ The Date tab text in the datetimepicker popup header
+ kendo.datetimepicker.dateTab
+
+
+ Date tab
+ Datum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16871,16873
+
+ The label for the Date tab in the datetimepicker popup header
+ kendo.datetimepicker.dateTabLabel
+
+
+ Time
+ Zeit
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16876
+
+ The Time tab text in the datetimepicker popup header
+ kendo.datetimepicker.timeTab
+
+
+ Time tab
+ Zeit
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16877,16879
+
+ The label for the Time tab in the datetimepicker popup header
+ kendo.datetimepicker.timeTabLabel
+
+
+ Toggle popup
+ Umschalten
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16880,16882
+
+ The title of the toggle button in the datetimepicker component
+ kendo.datetimepicker.toggle
+
+
+ Set
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16885
+
+ The Accept button text in the datetimepicker component
+ kendo.datetimepicker.accept
+
+
+ Set
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16888
+
+ The label for the Accept button in the datetimepicker component
+ kendo.datetimepicker.acceptLabel
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16891
+
+ The Cancel button text in the datetimepicker component
+ kendo.datetimepicker.cancel
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16894,16895
+
+ The label for the Cancel button in the datetimepicker component
+ kendo.datetimepicker.cancelLabel
+
+
+ NOW
+ JETZT
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16897
+
+ The Now button text in the timepicker component
+ kendo.datetimepicker.now
+
+
+ Select now
+ Jetzt
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16898,16900
+
+ The label for the Now button in the timepicker component
+ kendo.datetimepicker.nowLabel
+
+
+ Today
+ HEUTE
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16903
+
+ The label for the today button in the calendar header
+ kendo.datetimepicker.today
+
+
+ Navigate to previous view
+ Auf vorherige Seite navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16904,16906
+
+ The title of the previous button in the Classic calendar
+ kendo.datetimepicker.prevButtonTitle
+
+
+ Navigate to next view
+ Auf nächste Seite navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16907,16909
+
+ The title of the next button in the Classic calendar
+ kendo.datetimepicker.nextButtonTitle
+
+
+ Navigate to parent view
+ Auf Hauptansicht navigieren
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16910,16913
+
+ The title of the parent view button in the calendar header
+ kendo.datetimepicker.parentViewButtonTitle
+
+
+ Hour
+ Stunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16915
+
+ The label for the hour part in the timepicker component
+ kendo.datetimepicker.hour
+
+
+ Minute
+ Minute
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16918
+
+ The label for the minute part in the timepicker component
+ kendo.datetimepicker.minute
+
+
+ Second
+ Sekunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16921
+
+ The label for the second part in the timepicker component
+ kendo.datetimepicker.second
+
+
+ Millisecond
+ Millisekunde
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16922,16924
+
+ The label for the millisecond part in the timepicker component
+ kendo.datetimepicker.millisecond
+
+
+ Dayperiod
+ Zeitraum
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16925,16928
+
+ The label for the dayperiod part in the timepicker component
+ kendo.datetimepicker.dayperiod
+
+
+ clear
+ Clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
+
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
+
+
+ Set
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19003
+
+ The Accept button text in the timepicker component
+ kendo.daterangepopup.accept
+
+
+ Set time
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19004,19006
+
+ The label for the Accept button in the timepicker component
+ kendo.daterangepopup.acceptLabel
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19009
+
+ The Cancel button text in the timepicker component
+ kendo.daterangepopup.cancel
+
+
+ Cancel changes
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19010,19014
+
+ The label for the Cancel button in the timepicker component
+ kendo.daterangepopup.cancelLabel
+
+
+ Close
+ Schließen
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 563,564
+
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 1205,1206
+
+ The title of the close button
+ kendo.dialog.closeTitle
+
+
+ Close
+ Schließen
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
+
+ The title of the close button
+ kendo.window.closeTitle
+
+
+ Restore
+ Wiederherstellen
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
+
+ The title of the restore button
+ kendo.window.restoreTitle
+
+
+ Maximize
+ Maximieren
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
+
+ The title of the maximize button
+ kendo.window.maximizeTitle
+
+
+ Minimize
+ Minimieren
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
+
+ The title of the minimize button
+ kendo.window.minimizeTitle
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4283,4286
+
+ The text displayed in the popup when there are no items
+ kendo.autocomplete.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
+
+ The title of the clear button
+ kendo.autocomplete.clearTitle
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4289,4295
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.autocomplete.popupLabel
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6358,6361
+
+ The text displayed in the popup when there are no items
+ kendo.combobox.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
+
+ The title of the clear button
+ kendo.combobox.clearTitle
+
+
+ Select
+ Auswählen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6366
+
+ The text set as aria-label on the select button
+ kendo.combobox.selectButtonText
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6367,6373
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.combobox.popupLabel
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8387,8389
+
+ The text displayed in the popup when there are no items
+ kendo.dropdownlist.noDataText
+
+
+ Select
+ Auswählen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8392
+
+ The text set as aria-label on the select button
+ kendo.dropdownlist.selectButtonText
+
+
+ Filter
+ Filter
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8395
+
+ The text set as aria-label on the filter input
+ kendo.dropdownlist.filterInputLabel
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8396,8399
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdownlist.popupLabel
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11130,11133
+
+ The text displayed in the popup when there are no items
+ kendo.multiselect.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
+
+ The title of the clear button
+ kendo.multiselect.clearTitle
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11136,11139
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselect.popupLabel
+
+
+ Apply
+ Anwenden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11141
+
+ The text of the Apply button in the action sheet
+ kendo.multiselect.applyButton
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11143,11147
+
+ The text of the Cancel button in the action sheet
+ kendo.multiselect.cancelButton
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12130,12132
+
+ The text displayed in the popup when there are no items
+ kendo.multicolumncombobox.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
+
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
+
+
+ Select
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
+
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12139,12145
+
+ The label of the popup element that contains the list of options
+ when its role is 'region'
+ kendo.multicolumncombobox.popupLabel
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14039,14042
+
+ The text displayed in the popup when there are no items
+ kendo.dropdowntree.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+ Select
+ Auswählen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14047
+
+ The text set as aria-label on the select button
+ kendo.dropdowntree.selectButtonText
+
+
+ Filter
+ Filter
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14050
+
+ The text set as aria-label on the filter input
+ kendo.dropdowntree.filterInputLabel
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14051,14057
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdowntree.popupLabel
+
+
+ NO DATA FOUND
+ Keine Daten gefunden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16691,16694
+
+ The text displayed in the popup when there are no items
+ kendo.multiselecttree.noDataText
+
+
+ clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+ Check all
+ Alle auswählen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16697,16699
+
+ The text displayed for the check-all checkbox
+ kendo.multiselecttree.checkAllText
+
+
+ Filter
+ Filter
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16702
+
+ The text set as aria-label on the filter input
+ kendo.multiselecttree.filterInputLabel
+
+
+ Options list
+ Optionsliste
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16703,16706
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselecttree.popupLabel
+
+
+ Apply
+ Anwenden
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16708
+
+ The text of the Apply button in the action sheet
+ kendo.multiselecttree.applyButton
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16710,16714
+
+ The text of the Cancel button in the action sheet
+ kendo.multiselecttree.cancelButton
+
+
+ Drag a column header and drop it here to group by that column
+ Ziehen Sie eine Spaltenüberschrift hierher, um nach dieser Spalte zu gruppieren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24970,24972
+
+ The label visible in the Grid group panel when it is empty
+ kendo.grid.groupPanelEmpty
+
+
+ No records available.
+ Keine Datensätze verfügbar.
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24973,24976
+
+ The label visible in the Grid when there are no records
+ kendo.grid.noRecords
+
+
+
+ Zeilennavigation, Seite {currentPage} von {totalPages}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24976,24978
+
+ The label for the Grid pager
+ kendo.grid.pagerLabel
+
+
+ Go to the first page
+ Zur ersten Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24979,24981
+
+ The label for the first page button in Grid pager
+ kendo.grid.pagerFirstPage
+
+
+ Go to the previous page
+ Zur vorherigen Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24982,24984
+
+ The label for the previous page button in Grid pager
+ kendo.grid.pagerPreviousPage
+
+
+ Go to the next page
+ Zur nächsten Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24985,24987
+
+ The label for the next page button in Grid pager
+ kendo.grid.pagerNextPage
+
+
+ Go to the last page
+ Zur letzten Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24988,24990
+
+ The label for the last page button in Grid pager
+ kendo.grid.pagerLastPage
+
+
+ Page
+ Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24993
+
+ The label before the current page number in the Grid pager
+ kendo.grid.pagerPage
+
+
+ of
+ von
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24996
+
+ The label before the total pages number in the Grid pager
+ kendo.grid.pagerOf
+
+
+ items
+ Elemente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24999
+
+ The label after the total pages number in the Grid pager
+ kendo.grid.pagerItems
+
+
+ Page Number
+ Seitennummer
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25000,25002
+
+ The label for the pager input in the Grid pager
+ kendo.grid.pagerPageNumberInputTitle
+
+
+ items per page
+ Elemente pro Seite
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25003,25005
+
+ The label for the page size chooser in the Grid pager
+ kendo.grid.pagerItemsPerPage
+
+
+ Type a page number
+ Type a page number
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25006,25011
+
+ The text of the aria-label attribute applied to the input element for entering the page number
+ kendo.grid.pagerInputLabel
+
+
+ Filter
+ Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25011
+
+ The label of the filter cell or icon
+ kendo.grid.filter
+
+
+
+ {columnName} Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25012,25014
+
+ The label of the filter row and menu inputs
+ kendo.grid.filterInputLabel
+
+
+
+ {columnName} Filter Menü
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25015,25017
+
+ The title of the filter menu icon
+ kendo.grid.filterMenuTitle
+
+
+
+ {columnName} Filter Operatoren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25018,25020
+
+ The label of the filter menu operators dropdown
+ kendo.grid.filterMenuOperatorsDropDownLabel
+
+
+
+ Filterzelle Operatoren für {columnName}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25021,25023
+
+ The label of the filter cell operators dropdown
+ kendo.grid.filterCellOperatorLabel
+
+
+
+ Boolesche Filterzelle für {columnName}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25024,25026
+
+ The label of the boolean filter cell dropdown
+ kendo.grid.booleanFilterCellLabel
+
+
+
+ {columnName} Filter Logik
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25027,25029
+
+ The label of the filter menu logic dropdown
+ kendo.grid.filterMenuLogicDropDownLabel
+
+
+ Is equal to
+ ist gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25030,25032
+
+ The text of the equal filter operator
+ kendo.grid.filterEqOperator
+
+
+ Is not equal to
+ ist nicht gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25033,25035
+
+ The text of the not equal filter operator
+ kendo.grid.filterNotEqOperator
+
+
+ Is null
+ ist Null
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25037,25038
+
+ The text of the is null filter operator
+ kendo.grid.filterIsNullOperator
+
+
+ Is not null
+ ist nicht Null
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25039,25041
+
+ The text of the is not null filter operator
+ kendo.grid.filterIsNotNullOperator
+
+
+ Is empty
+ ist leer
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25042,25044
+
+ The text of the is empty filter operator
+ kendo.grid.filterIsEmptyOperator
+
+
+ Is not empty
+ ist nicht leer
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25045,25047
+
+ The text of the is not empty filter operator
+ kendo.grid.filterIsNotEmptyOperator
+
+
+ Starts with
+ beginnt mit
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25048,25050
+
+ The text of the starts with filter operator
+ kendo.grid.filterStartsWithOperator
+
+
+ Contains
+ beinhaltet
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25051,25053
+
+ The text of the contains filter operator
+ kendo.grid.filterContainsOperator
+
+
+ Does not contain
+ beinhaltet nicht
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25054,25056
+
+ The text of the does not contain filter operator
+ kendo.grid.filterNotContainsOperator
+
+
+ Ends with
+ endet mit
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25057,25059
+
+ The text of the ends with filter operator
+ kendo.grid.filterEndsWithOperator
+
+
+ Is greater than or equal to
+ ist größer als oder gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25060,25062
+
+ The text of the greater than or equal filter operator
+ kendo.grid.filterGteOperator
+
+
+ Is greater than
+ ist größer als
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25063,25065
+
+ The text of the greater than filter operator
+ kendo.grid.filterGtOperator
+
+
+ Is less than or equal to
+ ist kleiner als oder gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25066,25068
+
+ The text of the less than or equal filter operator
+ kendo.grid.filterLteOperator
+
+
+ Is less than
+ ist kleiner als
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25069,25071
+
+ The text of the less than filter operator
+ kendo.grid.filterLtOperator
+
+
+ Is True
+ ist richtig
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25073,25074
+
+ The text of the IsTrue boolean filter option
+ kendo.grid.filterIsTrue
+
+
+ Is False
+ ist falsch
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25075,25077
+
+ The text of the IsFalse boolean filter option
+ kendo.grid.filterIsFalse
+
+
+ (All)
+ (Alle)
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25080
+
+ The text of the (All) boolean filter option
+ kendo.grid.filterBooleanAll
+
+
+ Is after or equal to
+ ist später als oder gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25081,25083
+
+ The text of the after or equal date filter operator
+ kendo.grid.filterAfterOrEqualOperator
+
+
+ Is after
+ ist später als
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25084,25086
+
+ The text of the after date filter operator
+ kendo.grid.filterAfterOperator
+
+
+ Is before
+ ist früher als
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25087,25089
+
+ The text of the before date filter operator
+ kendo.grid.filterBeforeOperator
+
+
+ Is before or equal to
+ ist früher als oder gleich
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25090,25093
+
+ The text of the before or equal date filter operator
+ kendo.grid.filterBeforeOrEqualOperator
+
+
+ Filter
+ Filtern
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+ Clear
+ Löschen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25098
+
+ The text of the clear filter button
+ kendo.grid.filterClearButton
+
+
+ And
+ und
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+ Or
+ oder
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25104,25105
+
+ The text of the Or filter logic
+ kendo.grid.filterOrLogic
+
+
+ Loading
+ Laden
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+ Data table
+ Datentabelle
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25108,25110
+
+ The Grid aria-label
+ kendo.grid.gridLabel
+
+
+
+ {columnName} Spaltenmenü
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25111,25113
+
+ The title of the column menu icon
+ kendo.grid.columnMenu
+
+
+ Columns
+ Spalten
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25115,25116
+
+ The text shown in the column menu for the columns item
+ kendo.grid.columns
+
+
+ Lock
+ Sperren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25119
+
+ The text shown in the column menu for the lock item
+ kendo.grid.lock
+
+
+ Unlock
+ Entsperren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25122
+
+ The text shown in the column menu for the unlock item
+ kendo.grid.unlock
+
+
+ Set Column Position
+ Spaltenposition setzen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25123,25126
+
+ The text shown in the column menu for the set column position item
+ kendo.grid.setColumnPosition
+
+
+ Stick
+ Anheften
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25128
+
+ The text shown in the column menu for the stick item
+ kendo.grid.stick
+
+
+ Unstick
+ Loslösen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25130,25132
+
+ The text shown in the column menu for the unstick item
+ kendo.grid.unstick
+
+
+ Sortable
+ Sortierbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+ Sort Ascending
+ Aufsteigend sortieren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25135,25137
+
+ The text shown in the column menu for the sort ascending item
+ kendo.grid.sortAscending
+
+
+ Sort Descending
+ Absteigend sortieren
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25138,25140
+
+ The text shown in the column menu for the sort descending item
+ kendo.grid.sortDescending
+
+
+ Autosize All Columns
+ Autogröße für alle Spalten
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25141,25143
+
+ The text shown in the column menu for the autosize all columns item
+ kendo.grid.autosizeAllColumns
+
+
+ Autosize This Column
+ Autogröße für diese Spalte
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25144,25146
+
+ The text shown in the column menu for the autosize this column item
+ kendo.grid.autosizeThisColumn
+
+
+ Not Sorted
+ Nicht sortiert
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25147,25149
+
+ The status announcement when a column is no longer sorted
+ kendo.grid.sortedDefault
+
+
+ Sorted Ascending
+ Aufsteigend sortiert
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25150,25152
+
+ The title of the Group Chip indicating the ascending sorting order of the groups
+ kendo.grid.sortedAscending
+
+
+ Sorted Descending
+ Absteigend sortiert
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25153,25155
+
+ The title of the Group Chip indicating the descending sorting order of the groups
+ kendo.grid.sortedDescending
+
+
+ Apply
+ Ãœbernehmen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25158
+
+ The text shown in the column menu or column chooser for the columns apply button
+ kendo.grid.columnsApply
+
+
+ Reset
+ Zurücksetzen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25161,25162
+
+ The text shown in the column menu or column chooser for the columns reset button
+ kendo.grid.columnsReset
+
+
+ Expand Details
+ Details anzeigen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25162,25164
+
+ The title of the expand icon of detail rows.
+ kendo.grid.detailExpand
+
+
+ Collapse Details
+ Details verbergen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25165,25167
+
+ The title of the collapse icon of detail rows.
+ kendo.grid.detailCollapse
+
+
+ TODAY
+ Heute
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25170
+
+ The text of the Today button of the Date filter.
+ kendo.grid.filterDateToday
+
+
+ Toggle Calendar
+ Kalender umschalten
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25171,25173
+
+ The title of the Toggle button of the Date filter.
+ kendo.grid.filterDateToggle
+
+
+ Decrement
+ Wert verringern
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25174,25176
+
+ The title of the Decrement button of the Numeric filter.
+ kendo.grid.filterNumericDecrement
+
+
+ Increment
+ Wert erhöhen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25177,25179
+
+ The title of the Increment button of the Numeric filter.
+ kendo.grid.filterNumericIncrement
+
+
+ Select Row
+ Zeile auswählen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25180,25182
+
+ The labels of the checkbox column checkboxes.
+ kendo.grid.selectionCheckboxLabel
+
+
+ Select All Rows
+ Alle Zeilen auswählen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25183,25185
+
+ The label of the checkbox column select all checkbox.
+ kendo.grid.selectAllCheckboxLabel
+
+
+ Collapse Group
+ Gruppe verbergen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25186,25188
+
+ The text of the title and aria-label attributes applied to the collapse icon of group rows.
+ kendo.grid.groupCollapse
+
+
+ Expand Group
+ Gruppe anzeigen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25189,25191
+
+ The text of the title and aria-label attributes applied to the expand icon of group rows.
+ kendo.grid.groupExpand
+
+
+ Select page
+ Seite auswählen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25192,25195
+
+ The text of the title and aria-label attributes applied to the page chooser in the Grid Pager
+ kendo.grid.pagerSelectPage
+
+
+ Top toolbar
+ Obere Toolbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25195,25197
+
+ The label for the Grid top toolbar
+ kendo.grid.topToolbarLabel
+
+
+ Bottom toolbar
+ Untere Toolbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25198,25200
+
+ The label for the Grid bottom toolbar
+ kendo.grid.bottomToolbarLabel
+
+
+ Group panel
+ Gruppenpanel
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25201,25203
+
+ The label for the Grid group panel toolbar
+ kendo.grid.groupPanelLabel
+
+
+ Drag row
+ Zeile ziehen
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25204,25206
+
+ The label for the Grid drag row handle
+ kendo.grid.dragRowHandleLabel
+
+
+ Filter
+ Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25209
+
+ The title for the column menu Filter tab
+ kendo.grid.columnMenuFilterTabTitle
+
+
+ General
+ Generell
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25211,25212
+
+ The title for the column menu General tab
+ kendo.grid.columnMenuGeneralTabTitle
+
+
+ Columns
+ Spalten
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25214,25215
+
+ The title for the column menu Columns tab
+ kendo.grid.columnMenuColumnsTabTitle
+
+
+ Move as previous
+ Move as previous
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25216,25218
+
+ The text for the Group pane Chip Menu Move as previous item
+ kendo.grid.groupChipMenuPrevious
+
+
+ Move as next
+ Move as next
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25219,25223
+
+ The text for the Group pane Chip Menu Move as next item
+ kendo.grid.groupChipMenuNext
+
+
+ increment
+ Wert erhöhen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1502,1503
+
+ The title of the **Increase** button of the Slider.
+ kendo.slider.increment
+
+
+ decrement
+ Wert verringern
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1504,1505
+
+ The title of the **Decrease** button of the Slider.
+ kendo.slider.decrement
+
+
+ Drag
+ Ziehen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1507,1511
+
+ The title of the drag handle of the Slider.
+ kendo.slider.dragHandle
+
+
+ Drag
+ Ziehen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2244
+
+ The title of the **Start** drag handle of the Slider.
+ kendo.rangeslider.dragHandleStart
+
+
+ Drag
+ Ziehen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2246,2251
+
+ The title of the **End** drag handle of the Slider.
+ kendo.rangeslider.dragHandleEnd
+
+
+ ON
+ Ein
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2921
+
+ The **On** label of the Switch.
+ kendo.switch.on
+
+
+ OFF
+ Aus
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2923,2927
+
+ The **Off** label of the Switch.
+ kendo.switch.off
+
+
+ Increase value
+ Wert erhöhen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4801,4802
+
+ The title for the **Increment** button in the NumericTextBox
+ kendo.numerictextbox.increment
+
+
+ Decrease value
+ Wert verringern
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4803,4808
+
+ The title for the **Decrement** button in the NumericTextBox
+ kendo.numerictextbox.decrement
+
+
+ Colorgradient no color chosen
+ Farbverlauf keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8922,8923
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorgradient.colorGradientNoColor
+
+
+ Choose color
+ Farbe auswählen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8924,8926
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorgradient.colorGradientHandle
+
+
+ Clear value
+ Wert leeren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8926,8927
+
+ The title for the clear button.
+ kendo.colorgradient.clearButton
+
+
+ Set hue
+ Farbton setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8929
+
+ The title for the hue slider handle.
+ kendo.colorgradient.hueSliderHandle
+
+
+ Set opacity
+ Deckkraft setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8930,8931
+
+ The title for the opacity slider handle.
+ kendo.colorgradient.opacitySliderHandle
+
+
+ Pass
+ Erfolgreich
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8933
+
+ The pass message for the contrast tool.
+ kendo.colorgradient.passContrast
+
+
+ Fail
+ Fehlgeschlagen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8935
+
+ The fail message for the contrast tool.
+ kendo.colorgradient.failContrast
+
+
+ Contrast ratio
+ Kontrastverhältnis
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8936,8937
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorgradient.contrastRatio
+
+
+ Change color format
+ Farbformat ändern
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8938,8939
+
+ The message for the input format toggle button.
+ kendo.colorgradient.formatButton
+
+
+ Red channel
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8940,8941
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
+
+
+ Green channel
+ Grüner Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8942,8943
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorgradient.greenChannelLabel
+
+
+ Blue channel
+ Blauer Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8944,8945
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorgradient.blueChannelLabel
+
+
+ Alpha channel
+ Alpha Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8946,8947
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorgradient.alphaChannelLabel
+
+
+ R
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8949
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
+
+
+ G
+ Grün
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8951
+
+ The placeholder for the green color input.
+ kendo.colorgradient.greenInputPlaceholder
+
+
+ B
+ Blau
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8953
+
+ The placeholder for the blue color input.
+ kendo.colorgradient.blueInputPlaceholder
+
+
+ HEX
+ HEX Farbe
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8955,8957
+
+ The placeholder for the HEX color input.
+ kendo.colorgradient.hexInputPlaceholder
+
+
+ Colorpalette no color chosen
+ Farbverlauf keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 9916,9920
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpalette.colorPaletteNoColor
+
+
+ Flatcolorpicker no color chosen
+ Farbauswahl keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10992,10993
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.flatcolorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+ Farbverlauf keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10994,10995
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.flatcolorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+ Farben Palette keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10996,10997
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.flatcolorpicker.colorPaletteNoColor
+
+
+ Choose color
+ Farbe auswählen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10998,11000
+
+ The title for the gradient color drag handle chooser.
+ kendo.flatcolorpicker.colorGradientHandle
+
+
+ Clear value
+ Wert leeren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11000,11001
+
+ The title for the clear button.
+ kendo.flatcolorpicker.clearButton
+
+
+ Set hue
+ Farbton setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11003
+
+ The title for the hue slider handle.
+ kendo.flatcolorpicker.hueSliderHandle
+
+
+ Set opacity
+ Deckkraft setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11004,11005
+
+ The title for the opacity slider handle.
+ kendo.flatcolorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+ Kontrastverhältnis
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11006,11007
+
+ The contrast ratio message for the contrast tool.
+ kendo.flatcolorpicker.contrastRatio
+
+
+ Color preview
+ Farbvorschau
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11008,11009
+
+ The message for the color preview pane.
+ kendo.flatcolorpicker.previewColor
+
+
+ Revert selection
+ Auswahl zurücksetzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11010,11011
+
+ The message for the selected color pane.
+ kendo.flatcolorpicker.revertSelection
+
+
+ Gradient view
+ Farbverlauf Ansicht
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11012,11013
+
+ The message for the gradient view button.
+ kendo.flatcolorpicker.gradientView
+
+
+ Palette view
+ Paletten Ansicht
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11014,11015
+
+ The message for the palette view button.
+ kendo.flatcolorpicker.paletteView
+
+
+ Change color format
+ Farbformat ändern
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11016,11017
+
+ The message for the input format toggle button.
+ kendo.flatcolorpicker.formatButton
+
+
+ Apply
+ Anwenden
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
+
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11021
+
+ The message for the Cancel action button.
+ kendo.flatcolorpicker.cancelButton
+
+
+ Red channel
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11022,11023
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ Green channel
+ Grüner Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11024,11025
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.flatcolorpicker.greenChannelLabel
+
+
+ Blue channel
+ Blauer Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11026,11027
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.flatcolorpicker.blueChannelLabel
+
+
+ Alpha channel
+ Alpha Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11028,11029
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.flatcolorpicker.alphaChannelLabel
+
+
+ R
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11031
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ G
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+ B
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+ HEX
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11037,11039
+
+ The placeholder for the HEX color input.
+ kendo.flatcolorpicker.hexInputPlaceholder
+
+
+ Colorpicker no color chosen
+ Farbauswahl kein Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12081,12082
+
+ The aria-label applied to the ColorPicker component when the value is empty.
+ kendo.colorpicker.colorPickerNoColor
+
+
+ Flatcolorpicker no color chosen
+ Farbauswahl kein Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12083,12084
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.colorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+ Farbverlauf keine Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12085,12086
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+ Farben Palette kein Farbe ausgewählt
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12087,12088
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpicker.colorPaletteNoColor
+
+
+ Choose color
+ Farbe auswählen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12089,12091
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorpicker.colorGradientHandle
+
+
+ Clear value
+ Wert leeren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12091,12092
+
+ The title for the clear button.
+ kendo.colorpicker.clearButton
+
+
+ Set hue
+ Farbton setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12094
+
+ The title for the hue slider handle.
+ kendo.colorpicker.hueSliderHandle
+
+
+ Set opacity
+ Deckkraft setzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12095,12096
+
+ The title for the opacity slider handle.
+ kendo.colorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+ Kontrastverhältnis
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12097,12098
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorpicker.contrastRatio
+
+
+ Color preview
+ Farbvorschau
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12099,12100
+
+ The message for the color preview pane.
+ kendo.colorpicker.previewColor
+
+
+ Revert selection
+ Auswahl zurücksetzen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12101,12102
+
+ The message for the selected color pane.
+ kendo.colorpicker.revertSelection
+
+
+ Gradient view
+ Farbverlauf Ansicht
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12103,12104
+
+ The message for the gradient view button.
+ kendo.colorpicker.gradientView
+
+
+ Palette view
+ Paletten Ansicht
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12105,12106
+
+ The message for the palette view button.
+ kendo.colorpicker.paletteView
+
+
+ Change color format
+ Farbformat ändern
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12107,12108
+
+ The message for the input format toggle button.
+ kendo.colorpicker.formatButton
+
+
+ Apply
+ Anwenden
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12110
+
+ The message for the Apply action button.
+ kendo.colorpicker.applyButton
+
+
+ Cancel
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12112
+
+ The message for the Cancel action button.
+ kendo.colorpicker.cancelButton
+
+
+ Red channel
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12113,12114
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ Green channel
+ Grüner Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12115,12116
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorpicker.greenChannelLabel
+
+
+ Blue channel
+ Blauer Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12117,12118
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorpicker.blueChannelLabel
+
+
+ Alpha channel
+ Alpha Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12119,12120
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorpicker.alphaChannelLabel
+
+
+ R
+ Roter Kanal
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12122
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ G
+ Grün
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12124
+
+ The placeholder for the green color input.
+ kendo.colorpicker.greenInputPlaceholder
+
+
+ B
+ Blau
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12126
+
+ The placeholder for the blue color input.
+ kendo.colorpicker.blueInputPlaceholder
+
+
+ HEX
+ HEX Farbe
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12128,12130
+
+ The placeholder for the HEX color input.
+ kendo.colorpicker.hexInputPlaceholder
+
+
+ Clear
+ Leeren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14720
+
+ The message for the Clear button.
+ kendo.signature.clear
+
+
+ Maximize
+ Maximieren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14721,14722
+
+ The message for the Maximize button.
+ kendo.signature.maximize
+
+
+ Minimize
+ Minimieren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14723,14724
+
+ The message for the Minimize button.
+ kendo.signature.minimize
+
+
+ Signature canvas
+ Signaturfeld
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14725,14730
+
+ The message for the Canvas element aria-label.
+ kendo.signature.canvasLabel
+
+
+ Clear
+ Löschen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 16982,16984
+
+ The title for the **Clear** button in the TextBox.
+ kendo.textbox.clear
+
+
+ Close
+ Schließen
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4351
+
+ The title for the **Close** button in the TabStrip tab.
+ kendo.tabstrip.closeTitle
+
+
+ Previous Tab
+ vorheriger Reiter
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4352,4354
+
+ The title for the **Previous Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.previousTabButton
+
+
+ Next Tab
+ nächster Reiter
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4355,4359
+
+ The title for the **Next Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.nextTabButton
+
+
+ Optional
+ Optional
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7101,7105
+
+ The text for the optional segment of the step label
+ kendo.stepper.optional
+
+
+ Avatar
+ Avatar
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7636,7639
+
+ The alt attribute text of the image in the avatar.
+ kendo.avatar.avatarAlt
+
+
+ previous
+ previous
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12647,12651
+
+ The title of the previous button in horizontal orientation.
+ kendo.timeline.previous
+
+
+ next
+ next
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12653,12656
+
+ The title of the next button in horizontal orientation.
+ kendo.timeline.next
+
+
+
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1907,1909
+
+ The value of the aria-label attribute of the Pager
+ kendo.pager.ariaLabel
+
+
+ Go to the first page
+ Zur ersten Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1910,1912
+
+ The label for the first page button in the Pager
+ kendo.pager.firstPage
+
+
+ Go to the previous page
+ Zur vorherigen Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1913,1915
+
+ The label for the previous page button in the Pager
+ kendo.pager.previousPage
+
+
+ Go to the next page
+ Zur nächsten Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1916,1918
+
+ The label for the next page button in the Pager
+ kendo.pager.nextPage
+
+
+ Go to the last page
+ Zur letzten Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1919,1921
+
+ The label for the last page button in the Pager
+ kendo.pager.lastPage
+
+
+ Page
+ Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1924
+
+ The label before the current page number in the Pager
+ kendo.pager.page
+
+
+ of
+ von
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1927
+
+ The label before the total pages number in the Pager
+ kendo.pager.of
+
+
+ Page Number
+ Seitennummer
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1928,1930
+
+ The label for the pager input in the Pager
+ kendo.pager.pageNumberInputTitle
+
+
+ items
+ Elementen
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1933
+
+ The label after the total pages number in the Pager
+ kendo.pager.items
+
+
+ items per page
+ Elemente pro Seite
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1934,1936
+
+ The label for the page size chooser in the Pager
+ kendo.pager.itemsPerPage
+
+
+ Select page
+ Seite auswählen
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1937,1939
+
+ The text of the title and aria-label attributes applied to the page chooser in the Pager
+ kendo.pager.selectPage
+
+
+ Type a page number
+ Seitennummer eingeben
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1940,1945
+
+ The text of the aria-label attribute applied to the input element for entering the page number.
+ kendo.pager.inputLabel
+
+
+ Progressbar
+ Fortschrittsanzeige
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 652,656
+
+ The aria-label attribute for the ProgressBar component.
+ kendo.progressbar.progressBarLabel
+
+
+ Chunk progressbar
+ Abgestufte Fortschrittsanzeige
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 863,867
+
+ The aria-label attribute for the ChunkProgressBar component.
+ kendo.chunkprogressbar.progressBarLabel
+
+
+ Circular progressbar
+ Runde Fortschrittsanzeige
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 1335,1340
+
+ The aria-label attribute for the Circular ProgressBar component.
+ kendo.circularprogressbar.progressBarLabel
+
+
+ More tools
+ Mehr Werkzeuge
+
+ node_modules/@progress/kendo-angular-toolbar/fesm2022/progress-kendo-angular-toolbar.mjs
+ 1362,1365
+
+ The title of the **more tools** button in a responsive ToolBar
+ kendo.toolbar.moreToolsTitle
+
+
+ Load more...
+ Load more...
+
+ node_modules/@progress/kendo-angular-treeview/fesm2022/progress-kendo-angular-treeview.mjs
+ 2849,2853
+
+ The title of the Load More button
+ kendo.treeview.loadMore
+
+
+ Hello, World!
+ Hallo, Welt!
+
+ src/app/app.component.html
+ 1,5
+
+ An introduction header for this sample
+ User welcome
+
+
+
+
diff --git a/examples/projects/integration-i18n/src/locale/messages.es.xlf b/examples/projects/integration-i18n/src/locale/messages.es.xlf
index 389d914b..c54414fb 100644
--- a/examples/projects/integration-i18n/src/locale/messages.es.xlf
+++ b/examples/projects/integration-i18n/src/locale/messages.es.xlf
@@ -2,742 +2,2866 @@
-
- increment
- Incrementar valor
+
+
+ {buttonText} splitbutton
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-buttons/fesm2022/progress-kendo-angular-buttons.mjs
+ 5256,5258
- The title of the **Increase** button of the Slider.
- kendo.slider.increment
+ The text for the SplitButton aria-label
+ kendo.splitbutton.splitButtonLabel
-
- decrement
- Disminuir valor
+
+ Today
+ Hoy
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4782
- The title of the **Decrease** button of the Slider.
- kendo.slider.decrement
+ The label for the today button in the calendar header
+ kendo.multiviewcalendar.today
-
- Drag
- drag
+
+ Navigate to previous view
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 8
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4783,4785
- The title of the drag handle of the Slider.
- kendo.slider.dragHandle
+ The label for the previous button in the Multiview calendar
+ kendo.multiviewcalendar.prevButtonTitle
-
- ON
- On
+
+ Navigate to next view
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4786,4788
- The **On** label of the Switch.
- kendo.switch.on
+ The label for the next button in the Multiview calendar
+ kendo.multiviewcalendar.nextButtonTitle
-
- OFF
- Off
+
+ Navigate to parent view
+ Navigate to parent view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4789,4794
- The **Off** label of the Switch.
- kendo.switch.off
+ The title of the parent view button in the Multiview calendar header
+ kendo.multiviewcalendar.parentViewButtonTitle
-
- Increase value
- Incrementar valor
+
+ Today
+ Hoy
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7962
- The title for the **Increment** button in the NumericTextBox
- kendo.numerictextbox.increment
+ The label for the today button in the calendar header
+ kendo.calendar.today
-
- Decrease value
- Disminuir valor
+
+ Navigate to previous view
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7963,7965
- The title for the **Decrement** button in the NumericTextBox
- kendo.numerictextbox.decrement
+ The title of the previous button in the Classic calendar
+ kendo.calendar.prevButtonTitle
-
- TODAY
- Hoy
+
+ Navigate to next view
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7966,7968
- The label for the today button in the calendar header
- kendo.calendar.today
+ The title of the next button in the Classic calendar
+ kendo.calendar.nextButtonTitle
+
+
+ Navigate to parent view
+ Navigate to parent view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7969,7973
+
+ The title of the parent view button in the calendar header
+ kendo.calendar.parentViewButtonTitle
-
+
Increase value
Incrementar valor
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9379,9381
The label for the **Increment** button in the DateInput
kendo.dateinput.increment
-
+
Decrease value
Disminuir valor
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9382,9385
The label for the **Decrement** button in the DateInput
kendo.dateinput.decrement
-
- TODAY
+
+ clear
+ Limpiar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+ Today
Hoy
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11056
The label for the today button in the calendar header
kendo.datepicker.today
-
+
Toggle calendar
Toggle calendar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11057,11059
- The label for the toggle button in the datepicker component
+ The title of the toggle button in the datepicker component
kendo.datepicker.toggle
-
+
+ Navigate to previous view
+ Navigate to previous view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11060,11062
+
+ The title of the previous button in the Classic calendar
+ kendo.datepicker.prevButtonTitle
+
+
+ Navigate to next view
+ Navigate to next view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11063,11065
+
+ The title of the next button in the Classic calendar
+ kendo.datepicker.nextButtonTitle
+
+
+ Navigate to parent view
+ Navigate to parent view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11066,11069
+
+ The title of the parent view button in the calendar header
+ kendo.datepicker.parentViewButtonTitle
+
+
+ clear
+ Clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11070,11073
+
+ The title of the clear button
+ kendo.datepicker.clearTitle
+
+
+ Set
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+ Set time
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13273,13275
+
+ The label for the Accept button in the timeselector component
+ kendo.timeselector.acceptLabel
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+ Cancel changes
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13279,13282
+
+ The label for the Cancel button in the timeselector component
+ kendo.timeselector.cancelLabel
+
+
+ Now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.now
+
+
+ Select now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13285,13289
+
+ The label for the Now button in the timeselector component
+ kendo.timeselector.nowLabel
+
+
Set
Fijar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14713
The Accept button text in the timepicker component
kendo.timepicker.accept
-
+
Set time
Fijar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14714,14716
The label for the Accept button in the timepicker component
kendo.timepicker.acceptLabel
-
+
Cancel
Cancelar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14719
The Cancel button text in the timepicker component
kendo.timepicker.cancel
-
+
Cancel changes
Cancelar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14720,14723
The label for the Cancel button in the timepicker component
kendo.timepicker.cancelLabel
-
+
Now
Ahora
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14725
The Now button text in the timepicker component
kendo.timepicker.now
-
+
Select now
Ahora
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14726,14728
The label for the Now button in the timepicker component
kendo.timepicker.nowLabel
-
+
Toggle time list
Alternar lista de tiempo
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 22
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14729,14731
The label for the toggle button in the timepicker component
kendo.timepicker.toggle
-
- TODAY
-
+
+ Hour
+ Hour
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14734
- The label for the today button in the calendar header
- kendo.multiviewcalendar.today
+ The label for the hour part in the timepicker component
+ kendo.timepicker.hour
-
- Navigate to previous view
-
+
+ Minute
+ Minute
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14737
- The label for the previous button in the Multiview calendar
- kendo.multiviewcalendar.prevButtonTitle
+ The label for the minute part in the timepicker component
+ kendo.timepicker.minute
-
- Navigate to next view
-
+
+ Second
+ Second
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14740
- The label for the next button in the Multiview calendar
- kendo.multiviewcalendar.nextButtonTitle
+ The label for the second part in the timepicker component
+ kendo.timepicker.second
-
- Set
-
+
+ Millisecond
+ Millisecond
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14741,14743
- The Accept button text in the timeselector component
- kendo.timeselector.accept
+ The label for the millisecond part in the timepicker component
+ kendo.timepicker.millisecond
-
- Set time
-
+
+ Dayperiod
+ Dayperiod
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14744,14747
- The label for the Accept button in the timeselector component
- kendo.timeselector.acceptLabel
+ The label for the dayperiod part in the timepicker component
+ kendo.timepicker.dayperiod
-
- Cancel
-
+
+ clear
+ Clear
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
- The Cancel button text in the timeselector component
- kendo.timeselector.cancel
+ The title of the clear button
+ kendo.timepicker.clearTitle
-
- Cancel changes
-
+
+ Date
+ Fecha
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16870
- The label for the Cancel button in the timeselector component
- kendo.timeselector.cancelLabel
+ The Date tab text in the datetimepicker popup header
+ kendo.datetimepicker.dateTab
-
- Now
-
+
+ Date tab
+ Mostrar fecha
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16871,16873
- The Now button text in the timeselector component
- kendo.timeselector.now
+ The label for the Date tab in the datetimepicker popup header
+ kendo.datetimepicker.dateTabLabel
-
- Select now
-
+
+ Time
+ Hora
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16876
- The label for the Now button in the timeselector component
- kendo.timeselector.nowLabel
+ The Time tab text in the datetimepicker popup header
+ kendo.datetimepicker.timeTab
-
- Drag a column header and drop it here to group by that column
- Arrastre el tÃtulo de una columna y suéltelo aquà para agrupar por ese criterio
+
+ Time tab
+ Mostrar hora
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16877,16879
- The label visible in the Grid group panel when it is empty
- kendo.grid.groupPanelEmpty
+ The label for the Time tab in the datetimepicker popup header
+ kendo.datetimepicker.timeTabLabel
-
- No records available.
- No hay datos disponibles.
+
+ Toggle popup
+ Cambiar calendario
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16880,16882
- The label visible in the Grid when there are no records
- kendo.grid.noRecords
+ The title of the toggle button in the datetimepicker component
+ kendo.datetimepicker.toggle
-
- Go to the first page
- Ir a la primera página
+
+ Set
+ Acceptar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16885
- The label for the first page button in Grid pager
- kendo.grid.pagerFirstPage
+ The Accept button text in the datetimepicker component
+ kendo.datetimepicker.accept
-
- Go to the previous page
- Ir a la página anterior
+
+ Set
+ Acceptar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16888
- The label for the previous page button in Grid pager
- kendo.grid.pagerPreviousPage
+ The label for the Accept button in the datetimepicker component
+ kendo.datetimepicker.acceptLabel
-
- Go to the next page
- Ir a la página siguiente
+
+ Cancel
+ Cancelar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16891
- The label for the next page button in Grid pager
- kendo.grid.pagerNextPage
+ The Cancel button text in the datetimepicker component
+ kendo.datetimepicker.cancel
-
- Go to the last page
- Ir a la última página
+
+ Cancel
+ Cancelar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16894,16895
- The label for the last page button in Grid pager
- kendo.grid.pagerLastPage
+ The label for the Cancel button in the datetimepicker component
+ kendo.datetimepicker.cancelLabel
-
- Page
- Página
+
+ NOW
+ AHORA
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 22
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16897
- The label before the current page number in the Grid pager
- kendo.grid.pagerPage
+ The Now button text in the timepicker component
+ kendo.datetimepicker.now
-
- of
- de
+
+ Select now
+ Ahora
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 25
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16898,16900
- The label before the total pages number in the Grid pager
- kendo.grid.pagerOf
+ The label for the Now button in the timepicker component
+ kendo.datetimepicker.nowLabel
-
- items
- Ãtems
+
+ Today
+ HOY
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 28
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16903
- The label after the total pages number in the Grid pager
- kendo.grid.pagerItems
+ The label for the today button in the calendar header
+ kendo.datetimepicker.today
-
- items per page
- Ãtems por página
+
+ Navigate to previous view
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 31
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16904,16906
- The label for the page size chooser in the Grid pager
- kendo.grid.pagerItemsPerPage
+ The title of the previous button in the Classic calendar
+ kendo.datetimepicker.prevButtonTitle
-
- Filter
- Filter
+
+ Navigate to next view
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 34
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16907,16909
- The label of the filter cell or icon
- kendo.grid.filter
+ The title of the next button in the Classic calendar
+ kendo.datetimepicker.nextButtonTitle
-
- Is equal to
- Es igual a
+
+ Navigate to parent view
+ Navigate to parent view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 37
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16910,16913
- The text of the equal filter operator
- kendo.grid.filterEqOperator
+ The title of the parent view button in the calendar header
+ kendo.datetimepicker.parentViewButtonTitle
-
- Is not equal to
- No es igual a
+
+ Hour
+ Hour
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 40
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16915
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
+ The label for the hour part in the timepicker component
+ kendo.datetimepicker.hour
-
- Is null
- Es nulo
+
+ Minute
+ Minute
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 43
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16918
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
+ The label for the minute part in the timepicker component
+ kendo.datetimepicker.minute
-
- Is not null
- No es nulo
+
+ Second
+ Second
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 46
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16921
- The text of the is not null filter operator
- kendo.grid.filterIsNotNullOperator
+ The label for the second part in the timepicker component
+ kendo.datetimepicker.second
-
- Is empty
- Está vacÃo
+
+ Millisecond
+ Millisecond
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 49
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16922,16924
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
+ The label for the millisecond part in the timepicker component
+ kendo.datetimepicker.millisecond
-
- Is not empty
- No está vacÃo
+
+ Dayperiod
+ Dayperiod
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 52
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16925,16928
- The text of the is not empty filter operator
- kendo.grid.filterIsNotEmptyOperator
+ The label for the dayperiod part in the timepicker component
+ kendo.datetimepicker.dayperiod
-
- Starts with
- Comienza con
+
+ clear
+ Clear
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 55
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
-
- Contains
- Contiene
+
+ Set
+ Set
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 58
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19003
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
+ The Accept button text in the timepicker component
+ kendo.daterangepopup.accept
-
- Does not contain
- No contiene
+
+ Set time
+ Set
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 61
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19004,19006
- The text of the does not contain filter operator
- kendo.grid.filterNotContainsOperator
+ The label for the Accept button in the timepicker component
+ kendo.daterangepopup.acceptLabel
-
- Ends with
- Termina en
+
+ Cancel
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 64
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19009
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
+ The Cancel button text in the timepicker component
+ kendo.daterangepopup.cancel
-
- Is greater than or equal to
- Es mayor o igual que
+
+ Cancel changes
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 67
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19010,19014
- The text of the greater than or equal filter operator
- kendo.grid.filterGteOperator
+ The label for the Cancel button in the timepicker component
+ kendo.daterangepopup.cancelLabel
-
- Is greater than
- Es mayor que
+
+ Close
+ Close
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 70
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 563,564
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
- Is less than or equal to
- Es menor o igual que
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 73
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 1205,1206
- The text of the less than or equal filter operator
- kendo.grid.filterLteOperator
+ The title of the close button
+ kendo.dialog.closeTitle
-
- Is less than
- Es menor o igual que
+
+ Close
+ Close
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 76
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
- The text of the less than filter operator
- kendo.grid.filterLtOperator
+ The title of the close button
+ kendo.window.closeTitle
-
- Is True
- SÃ
+
+ Restore
+ Restore
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 79
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
+ The title of the restore button
+ kendo.window.restoreTitle
-
- Is False
- No
+
+ Maximize
+ Maximize
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 82
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
+ The title of the maximize button
+ kendo.window.maximizeTitle
-
- (All)
- (Todas)
+
+ Minimize
+ Minimize
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 85
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
+ The title of the minimize button
+ kendo.window.minimizeTitle
-
- Is after or equal to
- Es posterior o igual a
+
+ NO DATA FOUND
+ No se encontraron datos
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 88
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4283,4286
- The text of the after or equal date filter operator
- kendo.grid.filterAfterOrEqualOperator
+ The text displayed in the popup when there are no items
+ kendo.autocomplete.noDataText
-
- Is after
- Es posterior
+
+ clear
+ limpiar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 91
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
+ The title of the clear button
+ kendo.autocomplete.clearTitle
-
- Is before
- Es anterior
+
+ Options list
+ Lista de opciones
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 94
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4289,4295
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.autocomplete.popupLabel
-
- Is before or equal to
- Es anterior o igual a
+
+ NO DATA FOUND
+ No se encontraron datos
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 97
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6358,6361
- The text of the before or equal date filter operator
- kendo.grid.filterBeforeOrEqualOperator
+ The text displayed in the popup when there are no items
+ kendo.combobox.noDataText
+
+
+ clear
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
+
+ The title of the clear button
+ kendo.combobox.clearTitle
+
+
+ Select
+ Seleccionar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6366
+
+ The text set as aria-label on the select button
+ kendo.combobox.selectButtonText
+
+
+ Options list
+ Lista de opciones
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6367,6373
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.combobox.popupLabel
+
+
+ NO DATA FOUND
+ No se encontraron datos
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8387,8389
+
+ The text displayed in the popup when there are no items
+ kendo.dropdownlist.noDataText
+
+
+ Select
+ Seleccionar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8392
+
+ The text set as aria-label on the select button
+ kendo.dropdownlist.selectButtonText
-
+
Filter
Filtrar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 100
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8395
- The text of the filter button
- kendo.grid.filterFilterButton
+ The text set as aria-label on the filter input
+ kendo.dropdownlist.filterInputLabel
-
- Clear
- Limpiar filtros
+
+ Options list
+ Lista de opciones
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 103
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8396,8399
- The text of the clear filter button
- kendo.grid.filterClearButton
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdownlist.popupLabel
-
- And
- Y
+
+ NO DATA FOUND
+ No se encontraron datos
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 106
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11130,11133
- The text of the And filter logic
- kendo.grid.filterAndLogic
+ The text displayed in the popup when there are no items
+ kendo.multiselect.noDataText
-
- Or
- O
+
+ clear
+ limpiar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 109
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
- The text of the Or filter logic
- kendo.grid.filterOrLogic
+ The title of the clear button
+ kendo.multiselect.clearTitle
-
- Loading
- Loading
+
+ Options list
+ Lista de opciones
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 112
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11136,11139
- The loading text
- kendo.grid.loading
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselect.popupLabel
-
- Column Menu
- Column Menu
+
+ Apply
+ Aplicar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 115
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11141
- The title of the column menu icon
- kendo.grid.columnMenu
+ The text of the Apply button in the action sheet
+ kendo.multiselect.applyButton
-
- Columns
- Columns
+
+ Cancel
+ Cancelar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 118
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11143,11147
- The text shown in the column menu for the columns item
- kendo.grid.columns
+ The text of the Cancel button in the action sheet
+ kendo.multiselect.cancelButton
-
- Lock
- Lock
+
+ NO DATA FOUND
+ No se encontraron datos
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 121
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12130,12132
- The text shown in the column menu for the lock item
- kendo.grid.lock
+ The text displayed in the popup when there are no items
+ kendo.multicolumncombobox.noDataText
-
- Unlock
- Unlock
+
+ clear
+ limpiar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 124
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
- The text shown in the column menu for the unlock item
- kendo.grid.unlock
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
-
- Sort Ascending
- Sort Ascending
+
+ Select
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 127
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
- The text shown in the column menu for the sort ascending item
- kendo.grid.sortAscending
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
-
- Sort Descending
- Sort Descending
+
+ Options list
+ Lista de opciones
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 130
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12139,12145
- The text shown in the column menu for the sort descending item
- kendo.grid.sortDescending
+ The label of the popup element that contains the list of options
+ when its role is 'region'
+ kendo.multicolumncombobox.popupLabel
+
+
+ NO DATA FOUND
+ No se encontraron datos
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14039,14042
+
+ The text displayed in the popup when there are no items
+ kendo.dropdowntree.noDataText
+
+
+ clear
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+ Select
+ Seleccionar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14047
+
+ The text set as aria-label on the select button
+ kendo.dropdowntree.selectButtonText
+
+
+ Filter
+ Filtrar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14050
+
+ The text set as aria-label on the filter input
+ kendo.dropdowntree.filterInputLabel
+
+
+ Options list
+ Lista de opciones
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14051,14057
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdowntree.popupLabel
+
+
+ NO DATA FOUND
+ No se encontraron datos
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16691,16694
+
+ The text displayed in the popup when there are no items
+ kendo.multiselecttree.noDataText
+
+
+ clear
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+ Check all
+ Seleccionar todo
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16697,16699
+
+ The text displayed for the check-all checkbox
+ kendo.multiselecttree.checkAllText
+
+
+ Filter
+ Filtrar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16702
+
+ The text set as aria-label on the filter input
+ kendo.multiselecttree.filterInputLabel
+
+
+ Options list
+ Lista de opciones
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16703,16706
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselecttree.popupLabel
-
+
Apply
- Apply
+ Aplicar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 133
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16708
- The text shown in the column menu or column chooser for the columns apply button
- kendo.grid.columnsApply
+ The text of the Apply button in the action sheet
+ kendo.multiselecttree.applyButton
-
- Reset
- Reset
+
+ Cancel
+ Cancelar
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 136
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16710,16714
- The text shown in the column menu or column chooser for the columns reset button
- kendo.grid.columnsReset
+ The text of the Cancel button in the action sheet
+ kendo.multiselecttree.cancelButton
+
+
+ Drag a column header and drop it here to group by that column
+ Arrastre el tÃtulo de una columna y suéltelo aquà para agrupar por ese criterio
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24970,24972
+
+ The label visible in the Grid group panel when it is empty
+ kendo.grid.groupPanelEmpty
+
+
+ No records available.
+ No hay datos disponibles.
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24973,24976
+
+ The label visible in the Grid when there are no records
+ kendo.grid.noRecords
+
+
+
+ Navegación de página, página {currentPage} de {totalPages}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24976,24978
+
+ The label for the Grid pager
+ kendo.grid.pagerLabel
+
+
+ Go to the first page
+ Ir a la primera página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24979,24981
+
+ The label for the first page button in Grid pager
+ kendo.grid.pagerFirstPage
+
+
+ Go to the previous page
+ Ir a la página anterior
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24982,24984
+
+ The label for the previous page button in Grid pager
+ kendo.grid.pagerPreviousPage
+
+
+ Go to the next page
+ Ir a la página siguiente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24985,24987
+
+ The label for the next page button in Grid pager
+ kendo.grid.pagerNextPage
+
+
+ Go to the last page
+ Ir a la última página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24988,24990
+
+ The label for the last page button in Grid pager
+ kendo.grid.pagerLastPage
+
+
+ Page
+ Página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24993
+
+ The label before the current page number in the Grid pager
+ kendo.grid.pagerPage
+
+
+ of
+ de
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24996
+
+ The label before the total pages number in the Grid pager
+ kendo.grid.pagerOf
+
+
+ items
+ Ãtems
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24999
+
+ The label after the total pages number in the Grid pager
+ kendo.grid.pagerItems
+
+
+ Page Number
+ Número de Página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25000,25002
+
+ The label for the pager input in the Grid pager
+ kendo.grid.pagerPageNumberInputTitle
+
+
+ items per page
+ Ãtems por página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25003,25005
+
+ The label for the page size chooser in the Grid pager
+ kendo.grid.pagerItemsPerPage
+
+
+ Type a page number
+ Type a page number
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25006,25011
+
+ The text of the aria-label attribute applied to the input element for entering the page number
+ kendo.grid.pagerInputLabel
+
+
+ Filter
+ Filtrar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25011
+
+ The label of the filter cell or icon
+ kendo.grid.filter
+
+
+
+ {columnName} Filtro
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25012,25014
+
+ The label of the filter row and menu inputs
+ kendo.grid.filterInputLabel
+
+
+
+ {columnName} Menú de Filtro
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25015,25017
+
+ The title of the filter menu icon
+ kendo.grid.filterMenuTitle
+
+
+
+ {columnName} Operadores de Filtro
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25018,25020
+
+ The label of the filter menu operators dropdown
+ kendo.grid.filterMenuOperatorsDropDownLabel
+
+
+
+ Operadores de celda de filtro para {columnName}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25021,25023
+
+ The label of the filter cell operators dropdown
+ kendo.grid.filterCellOperatorLabel
+
+
+
+ Celda de filtro booleano para {columnName}
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25024,25026
+
+ The label of the boolean filter cell dropdown
+ kendo.grid.booleanFilterCellLabel
+
+
+
+ {columnName} Lógica de Filtro
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25027,25029
+
+ The label of the filter menu logic dropdown
+ kendo.grid.filterMenuLogicDropDownLabel
+
+
+ Is equal to
+ Es igual a
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25030,25032
+
+ The text of the equal filter operator
+ kendo.grid.filterEqOperator
+
+
+ Is not equal to
+ No es igual a
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25033,25035
+
+ The text of the not equal filter operator
+ kendo.grid.filterNotEqOperator
+
+
+ Is null
+ Es nulo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25037,25038
+
+ The text of the is null filter operator
+ kendo.grid.filterIsNullOperator
+
+
+ Is not null
+ No es nulo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25039,25041
+
+ The text of the is not null filter operator
+ kendo.grid.filterIsNotNullOperator
+
+
+ Is empty
+ Está vacÃo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25042,25044
+
+ The text of the is empty filter operator
+ kendo.grid.filterIsEmptyOperator
+
+
+ Is not empty
+ No está vacÃo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25045,25047
+
+ The text of the is not empty filter operator
+ kendo.grid.filterIsNotEmptyOperator
+
+
+ Starts with
+ Comienza con
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25048,25050
+
+ The text of the starts with filter operator
+ kendo.grid.filterStartsWithOperator
+
+
+ Contains
+ Contiene
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25051,25053
+
+ The text of the contains filter operator
+ kendo.grid.filterContainsOperator
+
+
+ Does not contain
+ No contiene
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25054,25056
+
+ The text of the does not contain filter operator
+ kendo.grid.filterNotContainsOperator
+
+
+ Ends with
+ Termina en
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25057,25059
+
+ The text of the ends with filter operator
+ kendo.grid.filterEndsWithOperator
+
+
+ Is greater than or equal to
+ Es mayor o igual que
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25060,25062
+
+ The text of the greater than or equal filter operator
+ kendo.grid.filterGteOperator
+
+
+ Is greater than
+ Es mayor que
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25063,25065
+
+ The text of the greater than filter operator
+ kendo.grid.filterGtOperator
+
+
+ Is less than or equal to
+ Es menor o igual que
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25066,25068
+
+ The text of the less than or equal filter operator
+ kendo.grid.filterLteOperator
+
+
+ Is less than
+ Es menor o igual que
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25069,25071
+
+ The text of the less than filter operator
+ kendo.grid.filterLtOperator
+
+
+ Is True
+ SÃ
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25073,25074
+
+ The text of the IsTrue boolean filter option
+ kendo.grid.filterIsTrue
+
+
+ Is False
+ No
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25075,25077
+
+ The text of the IsFalse boolean filter option
+ kendo.grid.filterIsFalse
+
+
+ (All)
+ (Todas)
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25080
+
+ The text of the (All) boolean filter option
+ kendo.grid.filterBooleanAll
+
+
+ Is after or equal to
+ Es posterior o igual a
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25081,25083
+
+ The text of the after or equal date filter operator
+ kendo.grid.filterAfterOrEqualOperator
+
+
+ Is after
+ Es posterior
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25084,25086
+
+ The text of the after date filter operator
+ kendo.grid.filterAfterOperator
+
+
+ Is before
+ Es anterior
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25087,25089
+
+ The text of the before date filter operator
+ kendo.grid.filterBeforeOperator
+
+
+ Is before or equal to
+ Es anterior o igual a
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25090,25093
+
+ The text of the before or equal date filter operator
+ kendo.grid.filterBeforeOrEqualOperator
+
+
+ Filter
+ Filtrar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+ Clear
+ Limpiar filtros
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25098
+
+ The text of the clear filter button
+ kendo.grid.filterClearButton
+
+
+ And
+ Y
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+ Or
+ O
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25104,25105
+
+ The text of the Or filter logic
+ kendo.grid.filterOrLogic
+
+
+ Loading
+ Cargando
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+ Data table
+ Tabla de datos
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25108,25110
+
+ The Grid aria-label
+ kendo.grid.gridLabel
+
+
+
+ {columnName} Menú de Columna
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25111,25113
+
+ The title of the column menu icon
+ kendo.grid.columnMenu
+
+
+ Columns
+ Columnas
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25115,25116
+
+ The text shown in the column menu for the columns item
+ kendo.grid.columns
+
+
+ Lock
+ Bloquear
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25119
+
+ The text shown in the column menu for the lock item
+ kendo.grid.lock
+
+
+ Unlock
+ Desbloquear
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25122
+
+ The text shown in the column menu for the unlock item
+ kendo.grid.unlock
+
+
+ Set Column Position
+ Set Column Position
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25123,25126
+
+ The text shown in the column menu for the set column position item
+ kendo.grid.setColumnPosition
+
+
+ Stick
+ Stick
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25128
+
+ The text shown in the column menu for the stick item
+ kendo.grid.stick
+
+
+ Unstick
+ Unstick
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25130,25132
+
+ The text shown in the column menu for the unstick item
+ kendo.grid.unstick
+
+
+ Sortable
+ Ordenable
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+ Sort Ascending
+ Orden ascendente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25135,25137
+
+ The text shown in the column menu for the sort ascending item
+ kendo.grid.sortAscending
+
+
+ Sort Descending
+ Orden descendente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25138,25140
+
+ The text shown in the column menu for the sort descending item
+ kendo.grid.sortDescending
+
+
+ Autosize All Columns
+ Ajustar tamaño de todas las columnas
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25141,25143
+
+ The text shown in the column menu for the autosize all columns item
+ kendo.grid.autosizeAllColumns
+
+
+ Autosize This Column
+ Ajustar tamaño de esta columna
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25144,25146
+
+ The text shown in the column menu for the autosize this column item
+ kendo.grid.autosizeThisColumn
+
+
+ Not Sorted
+ No ordenado
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25147,25149
+
+ The status announcement when a column is no longer sorted
+ kendo.grid.sortedDefault
+
+
+ Sorted Ascending
+ Ordenado ascendentemente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25150,25152
+
+ The title of the Group Chip indicating the ascending sorting order of the groups
+ kendo.grid.sortedAscending
+
+
+ Sorted Descending
+ Ordenado descendentemente
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25153,25155
+
+ The title of the Group Chip indicating the descending sorting order of the groups
+ kendo.grid.sortedDescending
+
+
+ Apply
+ Aplicar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25158
+
+ The text shown in the column menu or column chooser for the columns apply button
+ kendo.grid.columnsApply
+
+
+ Reset
+ Defecto
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25161,25162
+
+ The text shown in the column menu or column chooser for the columns reset button
+ kendo.grid.columnsReset
+
+
+ Expand Details
+ Expandir Detalles
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25162,25164
+
+ The title of the expand icon of detail rows.
+ kendo.grid.detailExpand
+
+
+ Collapse Details
+ Contraer Detalles
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25165,25167
+
+ The title of the collapse icon of detail rows.
+ kendo.grid.detailCollapse
+
+
+ TODAY
+ Hoy
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25170
+
+ The text of the Today button of the Date filter.
+ kendo.grid.filterDateToday
+
+
+ Toggle Calendar
+ Mostrar calendario
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25171,25173
+
+ The title of the Toggle button of the Date filter.
+ kendo.grid.filterDateToggle
+
+
+ Decrement
+ Disminuir valor
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25174,25176
+
+ The title of the Decrement button of the Numeric filter.
+ kendo.grid.filterNumericDecrement
+
+
+ Increment
+ Incrementar valor
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25177,25179
+
+ The title of the Increment button of the Numeric filter.
+ kendo.grid.filterNumericIncrement
+
+
+ Select Row
+ Seleccionar Fila
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25180,25182
+
+ The labels of the checkbox column checkboxes.
+ kendo.grid.selectionCheckboxLabel
+
+
+ Select All Rows
+ Seleccionar Todas las Filas
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25183,25185
+
+ The label of the checkbox column select all checkbox.
+ kendo.grid.selectAllCheckboxLabel
+
+
+ Collapse Group
+ Contraer Grupo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25186,25188
+
+ The text of the title and aria-label attributes applied to the collapse icon of group rows.
+ kendo.grid.groupCollapse
+
+
+ Expand Group
+ Expandir Grupo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25189,25191
+
+ The text of the title and aria-label attributes applied to the expand icon of group rows.
+ kendo.grid.groupExpand
+
+
+ Select page
+ Seleccionar página
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25192,25195
+
+ The text of the title and aria-label attributes applied to the page chooser in the Grid Pager
+ kendo.grid.pagerSelectPage
+
+
+ Top toolbar
+ Barra de herramientas superior
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25195,25197
+
+ The label for the Grid top toolbar
+ kendo.grid.topToolbarLabel
+
+
+ Bottom toolbar
+ Barra de herramientas inferior
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25198,25200
+
+ The label for the Grid bottom toolbar
+ kendo.grid.bottomToolbarLabel
+
+
+ Group panel
+ Panel de grupo
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25201,25203
+
+ The label for the Grid group panel toolbar
+ kendo.grid.groupPanelLabel
+
+
+ Drag row
+ Arrastrar fila
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25204,25206
+
+ The label for the Grid drag row handle
+ kendo.grid.dragRowHandleLabel
+
+
+ Filter
+ Filtro
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25209
+
+ The title for the column menu Filter tab
+ kendo.grid.columnMenuFilterTabTitle
+
+
+ General
+ General
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25211,25212
+
+ The title for the column menu General tab
+ kendo.grid.columnMenuGeneralTabTitle
+
+
+ Columns
+ Columnas
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25214,25215
+
+ The title for the column menu Columns tab
+ kendo.grid.columnMenuColumnsTabTitle
+
+
+ Move as previous
+ Mover antes
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25216,25218
+
+ The text for the Group pane Chip Menu Move as previous item
+ kendo.grid.groupChipMenuPrevious
+
+
+ Move as next
+ Mover después
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25219,25223
+
+ The text for the Group pane Chip Menu Move as next item
+ kendo.grid.groupChipMenuNext
+
+
+ increment
+ Incrementar valor
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1502,1503
+
+ The title of the **Increase** button of the Slider.
+ kendo.slider.increment
+
+
+ decrement
+ Disminuir valor
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1504,1505
+
+ The title of the **Decrease** button of the Slider.
+ kendo.slider.decrement
+
+
+ Drag
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1507,1511
+
+ The title of the drag handle of the Slider.
+ kendo.slider.dragHandle
+
+
+ Drag
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2244
+
+ The title of the **Start** drag handle of the Slider.
+ kendo.rangeslider.dragHandleStart
+
+
+ Drag
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2246,2251
+
+ The title of the **End** drag handle of the Slider.
+ kendo.rangeslider.dragHandleEnd
+
+
+ ON
+ On
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2921
+
+ The **On** label of the Switch.
+ kendo.switch.on
+
+
+ OFF
+ Off
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2923,2927
+
+ The **Off** label of the Switch.
+ kendo.switch.off
+
+
+ Increase value
+ Incrementar valor
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4801,4802
+
+ The title for the **Increment** button in the NumericTextBox
+ kendo.numerictextbox.increment
+
+
+ Decrease value
+ Disminuir valor
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4803,4808
+
+ The title for the **Decrement** button in the NumericTextBox
+ kendo.numerictextbox.decrement
+
+
+ Colorgradient no color chosen
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8922,8923
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorgradient.colorGradientNoColor
+
+
+ Choose color
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8924,8926
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorgradient.colorGradientHandle
+
+
+ Clear value
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8926,8927
+
+ The title for the clear button.
+ kendo.colorgradient.clearButton
+
+
+ Set hue
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8929
+
+ The title for the hue slider handle.
+ kendo.colorgradient.hueSliderHandle
+
+
+ Set opacity
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8930,8931
+
+ The title for the opacity slider handle.
+ kendo.colorgradient.opacitySliderHandle
+
+
+ Pass
+ Pass
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8933
+
+ The pass message for the contrast tool.
+ kendo.colorgradient.passContrast
+
+
+ Fail
+ Fail
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8935
+
+ The fail message for the contrast tool.
+ kendo.colorgradient.failContrast
+
+
+ Contrast ratio
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8936,8937
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorgradient.contrastRatio
+
+
+ Change color format
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8938,8939
+
+ The message for the input format toggle button.
+ kendo.colorgradient.formatButton
+
+
+ Red channel
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8940,8941
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
+
+
+ Green channel
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8942,8943
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorgradient.greenChannelLabel
+
+
+ Blue channel
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8944,8945
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorgradient.blueChannelLabel
+
+
+ Alpha channel
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8946,8947
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorgradient.alphaChannelLabel
+
+
+ R
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8949
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
+
+
+ G
+ Green
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8951
+
+ The placeholder for the green color input.
+ kendo.colorgradient.greenInputPlaceholder
+
+
+ B
+ Blue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8953
+
+ The placeholder for the blue color input.
+ kendo.colorgradient.blueInputPlaceholder
+
+
+ HEX
+ HEX Color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8955,8957
+
+ The placeholder for the HEX color input.
+ kendo.colorgradient.hexInputPlaceholder
+
+
+ Colorpalette no color chosen
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 9916,9920
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpalette.colorPaletteNoColor
+
+
+ Flatcolorpicker no color chosen
+ Flatcolorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10992,10993
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.flatcolorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10994,10995
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.flatcolorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10996,10997
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.flatcolorpicker.colorPaletteNoColor
+
+
+ Choose color
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10998,11000
+
+ The title for the gradient color drag handle chooser.
+ kendo.flatcolorpicker.colorGradientHandle
+
+
+ Clear value
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11000,11001
+
+ The title for the clear button.
+ kendo.flatcolorpicker.clearButton
+
+
+ Set hue
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11003
+
+ The title for the hue slider handle.
+ kendo.flatcolorpicker.hueSliderHandle
+
+
+ Set opacity
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11004,11005
+
+ The title for the opacity slider handle.
+ kendo.flatcolorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11006,11007
+
+ The contrast ratio message for the contrast tool.
+ kendo.flatcolorpicker.contrastRatio
+
+
+ Color preview
+ Color preview
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11008,11009
+
+ The message for the color preview pane.
+ kendo.flatcolorpicker.previewColor
+
+
+ Revert selection
+ Revert selection
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11010,11011
+
+ The message for the selected color pane.
+ kendo.flatcolorpicker.revertSelection
+
+
+ Gradient view
+ Gradient view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11012,11013
+
+ The message for the gradient view button.
+ kendo.flatcolorpicker.gradientView
+
+
+ Palette view
+ Palette view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11014,11015
+
+ The message for the palette view button.
+ kendo.flatcolorpicker.paletteView
+
+
+ Change color format
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11016,11017
+
+ The message for the input format toggle button.
+ kendo.flatcolorpicker.formatButton
+
+
+ Apply
+ Apply
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
+
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
+
+
+ Cancel
+ Cancel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11021
+
+ The message for the Cancel action button.
+ kendo.flatcolorpicker.cancelButton
+
+
+ Red channel
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11022,11023
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ Green channel
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11024,11025
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.flatcolorpicker.greenChannelLabel
+
+
+ Blue channel
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11026,11027
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.flatcolorpicker.blueChannelLabel
+
+
+ Alpha channel
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11028,11029
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.flatcolorpicker.alphaChannelLabel
+
+
+ R
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11031
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ G
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+ B
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+ HEX
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11037,11039
+
+ The placeholder for the HEX color input.
+ kendo.flatcolorpicker.hexInputPlaceholder
+
+
+ Colorpicker no color chosen
+ Colorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12081,12082
+
+ The aria-label applied to the ColorPicker component when the value is empty.
+ kendo.colorpicker.colorPickerNoColor
+
+
+ Flatcolorpicker no color chosen
+ Flatcolorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12083,12084
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.colorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12085,12086
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12087,12088
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpicker.colorPaletteNoColor
+
+
+ Choose color
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12089,12091
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorpicker.colorGradientHandle
+
+
+ Clear value
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12091,12092
+
+ The title for the clear button.
+ kendo.colorpicker.clearButton
+
+
+ Set hue
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12094
+
+ The title for the hue slider handle.
+ kendo.colorpicker.hueSliderHandle
+
+
+ Set opacity
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12095,12096
+
+ The title for the opacity slider handle.
+ kendo.colorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12097,12098
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorpicker.contrastRatio
+
+
+ Color preview
+ Color preview
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12099,12100
+
+ The message for the color preview pane.
+ kendo.colorpicker.previewColor
+
+
+ Revert selection
+ Revert selection
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12101,12102
+
+ The message for the selected color pane.
+ kendo.colorpicker.revertSelection
+
+
+ Gradient view
+ Gradient view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12103,12104
+
+ The message for the gradient view button.
+ kendo.colorpicker.gradientView
+
+
+ Palette view
+ Palette view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12105,12106
+
+ The message for the palette view button.
+ kendo.colorpicker.paletteView
+
+
+ Change color format
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12107,12108
+
+ The message for the input format toggle button.
+ kendo.colorpicker.formatButton
+
+
+ Apply
+ Apply
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12110
+
+ The message for the Apply action button.
+ kendo.colorpicker.applyButton
+
+
+ Cancel
+ Cancel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12112
+
+ The message for the Cancel action button.
+ kendo.colorpicker.cancelButton
+
+
+ Red channel
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12113,12114
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ Green channel
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12115,12116
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorpicker.greenChannelLabel
+
+
+ Blue channel
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12117,12118
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorpicker.blueChannelLabel
+
+
+ Alpha channel
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12119,12120
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorpicker.alphaChannelLabel
+
+
+ R
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12122
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ G
+ Green
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12124
+
+ The placeholder for the green color input.
+ kendo.colorpicker.greenInputPlaceholder
+
+
+ B
+ Blue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12126
+
+ The placeholder for the blue color input.
+ kendo.colorpicker.blueInputPlaceholder
+
+
+ HEX
+ HEX Color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12128,12130
+
+ The placeholder for the HEX color input.
+ kendo.colorpicker.hexInputPlaceholder
+
+
+ Clear
+ Clear
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14720
+
+ The message for the Clear button.
+ kendo.signature.clear
+
+
+ Maximize
+ Maximize
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14721,14722
+
+ The message for the Maximize button.
+ kendo.signature.maximize
+
+
+ Minimize
+ Minimize
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14723,14724
+
+ The message for the Minimize button.
+ kendo.signature.minimize
+
+
+ Signature canvas
+ Signature canvas
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14725,14730
+
+ The message for the Canvas element aria-label.
+ kendo.signature.canvasLabel
+
+
+ Clear
+ Borrar
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 16982,16984
+
+ The title for the **Clear** button in the TextBox.
+ kendo.textbox.clear
+
+
+ Close
+ Close
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4351
+
+ The title for the **Close** button in the TabStrip tab.
+ kendo.tabstrip.closeTitle
+
+
+ Previous Tab
+ Previous Tab
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4352,4354
+
+ The title for the **Previous Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.previousTabButton
+
+
+ Next Tab
+ Next Tab
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4355,4359
+
+ The title for the **Next Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.nextTabButton
+
+
+ Optional
+ Optional
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7101,7105
+
+ The text for the optional segment of the step label
+ kendo.stepper.optional
+
+
+ Avatar
+ Avatar
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7636,7639
+
+ The alt attribute text of the image in the avatar.
+ kendo.avatar.avatarAlt
+
+
+ previous
+ previous
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12647,12651
+
+ The title of the previous button in horizontal orientation.
+ kendo.timeline.previous
+
+
+ next
+ next
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12653,12656
+
+ The title of the next button in horizontal orientation.
+ kendo.timeline.next
+
+
+
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1907,1909
+
+ The value of the aria-label attribute of the Pager
+ kendo.pager.ariaLabel
+
+
+ Go to the first page
+ Ir a la primera página
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1910,1912
+
+ The label for the first page button in the Pager
+ kendo.pager.firstPage
+
+
+ Go to the previous page
+ Ir a la página anterior
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1913,1915
+
+ The label for the previous page button in the Pager
+ kendo.pager.previousPage
+
+
+ Go to the next page
+ Ir a la página siguiente
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1916,1918
+
+ The label for the next page button in the Pager
+ kendo.pager.nextPage
+
+
+ Go to the last page
+ Ir a la última página
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1919,1921
+
+ The label for the last page button in the Pager
+ kendo.pager.lastPage
+
+
+ Page
+ Página
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1924
+
+ The label before the current page number in the Pager
+ kendo.pager.page
+
+
+ of
+ de
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1927
+
+ The label before the total pages number in the Pager
+ kendo.pager.of
+
+
+ Page Number
+ Page Number
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1928,1930
+
+ The label for the pager input in the Pager
+ kendo.pager.pageNumberInputTitle
+
+
+ items
+ Ãtems
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1933
+
+ The label after the total pages number in the Pager
+ kendo.pager.items
+
+
+ items per page
+ Ãtems por página
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1934,1936
+
+ The label for the page size chooser in the Pager
+ kendo.pager.itemsPerPage
+
+
+ Select page
+ Select page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1937,1939
+
+ The text of the title and aria-label attributes applied to the page chooser in the Pager
+ kendo.pager.selectPage
+
+
+ Type a page number
+ Type a page number
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1940,1945
+
+ The text of the aria-label attribute applied to the input element for entering the page number.
+ kendo.pager.inputLabel
+
+
+ Progressbar
+ Progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 652,656
+
+ The aria-label attribute for the ProgressBar component.
+ kendo.progressbar.progressBarLabel
+
+
+ Chunk progressbar
+ Chunk progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 863,867
+
+ The aria-label attribute for the ChunkProgressBar component.
+ kendo.chunkprogressbar.progressBarLabel
+
+
+ Circular progressbar
+ Circular progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 1335,1340
+
+ The aria-label attribute for the Circular ProgressBar component.
+ kendo.circularprogressbar.progressBarLabel
+
+
+ More tools
+ More tools
+
+ node_modules/@progress/kendo-angular-toolbar/fesm2022/progress-kendo-angular-toolbar.mjs
+ 1362,1365
+
+ The title of the **more tools** button in a responsive ToolBar
+ kendo.toolbar.moreToolsTitle
+
+
+ Load more...
+ Load more...
+
+ node_modules/@progress/kendo-angular-treeview/fesm2022/progress-kendo-angular-treeview.mjs
+ 2849,2853
+
+ The title of the Load More button
+ kendo.treeview.loadMore
-
+
Hello, World!
¡Hola Mundo!
- app/app.component.ts
- 1
+ src/app/app.component.html
+ 1,5
An introduction header for this sample
User welcome
diff --git a/examples/projects/integration-i18n/src/locale/messages.xlf b/examples/projects/integration-i18n/src/locale/messages.xlf
index e0385c73..0b37df86 100644
--- a/examples/projects/integration-i18n/src/locale/messages.xlf
+++ b/examples/projects/integration-i18n/src/locale/messages.xlf
@@ -1,669 +1,2591 @@
-
+
-
- increment
+
+
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-buttons/fesm2022/progress-kendo-angular-buttons.mjs
+ 5256,5258
- The title of the **Increase** button of the Slider.
- kendo.slider.increment
+ The text for the SplitButton aria-label
+ kendo.splitbutton.splitButtonLabel
-
- decrement
+
+ Today
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4782
- The title of the **Decrease** button of the Slider.
- kendo.slider.decrement
+ The label for the today button in the calendar header
+ kendo.multiviewcalendar.today
-
- Drag
+
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 8
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4783,4785
- The title of the drag handle of the Slider.
- kendo.slider.dragHandle
+ The label for the previous button in the Multiview calendar
+ kendo.multiviewcalendar.prevButtonTitle
-
- ON
+
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4786,4788
- The **On** label of the Switch.
- kendo.switch.on
+ The label for the next button in the Multiview calendar
+ kendo.multiviewcalendar.nextButtonTitle
-
- OFF
+
+ Navigate to parent view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 4789,4794
- The **Off** label of the Switch.
- kendo.switch.off
+ The title of the parent view button in the Multiview calendar header
+ kendo.multiviewcalendar.parentViewButtonTitle
-
- Increase value
+
+ Today
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7962
- The title for the **Increment** button in the NumericTextBox
- kendo.numerictextbox.increment
+ The label for the today button in the calendar header
+ kendo.calendar.today
-
- Decrease value
+
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7963,7965
- The title for the **Decrement** button in the NumericTextBox
- kendo.numerictextbox.decrement
+ The title of the previous button in the Classic calendar
+ kendo.calendar.prevButtonTitle
-
- TODAY
+
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7966,7968
- The label for the today button in the calendar header
- kendo.calendar.today
+ The title of the next button in the Classic calendar
+ kendo.calendar.nextButtonTitle
-
+
+ Navigate to parent view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 7969,7973
+
+ The title of the parent view button in the calendar header
+ kendo.calendar.parentViewButtonTitle
+
+
Increase value
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9379,9381
The label for the **Increment** button in the DateInput
kendo.dateinput.increment
-
+
Decrease value
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9382,9385
The label for the **Decrement** button in the DateInput
kendo.dateinput.decrement
-
- TODAY
+
+ clear
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+ Today
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11056
The label for the today button in the calendar header
kendo.datepicker.today
-
+
Toggle calendar
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11057,11059
- The label for the toggle button in the datepicker component
+ The title of the toggle button in the datepicker component
kendo.datepicker.toggle
-
+
+ Navigate to previous view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11060,11062
+
+ The title of the previous button in the Classic calendar
+ kendo.datepicker.prevButtonTitle
+
+
+ Navigate to next view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11063,11065
+
+ The title of the next button in the Classic calendar
+ kendo.datepicker.nextButtonTitle
+
+
+ Navigate to parent view
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11066,11069
+
+ The title of the parent view button in the calendar header
+ kendo.datepicker.parentViewButtonTitle
+
+
+ clear
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11070,11073
+
+ The title of the clear button
+ kendo.datepicker.clearTitle
+
+
+ Set
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+ Set time
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13273,13275
+
+ The label for the Accept button in the timeselector component
+ kendo.timeselector.acceptLabel
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+ Cancel changes
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13279,13282
+
+ The label for the Cancel button in the timeselector component
+ kendo.timeselector.cancelLabel
+
+
+ Now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.now
+
+
+ Select now
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13285,13289
+
+ The label for the Now button in the timeselector component
+ kendo.timeselector.nowLabel
+
+
Set
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14713
The Accept button text in the timepicker component
kendo.timepicker.accept
-
+
Set time
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14714,14716
The label for the Accept button in the timepicker component
kendo.timepicker.acceptLabel
-
+
Cancel
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14719
The Cancel button text in the timepicker component
kendo.timepicker.cancel
-
+
Cancel changes
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14720,14723
The label for the Cancel button in the timepicker component
kendo.timepicker.cancelLabel
-
+
Now
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14725
The Now button text in the timepicker component
kendo.timepicker.now
-
+
Select now
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14726,14728
The label for the Now button in the timepicker component
kendo.timepicker.nowLabel
-
+
Toggle time list
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 22
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14729,14731
The label for the toggle button in the timepicker component
kendo.timepicker.toggle
-
- TODAY
+
+ Hour
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14734
- The label for the today button in the calendar header
- kendo.multiviewcalendar.today
+ The label for the hour part in the timepicker component
+ kendo.timepicker.hour
-
- Navigate to previous view
+
+ Minute
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14737
- The label for the previous button in the Multiview calendar
- kendo.multiviewcalendar.prevButtonTitle
+ The label for the minute part in the timepicker component
+ kendo.timepicker.minute
-
- Navigate to next view
+
+ Second
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14740
- The label for the next button in the Multiview calendar
- kendo.multiviewcalendar.nextButtonTitle
+ The label for the second part in the timepicker component
+ kendo.timepicker.second
-
- Set
+
+ Millisecond
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14741,14743
- The Accept button text in the timeselector component
- kendo.timeselector.accept
+ The label for the millisecond part in the timepicker component
+ kendo.timepicker.millisecond
-
- Set time
+
+ Dayperiod
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14744,14747
- The label for the Accept button in the timeselector component
- kendo.timeselector.acceptLabel
+ The label for the dayperiod part in the timepicker component
+ kendo.timepicker.dayperiod
-
- Cancel
+
+ clear
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
- The Cancel button text in the timeselector component
- kendo.timeselector.cancel
+ The title of the clear button
+ kendo.timepicker.clearTitle
-
- Cancel changes
+
+ Date
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16870
- The label for the Cancel button in the timeselector component
- kendo.timeselector.cancelLabel
+ The Date tab text in the datetimepicker popup header
+ kendo.datetimepicker.dateTab
-
- Now
+
+ Date tab
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16871,16873
- The Now button text in the timeselector component
- kendo.timeselector.now
+ The label for the Date tab in the datetimepicker popup header
+ kendo.datetimepicker.dateTabLabel
-
- Select now
+
+ Time
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16876
- The label for the Now button in the timeselector component
- kendo.timeselector.nowLabel
+ The Time tab text in the datetimepicker popup header
+ kendo.datetimepicker.timeTab
-
- Drag a column header and drop it here to group by that column
+
+ Time tab
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 4
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16877,16879
- The label visible in the Grid group panel when it is empty
- kendo.grid.groupPanelEmpty
+ The label for the Time tab in the datetimepicker popup header
+ kendo.datetimepicker.timeTabLabel
-
- No records available.
+
+ Toggle popup
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 7
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16880,16882
- The label visible in the Grid when there are no records
- kendo.grid.noRecords
+ The title of the toggle button in the datetimepicker component
+ kendo.datetimepicker.toggle
-
- Go to the first page
+
+ Set
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 10
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16885
- The label for the first page button in Grid pager
- kendo.grid.pagerFirstPage
+ The Accept button text in the datetimepicker component
+ kendo.datetimepicker.accept
-
- Go to the previous page
+
+ Set
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 13
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16888
- The label for the previous page button in Grid pager
- kendo.grid.pagerPreviousPage
+ The label for the Accept button in the datetimepicker component
+ kendo.datetimepicker.acceptLabel
-
- Go to the next page
+
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 16
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16891
- The label for the next page button in Grid pager
- kendo.grid.pagerNextPage
+ The Cancel button text in the datetimepicker component
+ kendo.datetimepicker.cancel
-
- Go to the last page
+
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 19
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16894,16895
- The label for the last page button in Grid pager
- kendo.grid.pagerLastPage
+ The label for the Cancel button in the datetimepicker component
+ kendo.datetimepicker.cancelLabel
-
- Page
+
+ NOW
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 22
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16897
- The label before the current page number in the Grid pager
- kendo.grid.pagerPage
+ The Now button text in the timepicker component
+ kendo.datetimepicker.now
-
- of
+
+ Select now
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 25
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16898,16900
- The label before the total pages number in the Grid pager
- kendo.grid.pagerOf
+ The label for the Now button in the timepicker component
+ kendo.datetimepicker.nowLabel
-
- items
+
+ Today
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 28
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16903
- The label after the total pages number in the Grid pager
- kendo.grid.pagerItems
+ The label for the today button in the calendar header
+ kendo.datetimepicker.today
-
- items per page
+
+ Navigate to previous view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 31
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16904,16906
- The label for the page size chooser in the Grid pager
- kendo.grid.pagerItemsPerPage
+ The title of the previous button in the Classic calendar
+ kendo.datetimepicker.prevButtonTitle
-
- Filter
+
+ Navigate to next view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 34
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16907,16909
- The label of the filter cell or icon
- kendo.grid.filter
+ The title of the next button in the Classic calendar
+ kendo.datetimepicker.nextButtonTitle
-
- Is equal to
+
+ Navigate to parent view
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 37
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16910,16913
- The text of the equal filter operator
- kendo.grid.filterEqOperator
+ The title of the parent view button in the calendar header
+ kendo.datetimepicker.parentViewButtonTitle
-
- Is not equal to
+
+ Hour
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 40
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16915
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
+ The label for the hour part in the timepicker component
+ kendo.datetimepicker.hour
-
- Is null
+
+ Minute
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 43
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16918
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
+ The label for the minute part in the timepicker component
+ kendo.datetimepicker.minute
-
- Is not null
+
+ Second
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 46
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16921
- The text of the is not null filter operator
- kendo.grid.filterIsNotNullOperator
+ The label for the second part in the timepicker component
+ kendo.datetimepicker.second
-
- Is empty
+
+ Millisecond
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 49
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16922,16924
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
+ The label for the millisecond part in the timepicker component
+ kendo.datetimepicker.millisecond
-
- Is not empty
+
+ Dayperiod
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 52
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16925,16928
- The text of the is not empty filter operator
- kendo.grid.filterIsNotEmptyOperator
+ The label for the dayperiod part in the timepicker component
+ kendo.datetimepicker.dayperiod
-
- Starts with
+
+ clear
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 55
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
-
- Contains
+
+ Set
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 58
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19003
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
+ The Accept button text in the timepicker component
+ kendo.daterangepopup.accept
-
- Does not contain
+
+ Set time
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 61
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19004,19006
- The text of the does not contain filter operator
- kendo.grid.filterNotContainsOperator
+ The label for the Accept button in the timepicker component
+ kendo.daterangepopup.acceptLabel
-
- Ends with
+
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 64
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19009
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
+ The Cancel button text in the timepicker component
+ kendo.daterangepopup.cancel
-
- Is greater than or equal to
+
+ Cancel changes
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 67
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19010,19014
- The text of the greater than or equal filter operator
- kendo.grid.filterGteOperator
+ The label for the Cancel button in the timepicker component
+ kendo.daterangepopup.cancelLabel
-
- Is greater than
+
+ Close
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 70
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 563,564
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
- Is less than or equal to
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 73
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 1205,1206
- The text of the less than or equal filter operator
- kendo.grid.filterLteOperator
+ The title of the close button
+ kendo.dialog.closeTitle
-
- Is less than
+
+ Close
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 76
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
- The text of the less than filter operator
- kendo.grid.filterLtOperator
+ The title of the close button
+ kendo.window.closeTitle
-
- Is True
+
+ Restore
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 79
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
+ The title of the restore button
+ kendo.window.restoreTitle
-
- Is False
+
+ Maximize
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 82
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
+ The title of the maximize button
+ kendo.window.maximizeTitle
-
- (All)
+
+ Minimize
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 85
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
+ The title of the minimize button
+ kendo.window.minimizeTitle
-
- Is after or equal to
+
+ NO DATA FOUND
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 88
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4283,4286
- The text of the after or equal date filter operator
- kendo.grid.filterAfterOrEqualOperator
+ The text displayed in the popup when there are no items
+ kendo.autocomplete.noDataText
-
- Is after
+
+ clear
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 91
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
+ The title of the clear button
+ kendo.autocomplete.clearTitle
-
- Is before
+
+ Options list
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 94
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4289,4295
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.autocomplete.popupLabel
-
- Is before or equal to
+
+ NO DATA FOUND
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 97
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6358,6361
- The text of the before or equal date filter operator
- kendo.grid.filterBeforeOrEqualOperator
+ The text displayed in the popup when there are no items
+ kendo.combobox.noDataText
-
- Filter
+
+ clear
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 100
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
- The text of the filter button
- kendo.grid.filterFilterButton
+ The title of the clear button
+ kendo.combobox.clearTitle
-
- Clear
+
+ Select
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 103
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6366
- The text of the clear filter button
- kendo.grid.filterClearButton
+ The text set as aria-label on the select button
+ kendo.combobox.selectButtonText
-
- And
+
+ Options list
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 106
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6367,6373
- The text of the And filter logic
- kendo.grid.filterAndLogic
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.combobox.popupLabel
-
- Or
+
+ NO DATA FOUND
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 109
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8387,8389
- The text of the Or filter logic
- kendo.grid.filterOrLogic
+ The text displayed in the popup when there are no items
+ kendo.dropdownlist.noDataText
-
- Loading
+
+ Select
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 112
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8392
- The loading text
- kendo.grid.loading
+ The text set as aria-label on the select button
+ kendo.dropdownlist.selectButtonText
-
- Column Menu
+
+ Filter
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 115
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8395
- The title of the column menu icon
- kendo.grid.columnMenu
+ The text set as aria-label on the filter input
+ kendo.dropdownlist.filterInputLabel
-
- Columns
+
+ Options list
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 118
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 8396,8399
- The text shown in the column menu for the columns item
- kendo.grid.columns
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdownlist.popupLabel
-
+
+ NO DATA FOUND
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11130,11133
+
+ The text displayed in the popup when there are no items
+ kendo.multiselect.noDataText
+
+
+ clear
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
+
+ The title of the clear button
+ kendo.multiselect.clearTitle
+
+
+ Options list
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11136,11139
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselect.popupLabel
+
+
+ Apply
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11141
+
+ The text of the Apply button in the action sheet
+ kendo.multiselect.applyButton
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11143,11147
+
+ The text of the Cancel button in the action sheet
+ kendo.multiselect.cancelButton
+
+
+ NO DATA FOUND
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12130,12132
+
+ The text displayed in the popup when there are no items
+ kendo.multicolumncombobox.noDataText
+
+
+ clear
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
+
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
+
+
+ Select
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
+
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
+
+
+ Options list
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12139,12145
+
+ The label of the popup element that contains the list of options
+ when its role is 'region'
+ kendo.multicolumncombobox.popupLabel
+
+
+ NO DATA FOUND
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14039,14042
+
+ The text displayed in the popup when there are no items
+ kendo.dropdowntree.noDataText
+
+
+ clear
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+ Select
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14047
+
+ The text set as aria-label on the select button
+ kendo.dropdowntree.selectButtonText
+
+
+ Filter
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14050
+
+ The text set as aria-label on the filter input
+ kendo.dropdowntree.filterInputLabel
+
+
+ Options list
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14051,14057
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.dropdowntree.popupLabel
+
+
+ NO DATA FOUND
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16691,16694
+
+ The text displayed in the popup when there are no items
+ kendo.multiselecttree.noDataText
+
+
+ clear
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+ Check all
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16697,16699
+
+ The text displayed for the check-all checkbox
+ kendo.multiselecttree.checkAllText
+
+
+ Filter
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16702
+
+ The text set as aria-label on the filter input
+ kendo.multiselecttree.filterInputLabel
+
+
+ Options list
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16703,16706
+
+ The label of the popup element that contains the list of options when its role is 'region'
+ kendo.multiselecttree.popupLabel
+
+
+ Apply
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16708
+
+ The text of the Apply button in the action sheet
+ kendo.multiselecttree.applyButton
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16710,16714
+
+ The text of the Cancel button in the action sheet
+ kendo.multiselecttree.cancelButton
+
+
+ Drag a column header and drop it here to group by that column
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24970,24972
+
+ The label visible in the Grid group panel when it is empty
+ kendo.grid.groupPanelEmpty
+
+
+ No records available.
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24973,24976
+
+ The label visible in the Grid when there are no records
+ kendo.grid.noRecords
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24976,24978
+
+ The label for the Grid pager
+ kendo.grid.pagerLabel
+
+
+ Go to the first page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24979,24981
+
+ The label for the first page button in Grid pager
+ kendo.grid.pagerFirstPage
+
+
+ Go to the previous page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24982,24984
+
+ The label for the previous page button in Grid pager
+ kendo.grid.pagerPreviousPage
+
+
+ Go to the next page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24985,24987
+
+ The label for the next page button in Grid pager
+ kendo.grid.pagerNextPage
+
+
+ Go to the last page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24988,24990
+
+ The label for the last page button in Grid pager
+ kendo.grid.pagerLastPage
+
+
+ Page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24993
+
+ The label before the current page number in the Grid pager
+ kendo.grid.pagerPage
+
+
+ of
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24996
+
+ The label before the total pages number in the Grid pager
+ kendo.grid.pagerOf
+
+
+ items
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 24999
+
+ The label after the total pages number in the Grid pager
+ kendo.grid.pagerItems
+
+
+ Page Number
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25000,25002
+
+ The label for the pager input in the Grid pager
+ kendo.grid.pagerPageNumberInputTitle
+
+
+ items per page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25003,25005
+
+ The label for the page size chooser in the Grid pager
+ kendo.grid.pagerItemsPerPage
+
+
+ Type a page number
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25006,25011
+
+ The text of the aria-label attribute applied to the input element for entering the page number
+ kendo.grid.pagerInputLabel
+
+
+ Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25011
+
+ The label of the filter cell or icon
+ kendo.grid.filter
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25012,25014
+
+ The label of the filter row and menu inputs
+ kendo.grid.filterInputLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25015,25017
+
+ The title of the filter menu icon
+ kendo.grid.filterMenuTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25018,25020
+
+ The label of the filter menu operators dropdown
+ kendo.grid.filterMenuOperatorsDropDownLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25021,25023
+
+ The label of the filter cell operators dropdown
+ kendo.grid.filterCellOperatorLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25024,25026
+
+ The label of the boolean filter cell dropdown
+ kendo.grid.booleanFilterCellLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25027,25029
+
+ The label of the filter menu logic dropdown
+ kendo.grid.filterMenuLogicDropDownLabel
+
+
+ Is equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25030,25032
+
+ The text of the equal filter operator
+ kendo.grid.filterEqOperator
+
+
+ Is not equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25033,25035
+
+ The text of the not equal filter operator
+ kendo.grid.filterNotEqOperator
+
+
+ Is null
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25037,25038
+
+ The text of the is null filter operator
+ kendo.grid.filterIsNullOperator
+
+
+ Is not null
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25039,25041
+
+ The text of the is not null filter operator
+ kendo.grid.filterIsNotNullOperator
+
+
+ Is empty
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25042,25044
+
+ The text of the is empty filter operator
+ kendo.grid.filterIsEmptyOperator
+
+
+ Is not empty
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25045,25047
+
+ The text of the is not empty filter operator
+ kendo.grid.filterIsNotEmptyOperator
+
+
+ Starts with
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25048,25050
+
+ The text of the starts with filter operator
+ kendo.grid.filterStartsWithOperator
+
+
+ Contains
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25051,25053
+
+ The text of the contains filter operator
+ kendo.grid.filterContainsOperator
+
+
+ Does not contain
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25054,25056
+
+ The text of the does not contain filter operator
+ kendo.grid.filterNotContainsOperator
+
+
+ Ends with
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25057,25059
+
+ The text of the ends with filter operator
+ kendo.grid.filterEndsWithOperator
+
+
+ Is greater than or equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25060,25062
+
+ The text of the greater than or equal filter operator
+ kendo.grid.filterGteOperator
+
+
+ Is greater than
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25063,25065
+
+ The text of the greater than filter operator
+ kendo.grid.filterGtOperator
+
+
+ Is less than or equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25066,25068
+
+ The text of the less than or equal filter operator
+ kendo.grid.filterLteOperator
+
+
+ Is less than
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25069,25071
+
+ The text of the less than filter operator
+ kendo.grid.filterLtOperator
+
+
+ Is True
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25073,25074
+
+ The text of the IsTrue boolean filter option
+ kendo.grid.filterIsTrue
+
+
+ Is False
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25075,25077
+
+ The text of the IsFalse boolean filter option
+ kendo.grid.filterIsFalse
+
+
+ (All)
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25080
+
+ The text of the (All) boolean filter option
+ kendo.grid.filterBooleanAll
+
+
+ Is after or equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25081,25083
+
+ The text of the after or equal date filter operator
+ kendo.grid.filterAfterOrEqualOperator
+
+
+ Is after
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25084,25086
+
+ The text of the after date filter operator
+ kendo.grid.filterAfterOperator
+
+
+ Is before
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25087,25089
+
+ The text of the before date filter operator
+ kendo.grid.filterBeforeOperator
+
+
+ Is before or equal to
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25090,25093
+
+ The text of the before or equal date filter operator
+ kendo.grid.filterBeforeOrEqualOperator
+
+
+ Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+ Clear
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25098
+
+ The text of the clear filter button
+ kendo.grid.filterClearButton
+
+
+ And
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+ Or
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25104,25105
+
+ The text of the Or filter logic
+ kendo.grid.filterOrLogic
+
+
+ Loading
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+ Data table
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25108,25110
+
+ The Grid aria-label
+ kendo.grid.gridLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25111,25113
+
+ The title of the column menu icon
+ kendo.grid.columnMenu
+
+
+ Columns
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25115,25116
+
+ The text shown in the column menu for the columns item
+ kendo.grid.columns
+
+
Lock
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 121
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25119
+
+ The text shown in the column menu for the lock item
+ kendo.grid.lock
+
+
+ Unlock
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25122
+
+ The text shown in the column menu for the unlock item
+ kendo.grid.unlock
+
+
+ Set Column Position
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25123,25126
+
+ The text shown in the column menu for the set column position item
+ kendo.grid.setColumnPosition
+
+
+ Stick
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25128
+
+ The text shown in the column menu for the stick item
+ kendo.grid.stick
+
+
+ Unstick
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25130,25132
+
+ The text shown in the column menu for the unstick item
+ kendo.grid.unstick
+
+
+ Sortable
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+ Sort Ascending
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25135,25137
+
+ The text shown in the column menu for the sort ascending item
+ kendo.grid.sortAscending
+
+
+ Sort Descending
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25138,25140
+
+ The text shown in the column menu for the sort descending item
+ kendo.grid.sortDescending
+
+
+ Autosize All Columns
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25141,25143
+
+ The text shown in the column menu for the autosize all columns item
+ kendo.grid.autosizeAllColumns
+
+
+ Autosize This Column
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25144,25146
+
+ The text shown in the column menu for the autosize this column item
+ kendo.grid.autosizeThisColumn
+
+
+ Not Sorted
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25147,25149
+
+ The status announcement when a column is no longer sorted
+ kendo.grid.sortedDefault
+
+
+ Sorted Ascending
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25150,25152
+
+ The title of the Group Chip indicating the ascending sorting order of the groups
+ kendo.grid.sortedAscending
+
+
+ Sorted Descending
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25153,25155
+
+ The title of the Group Chip indicating the descending sorting order of the groups
+ kendo.grid.sortedDescending
+
+
+ Apply
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25158
+
+ The text shown in the column menu or column chooser for the columns apply button
+ kendo.grid.columnsApply
+
+
+ Reset
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25161,25162
+
+ The text shown in the column menu or column chooser for the columns reset button
+ kendo.grid.columnsReset
+
+
+ Expand Details
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25162,25164
+
+ The title of the expand icon of detail rows.
+ kendo.grid.detailExpand
+
+
+ Collapse Details
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25165,25167
+
+ The title of the collapse icon of detail rows.
+ kendo.grid.detailCollapse
+
+
+ TODAY
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25170
+
+ The text of the Today button of the Date filter.
+ kendo.grid.filterDateToday
+
+
+ Toggle Calendar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25171,25173
+
+ The title of the Toggle button of the Date filter.
+ kendo.grid.filterDateToggle
+
+
+ Decrement
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25174,25176
+
+ The title of the Decrement button of the Numeric filter.
+ kendo.grid.filterNumericDecrement
+
+
+ Increment
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25177,25179
+
+ The title of the Increment button of the Numeric filter.
+ kendo.grid.filterNumericIncrement
+
+
+ Select Row
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25180,25182
+
+ The labels of the checkbox column checkboxes.
+ kendo.grid.selectionCheckboxLabel
+
+
+ Select All Rows
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25183,25185
+
+ The label of the checkbox column select all checkbox.
+ kendo.grid.selectAllCheckboxLabel
+
+
+ Collapse Group
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25186,25188
+
+ The text of the title and aria-label attributes applied to the collapse icon of group rows.
+ kendo.grid.groupCollapse
+
+
+ Expand Group
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25189,25191
+
+ The text of the title and aria-label attributes applied to the expand icon of group rows.
+ kendo.grid.groupExpand
+
+
+ Select page
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25192,25195
+
+ The text of the title and aria-label attributes applied to the page chooser in the Grid Pager
+ kendo.grid.pagerSelectPage
+
+
+ Top toolbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25195,25197
+
+ The label for the Grid top toolbar
+ kendo.grid.topToolbarLabel
+
+
+ Bottom toolbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25198,25200
+
+ The label for the Grid bottom toolbar
+ kendo.grid.bottomToolbarLabel
+
+
+ Group panel
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25201,25203
+
+ The label for the Grid group panel toolbar
+ kendo.grid.groupPanelLabel
+
+
+ Drag row
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25204,25206
+
+ The label for the Grid drag row handle
+ kendo.grid.dragRowHandleLabel
+
+
+ Filter
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25209
+
+ The title for the column menu Filter tab
+ kendo.grid.columnMenuFilterTabTitle
+
+
+ General
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25211,25212
+
+ The title for the column menu General tab
+ kendo.grid.columnMenuGeneralTabTitle
+
+
+ Columns
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25214,25215
+
+ The title for the column menu Columns tab
+ kendo.grid.columnMenuColumnsTabTitle
+
+
+ Move as previous
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25216,25218
+
+ The text for the Group pane Chip Menu Move as previous item
+ kendo.grid.groupChipMenuPrevious
+
+
+ Move as next
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25219,25223
+
+ The text for the Group pane Chip Menu Move as next item
+ kendo.grid.groupChipMenuNext
+
+
+ increment
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1502,1503
+
+ The title of the **Increase** button of the Slider.
+ kendo.slider.increment
+
+
+ decrement
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1504,1505
+
+ The title of the **Decrease** button of the Slider.
+ kendo.slider.decrement
+
+
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 1507,1511
+
+ The title of the drag handle of the Slider.
+ kendo.slider.dragHandle
+
+
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2244
+
+ The title of the **Start** drag handle of the Slider.
+ kendo.rangeslider.dragHandleStart
+
+
+ Drag
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2246,2251
+
+ The title of the **End** drag handle of the Slider.
+ kendo.rangeslider.dragHandleEnd
+
+
+ ON
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2921
+
+ The **On** label of the Switch.
+ kendo.switch.on
+
+
+ OFF
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2923,2927
+
+ The **Off** label of the Switch.
+ kendo.switch.off
+
+
+ Increase value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4801,4802
+
+ The title for the **Increment** button in the NumericTextBox
+ kendo.numerictextbox.increment
+
+
+ Decrease value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 4803,4808
+
+ The title for the **Decrement** button in the NumericTextBox
+ kendo.numerictextbox.decrement
+
+
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8922,8923
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorgradient.colorGradientNoColor
+
+
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8924,8926
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorgradient.colorGradientHandle
+
+
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8926,8927
+
+ The title for the clear button.
+ kendo.colorgradient.clearButton
+
+
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8929
+
+ The title for the hue slider handle.
+ kendo.colorgradient.hueSliderHandle
+
+
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8930,8931
+
+ The title for the opacity slider handle.
+ kendo.colorgradient.opacitySliderHandle
+
+
+ Pass
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8933
+
+ The pass message for the contrast tool.
+ kendo.colorgradient.passContrast
+
+
+ Fail
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8935
+
+ The fail message for the contrast tool.
+ kendo.colorgradient.failContrast
+
+
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8936,8937
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorgradient.contrastRatio
+
+
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8938,8939
+
+ The message for the input format toggle button.
+ kendo.colorgradient.formatButton
+
+
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8940,8941
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
+
+
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8942,8943
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorgradient.greenChannelLabel
+
+
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8944,8945
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorgradient.blueChannelLabel
+
+
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8946,8947
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorgradient.alphaChannelLabel
+
+
+ R
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8949
- The text shown in the column menu for the lock item
- kendo.grid.lock
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorgradient.redChannelLabel
-
- Unlock
+
+ G
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 124
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8951
- The text shown in the column menu for the unlock item
- kendo.grid.unlock
+ The placeholder for the green color input.
+ kendo.colorgradient.greenInputPlaceholder
-
- Sort Ascending
+
+ B
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 127
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8953
- The text shown in the column menu for the sort ascending item
- kendo.grid.sortAscending
+ The placeholder for the blue color input.
+ kendo.colorgradient.blueInputPlaceholder
-
- Sort Descending
+
+ HEX
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 130
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8955,8957
- The text shown in the column menu for the sort descending item
- kendo.grid.sortDescending
+ The placeholder for the HEX color input.
+ kendo.colorgradient.hexInputPlaceholder
+
+
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 9916,9920
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpalette.colorPaletteNoColor
+
+
+ Flatcolorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10992,10993
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.flatcolorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10994,10995
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.flatcolorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10996,10997
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.flatcolorpicker.colorPaletteNoColor
+
+
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 10998,11000
+
+ The title for the gradient color drag handle chooser.
+ kendo.flatcolorpicker.colorGradientHandle
+
+
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11000,11001
+
+ The title for the clear button.
+ kendo.flatcolorpicker.clearButton
+
+
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11003
+
+ The title for the hue slider handle.
+ kendo.flatcolorpicker.hueSliderHandle
+
+
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11004,11005
+
+ The title for the opacity slider handle.
+ kendo.flatcolorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11006,11007
+
+ The contrast ratio message for the contrast tool.
+ kendo.flatcolorpicker.contrastRatio
+
+
+ Color preview
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11008,11009
+
+ The message for the color preview pane.
+ kendo.flatcolorpicker.previewColor
+
+
+ Revert selection
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11010,11011
+
+ The message for the selected color pane.
+ kendo.flatcolorpicker.revertSelection
+
+
+ Gradient view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11012,11013
+
+ The message for the gradient view button.
+ kendo.flatcolorpicker.gradientView
+
+
+ Palette view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11014,11015
+
+ The message for the palette view button.
+ kendo.flatcolorpicker.paletteView
-
+
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11016,11017
+
+ The message for the input format toggle button.
+ kendo.flatcolorpicker.formatButton
+
+
Apply
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 133
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
- The text shown in the column menu or column chooser for the columns apply button
- kendo.grid.columnsApply
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
-
- Reset
+
+ Cancel
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 136
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11021
- The text shown in the column menu or column chooser for the columns reset button
- kendo.grid.columnsReset
+ The message for the Cancel action button.
+ kendo.flatcolorpicker.cancelButton
+
+
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11022,11023
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11024,11025
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.flatcolorpicker.greenChannelLabel
+
+
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11026,11027
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.flatcolorpicker.blueChannelLabel
+
+
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11028,11029
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.flatcolorpicker.alphaChannelLabel
+
+
+ R
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11031
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.flatcolorpicker.redChannelLabel
+
+
+ G
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+ B
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+ HEX
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11037,11039
+
+ The placeholder for the HEX color input.
+ kendo.flatcolorpicker.hexInputPlaceholder
+
+
+ Colorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12081,12082
+
+ The aria-label applied to the ColorPicker component when the value is empty.
+ kendo.colorpicker.colorPickerNoColor
+
+
+ Flatcolorpicker no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12083,12084
+
+ The aria-label applied to the FlatColorPicker component when the value is empty.
+ kendo.colorpicker.flatColorPickerNoColor
+
+
+ Colorgradient no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12085,12086
+
+ The aria-label applied to the ColorGradient component when the value is empty.
+ kendo.colorpicker.colorGradientNoColor
+
+
+ Colorpalette no color chosen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12087,12088
+
+ The aria-label applied to the ColorPalette component when the value is empty.
+ kendo.colorpicker.colorPaletteNoColor
+
+
+ Choose color
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12089,12091
+
+ The title for the gradient color drag handle chooser.
+ kendo.colorpicker.colorGradientHandle
+
+
+ Clear value
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12091,12092
+
+ The title for the clear button.
+ kendo.colorpicker.clearButton
+
+
+ Set hue
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12094
+
+ The title for the hue slider handle.
+ kendo.colorpicker.hueSliderHandle
+
+
+ Set opacity
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12095,12096
+
+ The title for the opacity slider handle.
+ kendo.colorpicker.opacitySliderHandle
+
+
+ Contrast ratio
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12097,12098
+
+ The contrast ratio message for the contrast tool.
+ kendo.colorpicker.contrastRatio
+
+
+ Color preview
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12099,12100
+
+ The message for the color preview pane.
+ kendo.colorpicker.previewColor
+
+
+ Revert selection
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12101,12102
+
+ The message for the selected color pane.
+ kendo.colorpicker.revertSelection
+
+
+ Gradient view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12103,12104
+
+ The message for the gradient view button.
+ kendo.colorpicker.gradientView
+
+
+ Palette view
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12105,12106
+
+ The message for the palette view button.
+ kendo.colorpicker.paletteView
+
+
+ Change color format
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12107,12108
+
+ The message for the input format toggle button.
+ kendo.colorpicker.formatButton
+
+
+ Apply
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12110
+
+ The message for the Apply action button.
+ kendo.colorpicker.applyButton
+
+
+ Cancel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12112
+
+ The message for the Cancel action button.
+ kendo.colorpicker.cancelButton
+
+
+ Red channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12113,12114
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ Green channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12115,12116
+
+ The label of the NumericTextBox representing the green color channel.
+ kendo.colorpicker.greenChannelLabel
+
+
+ Blue channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12117,12118
+
+ The label of the NumericTextBox representing the blue color channel.
+ kendo.colorpicker.blueChannelLabel
+
+
+ Alpha channel
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12119,12120
+
+ The label of the NumericTextBox representing the alpha color channel.
+ kendo.colorpicker.alphaChannelLabel
+
+
+ R
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12122
+
+ The label of the NumericTextBox representing the red color channel.
+ kendo.colorpicker.redChannelLabel
+
+
+ G
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12124
+
+ The placeholder for the green color input.
+ kendo.colorpicker.greenInputPlaceholder
+
+
+ B
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12126
+
+ The placeholder for the blue color input.
+ kendo.colorpicker.blueInputPlaceholder
+
+
+ HEX
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12128,12130
+
+ The placeholder for the HEX color input.
+ kendo.colorpicker.hexInputPlaceholder
+
+
+ Clear
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14720
+
+ The message for the Clear button.
+ kendo.signature.clear
+
+
+ Maximize
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14721,14722
+
+ The message for the Maximize button.
+ kendo.signature.maximize
+
+
+ Minimize
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14723,14724
+
+ The message for the Minimize button.
+ kendo.signature.minimize
+
+
+ Signature canvas
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14725,14730
+
+ The message for the Canvas element aria-label.
+ kendo.signature.canvasLabel
+
+
+ Clear
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 16982,16984
+
+ The title for the **Clear** button in the TextBox.
+ kendo.textbox.clear
+
+
+ Close
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4351
+
+ The title for the **Close** button in the TabStrip tab.
+ kendo.tabstrip.closeTitle
+
+
+ Previous Tab
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4352,4354
+
+ The title for the **Previous Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.previousTabButton
+
+
+ Next Tab
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 4355,4359
+
+ The title for the **Next Tab** button when the Tabstrip is scrollable.
+ kendo.tabstrip.nextTabButton
+
+
+ Optional
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7101,7105
+
+ The text for the optional segment of the step label
+ kendo.stepper.optional
+
+
+ Avatar
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 7636,7639
+
+ The alt attribute text of the image in the avatar.
+ kendo.avatar.avatarAlt
+
+
+ previous
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12647,12651
+
+ The title of the previous button in horizontal orientation.
+ kendo.timeline.previous
+
+
+ next
+
+ node_modules/@progress/kendo-angular-layout/fesm2022/progress-kendo-angular-layout.mjs
+ 12653,12656
+
+ The title of the next button in horizontal orientation.
+ kendo.timeline.next
+
+
+
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1907,1909
+
+ The value of the aria-label attribute of the Pager
+ kendo.pager.ariaLabel
+
+
+ Go to the first page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1910,1912
+
+ The label for the first page button in the Pager
+ kendo.pager.firstPage
+
+
+ Go to the previous page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1913,1915
+
+ The label for the previous page button in the Pager
+ kendo.pager.previousPage
+
+
+ Go to the next page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1916,1918
+
+ The label for the next page button in the Pager
+ kendo.pager.nextPage
+
+
+ Go to the last page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1919,1921
+
+ The label for the last page button in the Pager
+ kendo.pager.lastPage
+
+
+ Page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1924
+
+ The label before the current page number in the Pager
+ kendo.pager.page
+
+
+ of
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1927
+
+ The label before the total pages number in the Pager
+ kendo.pager.of
+
+
+ Page Number
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1928,1930
+
+ The label for the pager input in the Pager
+ kendo.pager.pageNumberInputTitle
+
+
+ items
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1933
+
+ The label after the total pages number in the Pager
+ kendo.pager.items
+
+
+ items per page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1934,1936
+
+ The label for the page size chooser in the Pager
+ kendo.pager.itemsPerPage
+
+
+ Select page
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1937,1939
+
+ The text of the title and aria-label attributes applied to the page chooser in the Pager
+ kendo.pager.selectPage
+
+
+ Type a page number
+
+ node_modules/@progress/kendo-angular-pager/fesm2022/progress-kendo-angular-pager.mjs
+ 1940,1945
+
+ The text of the aria-label attribute applied to the input element for entering the page number.
+ kendo.pager.inputLabel
+
+
+ Progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 652,656
+
+ The aria-label attribute for the ProgressBar component.
+ kendo.progressbar.progressBarLabel
+
+
+ Chunk progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 863,867
+
+ The aria-label attribute for the ChunkProgressBar component.
+ kendo.chunkprogressbar.progressBarLabel
+
+
+ Circular progressbar
+
+ node_modules/@progress/kendo-angular-progressbar/fesm2022/progress-kendo-angular-progressbar.mjs
+ 1335,1340
+
+ The aria-label attribute for the Circular ProgressBar component.
+ kendo.circularprogressbar.progressBarLabel
+
+
+ More tools
+
+ node_modules/@progress/kendo-angular-toolbar/fesm2022/progress-kendo-angular-toolbar.mjs
+ 1362,1365
+
+ The title of the **more tools** button in a responsive ToolBar
+ kendo.toolbar.moreToolsTitle
+
+
+ Load more...
+
+ node_modules/@progress/kendo-angular-treeview/fesm2022/progress-kendo-angular-treeview.mjs
+ 2849,2853
+
+ The title of the Load More button
+ kendo.treeview.loadMore
-
+
Hello, World!
- app/app.component.ts
- 1
+ src/app/app.component.html
+ 1,5
An introduction header for this sample
User welcome
diff --git a/examples/projects/integration-i18n/src/main.ts b/examples/projects/integration-i18n/src/main.ts
index c7b673cf..ee354351 100644
--- a/examples/projects/integration-i18n/src/main.ts
+++ b/examples/projects/integration-i18n/src/main.ts
@@ -1,12 +1,8 @@
-import { enableProdMode } from '@angular/core';
-import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+///
-import { AppModule } from './app/app.module';
-import { environment } from './environments/environment';
+import { bootstrapApplication } from '@angular/platform-browser';
+import { appConfig } from './app/app.config';
+import { AppComponent } from './app/app.component';
-if (environment.production) {
- enableProdMode();
-}
-
-platformBrowserDynamic().bootstrapModule(AppModule)
- .catch(err => console.error(err));
+bootstrapApplication(AppComponent, appConfig)
+ .catch((err) => console.error(err));
diff --git a/examples/projects/integration-i18n/src/polyfills.ts b/examples/projects/integration-i18n/src/polyfills.ts
deleted file mode 100644
index 32810a7e..00000000
--- a/examples/projects/integration-i18n/src/polyfills.ts
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * This file includes polyfills needed by Angular and is loaded before the app.
- * You can add your own extra polyfills to this file.
- *
- * This file is divided into 2 sections:
- * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
- * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
- * file.
- *
- * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
- * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
- * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
- *
- * Learn more in https://angular.io/guide/browser-support
- */
-
-/***************************************************************************************************
- * BROWSER POLYFILLS
- */
-
-/**
- * By default, zone.js will patch all possible macroTask and DomEvents
- * user can disable parts of macroTask/DomEvents patch by setting following flags
- * because those flags need to be set before `zone.js` being loaded, and webpack
- * will put import in the top of bundle, so user need to create a separate file
- * in this directory (for example: zone-flags.ts), and put the following flags
- * into that file, and then add the following code before importing zone.js.
- * import './zone-flags.ts';
- *
- * The flags allowed in zone-flags.ts are listed here.
- *
- * The following flags will work for all browsers.
- *
- * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
- * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
- * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
- *
- * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
- * with the following flag, it will bypass `zone.js` patch for IE/Edge
- *
- * (window as any).__Zone_enable_cross_context_check = true;
- *
- */
-
-/***************************************************************************************************
- * Zone JS is required by default for Angular itself.
- */
-import 'zone.js'; // Included with Angular CLI.
-
-/***************************************************************************************************
- * Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
- */
-import '@angular/localize/init';
-
-/***************************************************************************************************
- * APPLICATION IMPORTS
- */
diff --git a/examples/projects/integration-i18n/src/test.ts b/examples/projects/integration-i18n/src/test.ts
deleted file mode 100644
index 040c4780..00000000
--- a/examples/projects/integration-i18n/src/test.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting
-} from '@angular/platform-browser-dynamic/testing';
-
-declare const require: any;
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting(), {
- teardown: { destroyAfterEach: false }
-}
-);
-// Then we find all the tests.
-const context = require.context('./', true, /\.spec\.ts$/);
-// And load the modules.
-context.keys().map(context);
diff --git a/examples/projects/integration-i18n/tsconfig.app.json b/examples/projects/integration-i18n/tsconfig.app.json
index c43df08e..3e50bc39 100644
--- a/examples/projects/integration-i18n/tsconfig.app.json
+++ b/examples/projects/integration-i18n/tsconfig.app.json
@@ -1,14 +1,17 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
- "extends": "../../tsconfig.json",
+ "extends": "./tsconfig.json",
"compilerOptions": {
- "outDir": "../../out-tsc/app",
- "types": []
+ "outDir": "./out-tsc/app",
+ "types": [
+ "@angular/localize"
+ ]
},
"files": [
- "src/main.ts",
- "src/polyfills.ts"
+ "src/main.ts"
],
"include": [
- "projects/integration-i18n/src/**/*.d.ts"
+ "src/**/*.d.ts"
]
}
diff --git a/examples/projects/integration-i18n/tsconfig.json b/examples/projects/integration-i18n/tsconfig.json
new file mode 100644
index 00000000..5525117c
--- /dev/null
+++ b/examples/projects/integration-i18n/tsconfig.json
@@ -0,0 +1,27 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "outDir": "./dist/out-tsc",
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "isolatedModules": true,
+ "esModuleInterop": true,
+ "experimentalDecorators": true,
+ "moduleResolution": "bundler",
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "ES2022"
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ }
+}
diff --git a/examples/projects/integration-i18n/tsconfig.spec.json b/examples/projects/integration-i18n/tsconfig.spec.json
index a809b0a6..b4c6282d 100644
--- a/examples/projects/integration-i18n/tsconfig.spec.json
+++ b/examples/projects/integration-i18n/tsconfig.spec.json
@@ -1,18 +1,16 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
- "extends": "../../tsconfig.json",
+ "extends": "./tsconfig.json",
"compilerOptions": {
- "outDir": "../../out-tsc/spec",
+ "outDir": "./out-tsc/spec",
"types": [
"jasmine",
- "node"
+ "@angular/localize"
]
},
- "files": [
- "src/test.ts",
- "src/polyfills.ts"
- ],
"include": [
- "**/*.spec.ts",
- "**/*.d.ts"
+ "src/**/*.spec.ts",
+ "src/**/*.d.ts"
]
}
diff --git a/examples/projects/integration-i18n/tslint.json b/examples/projects/integration-i18n/tslint.json
deleted file mode 100644
index 19e8161a..00000000
--- a/examples/projects/integration-i18n/tslint.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "extends": "../../tslint.json",
- "rules": {
- "directive-selector": [
- true,
- "attribute",
- "app",
- "camelCase"
- ],
- "component-selector": [
- true,
- "element",
- "app",
- "kebab-case"
- ]
- }
-}