(locale?: string)
| 3 | */ |
| 4 | |
| 5 | export function isChineseLocale(locale?: string): boolean { |
| 6 | return locale?.startsWith('zh') ?? false |
| 7 | } |
| 8 | |
| 9 | export const i18nTexts = { |
| 10 | allTime: { zh: '全部时间', en: 'All time' }, |
no outgoing calls
no test coverage detected