| 70 | } |
| 71 | |
| 72 | QStringList packSubstitutions(const Substitutions& source) |
| 73 | { |
| 74 | QStringList result; |
| 75 | for (const auto& i : source) { |
| 76 | result << i.first << i.second.source << i.second.target; |
| 77 | } |
| 78 | return result; |
| 79 | } |
| 80 | |
| 81 | Substitutions unpackSubstitutions(const QStringList& raw) |
| 82 | { |