Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 118,
        "translated": 118,
        "translated_percent": 100.0,
        "total_words": 511,
        "translated_words": 511,
        "translated_words_percent": 100.0,
        "total_chars": 3385,
        "translated_chars": 3385,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 118,
        "translated": 81,
        "translated_percent": 68.6,
        "total_words": 511,
        "translated_words": 271,
        "translated_words_percent": 53.0,
        "total_chars": 3385,
        "translated_chars": 1520,
        "translated_chars_percent": 44.9
    }
]