Skip to content

Commit d7c7637

Browse files
Enhance localization by completing missing translations across all locales + czech support (#6758)
* Add Missing translations for id * Add Missing translations for pl * Add Missing translations for vn * Add Missing translations for zh-CN * Add Missing translations for zh-TW * Add Missing translations for de-DE * Add Missing translations for cs * Extend Czech language support in Jan
1 parent ed95e89 commit d7c7637

35 files changed

+1263
-21
lines changed

web-app/src/containers/LanguageSwitcher.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const LANGUAGES = [
1616
{ value: 'zh-CN', label: '简体中文' },
1717
{ value: 'zh-TW', label: '繁體中文' },
1818
{ value: 'de-DE', label: 'Deutsch' },
19+
{ value: 'cs', label: 'Čeština' },
1920
{ value: 'pt-BR', label: 'Português (Brasil)' },
2021
{ value: 'ja', label: '日本語' },
2122
{ value: 'ru', label: 'Русский' },
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"title": "Assistants",
3+
"editAssistant": "Edit Assistant",
4+
"deleteAssistant": "Delete Assistant",
5+
"deleteConfirmation": "Delete Assistant",
6+
"deleteConfirmationDesc": "Are you sure you want to delete this assistant? This action cannot be undone.",
7+
"cancel": "Cancel",
8+
"delete": "Delete",
9+
"addAssistant": "Add Assistant",
10+
"emoji": "Emoji",
11+
"name": "Name",
12+
"enterName": "Enter name",
13+
"nameRequired": "Name is required",
14+
"description": "Description (optional)",
15+
"enterDescription": "Enter description",
16+
"instructions": "Instructions",
17+
"enterInstructions": "Enter instructions",
18+
"predefinedParameters": "Predefined Parameters",
19+
"parameters": "Parameters",
20+
"key": "Key",
21+
"value": "Value",
22+
"stringValue": "String",
23+
"numberValue": "Number",
24+
"booleanValue": "Boolean",
25+
"jsonValue": "JSON",
26+
"trueValue": "True",
27+
"falseValue": "False",
28+
"jsonValuePlaceholder": "JSON Value",
29+
"save": "Save",
30+
"createNew": "Create New Assistant",
31+
"personality": "Personality",
32+
"capabilities": "Capabilities",
33+
"instructionsDateHint": "Tip: Use {{current_date}} to insert today’s date.",
34+
"maxToolSteps": "Max tool steps"
35+
}

web-app/src/locales/cs/chat.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"welcome": "Hi, how are you?",
3+
"description": "How can I help you today?",
4+
"temporaryChat": "Temporary Chat",
5+
"temporaryChatDescription": "Start a temporary conversation that won't be saved to your chat history.",
6+
"status": {
7+
"empty": "No Chats Found"
8+
},
9+
"sendMessage": "Send Message",
10+
"newConversation": "New Conversation",
11+
"clearHistory": "Clear History"
12+
}

0 commit comments

Comments
 (0)