Translation components API.

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

GET /api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/units/?format=api&page=20
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 964,
    "next": null,
    "previous": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/units/?format=api&page=19",
    "results": [
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "The following is an example [command]#%pre# section:"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 471688129025475526,
            "content_hash": 471688129025475526,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2381",
            "context": "",
            "note": "type: delimited block =",
            "flags": "",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 951,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 7,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644341/?format=api",
            "priority": 100,
            "id": 16677244,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=868bc5daaf5503c6",
            "url": "https://translate.fedoraproject.org/api/units/16677244/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.444485Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "Sample %pre Script"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 3496021574083146897,
            "content_hash": 3496021574083146897,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2383",
            "context": "",
            "note": "type: Block title",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 952,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 3,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644343/?format=api",
            "priority": 100,
            "id": 16677245,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=b0845d195253f491",
            "url": "https://translate.fedoraproject.org/api/units/16677245/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.447762Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "%pre\n#!/bin/sh\nhds=\"\"\nmymedia=\"\"\nfor file in /proc/ide/h* do\nmymedia=`cat $file/media`\nif [ $mymedia == \"disk\" ] ; then\nhds=\"$hds `basename $file`\"\nfi\ndone\nset $hds\nnumhd=`echo $#`\ndrive1=`echo $hds | cut -d' ' -f1`\ndrive2=`echo $hds | cut -d' ' -f2`\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 446889491756872668,
            "content_hash": 446889491756872668,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2402",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 953,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 42,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644348/?format=api",
            "priority": 100,
            "id": 16677246,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=8633aba00205f3dc",
            "url": "https://translate.fedoraproject.org/api/units/16677246/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.454697Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "#Write out partition scheme based on whether there are 1 or 2 hard drives\nif [ $numhd == \"2\" ] ; then\n#2 drives\necho \"#partitioning scheme generated in %pre for 2 drives\" > /tmp/part-include\necho \"clearpart --all\" >> /tmp/part-include\necho \"part /boot --fstype xfs --size 75 --ondisk hda\" >> /tmp/part-include\necho \"part / --fstype xfs --size 1 --grow --ondisk hda\" >> /tmp/part-include\necho \"part swap --recommended --ondisk $drive1\" >> /tmp/part-include\necho \"part /home --fstype xfs --size 1 --grow --ondisk hdb\" >> /tmp/part-include\nelse\n#1 drive\necho \"#partitioning scheme generated in %pre for 1 drive\" > /tmp/part-include\necho \"clearpart --all\" >> /tmp/part-include\necho \"part /boot --fstype xfs --size 75\" >> /tmp/part-include\necho \"part swap --recommended\" >> /tmp/part-include\necho \"part / --fstype xfs --size 2048\" >> /tmp/part-include\necho \"part /home --fstype xfs --size 2048 --grow\" >> /tmp/part-include\nfi\n%end\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 6414950677142409229,
            "content_hash": 6414950677142409229,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2422",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 954,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 138,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644350/?format=api",
            "priority": 100,
            "id": 16677247,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=d9067ba72ab9900d",
            "url": "https://translate.fedoraproject.org/api/units/16677247/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.470426Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "This script determines the number of hard drives in the system and writes a text file with a different partitioning scheme depending on whether it has one or two drives. Instead of having a set of partitioning commands in the Kickstart file, include the following line:"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 6166603092529578584,
            "content_hash": 6166603092529578584,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2426",
            "context": "",
            "note": "type: Plain text",
            "flags": "",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 955,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 46,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644353/?format=api",
            "priority": 100,
            "id": 16677248,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=d5942cd7310d0258",
            "url": "https://translate.fedoraproject.org/api/units/16677248/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.478397Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "[command]#%include /tmp/part-include#\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -2497505399303536807,
            "content_hash": -2497505399303536807,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2430",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 956,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 2,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644354/?format=api",
            "priority": 100,
            "id": 16677249,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=5d57141259e47f59",
            "url": "https://translate.fedoraproject.org/api/units/16677249/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.485903Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "The partitioning commands selected in the script will be used."
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -340033395721189442,
            "content_hash": -340033395721189442,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2433",
            "context": "",
            "note": "type: Plain text",
            "flags": "",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 957,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 10,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644356/?format=api",
            "priority": 100,
            "id": 16677250,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=7b47f56d9c44c7be",
            "url": "https://translate.fedoraproject.org/api/units/16677250/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.493669Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "Example Post-installation Script"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -7133344771559918983,
            "content_hash": -7133344771559918983,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2437",
            "context": "",
            "note": "type: Title ===",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 958,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 3,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644370/?format=api",
            "priority": 100,
            "id": 16677251,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=1d0144b96ec7f279",
            "url": "https://translate.fedoraproject.org/api/units/16677251/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.501696Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "The following is an example [command]#%post# section:"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -1805664141914952891,
            "content_hash": -1805664141914952891,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2440",
            "context": "",
            "note": "type: delimited block =",
            "flags": "",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 959,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 7,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644384/?format=api",
            "priority": 100,
            "id": 16677252,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=66f0fe079d7fab45",
            "url": "https://translate.fedoraproject.org/api/units/16677252/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.507319Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "Sample %post Script"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 800346856264633600,
            "content_hash": 800346856264633600,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2442",
            "context": "",
            "note": "type: Block title",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 960,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 3,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644395/?format=api",
            "priority": 100,
            "id": 16677253,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=8b1b6739b0c10d00",
            "url": "https://translate.fedoraproject.org/api/units/16677253/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.511497Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "# Start of the %post section with logging into /root/ks-post.log\n%post --log=/root/ks-post.log\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -7870242709109127542,
            "content_hash": -7870242709109127542,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2449",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 961,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 12,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644405/?format=api",
            "priority": 100,
            "id": 16677254,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=12c747f45371468a",
            "url": "https://translate.fedoraproject.org/api/units/16677254/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.515494Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "# Mount an NFS share\nmkdir /mnt/temp\nmount -o nolock 10.10.0.2:/usr/new-machines /mnt/temp\nopenvt -s -w -- /mnt/temp/runme\numount /mnt/temp\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -4429347365066720654,
            "content_hash": -4429347365066720654,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2455",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 962,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 19,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644415/?format=api",
            "priority": 100,
            "id": 16677255,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=4287cc0a0662ba72",
            "url": "https://translate.fedoraproject.org/api/units/16677255/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.519310Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "# End of the %post section\n%end\n"
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": -9142199823555239652,
            "content_hash": -9142199823555239652,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2458",
            "context": "",
            "note": "type: delimited block -",
            "flags": "no-wrap",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 963,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 7,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644417/?format=api",
            "priority": 100,
            "id": 16677256,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=012061b2ab59e11c",
            "url": "https://translate.fedoraproject.org/api/units/16677256/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.522372Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?format=api",
            "source": [
                "The above example mounts an NFS share and executes a script named `runme` located at `/usr/new-machines/` on the share. Note that NFS file locking is *not* supported while in Kickstart mode, therefore the [option]#-o nolock# option is required."
            ],
            "previous_source": "",
            "target": [
                ""
            ],
            "id_hash": 8639182301451521323,
            "content_hash": 8639182301451521323,
            "location": "./pages/appendixes/Kickstart_Syntax_Reference.adoc:2462",
            "context": "",
            "note": "type: Plain text",
            "flags": "",
            "labels": [],
            "state": 0,
            "fuzzy": false,
            "translated": false,
            "approved": false,
            "position": 964,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 38,
            "source_unit": "https://translate.fedoraproject.org/api/units/16644419/?format=api",
            "priority": 100,
            "id": 16677257,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f30pagesappendixeskickstart_syntax_reference/ur_PK/?checksum=f7e48a87e3dc0d2b",
            "url": "https://translate.fedoraproject.org/api/units/16677257/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-24T21:10:06.526776Z"
        }
    ]
}