Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 259,
        "translated": 259,
        "translated_percent": 100.0,
        "total_words": 1065,
        "translated_words": 1065,
        "translated_words_percent": 100.0,
        "total_chars": 6347,
        "translated_chars": 6347,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 259,
        "translated": 200,
        "translated_percent": 77.2,
        "total_words": 1065,
        "translated_words": 822,
        "translated_words_percent": 77.1,
        "total_chars": 6347,
        "translated_chars": 4943,
        "translated_chars_percent": 77.8
    }
]