Translation projects API.

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

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

[
    {
        "language": "English",
        "code": "en",
        "total": 1,
        "translated": 1,
        "translated_percent": 100.0,
        "total_words": 4,
        "translated_words": 4,
        "translated_words_percent": 100.0,
        "total_chars": 28,
        "translated_chars": 28,
        "translated_chars_percent": 100.0
    },
    {
        "language": "English (United Kingdom)",
        "code": "en_GB",
        "total": 1,
        "translated": 1,
        "translated_percent": 100.0,
        "total_words": 4,
        "translated_words": 4,
        "translated_words_percent": 100.0,
        "total_chars": 28,
        "translated_chars": 28,
        "translated_chars_percent": 100.0
    }
]