Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 123,
        "translated": 123,
        "translated_percent": 100.0,
        "total_words": 431,
        "translated_words": 431,
        "translated_words_percent": 100.0,
        "total_chars": 2605,
        "translated_chars": 2605,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 123,
        "translated": 107,
        "translated_percent": 86.9,
        "total_words": 431,
        "translated_words": 400,
        "translated_words_percent": 92.8,
        "total_chars": 2605,
        "translated_chars": 2438,
        "translated_chars_percent": 93.5
    }
]