Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 749,
        "translated": 749,
        "translated_percent": 100.0,
        "total_words": 2476,
        "translated_words": 2476,
        "translated_words_percent": 100.0,
        "total_chars": 16219,
        "translated_chars": 16219,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 747,
        "translated": 615,
        "translated_percent": 82.3,
        "total_words": 2471,
        "translated_words": 1942,
        "translated_words_percent": 78.5,
        "total_chars": 16198,
        "translated_chars": 12215,
        "translated_chars_percent": 75.4
    }
]