diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 784353a2..3faa71a1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -70,7 +70,13 @@ jobs:
run: |
npm ci
npm run build
-
+
+ - name: Translation of Messages
+ working-directory: ./examples-standalone/integration-i18n
+ run: |
+ npm ci
+ npm run build
+
- name: Spreadsheet App
working-directory: ./examples-standalone/spreadsheet-app
run: |
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/.browserslistrc b/examples-standalone/integration-i18n/.browserslistrc
similarity index 100%
rename from examples/projects/integration-i18n/.browserslistrc
rename to examples-standalone/integration-i18n/.browserslistrc
diff --git a/examples-standalone/integration-i18n/README.md b/examples-standalone/integration-i18n/README.md
new file mode 100644
index 00000000..72144f44
--- /dev/null
+++ b/examples-standalone/integration-i18n/README.md
@@ -0,0 +1,17 @@
+# IntegrationI18n
+
+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.
+
+## Development server
+
+To run the different i18n configurations, you can use the following commands:
+
+```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-standalone/integration-i18n/angular.json b/examples-standalone/integration-i18n/angular.json
new file mode 100644
index 00000000..09089b39
--- /dev/null
+++ b/examples-standalone/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-standalone/integration-i18n/package.json b/examples-standalone/integration-i18n/package.json
new file mode 100644
index 00000000..028c9f58
--- /dev/null
+++ b/examples-standalone/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-standalone/integration-i18n/public/favicon.ico b/examples-standalone/integration-i18n/public/favicon.ico
new file mode 100644
index 00000000..57614f9c
Binary files /dev/null and b/examples-standalone/integration-i18n/public/favicon.ico differ
diff --git a/examples/projects/integration-i18n/src/app/app.component.scss b/examples-standalone/integration-i18n/src/app/app.component.css
similarity index 100%
rename from examples/projects/integration-i18n/src/app/app.component.scss
rename to examples-standalone/integration-i18n/src/app/app.component.css
diff --git a/examples-standalone/integration-i18n/src/app/app.component.html b/examples-standalone/integration-i18n/src/app/app.component.html
new file mode 100644
index 00000000..7e937a5f
--- /dev/null
+++ b/examples-standalone/integration-i18n/src/app/app.component.html
@@ -0,0 +1,17 @@
+
Hello, World!
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples-standalone/integration-i18n/src/app/app.component.ts b/examples-standalone/integration-i18n/src/app/app.component.ts
new file mode 100644
index 00000000..2dcfa027
--- /dev/null
+++ b/examples-standalone/integration-i18n/src/app/app.component.ts
@@ -0,0 +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',
+ styleUrl: './app.component.css'
+})
+export class AppComponent {
+ 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-standalone/integration-i18n/src/app/app.config.ts b/examples-standalone/integration-i18n/src/app/app.config.ts
new file mode 100644
index 00000000..3e6693b0
--- /dev/null
+++ b/examples-standalone/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-standalone/integration-i18n/src/app/app.routes.ts b/examples-standalone/integration-i18n/src/app/app.routes.ts
new file mode 100644
index 00000000..dc39edb5
--- /dev/null
+++ b/examples-standalone/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/index.html b/examples-standalone/integration-i18n/src/index.html
similarity index 99%
rename from examples/projects/integration-i18n/src/index.html
rename to examples-standalone/integration-i18n/src/index.html
index 41d64049..3e2158fd 100644
--- a/examples/projects/integration-i18n/src/index.html
+++ b/examples-standalone/integration-i18n/src/index.html
@@ -4,7 +4,6 @@
IntegrationI18n
-
diff --git a/examples-standalone/integration-i18n/src/locale/messages.de.xlf b/examples-standalone/integration-i18n/src/locale/messages.de.xlf
new file mode 100644
index 00000000..8cf6d841
--- /dev/null
+++ b/examples-standalone/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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11070,11073
+
+ The title of the clear button
+ kendo.datepicker.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.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
+
+
+
+ Ü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
+
+
+
+ Ü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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
+
+ The title of the clear button
+ kendo.timepicker.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Ü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
+
+
+
+ Ü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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
+
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
+
+
+
+ Ü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
+
+
+
+ Ü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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Schließen
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
+
+ The title of the close button
+ kendo.window.closeTitle
+
+
+
+ Wiederherstellen
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
+
+ The title of the restore button
+ kendo.window.restoreTitle
+
+
+
+ Maximieren
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
+
+ The title of the maximize button
+ kendo.window.maximizeTitle
+
+
+
+ Minimieren
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
+
+ The title of the minimize button
+ kendo.window.minimizeTitle
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
+
+ The title of the clear button
+ kendo.autocomplete.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
+
+ The title of the clear button
+ kendo.combobox.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
+
+ The title of the clear button
+ kendo.multiselect.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
+
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
+
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ {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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ (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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Filtern
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+
+ 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
+
+
+
+ und
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+
+ 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
+
+
+
+ Laden
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Sortierbar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Ü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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25209
+
+ The title for the column menu Filter tab
+ kendo.grid.columnMenuFilterTabTitle
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Ein
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2921
+
+ The **On** label of the Switch.
+ kendo.switch.on
+
+
+
+ Aus
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2923,2927
+
+ The **Off** label of the Switch.
+ kendo.switch.off
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Erfolgreich
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8933
+
+ The pass message for the contrast tool.
+ kendo.colorgradient.passContrast
+
+
+
+ Fehlgeschlagen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8935
+
+ The fail message for the contrast tool.
+ kendo.colorgradient.failContrast
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Anwenden
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
+
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
+
+
+
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11021
+
+ The message for the Cancel action button.
+ kendo.flatcolorpicker.cancelButton
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11037,11039
+
+ The placeholder for the HEX color input.
+ kendo.flatcolorpicker.hexInputPlaceholder
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Anwenden
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12110
+
+ The message for the Apply action button.
+ kendo.colorpicker.applyButton
+
+
+
+ Abbrechen
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12112
+
+ The message for the Cancel action button.
+ kendo.colorpicker.cancelButton
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ Leeren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14720
+
+ The message for the Clear button.
+ kendo.signature.clear
+
+
+
+ Maximieren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14721,14722
+
+ The message for the Maximize button.
+ kendo.signature.maximize
+
+
+
+ Minimieren
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14723,14724
+
+ The message for the Minimize button.
+ kendo.signature.minimize
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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...
+
+ node_modules/@progress/kendo-angular-treeview/fesm2022/progress-kendo-angular-treeview.mjs
+ 2849,2853
+
+ The title of the Load More button
+ kendo.treeview.loadMore
+
+
+
+ Hallo, Welt!
+
+ src/app/app.component.html
+ 1,5
+
+ An introduction header for this sample
+ User welcome
+
+
+
+
diff --git a/examples-standalone/integration-i18n/src/locale/messages.es.xlf b/examples-standalone/integration-i18n/src/locale/messages.es.xlf
new file mode 100644
index 00000000..c54414fb
--- /dev/null
+++ b/examples-standalone/integration-i18n/src/locale/messages.es.xlf
@@ -0,0 +1,2871 @@
+
+
+
+
+
+
+ {buttonText} splitbutton
+
+ node_modules/@progress/kendo-angular-buttons/fesm2022/progress-kendo-angular-buttons.mjs
+ 5256,5258
+
+ The text for the SplitButton aria-label
+ kendo.splitbutton.splitButtonLabel
+
+
+
+ Hoy
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+
+
+ Hoy
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+
+
+ Incrementar valor
+
+ 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
+
+
+
+ Disminuir valor
+
+ 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
+
+
+
+ Limpiar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+
+ Hoy
+
+ 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/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
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.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
+
+
+
+ Fijar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14713
+
+ The Accept button text in the timepicker component
+ kendo.timepicker.accept
+
+
+
+ Fijar
+
+ 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
+
+
+
+ Cancelar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14719
+
+ The Cancel button text in the timepicker component
+ kendo.timepicker.cancel
+
+
+
+ Cancelar
+
+ 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
+
+
+
+ Ahora
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14725
+
+ The Now button text in the timepicker component
+ kendo.timepicker.now
+
+
+
+ Ahora
+
+ 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
+
+
+
+ Alternar lista de tiempo
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
+
+ The title of the clear button
+ kendo.timepicker.clearTitle
+
+
+
+ Fecha
+
+ 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
+
+
+
+ Mostrar fecha
+
+ 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
+
+
+
+ Hora
+
+ 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
+
+
+
+ Mostrar hora
+
+ 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
+
+
+
+ Cambiar calendario
+
+ 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
+
+
+
+ Acceptar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16885
+
+ The Accept button text in the datetimepicker component
+ kendo.datetimepicker.accept
+
+
+
+ Acceptar
+
+ 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
+
+
+
+ Cancelar
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16891
+
+ The Cancel button text in the datetimepicker component
+ kendo.datetimepicker.cancel
+
+
+
+ Cancelar
+
+ 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
+
+
+
+ AHORA
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16897
+
+ The Now button text in the timepicker component
+ kendo.datetimepicker.now
+
+
+
+ Ahora
+
+ 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
+
+
+
+ HOY
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
+
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
+
+
+
+ Set
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ 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
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
+
+ The title of the close button
+ kendo.window.closeTitle
+
+
+
+ Restore
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
+
+ The title of the restore button
+ kendo.window.restoreTitle
+
+
+
+ Maximize
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
+
+ The title of the maximize button
+ kendo.window.maximizeTitle
+
+
+
+ Minimize
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
+
+ The title of the minimize button
+ kendo.window.minimizeTitle
+
+
+
+ No se encontraron datos
+
+ 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
+
+ The title of the clear button
+ kendo.autocomplete.clearTitle
+
+
+
+ Lista de opciones
+
+ 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 se encontraron datos
+
+ 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
+
+ The title of the clear button
+ kendo.combobox.clearTitle
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+ Filtrar
+
+ 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
+
+
+
+ Lista de opciones
+
+ 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 se encontraron datos
+
+ 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
+
+ The title of the clear button
+ kendo.multiselect.clearTitle
+
+
+
+ Lista de opciones
+
+ 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
+
+
+
+ Aplicar
+
+ 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
+
+
+
+ Cancelar
+
+ 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 se encontraron datos
+
+ 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
+
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
+
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
+
+
+
+ Lista de opciones
+
+ 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 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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 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
+
+
+
+ limpiar
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Aplicar
+
+ 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
+
+
+
+ Cancelar
+
+ 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
+
+
+
+ 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 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ í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
+
+
+
+ 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
+
+
+
+ í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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ (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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Filtrar
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+
+ 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
+
+
+
+ Y
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+
+ 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
+
+
+
+ Cargando
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ Ordenable
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ Green
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8951
+
+ The placeholder for the green color input.
+ kendo.colorgradient.greenInputPlaceholder
+
+
+
+ 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 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
+
+ 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-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
+
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ Green
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12124
+
+ The placeholder for the green color input.
+ kendo.colorpicker.greenInputPlaceholder
+
+
+
+ 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 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
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+
+
+ 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
+
+ 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
+
+
+
+ í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
+
+
+
+ í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
+
+ 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
+
+
+
+ ¡Hola Mundo!
+
+ src/app/app.component.html
+ 1,5
+
+ An introduction header for this sample
+ User welcome
+
+
+
+
diff --git a/examples-standalone/integration-i18n/src/locale/messages.xlf b/examples-standalone/integration-i18n/src/locale/messages.xlf
new file mode 100644
index 00000000..0b37df86
--- /dev/null
+++ b/examples-standalone/integration-i18n/src/locale/messages.xlf
@@ -0,0 +1,2595 @@
+
+
+
+
+
+
+
+ node_modules/@progress/kendo-angular-buttons/fesm2022/progress-kendo-angular-buttons.mjs
+ 5256,5258
+
+ The text for the SplitButton aria-label
+ kendo.splitbutton.splitButtonLabel
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 9386,9389
+
+ The title of the clear button
+ kendo.dateinput.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 11070,11073
+
+ The title of the clear button
+ kendo.datepicker.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13272
+
+ The Accept button text in the timeselector component
+ kendo.timeselector.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13278
+
+ The Cancel button text in the timeselector component
+ kendo.timeselector.cancel
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 13284
+
+ The Now button text in the timeselector component
+ kendo.timeselector.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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14713
+
+ The Accept button text in the timepicker component
+ kendo.timepicker.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14719
+
+ The Cancel button text in the timepicker component
+ kendo.timepicker.cancel
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14725
+
+ The Now button text in the timepicker component
+ kendo.timepicker.now
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 14748,14751
+
+ The title of the clear button
+ kendo.timepicker.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16885
+
+ The Accept button text in the datetimepicker component
+ kendo.datetimepicker.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16891
+
+ The Cancel button text in the datetimepicker component
+ kendo.datetimepicker.cancel
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16897
+
+ The Now button text in the timepicker component
+ kendo.datetimepicker.now
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 16929,16933
+
+ The title of the clear button
+ kendo.datetimepicker.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19003
+
+ The Accept button text in the timepicker component
+ kendo.daterangepopup.accept
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dateinputs/fesm2022/progress-kendo-angular-dateinputs.mjs
+ 19009
+
+ The Cancel button text in the timepicker component
+ kendo.daterangepopup.cancel
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3427
+
+ The title of the close button
+ kendo.window.closeTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3429,3430
+
+ The title of the restore button
+ kendo.window.restoreTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3431,3433
+
+ The title of the maximize button
+ kendo.window.maximizeTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dialog/fesm2022/progress-kendo-angular-dialog.mjs
+ 3434,3438
+
+ The title of the minimize button
+ kendo.window.minimizeTitle
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 4288
+
+ The title of the clear button
+ kendo.autocomplete.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 6363
+
+ The title of the clear button
+ kendo.combobox.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 11135
+
+ The title of the clear button
+ kendo.multiselect.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12133
+
+ The title of the clear button
+ kendo.multicolumncombobox.clearTitle
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 12135,12136
+
+ The title of the select button
+ kendo.multicolumncombobox.selectButtonText
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 14044
+
+ The title of the clear button
+ kendo.dropdowntree.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-dropdowns/fesm2022/progress-kendo-angular-dropdowns.mjs
+ 16696
+
+ The title of the clear button
+ kendo.multiselecttree.clearTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25030,25032
+
+ The text of the equal filter operator
+ kendo.grid.filterEqOperator
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25051,25053
+
+ The text of the contains filter operator
+ kendo.grid.filterContainsOperator
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25080
+
+ The text of the (All) boolean filter option
+ kendo.grid.filterBooleanAll
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25095
+
+ The text of the filter button
+ kendo.grid.filterFilterButton
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25098
+
+ The text of the clear filter button
+ kendo.grid.filterClearButton
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25101
+
+ The text of the And filter logic
+ kendo.grid.filterAndLogic
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25104,25105
+
+ The text of the Or filter logic
+ kendo.grid.filterOrLogic
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25106,25107
+
+ The loading text
+ kendo.grid.loading
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25132,25134
+
+ The label of the sort icon
+ kendo.grid.sortable
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25180,25182
+
+ The labels of the checkbox column checkboxes.
+ kendo.grid.selectionCheckboxLabel
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25195,25197
+
+ The label for the Grid top toolbar
+ kendo.grid.topToolbarLabel
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25198,25200
+
+ The label for the Grid bottom toolbar
+ kendo.grid.bottomToolbarLabel
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-grid/fesm2022/progress-kendo-angular-grid.mjs
+ 25209
+
+ The title for the column menu Filter tab
+ kendo.grid.columnMenuFilterTabTitle
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2921
+
+ The **On** label of the Switch.
+ kendo.switch.on
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 2923,2927
+
+ The **Off** label of the Switch.
+ kendo.switch.off
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8926,8927
+
+ The title for the clear button.
+ kendo.colorgradient.clearButton
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8929
+
+ The title for the hue slider handle.
+ kendo.colorgradient.hueSliderHandle
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8930,8931
+
+ The title for the opacity slider handle.
+ kendo.colorgradient.opacitySliderHandle
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8933
+
+ The pass message for the contrast tool.
+ kendo.colorgradient.passContrast
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8935
+
+ The fail message for the contrast tool.
+ kendo.colorgradient.failContrast
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8951
+
+ The placeholder for the green color input.
+ kendo.colorgradient.greenInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8953
+
+ The placeholder for the blue color input.
+ kendo.colorgradient.blueInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 8955,8957
+
+ The placeholder for the HEX color input.
+ kendo.colorgradient.hexInputPlaceholder
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11000,11001
+
+ The title for the clear button.
+ kendo.flatcolorpicker.clearButton
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11003
+
+ The title for the hue slider handle.
+ kendo.flatcolorpicker.hueSliderHandle
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11004,11005
+
+ The title for the opacity slider handle.
+ kendo.flatcolorpicker.opacitySliderHandle
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11008,11009
+
+ The message for the color preview pane.
+ kendo.flatcolorpicker.previewColor
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11010,11011
+
+ The message for the selected color pane.
+ kendo.flatcolorpicker.revertSelection
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11012,11013
+
+ The message for the gradient view button.
+ kendo.flatcolorpicker.gradientView
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11014,11015
+
+ The message for the palette view button.
+ kendo.flatcolorpicker.paletteView
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11019
+
+ The message for the Apply action button.
+ kendo.flatcolorpicker.applyButton
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11021
+
+ The message for the Cancel action button.
+ kendo.flatcolorpicker.cancelButton
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11033
+
+ The placeholder for the green color input.
+ kendo.flatcolorpicker.greenInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11035
+
+ The placeholder for the blue color input.
+ kendo.flatcolorpicker.blueInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 11037,11039
+
+ The placeholder for the HEX color input.
+ kendo.flatcolorpicker.hexInputPlaceholder
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12091,12092
+
+ The title for the clear button.
+ kendo.colorpicker.clearButton
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12094
+
+ The title for the hue slider handle.
+ kendo.colorpicker.hueSliderHandle
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12095,12096
+
+ The title for the opacity slider handle.
+ kendo.colorpicker.opacitySliderHandle
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12099,12100
+
+ The message for the color preview pane.
+ kendo.colorpicker.previewColor
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12101,12102
+
+ The message for the selected color pane.
+ kendo.colorpicker.revertSelection
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12103,12104
+
+ The message for the gradient view button.
+ kendo.colorpicker.gradientView
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12105,12106
+
+ The message for the palette view button.
+ kendo.colorpicker.paletteView
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12110
+
+ The message for the Apply action button.
+ kendo.colorpicker.applyButton
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12112
+
+ The message for the Cancel action button.
+ kendo.colorpicker.cancelButton
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12124
+
+ The placeholder for the green color input.
+ kendo.colorpicker.greenInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12126
+
+ The placeholder for the blue color input.
+ kendo.colorpicker.blueInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 12128,12130
+
+ The placeholder for the HEX color input.
+ kendo.colorpicker.hexInputPlaceholder
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14720
+
+ The message for the Clear button.
+ kendo.signature.clear
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14721,14722
+
+ The message for the Maximize button.
+ kendo.signature.maximize
+
+
+
+
+ node_modules/@progress/kendo-angular-inputs/fesm2022/progress-kendo-angular-inputs.mjs
+ 14723,14724
+
+ The message for the Minimize button.
+ kendo.signature.minimize
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+
+ node_modules/@progress/kendo-angular-treeview/fesm2022/progress-kendo-angular-treeview.mjs
+ 2849,2853
+
+ The title of the Load More button
+ kendo.treeview.loadMore
+
+
+
+
+ src/app/app.component.html
+ 1,5
+
+ An introduction header for this sample
+ User welcome
+
+
+
+
diff --git a/examples-standalone/integration-i18n/src/main.ts b/examples-standalone/integration-i18n/src/main.ts
new file mode 100644
index 00000000..ee354351
--- /dev/null
+++ b/examples-standalone/integration-i18n/src/main.ts
@@ -0,0 +1,8 @@
+///
+
+import { bootstrapApplication } from '@angular/platform-browser';
+import { appConfig } from './app/app.config';
+import { AppComponent } from './app/app.component';
+
+bootstrapApplication(AppComponent, appConfig)
+ .catch((err) => console.error(err));
diff --git a/examples/projects/integration-i18n/src/styles.css b/examples-standalone/integration-i18n/src/styles.css
similarity index 100%
rename from examples/projects/integration-i18n/src/styles.css
rename to examples-standalone/integration-i18n/src/styles.css
diff --git a/examples-standalone/integration-i18n/tsconfig.app.json b/examples-standalone/integration-i18n/tsconfig.app.json
new file mode 100644
index 00000000..3e50bc39
--- /dev/null
+++ b/examples-standalone/integration-i18n/tsconfig.app.json
@@ -0,0 +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",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "types": [
+ "@angular/localize"
+ ]
+ },
+ "files": [
+ "src/main.ts"
+ ],
+ "include": [
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/examples-standalone/integration-i18n/tsconfig.json b/examples-standalone/integration-i18n/tsconfig.json
new file mode 100644
index 00000000..5525117c
--- /dev/null
+++ b/examples-standalone/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-standalone/integration-i18n/tsconfig.spec.json b/examples-standalone/integration-i18n/tsconfig.spec.json
new file mode 100644
index 00000000..b4c6282d
--- /dev/null
+++ b/examples-standalone/integration-i18n/tsconfig.spec.json
@@ -0,0 +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",
+ "compilerOptions": {
+ "outDir": "./out-tsc/spec",
+ "types": [
+ "jasmine",
+ "@angular/localize"
+ ]
+ },
+ "include": [
+ "src/**/*.spec.ts",
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/examples/projects/integration-i18n/.eslintrc.json b/examples/projects/integration-i18n/.eslintrc.json
deleted file mode 100644
index 47c17dd9..00000000
--- a/examples/projects/integration-i18n/.eslintrc.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "root": true,
- "ignorePatterns": [
- "projects/**/*"
- ],
- "overrides": [
- {
- "files": [
- "*.ts"
- ],
- "parserOptions": {
- "project": [
- "tsconfig.json"
- ],
- "createDefaultProgram": true
- },
- "extends": [
- "plugin:@angular-eslint/recommended",
- "plugin:@angular-eslint/template/process-inline-templates"
- ],
- "rules": {
- "@angular-eslint/directive-selector": [
- "error",
- {
- "type": "attribute",
- "prefix": "app",
- "style": "camelCase"
- }
- ],
- "@angular-eslint/component-selector": [
- "error",
- {
- "type": "element",
- "prefix": "app",
- "style": "kebab-case"
- }
- ]
- }
- },
- {
- "files": [
- "*.html"
- ],
- "extends": [
- "plugin:@angular-eslint/template/recommended"
- ],
- "rules": {}
- }
- ]
-}
diff --git a/examples/projects/integration-i18n/README.md b/examples/projects/integration-i18n/README.md
deleted file mode 100644
index 1f943a39..00000000
--- a/examples/projects/integration-i18n/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Translating Built-In Component Messages
-
-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/).
-
-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/).
-
-## Getting Started
-
-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`.
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/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 @@
-
-
-
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-dropdowns/dist/es2015/autocomplete.component.d.ts
- 7
-
- The title of the clear button
- kendo.autocomplete.clearTitle
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/switch/switch.component.d.ts
- 4
-
- The **On** label of the Switch.
- kendo.switch.on
-
-
-
-
- ../../node_modules/@progress/kendo-angular-inputs/dist/es2015/switch/switch.component.d.ts
- 6
-
- The **Off** label of the Switch.
- kendo.switch.off
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 34
-
- The label of the filter cell or icon
- kendo.grid.filter
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 37
-
- The text of the equal filter operator
- kendo.grid.filterEqOperator
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 40
-
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 43
-
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 49
-
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 55
-
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 58
-
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 64
-
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 70
-
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 76
-
- The text of the less than filter operator
- kendo.grid.filterLtOperator
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 79
-
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 82
-
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 85
-
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 91
-
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 94
-
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 100
-
- The text of the filter button
- kendo.grid.filterFilterButton
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 103
-
- The text of the clear filter button
- kendo.grid.filterClearButton
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 106
-
- The text of the And filter logic
- kendo.grid.filterAndLogic
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 109
-
- The text of the Or filter logic
- kendo.grid.filterOrLogic
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 112
-
- The loading text
- kendo.grid.loading
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 115
-
- The title of the column menu icon
- kendo.grid.columnMenu
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../node_modules/@progress/kendo-angular-grid/dist/es2015/grid.component.d.ts
- 127
-
- The label of the sort icon
- kendo.grid.sortable
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- ../../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
-
-
-
-
- src/app/app.component.html
- 1
-
- An introduction header for this sample
- User welcome
-
-
-
-
diff --git a/examples/projects/integration-i18n/src/app/app.component.html b/examples/projects/integration-i18n/src/app/app.component.html
deleted file mode 100644
index de667987..00000000
--- a/examples/projects/integration-i18n/src/app/app.component.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
Hello, World!
-
-
-
-
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
deleted file mode 100644
index c97e171d..00000000
--- a/examples/projects/integration-i18n/src/app/app.component.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Component } from '@angular/core';
-
-@Component({
- selector: 'app-root',
- templateUrl: './app.component.html',
- styleUrls: ['./app.component.scss']
-})
-export class AppComponent {
- public title = 'app works!';
-}
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/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 8081c7ce..00000000
Binary files a/examples/projects/integration-i18n/src/favicon.ico and /dev/null differ
diff --git a/examples/projects/integration-i18n/src/locale/messages.es.xlf b/examples/projects/integration-i18n/src/locale/messages.es.xlf
deleted file mode 100644
index 389d914b..00000000
--- a/examples/projects/integration-i18n/src/locale/messages.es.xlf
+++ /dev/null
@@ -1,747 +0,0 @@
-
-
-
-
-
-
- Incrementar valor
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The title of the **Increase** button of the Slider.
- kendo.slider.increment
-
-
-
- Disminuir valor
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The title of the **Decrease** button of the Slider.
- kendo.slider.decrement
-
-
-
- drag
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 8
-
- The title of the drag handle of the Slider.
- kendo.slider.dragHandle
-
-
-
- On
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The **On** label of the Switch.
- kendo.switch.on
-
-
-
- Off
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The **Off** label of the Switch.
- kendo.switch.off
-
-
-
- Incrementar valor
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The title for the **Increment** button in the NumericTextBox
- kendo.numerictextbox.increment
-
-
-
- Disminuir valor
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The title for the **Decrement** button in the NumericTextBox
- kendo.numerictextbox.decrement
-
-
-
- Hoy
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.calendar.today
-
-
-
- Incrementar valor
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the **Increment** button in the DateInput
- kendo.dateinput.increment
-
-
-
- Disminuir valor
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the **Decrement** button in the DateInput
- kendo.dateinput.decrement
-
-
-
- Hoy
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.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/index.d.ts
- 7
-
- The label for the toggle button in the datepicker component
- kendo.datepicker.toggle
-
-
-
- Fijar
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The Accept button text in the timepicker component
- kendo.timepicker.accept
-
-
-
- Fijar
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the Accept button in the timepicker component
- kendo.timepicker.acceptLabel
-
-
-
- Cancelar
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The Cancel button text in the timepicker component
- kendo.timepicker.cancel
-
-
-
- Cancelar
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
-
- The label for the Cancel button in the timepicker component
- kendo.timepicker.cancelLabel
-
-
-
- Ahora
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
-
- The Now button text in the timepicker component
- kendo.timepicker.now
-
-
-
- Ahora
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
-
- The label for the Now button in the timepicker component
- kendo.timepicker.nowLabel
-
-
-
- Alternar lista de tiempo
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 22
-
- The label for the toggle button in the timepicker component
- kendo.timepicker.toggle
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.multiviewcalendar.today
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the previous button in the Multiview calendar
- kendo.multiviewcalendar.prevButtonTitle
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The label for the next button in the Multiview calendar
- kendo.multiviewcalendar.nextButtonTitle
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The Accept button text in the timeselector component
- kendo.timeselector.accept
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the Accept button in the timeselector component
- kendo.timeselector.acceptLabel
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The Cancel button text in the timeselector component
- kendo.timeselector.cancel
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
-
- The label for the Cancel button in the timeselector component
- kendo.timeselector.cancelLabel
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
-
- The Now button text in the timeselector component
- kendo.timeselector.now
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
-
- The label for the Now button in the timeselector component
- kendo.timeselector.nowLabel
-
-
-
- Arrastre el título de una columna y suéltelo aquí para agrupar por ese criterio
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 4
-
- The label visible in the Grid group panel when it is empty
- kendo.grid.groupPanelEmpty
-
-
-
- No hay datos disponibles.
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 7
-
- The label visible in the Grid when there are no records
- kendo.grid.noRecords
-
-
-
- Ir a la primera página
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 10
-
- The label for the first page button in Grid pager
- kendo.grid.pagerFirstPage
-
-
-
- Ir a la página anterior
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 13
-
- The label for the previous page button in Grid pager
- kendo.grid.pagerPreviousPage
-
-
-
- Ir a la página siguiente
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 16
-
- The label for the next page button in Grid pager
- kendo.grid.pagerNextPage
-
-
-
- Ir a la última página
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 19
-
- The label for the last page button in Grid pager
- kendo.grid.pagerLastPage
-
-
-
- Página
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 22
-
- The label before the current page number in the Grid pager
- kendo.grid.pagerPage
-
-
-
- de
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 25
-
- The label before the total pages number in the Grid pager
- kendo.grid.pagerOf
-
-
-
- ítems
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 28
-
- The label after the total pages number in the Grid pager
- kendo.grid.pagerItems
-
-
-
- ítems por página
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.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/index.d.ts
- 34
-
- The label of the filter cell or icon
- kendo.grid.filter
-
-
-
- Es igual a
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 37
-
- The text of the equal filter operator
- kendo.grid.filterEqOperator
-
-
-
- No es igual a
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 40
-
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
-
-
-
- Es nulo
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 43
-
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
-
-
-
- No es nulo
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 46
-
- The text of the is not null filter operator
- kendo.grid.filterIsNotNullOperator
-
-
-
- Está vacío
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 49
-
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
-
-
-
- No está vacío
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 52
-
- The text of the is not empty filter operator
- kendo.grid.filterIsNotEmptyOperator
-
-
-
- Comienza con
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 55
-
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
-
-
-
- Contiene
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 58
-
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
-
-
-
- No contiene
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 61
-
- The text of the does not contain filter operator
- kendo.grid.filterNotContainsOperator
-
-
-
- Termina en
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 64
-
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
-
-
-
- Es mayor o igual que
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 67
-
- The text of the greater than or equal filter operator
- kendo.grid.filterGteOperator
-
-
-
- Es mayor que
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 70
-
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
-
- Es menor o igual que
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 73
-
- The text of the less than or equal filter operator
- kendo.grid.filterLteOperator
-
-
-
- Es menor o igual que
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 76
-
- The text of the less than filter operator
- kendo.grid.filterLtOperator
-
-
-
- Sí
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 79
-
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
-
-
-
- No
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 82
-
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
-
-
-
- (Todas)
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 85
-
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
-
-
-
- Es posterior o igual a
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 88
-
- The text of the after or equal date filter operator
- kendo.grid.filterAfterOrEqualOperator
-
-
-
- Es posterior
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 91
-
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
-
-
-
- Es anterior
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 94
-
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
-
-
-
- Es anterior o igual a
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 97
-
- The text of the before or equal date filter operator
- kendo.grid.filterBeforeOrEqualOperator
-
-
-
- Filtrar
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 100
-
- The text of the filter button
- kendo.grid.filterFilterButton
-
-
-
- Limpiar filtros
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 103
-
- The text of the clear filter button
- kendo.grid.filterClearButton
-
-
-
- Y
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 106
-
- The text of the And filter logic
- kendo.grid.filterAndLogic
-
-
-
- O
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 109
-
- The text of the Or filter logic
- kendo.grid.filterOrLogic
-
-
-
- Loading
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 112
-
- The loading text
- kendo.grid.loading
-
-
-
- Column Menu
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 115
-
- The title of the column menu icon
- kendo.grid.columnMenu
-
-
-
- Columns
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.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/index.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/index.d.ts
- 124
-
- The text shown in the column menu for the unlock item
- kendo.grid.unlock
-
-
-
- Sort Ascending
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 127
-
- 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/index.d.ts
- 130
-
- The text shown in the column menu for the sort descending item
- kendo.grid.sortDescending
-
-
-
- Apply
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 133
-
- 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/index.d.ts
- 136
-
- The text shown in the column menu or column chooser for the columns reset button
- kendo.grid.columnsReset
-
-
-
- ¡Hola Mundo!
-
- app/app.component.ts
- 1
-
- 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
deleted file mode 100644
index e0385c73..00000000
--- a/examples/projects/integration-i18n/src/locale/messages.xlf
+++ /dev/null
@@ -1,673 +0,0 @@
-
-
-
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The title of the **Increase** button of the Slider.
- kendo.slider.increment
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The title of the **Decrease** button of the Slider.
- kendo.slider.decrement
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 8
-
- The title of the drag handle of the Slider.
- kendo.slider.dragHandle
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The **On** label of the Switch.
- kendo.switch.on
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The **Off** label of the Switch.
- kendo.switch.off
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 4
-
- The title for the **Increment** button in the NumericTextBox
- kendo.numerictextbox.increment
-
-
-
-
- ../node_modules/@progress/kendo-angular-inputs/dist/es2015/index.d.ts
- 6
-
- The title for the **Decrement** button in the NumericTextBox
- kendo.numerictextbox.decrement
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.calendar.today
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the **Increment** button in the DateInput
- kendo.dateinput.increment
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the **Decrement** button in the DateInput
- kendo.dateinput.decrement
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.datepicker.today
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the toggle button in the datepicker component
- kendo.datepicker.toggle
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The Accept button text in the timepicker component
- kendo.timepicker.accept
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the Accept button in the timepicker component
- kendo.timepicker.acceptLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The Cancel button text in the timepicker component
- kendo.timepicker.cancel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
-
- The label for the Cancel button in the timepicker component
- kendo.timepicker.cancelLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
-
- The Now button text in the timepicker component
- kendo.timepicker.now
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
-
- The label for the Now button in the timepicker component
- kendo.timepicker.nowLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 22
-
- The label for the toggle button in the timepicker component
- kendo.timepicker.toggle
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The label for the today button in the calendar header
- kendo.multiviewcalendar.today
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the previous button in the Multiview calendar
- kendo.multiviewcalendar.prevButtonTitle
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The label for the next button in the Multiview calendar
- kendo.multiviewcalendar.nextButtonTitle
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 4
-
- The Accept button text in the timeselector component
- kendo.timeselector.accept
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 7
-
- The label for the Accept button in the timeselector component
- kendo.timeselector.acceptLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 10
-
- The Cancel button text in the timeselector component
- kendo.timeselector.cancel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 13
-
- The label for the Cancel button in the timeselector component
- kendo.timeselector.cancelLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 16
-
- The Now button text in the timeselector component
- kendo.timeselector.now
-
-
-
-
- ../node_modules/@progress/kendo-angular-dateinputs/dist/es2015/index.d.ts
- 19
-
- The label for the Now button in the timeselector component
- kendo.timeselector.nowLabel
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 4
-
- The label visible in the Grid group panel when it is empty
- kendo.grid.groupPanelEmpty
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 7
-
- The label visible in the Grid when there are no records
- kendo.grid.noRecords
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 10
-
- The label for the first page button in Grid pager
- kendo.grid.pagerFirstPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 13
-
- The label for the previous page button in Grid pager
- kendo.grid.pagerPreviousPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 16
-
- The label for the next page button in Grid pager
- kendo.grid.pagerNextPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 19
-
- The label for the last page button in Grid pager
- kendo.grid.pagerLastPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 22
-
- The label before the current page number in the Grid pager
- kendo.grid.pagerPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 25
-
- The label before the total pages number in the Grid pager
- kendo.grid.pagerOf
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 28
-
- The label after the total pages number in the Grid pager
- kendo.grid.pagerItems
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 31
-
- The label for the page size chooser in the Grid pager
- kendo.grid.pagerItemsPerPage
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 34
-
- The label of the filter cell or icon
- kendo.grid.filter
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 37
-
- The text of the equal filter operator
- kendo.grid.filterEqOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 40
-
- The text of the not equal filter operator
- kendo.grid.filterNotEqOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 43
-
- The text of the is null filter operator
- kendo.grid.filterIsNullOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 46
-
- The text of the is not null filter operator
- kendo.grid.filterIsNotNullOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 49
-
- The text of the is empty filter operator
- kendo.grid.filterIsEmptyOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 52
-
- The text of the is not empty filter operator
- kendo.grid.filterIsNotEmptyOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 55
-
- The text of the starts with filter operator
- kendo.grid.filterStartsWithOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 58
-
- The text of the contains filter operator
- kendo.grid.filterContainsOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 61
-
- The text of the does not contain filter operator
- kendo.grid.filterNotContainsOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 64
-
- The text of the ends with filter operator
- kendo.grid.filterEndsWithOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 67
-
- The text of the greater than or equal filter operator
- kendo.grid.filterGteOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 70
-
- The text of the greater than filter operator
- kendo.grid.filterGtOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 73
-
- The text of the less than or equal filter operator
- kendo.grid.filterLteOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 76
-
- The text of the less than filter operator
- kendo.grid.filterLtOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 79
-
- The text of the IsTrue boolean filter option
- kendo.grid.filterIsTrue
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 82
-
- The text of the IsFalse boolean filter option
- kendo.grid.filterIsFalse
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 85
-
- The text of the (All) boolean filter option
- kendo.grid.filterBooleanAll
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 88
-
- The text of the after or equal date filter operator
- kendo.grid.filterAfterOrEqualOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 91
-
- The text of the after date filter operator
- kendo.grid.filterAfterOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 94
-
- The text of the before date filter operator
- kendo.grid.filterBeforeOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 97
-
- The text of the before or equal date filter operator
- kendo.grid.filterBeforeOrEqualOperator
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 100
-
- The text of the filter button
- kendo.grid.filterFilterButton
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 103
-
- The text of the clear filter button
- kendo.grid.filterClearButton
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 106
-
- The text of the And filter logic
- kendo.grid.filterAndLogic
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 109
-
- The text of the Or filter logic
- kendo.grid.filterOrLogic
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 112
-
- The loading text
- kendo.grid.loading
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 115
-
- The title of the column menu icon
- kendo.grid.columnMenu
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 118
-
- The text shown in the column menu for the columns item
- kendo.grid.columns
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 121
-
- The text shown in the column menu for the lock item
- kendo.grid.lock
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 124
-
- The text shown in the column menu for the unlock item
- kendo.grid.unlock
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 127
-
- The text shown in the column menu for the sort ascending item
- kendo.grid.sortAscending
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 130
-
- The text shown in the column menu for the sort descending item
- kendo.grid.sortDescending
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 133
-
- The text shown in the column menu or column chooser for the columns apply button
- kendo.grid.columnsApply
-
-
-
-
- ../node_modules/@progress/kendo-angular-grid/dist/es2015/index.d.ts
- 136
-
- The text shown in the column menu or column chooser for the columns reset button
- kendo.grid.columnsReset
-
-
-
-
- app/app.component.ts
- 1
-
- 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
deleted file mode 100644
index c7b673cf..00000000
--- a/examples/projects/integration-i18n/src/main.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { enableProdMode } from '@angular/core';
-import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-
-import { AppModule } from './app/app.module';
-import { environment } from './environments/environment';
-
-if (environment.production) {
- enableProdMode();
-}
-
-platformBrowserDynamic().bootstrapModule(AppModule)
- .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
deleted file mode 100644
index c43df08e..00000000
--- a/examples/projects/integration-i18n/tsconfig.app.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "extends": "../../tsconfig.json",
- "compilerOptions": {
- "outDir": "../../out-tsc/app",
- "types": []
- },
- "files": [
- "src/main.ts",
- "src/polyfills.ts"
- ],
- "include": [
- "projects/integration-i18n/src/**/*.d.ts"
- ]
-}
diff --git a/examples/projects/integration-i18n/tsconfig.spec.json b/examples/projects/integration-i18n/tsconfig.spec.json
deleted file mode 100644
index a809b0a6..00000000
--- a/examples/projects/integration-i18n/tsconfig.spec.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "extends": "../../tsconfig.json",
- "compilerOptions": {
- "outDir": "../../out-tsc/spec",
- "types": [
- "jasmine",
- "node"
- ]
- },
- "files": [
- "src/test.ts",
- "src/polyfills.ts"
- ],
- "include": [
- "**/*.spec.ts",
- "**/*.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"
- ]
- }
-}