Translation projects API.

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

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

[
    {
        "language": "Basque",
        "code": "eu",
        "total": 384,
        "translated": 365,
        "translated_percent": 95.0,
        "total_words": 2898,
        "translated_words": 2542,
        "translated_words_percent": 87.7,
        "total_chars": 18692,
        "translated_chars": 15682,
        "translated_chars_percent": 83.8
    },
    {
        "language": "English",
        "code": "en",
        "total": 384,
        "translated": 384,
        "translated_percent": 100.0,
        "total_words": 2898,
        "translated_words": 2898,
        "translated_words_percent": 100.0,
        "total_chars": 18692,
        "translated_chars": 18692,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Spanish",
        "code": "es",
        "total": 384,
        "translated": 375,
        "translated_percent": 97.6,
        "total_words": 2898,
        "translated_words": 2624,
        "translated_words_percent": 90.5,
        "total_chars": 18692,
        "translated_chars": 16295,
        "translated_chars_percent": 87.1
    }
]