msgid "" "A text inscription containing the string \"Hello, world!\" is serialized as " "follows:" msgstr "" "“Hello, world!”이라는 문자열이 포함된 텍스트 인스크립션은 다음과 같이 직렬화" "된다:" #: /workspaces/ord_ko/docs/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 "" "```\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" "```" #: /workspaces/ord_ko/docs/src/inscriptions.md:53 msgid "" "First the string `ord` is pushed, to disambiguate inscriptions from other " "uses of envelopes." msgstr "" "먼저 `ord` 문자열이 푸시되어 인스크립션을 엔벨롭의 다른 용도와 구분할 수 있" "다." #: /workspaces/ord_ko/docs/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. "