Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #124 from corona-warn-app/fix/exposureapp-14224
Browse files Browse the repository at this point in the history
Fix: remove escaped double-quotes (EXPOSUREAPP-14224)
  • Loading branch information
mlenkeit authored Oct 24, 2022
2 parents 3ed743c + 909a5f5 commit db3bae4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/ccl/ccl-i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const mapEntryToTextDescriptor = languageCode => (it, idx, arr) => {
descriptor.localizedText = {
[languageCode]: it.value
.replace(/(^"|"$)/g, '')
.replace(/\\"/g, '"')
.replace(/\\n/g, '\n')
}
} if (it.tag === 'plurals') {
Expand All @@ -61,6 +62,7 @@ const mapEntryToTextDescriptor = languageCode => (it, idx, arr) => {
[languageCode]: it.value.reduce((map, it) => {
map[it.attributes.quantity] = it.value
.replace(/(^"|"$)/g, '')
.replace(/\\"/g, '"')
.replace(/\\n/g, '\n')
return map
}, {})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
vaccinationState:
longText:
de: '^Sie haben noch nicht alle derzeit empfohlenen Impfungen erhalten\. Ihr Impfschutz ist noch nicht vollständig\.\n\nBitte beachten Sie, dass der in der App angezeigte Impfstatus gemäß Infektionsschutzgesetz bestimmt wird. Für Kinder unter 12 Jahren und alle anderen Personen bestehen nach Bundesrecht derzeit keine Beschränkungen, die an den in der App einsehbaren Impfstatus „vollständig geimpft“ anknüpfen. Bitte beachten Sie zum einen die Empfehlungen der Ständigen Impfkommission und zum anderen möglicherweise abweichende Regeln in Ihrem Bundesland\.$'
tr: '^[^\\]+$'

- description: 0.1 - VC 2/2
t0: '2022-08-01'
Expand Down

0 comments on commit db3bae4

Please sign in to comment.