| 1 | export type GenerationSummaryLocale = 'zh' | 'en' |
| 2 | |
| 3 | export function buildLocalCompletedGenerationPageSummary(args: { |
| 4 | appLocale: GenerationSummaryLocale |
| 5 | pageTitle: string |
| 6 | }): string { |
| 7 | return args.appLocale === 'en' |
| 8 | ? `Completed page "${args.pageTitle}" generation` |
| 9 | : `已完成《${args.pageTitle}》页面生成` |
| 10 | } |
| 11 |