1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# 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: 2020-04-28 18:23+0200\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: Fenced code block
#: PandocFencedCodeBlocks.md:1 PandocFencedCodeBlocks.md:26
#, no-wrap
msgid ""
"if (a > 3) {\n"
" moveShip(5 * gravity, DOWN);\n"
"}\n"
msgstr ""
"IF (A > 3) {\n"
" MOVESHIP(5 * GRAVITY, DOWN);\n"
"}\n"
#. type: Fenced code block
#: PandocFencedCodeBlocks.md:7
#, no-wrap
msgid ""
"~~~~~~~~~~\n"
"code including tildes\n"
"line2\n"
"~~~~~~~~~~\n"
msgstr ""
"~~~~~~~~~~\n"
"CODE INCLUDING TILDES\n"
"LINE2\n"
"~~~~~~~~~~\n"
#. type: Fenced code block (haskell)
#: PandocFencedCodeBlocks.md:14 PandocFencedCodeBlocks.md:20
#: PandocFencedCodeBlocks.md:39 PandocFencedCodeBlocks.md:45
#, no-wrap
msgid ""
"qsort [] = []\n"
"qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++\n"
" qsort (filter (>= x) xs)\n"
msgstr ""
"QSORT [] = []\n"
"QSORT (X:XS) = QSORT (FILTER (< X) XS) ++ [X] ++\n"
" QSORT (FILTER (>= X) XS)\n"
#. type: Fenced code block
#: PandocFencedCodeBlocks.md:32
#, no-wrap
msgid ""
"``````````\n"
"code including backticks\n"
"line2\n"
"``````````\n"
msgstr ""
"``````````\n"
"CODE INCLUDING BACKTICKS\n"
"LINE2\n"
"``````````\n"
#. type: Plain text
#: PandocFencedCodeBlocks.md:52
#, markdown-text
msgid "This first pandoc fenced_div is non-nested."
msgstr "tHIS FIRST PANDOC FENCED DIV IS NON-NESTED."
#. type: Fenced div block ({#special .sidebar})
#: PandocFencedCodeBlocks.md:53
#, no-wrap
msgid ""
"Here is a paragraph.\n"
"\n"
"And another.\n"
msgstr ""
"hERE IS A PARAGRAPH.\n"
"\n"
"aND ANOTHER.\n"
#. type: Plain text
#: PandocFencedCodeBlocks.md:59
#, markdown-text
msgid "The second pandoc fenced div is nested."
msgstr "tHE SECOND PANDOC FENCED DIV IS NESTED."
#. type: Fenced div block (Warning ::::::)
#: PandocFencedCodeBlocks.md:60
#, no-wrap
msgid ""
"This is a warning.\n"
"\n"
msgstr ""
"tHIS IS A WARNING.\n"
"\n"
#. type: Fenced div block (Warning ::::::|Danger)
#: PandocFencedCodeBlocks.md:60
#, no-wrap
msgid "This is a warning within a warning.\n"
msgstr "tHIS IS A WARNING WITHIN A WARNING.\n"
#. type: Plain text
#: PandocFencedCodeBlocks.md:68
#, markdown-text
msgid "Some extra text."
msgstr "sOME EXTRA TEXT."
|