feat(i18n): add Tunisian Arabic (ar-TN) translation (#29306)

Signed-off-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Nour Zakhma
2025-12-13 03:55:04 +01:00
committed by GitHub
parent f4c7f98a01
commit 886ce981cf
53 changed files with 6198 additions and 18 deletions

View File

@@ -70,6 +70,8 @@ export type I18nText = {
'uk-UA': string
'id-ID': string
'tr-TR': string
'fa-IR': string
'ar-TN': string
'YOUR_LANGUAGE_CODE': string
}
```
@@ -157,6 +159,18 @@ export const languages = [
example: 'Привет, Dify!',
supported: true,
},
{
value: 'fa-IR',
name: 'Farsi (Iran)',
example: 'سلام, دیفای!',
supported: true,
},
{
value: 'ar-TN',
name: 'العربية (تونس)',
example: 'مرحبا، Dify!',
supported: true,
},
// Add your language here 👇
...
// Add your language here 👆