Translation projects API.

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

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

[
    {
        "language": "Inglese",
        "code": "en",
        "total": 5970,
        "translated": 5970,
        "translated_percent": 100.0,
        "total_words": 20604,
        "translated_words": 20604,
        "translated_words_percent": 100.0,
        "total_chars": 150110,
        "translated_chars": 150110,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Italiano",
        "code": "it",
        "total": 5944,
        "translated": 4020,
        "translated_percent": 67.6,
        "total_words": 20300,
        "translated_words": 12226,
        "translated_words_percent": 60.2,
        "total_chars": 146926,
        "translated_chars": 76492,
        "translated_chars_percent": 52.0
    }
]