Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 9,
        "translated": 9,
        "translated_percent": 100.0,
        "total_words": 23,
        "translated_words": 23,
        "translated_words_percent": 100.0,
        "total_chars": 173,
        "translated_chars": 173,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 9,
        "translated": 0,
        "translated_percent": 0.0,
        "total_words": 23,
        "translated_words": 0,
        "translated_words_percent": 0.0,
        "total_chars": 173,
        "translated_chars": 0,
        "translated_chars_percent": 0.0
    }
]