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/f31pagesappendixeskickstart_syntax_reference/ja/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/f31pagesappendixeskickstart_syntax_reference/ja/units/?format=api&page=19",
    "results": [
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862051/?format=api",
            "priority": 100,
            "id": 10597437,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=868bc5daaf5503c6",
            "url": "https://translate.fedoraproject.org/api/units/10597437/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.240875Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862053/?format=api",
            "priority": 100,
            "id": 10597438,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=b0845d195253f491",
            "url": "https://translate.fedoraproject.org/api/units/10597438/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.247903Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862055/?format=api",
            "priority": 100,
            "id": 10597439,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=8633aba00205f3dc",
            "url": "https://translate.fedoraproject.org/api/units/10597439/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.252771Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862057/?format=api",
            "priority": 100,
            "id": 10597440,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=d9067ba72ab9900d",
            "url": "https://translate.fedoraproject.org/api/units/10597440/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.256089Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862059/?format=api",
            "priority": 100,
            "id": 10597441,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=d5942cd7310d0258",
            "url": "https://translate.fedoraproject.org/api/units/10597441/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.258670Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862061/?format=api",
            "priority": 100,
            "id": 10597442,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=5d57141259e47f59",
            "url": "https://translate.fedoraproject.org/api/units/10597442/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.260908Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862063/?format=api",
            "priority": 100,
            "id": 10597443,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=7b47f56d9c44c7be",
            "url": "https://translate.fedoraproject.org/api/units/10597443/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.263025Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862065/?format=api",
            "priority": 100,
            "id": 10597444,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=1d0144b96ec7f279",
            "url": "https://translate.fedoraproject.org/api/units/10597444/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.267384Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862067/?format=api",
            "priority": 100,
            "id": 10597445,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=66f0fe079d7fab45",
            "url": "https://translate.fedoraproject.org/api/units/10597445/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.271806Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862069/?format=api",
            "priority": 100,
            "id": 10597446,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=8b1b6739b0c10d00",
            "url": "https://translate.fedoraproject.org/api/units/10597446/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.276256Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862071/?format=api",
            "priority": 100,
            "id": 10597447,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=12c747f45371468a",
            "url": "https://translate.fedoraproject.org/api/units/10597447/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.280063Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862073/?format=api",
            "priority": 100,
            "id": 10597448,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=4287cc0a0662ba72",
            "url": "https://translate.fedoraproject.org/api/units/10597448/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.283811Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862075/?format=api",
            "priority": 100,
            "id": 10597449,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=012061b2ab59e11c",
            "url": "https://translate.fedoraproject.org/api/units/10597449/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.287810Z"
        },
        {
            "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?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/862077/?format=api",
            "priority": 100,
            "id": 10597450,
            "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-install-guide/f31pagesappendixeskickstart_syntax_reference/ja/?checksum=f7e48a87e3dc0d2b",
            "url": "https://translate.fedoraproject.org/api/units/10597450/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-06-20T09:12:08.290989Z"
        }
    ]
}