mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-11 16:26:02 +00:00
- Add zh_Hant (Traditional Chinese) to all 17 adapter YAML metadata and config fields - Add ja_JP translations to global adapters (Telegram, Discord, Slack, Lark, LINE) - Fix buggy zh_Hant in line.yaml and slack.yaml (contained simplified Chinese) - Add zh_Hant field to backend I18nString model - Add adapter category grouping with locale-aware ordering - Add webhook Cloud CTA for community edition users - Fix wizard progress not clearing on skip/complete
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
export interface IChooseAdapterEntity {
|
|
label: string;
|
|
value: string;
|
|
categories?: string[];
|
|
}
|
|
|
|
export interface IPipelineEntity {
|
|
label: string;
|
|
value: string;
|
|
emoji?: string;
|
|
}
|