ragflow/web/src/pages/user-setting/setting-locale/index.tsx
Henrique 5632613eb5
Add language portugese br (#4550)
### What problem does this PR solve?

Add language Portugese from Brazil

### Type of change

- [X] New Feature (non-breaking change which adds functionality)
2025-01-21 11:22:29 +08:00

21 lines
407 B
TypeScript

import { translationTable } from '@/locales/config';
import TranslationTable from './TranslationTable';
function UserSettingLocale() {
return (
<TranslationTable
data={translationTable}
languages={[
'English',
'Vietnamese',
'Spanish',
'zh',
'zh-TRADITIONAL',
'ja',
'pt-br',
]}
/>
);
}
export default UserSettingLocale;