-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[no-issue] add Brazilian Portuguese translation by Gustavo Papaleo
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
custom_components/extended_openai_conversation/translations/pt-BR.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"config": { | ||
"error": { | ||
"cannot_connect": "Não é possível conectar", | ||
"invalid_auth": "Autenticação inválida", | ||
"unknown": "Erro desconhecido" | ||
}, | ||
"step": { | ||
"user": { | ||
"data": { | ||
"name": "Nome", | ||
"api_key": "Chave API", | ||
"base_url": "Base Url", | ||
"api_version": "Versão da API", | ||
"organization": "Organização", | ||
"skip_authentication": "Pular autenticação" | ||
} | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"init": { | ||
"data": { | ||
"max_tokens": "Número máximo de tokens da resposta", | ||
"model": "Modelo da Conclusão", | ||
"prompt": "Template do Prompt", | ||
"temperature": "Temperatura", | ||
"top_p": "Top P", | ||
"max_function_calls_per_conversation": "Quantidade máxima de chamadas por conversação", | ||
"functions": "Funções", | ||
"attach_username": "Anexar nome do usuário na mensagem", | ||
"use_tools": "Use ferramentas", | ||
"context_threshold": "Limite do contexto", | ||
"context_truncate_strategy": "Estratégia de truncamento de contexto quando o limite é excedido" | ||
} | ||
} | ||
} | ||
}, | ||
"services": { | ||
"query_image": { | ||
"name": "Consultar imagem", | ||
"description": "Receba imagens e responda perguntas sobre elas", | ||
"fields": { | ||
"config_entry": { | ||
"name": "Registro de configuração", | ||
"description": "O registro de configuração para utilizar neste serviço" | ||
}, | ||
"model": { | ||
"name": "Modelo", | ||
"description": "Especificar modelo", | ||
"example": "gpt-4-vision-preview" | ||
}, | ||
"prompt": { | ||
"name": "Prompt", | ||
"description": "O texto para fazer a pergunta sobre a imagem", | ||
"example": "O que tem nesta imagem?" | ||
}, | ||
"images": { | ||
"name": "Imagens", | ||
"description": "Uma lista de imagens que serão analisadas", | ||
"example": "{\"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg\"}" | ||
}, | ||
"max_tokens": { | ||
"name": "Max Tokens", | ||
"description": "Quantidade máxima de tokens", | ||
"example": "300" | ||
} | ||
} | ||
} | ||
} | ||
} |