add german translations (#3322)

This commit is contained in:
Chenhe Gu
2024-04-10 22:05:27 +08:00
committed by GitHub
parent b6de97ad53
commit d948b0b49b
23 changed files with 2744 additions and 13 deletions

View File

@@ -17,12 +17,13 @@ export type I18nText = {
'it-IT': string
'uk-UA': string
'vi-VN': string
'de_DE': string
}
export const languages = [
{
value: 'en-US',
name: 'English(United States)',
name: 'English (United States)',
example: 'Hello, Dify!',
supported: true,
},
@@ -34,55 +35,55 @@ export const languages = [
},
{
value: 'pt-BR',
name: 'Português(Brasil)',
name: 'Português (Brasil)',
example: 'Olá, Dify!',
supported: true,
},
{
value: 'es-ES',
name: 'Español(España)',
name: 'Español (España)',
example: 'Saluton, Dify!',
supported: false,
},
{
value: 'fr-FR',
name: 'Français(France)',
name: 'Français (France)',
example: 'Bonjour, Dify!',
supported: true,
},
{
value: 'de-DE',
name: 'Deutsch(Deutschland)',
name: 'Deutsch (Deutschland)',
example: 'Hallo, Dify!',
supported: false,
supported: true,
},
{
value: 'ja-JP',
name: '日本語(日本)',
name: '日本語 (日本)',
example: 'こんにちは、Dify!',
supported: true,
},
{
value: 'ko-KR',
name: '한국어(대한민국)',
name: '한국어 (대한민국)',
example: '안녕, Dify!',
supported: false,
},
{
value: 'ru-RU',
name: 'Русский(Россия)',
name: 'Русский (Россия)',
example: ' Привет, Dify!',
supported: false,
},
{
value: 'it-IT',
name: 'Italiano(Italia)',
name: 'Italiano (Italia)',
example: 'Ciao, Dify!',
supported: false,
},
{
value: 'th-TH',
name: 'ไทย(ประเทศไทย)',
name: 'ไทย (ประเทศไทย)',
example: 'สวัสดี Dify!',
supported: false,
},
@@ -94,13 +95,13 @@ export const languages = [
},
{
value: 'uk-UA',
name: 'Українська(Україна)',
name: 'Українська (Україна)',
example: 'Привет, Dify!',
supported: true,
},
{
value: 'vi-VN',
name: 'Tiếng Việt(Việt Nam)',
name: 'Tiếng Việt (Việt Nam)',
example: 'Xin chào, Dify!',
supported: true,
},