src/lib/core/translations.ts
Properties |
acceptSubscriptionRequest |
acceptSubscriptionRequest:
|
Type : string
|
block |
block:
|
Type : string
|
blockAndReport |
blockAndReport:
|
Type : string
|
chat |
chat:
|
Type : string
|
contactRequestIn |
contactRequestIn:
|
Type : string
|
contactRequestOut |
contactRequestOut:
|
Type : string
|
contacts |
contacts:
|
Type : string
|
contactsUnaffiliated |
contactsUnaffiliated:
|
Type : string
|
dateFormat |
dateFormat:
|
Type : string
|
denySubscriptionRequest |
denySubscriptionRequest:
|
Type : string
|
dismiss |
dismiss:
|
Type : string
|
dropMessage |
dropMessage:
|
Type : string
|
locale |
locale:
|
Type : string
|
noContacts |
noContacts:
|
Type : string
|
noMessages |
noMessages:
|
Type : string
|
placeholder |
placeholder:
|
Type : string
|
presence |
presence:
|
rooms |
rooms:
|
Type : string
|
subscriptionRequestMessage |
subscriptionRequestMessage:
|
Type : string
|
timeFormat |
timeFormat:
|
Type : string
|
import { Presence } from './presence';
export interface Translations {
acceptSubscriptionRequest: string;
block: string;
blockAndReport: string;
chat: string;
contactRequestIn: string;
contactRequestOut: string;
contacts: string;
contactsUnaffiliated: string;
dateFormat: string;
denySubscriptionRequest: string;
dismiss: string;
dropMessage: string;
locale: string;
noContacts: string;
noMessages: string;
placeholder: string;
presence: { [P in Presence]: string; };
rooms: string;
subscriptionRequestMessage: string;
timeFormat: string;
}