Translation components API.

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

GET /api/translations/debian-handbook/09_unix-services/cs/changes/?format=api&page=4
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 341,
    "next": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/changes/?format=api&page=5",
    "previous": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/changes/?format=api&page=3",
    "results": [
        {
            "unit": "https://hosted.weblate.org/api/units/82729034/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538401+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>umask</command></primary>",
                "old_state": -1
            },
            "id": 34082788,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082788/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729033/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538353+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "Frequently you want to change the group of a file at the same time that you change the owner. The <command>chown</command> command has a special syntax for that: <command>chown <replaceable>user</replaceable>:<replaceable>group</replaceable> <replaceable>file</replaceable></command>. This syntax can also be used to recursively (<literal>-R</literal>) change the ownership of a whole directory.",
                "old_state": -1
            },
            "id": 34082787,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082787/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729032/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538308+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<emphasis>TIP</emphasis> Changing the user and group together",
                "old_state": -1
            },
            "id": 34082786,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082786/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729031/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538261+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "It is a misconception that this bit will only affect directories. If files and directories have mixed permissions, it is often a good idea to use the <command>find</command> command to locate the targets you want to operate on.",
                "old_state": -1
            },
            "id": 34082785,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082785/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729030/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538212+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "The example shows a typical file with its default permissions: its owner can read and write it, the owner's group and all other users can read it. The next operation (<literal>u+X</literal>) won't add executable permissions for the owner of the file, because permissions to execute have not been assigned. The operation has no effect on the file. Next we assign execute rights for \"other\" users and repeat the operation. This time it is successful, because at least one user group already had executable permissions.",
                "old_state": -1
            },
            "id": 34082784,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082784/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729029/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538162+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<computeroutput>$ </computeroutput><userinput>ls test.txt</userinput>\n  <computeroutput>-rw-r--r-- 1 daniel daniel 0 18. Nov 01:07 test.txt</computeroutput>\n  <computeroutput>$ </computeroutput><userinput>chmod u+X test.txt</userinput>\n  <computeroutput>$ </computeroutput><userinput>ls test.txt</userinput>\n  <computeroutput>-rw-r--r-- 1 daniel daniel 0 18. Nov 01:07 test.txt</computeroutput>\n  <computeroutput>$ </computeroutput><userinput>chmod o+x test.txt</userinput>\n  <computeroutput>$ </computeroutput><userinput>ls test.txt</userinput>\n  <computeroutput>-rw-r--r-x 1 daniel daniel 0 18. Nov 01:07 test.txt</computeroutput>\n  <computeroutput>$ </computeroutput><userinput>chmod u+X test.txt</userinput>\n  <computeroutput>$ </computeroutput><userinput>ls test.txt</userinput>\n  <computeroutput>-rwxr--r-x 1 daniel daniel 0 18. Nov 01:07 test.txt</computeroutput>\n  ",
                "old_state": -1
            },
            "id": 34082783,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082783/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729028/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538114+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "For directories it adds executable permissions to the chosen user(s). For files, it adds the executable bit <emphasis>only</emphasis> if at least one of the users (owner, group, or others) already has executable permissions. Let's demonstrate it, because this bit can be confusing:",
                "old_state": -1
            },
            "id": 34082782,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082782/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729027/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538066+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "The distinction between directories and files sometimes causes problems with recursive operations. That is why the “<literal>X</literal>” letter has been introduced in the symbolic representation of rights. It also represents the right to execute, but it applies differently to directories and files.",
                "old_state": -1
            },
            "id": 34082781,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082781/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729026/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.538021+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>X</literal></secondary>",
                "old_state": -1
            },
            "id": 34082780,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082780/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729025/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537963+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>recursive operation</secondary>",
                "old_state": -1
            },
            "id": 34082779,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082779/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729024/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537918+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><literal>setgid</literal></primary>",
                "old_state": -1
            },
            "id": 34082778,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082778/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729023/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537874+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><literal>setuid</literal></primary>",
                "old_state": -1
            },
            "id": 34082777,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082777/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729022/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537826+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "For instance, the <command>chmod 754 <replaceable>file</replaceable></command> command will set the following rights: read, write and execute for the owner (since 7 = 4 + 2 + 1); read and execute for the group (since 5 = 4 + 1); read-only for others. The <literal>0</literal> (zero) means no rights; thus <command>chmod 600 <replaceable>file</replaceable></command> allows for read/write rights for the owner, and no rights for anyone else. The most frequent right combinations are <literal>755</literal> for executable files and directories, and <literal>644</literal> for data files.",
                "old_state": -1
            },
            "id": 34082776,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082776/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729021/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537781+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>octal representation</secondary>",
                "old_state": -1
            },
            "id": 34082775,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082775/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729020/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537735+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>symbolic representation</secondary>",
                "old_state": -1
            },
            "id": 34082774,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082774/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729019/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537690+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>rights</primary><secondary>symbolic representation</secondary>",
                "old_state": -1
            },
            "id": 34082773,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082773/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729018/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537645+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>symbolic representation of rights</primary>",
                "old_state": -1
            },
            "id": 34082772,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082772/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729017/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537599+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>t</literal></secondary>",
                "old_state": -1
            },
            "id": 34082771,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082771/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729016/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537553+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>newgrp</command></primary>",
                "old_state": -1
            },
            "id": 34082770,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082770/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729015/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537505+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "If you require running a program under a different user or if a program requires higher permissions, the <command>sudo</command>, <command>su</command>, or <command>runuser</command> commands are usually better choices than using these bits (see <xref linkend=\"sect.sharing-admin-rights\" />).",
                "old_state": -1
            },
            "id": 34082769,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082769/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729014/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537459+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>runuser</command></primary>",
                "old_state": -1
            },
            "id": 34082768,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082768/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729013/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537414+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>sudo</command></primary>",
                "old_state": -1
            },
            "id": 34082767,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082767/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729012/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537368+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>su</command></primary>",
                "old_state": -1
            },
            "id": 34082766,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082766/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729011/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537319+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "Two particular rights are relevant to executable files: <literal>setuid</literal> and <literal>setgid</literal> (symbolized with the letter “s”). Note that we frequently speak of “bit”, since each of these Boolean values can be represented by a 0 or a 1. These two rights allow any user to execute the program with the rights of its owner or its group, respectively. This mechanism grants access to features requiring higher level permissions than those you would usually have.",
                "old_state": -1
            },
            "id": 34082765,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082765/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729010/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537274+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>s</literal></secondary>",
                "old_state": -1
            },
            "id": 34082764,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082764/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729009/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537228+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>setgid</literal></secondary><seealso><literal>setgid</literal></seealso>",
                "old_state": -1
            },
            "id": 34082763,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082763/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729008/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537183+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>setuid</literal></secondary><seealso><literal>setuid</literal></seealso>",
                "old_state": -1
            },
            "id": 34082762,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082762/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729007/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537138+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>execute</secondary>",
                "old_state": -1
            },
            "id": 34082761,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082761/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729006/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537092+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>write</secondary>",
                "old_state": -1
            },
            "id": 34082760,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082760/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729005/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537046+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary>read</secondary>",
                "old_state": -1
            },
            "id": 34082759,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082759/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729004/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.537000+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>x</literal></secondary>",
                "old_state": -1
            },
            "id": 34082758,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082758/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729003/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536953+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>w</literal></secondary>",
                "old_state": -1
            },
            "id": 34082757,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082757/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729002/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536900+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>r</literal></secondary>",
                "old_state": -1
            },
            "id": 34082756,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082756/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729001/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536854+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "Three basic types of rights can be combined:",
                "old_state": -1
            },
            "id": 34082755,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082755/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82729000/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536809+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>o</literal></secondary>",
                "old_state": -1
            },
            "id": 34082754,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082754/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728999/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536764+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>g</literal></secondary>",
                "old_state": -1
            },
            "id": 34082753,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082753/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728998/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536719+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>permissions</primary><secondary><literal>u</literal></secondary>",
                "old_state": -1
            },
            "id": 34082752,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082752/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728997/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536674+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "Owners and Permissions",
                "old_state": -1
            },
            "id": 34082751,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082751/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728996/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536629+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>device</primary><secondary>files</secondary>",
                "old_state": -1
            },
            "id": 34082750,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082750/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728995/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536584+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>rights</primary><seealso>permissions</seealso>",
                "old_state": -1
            },
            "id": 34082749,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082749/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728994/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536538+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><filename>/etc</filename></primary><secondary><filename>/etc/inetd.conf</filename></secondary>",
                "old_state": -1
            },
            "id": 34082748,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082748/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728993/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536493+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><filename>/etc</filename></primary><secondary><filename>/etc/gdm3/daemon.conf</filename></secondary>",
                "old_state": -1
            },
            "id": 34082747,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082747/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728992/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536446+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<command>gdm3</command>, <command>kdm</command>, <command>lightdm</command>, and <command>xdm</command> are Display Managers (they all provide the <emphasis role=\"pkg\">x-display-manager</emphasis> meta package). They take control of the graphical interface shortly after boot in order to provide the user a login screen. Once the user has logged in, they execute the programs needed to start a graphical work session.",
                "old_state": -1
            },
            "id": 34082746,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082746/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728991/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536401+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><command>vncviewer</command></primary>",
                "old_state": -1
            },
            "id": 34082745,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082745/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728990/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536356+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>SSH</primary><secondary>tunnel</secondary><tertiary>VNC</tertiary>",
                "old_state": -1
            },
            "id": 34082744,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082744/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728989/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536312+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary>tunnel</primary><secondary>VNC</secondary>",
                "old_state": -1
            },
            "id": 34082743,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082743/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728988/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536263+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "When the graphical session is made available by VNC, the administrator must connect to it with a VNC client. GNOME has <command>vinagre</command> and <command>remmina</command> for that, while the KDE project provides <command>krdc</command> (in the menu at <menuchoice> <guimenu>K</guimenu> <guisubmenu>Internet</guisubmenu> <guimenuitem>Remote Desktop Client</guimenuitem></menuchoice>). There are other VNC clients that use the command line, such as <command>xtightvncviewer</command> from the homonym package or <command>xtigervncviewer</command> from the <emphasis role=\"pkg\">tigervnc-viewer</emphasis> Debian package. Once connected, the administrator can see what is going on, work on the machine remotely, and show the user how to proceed.",
                "old_state": -1
            },
            "id": 34082742,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082742/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728987/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536218+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><emphasis role=\"pkg\">tigervnc-viewer</emphasis></primary><seealso>VNC</seealso>",
                "old_state": -1
            },
            "id": 34082741,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082741/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728986/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536172+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><emphasis role=\"pkg\">xtightvncviewer</emphasis></primary><seealso>VNC</seealso>",
                "old_state": -1
            },
            "id": 34082740,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082740/?format=api"
        },
        {
            "unit": "https://hosted.weblate.org/api/units/82728985/?format=api",
            "component": "https://hosted.weblate.org/api/components/debian-handbook/09_unix-services/?format=api",
            "translation": "https://hosted.weblate.org/api/translations/debian-handbook/09_unix-services/cs/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-09-07T09:54:55.536126+02:00",
            "action": 59,
            "target": "",
            "old": "",
            "details": {
                "state": 0,
                "source": "<primary><emphasis role=\"pkg\">krdc</emphasis></primary><seealso>VNC</seealso>",
                "old_state": -1
            },
            "id": 34082739,
            "action_name": "String updated in the repository",
            "url": "https://hosted.weblate.org/api/changes/34082739/?format=api"
        }
    ]
}