Translation projects API.

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

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

[
    {
        "language": "English",
        "code": "en",
        "total": 1011,
        "translated": 1011,
        "translated_percent": 100.0,
        "total_words": 16342,
        "translated_words": 16342,
        "translated_words_percent": 100.0,
        "total_chars": 103543,
        "translated_chars": 103543,
        "translated_chars_percent": 100.0
    },
    {
        "language": "French",
        "code": "fr",
        "total": 1008,
        "translated": 312,
        "translated_percent": 30.9,
        "total_words": 16338,
        "translated_words": 2947,
        "translated_words_percent": 18.0,
        "total_chars": 103514,
        "translated_chars": 19309,
        "translated_chars_percent": 18.6
    },
    {
        "language": "German",
        "code": "de",
        "total": 999,
        "translated": 522,
        "translated_percent": 52.2,
        "total_words": 16327,
        "translated_words": 4405,
        "translated_words_percent": 26.9,
        "total_chars": 103453,
        "translated_chars": 28493,
        "translated_chars_percent": 27.5
    },
    {
        "language": "Spanish",
        "code": "es",
        "total": 995,
        "translated": 164,
        "translated_percent": 16.4,
        "total_words": 16322,
        "translated_words": 1125,
        "translated_words_percent": 6.8,
        "total_chars": 103420,
        "translated_chars": 7337,
        "translated_chars_percent": 7.0
    },
    {
        "language": "Swedish",
        "code": "sv",
        "total": 995,
        "translated": 0,
        "translated_percent": 0.0,
        "total_words": 16322,
        "translated_words": 0,
        "translated_words_percent": 0.0,
        "total_chars": 103420,
        "translated_chars": 0,
        "translated_chars_percent": 0.0
    }
]