Translation projects API.

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

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

{
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "Deprecated (don't translate)",
            "color": "orange"
        },
        {
            "id": 2,
            "name": "Installation process",
            "color": "yellow"
        },
        {
            "id": 3,
            "name": "English string can be improved",
            "color": "purple"
        },
        {
            "id": 4,
            "name": "Near-duplicate in English",
            "color": "fuchsia"
        }
    ]
}