Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 181,
        "translated": 181,
        "translated_percent": 100.0,
        "total_words": 471,
        "translated_words": 471,
        "translated_words_percent": 100.0,
        "total_chars": 2890,
        "translated_chars": 2890,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 181,
        "translated": 98,
        "translated_percent": 54.1,
        "total_words": 471,
        "translated_words": 266,
        "translated_words_percent": 56.4,
        "total_chars": 2890,
        "translated_chars": 1586,
        "translated_chars_percent": 54.8
    }
]