find_fuzzy
Identify every entry flagged as fuzzy in a PO file by supplying its absolute path, then get a JSON list of those entries for review.
Instructions
List every entry flagged as fuzzy in the provided PO file.
Responses:
200 (Success): Successful Response
Content-Type:
application/jsonResponse Properties:
entries: List of fuzzy entries found in the PO file.
Example:
{
"entries": [
"unknown_type"
]
}422: Validation Error
Content-Type:
application/jsonResponse Properties:
Example:
{
"detail": [
"unknown_type"
]
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the .po file to read. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entries | Yes | List of fuzzy entries found in the PO file. |