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