Translation projects API.

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

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

[
    {
        "language": "English",
        "code": "en",
        "total": 7389,
        "translated": 6705,
        "translated_percent": 90.7,
        "total_words": 37956,
        "translated_words": 35461,
        "translated_words_percent": 93.4,
        "total_chars": 229398,
        "translated_chars": 215298,
        "translated_chars_percent": 93.8
    },
    {
        "language": "Georgian",
        "code": "ka",
        "total": 7389,
        "translated": 0,
        "translated_percent": 0.0,
        "total_words": 37956,
        "translated_words": 0,
        "translated_words_percent": 0.0,
        "total_chars": 229398,
        "translated_chars": 0,
        "translated_chars_percent": 0.0
    },
    {
        "language": "Hebrew",
        "code": "he",
        "total": 7389,
        "translated": 4,
        "translated_percent": 0.1,
        "total_words": 37956,
        "translated_words": 11,
        "translated_words_percent": 0.1,
        "total_chars": 229398,
        "translated_chars": 65,
        "translated_chars_percent": 0.1
    },
    {
        "language": "Russian",
        "code": "ru",
        "total": 7389,
        "translated": 7389,
        "translated_percent": 100.0,
        "total_words": 37956,
        "translated_words": 37956,
        "translated_words_percent": 100.0,
        "total_chars": 229398,
        "translated_chars": 229398,
        "translated_chars_percent": 100.0
    }
]