Skip to content

Commit fd730a7

Browse files
committed
Making sure .po files are all up to date with current text
1 parent ab2e965 commit fd730a7

File tree

134 files changed

+7713
-4472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+7713
-4472
lines changed

text/locale/de/LC_MESSAGES/behavior/arrays/chem.po

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -134,20 +134,6 @@ msgid ""
134134
"**as a dimension in an array** as follows:"
135135
msgstr ""
136136

137-
#: ../../source/behavior/arrays/chem.rst:150
138-
msgid ""
139-
"Since the ``Species`` type has only three possible values, this means that "
140-
"the vector ``C`` has exactly three components. We can then refer to the "
141-
"individual components of ``C`` as ``C[Species.A]``, ``C[Species.B]`` and "
142-
"``C[Species.C]``."
143-
msgstr ""
144-
145-
#: ../../source/behavior/arrays/chem.rst:155
146-
msgid ""
147-
"Because it is awkward to constantly prefix each species name with "
148-
"``Species``, we can define a few convenient constants, we follows:"
149-
msgstr ""
150-
151137
#: ../../source/behavior/arrays/chem.rst:164
152138
msgid ""
153139
"In this way, we can now refer to the concentration of species :math:`A` as "
@@ -169,3 +155,29 @@ msgid ""
169155
" be used not only to index the array, but also to define one or more "
170156
"dimensions in the declaration."
171157
msgstr ""
158+
159+
#: ../../source/behavior/arrays/chem.rst:150
160+
msgid ""
161+
"Since the ``Species`` type has only three possible values, this means that "
162+
"the vector ``C`` has exactly three components. We can then refer to the "
163+
"individual components of ``C`` as ``C[Species.A]``, ``C[Species.B]`` and "
164+
"``C[Species.X]``."
165+
msgstr ""
166+
167+
#: ../../source/behavior/arrays/chem.rst:155
168+
msgid ""
169+
"Because it is awkward to constantly prefix each species name with "
170+
"``Species``, we can define a few convenient constants as follows:"
171+
msgstr ""
172+
173+
#~ msgid ""
174+
#~ "Since the ``Species`` type has only three possible values, this means that "
175+
#~ "the vector ``C`` has exactly three components. We can then refer to the "
176+
#~ "individual components of ``C`` as ``C[Species.A]``, ``C[Species.B]`` and "
177+
#~ "``C[Species.C]``."
178+
#~ msgstr ""
179+
180+
#~ msgid ""
181+
#~ "Because it is awkward to constantly prefix each species name with "
182+
#~ "``Species``, we can define a few convenient constants, we follows:"
183+
#~ msgstr ""

text/locale/de/LC_MESSAGES/behavior/arrays/declarations.po

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,49 +61,41 @@ msgid ""
6161
"array in terms of another array. Consider the following:"
6262
msgstr ""
6363

64-
#: ../../source/behavior/arrays/declarations.rst:54
65-
msgid ""
66-
"In this case, ``y`` will have one dimension of size 5. The use of the "
67-
"function ``size(x,1)`` will return the size of dimension 1 of the array "
68-
"``x``. There are many applications where it is useful to express that the "
69-
"dimensions of different are related in this way."
70-
msgstr ""
71-
72-
#: ../../source/behavior/arrays/declarations.rst:62
64+
#: ../../source/behavior/arrays/declarations.rst:64
7365
msgid "Unspecified Dimensions"
7466
msgstr ""
7567

76-
#: ../../source/behavior/arrays/declarations.rst:64
68+
#: ../../source/behavior/arrays/declarations.rst:66
7769
msgid ""
7870
"There are some circumstances where we can leave the size of an array "
7971
"unspecified so that it can be specified by some later context. For example,"
8072
" we will see examples of this later when we discuss :ref:`functions` that "
8173
"have arguments which are arrays."
8274
msgstr ""
8375

84-
#: ../../source/behavior/arrays/declarations.rst:69
76+
#: ../../source/behavior/arrays/declarations.rst:71
8577
msgid ""
8678
"To indicate that the size of a given array dimension is not (yet) known, we "
8779
"can use the `:` symbol as the dimension. So in a declaration like this:"
8880
msgstr ""
8981

90-
#: ../../source/behavior/arrays/declarations.rst:77
82+
#: ../../source/behavior/arrays/declarations.rst:79
9183
msgid ""
9284
"we are declaring an array with two dimensions. The size of the first "
9385
"dimension is not specified. However, the size of the second dimension is "
9486
"definitively specified as 2. In effect, we have declared that ``A`` is a "
9587
"matrix with an unspecified number of rows and two columns."
9688
msgstr ""
9789

98-
#: ../../source/behavior/arrays/declarations.rst:83
90+
#: ../../source/behavior/arrays/declarations.rst:85
9991
msgid "Non-Integer Dimensions"
10092
msgstr ""
10193

102-
#: ../../source/behavior/arrays/declarations.rst:88
94+
#: ../../source/behavior/arrays/declarations.rst:90
10395
msgid "Enumerations"
10496
msgstr ""
10597

106-
#: ../../source/behavior/arrays/declarations.rst:90
98+
#: ../../source/behavior/arrays/declarations.rst:92
10799
msgid ""
108100
"As we saw in our :ref:`chemical-system` examples, another way to specify the"
109101
" dimension for an array is with an enumeration. If an enumeration is used "
@@ -113,12 +105,29 @@ msgid ""
113105
"array that uses enumerations as dimensions."
114106
msgstr ""
115107

116-
#: ../../source/behavior/arrays/declarations.rst:99
108+
#: ../../source/behavior/arrays/declarations.rst:101
117109
msgid "Booleans"
118110
msgstr ""
119111

120-
#: ../../source/behavior/arrays/declarations.rst:101
112+
#: ../../source/behavior/arrays/declarations.rst:103
121113
msgid ""
122114
"It is also possible to declare an array where a dimension is specified as "
123115
"``Boolean``, *e.g.,*"
124116
msgstr ""
117+
118+
#: ../../source/behavior/arrays/declarations.rst:54
119+
msgid ""
120+
"In this case, ``y`` will have one dimension of size 5. The use of the "
121+
"function ``size(x,1)`` will return the size of dimension 1 of the array "
122+
"``x``. There are many applications where it is useful to express that the "
123+
"dimensions of different arrays are related in this way (*e.g.*, ensuring "
124+
"that arrays are sized such that operations like matrix multiplication are "
125+
"possible)."
126+
msgstr ""
127+
128+
#~ msgid ""
129+
#~ "In this case, ``y`` will have one dimension of size 5. The use of the "
130+
#~ "function ``size(x,1)`` will return the size of dimension 1 of the array "
131+
#~ "``x``. There are many applications where it is useful to express that the "
132+
#~ "dimensions of different are related in this way."
133+
#~ msgstr ""

0 commit comments

Comments
 (0)