Translation projects API.

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

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

[
    {
        "language": "English",
        "code": "en",
        "total": 219,
        "translated": 219,
        "translated_percent": 100.0,
        "total_words": 532,
        "translated_words": 532,
        "translated_words_percent": 100.0,
        "total_chars": 3558,
        "translated_chars": 3558,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Hungarian",
        "code": "hu",
        "total": 219,
        "translated": 0,
        "translated_percent": 0.0,
        "total_words": 532,
        "translated_words": 0,
        "translated_words_percent": 0.0,
        "total_chars": 3558,
        "translated_chars": 0,
        "translated_chars_percent": 0.0
    },
    {
        "language": "Slovenian",
        "code": "sl",
        "total": 219,
        "translated": 9,
        "translated_percent": 4.1,
        "total_words": 532,
        "translated_words": 11,
        "translated_words_percent": 2.0,
        "total_chars": 3558,
        "translated_chars": 98,
        "translated_chars_percent": 2.7
    }
]