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
2 changes: 1 addition & 1 deletion api-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9683,7 +9683,7 @@
},
"TranslationMemoryThreshold": {
"type": "integer",
"description": "The minimum matching percentage required for a translation memory segment to be applied (recommended to be 75% or higher).",
"description": "The minimum matching percentage required for a translation memory segment to be applied (recommended to be 75% or higher). A value below 50 is treated as 50.",
"minimum": 0,
"maximum": 100,
"default": 75,
Expand Down
2 changes: 1 addition & 1 deletion api-reference/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7053,7 +7053,7 @@ components:
example: 12
TranslationMemoryThreshold:
type: integer
description: The minimum matching percentage required for a translation memory segment to be applied (recommended to be 75% or higher).
description: The minimum matching percentage required for a translation memory segment to be applied (recommended to be 75% or higher). A value below 50 is treated as 50.
minimum: 0
maximum: 100
default: 75
Expand Down
2 changes: 1 addition & 1 deletion docs/customize/using-translation-memories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Notice that we didn't need to specify `source_lang` — language auto-detection

## Step 3: Adjust the matching threshold

By default, a stored segment is applied when it matches at least **75%** of the source text. This means translation memory segments can match even when the source text isn't identical — which is useful for catching typos and minor variations.
By default, a stored segment is applied when it matches at least **75%** of the source text. This means translation memory segments can match even when the source text isn't identical — which is useful for catching typos and minor variations. The lowest supported threshold is 50, and a lower value is treated as 50.

Let's see this in action. Imagine we make a typo and send "Halloo Welt!" instead of "Hallo Welt!":

Expand Down
Loading