File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ qdacco 1.2.2 (UNRELEASED)
2
2
============
3
3
-Fix entries such as "neighbor" where, inside the <translation> there was
4
4
something such as <otherlocal>xxx</otherlocal>[MORE SPACES]</translation>
5
+ -Fix "expressions" in entries (e.g. "taula"). They didn't have the expression
6
+ meaning (only its translation). Similar problem as above
5
7
6
8
qdacco 1.2.1 (October 2023)
7
9
============
Original file line number Diff line number Diff line change @@ -248,10 +248,10 @@ void StructureList::processEntry(QXmlStreamReader& reader) {
248
248
m_translation.notes .append (ch);
249
249
}
250
250
else if (m_inFems) {
251
- m_translation.female = ch;
251
+ m_translation.female + = ch. trimmed () ;
252
252
}
253
253
else if (m_inFemPlural) {
254
- m_translation.femalePlural = ch;
254
+ m_translation.femalePlural + = ch. trimmed () ;
255
255
}
256
256
else if (m_inTranslation) {
257
257
/* There are entries where the "translation" is between different parts. For example:
@@ -269,7 +269,7 @@ void StructureList::processEntry(QXmlStreamReader& reader) {
269
269
m_translation.translation += ch.trimmed ();
270
270
}
271
271
else if (m_inExpressions) {
272
- m_expressions.expression = ch;
272
+ m_expressions.expression + = ch. trimmed () ;
273
273
}
274
274
else if (m_inMistakes) {
275
275
m_mistakes = ch;
You can’t perform that action at this time.
0 commit comments