mirror of
https://github.com/logto-io/logto.git
synced 2025-01-13 21:30:30 -05:00
d1900e1854
chore(connector): add translation ko_KR chore(phrases): add translation ko_KR test: add mock translation for ko_KR Update packages/phrases-ui/src/locales/ko-kr.ts Co-authored-by: Charles Zhao <charleszhao@silverhand.io> Update packages/phrases-ui/src/locales/ko-kr.ts Co-authored-by: Charles Zhao <charleszhao@silverhand.io> chore(phrases): update translation ko_KR chore(phrases): edit translation ko_KR, make more friendly chore(phrases): fix typo chore(phrases): make translation smooth ko_KR chore(phrases): edit translation ko_KR chore(console): add translation ko_KR chore(phrases): add korean language for login ui
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
import { ConnectorType, ConnectorMetadata } from '@logto/connector-types';
|
||
|
||
export const endpoint = 'https://dm.aliyuncs.com/';
|
||
|
||
export const staticConfigs = {
|
||
Format: 'json',
|
||
SignatureMethod: 'HMAC-SHA1',
|
||
SignatureVersion: '1.0',
|
||
Version: '2015-11-23',
|
||
};
|
||
|
||
export const defaultMetadata: ConnectorMetadata = {
|
||
id: 'aliyun-direct-mail',
|
||
target: 'aliyun-dm',
|
||
type: ConnectorType.Email,
|
||
platform: null,
|
||
name: {
|
||
en: 'Aliyun Direct Mail',
|
||
'zh-CN': '阿里云邮件推送',
|
||
'tr-TR': 'Aliyun Direct Mail',
|
||
'ko-KR': 'Aliyun 다이렉트 메일',
|
||
},
|
||
logo: './logo.svg',
|
||
logoDark: null,
|
||
description: {
|
||
en: 'Aliyun provides cloud computing services to online businesses.',
|
||
'zh-CN': '阿里云是全球性的云服务提供商。',
|
||
'tr-TR': 'Aliyun, çevrimiçi işletmelere bulut bilişim hizmetleri sunmaktadır.',
|
||
'ko-KR': 'Aliyun는 온라인 비지니스를 위해 클라우딩 컴퓨팅 서비스를 제공합니다.',
|
||
},
|
||
readme: './README.md',
|
||
configTemplate: './docs/config-template.json',
|
||
};
|