Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions web-app/src/containers/LanguageSwitcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const LANGUAGES = [
{ value: 'zh-CN', label: '简体中文' },
{ value: 'zh-TW', label: '繁體中文' },
{ value: 'de-DE', label: 'Deutsch' },
{ value: 'cs', label: 'Čeština' },
{ value: 'pt-BR', label: 'Português (Brasil)' },
{ value: 'ja', label: '日本語' },
]
Expand Down
35 changes: 35 additions & 0 deletions web-app/src/locales/cs/assistants.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"title": "Assistants",
"editAssistant": "Edit Assistant",
"deleteAssistant": "Delete Assistant",
"deleteConfirmation": "Delete Assistant",
"deleteConfirmationDesc": "Are you sure you want to delete this assistant? This action cannot be undone.",
"cancel": "Cancel",
"delete": "Delete",
"addAssistant": "Add Assistant",
"emoji": "Emoji",
"name": "Name",
"enterName": "Enter name",
"nameRequired": "Name is required",
"description": "Description (optional)",
"enterDescription": "Enter description",
"instructions": "Instructions",
"enterInstructions": "Enter instructions",
"predefinedParameters": "Predefined Parameters",
"parameters": "Parameters",
"key": "Key",
"value": "Value",
"stringValue": "String",
"numberValue": "Number",
"booleanValue": "Boolean",
"jsonValue": "JSON",
"trueValue": "True",
"falseValue": "False",
"jsonValuePlaceholder": "JSON Value",
"save": "Save",
"createNew": "Create New Assistant",
"personality": "Personality",
"capabilities": "Capabilities",
"instructionsDateHint": "Tip: Use {{current_date}} to insert today’s date.",
"maxToolSteps": "Max tool steps"
}
12 changes: 12 additions & 0 deletions web-app/src/locales/cs/chat.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"welcome": "Hi, how are you?",
"description": "How can I help you today?",
"temporaryChat": "Temporary Chat",
"temporaryChatDescription": "Start a temporary conversation that won't be saved to your chat history.",
"status": {
"empty": "No Chats Found"
},
"sendMessage": "Send Message",
"newConversation": "New Conversation",
"clearHistory": "Clear History"
}
Loading
Loading