Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 189,
        "translated": 189,
        "translated_percent": 100.0,
        "total_words": 546,
        "translated_words": 546,
        "translated_words_percent": 100.0,
        "total_chars": 3676,
        "translated_chars": 3676,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 189,
        "translated": 150,
        "translated_percent": 79.3,
        "total_words": 546,
        "translated_words": 415,
        "translated_words_percent": 76.0,
        "total_chars": 3676,
        "translated_chars": 2818,
        "translated_chars_percent": 76.6
    }
]