Translation projects API.

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

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

[
    {
        "language": "English (United States)",
        "code": "en_US",
        "total": 938,
        "translated": 938,
        "translated_percent": 100.0,
        "total_words": 34308,
        "translated_words": 34308,
        "translated_words_percent": 100.0,
        "total_chars": 217541,
        "translated_chars": 217541,
        "translated_chars_percent": 100.0
    },
    {
        "language": "French",
        "code": "fr",
        "total": 948,
        "translated": 948,
        "translated_percent": 100.0,
        "total_words": 34583,
        "translated_words": 34583,
        "translated_words_percent": 100.0,
        "total_chars": 219272,
        "translated_chars": 219272,
        "translated_chars_percent": 100.0
    },
    {
        "language": "German",
        "code": "de",
        "total": 48,
        "translated": 5,
        "translated_percent": 10.4,
        "total_words": 2110,
        "translated_words": 53,
        "translated_words_percent": 2.5,
        "total_chars": 12444,
        "translated_chars": 260,
        "translated_chars_percent": 2.0
    },
    {
        "language": "Portuguese",
        "code": "pt",
        "total": 48,
        "translated": 48,
        "translated_percent": 100.0,
        "total_words": 2110,
        "translated_words": 2110,
        "translated_words_percent": 100.0,
        "total_chars": 12444,
        "translated_chars": 12444,
        "translated_chars_percent": 100.0
    },
    {
        "language": "Spanish",
        "code": "es",
        "total": 939,
        "translated": 939,
        "translated_percent": 100.0,
        "total_words": 34310,
        "translated_words": 34310,
        "translated_words_percent": 100.0,
        "total_chars": 217551,
        "translated_chars": 217551,
        "translated_chars_percent": 100.0
    }
]