Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 155,
        "translated": 155,
        "translated_percent": 100.0,
        "total_words": 645,
        "translated_words": 645,
        "translated_words_percent": 100.0,
        "total_chars": 7732,
        "translated_chars": 7732,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 155,
        "translated": 149,
        "translated_percent": 96.1,
        "total_words": 645,
        "translated_words": 410,
        "translated_words_percent": 63.5,
        "total_chars": 7732,
        "translated_chars": 2525,
        "translated_chars_percent": 32.6
    }
]