Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 493,
        "translated": 493,
        "translated_percent": 100.0,
        "total_words": 1234,
        "translated_words": 1234,
        "translated_words_percent": 100.0,
        "total_chars": 8172,
        "translated_chars": 8172,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 491,
        "translated": 168,
        "translated_percent": 34.2,
        "total_words": 1229,
        "translated_words": 479,
        "translated_words_percent": 38.9,
        "total_chars": 8151,
        "translated_chars": 3248,
        "translated_chars_percent": 39.8
    }
]