### What problem does this PR solve? Fix Portuguese (Brazil) translation Adding portuguese to Knowledge adding settings. ### Type of change - [X] Bug Fix (non-breaking change which fixes an issue) - [X] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Yingfeng <yingfeng.zhang@gmail.com>tags/v0.16.0
| @@ -6,6 +6,7 @@ import enUS from 'antd/locale/en_US'; | |||
| import vi_VN from 'antd/locale/vi_VN'; | |||
| import zhCN from 'antd/locale/zh_CN'; | |||
| import zh_HK from 'antd/locale/zh_HK'; | |||
| import pt_BR from 'antd/lib/locale/pt_BR'; | |||
| import dayjs from 'dayjs'; | |||
| import advancedFormat from 'dayjs/plugin/advancedFormat'; | |||
| import customParseFormat from 'dayjs/plugin/customParseFormat'; | |||
| @@ -30,6 +31,7 @@ const AntLanguageMap = { | |||
| zh: zhCN, | |||
| 'zh-TRADITIONAL': zh_HK, | |||
| vi: vi_VN, | |||
| 'pt-BR': pt_BR, | |||
| }; | |||
| const queryClient = new QueryClient(); | |||
| @@ -220,6 +220,7 @@ export default { | |||
| upload: 'Upload', | |||
| english: 'English', | |||
| chinese: 'Chinese', | |||
| portugueseBr: 'Portuguese (Brazil)', | |||
| embeddingModelPlaceholder: 'Please select a embedding model', | |||
| chunkMethodPlaceholder: 'Please select a chunk method', | |||
| save: 'Save', | |||
| @@ -81,7 +81,7 @@ export default { | |||
| searchKnowledgePlaceholder: 'Buscar', | |||
| noMoreData: 'Isso é tudo. Nada mais.', | |||
| }, | |||
| knowledgeDetail: { | |||
| knowledgeDetails: { | |||
| dataset: 'Conjunto de dados', | |||
| testing: 'Teste de recuperação', | |||
| files: 'Arquivos', | |||
| @@ -221,6 +221,7 @@ export default { | |||
| upload: 'Enviar', | |||
| english: 'Inglês', | |||
| chinese: 'Chinês', | |||
| portugueseBr: 'Português (Brasil)', | |||
| embeddingModelPlaceholder: | |||
| 'Por favor, selecione um modelo de incorporação', | |||
| chunkMethodPlaceholder: 'Por favor, selecione um método de fragmentação', | |||
| @@ -76,6 +76,7 @@ const ConfigurationForm = ({ form }: { form: FormInstance }) => { | |||
| <Option value="English">{t('english')}</Option> | |||
| <Option value="Chinese">{t('chinese')}</Option> | |||
| <Option value="Vietnamese">{t('vietnamese')}</Option> | |||
| <Option value="Portuguese (Brazil)">{t('portugueseBr')}</Option> | |||
| </Select> | |||
| </Form.Item> | |||
| <Form.Item | |||