UNPKG

@progress/kendo-angular-l10n

Version:

Kendo UI Angular l10n component - an easily customized popup from the most trusted provider of professional Angular components.

56 lines (55 loc) 2.1 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs'; import * as i0 from "@angular/core"; /** * Represents a base class for a service that returns localized messages. * * For more information, refer to the section on [using the message service]({% slug messages_l10n %}#toc-using-the-message-service). * * @example * ```ts * export class CustomMessageService extends MessageService { * public get(key: string): string { * return this.messages[key]; * } * } * ``` */ export class MessageService { /** * @hidden */ constructor() { /* noop */ } /** * @hidden */ changes = new BehaviorSubject({ rtl: undefined }); /** * Notifies the components that the messages changed. * * @param rtl - (Optional) The new value for the [text direction token]({% slug api_l10n_rtl %}). */ notify(rtl) { this.changes.next({ rtl }); } /** * Returns a localized message for the supplied key. * * @param _key - The message key. For example, `"kendo.grid.noRecords"`. * @return - The localized message for this key or `undefined` if not found. */ get(_key) { return undefined; } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MessageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MessageService }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MessageService, decorators: [{ type: Injectable }], ctorParameters: () => [] });