Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 90,
        "translated": 90,
        "translated_percent": 100.0,
        "total_words": 267,
        "translated_words": 267,
        "translated_words_percent": 100.0,
        "total_chars": 1754,
        "translated_chars": 1754,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 90,
        "translated": 65,
        "translated_percent": 72.2,
        "total_words": 267,
        "translated_words": 200,
        "translated_words_percent": 74.9,
        "total_chars": 1754,
        "translated_chars": 1294,
        "translated_chars_percent": 73.7
    }
]