Translation projects API.

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

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

[
    {
        "language": "Chinese (Simplified)",
        "code": "zh_Hans",
        "total": 31,
        "translated": 3,
        "translated_percent": 9.6,
        "total_words": 1900,
        "translated_words": 197,
        "translated_words_percent": 10.3,
        "total_chars": 12068,
        "translated_chars": 1231,
        "translated_chars_percent": 10.2
    },
    {
        "language": "Czech",
        "code": "cs",
        "total": 1177,
        "translated": 0,
        "translated_percent": 0.0,
        "total_words": 44858,
        "translated_words": 0,
        "translated_words_percent": 0.0,
        "total_chars": 280807,
        "translated_chars": 0,
        "translated_chars_percent": 0.0
    },
    {
        "language": "English",
        "code": "en",
        "total": 3655,
        "translated": 3655,
        "translated_percent": 100.0,
        "total_words": 158232,
        "translated_words": 158232,
        "translated_words_percent": 100.0,
        "total_chars": 993048,
        "translated_chars": 993048,
        "translated_chars_percent": 100.0
    },
    {
        "language": "French",
        "code": "fr",
        "total": 3362,
        "translated": 383,
        "translated_percent": 11.3,
        "total_words": 139753,
        "translated_words": 11034,
        "translated_words_percent": 7.8,
        "total_chars": 871681,
        "translated_chars": 68001,
        "translated_chars_percent": 7.8
    },
    {
        "language": "Vietnamese",
        "code": "vi",
        "total": 103,
        "translated": 25,
        "translated_percent": 24.2,
        "total_words": 3346,
        "translated_words": 1168,
        "translated_words_percent": 34.9,
        "total_chars": 24790,
        "translated_chars": 7392,
        "translated_chars_percent": 29.8
    }
]