WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Draft
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
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
.idea/*
.idea/*

.DS_Store
.DS_Store?
node_modules/
package-lock.json
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Run the following command at the root of your documentation (where docs.json is)
mintlify dev
```

It may take you directly to `localhost:3000` which has no content. Nav to `http://localhost:3000/docs/getting-started/intro` to see our docs page.

### Publishing Changes

Install our Github App to auto propagate changes from your repo to your deployment. Changes will be deployed to production automatically after pushing to the default branch. Find the link to install on your dashboard.
Expand Down
103 changes: 8 additions & 95 deletions docs/getting-started/supported-languages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,106 +2,19 @@
title: "Languages supported"
description: "The DeepL API supports the following languages. We will update this list as we introduce new languages."
public: true
sidebarTitle: "Languages supported"
mode: "wide"
---

<Info>
Please note that Hebrew, Latin American Spanish, Thai and Vietnamese have not been added to the `/languages` endpoint as they are only available in the text translation API using next-gen models. When these languages are available for all translation endpoints (including document translation) they will be added to the `/languages` endpoint and this note will be removed.
</Info>

### Translation source languages

- `AR` - Arabic
- `BG` - Bulgarian
- `CS` - Czech
- `DA` - Danish
- `DE` - German
- `EL` - Greek
- `EN` - English _(all English variants)_
- `ES` - Spanish _(all Spanish variants)_
- `ET` - Estonian
- `FI` - Finnish
- `FR` - French
- `HE` - Hebrew _(text translation via next-gen models only)_
- `HU` - Hungarian
- `ID` - Indonesian
- `IT` - Italian
- `JA` - Japanese
- `KO` - Korean
- `LT` - Lithuanian
- `LV` - Latvian
- `NB` - Norwegian Bokmål
- `NL` - Dutch
- `PL` - Polish
- `PT` - Portuguese _(all Portuguese variants)_
- `RO` - Romanian
- `RU` - Russian
- `SK` - Slovak
- `SL` - Slovenian
- `SV` - Swedish
- `TH` - Thai _(text translation via next-gen models only)_
- `TR` - Turkish
- `UK` - Ukrainian
- `VI` - Vietnamese _(text translation via next-gen models only)_
- `ZH` - Chinese _(all Chinese variants)_

### Translation target languages
Some languages are currently only available for text translation via our next-generation models and do not yet support glossaries or tag handling. You'll find these languages below under the "Text Translation Only Languages" subheadings for both source and target language lists.

- `AR` - Arabic
- `BG` - Bulgarian
- `CS` - Czech
- `DA` - Danish
- `DE` - German
- `EL` - Greek
- `EN` - English _(unspecified variant for backward compatibility; we recommend using_`EN-GB` _or_ `EN-US` _instead)_
- `EN-GB` - English (British)
- `EN-US` - English (American)
- `ES` - Spanish
- `ES-419` - Spanish (Latin American) _(text translation via next-gen models only)_
- `ET` - Estonian
- `FI` - Finnish
- `FR` - French
- `HE` - Hebrew _(text translation via next-gen models only)_
- `HU` - Hungarian
- `ID` - Indonesian
- `IT` - Italian
- `JA` - Japanese
- `KO` - Korean
- `LT` - Lithuanian
- `LV` - Latvian
- `NB` - Norwegian Bokmål
- `NL` - Dutch
- `PL` - Polish
- `PT` - Portuguese _(unspecified variant for backward compatibility; we recommend using_ `PT-BR` _or_ `PT-PT` _instead)_
- `PT-BR` - Portuguese (Brazilian)
- `PT-PT` - Portuguese _(all Portuguese variants excluding Brazilian Portuguese)_
- `RO` - Romanian
- `RU` - Russian
- `SK` - Slovak
- `SL` - Slovenian
- `SV` - Swedish
- `TH` - Thai _(text translation via next-gen models only)_
- `TR` - Turkish
- `UK` - Ukrainian
- `VI` - Vietnamese _(text translation via next-gen models only)_
- `ZH` - Chinese _(unspecified variant for backward compatibility; we recommend using_ `ZH-HANS` _or_ `ZH-HANT` _instead)_
- `ZH-HANS` - Chinese (simplified)
- `ZH-HANT` - Chinese (traditional)

<Info>
As of April 2025, supported languages for [text improvement](/api-reference/improve-text) (DeepL API for Write) have not yet been added to the `/languages` endpoint; we'll be extending the `/languages` endpoint in the near future to include this information.
Please note that only fully-featured languages will be returned by calls to the `/languages` endpoint.
</Info>

### Text improvement languages (DeepL API for Write)
## API Supported Languages

- `DE` (German)
- `EN-GB` (British English)
- `EN-US` (American English)
- `ES` (Spanish)
- `FR` (French)
- `IT` (Italian)
- `PT-BR` (Brazilian Portuguese)
- `PT-PT` (Portuguese)
import { LanguageTable } from "/snippets/language-table.jsx"

<LanguageTable />

<Info>
For the `/write` endpoint, `writing_style` and `tone` currently work in `DE`, `EN-GB`, and `EN-US`.
</Info>
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"@tanstack/react-table": "^8.21.3"
}
}
Loading