blob: 2df706cb34b1e5d4212e0ced63235987639ae2b5 (
plain) (
tree)
|
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2023-04-08 12:41-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.4\n"
#. type: Plain text
#: src/content/img/alt/atom.en.txt:1
msgid "three yellow lines representing an Atom feed"
msgstr ""
#. type: Plain text
#: src/content/img/alt/envelope.en.txt:1
msgid "an envelope icon representing an email address"
msgstr ""
#. type: Plain text
#: src/content/img/alt/favicon.en.txt:1
msgid "a crude hand doing a thumbs up"
msgstr ""
#. type: Plain text
#: src/content/img/alt/link.en.txt:1
msgid "two chain rings, representing an anchor to this header"
msgstr ""
#. type: Plain text
#: src/content/img/alt/linkto.en.txt:1
msgid ""
"a drawing of a box with an arrow going outwards, representing an internal "
"link"
msgstr ""
#. type: Plain text
#: src/content/img/alt/lock.en.txt:1
msgid "a lock icon representing a GPG public key"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:2
msgid "export date_fmt='%B %-d, %Y'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:4
msgid "export site_name=\"EuAndreh's website\""
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:6
msgid "export lang='en'"
msgstr "export lang='pt'"
#. type: Plain text
#: src/lib/base.en.conf:8
msgid "export index_pastebins_title='Pastebins'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:10
msgid "export index_recent_pastebins_title='Pastebins listing'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:12
msgid "export index_category_pastebins_title='Pastebins by category'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:14
msgid "export index by_category_url_part='by-category.html'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:16
msgid "export feed_pastebins_title=\"EuAndreh's pastebins\""
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:18
msgid "export index_tils_title='TIL'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:20
msgid "export index_recent_tils_title='TIL listing'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:22
msgid "export index_category_tils_title='TIL by category'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:24
msgid "export feed_tils_title=\"EuAndreh's TIL\""
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:26
msgid "export about='About'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:28
msgid "export about_url_name='about.html'"
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:30
msgid "export homepage_url=\"$(url-for \"$lang/\")\""
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:32
msgid "export homepage_url_absolute=\"$(absolute \"$homepage_url\")\""
msgstr ""
#. type: Plain text
#: src/lib/base.en.conf:33
msgid "export about_url=\"$(url-for \"$lang/$about_url_name\")\""
msgstr ""
#. type: Content of: <p>
#: src/lib/comment.en.html:3
msgid ""
"<a href=\"$mailto_uri\">Comment</a> and see <a href=\"$discussions_url"
"\">existing discussions</a> | <a href=\"$sourcecode_url\">view source</a>"
msgstr ""
#. type: Content of: <p>
#: src/lib/date.en.html:2
msgid "Posted on"
msgstr ""
#. type: Content of: <p><time>
#: src/lib/date.en.html:2
msgid "$formatted_date"
msgstr ""
#. type: Content of: <p>
#: src/lib/update.en.html:2
msgid "Updated on"
msgstr ""
#. type: Content of: <p><time>
#: src/lib/update.en.html:2
msgid "$formatted_update"
msgstr ""
#. type: Plain text
#: src/content/en/about.md:1 src/content/en/about.md:5
#: src/content/en/pastebins/sicp-exercise-3-19.md:1
#: src/content/en/pastebins/sicp-exercise-3-19.md:9
#, no-wrap
msgid "---\n"
msgstr ""
#. type: Plain text
#: src/content/en/about.md:4
msgid "title: About"
msgstr ""
#. type: Plain text
#: src/content/en/about.md:7
msgid "It's all about me, baby!"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:4
msgid "title: SICP exercise 3.19"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:6
msgid "date: 2021-09-02"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:8
msgid "categories: lisp programming-languages"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:12
msgid "Some content here, before:"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:22
#, no-wrap
msgid ""
"```scheme\n"
"(define (cycle? l)\n"
" (define (rec l x)\n"
" (cond\n"
" ((null? x) false)\n"
" ((eq? l x) true)\n"
" (true (rec l (cdr x)))))\n"
" (rec l (cdr l)))\n"
"```\n"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:24
msgid "Sample interactive session:"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:41
#, no-wrap
msgid ""
"```scheme\n"
"scheme@(guile-user)> (define true #t)\n"
"scheme@(guile-user)> (define false #f)\n"
"scheme@(guile-user)>\n"
"(define (cycle? l)\n"
" (define (rec l x)\n"
" (cond\n"
" ((null? x) false)\n"
" ((eq? l x) true)\n"
" (true (rec l (cdr x)))))\n"
" (rec l (cdr l)))\n"
"scheme@(guile-user)> (cycle? '(1 2 3))\n"
"$9 = #f\n"
"scheme@(guile-user)> (cycle? (make-cycle '(1 2 3)))\n"
"$10 = #t\n"
"```\n"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:43
msgid "# An h1"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:45
msgid "a list:"
msgstr ""
#. type: Bullet: '1. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:49
msgid "one"
msgstr ""
#. type: Bullet: '2. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:49
msgid "two"
msgstr ""
#. type: Bullet: '3. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:49
msgid "three"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:51
msgid "some content."
msgstr ""
#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:55
msgid "item"
msgstr ""
#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:55
msgid "another"
msgstr ""
#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:55
msgid "yet another"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:57
msgid "## An h2"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:59
msgid "Xablau:"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:62
msgid "``` xupliu 1"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:65
msgid "3 4"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:72
msgid "dez ```"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:74
msgid "Foi `wikiwiu`."
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:76
msgid "a very long code block:"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:82
#, no-wrap
msgid ""
"```\n"
"wef\n"
"wef wef wef wef\n"
"wef wef wef wef we fwef wef wef wef wef \n"
"```\n"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:84
msgid "Someone said:"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:86
msgid "> Xablau, xupliu."
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:89
msgid "### A repeated header ### A repeated header"
msgstr ""
#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:91
msgid "a big list:"
msgstr ""
#. type: Bullet: '1. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:109
msgid "a"
msgstr ""
|