Translation projects API.

See the Weblate's Web API documentation for detailed description of the API.

GET /api/projects/ooops-helpdesk/languages/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 268,
        "translated": 268,
        "translated_percent": 100.0,
        "total_words": 1276,
        "translated_words": 1276,
        "translated_words_percent": 100.0,
        "total_chars": 16049,
        "translated_chars": 16049,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 268,
        "translated": 250,
        "translated_percent": 93.2,
        "total_words": 1276,
        "translated_words": 704,
        "translated_words_percent": 55.1,
        "total_chars": 16049,
        "translated_chars": 4738,
        "translated_chars_percent": 29.5
    }
]