aboutsummaryrefslogblamecommitdiff
path: root/v2/po/euandre.org.pot
blob: fcaba04f158353bc2d172adc7864f35b32a65ab2 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                         
                                            









                                              
                                    


                   
                         
                                               

         

                         
                            

         

                         



                                          
                            























                                                          
         














                                                      
                            



                                


















































































































































































                                                                             
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2023-04-05 18:22-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. 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 about='About'"
msgstr ""

#. type: Plain text
#: src/lib/base.en.conf:7
msgid "export about_url_name='about.html'"
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:7
#, 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:10
msgid "Some content here, before:"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:20
#, 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:22
msgid "Sample interactive session:"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:39
#, 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:41
msgid "# An h1"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:43
msgid "a list:"
msgstr ""

#. type: Bullet: '1. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:47
#, markdown-text
msgid "one"
msgstr ""

#. type: Bullet: '2. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:47
#, markdown-text
msgid "two"
msgstr ""

#. type: Bullet: '3. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:47
#, markdown-text
msgid "three"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:49
msgid "some content."
msgstr ""

#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:53
#, markdown-text
msgid "item"
msgstr ""

#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:53
#, markdown-text
msgid "another"
msgstr ""

#. type: Bullet: '- '
#: src/content/en/pastebins/sicp-exercise-3-19.md:53
#, markdown-text
msgid "yet another"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:55
msgid "## An h2"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:57
msgid "Xablau:"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:60
msgid "``` xupliu 1"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:63
msgid "3 4"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:70
msgid "dez ```"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:72
msgid "Foi `wikiwiu`."
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:74
msgid "a very long code block:"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:80
#, 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:82
msgid "Someone said:"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:84
msgid "> Xablau, xupliu."
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:87
msgid "### A repeated header ### A repeated header"
msgstr ""

#. type: Plain text
#: src/content/en/pastebins/sicp-exercise-3-19.md:89
msgid "a big list:"
msgstr ""

#. type: Bullet: '1. '
#: src/content/en/pastebins/sicp-exercise-3-19.md:107
#, markdown-text
msgid "a"
msgstr ""