"دمجها مع أي نص برمجي مقفول آخر ." #: src\inscriptions.md:39 msgid "A text inscription containing the string \"Hello, world!\" is serialized as follows:" msgstr "على سبيل المثال يوجد نص انسكريبشين يحتوي على جملة : \"Hello, world!\" يتسلسل على النحو التالي:" #: src\inscriptions.md:42 msgid "" "```\n" "OP_FALSE\n" "OP_IF\n" " OP_PUSH \"ord\"\n" " OP_PUSH 1\n" " OP_PUSH \"text/plain;charset=utf-8\"\n" " OP_PUSH 0\n" " OP_PUSH \"Hello, world!\"\n" "OP_ENDIF\n" "```" msgstr "" #: src\inscriptions.md:53 msgid "First the string `ord` is pushed, to disambiguate inscriptions from other uses of envelopes." msgstr "أولاً، يتم دفع سلسلة `ord` للتفريق بين الكتابات وبين استخدامات أخرى للظروف." #: src\inscriptions.md:56 msgid "" "`OP_PUSH 1` indicates that the next push contains the content type, and `OP_PUSH 0` indicates that subsequent data pushes contain the content itself. Multiple data pushes must be used for large inscriptions, as one of taproot's few restrictions is that individual data " "pushes may not be larger than 520 bytes."