Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 19,
        "translated": 19,
        "translated_percent": 100.0,
        "total_words": 45,
        "translated_words": 45,
        "translated_words_percent": 100.0,
        "total_chars": 363,
        "translated_chars": 363,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 19,
        "translated": 18,
        "translated_percent": 94.7,
        "total_words": 45,
        "translated_words": 37,
        "translated_words_percent": 82.2,
        "total_chars": 363,
        "translated_chars": 303,
        "translated_chars_percent": 83.4
    }
]