Translation projects API.

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

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

[
    {
        "language": "English",
        "code": "en",
        "total": 86,
        "translated": 86,
        "translated_percent": 100.0,
        "total_words": 743,
        "translated_words": 743,
        "translated_words_percent": 100.0,
        "total_chars": 5031,
        "translated_chars": 5031,
        "translated_chars_percent": 100.0
    },
    {
        "language": "French",
        "code": "fr",
        "total": 86,
        "translated": 44,
        "translated_percent": 51.1,
        "total_words": 743,
        "translated_words": 74,
        "translated_words_percent": 9.9,
        "total_chars": 5031,
        "translated_chars": 492,
        "translated_chars_percent": 9.7
    },
    {
        "language": "Spanish",
        "code": "es",
        "total": 86,
        "translated": 43,
        "translated_percent": 50.0,
        "total_words": 743,
        "translated_words": 72,
        "translated_words_percent": 9.6,
        "total_chars": 5031,
        "translated_chars": 479,
        "translated_chars_percent": 9.5
    }
]